aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2009-06-15 00:57:36 +0000
committerdos-reis <gdr@axiomatics.org>2009-06-15 00:57:36 +0000
commit372cd9bfe6aa41bacd17b25579a10a69b3933e2a (patch)
treec508151b2d0bfea6724f14c0b04936319b6d2387
parent12b1b74f1e952694c8f182eb2b4ab369f6005ddf (diff)
downloadopen-axiom-372cd9bfe6aa41bacd17b25579a10a69b3933e2a.tar.gz
* algebra/any.spad.pamphlet (Any): Remove domainOf, objectOf, and
showTypeInOutput. Tidy. * algebra/fortran.spad.pamphlet: Coerce Any objects to Output; don't use objectOf.
-rw-r--r--src/ChangeLog7
-rw-r--r--src/algebra/any.spad.pamphlet53
-rw-r--r--src/algebra/fortran.spad.pamphlet6
-rw-r--r--src/share/algebra/browse.daase1134
-rw-r--r--src/share/algebra/category.daase222
-rw-r--r--src/share/algebra/compress.daase1317
-rw-r--r--src/share/algebra/interp.daase8870
-rw-r--r--src/share/algebra/operation.daase29595
8 files changed, 20587 insertions, 20617 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index afa502b3..81989c79 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,12 @@
2009-06-14 Gabriel Dos Reis <gdr@cs.tamu.edu>
+ * algebra/any.spad.pamphlet (Any): Remove domainOf, objectOf, and
+ showTypeInOutput. Tidy.
+ * algebra/fortran.spad.pamphlet: Coerce Any objects to Output;
+ don't use objectOf.
+
+2009-06-14 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
Add support for existential type recovery.
* interp/compiler.boot (compRecoverDomain): New. Split from
compRecoverGuard.
diff --git a/src/algebra/any.spad.pamphlet b/src/algebra/any.spad.pamphlet
index b15f486f..247a3c82 100644
--- a/src/algebra/any.spad.pamphlet
+++ b/src/algebra/any.spad.pamphlet
@@ -145,7 +145,7 @@ import None
++ Date Created:
++ Date Last Updated: June 14, 2009.
++ Change History:
-++ Basic Functions: any, domainOf, objectOf, dom, obj, showTypeInOutput
+++ Basic Functions: any, dom, obj
++ Related Constructors: AnyFunctions1
++ Also See: None
++ AMS Classification:
@@ -157,19 +157,14 @@ import None
++ object will include both the original object and its type. This is
++ a way of converting arbitrary objects into a single type without
++ losing any of the original information. Any object can be converted
-++ to one of \spadtype{Any}.
+++ to one of \spadtype{Any}. The original object can be recovered
+++ by `is-case' pattern matching as exemplified here and AnyFunctions1.
Any(): SetCategory with
any : (SExpression, None) -> %
++ any(type,object) is a technical function for creating
++ an object of \spadtype{Any}. Arugment \spad{type} is a \spadgloss{LISP} form
++ for the type of \spad{object}.
- domainOf : % -> OutputForm
- ++ domainOf(a) returns a printable form of the type of the
- ++ original object that was converted to \spadtype{Any}.
- objectOf : % -> OutputForm
- ++ objectOf(a) returns a printable form of the
- ++ original object that was converted to \spadtype{Any}.
dom : % -> SExpression
++ dom(a) returns a \spadgloss{LISP} form of the type of the
++ original object that was converted to \spadtype{Any}.
@@ -177,52 +172,26 @@ Any(): SetCategory with
++ obj(a) essentially returns the original object that was
++ converted to \spadtype{Any} except that the type is forced
++ to be \spadtype{None}.
- showTypeInOutput: Boolean -> String
- ++ showTypeInOutput(bool) affects the way objects of
- ++ \spadtype{Any} are displayed. If \spad{bool} is true
- ++ then the type of the original object that was converted
- ++ to \spadtype{Any} will be printed. If \spad{bool} is
- ++ false, it will not be printed.
== add
- Rep := Record(dm: SExpression, ob: None)
-
- printTypeInOutputP:Reference(Boolean) := ref false
+ Rep == Record(dm: SExpression, ob: None)
- obj x == x.ob
- dom x == x.dm
- domainOf x == x.dm pretend OutputForm
+ obj x == rep(x).ob
+ dom x == rep(x).dm
x = y ==
case (x,y) is
(x': exist(S: BasicType) . S, y': S) => x' = y'
otherwise => EQ(x,y)$Foreign(Builtin)
- objectOf(x : %) : OutputForm ==
- spad2BootCoerce(x.ob, x.dm,
- list("OutputForm"::Symbol)$List(Symbol))$Lisp
-
- showTypeInOutput(b : Boolean) : String ==
- printTypeInOutputP := ref b
- b=> "Type of object will be displayed in output of a member of Any"
- "Type of object will not be displayed in output of a member of Any"
-
coerce(x):OutputForm ==
- obj1 : OutputForm :=
- case x is
- x': exist(S: CoercibleTo OutputForm) . S => x'::OutputForm
- otherwise => (x.ob pretend SExpression)::OutputForm
- not deref printTypeInOutputP => obj1
- dom1 :=
- p:Symbol := prefix2String(devaluate(x.dm)$Lisp)$Lisp
- atom?(p pretend SExpression) => list(p)$List(Symbol)
- list(p)$Symbol
- hconcat cons(obj1,
- cons(":"::OutputForm, [a::OutputForm for a in dom1]))
+ case x is
+ x': exist(S: CoercibleTo OutputForm) . S => x'::OutputForm
+ otherwise => (rep(x).ob pretend SExpression)::OutputForm
any(domain, object) ==
- (isValidType(domain)$Lisp)@Boolean => [domain, object]
+ (isValidType(domain)$Lisp)@Boolean => per [domain, object]
domain := devaluate(domain)$Lisp
- (isValidType(domain)$Lisp)@Boolean => [domain, object]
+ (isValidType(domain)$Lisp)@Boolean => per [domain, object]
error "function any must have a domain as first argument"
@
diff --git a/src/algebra/fortran.spad.pamphlet b/src/algebra/fortran.spad.pamphlet
index 77385b00..aa9902d4 100644
--- a/src/algebra/fortran.spad.pamphlet
+++ b/src/algebra/fortran.spad.pamphlet
@@ -68,12 +68,12 @@ Result():Exports==Implementation where
display(v:Any,d:SExpression):O ==
not list? d => error "Domain form is non-list"
#d=1 =>
- showScalarValuesFlag => objectOf v
+ showScalarValuesFlag => v::OutputForm
cleanUpDomainForm d
car(d) = convert("Complex"::Symbol)@SExpression =>
- showScalarValuesFlag => objectOf v
+ showScalarValuesFlag => v::OutputForm
cleanUpDomainForm d
- showArrayValuesFlag => objectOf v
+ showArrayValuesFlag => v::OutputForm
cleanUpDomainForm d
makeEntry(k:Symbol,v:Any):O ==
diff --git a/src/share/algebra/browse.daase b/src/share/algebra/browse.daase
index 5c151794..4296fdaf 100644
--- a/src/share/algebra/browse.daase
+++ b/src/share/algebra/browse.daase
@@ -1,12 +1,12 @@
-(2285497 . 3453749792)
+(2284982 . 3453990495)
(-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.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
(-20 S)
((|constructor| (NIL "The class of abelian groups,{} \\spadignore{i.e.} additive monoids where each element has an additive inverse. \\blankline")) (- (($ $ $) "\\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}.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . 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,7 +46,7 @@ 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}.")))
-((-4414 . T) (-4412 . T) (-4411 . T) ((-4419 "*") . T) (-4410 . T) (-4415 . T) (-4409 . T))
+((-4411 . T) (-4409 . T) (-4408 . T) ((-4416 "*") . T) (-4407 . T) (-4412 . T) (-4406 . 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.")))
@@ -56,14 +56,14 @@ NIL
((|constructor| (NIL "This domain represents the syntax for an add-expression.")) (|body| (((|SpadAst|) $) "base(\\spad{d}) returns the actual body of the add-domain expression \\spad{`d'}.")) (|base| (((|SpadAst|) $) "\\spad{base(d)} returns the base domain(\\spad{s}) of the add-domain expression.")))
NIL
NIL
-(-32 R -2382)
+(-32 R -2386)
((|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 -1038) (QUOTE (-566)))))
(-33 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 -4417)))
+((|HasAttribute| |#1| (QUOTE -4414)))
(-34)
((|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
@@ -74,7 +74,7 @@ NIL
NIL
(-36 |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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
NIL
(-37 S R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")))
@@ -82,17 +82,17 @@ NIL
NIL
(-38 R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-39 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
-(-40 -2382 UP UPUP -4030)
+(-40 -2386 UP UPUP -2468)
((|constructor| (NIL "Function field defined by \\spad{f}(\\spad{x},{} \\spad{y}) = 0.")) (|knownInfBasis| (((|Void|) (|NonNegativeInteger|)) "\\spad{knownInfBasis(n)} \\undocumented{}")))
-((-4410 |has| (-409 |#2|) (-365)) (-4415 |has| (-409 |#2|) (-365)) (-4409 |has| (-409 |#2|) (-365)) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 |has| (-409 |#2|) (-365)) (-4412 |has| (-409 |#2|) (-365)) (-4406 |has| (-409 |#2|) (-365)) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| (-409 |#2|) (QUOTE (-145))) (|HasCategory| (-409 |#2|) (QUOTE (-147))) (|HasCategory| (-409 |#2|) (QUOTE (-351))) (-2805 (|HasCategory| (-409 |#2|) (QUOTE (-365))) (|HasCategory| (-409 |#2|) (QUOTE (-351)))) (|HasCategory| (-409 |#2|) (QUOTE (-365))) (|HasCategory| (-409 |#2|) (QUOTE (-370))) (-2805 (-12 (|HasCategory| (-409 |#2|) (QUOTE (-233))) (|HasCategory| (-409 |#2|) (QUOTE (-365)))) (|HasCategory| (-409 |#2|) (QUOTE (-351)))) (-2805 (-12 (|HasCategory| (-409 |#2|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-409 |#2|) (QUOTE (-365)))) (-12 (|HasCategory| (-409 |#2|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-409 |#2|) (QUOTE (-351))))) (|HasCategory| (-409 |#2|) (LIST (QUOTE -639) (QUOTE (-566)))) (-2805 (|HasCategory| (-409 |#2|) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-409 |#2|) (QUOTE (-365)))) (|HasCategory| (-409 |#2|) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-409 |#2|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-370))) (-12 (|HasCategory| (-409 |#2|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-409 |#2|) (QUOTE (-365)))) (-12 (|HasCategory| (-409 |#2|) (QUOTE (-233))) (|HasCategory| (-409 |#2|) (QUOTE (-365)))))
-(-41 R -2382)
+(-41 R -2386)
((|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 (-454))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -432) (|devaluate| |#1|)))))
@@ -106,23 +106,23 @@ NIL
((|HasCategory| |#1| (QUOTE (-308))))
(-44 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.")))
-((-4414 |has| |#1| (-558)) (-4412 . T) (-4411 . T))
+((-4411 |has| |#1| (-558)) (-4409 . T) (-4408 . T))
((|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558))))
(-45 |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.")))
-((-4417 . T) (-4418 . T))
-((-2805 (-12 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-850))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#2|))))))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-850))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-850))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#2|)))))))
+((-4414 . T) (-4415 . T))
+((-2805 (-12 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-850))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#2|))))))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-850))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-850))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#2|)))))))
(-46 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 -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365))))
(-47 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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-48)
((|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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| $ (QUOTE (-1049))) (|HasCategory| $ (LIST (QUOTE -1038) (QUOTE (-566)))))
(-49)
((|constructor| (NIL "This domain implements anonymous functions")) (|body| (((|Syntax|) $) "\\spad{body(f)} returns the body of the unnamed function \\spad{`f'}.")) (|parameters| (((|List| (|Identifier|)) $) "\\spad{parameters(f)} returns the list of parameters bound by \\spad{`f'}.")))
@@ -130,21 +130,21 @@ NIL
NIL
(-50 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}.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-51 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}.")))
NIL
NIL
(-52)
-((|constructor| (NIL "\\spadtype{Any} implements a type that packages up objects and their types in objects of \\spadtype{Any}. Roughly speaking that means that if \\spad{s : S} then when converted to \\spadtype{Any},{} the new object will include both the original object and its type. This is a way of converting arbitrary objects into a single type without losing any of the original information. Any object can be converted to one of \\spadtype{Any}.")) (|showTypeInOutput| (((|String|) (|Boolean|)) "\\spad{showTypeInOutput(bool)} affects the way objects of \\spadtype{Any} are displayed. If \\spad{bool} is \\spad{true} then the type of the original object that was converted to \\spadtype{Any} will be printed. If \\spad{bool} is \\spad{false},{} it will not be printed.")) (|obj| (((|None|) $) "\\spad{obj(a)} essentially returns the original object that was converted to \\spadtype{Any} except that the type is forced to be \\spadtype{None}.")) (|dom| (((|SExpression|) $) "\\spad{dom(a)} returns a \\spadgloss{LISP} form of the type of the original object that was converted to \\spadtype{Any}.")) (|objectOf| (((|OutputForm|) $) "\\spad{objectOf(a)} returns a printable form of the original object that was converted to \\spadtype{Any}.")) (|domainOf| (((|OutputForm|) $) "\\spad{domainOf(a)} returns a printable form of the type of the original object that was converted to \\spadtype{Any}.")) (|any| (($ (|SExpression|) (|None|)) "\\spad{any(type,{}object)} is a technical function for creating an \\spad{object} of \\spadtype{Any}. Arugment \\spad{type} is a \\spadgloss{LISP} form for the \\spad{type} of \\spad{object}.")))
+((|constructor| (NIL "\\spadtype{Any} implements a type that packages up objects and their types in objects of \\spadtype{Any}. Roughly speaking that means that if \\spad{s : S} then when converted to \\spadtype{Any},{} the new object will include both the original object and its type. This is a way of converting arbitrary objects into a single type without losing any of the original information. Any object can be converted to one of \\spadtype{Any}. The original object can be recovered by `is-case' pattern matching as exemplified here and AnyFunctions1.")) (|obj| (((|None|) $) "\\spad{obj(a)} essentially returns the original object that was converted to \\spadtype{Any} except that the type is forced to be \\spadtype{None}.")) (|dom| (((|SExpression|) $) "\\spad{dom(a)} returns a \\spadgloss{LISP} form of the type of the original object that was converted to \\spadtype{Any}.")) (|any| (($ (|SExpression|) (|None|)) "\\spad{any(type,{}object)} is a technical function for creating an \\spad{object} of \\spadtype{Any}. Arugment \\spad{type} is a \\spadgloss{LISP} form for the \\spad{type} of \\spad{object}.")))
NIL
NIL
(-53 R M P)
((|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
-(-54 |Base| R -2382)
+(-54 |Base| R -2386)
((|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
@@ -158,7 +158,7 @@ NIL
NIL
(-57 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")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
NIL
(-58 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),{}...]}.")))
@@ -166,65 +166,65 @@ NIL
NIL
(-59 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}")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-60 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
-(-61 -2628)
+(-61 -2639)
((|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
-(-62 -2628)
+(-62 -2639)
((|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
-(-63 -2628)
+(-63 -2639)
((|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
-(-64 -2628)
+(-64 -2639)
((|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
-(-65 -2628)
+(-65 -2639)
((|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}")))
NIL
NIL
-(-66 -2628)
+(-66 -2639)
((|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
-(-67 -2628)
+(-67 -2639)
((|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
-(-68 -2628)
+(-68 -2639)
((|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
-(-69 -2628)
+(-69 -2639)
((|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
-(-70 -2628)
+(-70 -2639)
((|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
-(-71 -2628)
+(-71 -2639)
((|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
-(-72 -2628)
+(-72 -2639)
((|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
-(-73 -2628)
+(-73 -2639)
((|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
-(-74 -2628)
+(-74 -2639)
((|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
@@ -236,55 +236,55 @@ 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
-(-77 -2628)
+(-77 -2639)
((|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
-(-78 -2628)
+(-78 -2639)
((|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
-(-79 -2628)
+(-79 -2639)
((|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
-(-80 -2628)
+(-80 -2639)
((|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
-(-81 -2628)
+(-81 -2639)
((|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}")))
NIL
NIL
-(-82 -2628)
+(-82 -2639)
((|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
-(-83 -2628)
+(-83 -2639)
((|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
-(-84 -2628)
+(-84 -2639)
((|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
-(-85 -2628)
+(-85 -2639)
((|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
-(-86 -2628)
+(-86 -2639)
((|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
-(-87 -2628)
+(-87 -2639)
((|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
-(-88 -2628)
+(-88 -2639)
((|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
-(-89 -2628)
+(-89 -2639)
((|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
@@ -294,7 +294,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-365))))
(-91 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-92 S)
((|constructor| (NIL "This is the category of Spad abstract syntax trees.")))
@@ -318,15 +318,15 @@ NIL
NIL
(-97)
((|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\".")))
-((-4417 . T))
+((-4414 . T))
NIL
(-98)
((|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.")))
-((-4417 . T) ((-4419 "*") . T) (-4418 . T) (-4414 . T) (-4412 . T) (-4411 . T) (-4410 . T) (-4415 . T) (-4409 . T) (-4408 . T) (-4407 . T) (-4406 . T) (-4405 . T) (-4413 . T) (-4416 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4404 . T))
+((-4414 . T) ((-4416 "*") . T) (-4415 . T) (-4411 . T) (-4409 . T) (-4408 . T) (-4407 . T) (-4412 . T) (-4406 . T) (-4405 . T) (-4404 . T) (-4403 . T) (-4402 . T) (-4410 . T) (-4413 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4401 . T))
NIL
(-99 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}.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-100 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}.")))
@@ -342,15 +342,15 @@ NIL
NIL
(-103 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-104 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 (-4419 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4416 "*"))))
(-105)
((|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")))
-((-4417 . T))
+((-4414 . T))
NIL
(-106 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.")))
@@ -358,11 +358,11 @@ NIL
NIL
(-107 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.")))
-((-4418 . T))
+((-4415 . T))
NIL
(-108)
((|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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| (-566) (QUOTE (-909))) (|HasCategory| (-566) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| (-566) (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-147))) (|HasCategory| (-566) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-566) (QUOTE (-1022))) (|HasCategory| (-566) (QUOTE (-820))) (-2805 (|HasCategory| (-566) (QUOTE (-820))) (|HasCategory| (-566) (QUOTE (-850)))) (|HasCategory| (-566) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-566) (QUOTE (-1150))) (|HasCategory| (-566) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| (-566) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| (-566) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| (-566) (QUOTE (-233))) (|HasCategory| (-566) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-566) (LIST (QUOTE -516) (QUOTE (-1175)) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -310) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -287) (QUOTE (-566)) (QUOTE (-566)))) (|HasCategory| (-566) (QUOTE (-308))) (|HasCategory| (-566) (QUOTE (-547))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-566) (LIST (QUOTE -639) (QUOTE (-566)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-909)))) (|HasCategory| (-566) (QUOTE (-145)))))
(-109)
((|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| (($ (|Identifier|) (|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| (((|Identifier|) $) "\\spad{name(b)} returns the name of binding \\spad{b}")))
@@ -370,11 +370,11 @@ NIL
NIL
(-110)
((|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}")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-12 (|HasCategory| (-112) (QUOTE (-1099))) (|HasCategory| (-112) (LIST (QUOTE -310) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-112) (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-112) (QUOTE (-1099))) (|HasCategory| (-112) (LIST (QUOTE -613) (QUOTE (-862)))))
(-111 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}")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
NIL
(-112)
((|constructor| (NIL "\\indented{1}{\\spadtype{Boolean} is the elementary logic with 2 values:} \\spad{true} and \\spad{false}")) (|test| (($ $) "\\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}.")))
@@ -388,22 +388,22 @@ NIL
((|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| (($ $ (|Identifier|) (|None|)) "\\spad{setProperty(op,{} p,{} v)} attaches property \\spad{p} to \\spad{op},{} and sets its value to \\spad{v}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.") (($ $ (|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| (((|Maybe| (|None|)) $ (|Identifier|)) "\\spad{property(op,{} p)} returns the value of property \\spad{p} if it is attached to \\spad{op},{} otherwise \\spad{nothing}.") (((|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!| (($ $ (|Identifier|)) "\\spad{deleteProperty!(op,{} p)} unattaches property \\spad{p} from \\spad{op}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.") (($ $ (|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| (($ $ (|Identifier|)) "\\spad{assert(op,{} p)} attaches property \\spad{p} to \\spad{op}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|has?| (((|Boolean|) $ (|Identifier|)) "\\spad{has?(op,{}p)} tests if property \\spad{s} is attached to \\spad{op}.")) (|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.")) (|operator| (($ (|Symbol|) (|Arity|)) "\\spad{operator(f,{} a)} makes \\spad{f} into an operator of arity \\spad{a}.") (($ (|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}.")))
NIL
NIL
-(-115 -2382 UP)
+(-115 -2386 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
(-116 |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}.")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-117 |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}.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| (-116 |#1|) (QUOTE (-909))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| (-116 |#1|) (QUOTE (-145))) (|HasCategory| (-116 |#1|) (QUOTE (-147))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-116 |#1|) (QUOTE (-1022))) (|HasCategory| (-116 |#1|) (QUOTE (-820))) (-2805 (|HasCategory| (-116 |#1|) (QUOTE (-820))) (|HasCategory| (-116 |#1|) (QUOTE (-850)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-116 |#1|) (QUOTE (-1150))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| (-116 |#1|) (QUOTE (-233))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -310) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (LIST (QUOTE -287) (LIST (QUOTE -116) (|devaluate| |#1|)) (LIST (QUOTE -116) (|devaluate| |#1|)))) (|HasCategory| (-116 |#1|) (QUOTE (-308))) (|HasCategory| (-116 |#1|) (QUOTE (-547))) (|HasCategory| (-116 |#1|) (QUOTE (-850))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-116 |#1|) (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-116 |#1|) (QUOTE (-909)))) (|HasCategory| (-116 |#1|) (QUOTE (-145)))))
(-118 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 -4418)))
+((|HasAttribute| |#1| (QUOTE -4415)))
(-119 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
@@ -414,7 +414,7 @@ NIL
NIL
(-121 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")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-122 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}}.")) (|not| (($ $) "\\spad{not(b)} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")))
@@ -422,7 +422,7 @@ NIL
NIL
(-123)
((|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}}.")) (|not| (($ $) "\\spad{not(b)} returns the logical {\\em not} of bit aggregate \\axiom{\\spad{b}}.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
(-124 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")))
@@ -430,19 +430,19 @@ NIL
NIL
(-125 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")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
NIL
(-126 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.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-127 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.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-128)
((|constructor| (NIL "ByteBuffer provides datatype for buffers of bytes. This domain differs from PrimitiveArray Byte in that it is not as rigid as PrimitiveArray Byte. That is,{} the typical use of ByteBuffer is to pre-allocate a vector of Byte of some capacity \\spad{`n'}. The array can then store up to \\spad{`n'} bytes. The actual interesting bytes count (the length of the buffer) is therefore different from the capacity. The length is no more than the capacity,{} but it can be set dynamically as needed. This functionality is used for example when reading bytes from input/output devices where we use buffers to transfer data in and out of the system. Note: a value of type ByteBuffer is 0-based indexed,{} as opposed \\indented{6}{Vector,{} but not unlike PrimitiveArray Byte.}")) (|finiteAggregate| ((|attribute|) "A ByteBuffer object is a finite aggregate")) (|setLength!| (((|NonNegativeInteger|) $ (|NonNegativeInteger|)) "\\spad{setLength!(buf,{}n)} sets the number of active bytes in the `buf'. Error if \\spad{`n'} is more than the capacity.")) (|capacity| (((|NonNegativeInteger|) $) "\\spad{capacity(buf)} returns the pre-allocated maximum size of `buf'.")) (|byteBuffer| (($ (|NonNegativeInteger|)) "\\spad{byteBuffer(n)} creates a buffer of capacity \\spad{n},{} and length 0.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| (-129) (QUOTE (-850))) (|HasCategory| (-129) (LIST (QUOTE -310) (QUOTE (-129))))) (-12 (|HasCategory| (-129) (QUOTE (-1099))) (|HasCategory| (-129) (LIST (QUOTE -310) (QUOTE (-129)))))) (-2805 (-12 (|HasCategory| (-129) (QUOTE (-1099))) (|HasCategory| (-129) (LIST (QUOTE -310) (QUOTE (-129))))) (|HasCategory| (-129) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-129) (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| (-129) (QUOTE (-850))) (|HasCategory| (-129) (QUOTE (-1099)))) (|HasCategory| (-129) (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-129) (QUOTE (-1099))) (|HasCategory| (-129) (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| (-129) (QUOTE (-1099))) (|HasCategory| (-129) (LIST (QUOTE -310) (QUOTE (-129))))))
(-129)
((|constructor| (NIL "Byte is the datatype of 8-bit sized unsigned integer values.")) (|sample| (($) "\\spad{sample} gives a sample datum of type Byte.")) (|bitior| (($ $ $) "bitor(\\spad{x},{}\\spad{y}) returns the bitwise `inclusive or' of \\spad{`x'} and \\spad{`y'}.")) (|bitand| (($ $ $) "\\spad{bitand(x,{}y)} returns the bitwise `and' of \\spad{`x'} and \\spad{`y'}.")) (|byte| (($ (|NonNegativeInteger|)) "\\spad{byte(x)} injects the unsigned integer value \\spad{`v'} into the Byte algebra. \\spad{`v'} must be non-negative and less than 256.")))
@@ -466,13 +466,13 @@ NIL
NIL
(-134)
((|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.")))
-(((-4419 "*") . T))
+(((-4416 "*") . T))
NIL
-(-135 |minix| -2293 S T$)
+(-135 |minix| -4225 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
-(-136 |minix| -2293 R)
+(-136 |minix| -4225 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
@@ -494,7 +494,7 @@ NIL
NIL
(-141)
((|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}.")))
-((-4417 . T) (-4407 . T) (-4418 . T))
+((-4414 . T) (-4404 . T) (-4415 . T))
((-2805 (-12 (|HasCategory| (-144) (QUOTE (-370))) (|HasCategory| (-144) (LIST (QUOTE -310) (QUOTE (-144))))) (-12 (|HasCategory| (-144) (QUOTE (-1099))) (|HasCategory| (-144) (LIST (QUOTE -310) (QUOTE (-144)))))) (|HasCategory| (-144) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-144) (QUOTE (-370))) (|HasCategory| (-144) (QUOTE (-850))) (|HasCategory| (-144) (QUOTE (-1099))) (|HasCategory| (-144) (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| (-144) (QUOTE (-1099))) (|HasCategory| (-144) (LIST (QUOTE -310) (QUOTE (-144))))))
(-142 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}.")))
@@ -510,7 +510,7 @@ NIL
NIL
(-145)
((|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.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-146 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}.")))
@@ -518,9 +518,9 @@ NIL
NIL
(-147)
((|constructor| (NIL "Rings of Characteristic Zero.")))
-((-4414 . T))
+((-4411 . T))
NIL
-(-148 -2382 UP UPUP)
+(-148 -2386 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
@@ -531,14 +531,14 @@ NIL
(-150 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 -614) (QUOTE (-538)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasAttribute| |#1| (QUOTE -4417)))
+((|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasAttribute| |#1| (QUOTE -4414)))
(-151 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.")))
NIL
NIL
(-152 |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.")))
-((-4412 . T) (-4411 . T) (-4414 . T))
+((-4409 . T) (-4408 . T) (-4411 . T))
NIL
(-153)
((|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.")))
@@ -560,7 +560,7 @@ NIL
((|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
-(-158 R -2382)
+(-158 R -2386)
((|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
@@ -591,10 +591,10 @@ NIL
(-165 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 (-909))) (|HasCategory| |#2| (QUOTE (-547))) (|HasCategory| |#2| (QUOTE (-1002))) (|HasCategory| |#2| (QUOTE (-1199))) (|HasCategory| |#2| (QUOTE (-1059))) (|HasCategory| |#2| (QUOTE (-1022))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (QUOTE (-365))) (|HasAttribute| |#2| (QUOTE -4413)) (|HasAttribute| |#2| (QUOTE -4416)) (|HasCategory| |#2| (QUOTE (-308))) (|HasCategory| |#2| (QUOTE (-558))))
+((|HasCategory| |#2| (QUOTE (-909))) (|HasCategory| |#2| (QUOTE (-547))) (|HasCategory| |#2| (QUOTE (-1002))) (|HasCategory| |#2| (QUOTE (-1199))) (|HasCategory| |#2| (QUOTE (-1059))) (|HasCategory| |#2| (QUOTE (-1022))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (QUOTE (-365))) (|HasAttribute| |#2| (QUOTE -4410)) (|HasAttribute| |#2| (QUOTE -4413)) (|HasCategory| |#2| (QUOTE (-308))) (|HasCategory| |#2| (QUOTE (-558))))
(-166 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})")))
-((-4410 -2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4413 |has| |#1| (-6 -4413)) (-4416 |has| |#1| (-6 -4416)) (-3654 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 -2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4410 |has| |#1| (-6 -4410)) (-4413 |has| |#1| (-6 -4413)) (-3661 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-167 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.")))
@@ -606,8 +606,8 @@ NIL
NIL
(-169 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}.")))
-((-4410 -2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4413 |has| |#1| (-6 -4413)) (-4416 |has| |#1| (-6 -4416)) (-3654 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-351))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-351)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-370))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-351)))) (|HasCategory| |#1| (QUOTE (-233))) (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -287) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-370)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-828)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-1022)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-1199)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-909))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-909)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-909))))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (QUOTE (-1002))) (|HasCategory| |#1| (QUOTE (-1199)))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (QUOTE (-1022))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-351)))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -287) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-828))) (|HasCategory| |#1| (QUOTE (-1059))) (-12 (|HasCategory| |#1| (QUOTE (-1059))) (|HasCategory| |#1| (QUOTE (-1199)))) (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-233))) (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasAttribute| |#1| (QUOTE -4413)) (|HasAttribute| |#1| (QUOTE -4416)) (-12 (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175))))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-351)))))
+((-4407 -2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4410 |has| |#1| (-6 -4410)) (-4413 |has| |#1| (-6 -4413)) (-3661 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-351))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-351)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-370))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-351)))) (|HasCategory| |#1| (QUOTE (-233))) (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-351)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -287) (|devaluate| |#1|) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-370)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-828)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-1022)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-1199)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-909))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-909)))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-909))))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (QUOTE (-1002))) (|HasCategory| |#1| (QUOTE (-1199)))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (QUOTE (-1022))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-351)))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -287) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-828))) (|HasCategory| |#1| (QUOTE (-1059))) (-12 (|HasCategory| |#1| (QUOTE (-1059))) (|HasCategory| |#1| (QUOTE (-1199)))) (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-233))) (-12 (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasAttribute| |#1| (QUOTE -4410)) (|HasAttribute| |#1| (QUOTE -4413)) (-12 (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175))))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-351)))))
(-170 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
@@ -618,7 +618,7 @@ NIL
NIL
(-172)
((|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.")))
-(((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-173)
((|constructor| (NIL "This category is the root of the I/O conduits.")) (|close!| (($ $) "\\spad{close!(c)} closes the conduit \\spad{c},{} changing its state to one that is invalid for future read or write operations.")))
@@ -626,7 +626,7 @@ NIL
NIL
(-174 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}.")))
-(((-4419 "*") . T) (-4410 . T) (-4415 . T) (-4409 . T) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") . T) (-4407 . T) (-4412 . T) (-4406 . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-175)
((|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| (((|Maybe| (|Binding|)) (|Identifier|) $) "\\spad{findBinding(c,{}n)} returns the first binding associated with \\spad{`n'}. Otherwise `nothing.")) (|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}.")))
@@ -680,7 +680,7 @@ NIL
((|constructor| (NIL "This domain provides implementations for constructors.")) (|findConstructor| (((|Maybe| $) (|Identifier|)) "\\spad{findConstructor(s)} attempts to find a constructor named \\spad{s}. If successful,{} returns that constructor; otherwise,{} returns \\spad{nothing}.")))
NIL
NIL
-(-188 R -2382)
+(-188 R -2386)
((|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
@@ -788,23 +788,23 @@ NIL
((|constructor| (NIL "\\indented{1}{This domain implements a simple view of a database whose fields are} indexed by symbols")) (- (($ $ $) "\\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
-(-215 -2382 UP UPUP R)
+(-215 -2386 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
-(-216 -2382 FP)
+(-216 -2386 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
(-217)
((|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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| (-566) (QUOTE (-909))) (|HasCategory| (-566) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| (-566) (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-147))) (|HasCategory| (-566) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-566) (QUOTE (-1022))) (|HasCategory| (-566) (QUOTE (-820))) (-2805 (|HasCategory| (-566) (QUOTE (-820))) (|HasCategory| (-566) (QUOTE (-850)))) (|HasCategory| (-566) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-566) (QUOTE (-1150))) (|HasCategory| (-566) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| (-566) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| (-566) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| (-566) (QUOTE (-233))) (|HasCategory| (-566) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-566) (LIST (QUOTE -516) (QUOTE (-1175)) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -310) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -287) (QUOTE (-566)) (QUOTE (-566)))) (|HasCategory| (-566) (QUOTE (-308))) (|HasCategory| (-566) (QUOTE (-547))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-566) (LIST (QUOTE -639) (QUOTE (-566)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-909)))) (|HasCategory| (-566) (QUOTE (-145)))))
(-218)
((|constructor| (NIL "This domain represents the syntax of a definition.")) (|body| (((|SpadAst|) $) "\\spad{body(d)} returns the right hand side of the definition \\spad{`d'}.")) (|signature| (((|Signature|) $) "\\spad{signature(d)} returns the signature of the operation being defined. Note that this list may be partial in that it contains only the types actually specified in the definition.")) (|head| (((|HeadAst|) $) "\\spad{head(d)} returns the head of the definition \\spad{`d'}. This is a list of identifiers starting with the name of the operation followed by the name of the parameters,{} if any.")))
NIL
NIL
-(-219 R -2382)
+(-219 R -2386)
((|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
@@ -818,19 +818,19 @@ NIL
NIL
(-222 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-223 |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}.")))
-((-4414 . T))
+((-4411 . T))
NIL
-(-224 R -2382)
+(-224 R -2386)
((|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
(-225)
((|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)}.")) (|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}.")) (|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}.")))
-((-3645 . T) (-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-3651 . T) (-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-226)
((|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)}.}")))
@@ -838,15 +838,15 @@ NIL
NIL
(-227 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}")))
-((-4417 . T) (-4418 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-558))) (|HasAttribute| |#1| (QUOTE (-4419 "*"))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
+((-4414 . T) (-4415 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-558))) (|HasAttribute| |#1| (QUOTE (-4416 "*"))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-228 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
(-229 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.")))
-((-4418 . T))
+((-4415 . T))
NIL
(-230 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}.")))
@@ -854,7 +854,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233))))
(-231 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}.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-232 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.")))
@@ -862,36 +862,36 @@ NIL
NIL
(-233)
((|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.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-234 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 -4417)))
+((|HasAttribute| |#1| (QUOTE -4414)))
(-235 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}.")))
-((-4418 . T))
+((-4415 . T))
NIL
(-236)
((|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
-(-237 S -2293 R)
+(-237 S -4225 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 (-365))) (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (QUOTE (-848))) (|HasAttribute| |#3| (QUOTE -4414)) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (QUOTE (-1099))))
-(-238 -2293 R)
+((|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (QUOTE (-848))) (|HasAttribute| |#3| (QUOTE -4411)) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (QUOTE (-1099))))
+(-238 -4225 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")))
-((-4411 |has| |#2| (-1049)) (-4412 |has| |#2| (-1049)) (-4414 |has| |#2| (-6 -4414)) ((-4419 "*") |has| |#2| (-172)) (-4417 . T))
+((-4408 |has| |#2| (-1049)) (-4409 |has| |#2| (-1049)) (-4411 |has| |#2| (-6 -4411)) ((-4416 "*") |has| |#2| (-172)) (-4414 . T))
NIL
-(-239 -2293 A B)
+(-239 -4225 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
-(-240 -2293 R)
+(-240 -4225 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.")))
-((-4411 |has| |#2| (-1049)) (-4412 |has| |#2| (-1049)) (-4414 |has| |#2| (-6 -4414)) ((-4419 "*") |has| |#2| (-172)) (-4417 . T))
-((-2805 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (QUOTE (-365))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365)))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-793))) (-2805 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848)))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-726))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-233))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-370)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-726)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-793)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-848)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-2805 (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasAttribute| |#2| (QUOTE -4414)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))))
+((-4408 |has| |#2| (-1049)) (-4409 |has| |#2| (-1049)) (-4411 |has| |#2| (-6 -4411)) ((-4416 "*") |has| |#2| (-172)) (-4414 . T))
+((-2805 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (QUOTE (-365))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365)))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-793))) (-2805 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848)))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-726))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-233))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-370)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-726)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-793)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-848)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-2805 (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasAttribute| |#2| (QUOTE -4411)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))))
(-241)
((|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
@@ -902,7 +902,7 @@ NIL
NIL
(-243)
((|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}.")))
-((-4410 . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-244 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.")))
@@ -910,7 +910,7 @@ NIL
NIL
(-245 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}")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-246 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}")))
@@ -918,8 +918,8 @@ NIL
NIL
(-247 |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")))
-(((-4419 "*") |has| |#2| (-172)) (-4410 |has| |#2| (-558)) (-4415 |has| |#2| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#2| (QUOTE (-909))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-558)))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))) (|HasAttribute| |#2| (QUOTE -4415)) (|HasCategory| |#2| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
+(((-4416 "*") |has| |#2| (-172)) (-4407 |has| |#2| (-558)) (-4412 |has| |#2| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#2| (QUOTE (-909))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-558)))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))) (|HasAttribute| |#2| (QUOTE -4412)) (|HasCategory| |#2| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
(-248)
((|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'}.")) (|constructor| (NIL "\\indented{1}{Author: Gabriel Dos Reis} Date Create: October 18,{} 2007. Date Last Updated: December 20,{} 2008. Basic Operations: coerce,{} reify Related Constructors: Type,{} Syntax,{} OutputForm Also See: Type,{} ConstructorCall") (((|DomainConstructor|) $) "\\spad{constructor(d)} returns the domain constructor that is instantiated to the domain object \\spad{`d'}.")))
NIL
@@ -934,23 +934,23 @@ NIL
NIL
(-251 |n| R M S)
((|constructor| (NIL "This constructor provides a direct product type with a left matrix-module view.")))
-((-4414 -2805 (-2438 (|has| |#4| (-1049)) (|has| |#4| (-233))) (-2438 (|has| |#4| (-1049)) (|has| |#4| (-900 (-1175)))) (|has| |#4| (-6 -4414)) (-2438 (|has| |#4| (-1049)) (|has| |#4| (-639 (-566))))) (-4411 |has| |#4| (-1049)) (-4412 |has| |#4| (-1049)) ((-4419 "*") |has| |#4| (-172)) (-4417 . T))
-((-2805 (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-365))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-726))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-793))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-848))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#4| (QUOTE (-365))) (-2805 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-365))) (|HasCategory| |#4| (QUOTE (-1049)))) (-2805 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-365)))) (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-793))) (-2805 (|HasCategory| |#4| (QUOTE (-793))) (|HasCategory| |#4| (QUOTE (-848)))) (|HasCategory| |#4| (QUOTE (-848))) (|HasCategory| |#4| (QUOTE (-726))) (-2805 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-1049)))) (|HasCategory| |#4| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1049)))) (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-172)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-233)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-365)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-370)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-726)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-793)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-848)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-1049)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-365))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-726))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-793))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-848))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-1049))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-365))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-726))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-793))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-848))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1049)))) (-2805 (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1049)))) (|HasCategory| |#4| (QUOTE (-726))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-2805 (|HasCategory| |#4| (QUOTE (-1049))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-1099)))) (-2805 (|HasAttribute| |#4| (QUOTE -4414)) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1049)))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#4| (QUOTE (-131))) (|HasCategory| |#4| (QUOTE (-25))) (|HasCategory| |#4| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))))
+((-4411 -2805 (-2447 (|has| |#4| (-1049)) (|has| |#4| (-233))) (-2447 (|has| |#4| (-1049)) (|has| |#4| (-900 (-1175)))) (|has| |#4| (-6 -4411)) (-2447 (|has| |#4| (-1049)) (|has| |#4| (-639 (-566))))) (-4408 |has| |#4| (-1049)) (-4409 |has| |#4| (-1049)) ((-4416 "*") |has| |#4| (-172)) (-4414 . T))
+((-2805 (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-365))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-726))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-793))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-848))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#4| (QUOTE (-365))) (-2805 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-365))) (|HasCategory| |#4| (QUOTE (-1049)))) (-2805 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-365)))) (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-793))) (-2805 (|HasCategory| |#4| (QUOTE (-793))) (|HasCategory| |#4| (QUOTE (-848)))) (|HasCategory| |#4| (QUOTE (-848))) (|HasCategory| |#4| (QUOTE (-726))) (-2805 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-1049)))) (|HasCategory| |#4| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1049)))) (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-172)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-233)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-365)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-370)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-726)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-793)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-848)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-1049)))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-365))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-726))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-793))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-848))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-1049))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-365))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-726))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-793))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-848))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1049)))) (-2805 (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1049)))) (|HasCategory| |#4| (QUOTE (-726))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566))))) (-2805 (|HasCategory| |#4| (QUOTE (-1049))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#4| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (QUOTE (-1099)))) (-2805 (|HasAttribute| |#4| (QUOTE -4411)) (-12 (|HasCategory| |#4| (QUOTE (-233))) (|HasCategory| |#4| (QUOTE (-1049)))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#4| (QUOTE (-1049))) (|HasCategory| |#4| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#4| (QUOTE (-131))) (|HasCategory| |#4| (QUOTE (-25))) (|HasCategory| |#4| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))))
(-252 |n| R S)
((|constructor| (NIL "This constructor provides a direct product of \\spad{R}-modules with an \\spad{R}-module view.")))
-((-4414 -2805 (-2438 (|has| |#3| (-1049)) (|has| |#3| (-233))) (-2438 (|has| |#3| (-1049)) (|has| |#3| (-900 (-1175)))) (|has| |#3| (-6 -4414)) (-2438 (|has| |#3| (-1049)) (|has| |#3| (-639 (-566))))) (-4411 |has| |#3| (-1049)) (-4412 |has| |#3| (-1049)) ((-4419 "*") |has| |#3| (-172)) (-4417 . T))
-((-2805 (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#3| (QUOTE (-365))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-365)))) (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-793))) (-2805 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (QUOTE (-848)))) (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (QUOTE (-726))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-1049)))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-172)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-233)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-365)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-370)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-726)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-793)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-848)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1049)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1049))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (|HasCategory| |#3| (QUOTE (-726))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-2805 (|HasCategory| |#3| (QUOTE (-1049))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1099)))) (-2805 (|HasAttribute| |#3| (QUOTE -4414)) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))))
+((-4411 -2805 (-2447 (|has| |#3| (-1049)) (|has| |#3| (-233))) (-2447 (|has| |#3| (-1049)) (|has| |#3| (-900 (-1175)))) (|has| |#3| (-6 -4411)) (-2447 (|has| |#3| (-1049)) (|has| |#3| (-639 (-566))))) (-4408 |has| |#3| (-1049)) (-4409 |has| |#3| (-1049)) ((-4416 "*") |has| |#3| (-172)) (-4414 . T))
+((-2805 (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#3| (QUOTE (-365))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-365)))) (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-793))) (-2805 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (QUOTE (-848)))) (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (QUOTE (-726))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-1049)))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-172)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-233)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-365)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-370)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-726)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-793)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-848)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1049)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1049))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (|HasCategory| |#3| (QUOTE (-726))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-2805 (|HasCategory| |#3| (QUOTE (-1049))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1099)))) (-2805 (|HasAttribute| |#3| (QUOTE -4411)) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))))
(-253 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 (-233))))
(-254 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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
NIL
(-255 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
NIL
(-256)
((|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.")))
@@ -990,8 +990,8 @@ NIL
NIL
(-265 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")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#3| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#3| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#3| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#3| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#3| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#3| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4412)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-266 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
@@ -1036,11 +1036,11 @@ NIL
((|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
-(-277 R -2382)
+(-277 R -2386)
((|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
-(-278 R -2382)
+(-278 R -2386)
((|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
@@ -1062,7 +1062,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))))
(-283 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}.")))
-((-4418 . T))
+((-4415 . T))
NIL
(-284 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}.")))
@@ -1083,18 +1083,18 @@ NIL
(-288 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 -4418)))
+((|HasAttribute| |#1| (QUOTE -4415)))
(-289 |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
-(-290 S R |Mod| -3550 -3132 |exactQuo|)
+(-290 S R |Mod| -3418 -3891 |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")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-291)
((|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.")))
-((-4410 . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-292)
((|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.")) (|interactiveEnv| (($) "the current interactive environment in effect.")) (|currentEnv| (($) "the current normal environment in effect.")) (|setProperties!| (($ (|Identifier|) (|List| (|Property|)) $) "setBinding!(\\spad{n},{}props,{}\\spad{e}) set the list of properties of \\spad{`n'} to `props' in `e'.")) (|getProperties| (((|List| (|Property|)) (|Identifier|) $) "getBinding(\\spad{n},{}\\spad{e}) returns the list of properties of \\spad{`n'} in \\spad{e}.")) (|setProperty!| (($ (|Identifier|) (|Identifier|) (|SExpression|) $) "\\spad{setProperty!(n,{}p,{}v,{}e)} binds the property `(\\spad{p},{}\\spad{v})' to \\spad{`n'} in the topmost scope of `e'.")) (|getProperty| (((|Maybe| (|SExpression|)) (|Identifier|) (|Identifier|) $) "\\spad{getProperty(n,{}p,{}e)} returns the value of property with name \\spad{`p'} for the symbol \\spad{`n'} in environment `e'. Otherwise,{} `nothing.")) (|scopes| (((|List| (|Scope|)) $) "\\spad{scopes(e)} returns the stack of scopes in environment \\spad{e}.")) (|empty| (($) "\\spad{empty()} constructs an empty environment")))
@@ -1110,21 +1110,21 @@ NIL
NIL
(-295 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.")))
-((-4414 -2805 (|has| |#1| (-1049)) (|has| |#1| (-475))) (-4411 |has| |#1| (-1049)) (-4412 |has| |#1| (-1049)))
+((-4411 -2805 (|has| |#1| (-1049)) (|has| |#1| (-475))) (-4408 |has| |#1| (-1049)) (-4409 |has| |#1| (-1049)))
((|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-1049)))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-1049))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-1049)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-1049)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-1049)))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-1049)))) (-2805 (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#1| (QUOTE (-726)))) (|HasCategory| |#1| (QUOTE (-475))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#1| (QUOTE (-726))) (|HasCategory| |#1| (QUOTE (-1049))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-1099)))) (-2805 (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#1| (QUOTE (-726))) (|HasCategory| |#1| (QUOTE (-1111)))) (|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-303))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-475)))) (-2805 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-726)))) (-2805 (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#1| (QUOTE (-1049)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-726))))
(-296 |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.")))
-((-4417 . T) (-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))))
+((-4414 . T) (-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))))
(-297)
((|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
-(-298 -2382 S)
+(-298 -2386 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
-(-299 E -2382)
+(-299 E -2386)
((|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
@@ -1162,7 +1162,7 @@ NIL
NIL
(-308)
((|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}.")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-309 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}.")))
@@ -1172,7 +1172,7 @@ NIL
((|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
-(-311 -2382)
+(-311 -2386)
((|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
@@ -1186,7 +1186,7 @@ NIL
NIL
(-314 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))}.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-909))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-145))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-147))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-1022))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-820))) (-2805 (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-820))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-850)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-1150))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-233))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -1250) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -310) (LIST (QUOTE -1250) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (LIST (QUOTE -287) (LIST (QUOTE -1250) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)) (LIST (QUOTE -1250) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#4|)))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-308))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-547))) (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-850))) (-12 (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-909))) (|HasCategory| $ (QUOTE (-145)))) (-2805 (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-145))) (-12 (|HasCategory| (-1250 |#1| |#2| |#3| |#4|) (QUOTE (-909))) (|HasCategory| $ (QUOTE (-145))))))
(-315 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}.")))
@@ -1198,9 +1198,9 @@ NIL
NIL
(-317 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.")))
-((-4414 -2805 (-2438 (|has| |#1| (-1049)) (|has| |#1| (-639 (-566)))) (-12 (|has| |#1| (-558)) (-2805 (-2438 (|has| |#1| (-1049)) (|has| |#1| (-639 (-566)))) (|has| |#1| (-1049)) (|has| |#1| (-475)))) (|has| |#1| (-1049)) (|has| |#1| (-475))) (-4412 |has| |#1| (-172)) (-4411 |has| |#1| (-172)) ((-4419 "*") |has| |#1| (-558)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-558)) (-4409 |has| |#1| (-558)))
+((-4411 -2805 (-2447 (|has| |#1| (-1049)) (|has| |#1| (-639 (-566)))) (-12 (|has| |#1| (-558)) (-2805 (-2447 (|has| |#1| (-1049)) (|has| |#1| (-639 (-566)))) (|has| |#1| (-1049)) (|has| |#1| (-475)))) (|has| |#1| (-1049)) (|has| |#1| (-475))) (-4409 |has| |#1| (-172)) (-4408 |has| |#1| (-172)) ((-4416 "*") |has| |#1| (-558)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-558)) (-4406 |has| |#1| (-558)))
((-2805 (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-1049)))) (|HasCategory| |#1| (QUOTE (-21))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-1049))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#1| (QUOTE (-1111)))) (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-1049))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566))))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-1049)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-1049)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-1049)))) (-12 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (QUOTE (-1049))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1049))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-1111)))) (-2805 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-1049))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))))) (-2805 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1049))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-1111)))) (-2805 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1049))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))))) (-2805 (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#1| (QUOTE (-1049)))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1111))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| $ (QUOTE (-1049))) (|HasCategory| $ (LIST (QUOTE -1038) (QUOTE (-566)))))
-(-318 R -2382)
+(-318 R -2386)
((|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
@@ -1210,8 +1210,8 @@ NIL
NIL
(-320 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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|)))) (|HasCategory| (-409 (-566)) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -4117) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|)))) (|HasCategory| (-409 (-566)) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3921) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
(-321 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
@@ -1222,7 +1222,7 @@ NIL
NIL
(-323 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.")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
((|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-792))))
(-324 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}.")))
@@ -1238,19 +1238,19 @@ NIL
((|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))))
(-327 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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-328 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.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
-(-329 S -2382)
+(-329 S -2386)
((|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 (-370))))
-(-330 -2382)
+(-330 -2386)
((|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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-331)
((|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.")))
@@ -1272,15 +1272,15 @@ NIL
((|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
-(-336 S -2382 UP UPUP R)
+(-336 S -2386 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
-(-337 -2382 UP UPUP R)
+(-337 -2386 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
-(-338 -2382 UP UPUP R)
+(-338 -2386 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
@@ -1294,31 +1294,31 @@ NIL
NIL
(-341 |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.}")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-381)))) (|HasCategory| $ (QUOTE (-1049))) (|HasCategory| $ (LIST (QUOTE -1038) (QUOTE (-566)))))
(-342 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
-(-343 S -2382 UP UPUP)
+(-343 S -2386 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}.")) (|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 (-370))) (|HasCategory| |#2| (QUOTE (-365))))
-(-344 -2382 UP UPUP)
+(-344 -2386 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}.")) (|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.")))
-((-4410 |has| (-409 |#2|) (-365)) (-4415 |has| (-409 |#2|) (-365)) (-4409 |has| (-409 |#2|) (-365)) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 |has| (-409 |#2|) (-365)) (-4412 |has| (-409 |#2|) (-365)) (-4406 |has| (-409 |#2|) (-365)) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-345 |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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((-2805 (|HasCategory| (-910 |#1|) (QUOTE (-145))) (|HasCategory| (-910 |#1|) (QUOTE (-370)))) (|HasCategory| (-910 |#1|) (QUOTE (-147))) (|HasCategory| (-910 |#1|) (QUOTE (-370))) (|HasCategory| (-910 |#1|) (QUOTE (-145))))
(-346 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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((-2805 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-370)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-145))))
(-347 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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((-2805 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-370)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-145))))
(-348 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}.")))
@@ -1334,33 +1334,33 @@ NIL
NIL
(-351)
((|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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
-(-352 R UP -2382)
+(-352 R UP -2386)
((|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
(-353 |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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((-2805 (|HasCategory| (-910 |#1|) (QUOTE (-145))) (|HasCategory| (-910 |#1|) (QUOTE (-370)))) (|HasCategory| (-910 |#1|) (QUOTE (-147))) (|HasCategory| (-910 |#1|) (QUOTE (-370))) (|HasCategory| (-910 |#1|) (QUOTE (-145))))
(-354 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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((-2805 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-370)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-145))))
(-355 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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((-2805 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-370)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-145))))
(-356 |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}.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((-2805 (|HasCategory| (-910 |#1|) (QUOTE (-145))) (|HasCategory| (-910 |#1|) (QUOTE (-370)))) (|HasCategory| (-910 |#1|) (QUOTE (-147))) (|HasCategory| (-910 |#1|) (QUOTE (-370))) (|HasCategory| (-910 |#1|) (QUOTE (-145))))
(-357 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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((-2805 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-370)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-145))))
-(-358 -2382 GF)
+(-358 -2386 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
@@ -1368,13 +1368,13 @@ NIL
((|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
-(-360 -2382 FP FPP)
+(-360 -2386 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
(-361 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}.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((-2805 (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-370)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-145))))
(-362 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}}.")))
@@ -1382,7 +1382,7 @@ NIL
NIL
(-363 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.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-364 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.")))
@@ -1390,7 +1390,7 @@ NIL
NIL
(-365)
((|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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-366 |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.")))
@@ -1406,7 +1406,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-558))))
(-369 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.")))
-((-4414 |has| |#1| (-558)) (-4412 . T) (-4411 . T))
+((-4411 |has| |#1| (-558)) (-4409 . T) (-4408 . T))
NIL
(-370)
((|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.")))
@@ -1418,7 +1418,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-365))))
(-372 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.")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-373 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.")))
@@ -1427,14 +1427,14 @@ NIL
(-374 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 -4418)) (|HasCategory| |#2| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))))
+((|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#2| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))))
(-375 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]}.")))
-((-4417 . T))
+((-4414 . T))
NIL
(-376 |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) (-4412 . T) (-4411 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4409 . T) (-4408 . T))
NIL
(-377 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.")))
@@ -1446,7 +1446,7 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))))
(-379 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}")))
-((-4414 . T))
+((-4411 . T))
NIL
(-380 |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}.")))
@@ -1454,7 +1454,7 @@ NIL
NIL
(-381)
((|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}.")) (|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}.")))
-((-4400 . T) (-4408 . T) (-3645 . T) (-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4397 . T) (-4405 . T) (-3651 . T) (-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-382 |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}.")))
@@ -1462,11 +1462,11 @@ NIL
NIL
(-383 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}")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
((|HasCategory| |#1| (QUOTE (-172))))
(-384 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}.")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
NIL
(-385)
((|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}.")))
@@ -1478,7 +1478,7 @@ NIL
NIL
(-387 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.")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
((|HasCategory| |#1| (QUOTE (-172))))
(-388 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.")))
@@ -1486,7 +1486,7 @@ NIL
((|HasCategory| |#1| (QUOTE (-850))))
(-389)
((|constructor| (NIL "A category of domains which model machine arithmetic used by machines in the AXIOM-NAG link.")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-390)
((|constructor| (NIL "This domain provides an interface to names in the file system.")))
@@ -1498,13 +1498,13 @@ NIL
NIL
(-392 |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")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
NIL
(-393)
((|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
-(-394 -2382 UP UPUP R)
+(-394 -2386 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
@@ -1528,11 +1528,11 @@ NIL
((|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
-(-400 -2628 |returnType| -2763 |symbols|)
+(-400 -2639 |returnType| -3072 |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
-(-401 -2382 UP)
+(-401 -2386 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
@@ -1546,15 +1546,15 @@ NIL
NIL
(-404)
((|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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-405 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 -4400)) (|HasAttribute| |#1| (QUOTE -4408)))
+((|HasAttribute| |#1| (QUOTE -4397)) (|HasAttribute| |#1| (QUOTE -4405)))
(-406)
((|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\".")))
-((-3645 . T) (-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-3651 . T) (-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-407 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.")))
@@ -1566,15 +1566,15 @@ NIL
NIL
(-409 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.")))
-((-4404 -12 (|has| |#1| (-6 -4415)) (|has| |#1| (-454)) (|has| |#1| (-6 -4404))) (-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-909))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (QUOTE (-1022))) (|HasCategory| |#1| (QUOTE (-820))) (-2805 (|HasCategory| |#1| (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-850)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-1150))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828))))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -287) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828)))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-547))) (-12 (|HasAttribute| |#1| (QUOTE -4415)) (|HasAttribute| |#1| (QUOTE -4404)) (|HasCategory| |#1| (QUOTE (-454)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
+((-4401 -12 (|has| |#1| (-6 -4412)) (|has| |#1| (-454)) (|has| |#1| (-6 -4401))) (-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-909))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (QUOTE (-1022))) (|HasCategory| |#1| (QUOTE (-820))) (-2805 (|HasCategory| |#1| (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-850)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-1150))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828))))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -287) (|devaluate| |#1|) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-828)))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-547))) (-12 (|HasAttribute| |#1| (QUOTE -4412)) (|HasAttribute| |#1| (QUOTE -4401)) (|HasCategory| |#1| (QUOTE (-454)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-410 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
(-411 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.")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-412 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")))
@@ -1588,11 +1588,11 @@ NIL
((|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
-(-415 R -2382 UP A)
+(-415 R -2386 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)}.")))
-((-4414 . T))
+((-4411 . T))
NIL
-(-416 R -2382 UP A |ibasis|)
+(-416 R -2386 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 -1038) (|devaluate| |#2|))))
@@ -1606,11 +1606,11 @@ NIL
((|HasCategory| |#2| (QUOTE (-365))))
(-419 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.")))
-((-4414 |has| |#1| (-558)) (-4412 . T) (-4411 . T))
+((-4411 |has| |#1| (-558)) (-4409 . T) (-4408 . T))
NIL
(-420 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.")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -310) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -287) (QUOTE $) (QUOTE $))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-1218))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-1218)))) (|HasCategory| |#1| (QUOTE (-1022))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -287) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-454))))
(-421 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)}.")))
@@ -1638,17 +1638,17 @@ NIL
((|HasCategory| |#2| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-370))))
(-427 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}.")))
-((-4417 . T) (-4407 . T) (-4418 . T))
+((-4414 . T) (-4404 . T) (-4415 . T))
NIL
-(-428 R -2382)
+(-428 R -2386)
((|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
(-429 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")))
-((-4404 -12 (|has| |#1| (-6 -4404)) (|has| |#2| (-6 -4404))) (-4411 . T) (-4412 . T) (-4414 . T))
-((-12 (|HasAttribute| |#1| (QUOTE -4404)) (|HasAttribute| |#2| (QUOTE -4404))))
-(-430 R -2382)
+((-4401 -12 (|has| |#1| (-6 -4401)) (|has| |#2| (-6 -4401))) (-4408 . T) (-4409 . T) (-4411 . T))
+((-12 (|HasAttribute| |#1| (QUOTE -4401)) (|HasAttribute| |#2| (QUOTE -4401))))
+(-430 R -2386)
((|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
@@ -1658,17 +1658,17 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-475))) (|HasCategory| |#2| (QUOTE (-1111))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))))
(-432 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}.")))
-((-4414 -2805 (|has| |#1| (-1049)) (|has| |#1| (-475))) (-4412 |has| |#1| (-172)) (-4411 |has| |#1| (-172)) ((-4419 "*") |has| |#1| (-558)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-558)) (-4409 |has| |#1| (-558)))
+((-4411 -2805 (|has| |#1| (-1049)) (|has| |#1| (-475))) (-4409 |has| |#1| (-172)) (-4408 |has| |#1| (-172)) ((-4416 "*") |has| |#1| (-558)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-558)) (-4406 |has| |#1| (-558)))
NIL
-(-433 R -2382)
+(-433 R -2386)
((|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
-(-434 R -2382)
+(-434 R -2386)
((|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))))
-(-435 R -2382)
+(-435 R -2386)
((|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
@@ -1676,7 +1676,7 @@ NIL
((|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
-(-437 R -2382 UP)
+(-437 R -2386 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 -1038) (QUOTE (-48)))))
@@ -1708,7 +1708,7 @@ NIL
((|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
-(-445 R UP -2382)
+(-445 R UP -2386)
((|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
@@ -1746,16 +1746,16 @@ NIL
NIL
(-454)
((|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}.")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-455 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")))
-((-4414 |has| (-409 (-952 |#1|)) (-558)) (-4412 . T) (-4411 . T))
+((-4411 |has| (-409 (-952 |#1|)) (-558)) (-4409 . T) (-4408 . T))
((|HasCategory| (-409 (-952 |#1|)) (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| (-409 (-952 |#1|)) (QUOTE (-558))))
(-456 |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")))
-(((-4419 "*") |has| |#2| (-172)) (-4410 |has| |#2| (-558)) (-4415 |has| |#2| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#2| (QUOTE (-909))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-558)))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))) (|HasAttribute| |#2| (QUOTE -4415)) (|HasCategory| |#2| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
+(((-4416 "*") |has| |#2| (-172)) (-4407 |has| |#2| (-558)) (-4412 |has| |#2| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#2| (QUOTE (-909))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-558)))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))) (|HasAttribute| |#2| (QUOTE -4412)) (|HasCategory| |#2| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
(-457 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
@@ -1782,7 +1782,7 @@ NIL
NIL
(-463 |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")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
NIL
(-464 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}.")))
@@ -1790,7 +1790,7 @@ NIL
NIL
(-465 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}}.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#4| (LIST (QUOTE -613) (QUOTE (-862)))))
(-466 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}.")))
@@ -1820,7 +1820,7 @@ NIL
((|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
-(-473 |lv| -2382 R)
+(-473 |lv| -2386 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
@@ -1830,23 +1830,23 @@ NIL
NIL
(-475)
((|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}.")) (/ (($ $ $) "\\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}.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-476 |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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|)))) (|HasCategory| (-409 (-566)) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -4117) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|)))) (|HasCategory| (-409 (-566)) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3921) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
(-477 |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.")))
-((-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-850))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))))
+((-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-850))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))))
(-478 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)}")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -613) (QUOTE (-862)))))
(-479)
((|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}.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-480)
((|constructor| (NIL "This domain represents a `has' expression.")) (|rhs| (((|SpadAst|) $) "\\spad{rhs(e)} returns the right hand side of the case expression `e'.")) (|lhs| (((|SpadAst|) $) "\\spad{lhs(e)} returns the left hand side of the has expression `e'.")))
@@ -1854,29 +1854,29 @@ NIL
NIL
(-481 |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.")))
-((-4417 . T) (-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))))
+((-4414 . T) (-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))))
(-482)
((|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
(-483 |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")))
-(((-4419 "*") |has| |#2| (-172)) (-4410 |has| |#2| (-558)) (-4415 |has| |#2| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#2| (QUOTE (-909))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-558)))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))) (|HasAttribute| |#2| (QUOTE -4415)) (|HasCategory| |#2| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
-(-484 -2293 S)
+(((-4416 "*") |has| |#2| (-172)) (-4407 |has| |#2| (-558)) (-4412 |has| |#2| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#2| (QUOTE (-909))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-558)))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))) (|HasAttribute| |#2| (QUOTE -4412)) (|HasCategory| |#2| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
+(-484 -4225 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}.")))
-((-4411 |has| |#2| (-1049)) (-4412 |has| |#2| (-1049)) (-4414 |has| |#2| (-6 -4414)) ((-4419 "*") |has| |#2| (-172)) (-4417 . T))
-((-2805 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (QUOTE (-365))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365)))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-793))) (-2805 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848)))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-726))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-233))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-370)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-726)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-793)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-848)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-2805 (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasAttribute| |#2| (QUOTE -4414)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))))
+((-4408 |has| |#2| (-1049)) (-4409 |has| |#2| (-1049)) (-4411 |has| |#2| (-6 -4411)) ((-4416 "*") |has| |#2| (-172)) (-4414 . T))
+((-2805 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (QUOTE (-365))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365)))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-793))) (-2805 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848)))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-726))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-233))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-370)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-726)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-793)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-848)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-2805 (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasAttribute| |#2| (QUOTE -4411)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))))
(-485)
((|constructor| (NIL "This domain represents the header of a definition.")) (|parameters| (((|List| (|Identifier|)) $) "\\spad{parameters(h)} gives the parameters specified in the definition header \\spad{`h'}.")) (|name| (((|Identifier|) $) "\\spad{name(h)} returns the name of the operation defined defined.")) (|headAst| (($ (|Identifier|) (|List| (|Identifier|))) "\\spad{headAst(f,{}[x1,{}..,{}xn])} constructs a function definition header.")))
NIL
NIL
(-486 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
-(-487 -2382 UP UPUP R)
+(-487 -2386 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
@@ -1886,12 +1886,12 @@ NIL
NIL
(-489)
((|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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| (-566) (QUOTE (-909))) (|HasCategory| (-566) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| (-566) (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-147))) (|HasCategory| (-566) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-566) (QUOTE (-1022))) (|HasCategory| (-566) (QUOTE (-820))) (-2805 (|HasCategory| (-566) (QUOTE (-820))) (|HasCategory| (-566) (QUOTE (-850)))) (|HasCategory| (-566) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-566) (QUOTE (-1150))) (|HasCategory| (-566) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| (-566) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| (-566) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| (-566) (QUOTE (-233))) (|HasCategory| (-566) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-566) (LIST (QUOTE -516) (QUOTE (-1175)) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -310) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -287) (QUOTE (-566)) (QUOTE (-566)))) (|HasCategory| (-566) (QUOTE (-308))) (|HasCategory| (-566) (QUOTE (-547))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-566) (LIST (QUOTE -639) (QUOTE (-566)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-909)))) (|HasCategory| (-566) (QUOTE (-145)))))
(-490 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 -4417)) (|HasAttribute| |#1| (QUOTE -4418)) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))))
+((|HasAttribute| |#1| (QUOTE -4414)) (|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))))
(-491 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}]}.")))
NIL
@@ -1912,33 +1912,33 @@ NIL
((|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
-(-496 -2382 UP |AlExt| |AlPol|)
+(-496 -2386 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
(-497)
((|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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| $ (QUOTE (-1049))) (|HasCategory| $ (LIST (QUOTE -1038) (QUOTE (-566)))))
(-498 S |mn|)
((|constructor| (NIL "\\indented{1}{Author Micheal Monagan Aug/87} This is the basic one dimensional array data type.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-499 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.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-500 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
-(-501 R UP -2382)
+(-501 R UP -2386)
((|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
(-502 |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}.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-12 (|HasCategory| (-112) (QUOTE (-1099))) (|HasCategory| (-112) (LIST (QUOTE -310) (QUOTE (-112))))) (|HasCategory| (-112) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-112) (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-112) (QUOTE (-1099))) (|HasCategory| (-112) (LIST (QUOTE -613) (QUOTE (-862)))))
(-503 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)}.")))
@@ -1952,7 +1952,7 @@ NIL
((|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
-(-506 -2382 |Expon| |VarSet| |DPoly|)
+(-506 -2386 |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 -614) (QUOTE (-1175)))))
@@ -2002,7 +2002,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-792))))
(-518 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}")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-519)
((|constructor| (NIL "This domain represents AST for conditional expressions.")) (|elseBranch| (((|SpadAst|) $) "thenBranch(\\spad{e}) returns the `else-branch' of `e'.")) (|thenBranch| (((|SpadAst|) $) "\\spad{thenBranch(e)} returns the `then-branch' of `e'.")) (|condition| (((|SpadAst|) $) "\\spad{condition(e)} returns the condition of the if-expression `e'.")))
@@ -2010,28 +2010,28 @@ NIL
NIL
(-520 |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}.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((-2805 (|HasCategory| (-583 |#1|) (QUOTE (-145))) (|HasCategory| (-583 |#1|) (QUOTE (-370)))) (|HasCategory| (-583 |#1|) (QUOTE (-147))) (|HasCategory| (-583 |#1|) (QUOTE (-370))) (|HasCategory| (-583 |#1|) (QUOTE (-145))))
(-521 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-522 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.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-523 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 -4418)))
+((|HasAttribute| |#3| (QUOTE -4415)))
(-524 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 -4418)))
+((|HasAttribute| |#7| (QUOTE -4415)))
(-525 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.")))
-((-4417 . T) (-4418 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-558))) (|HasAttribute| |#1| (QUOTE (-4419 "*"))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
+((-4414 . T) (-4415 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-558))) (|HasAttribute| |#1| (QUOTE (-4416 "*"))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-526)
((|constructor| (NIL "This domain represents an `import' of types.")) (|imports| (((|List| (|TypeAst|)) $) "\\spad{imports(x)} returns the list of imported types.")) (|coerce| (($ (|List| (|TypeAst|))) "ts::ImportAst constructs an ImportAst for the list if types `ts'.")))
NIL
@@ -2064,7 +2064,7 @@ NIL
((|constructor| (NIL "\\indented{2}{IndexedExponents of an ordered set of variables gives a representation} for the degree of polynomials in commuting variables. It gives an ordered pairing of non negative integer exponents with variables")))
NIL
NIL
-(-534 K -2382 |Par|)
+(-534 K -2386 |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
@@ -2088,7 +2088,7 @@ NIL
((|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
-(-540 K -2382 |Par|)
+(-540 K -2386 |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
@@ -2118,7 +2118,7 @@ NIL
NIL
(-547)
((|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}.")) (|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.")))
-((-4415 . T) (-4416 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4412 . T) (-4413 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-548)
((|constructor| (NIL "This domain is a datatype for (signed) integer values of precision 16 bits.")))
@@ -2138,13 +2138,13 @@ NIL
NIL
(-552 |Key| |Entry| |addDom|)
((|constructor| (NIL "This domain is used to provide a conditional \"add\" domain for the implementation of \\spadtype{Table}.")))
-((-4417 . T) (-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))))
-(-553 R -2382)
+((-4414 . T) (-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))))
+(-553 R -2386)
((|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
-(-554 R0 -2382 UP UPUP R)
+(-554 R0 -2386 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
@@ -2154,7 +2154,7 @@ NIL
NIL
(-556 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.")))
-((-3645 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-3651 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-557 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.")))
@@ -2162,9 +2162,9 @@ NIL
NIL
(-558)
((|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.")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
-(-559 R -2382)
+(-559 R -2386)
((|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
@@ -2176,7 +2176,7 @@ NIL
((|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
-(-562 R -2382 L)
+(-562 R -2386 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 -656) (|devaluate| |#2|))))
@@ -2184,31 +2184,31 @@ NIL
((|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
-(-564 -2382 UP UPUP R)
+(-564 -2386 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
-(-565 -2382 UP)
+(-565 -2386 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
(-566)
((|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}.")))
-((-4399 . T) (-4405 . T) (-4409 . T) (-4404 . T) (-4415 . T) (-4416 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4396 . T) (-4402 . T) (-4406 . T) (-4401 . T) (-4412 . T) (-4413 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-567)
((|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
-(-568 R -2382 L)
+(-568 R -2386 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 -656) (|devaluate| |#2|))))
-(-569 R -2382)
+(-569 R -2386)
((|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 -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-1138)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-629)))))
-(-570 -2382 UP)
+(-570 -2386 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
@@ -2216,27 +2216,27 @@ NIL
((|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
-(-572 -2382)
+(-572 -2386)
((|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
(-573 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.")))
-((-3645 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-3651 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-574)
((|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
-(-575 R -2382)
+(-575 R -2386)
((|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 -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-285))) (|HasCategory| |#2| (QUOTE (-629))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175))))) (-12 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-285)))) (|HasCategory| |#1| (QUOTE (-558))))
-(-576 -2382 UP)
+(-576 -2386 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
-(-577 R -2382)
+(-577 R -2386)
((|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
@@ -2258,27 +2258,27 @@ NIL
NIL
(-582 |p| |unBalanced?|)
((|constructor| (NIL "This domain implements \\spad{Zp},{} the \\spad{p}-adic completion of the integers. This is an internal domain.")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-583 |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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| $ (QUOTE (-147))) (|HasCategory| $ (QUOTE (-145))) (|HasCategory| $ (QUOTE (-370))))
(-584)
((|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
-(-585 R -2382)
+(-585 R -2386)
((|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
-(-586 E -2382)
+(-586 E -2386)
((|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
-(-587 -2382)
+(-587 -2386)
((|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}.")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
((|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-1175)))))
(-588 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")))
@@ -2306,7 +2306,7 @@ NIL
NIL
(-594 |mn|)
((|constructor| (NIL "This domain implements low-level strings")) (|hash| (((|Integer|) $) "\\spad{hash(x)} provides a hashing function for strings")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| (-144) (QUOTE (-850))) (|HasCategory| (-144) (LIST (QUOTE -310) (QUOTE (-144))))) (-12 (|HasCategory| (-144) (QUOTE (-1099))) (|HasCategory| (-144) (LIST (QUOTE -310) (QUOTE (-144)))))) (-2805 (|HasCategory| (-144) (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| (-144) (QUOTE (-1099))) (|HasCategory| (-144) (LIST (QUOTE -310) (QUOTE (-144)))))) (|HasCategory| (-144) (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| (-144) (QUOTE (-850))) (|HasCategory| (-144) (QUOTE (-1099)))) (|HasCategory| (-144) (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-144) (QUOTE (-1099))) (|HasCategory| (-144) (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| (-144) (QUOTE (-1099))) (|HasCategory| (-144) (LIST (QUOTE -310) (QUOTE (-144))))))
(-595 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)}.")))
@@ -2314,11 +2314,11 @@ NIL
NIL
(-596 |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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|)))) (|HasCategory| (-566) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|)))) (|HasCategory| (-566) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))))
(-597 |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.}")))
-((-4412 |has| |#1| (-558)) (-4411 |has| |#1| (-558)) ((-4419 "*") |has| |#1| (-558)) (-4410 |has| |#1| (-558)) (-4414 . T))
+((-4409 |has| |#1| (-558)) (-4408 |has| |#1| (-558)) ((-4416 "*") |has| |#1| (-558)) (-4407 |has| |#1| (-558)) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-558))))
(-598 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),{}..]}.")))
@@ -2328,7 +2328,7 @@ NIL
((|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
-(-600 R -2382 FG)
+(-600 R -2386 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
@@ -2338,12 +2338,12 @@ NIL
NIL
(-602 R |mn|)
((|constructor| (NIL "\\indented{2}{This type represents vector like objects with varying lengths} and a user-specified initial index.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-726))) (|HasCategory| |#1| (QUOTE (-1049))) (-12 (|HasCategory| |#1| (QUOTE (-1002))) (|HasCategory| |#1| (QUOTE (-1049)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-603 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 -4418)) (|HasCategory| |#2| (QUOTE (-850))) (|HasAttribute| |#1| (QUOTE -4417)) (|HasCategory| |#3| (QUOTE (-1099))))
+((|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#2| (QUOTE (-850))) (|HasAttribute| |#1| (QUOTE -4414)) (|HasCategory| |#3| (QUOTE (-1099))))
(-604 |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.")))
NIL
@@ -2358,19 +2358,19 @@ NIL
NIL
(-607 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).")))
-((-4414 -2805 (-2438 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))) (-4412 . T) (-4411 . T))
+((-4411 -2805 (-2447 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))) (-4409 . T) (-4408 . T))
((-2805 (|HasCategory| |#2| (LIST (QUOTE -369) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -419) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -419) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -419) (|devaluate| |#1|)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#2| (LIST (QUOTE -369) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#2| (LIST (QUOTE -419) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -369) (|devaluate| |#1|))))
(-608 |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.")))
-((-4417 . T) (-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (QUOTE (-1157))) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| (-1157) (QUOTE (-850))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (LIST (QUOTE -613) (QUOTE (-862)))))
+((-4414 . T) (-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (QUOTE (-1157))) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| (-1157) (QUOTE (-850))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (LIST (QUOTE -613) (QUOTE (-862)))))
(-609 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
(-610 |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}.")))
-((-4418 . T))
+((-4415 . T))
NIL
(-611 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")))
@@ -2388,7 +2388,7 @@ NIL
((|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
-(-615 -2382 UP)
+(-615 -2386 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
@@ -2410,19 +2410,19 @@ NIL
NIL
(-620 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.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-621 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}.")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-848))))
-(-622 R -2382)
+(-622 R -2386)
((|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
(-623 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")))
-((-4412 . T) (-4411 . T) ((-4419 "*") . T) (-4410 . T) (-4414 . T))
+((-4409 . T) (-4408 . T) ((-4416 "*") . T) (-4407 . T) (-4411 . T))
((|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))))
(-624 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.")))
@@ -2438,7 +2438,7 @@ NIL
NIL
(-627 |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}}.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-628 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}}.")))
@@ -2448,29 +2448,29 @@ NIL
((|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
-(-630 R -2382)
+(-630 R -2386)
((|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
-(-631 |lv| -2382)
+(-631 |lv| -2386)
((|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
(-632)
((|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.")))
-((-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (QUOTE (-1157))) (LIST (QUOTE |:|) (QUOTE -2818) (QUOTE (-52))))))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-52) (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -310) (QUOTE (-52))))) (|HasCategory| (-1157) (QUOTE (-850))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (QUOTE (-1099))))
+((-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (QUOTE (-1157))) (LIST (QUOTE |:|) (QUOTE -2849) (QUOTE (-52))))))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-52) (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -310) (QUOTE (-52))))) (|HasCategory| (-1157) (QUOTE (-850))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (QUOTE (-1099))))
(-633 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 (-365))))
(-634 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) (-4412 . T) (-4411 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4409 . T) (-4408 . T))
NIL
(-635 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).")))
-((-4414 -2805 (-2438 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))) (-4412 . T) (-4411 . T))
+((-4411 -2805 (-2447 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))) (-4409 . T) (-4408 . T))
((-2805 (|HasCategory| |#2| (LIST (QUOTE -369) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -419) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -419) (|devaluate| |#1|))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -419) (|devaluate| |#1|)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#2| (LIST (QUOTE -369) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#2| (LIST (QUOTE -419) (|devaluate| |#1|))))) (|HasCategory| |#2| (LIST (QUOTE -369) (|devaluate| |#1|))))
(-636 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))}.")))
@@ -2483,10 +2483,10 @@ NIL
(-638 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
-((-2426 (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-365))))
+((-2436 (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-365))))
(-639 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}.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-640 R)
((|constructor| (NIL "\\indented{2}{A set is an \\spad{R}-linear set if it is stable by dilation} \\indented{2}{by elements in the ring \\spad{R}.\\space{2}This category differs from} \\indented{2}{\\spad{Module} in that no other assumption (such as addition)} \\indented{2}{is made about the underlying set.} See Also: LeftLinearSet,{} RightLinearSet.")))
@@ -2506,7 +2506,7 @@ NIL
NIL
(-644 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.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-828))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-645 T$)
((|constructor| (NIL "This domain represents AST for Spad literals.")))
@@ -2518,7 +2518,7 @@ NIL
NIL
(-647 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.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-648 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")))
@@ -2531,22 +2531,22 @@ NIL
(-650 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 -4418)))
+((|HasAttribute| |#1| (QUOTE -4415)))
(-651 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})}.")))
NIL
NIL
-(-652 R -2382 L)
+(-652 R -2386 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
(-653 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}}")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-365))))
(-654 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}")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-365))))
(-655 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}.")))
@@ -2554,15 +2554,15 @@ NIL
((|HasCategory| |#2| (QUOTE (-365))))
(-656 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}.")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
NIL
-(-657 -2382 UP)
+(-657 -2386 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))))
-(-658 A -2614)
+(-658 A -1554)
((|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}}")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-365))))
(-659 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.")))
@@ -2578,7 +2578,7 @@ NIL
NIL
(-662 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}.")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
((|HasCategory| |#1| (QUOTE (-791))))
(-663 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.")))
@@ -2586,7 +2586,7 @@ NIL
NIL
(-664 |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) (-4412 . T) (-4411 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4409 . T) (-4408 . T))
((|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-172))))
(-665 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}.")))
@@ -2594,13 +2594,13 @@ NIL
NIL
(-666 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}.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
-(-667 -2382)
+(-667 -2386)
((|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
-(-668 -2382 |Row| |Col| M)
+(-668 -2386 |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
@@ -2610,8 +2610,8 @@ NIL
NIL
(-670 |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.")))
-((-4414 . T) (-4417 . T) (-4411 . T) (-4412 . T))
-((|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE (-4419 "*"))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#2| (QUOTE (-308))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-558))) (-2805 (|HasAttribute| |#2| (QUOTE (-4419 "*"))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-172))))
+((-4411 . T) (-4414 . T) (-4408 . T) (-4409 . T))
+((|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE (-4416 "*"))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#2| (QUOTE (-308))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-558))) (-2805 (|HasAttribute| |#2| (QUOTE (-4416 "*"))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-172))))
(-671)
((|constructor| (NIL "This domain represents `literal sequence' syntax.")) (|elements| (((|List| (|SpadAst|)) $) "\\spad{elements(e)} returns the list of expressions in the `literal' list `e'.")))
NIL
@@ -2675,10 +2675,10 @@ NIL
(-686 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 (-4419 "*"))) (|HasCategory| |#2| (QUOTE (-308))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-558))))
+((|HasAttribute| |#2| (QUOTE (-4416 "*"))) (|HasCategory| |#2| (QUOTE (-308))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-558))))
(-687 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")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
NIL
(-688 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.")))
@@ -2686,8 +2686,8 @@ NIL
((|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-558))))
(-689 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.")))
-((-4417 . T) (-4418 . T))
-((-2805 (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-558))) (|HasAttribute| |#1| (QUOTE (-4419 "*"))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
+((-4414 . T) (-4415 . T))
+((-2805 (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-558))) (|HasAttribute| |#1| (QUOTE (-4416 "*"))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-690 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
@@ -2696,7 +2696,7 @@ NIL
((|constructor| (NIL "This domain implements the notion of optional value,{} where a computation may fail to produce expected value.")) (|nothing| (($) "\\spad{nothing} represents failure or absence of value.")) (|autoCoerce| ((|#1| $) "\\spad{autoCoerce} is a courtesy coercion function used by the compiler in case it knows that \\spad{`x'} really is a \\spadtype{T}.")) (|case| (((|Boolean|) $ (|[\|\|]| |nothing|)) "\\spad{x case nothing} holds if the value for \\spad{x} is missing.") (((|Boolean|) $ (|[\|\|]| |#1|)) "\\spad{x case T} returns \\spad{true} if \\spad{x} is actually a data of type \\spad{T}.")) (|just| (($ |#1|) "\\spad{just x} injects the value \\spad{`x'} into \\%.")))
NIL
NIL
-(-692 S -2382 FLAF FLAS)
+(-692 S -2386 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
@@ -2706,11 +2706,11 @@ NIL
NIL
(-694)
((|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")))
-((-4410 . T) (-4415 |has| (-699) (-365)) (-4409 |has| (-699) (-365)) (-3654 . T) (-4416 |has| (-699) (-6 -4416)) (-4413 |has| (-699) (-6 -4413)) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| (-699) (QUOTE (-147))) (|HasCategory| (-699) (QUOTE (-145))) (|HasCategory| (-699) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-699) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| (-699) (QUOTE (-370))) (|HasCategory| (-699) (QUOTE (-365))) (-2805 (|HasCategory| (-699) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-699) (QUOTE (-365)))) (|HasCategory| (-699) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-699) (QUOTE (-233))) (-2805 (|HasCategory| (-699) (QUOTE (-365))) (|HasCategory| (-699) (QUOTE (-351)))) (|HasCategory| (-699) (QUOTE (-351))) (|HasCategory| (-699) (LIST (QUOTE -287) (QUOTE (-699)) (QUOTE (-699)))) (|HasCategory| (-699) (LIST (QUOTE -310) (QUOTE (-699)))) (|HasCategory| (-699) (LIST (QUOTE -516) (QUOTE (-1175)) (QUOTE (-699)))) (|HasCategory| (-699) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| (-699) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| (-699) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| (-699) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (-2805 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-365))) (|HasCategory| (-699) (QUOTE (-351)))) (|HasCategory| (-699) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-699) (QUOTE (-1022))) (|HasCategory| (-699) (QUOTE (-1199))) (-12 (|HasCategory| (-699) (QUOTE (-1002))) (|HasCategory| (-699) (QUOTE (-1199)))) (-2805 (-12 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (|HasCategory| (-699) (QUOTE (-365))) (-12 (|HasCategory| (-699) (QUOTE (-351))) (|HasCategory| (-699) (QUOTE (-909))))) (-2805 (-12 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (-12 (|HasCategory| (-699) (QUOTE (-365))) (|HasCategory| (-699) (QUOTE (-909)))) (-12 (|HasCategory| (-699) (QUOTE (-351))) (|HasCategory| (-699) (QUOTE (-909))))) (|HasCategory| (-699) (QUOTE (-547))) (-12 (|HasCategory| (-699) (QUOTE (-1059))) (|HasCategory| (-699) (QUOTE (-1199)))) (|HasCategory| (-699) (QUOTE (-1059))) (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909))) (-2805 (-12 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (|HasCategory| (-699) (QUOTE (-365)))) (-2805 (-12 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (|HasCategory| (-699) (QUOTE (-558)))) (-12 (|HasCategory| (-699) (QUOTE (-233))) (|HasCategory| (-699) (QUOTE (-365)))) (-12 (|HasCategory| (-699) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-699) (QUOTE (-365)))) (|HasCategory| (-699) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-699) (QUOTE (-558))) (|HasAttribute| (-699) (QUOTE -4416)) (|HasAttribute| (-699) (QUOTE -4413)) (-12 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (|HasCategory| (-699) (QUOTE (-145)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (|HasCategory| (-699) (QUOTE (-351)))))
+((-4407 . T) (-4412 |has| (-699) (-365)) (-4406 |has| (-699) (-365)) (-3661 . T) (-4413 |has| (-699) (-6 -4413)) (-4410 |has| (-699) (-6 -4410)) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| (-699) (QUOTE (-147))) (|HasCategory| (-699) (QUOTE (-145))) (|HasCategory| (-699) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-699) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| (-699) (QUOTE (-370))) (|HasCategory| (-699) (QUOTE (-365))) (-2805 (|HasCategory| (-699) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-699) (QUOTE (-365)))) (|HasCategory| (-699) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-699) (QUOTE (-233))) (-2805 (|HasCategory| (-699) (QUOTE (-365))) (|HasCategory| (-699) (QUOTE (-351)))) (|HasCategory| (-699) (QUOTE (-351))) (|HasCategory| (-699) (LIST (QUOTE -287) (QUOTE (-699)) (QUOTE (-699)))) (|HasCategory| (-699) (LIST (QUOTE -310) (QUOTE (-699)))) (|HasCategory| (-699) (LIST (QUOTE -516) (QUOTE (-1175)) (QUOTE (-699)))) (|HasCategory| (-699) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| (-699) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| (-699) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| (-699) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (-2805 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-365))) (|HasCategory| (-699) (QUOTE (-351)))) (|HasCategory| (-699) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-699) (QUOTE (-1022))) (|HasCategory| (-699) (QUOTE (-1199))) (-12 (|HasCategory| (-699) (QUOTE (-1002))) (|HasCategory| (-699) (QUOTE (-1199)))) (-2805 (-12 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (|HasCategory| (-699) (QUOTE (-365))) (-12 (|HasCategory| (-699) (QUOTE (-351))) (|HasCategory| (-699) (QUOTE (-909))))) (-2805 (-12 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (-12 (|HasCategory| (-699) (QUOTE (-365))) (|HasCategory| (-699) (QUOTE (-909)))) (-12 (|HasCategory| (-699) (QUOTE (-351))) (|HasCategory| (-699) (QUOTE (-909))))) (|HasCategory| (-699) (QUOTE (-547))) (-12 (|HasCategory| (-699) (QUOTE (-1059))) (|HasCategory| (-699) (QUOTE (-1199)))) (|HasCategory| (-699) (QUOTE (-1059))) (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909))) (-2805 (-12 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (|HasCategory| (-699) (QUOTE (-365)))) (-2805 (-12 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (|HasCategory| (-699) (QUOTE (-558)))) (-12 (|HasCategory| (-699) (QUOTE (-233))) (|HasCategory| (-699) (QUOTE (-365)))) (-12 (|HasCategory| (-699) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-699) (QUOTE (-365)))) (|HasCategory| (-699) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-699) (QUOTE (-558))) (|HasAttribute| (-699) (QUOTE -4413)) (|HasAttribute| (-699) (QUOTE -4410)) (-12 (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (|HasCategory| (-699) (QUOTE (-145)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-699) (QUOTE (-308))) (|HasCategory| (-699) (QUOTE (-909)))) (|HasCategory| (-699) (QUOTE (-351)))))
(-695 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}.")))
-((-4418 . T))
+((-4415 . T))
NIL
(-696 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}.")))
@@ -2720,13 +2720,13 @@ NIL
((|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
-(-698 OV E -2382 PG)
+(-698 OV E -2386 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
(-699)
((|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|) (|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}")))
-((-3645 . T) (-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-3651 . T) (-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-700 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.")))
@@ -2734,7 +2734,7 @@ NIL
NIL
(-701)
((|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}")))
-((-4416 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4413 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-702 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")))
@@ -2752,7 +2752,7 @@ NIL
((|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
-(-706 S -2840 I)
+(-706 S -2876 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
@@ -2762,7 +2762,7 @@ NIL
NIL
(-708 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)}.}")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-709 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}.")))
@@ -2772,25 +2772,25 @@ NIL
((|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
-(-711 R |Mod| -3550 -3132 |exactQuo|)
+(-711 R |Mod| -3418 -3891 |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")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-712 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")) (|lift| ((|#2| $) "\\spad{lift(x)} \\undocumented")) (|reduce| (($ |#2|) "\\spad{reduce(x)} \\undocumented")) (|modulus| ((|#2|) "\\spad{modulus()} \\undocumented")) (|setPoly| ((|#2| |#2|) "\\spad{setPoly(x)} \\undocumented")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4413 |has| |#1| (-365)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-1150))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4410 |has| |#1| (-365)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-1150))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4412)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-713 IS E |ff|)
((|constructor| (NIL "This package \\undocumented")) (|construct| (($ |#1| |#2|) "\\spad{construct(i,{}e)} \\undocumented")) (|index| ((|#1| $) "\\spad{index(x)} \\undocumented")) (|exponent| ((|#2| $) "\\spad{exponent(x)} \\undocumented")))
NIL
NIL
(-714 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}.")))
-((-4412 |has| |#1| (-172)) (-4411 |has| |#1| (-172)) (-4414 . T))
+((-4409 |has| |#1| (-172)) (-4408 |has| |#1| (-172)) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))))
-(-715 R |Mod| -3550 -3132 |exactQuo|)
+(-715 R |Mod| -3418 -3891 |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")))
-((-4414 . T))
+((-4411 . T))
NIL
(-716 S R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
@@ -2798,11 +2798,11 @@ NIL
NIL
(-717 R)
((|constructor| (NIL "The category of modules over a commutative ring. \\blankline")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
NIL
-(-718 -2382)
+(-718 -2386)
((|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]]}.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-719 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.")))
@@ -2826,7 +2826,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-351))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-370))))
(-724 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.")))
-((-4410 |has| |#1| (-365)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 |has| |#1| (-365)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-725 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.")) (|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.")))
@@ -2836,7 +2836,7 @@ NIL
((|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.")) (|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
-(-727 -2382 UP)
+(-727 -2386 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
@@ -2854,8 +2854,8 @@ NIL
NIL
(-731 |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.")))
-(((-4419 "*") |has| |#2| (-172)) (-4410 |has| |#2| (-558)) (-4415 |has| |#2| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#2| (QUOTE (-909))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-558)))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))) (|HasAttribute| |#2| (QUOTE -4415)) (|HasCategory| |#2| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
+(((-4416 "*") |has| |#2| (-172)) (-4407 |has| |#2| (-558)) (-4412 |has| |#2| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#2| (QUOTE (-909))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-558)))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-864 |#1|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))) (|HasAttribute| |#2| (QUOTE -4412)) (|HasCategory| |#2| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
(-732 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
@@ -2870,15 +2870,15 @@ NIL
NIL
(-735 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}.")))
-((-4412 |has| |#1| (-172)) (-4411 |has| |#1| (-172)) (-4414 . T))
+((-4409 |has| |#1| (-172)) (-4408 |has| |#1| (-172)) (-4411 . T))
((-12 (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#2| (QUOTE (-370)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-850))))
(-736 S)
((|constructor| (NIL "A multi-set aggregate is a set which keeps track of the multiplicity of its elements.")))
-((-4407 . T) (-4418 . T))
+((-4404 . T) (-4415 . T))
NIL
(-737 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}.")))
-((-4417 . T) (-4407 . T) (-4418 . T))
+((-4414 . T) (-4404 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-738)
((|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.")))
@@ -2890,7 +2890,7 @@ NIL
NIL
(-740 |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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4412 . T) (-4411 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4409 . T) (-4408 . T) (-4411 . T))
NIL
(-741 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")))
@@ -2906,7 +2906,7 @@ NIL
NIL
(-744 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}.")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
NIL
(-745)
((|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}.")))
@@ -2988,11 +2988,11 @@ NIL
((|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
-(-765 -2382)
+(-765 -2386)
((|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
-(-766 P -2382)
+(-766 P -2386)
((|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
@@ -3000,7 +3000,7 @@ NIL
NIL
NIL
NIL
-(-768 UP -2382)
+(-768 UP -2386)
((|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
@@ -3014,9 +3014,9 @@ NIL
NIL
(-771)
((|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.")))
-(((-4419 "*") . T))
+(((-4416 "*") . T))
NIL
-(-772 R -2382)
+(-772 R -2386)
((|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
@@ -3036,7 +3036,7 @@ NIL
((|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
-(-777 -2382 |ExtF| |SUEx| |ExtP| |n|)
+(-777 -2386 |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
@@ -3050,23 +3050,23 @@ NIL
NIL
(-780 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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175))))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))) (-2426 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))) (-2426 (|HasCategory| |#1| (QUOTE (-547)))) (-2426 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))) (-2426 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-566))))) (-2426 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))) (-2426 (|HasCategory| |#1| (LIST (QUOTE -992) (QUOTE (-566))))))) (|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175))))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))) (-2436 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))) (-2436 (|HasCategory| |#1| (QUOTE (-547)))) (-2436 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))) (-2436 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-566))))) (-2436 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-1175)))) (-2436 (|HasCategory| |#1| (LIST (QUOTE -992) (QUOTE (-566))))))) (|HasAttribute| |#1| (QUOTE -4412)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-781 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
(-782 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)}")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4413 |has| |#1| (-365)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-1150))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4410 |has| |#1| (-365)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-1150))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4412)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-783 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 -38) (LIST (QUOTE -409) (QUOTE (-566))))))
(-784 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.}")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
(-785 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}.")))
@@ -3118,7 +3118,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-547))) (|HasCategory| |#2| (QUOTE (-1059))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-370))))
(-797 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}.")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-798 -2805 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}.")))
@@ -3126,17 +3126,17 @@ NIL
NIL
(-799 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}.")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -287) (|devaluate| |#1|) (|devaluate| |#1|))) (-2805 (|HasCategory| (-999 |#1|) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (|HasCategory| (-999 |#1|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-1059))) (|HasCategory| |#1| (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| (-999 |#1|) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-999 |#1|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))))
(-800)
((|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
-(-801 R -2382 L)
+(-801 R -2386 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
-(-802 R -2382)
+(-802 R -2386)
((|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
@@ -3144,7 +3144,7 @@ NIL
((|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
-(-804 R -2382)
+(-804 R -2386)
((|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
@@ -3152,11 +3152,11 @@ NIL
((|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
-(-806 -2382 UP UPUP R)
+(-806 -2386 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
-(-807 -2382 UP L LQ)
+(-807 -2386 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
@@ -3164,41 +3164,41 @@ NIL
((|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| (($ (|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
-(-809 -2382 UP L LQ)
+(-809 -2386 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
-(-810 -2382 UP)
+(-810 -2386 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
-(-811 -2382 L UP A LO)
+(-811 -2386 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
-(-812 -2382 UP)
+(-812 -2386 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))))
-(-813 -2382 LO)
+(-813 -2386 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
-(-814 -2382 LODO)
+(-814 -2386 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
-(-815 -2293 S |f|)
+(-815 -4225 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}.")))
-((-4411 |has| |#2| (-1049)) (-4412 |has| |#2| (-1049)) (-4414 |has| |#2| (-6 -4414)) ((-4419 "*") |has| |#2| (-172)) (-4417 . T))
-((-2805 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (QUOTE (-365))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365)))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-793))) (-2805 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848)))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-726))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-233))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-370)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-726)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-793)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-848)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-2805 (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasAttribute| |#2| (QUOTE -4414)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))))
+((-4408 |has| |#2| (-1049)) (-4409 |has| |#2| (-1049)) (-4411 |has| |#2| (-6 -4411)) ((-4416 "*") |has| |#2| (-172)) (-4414 . T))
+((-2805 (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (QUOTE (-365))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365)))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-793))) (-2805 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848)))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-726))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1049)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (|HasCategory| |#2| (QUOTE (-233))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-25)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-172)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-233)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-370)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-726)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-793)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-848)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-370))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-793))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-848))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (QUOTE (-1049)))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175))))) (-2805 (|HasCategory| |#2| (QUOTE (-1049))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-1099)))) (|HasAttribute| |#2| (QUOTE -4411)) (|HasCategory| |#2| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-25))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))))
(-816 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")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-818 (-1175)) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-818 (-1175)) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-818 (-1175)) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-818 (-1175)) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-818 (-1175)) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-818 (-1175)) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-818 (-1175)) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-818 (-1175)) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-818 (-1175)) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-818 (-1175)) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4412)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-817 |Kernels| R |var|)
((|constructor| (NIL "This constructor produces an ordinary differential ring from a partial differential ring by specifying a variable.")))
-(((-4419 "*") |has| |#2| (-365)) (-4410 |has| |#2| (-365)) (-4415 |has| |#2| (-365)) (-4409 |has| |#2| (-365)) (-4414 . T) (-4412 . T) (-4411 . T))
+(((-4416 "*") |has| |#2| (-365)) (-4407 |has| |#2| (-365)) (-4412 |has| |#2| (-365)) (-4406 |has| |#2| (-365)) (-4411 . T) (-4409 . T) (-4408 . T))
((|HasCategory| |#2| (QUOTE (-365))))
(-818 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})).")))
@@ -3210,7 +3210,7 @@ NIL
NIL
(-820)
((|constructor| (NIL "The category of ordered commutative integral domains,{} where ordering and the arithmetic operations are compatible \\blankline")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-821)
((|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}")))
@@ -3238,7 +3238,7 @@ NIL
NIL
(-827 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}.")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-233))))
(-828)
((|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.")))
@@ -3250,7 +3250,7 @@ NIL
NIL
(-830 S)
((|constructor| (NIL "to become an in order iterator")) (|min| ((|#1| $) "\\spad{min(u)} returns the smallest entry in the multiset aggregate \\spad{u}.")))
-((-4417 . T) (-4407 . T) (-4418 . T))
+((-4414 . T) (-4404 . T) (-4415 . T))
NIL
(-831)
((|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.")))
@@ -3262,7 +3262,7 @@ NIL
NIL
(-833 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.")))
-((-4414 |has| |#1| (-848)))
+((-4411 |has| |#1| (-848)))
((|HasCategory| |#1| (QUOTE (-848))) (|HasCategory| |#1| (QUOTE (-21))) (-2805 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-848)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-2805 (|HasCategory| |#1| (QUOTE (-848))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-547))))
(-834 A S)
((|constructor| (NIL "This category specifies the interface for operators used to build terms,{} in the sense of Universal Algebra. The domain parameter \\spad{S} provides representation for the `external name' of an operator.")) (|is?| (((|Boolean|) $ |#2|) "\\spad{is?(op,{}n)} holds if the name of the operator \\spad{op} is \\spad{n}.")) (|arity| (((|Arity|) $) "\\spad{arity(op)} returns the arity of the operator \\spad{op}.")) (|name| ((|#2| $) "\\spad{name(op)} returns the externam name of \\spad{op}.")))
@@ -3274,7 +3274,7 @@ NIL
NIL
(-836 R)
((|constructor| (NIL "Algebra of ADDITIVE operators over a ring.")))
-((-4412 |has| |#1| (-172)) (-4411 |has| |#1| (-172)) (-4414 . T))
+((-4409 |has| |#1| (-172)) (-4408 |has| |#1| (-172)) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))))
(-837)
((|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).")))
@@ -3302,13 +3302,13 @@ NIL
NIL
(-843 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.")))
-((-4414 |has| |#1| (-848)))
+((-4411 |has| |#1| (-848)))
((|HasCategory| |#1| (QUOTE (-848))) (|HasCategory| |#1| (QUOTE (-21))) (-2805 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-848)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-2805 (|HasCategory| |#1| (QUOTE (-848))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-547))))
(-844)
((|constructor| (NIL "Ordered finite sets.")) (|max| (($) "\\spad{max} is the maximum value of \\%.")) (|min| (($) "\\spad{min} is the minimum value of \\%.")))
NIL
NIL
-(-845 -2293 S)
+(-845 -4225 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
@@ -3322,7 +3322,7 @@ NIL
NIL
(-848)
((|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.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-849 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.")))
@@ -3338,19 +3338,19 @@ NIL
((|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))))
(-852 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)}.}")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-853 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 (-365))) (|HasCategory| |#1| (QUOTE (-558))))
-(-854 R |sigma| -2916)
+(-854 R |sigma| -1545)
((|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.")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-365))))
-(-855 |x| R |sigma| -2916)
+(-855 |x| R |sigma| -1545)
((|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}.")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-365))))
(-856 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..)}.")))
@@ -3394,7 +3394,7 @@ NIL
NIL
(-866 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)")))
-((-4412 |has| |#1| (-172)) (-4411 |has| |#1| (-172)) (-4414 . T))
+((-4409 |has| |#1| (-172)) (-4408 |has| |#1| (-172)) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))))
(-867 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).")))
@@ -3406,19 +3406,19 @@ NIL
NIL
(-869 |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}.")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-870 |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).")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-871 |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).")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| (-870 |#1|) (QUOTE (-909))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| (-870 |#1|) (QUOTE (-145))) (|HasCategory| (-870 |#1|) (QUOTE (-147))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-870 |#1|) (QUOTE (-1022))) (|HasCategory| (-870 |#1|) (QUOTE (-820))) (-2805 (|HasCategory| (-870 |#1|) (QUOTE (-820))) (|HasCategory| (-870 |#1|) (QUOTE (-850)))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-870 |#1|) (QUOTE (-1150))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| (-870 |#1|) (QUOTE (-233))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -870) (|devaluate| |#1|)))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -310) (LIST (QUOTE -870) (|devaluate| |#1|)))) (|HasCategory| (-870 |#1|) (LIST (QUOTE -287) (LIST (QUOTE -870) (|devaluate| |#1|)) (LIST (QUOTE -870) (|devaluate| |#1|)))) (|HasCategory| (-870 |#1|) (QUOTE (-308))) (|HasCategory| (-870 |#1|) (QUOTE (-547))) (|HasCategory| (-870 |#1|) (QUOTE (-850))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-870 |#1|) (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-870 |#1|) (QUOTE (-909)))) (|HasCategory| (-870 |#1|) (QUOTE (-145)))))
(-872 |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)}.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#2| (QUOTE (-909))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (QUOTE (-1022))) (|HasCategory| |#2| (QUOTE (-820))) (-2805 (|HasCategory| |#2| (QUOTE (-820))) (|HasCategory| |#2| (QUOTE (-850)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-1150))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -287) (|devaluate| |#2|) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-308))) (|HasCategory| |#2| (QUOTE (-547))) (|HasCategory| |#2| (QUOTE (-850))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
(-873 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'}.")))
@@ -3479,7 +3479,7 @@ NIL
(-887 |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 (-2426 (|HasCategory| |#2| (QUOTE (-1049)))) (-2426 (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (-2426 (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))))
+((-12 (-2436 (|HasCategory| |#2| (QUOTE (-1049)))) (-2436 (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))))) (-12 (|HasCategory| |#2| (QUOTE (-1049))) (-2436 (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))))
(-888 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
@@ -3488,7 +3488,7 @@ NIL
((|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
-(-890 R -2840)
+(-890 R -2876)
((|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
@@ -3512,7 +3512,7 @@ NIL
((|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
-(-896 UP -2382)
+(-896 UP -2386)
((|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
@@ -3530,7 +3530,7 @@ NIL
NIL
(-900 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}.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-901 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}")) (|ptree| (($ $ $) "\\spad{ptree(x,{}y)} \\undocumented") (($ |#1|) "\\spad{ptree(s)} is a leaf? pendant tree")))
@@ -3542,7 +3542,7 @@ NIL
NIL
(-903 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.")))
-((-4414 . T))
+((-4411 . T))
NIL
(-904 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}.")))
@@ -3550,7 +3550,7 @@ NIL
NIL
(-905 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.")))
-((-4414 . T))
+((-4411 . T))
((-2805 (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-850)))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-850))))
(-906 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.")))
@@ -3566,13 +3566,13 @@ NIL
((|HasCategory| |#1| (QUOTE (-145))))
(-909)
((|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}.")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-910 |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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| $ (QUOTE (-147))) (|HasCategory| $ (QUOTE (-145))) (|HasCategory| $ (QUOTE (-370))))
-(-911 R0 -2382 UP UPUP R)
+(-911 R0 -2386 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
@@ -3586,7 +3586,7 @@ NIL
NIL
(-914 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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-915 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.")))
@@ -3600,7 +3600,7 @@ NIL
((|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
-(-918 -2382)
+(-918 -2386)
((|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
@@ -3610,17 +3610,17 @@ NIL
NIL
(-920)
((|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)}")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-921)
((|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}.")))
-(((-4419 "*") . T))
+(((-4416 "*") . T))
NIL
-(-922 -2382 P)
+(-922 -2386 P)
((|constructor| (NIL "This package exports interpolation algorithms")) (|LagrangeInterpolation| ((|#2| (|List| |#1|) (|List| |#1|)) "\\spad{LagrangeInterpolation(l1,{}l2)} \\undocumented")))
NIL
NIL
-(-923 |xx| -2382)
+(-923 |xx| -2386)
((|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
@@ -3644,7 +3644,7 @@ NIL
((|constructor| (NIL "This package exports plotting tools")) (|calcRanges| (((|List| (|Segment| (|DoubleFloat|))) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{calcRanges(l)} \\undocumented")))
NIL
NIL
-(-929 R -2382)
+(-929 R -2386)
((|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| (|Identifier|)) "\\spad{assert(x,{} s)} makes the assertion \\spad{s} about \\spad{x}. Error: if \\spad{x} is not a symbol.")))
NIL
NIL
@@ -3656,7 +3656,7 @@ NIL
((|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
-(-932 S R -2382)
+(-932 S R -2386)
((|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
@@ -3676,11 +3676,11 @@ NIL
((|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 -886) (|devaluate| |#1|))))
-(-937 R -2382 -2840)
+(-937 R -2386 -2876)
((|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
-(-938 -2840)
+(-938 -2876)
((|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
@@ -3702,7 +3702,7 @@ NIL
NIL
(-943 R)
((|constructor| (NIL "This domain implements points in coordinate space")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-726))) (|HasCategory| |#1| (QUOTE (-1049))) (-12 (|HasCategory| |#1| (QUOTE (-1002))) (|HasCategory| |#1| (QUOTE (-1049)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-944 |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}.")))
@@ -3723,12 +3723,12 @@ NIL
(-948 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 (-909))) (|HasAttribute| |#2| (QUOTE -4415)) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#4| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#4| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#4| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#4| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))))
+((|HasCategory| |#2| (QUOTE (-909))) (|HasAttribute| |#2| (QUOTE -4412)) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#4| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#4| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#4| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#4| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#4| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))))
(-949 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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
NIL
-(-950 E V R P -2382)
+(-950 E V R P -2386)
((|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
@@ -3738,9 +3738,9 @@ NIL
NIL
(-952 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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1175) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1175) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1175) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1175) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1175) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
-(-953 E V R P -2382)
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1175) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1175) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1175) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1175) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1175) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4412)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(-953 E V R P -2386)
((|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)}.")) (|denom| ((|#4| $) "\\spad{denom(x)} \\undocumented")) (|numer| ((|#4| $) "\\spad{numer(x)} \\undocumented")))
NIL
((|HasCategory| |#3| (QUOTE (-454))))
@@ -3762,13 +3762,13 @@ NIL
NIL
(-958 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")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-959)
((|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
-(-960 -2382)
+(-960 -2386)
((|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
@@ -3782,11 +3782,11 @@ NIL
NIL
(-963 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}")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-131)))) (|HasAttribute| |#1| (QUOTE -4415)))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-131)))) (|HasAttribute| |#1| (QUOTE -4412)))
(-964 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")))
-((-4414 -12 (|has| |#2| (-475)) (|has| |#1| (-475))))
+((-4411 -12 (|has| |#2| (-475)) (|has| |#1| (-475))))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-793)))) (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-850))))) (-12 (|HasCategory| |#1| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-793)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-793))))) (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-793))))) (-12 (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#2| (QUOTE (-475)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#2| (QUOTE (-475)))) (-12 (|HasCategory| |#1| (QUOTE (-726))) (|HasCategory| |#2| (QUOTE (-726))))) (-12 (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#2| (QUOTE (-370)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-21)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-475))) (|HasCategory| |#2| (QUOTE (-475)))) (-12 (|HasCategory| |#1| (QUOTE (-726))) (|HasCategory| |#2| (QUOTE (-726)))) (-12 (|HasCategory| |#1| (QUOTE (-793))) (|HasCategory| |#2| (QUOTE (-793))))) (-12 (|HasCategory| |#1| (QUOTE (-726))) (|HasCategory| |#2| (QUOTE (-726)))) (-12 (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-23)))) (-12 (|HasCategory| |#1| (QUOTE (-131))) (|HasCategory| |#2| (QUOTE (-131)))) (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-850)))))
(-965)
((|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| (($ (|Identifier|) (|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| (((|Identifier|) $) "\\spad{name(p)} returns the name of property \\spad{p}")))
@@ -3802,7 +3802,7 @@ NIL
NIL
(-968 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
NIL
(-969 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}}")))
@@ -3822,7 +3822,7 @@ NIL
NIL
(-973 |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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-974)
((|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}.")))
@@ -3834,7 +3834,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-558))))
(-976 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.")))
-((-4417 . T))
+((-4414 . T))
NIL
(-977 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.")))
@@ -3850,7 +3850,7 @@ NIL
NIL
(-980 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")) (|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}.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
(-981 R1 R2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|Point| |#2|) (|Mapping| |#2| |#1|) (|Point| |#1|)) "\\spad{map(f,{}p)} \\undocumented")))
@@ -3868,7 +3868,7 @@ NIL
((|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
-(-985 K R UP -2382)
+(-985 K R UP -2386)
((|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
@@ -3898,7 +3898,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-909))) (|HasCategory| |#2| (QUOTE (-547))) (|HasCategory| |#2| (QUOTE (-308))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (QUOTE (-1022))) (|HasCategory| |#2| (QUOTE (-820))) (|HasCategory| |#2| (QUOTE (-850))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-1150))))
(-992 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}.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-993 |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}.")))
@@ -3910,7 +3910,7 @@ NIL
NIL
(-995 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.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
NIL
(-996 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}.")))
@@ -3918,7 +3918,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-547))) (|HasCategory| |#2| (QUOTE (-1059))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-291))))
(-997 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}.")))
-((-4410 |has| |#1| (-291)) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 |has| |#1| (-291)) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-998 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}.")))
@@ -3926,11 +3926,11 @@ NIL
NIL
(-999 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.}")))
-((-4410 |has| |#1| (-291)) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 |has| |#1| (-291)) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-291))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-291))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))) (|HasCategory| |#1| (LIST (QUOTE -287) (|devaluate| |#1|) (|devaluate| |#1|))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-1059))) (|HasCategory| |#1| (QUOTE (-547))))
(-1000 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-1001 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}.")))
@@ -3940,13 +3940,13 @@ NIL
((|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
-(-1003 -2382 UP UPUP |radicnd| |n|)
+(-1003 -2386 UP UPUP |radicnd| |n|)
((|constructor| (NIL "Function field defined by y**n = \\spad{f}(\\spad{x}).")))
-((-4410 |has| (-409 |#2|) (-365)) (-4415 |has| (-409 |#2|) (-365)) (-4409 |has| (-409 |#2|) (-365)) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 |has| (-409 |#2|) (-365)) (-4412 |has| (-409 |#2|) (-365)) (-4406 |has| (-409 |#2|) (-365)) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| (-409 |#2|) (QUOTE (-145))) (|HasCategory| (-409 |#2|) (QUOTE (-147))) (|HasCategory| (-409 |#2|) (QUOTE (-351))) (-2805 (|HasCategory| (-409 |#2|) (QUOTE (-365))) (|HasCategory| (-409 |#2|) (QUOTE (-351)))) (|HasCategory| (-409 |#2|) (QUOTE (-365))) (|HasCategory| (-409 |#2|) (QUOTE (-370))) (-2805 (-12 (|HasCategory| (-409 |#2|) (QUOTE (-233))) (|HasCategory| (-409 |#2|) (QUOTE (-365)))) (|HasCategory| (-409 |#2|) (QUOTE (-351)))) (-2805 (-12 (|HasCategory| (-409 |#2|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-409 |#2|) (QUOTE (-365)))) (-12 (|HasCategory| (-409 |#2|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-409 |#2|) (QUOTE (-351))))) (|HasCategory| (-409 |#2|) (LIST (QUOTE -639) (QUOTE (-566)))) (-2805 (|HasCategory| (-409 |#2|) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-409 |#2|) (QUOTE (-365)))) (|HasCategory| (-409 |#2|) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-409 |#2|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-370))) (-12 (|HasCategory| (-409 |#2|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-409 |#2|) (QUOTE (-365)))) (-12 (|HasCategory| (-409 |#2|) (QUOTE (-233))) (|HasCategory| (-409 |#2|) (QUOTE (-365)))))
(-1004 |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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| (-566) (QUOTE (-909))) (|HasCategory| (-566) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| (-566) (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-147))) (|HasCategory| (-566) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-566) (QUOTE (-1022))) (|HasCategory| (-566) (QUOTE (-820))) (-2805 (|HasCategory| (-566) (QUOTE (-820))) (|HasCategory| (-566) (QUOTE (-850)))) (|HasCategory| (-566) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-566) (QUOTE (-1150))) (|HasCategory| (-566) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| (-566) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| (-566) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| (-566) (QUOTE (-233))) (|HasCategory| (-566) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| (-566) (LIST (QUOTE -516) (QUOTE (-1175)) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -310) (QUOTE (-566)))) (|HasCategory| (-566) (LIST (QUOTE -287) (QUOTE (-566)) (QUOTE (-566)))) (|HasCategory| (-566) (QUOTE (-308))) (|HasCategory| (-566) (QUOTE (-547))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-566) (LIST (QUOTE -639) (QUOTE (-566)))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-566) (QUOTE (-909)))) (|HasCategory| (-566) (QUOTE (-145)))))
(-1005)
((|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}.")))
@@ -3967,7 +3967,7 @@ NIL
(-1009 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 -4418)) (|HasCategory| |#2| (QUOTE (-1099))))
+((|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#2| (QUOTE (-1099))))
(-1010 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}.")))
NIL
@@ -3978,21 +3978,21 @@ NIL
NIL
(-1012)
((|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)}") (($ $ (|PositiveInteger|)) "\\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}}")))
-((-4410 . T) (-4415 . T) (-4409 . T) (-4412 . T) (-4411 . T) ((-4419 "*") . T) (-4414 . T))
+((-4407 . T) (-4412 . T) (-4406 . T) (-4409 . T) (-4408 . T) ((-4416 "*") . T) (-4411 . T))
NIL
-(-1013 R -2382)
+(-1013 R -2386)
((|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
-(-1014 R -2382)
+(-1014 R -2386)
((|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
-(-1015 -2382 UP)
+(-1015 -2386 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
-(-1016 -2382 UP)
+(-1016 -2386 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
@@ -4026,9 +4026,9 @@ NIL
NIL
(-1024 |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")))
-((-4410 . T) (-4415 . T) (-4409 . T) (-4412 . T) (-4411 . T) ((-4419 "*") . T) (-4414 . T))
+((-4407 . T) (-4412 . T) (-4406 . T) (-4409 . T) (-4408 . T) ((-4416 "*") . T) (-4411 . T))
((-2805 (|HasCategory| (-409 (-566)) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-409 (-566)) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-409 (-566)) (LIST (QUOTE -1038) (QUOTE (-566)))))
-(-1025 -2382 L)
+(-1025 -2386 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
@@ -4038,12 +4038,12 @@ NIL
((|HasCategory| |#1| (QUOTE (-1099))))
(-1027 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.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -613) (QUOTE (-862)))))
(-1028 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 (-4419 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4416 "*"))))
(-1029 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
@@ -4064,14 +4064,14 @@ NIL
((|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
-(-1034 -2382 |Expon| |VarSet| |FPol| |LFPol|)
+(-1034 -2386 |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")))
-(((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1035)
((|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.}")))
-((-4417 . T) (-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (QUOTE (-1175))) (LIST (QUOTE |:|) (QUOTE -2818) (QUOTE (-52))))))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-52) (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -310) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-1175) (QUOTE (-850))) (|HasCategory| (-52) (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))))
+((-4414 . T) (-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (QUOTE (-1175))) (LIST (QUOTE |:|) (QUOTE -2849) (QUOTE (-52))))))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-52) (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -310) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-1175) (QUOTE (-850))) (|HasCategory| (-52) (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))))
(-1036)
((|constructor| (NIL "This domain represents `return' expressions.")) (|expression| (((|SpadAst|) $) "\\spad{expression(e)} returns the expression returned by `e'.")))
NIL
@@ -4114,7 +4114,7 @@ NIL
NIL
(-1046 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}.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-12 (|HasCategory| (-780 |#1| (-864 |#2|)) (QUOTE (-1099))) (|HasCategory| (-780 |#1| (-864 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -780) (|devaluate| |#1|) (LIST (QUOTE -864) (|devaluate| |#2|)))))) (|HasCategory| (-780 |#1| (-864 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-780 |#1| (-864 |#2|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| (-864 |#2|) (QUOTE (-370))) (|HasCategory| (-780 |#1| (-864 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))))
(-1047)
((|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")))
@@ -4126,9 +4126,9 @@ NIL
NIL
(-1049)
((|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\"}.")) (|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.")))
-((-4414 . T))
+((-4411 . T))
NIL
-(-1050 |xx| -2382)
+(-1050 |xx| -2386)
((|constructor| (NIL "This package exports rational interpolation algorithms")))
NIL
NIL
@@ -4142,11 +4142,11 @@ NIL
((|HasCategory| |#4| (QUOTE (-308))) (|HasCategory| |#4| (QUOTE (-365))) (|HasCategory| |#4| (QUOTE (-558))) (|HasCategory| |#4| (QUOTE (-172))))
(-1053 |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")))
-((-4417 . T) (-4412 . T) (-4411 . T))
+((-4414 . T) (-4409 . T) (-4408 . T))
NIL
(-1054 |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.")) (|rectangularMatrix| (($ (|Matrix| |#3|)) "\\spad{rectangularMatrix(m)} converts a matrix of type \\spadtype{Matrix} to a matrix of type \\spad{RectangularMatrix}.")))
-((-4417 . T) (-4412 . T) (-4411 . T))
+((-4414 . T) (-4409 . T) (-4408 . T))
((|HasCategory| |#3| (QUOTE (-172))) (-2805 (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|))))) (|HasCategory| |#3| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-365)))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (QUOTE (-308))) (|HasCategory| |#3| (QUOTE (-558))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (|HasCategory| |#3| (LIST (QUOTE -613) (QUOTE (-862)))))
(-1055 |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}.")))
@@ -4166,7 +4166,7 @@ NIL
NIL
(-1059)
((|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.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1060 |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")))
@@ -4174,19 +4174,19 @@ NIL
NIL
(-1061)
((|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}.")) (|noetherian| ((|attribute|) "ascending chain condition on ideals.")) (|canonicalsClosed| ((|attribute|) "two positives multiply to give positive.")) (|canonical| ((|attribute|) "mathematical equality is data structure equality.")))
-((-4405 . T) (-4409 . T) (-4404 . T) (-4415 . T) (-4416 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4402 . T) (-4406 . T) (-4401 . T) (-4412 . T) (-4413 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1062)
((|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}")))
-((-4417 . T) (-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (QUOTE (-1175))) (LIST (QUOTE |:|) (QUOTE -2818) (QUOTE (-52))))))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-52) (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -310) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (QUOTE (-1099))) (|HasCategory| (-1175) (QUOTE (-850))) (|HasCategory| (-52) (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))))
+((-4414 . T) (-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (QUOTE (-1175))) (LIST (QUOTE |:|) (QUOTE -2849) (QUOTE (-52))))))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-52) (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| (-52) (QUOTE (-1099))) (|HasCategory| (-52) (LIST (QUOTE -310) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (QUOTE (-1099))) (|HasCategory| (-1175) (QUOTE (-850))) (|HasCategory| (-52) (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-52) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (LIST (QUOTE -613) (QUOTE (-862)))))
(-1063 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 (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-547))) (|HasCategory| |#2| (LIST (QUOTE -38) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -992) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#4| (LIST (QUOTE -614) (QUOTE (-1175)))))
(-1064 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}}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
NIL
(-1065)
((|constructor| (NIL "This domain represents the `repeat' iterator syntax.")) (|body| (((|SpadAst|) $) "\\spad{body(e)} returns the body of the loop `e'.")) (|iterators| (((|List| (|SpadAst|)) $) "\\spad{iterators(e)} returns the list of iterators controlling the loop `e'.")))
@@ -4210,7 +4210,7 @@ NIL
NIL
(-1070 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}.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
(-1071 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.")))
@@ -4228,11 +4228,11 @@ NIL
((|constructor| (NIL "This domain implements named rules")) (|name| (((|Symbol|) $) "\\spad{name(x)} returns the symbol")))
NIL
NIL
-(-1075 |Base| R -2382)
+(-1075 |Base| R -2386)
((|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
-(-1076 |Base| R -2382)
+(-1076 |Base| R -2386)
((|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
@@ -4246,7 +4246,7 @@ NIL
NIL
(-1079 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.")))
-((-4410 |has| |#1| (-365)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 |has| |#1| (-365)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-351))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-351)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-370))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-351)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#1| (QUOTE (-351))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-365)))))
(-1080 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}.")))
@@ -4274,8 +4274,8 @@ NIL
NIL
(-1086 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")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1087 (-1175)) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1087 (-1175)) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1087 (-1175)) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1087 (-1175)) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1087 (-1175)) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1087 (-1175)) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1087 (-1175)) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1087 (-1175)) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1087 (-1175)) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1087 (-1175)) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-233))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4412)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-1087 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
@@ -4318,7 +4318,7 @@ NIL
NIL
(-1097 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.")) (|part?| (((|Boolean|) $ $) "\\spad{s} < \\spad{t} returns \\spad{true} if all elements of set aggregate \\spad{s} are also elements of set aggregate \\spad{t}.")))
-((-4407 . T))
+((-4404 . T))
NIL
(-1098 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{=}}")) (|before?| (((|Boolean|) $ $) "spad{before?(\\spad{x},{}\\spad{y})} holds if \\spad{x} comes before \\spad{y} in the internal total ordering used by OpenAxiom.")) (|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}.")))
@@ -4334,7 +4334,7 @@ NIL
NIL
(-1101 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)}}")))
-((-4417 . T) (-4407 . T) (-4418 . T))
+((-4414 . T) (-4404 . T) (-4415 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-370))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-1102 |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.")) (|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.")))
@@ -4362,7 +4362,7 @@ NIL
NIL
(-1108 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.}")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
(-1109)
((|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.")))
@@ -4378,8 +4378,8 @@ NIL
NIL
(-1112 |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}.")))
-((-4411 |has| |#3| (-1049)) (-4412 |has| |#3| (-1049)) (-4414 |has| |#3| (-6 -4414)) ((-4419 "*") |has| |#3| (-172)) (-4417 . T))
-((-2805 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1099)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#3| (QUOTE (-365))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-365)))) (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-793))) (-2805 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (QUOTE (-848)))) (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (QUOTE (-726))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-1049)))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (|HasCategory| |#3| (QUOTE (-233))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (QUOTE (-1099)))) (|HasCategory| |#3| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-131)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-172)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-233)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-365)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-370)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-726)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-793)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-848)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1049)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1049))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175))))) (-2805 (|HasCategory| |#3| (QUOTE (-1049))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1099)))) (|HasAttribute| |#3| (QUOTE -4414)) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))))
+((-4408 |has| |#3| (-1049)) (-4409 |has| |#3| (-1049)) (-4411 |has| |#3| (-6 -4411)) ((-4416 "*") |has| |#3| (-172)) (-4414 . T))
+((-2805 (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1099)))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#3| (QUOTE (-365))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-365)))) (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-793))) (-2805 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (QUOTE (-848)))) (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (QUOTE (-726))) (-2805 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-1049)))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-1049)))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (|HasCategory| |#3| (QUOTE (-233))) (-2805 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (QUOTE (-1099)))) (|HasCategory| |#3| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-25)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-131)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-172)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-233)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-365)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-370)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-726)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-793)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-848)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1049)))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1099))))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1049))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-172))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-365))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-726))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-793))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-848))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (|HasCategory| (-566) (QUOTE (-850))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (QUOTE (-233))) (|HasCategory| |#3| (QUOTE (-1049)))) (-12 (|HasCategory| |#3| (QUOTE (-1049))) (|HasCategory| |#3| (LIST (QUOTE -900) (QUOTE (-1175))))) (-2805 (|HasCategory| |#3| (QUOTE (-1049))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566)))))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#3| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#3| (QUOTE (-1099)))) (|HasAttribute| |#3| (QUOTE -4411)) (|HasCategory| |#3| (QUOTE (-131))) (|HasCategory| |#3| (QUOTE (-25))) (|HasCategory| |#3| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#3| (QUOTE (-1099))) (|HasCategory| |#3| (LIST (QUOTE -310) (|devaluate| |#3|)))))
(-1113 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
@@ -4388,7 +4388,7 @@ NIL
((|constructor| (NIL "This domain represents a signature AST. A signature AST \\indented{2}{is a description of an exported operation,{} \\spadignore{e.g.} its name,{} result} \\indented{2}{type,{} and the list of its argument types.}")) (|signature| (((|Signature|) $) "\\spad{signature(s)} returns AST of the declared signature for \\spad{`s'}.")) (|name| (((|Identifier|) $) "\\spad{name(s)} returns the name of the signature \\spad{`s'}.")) (|signatureAst| (($ (|Identifier|) (|Signature|)) "\\spad{signatureAst(n,{}s,{}t)} builds the signature AST \\spad{n:} \\spad{s} \\spad{->} \\spad{t}")))
NIL
NIL
-(-1115 R -2382)
+(-1115 R -2386)
((|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
@@ -4406,19 +4406,19 @@ NIL
NIL
(-1119)
((|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}.")) (|not| (($ $) "\\spad{not(n)} returns the bit-by-bit logical {\\em not} of the single integer \\spad{n}.")) (|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.")))
-((-4405 . T) (-4409 . T) (-4404 . T) (-4415 . T) (-4416 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4402 . T) (-4406 . T) (-4401 . T) (-4412 . T) (-4413 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1120 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
NIL
(-1121 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 (-365))) (|HasAttribute| |#3| (QUOTE (-4419 "*"))) (|HasCategory| |#3| (QUOTE (-172))))
+((|HasCategory| |#3| (QUOTE (-365))) (|HasAttribute| |#3| (QUOTE (-4416 "*"))) (|HasCategory| |#3| (QUOTE (-172))))
(-1122 |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.")))
-((-4417 . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4414 . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1123 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}.")))
@@ -4426,17 +4426,17 @@ NIL
NIL
(-1124 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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-909))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4412)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-1125 |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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4412 . T) (-4411 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4409 . T) (-4408 . T) (-4411 . T))
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-365))))
(-1126 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}")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
-(-1127 UP -2382)
+(-1127 UP -2386)
((|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
@@ -4490,19 +4490,19 @@ NIL
NIL
(-1140 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.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| (-1139 |#1| |#2|) (LIST (QUOTE -310) (LIST (QUOTE -1139) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1139 |#1| |#2|) (QUOTE (-1099)))) (|HasCategory| (-1139 |#1| |#2|) (QUOTE (-1099))) (-2805 (|HasCategory| (-1139 |#1| |#2|) (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| (-1139 |#1| |#2|) (LIST (QUOTE -310) (LIST (QUOTE -1139) (|devaluate| |#1|) (|devaluate| |#2|)))) (|HasCategory| (-1139 |#1| |#2|) (QUOTE (-1099))))) (|HasCategory| (-1139 |#1| |#2|) (LIST (QUOTE -613) (QUOTE (-862)))))
(-1141 |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.")) (|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}.")) (|new| (($ |#2|) "\\spad{new(c)} constructs a new \\spadtype{SquareMatrix} object of dimension \\spad{ndim} with initial entries equal to \\spad{c}.")))
-((-4414 . T) (-4406 |has| |#2| (-6 (-4419 "*"))) (-4417 . T) (-4411 . T) (-4412 . T))
-((|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE (-4419 "*"))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (QUOTE (-308))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-365))) (-2805 (|HasAttribute| |#2| (QUOTE (-4419 "*"))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-172))))
+((-4411 . T) (-4403 |has| |#2| (-6 (-4416 "*"))) (-4414 . T) (-4408 . T) (-4409 . T))
+((|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE (-4416 "*"))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (-12 (|HasCategory| |#2| (QUOTE (-233))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (QUOTE (-308))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-365))) (-2805 (|HasAttribute| |#2| (QUOTE (-4416 "*"))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| |#2| (QUOTE (-172))))
(-1142 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
(-1143)
((|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.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
(-1144 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.}")))
@@ -4510,11 +4510,11 @@ NIL
NIL
(-1145 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.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -613) (QUOTE (-862)))))
(-1146 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}.")))
-((-4417 . T) (-4418 . T))
+((-4414 . T) (-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-1147 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})}.")))
@@ -4526,8 +4526,8 @@ NIL
NIL
(-1149 |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.")))
-((-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-850))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))))
+((-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-850))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))))
(-1150)
((|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
@@ -4550,20 +4550,20 @@ NIL
NIL
(-1155 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}.")) (|shallowlyMutable| ((|attribute|) "one may destructively alter a stream by assigning new values to its entries.")))
-((-4418 . T))
+((-4415 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-1156)
((|constructor| (NIL "A category for string-like objects")) (|string| (($ (|Integer|)) "\\spad{string(i)} returns the decimal representation of \\spad{i} in a string")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
(-1157)
NIL
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| (-144) (QUOTE (-850))) (|HasCategory| (-144) (LIST (QUOTE -310) (QUOTE (-144))))) (-12 (|HasCategory| (-144) (QUOTE (-1099))) (|HasCategory| (-144) (LIST (QUOTE -310) (QUOTE (-144)))))) (|HasCategory| (-144) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| (-144) (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| (-144) (QUOTE (-1099))) (|HasCategory| (-144) (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| (-144) (QUOTE (-1099))) (|HasCategory| (-144) (LIST (QUOTE -310) (QUOTE (-144))))))
(-1158 |Entry|)
((|constructor| (NIL "This domain provides tables where the keys are strings. A specialized hash function for strings is used.")))
-((-4417 . T) (-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (QUOTE (-1157))) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#1|)))))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (QUOTE (-1099))) (|HasCategory| (-1157) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (LIST (QUOTE -613) (QUOTE (-862)))))
+((-4414 . T) (-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (QUOTE (-1157))) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#1|)))))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (QUOTE (-1099))) (|HasCategory| (-1157) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (LIST (QUOTE -613) (QUOTE (-862)))))
(-1159 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
@@ -4594,9 +4594,9 @@ NIL
NIL
(-1166 |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.")))
-(((-4419 "*") -2805 (-2438 (|has| |#1| (-365)) (|has| (-1173 |#1| |#2| |#3|) (-820))) (|has| |#1| (-172)) (-2438 (|has| |#1| (-365)) (|has| (-1173 |#1| |#2| |#3|) (-909)))) (-4410 -2805 (-2438 (|has| |#1| (-365)) (|has| (-1173 |#1| |#2| |#3|) (-820))) (|has| |#1| (-558)) (-2438 (|has| |#1| (-365)) (|has| (-1173 |#1| |#2| |#3|) (-909)))) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
-((-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-1022))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-1150))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -287) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -310) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-145)))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-147)))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|)))))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|))))) (|HasCategory| (-566) (QUOTE (-1111))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-1022))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365))))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-1150))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -287) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -310) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -4117) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-145))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-172)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-145)))))
-(-1167 R -2382)
+(((-4416 "*") -2805 (-2447 (|has| |#1| (-365)) (|has| (-1173 |#1| |#2| |#3|) (-820))) (|has| |#1| (-172)) (-2447 (|has| |#1| (-365)) (|has| (-1173 |#1| |#2| |#3|) (-909)))) (-4407 -2805 (-2447 (|has| |#1| (-365)) (|has| (-1173 |#1| |#2| |#3|) (-820))) (|has| |#1| (-558)) (-2447 (|has| |#1| (-365)) (|has| (-1173 |#1| |#2| |#3|) (-909)))) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
+((-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-1022))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-1150))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -287) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -310) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-145)))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-147)))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|)))))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|))))) (|HasCategory| (-566) (QUOTE (-1111))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-1022))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365))))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-1150))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -287) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -310) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -1173) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3921) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-145))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-172)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1173 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(-1167 R -2386)
((|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
@@ -4614,16 +4614,16 @@ NIL
NIL
(-1171 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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4413 |has| |#1| (-365)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-1150))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4415)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4410 |has| |#1| (-365)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#1| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-1150))) (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-233))) (|HasAttribute| |#1| (QUOTE -4412)) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-1172 |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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|)))) (|HasCategory| (-409 (-566)) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -4117) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|)))) (|HasCategory| (-409 (-566)) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3921) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
(-1173 |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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-771)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-771)) (|devaluate| |#1|)))) (|HasCategory| (-771) (QUOTE (-1111))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-771))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-771))))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -4117) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-771)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-771)) (|devaluate| |#1|)))) (|HasCategory| (-771) (QUOTE (-1111))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-771))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-771))))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3921) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
(-1174)
((|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
@@ -4638,8 +4638,8 @@ NIL
NIL
(-1177 R)
((|constructor| (NIL "This domain implements symmetric polynomial")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-6 -4415)) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| (-971) (QUOTE (-131))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasAttribute| |#1| (QUOTE -4415)))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-6 -4412)) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-454))) (-12 (|HasCategory| (-971) (QUOTE (-131))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasAttribute| |#1| (QUOTE -4412)))
(-1178)
((|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
@@ -4678,8 +4678,8 @@ NIL
NIL
(-1187 |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}")))
-((-4417 . T) (-4418 . T))
-((-12 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2010) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2818) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))))
+((-4414 . T) (-4415 . T))
+((-12 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -310) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2050) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2849) (|devaluate| |#2|)))))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#2| (QUOTE (-1099)))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -614) (QUOTE (-538)))) (-12 (|HasCategory| |#2| (QUOTE (-1099))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#2| (QUOTE (-1099))) (-2805 (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#2| (LIST (QUOTE -613) (QUOTE (-862)))) (|HasCategory| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (LIST (QUOTE -613) (QUOTE (-862)))))
(-1188 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
@@ -4690,7 +4690,7 @@ NIL
NIL
(-1190 |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})}.")))
-((-4418 . T))
+((-4415 . T))
NIL
(-1191 |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.")))
@@ -4730,7 +4730,7 @@ NIL
NIL
(-1200 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}.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1099))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
(-1201 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}.")))
@@ -4740,7 +4740,7 @@ NIL
((|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
-(-1203 R -2382)
+(-1203 R -2386)
((|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
@@ -4748,7 +4748,7 @@ NIL
((|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
-(-1205 R -2382)
+(-1205 R -2386)
((|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 -614) (LIST (QUOTE -892) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -886) (|devaluate| |#1|))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (|devaluate| |#1|)))) (|HasCategory| |#2| (LIST (QUOTE -886) (|devaluate| |#1|)))))
@@ -4758,11 +4758,11 @@ NIL
((|HasCategory| |#4| (QUOTE (-370))))
(-1207 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.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
(-1208 |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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4412 . T) (-4411 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4409 . T) (-4408 . T) (-4411 . T))
((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-145))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-365))))
(-1209 |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}.")))
@@ -4776,7 +4776,7 @@ NIL
((|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")))
NIL
((|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))))
-(-1212 -2382)
+(-1212 -2386)
((|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
@@ -4802,7 +4802,7 @@ NIL
NIL
(-1218)
((|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.")))
-((-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1219)
((|constructor| (NIL "This domain is a datatype for (unsigned) integer values of precision 16 bits.")))
@@ -4826,7 +4826,7 @@ NIL
NIL
(-1224 |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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1225 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.")) (|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)}.")))
@@ -4834,16 +4834,16 @@ NIL
((|HasCategory| |#2| (QUOTE (-365))))
(-1226 |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.")) (|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)}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1227 |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)}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
-((-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -287) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-820)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-850)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-909)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1022)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1150)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-145))))) (-2805 (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-147))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|))))) (|HasCategory| (-566) (QUOTE (-1111))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-909)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1022)))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-820)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-820)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-850))))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -287) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-820)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-850)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-909)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1022)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1150)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1150)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -287) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -4117) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-850)))) (|HasCategory| |#2| (QUOTE (-909))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-547)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-308)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-145))))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
+((-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -287) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-820)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-850)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-909)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1022)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1150)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-145))))) (-2805 (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-147))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-233)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|))))) (|HasCategory| (-566) (QUOTE (-1111))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-909)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1022)))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-820)))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-820)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-850))))) (-2805 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -287) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-820)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-850)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-909)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1022)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1150)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-1175)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1150)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -287) (|devaluate| |#2|) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -310) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -516) (QUOTE (-1175)) (|devaluate| |#2|)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3921) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-850)))) (|HasCategory| |#2| (QUOTE (-909))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-547)))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-308)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#1| (QUOTE (-145))) (-12 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-145))))))
(-1228 |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.")))
-(((-4419 "*") -2805 (-2438 (|has| |#1| (-365)) (|has| (-1256 |#1| |#2| |#3|) (-820))) (|has| |#1| (-172)) (-2438 (|has| |#1| (-365)) (|has| (-1256 |#1| |#2| |#3|) (-909)))) (-4410 -2805 (-2438 (|has| |#1| (-365)) (|has| (-1256 |#1| |#2| |#3|) (-820))) (|has| |#1| (-558)) (-2438 (|has| |#1| (-365)) (|has| (-1256 |#1| |#2| |#3|) (-909)))) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
-((-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-1022))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-1150))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -287) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -310) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-145)))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-147)))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|)))))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|))))) (|HasCategory| (-566) (QUOTE (-1111))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-1022))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365))))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-1150))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -287) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -310) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -4117) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-145))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-172)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-145)))))
+(((-4416 "*") -2805 (-2447 (|has| |#1| (-365)) (|has| (-1256 |#1| |#2| |#3|) (-820))) (|has| |#1| (-172)) (-2447 (|has| |#1| (-365)) (|has| (-1256 |#1| |#2| |#3|) (-909)))) (-4407 -2805 (-2447 (|has| |#1| (-365)) (|has| (-1256 |#1| |#2| |#3|) (-820))) (|has| |#1| (-558)) (-2447 (|has| |#1| (-365)) (|has| (-1256 |#1| |#2| |#3|) (-909)))) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
+((-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-1022))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-1150))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -287) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -310) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-145)))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-147))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-147)))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|)))))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-233))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-566)) (|devaluate| |#1|))))) (|HasCategory| (-566) (QUOTE (-1111))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-365))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-1175)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-1022))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365))))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-1150))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -287) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -310) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -516) (QUOTE (-1175)) (LIST (QUOTE -1256) (|devaluate| |#1|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-566))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3921) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-547))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-308))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-145))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-820))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-172)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-909))) (|HasCategory| |#1| (QUOTE (-365)))) (-12 (|HasCategory| (-1256 |#1| |#2| |#3|) (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-365)))) (|HasCategory| |#1| (QUOTE (-145)))))
(-1229 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
@@ -4878,8 +4878,8 @@ NIL
NIL
(-1237 |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}")))
-(((-4419 "*") |has| |#2| (-172)) (-4410 |has| |#2| (-558)) (-4413 |has| |#2| (-365)) (-4415 |has| |#2| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#2| (QUOTE (-909))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-558)))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1150))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE -4415)) (|HasCategory| |#2| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
+(((-4416 "*") |has| |#2| (-172)) (-4407 |has| |#2| (-558)) (-4410 |has| |#2| (-365)) (-4412 |has| |#2| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#2| (QUOTE (-909))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-558)))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-381)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-381))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -886) (QUOTE (-566)))) (|HasCategory| |#2| (LIST (QUOTE -886) (QUOTE (-566))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-381)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -614) (LIST (QUOTE -892) (QUOTE (-566)))))) (-12 (|HasCategory| (-1081) (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#2| (LIST (QUOTE -614) (QUOTE (-538))))) (|HasCategory| |#2| (LIST (QUOTE -639) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-147))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (QUOTE (-566)))) (-2805 (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| |#2| (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (-2805 (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-1150))) (|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasCategory| |#2| (QUOTE (-233))) (|HasAttribute| |#2| (QUOTE -4412)) (|HasCategory| |#2| (QUOTE (-454))) (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (-2805 (-12 (|HasCategory| $ (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-909)))) (|HasCategory| |#2| (QUOTE (-145)))))
(-1238 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
@@ -4890,15 +4890,15 @@ NIL
((|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))) (|HasCategory| |#2| (QUOTE (-454))) (|HasCategory| |#2| (QUOTE (-558))) (|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (QUOTE (-1150))))
(-1240 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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4413 |has| |#1| (-365)) (-4415 |has| |#1| (-6 -4415)) (-4412 . T) (-4411 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4410 |has| |#1| (-365)) (-4412 |has| |#1| (-6 -4412)) (-4409 . T) (-4408 . T) (-4411 . T))
NIL
(-1241 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 -900) (QUOTE (-1175)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1111))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -2512) (LIST (|devaluate| |#2|) (QUOTE (-1175))))))
+((|HasCategory| |#2| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#2| (LIST (QUOTE *) (LIST (|devaluate| |#2|) (|devaluate| |#3|) (|devaluate| |#2|)))) (|HasCategory| |#3| (QUOTE (-1111))) (|HasSignature| |#2| (LIST (QUOTE **) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (|devaluate| |#3|)))) (|HasSignature| |#2| (LIST (QUOTE -3780) (LIST (|devaluate| |#2|) (QUOTE (-1175))))))
(-1242 |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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1243 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}.")))
@@ -4910,7 +4910,7 @@ NIL
NIL
(-1245 |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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1246 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.")) (|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)}.")))
@@ -4918,24 +4918,24 @@ NIL
NIL
(-1247 |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.")) (|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)}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1248 |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)}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|)))) (|HasCategory| (-409 (-566)) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -4117) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|)))) (|HasCategory| (-409 (-566)) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3921) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))))
(-1249 |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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4415 |has| |#1| (-365)) (-4409 |has| |#1| (-365)) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|)))) (|HasCategory| (-409 (-566)) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -4117) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4412 |has| |#1| (-365)) (-4406 |has| |#1| (-365)) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#1| (QUOTE (-172))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566))) (|devaluate| |#1|)))) (|HasCategory| (-409 (-566)) (QUOTE (-1111))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-2805 (|HasCategory| |#1| (QUOTE (-365))) (|HasCategory| |#1| (QUOTE (-558)))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -409) (QUOTE (-566)))))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3921) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
(-1250 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))}.")))
-(((-4419 "*") |has| (-1249 |#2| |#3| |#4|) (-172)) (-4410 |has| (-1249 |#2| |#3| |#4|) (-558)) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") |has| (-1249 |#2| |#3| |#4|) (-172)) (-4407 |has| (-1249 |#2| |#3| |#4|) (-558)) (-4408 . T) (-4409 . T) (-4411 . T))
((|HasCategory| (-1249 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-1249 |#2| |#3| |#4|) (QUOTE (-145))) (|HasCategory| (-1249 |#2| |#3| |#4|) (QUOTE (-147))) (|HasCategory| (-1249 |#2| |#3| |#4|) (QUOTE (-172))) (-2805 (|HasCategory| (-1249 |#2| |#3| |#4|) (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-1249 |#2| |#3| |#4|) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566)))))) (|HasCategory| (-1249 |#2| |#3| |#4|) (LIST (QUOTE -1038) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| (-1249 |#2| |#3| |#4|) (LIST (QUOTE -1038) (QUOTE (-566)))) (|HasCategory| (-1249 |#2| |#3| |#4|) (QUOTE (-365))) (|HasCategory| (-1249 |#2| |#3| |#4|) (QUOTE (-454))) (|HasCategory| (-1249 |#2| |#3| |#4|) (QUOTE (-558))))
(-1251 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 -4418)))
+((|HasAttribute| |#1| (QUOTE -4415)))
(-1252 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)}.")))
NIL
@@ -4947,20 +4947,20 @@ NIL
(-1254 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 (-566)))) (|HasCategory| |#2| (QUOTE (-959))) (|HasCategory| |#2| (QUOTE (-1199))) (|HasSignature| |#2| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -4117) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1175))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))))
+((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#2| (QUOTE (-959))) (|HasCategory| |#2| (QUOTE (-1199))) (|HasSignature| |#2| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -3921) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1175))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#2| (QUOTE (-365))))
(-1255 |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.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1256 |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}.")))
-(((-4419 "*") |has| |#1| (-172)) (-4410 |has| |#1| (-558)) (-4411 . T) (-4412 . T) (-4414 . T))
-((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-771)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-771)) (|devaluate| |#1|)))) (|HasCategory| (-771) (QUOTE (-1111))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-771))))) (|HasSignature| |#1| (LIST (QUOTE -2512) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-771))))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -4117) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2540) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
+(((-4416 "*") |has| |#1| (-172)) (-4407 |has| |#1| (-558)) (-4408 . T) (-4409 . T) (-4411 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasCategory| |#1| (QUOTE (-558))) (-2805 (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-558)))) (|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-145))) (|HasCategory| |#1| (QUOTE (-147))) (-12 (|HasCategory| |#1| (LIST (QUOTE -900) (QUOTE (-1175)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-771)) (|devaluate| |#1|))))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-771)) (|devaluate| |#1|)))) (|HasCategory| (-771) (QUOTE (-1111))) (-12 (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-771))))) (|HasSignature| |#1| (LIST (QUOTE -3780) (LIST (|devaluate| |#1|) (QUOTE (-1175)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-771))))) (|HasCategory| |#1| (QUOTE (-365))) (-2805 (-12 (|HasCategory| |#1| (LIST (QUOTE -29) (QUOTE (-566)))) (|HasCategory| |#1| (QUOTE (-959))) (|HasCategory| |#1| (QUOTE (-1199))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasSignature| |#1| (LIST (QUOTE -3921) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1175))))) (|HasSignature| |#1| (LIST (QUOTE -2608) (LIST (LIST (QUOTE -644) (QUOTE (-1175))) (|devaluate| |#1|)))))))
(-1257 |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
-(-1258 -2382 UP L UTS)
+(-1258 -2386 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 (-558))))
@@ -4978,7 +4978,7 @@ NIL
((|HasCategory| |#2| (QUOTE (-1002))) (|HasCategory| |#2| (QUOTE (-1049))) (|HasCategory| |#2| (QUOTE (-726))) (|HasCategory| |#2| (QUOTE (-21))) (|HasCategory| |#2| (QUOTE (-23))) (|HasCategory| |#2| (QUOTE (-25))))
(-1262 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.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
NIL
(-1263 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}.")))
@@ -4986,7 +4986,7 @@ NIL
NIL
(-1264 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.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-2805 (-12 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|))))) (-2805 (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862))))) (|HasCategory| |#1| (LIST (QUOTE -614) (QUOTE (-538)))) (-2805 (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099)))) (|HasCategory| |#1| (QUOTE (-850))) (|HasCategory| (-566) (QUOTE (-850))) (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-23))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-726))) (|HasCategory| |#1| (QUOTE (-1049))) (-12 (|HasCategory| |#1| (QUOTE (-1002))) (|HasCategory| |#1| (QUOTE (-1049)))) (|HasCategory| |#1| (LIST (QUOTE -613) (QUOTE (-862)))) (-12 (|HasCategory| |#1| (QUOTE (-1099))) (|HasCategory| |#1| (LIST (QUOTE -310) (|devaluate| |#1|)))))
(-1265)
((|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.")))
@@ -5014,13 +5014,13 @@ NIL
NIL
(-1271 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}.")))
-((-4412 . T) (-4411 . T))
+((-4409 . T) (-4408 . T))
NIL
(-1272 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
-(-1273 K R UP -2382)
+(-1273 K R UP -2386)
((|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
@@ -5034,56 +5034,56 @@ NIL
NIL
(-1276 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)")))
-((-4412 |has| |#1| (-172)) (-4411 |has| |#1| (-172)) (-4414 . T))
+((-4409 |has| |#1| (-172)) (-4408 |has| |#1| (-172)) (-4411 . T))
((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))))
(-1277 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}}.")))
-((-4418 . T) (-4417 . T))
+((-4415 . T) (-4414 . T))
((-12 (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#4| (LIST (QUOTE -310) (|devaluate| |#4|)))) (|HasCategory| |#4| (LIST (QUOTE -614) (QUOTE (-538)))) (|HasCategory| |#4| (QUOTE (-1099))) (|HasCategory| |#1| (QUOTE (-558))) (|HasCategory| |#3| (QUOTE (-370))) (|HasCategory| |#4| (LIST (QUOTE -613) (QUOTE (-862)))))
(-1278 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})")))
-((-4411 . T) (-4412 . T) (-4414 . T))
+((-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1279 |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.")))
-((-4414 . T) (-4410 |has| |#2| (-6 -4410)) (-4412 . T) (-4411 . T))
-((|HasCategory| |#2| (QUOTE (-172))) (|HasAttribute| |#2| (QUOTE -4410)))
+((-4411 . T) (-4407 |has| |#2| (-6 -4407)) (-4409 . T) (-4408 . T))
+((|HasCategory| |#2| (QUOTE (-172))) (|HasAttribute| |#2| (QUOTE -4407)))
(-1280 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
(-1281 |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}.")))
-((-4410 |has| |#2| (-6 -4410)) (-4412 . T) (-4411 . T) (-4414 . T))
+((-4407 |has| |#2| (-6 -4407)) (-4409 . T) (-4408 . T) (-4411 . T))
NIL
-(-1282 S -2382)
+(-1282 S -2386)
((|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 (-370))) (|HasCategory| |#2| (QUOTE (-145))) (|HasCategory| |#2| (QUOTE (-147))))
-(-1283 -2382)
+(-1283 -2386)
((|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}.")))
-((-4409 . T) (-4415 . T) (-4410 . T) ((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+((-4406 . T) (-4412 . T) (-4407 . T) ((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
(-1284 |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}}.")))
-((-4410 |has| |#2| (-6 -4410)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -717) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasAttribute| |#2| (QUOTE -4410)))
+((-4407 |has| |#2| (-6 -4407)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#2| (QUOTE (-172))) (|HasCategory| |#2| (LIST (QUOTE -717) (LIST (QUOTE -409) (QUOTE (-566))))) (|HasAttribute| |#2| (QUOTE -4407)))
(-1285 |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}.")))
-((-4410 |has| |#2| (-6 -4410)) (-4412 . T) (-4411 . T) (-4414 . T))
+((-4407 |has| |#2| (-6 -4407)) (-4409 . T) (-4408 . T) (-4411 . T))
NIL
(-1286 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.")))
-((-4410 |has| |#1| (-6 -4410)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#1| (QUOTE (-172))) (|HasAttribute| |#1| (QUOTE -4410)))
+((-4407 |has| |#1| (-6 -4407)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#1| (QUOTE (-172))) (|HasAttribute| |#1| (QUOTE -4407)))
(-1287 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.")) (|#| (((|NonNegativeInteger|) $) "\\spad{\\# p} returns the number of terms in \\spad{p}.")) (* (($ $ |#1|) "\\spad{p*r} returns the product of \\spad{p} by \\spad{r}.")))
-((-4414 . T) (-4415 |has| |#1| (-6 -4415)) (-4410 |has| |#1| (-6 -4410)) (-4412 . T) (-4411 . T))
-((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4414)) (|HasAttribute| |#1| (QUOTE -4415)) (|HasAttribute| |#1| (QUOTE -4410)))
+((-4411 . T) (-4412 |has| |#1| (-6 -4412)) (-4407 |has| |#1| (-6 -4407)) (-4409 . T) (-4408 . T))
+((|HasCategory| |#1| (QUOTE (-172))) (|HasCategory| |#1| (QUOTE (-365))) (|HasAttribute| |#1| (QUOTE -4411)) (|HasAttribute| |#1| (QUOTE -4412)) (|HasAttribute| |#1| (QUOTE -4407)))
(-1288 |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.")))
-((-4410 |has| |#2| (-6 -4410)) (-4412 . T) (-4411 . T) (-4414 . T))
-((|HasCategory| |#2| (QUOTE (-172))) (|HasAttribute| |#2| (QUOTE -4410)))
+((-4407 |has| |#2| (-6 -4407)) (-4409 . T) (-4408 . T) (-4411 . T))
+((|HasCategory| |#2| (QUOTE (-172))) (|HasAttribute| |#2| (QUOTE -4407)))
(-1289 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
@@ -5098,7 +5098,7 @@ NIL
NIL
(-1292 |p|)
((|constructor| (NIL "IntegerMod(\\spad{n}) creates the ring of integers reduced modulo the integer \\spad{n}.")))
-(((-4419 "*") . T) (-4411 . T) (-4412 . T) (-4414 . T))
+(((-4416 "*") . T) (-4408 . T) (-4409 . T) (-4411 . T))
NIL
NIL
NIL
@@ -5116,4 +5116,4 @@ NIL
NIL
NIL
NIL
-((-3 NIL 2285477 2285482 2285487 2285492) (-2 NIL 2285457 2285462 2285467 2285472) (-1 NIL 2285437 2285442 2285447 2285452) (0 NIL 2285417 2285422 2285427 2285432) (-1292 "ZMOD.spad" 2285226 2285239 2285355 2285412) (-1291 "ZLINDEP.spad" 2284270 2284281 2285216 2285221) (-1290 "ZDSOLVE.spad" 2274119 2274141 2284260 2284265) (-1289 "YSTREAM.spad" 2273612 2273623 2274109 2274114) (-1288 "XRPOLY.spad" 2272832 2272852 2273468 2273537) (-1287 "XPR.spad" 2270623 2270636 2272550 2272649) (-1286 "XPOLY.spad" 2270178 2270189 2270479 2270548) (-1285 "XPOLYC.spad" 2269495 2269511 2270104 2270173) (-1284 "XPBWPOLY.spad" 2267932 2267952 2269275 2269344) (-1283 "XF.spad" 2266393 2266408 2267834 2267927) (-1282 "XF.spad" 2264834 2264851 2266277 2266282) (-1281 "XFALG.spad" 2261858 2261874 2264760 2264829) (-1280 "XEXPPKG.spad" 2261109 2261135 2261848 2261853) (-1279 "XDPOLY.spad" 2260723 2260739 2260965 2261034) (-1278 "XALG.spad" 2260383 2260394 2260679 2260718) (-1277 "WUTSET.spad" 2256222 2256239 2260029 2260056) (-1276 "WP.spad" 2255421 2255465 2256080 2256147) (-1275 "WHILEAST.spad" 2255219 2255228 2255411 2255416) (-1274 "WHEREAST.spad" 2254890 2254899 2255209 2255214) (-1273 "WFFINTBS.spad" 2252453 2252475 2254880 2254885) (-1272 "WEIER.spad" 2250667 2250678 2252443 2252448) (-1271 "VSPACE.spad" 2250340 2250351 2250635 2250662) (-1270 "VSPACE.spad" 2250033 2250046 2250330 2250335) (-1269 "VOID.spad" 2249710 2249719 2250023 2250028) (-1268 "VIEW.spad" 2247332 2247341 2249700 2249705) (-1267 "VIEWDEF.spad" 2242529 2242538 2247322 2247327) (-1266 "VIEW3D.spad" 2226364 2226373 2242519 2242524) (-1265 "VIEW2D.spad" 2214101 2214110 2226354 2226359) (-1264 "VECTOR.spad" 2212775 2212786 2213026 2213053) (-1263 "VECTOR2.spad" 2211402 2211415 2212765 2212770) (-1262 "VECTCAT.spad" 2209302 2209313 2211370 2211397) (-1261 "VECTCAT.spad" 2207009 2207022 2209079 2209084) (-1260 "VARIABLE.spad" 2206789 2206804 2206999 2207004) (-1259 "UTYPE.spad" 2206433 2206442 2206779 2206784) (-1258 "UTSODETL.spad" 2205726 2205750 2206389 2206394) (-1257 "UTSODE.spad" 2203914 2203934 2205716 2205721) (-1256 "UTS.spad" 2198703 2198731 2202381 2202478) (-1255 "UTSCAT.spad" 2196154 2196170 2198601 2198698) (-1254 "UTSCAT.spad" 2193249 2193267 2195698 2195703) (-1253 "UTS2.spad" 2192842 2192877 2193239 2193244) (-1252 "URAGG.spad" 2187475 2187486 2192832 2192837) (-1251 "URAGG.spad" 2182072 2182085 2187431 2187436) (-1250 "UPXSSING.spad" 2179715 2179741 2181153 2181286) (-1249 "UPXS.spad" 2176863 2176891 2177847 2177996) (-1248 "UPXSCONS.spad" 2174620 2174640 2174995 2175144) (-1247 "UPXSCCA.spad" 2173185 2173205 2174466 2174615) (-1246 "UPXSCCA.spad" 2171892 2171914 2173175 2173180) (-1245 "UPXSCAT.spad" 2170473 2170489 2171738 2171887) (-1244 "UPXS2.spad" 2170014 2170067 2170463 2170468) (-1243 "UPSQFREE.spad" 2168426 2168440 2170004 2170009) (-1242 "UPSCAT.spad" 2166019 2166043 2168324 2168421) (-1241 "UPSCAT.spad" 2163318 2163344 2165625 2165630) (-1240 "UPOLYC.spad" 2158296 2158307 2163160 2163313) (-1239 "UPOLYC.spad" 2153166 2153179 2158032 2158037) (-1238 "UPOLYC2.spad" 2152635 2152654 2153156 2153161) (-1237 "UP.spad" 2149828 2149843 2150221 2150374) (-1236 "UPMP.spad" 2148718 2148731 2149818 2149823) (-1235 "UPDIVP.spad" 2148281 2148295 2148708 2148713) (-1234 "UPDECOMP.spad" 2146518 2146532 2148271 2148276) (-1233 "UPCDEN.spad" 2145725 2145741 2146508 2146513) (-1232 "UP2.spad" 2145087 2145108 2145715 2145720) (-1231 "UNISEG.spad" 2144440 2144451 2145006 2145011) (-1230 "UNISEG2.spad" 2143933 2143946 2144396 2144401) (-1229 "UNIFACT.spad" 2143034 2143046 2143923 2143928) (-1228 "ULS.spad" 2133586 2133614 2134679 2135108) (-1227 "ULSCONS.spad" 2125980 2126000 2126352 2126501) (-1226 "ULSCCAT.spad" 2123709 2123729 2125826 2125975) (-1225 "ULSCCAT.spad" 2121546 2121568 2123665 2123670) (-1224 "ULSCAT.spad" 2119762 2119778 2121392 2121541) (-1223 "ULS2.spad" 2119274 2119327 2119752 2119757) (-1222 "UINT8.spad" 2119151 2119160 2119264 2119269) (-1221 "UINT64.spad" 2119027 2119036 2119141 2119146) (-1220 "UINT32.spad" 2118903 2118912 2119017 2119022) (-1219 "UINT16.spad" 2118779 2118788 2118893 2118898) (-1218 "UFD.spad" 2117844 2117853 2118705 2118774) (-1217 "UFD.spad" 2116971 2116982 2117834 2117839) (-1216 "UDVO.spad" 2115818 2115827 2116961 2116966) (-1215 "UDPO.spad" 2113245 2113256 2115774 2115779) (-1214 "TYPE.spad" 2113177 2113186 2113235 2113240) (-1213 "TYPEAST.spad" 2113096 2113105 2113167 2113172) (-1212 "TWOFACT.spad" 2111746 2111761 2113086 2113091) (-1211 "TUPLE.spad" 2111230 2111241 2111645 2111650) (-1210 "TUBETOOL.spad" 2108067 2108076 2111220 2111225) (-1209 "TUBE.spad" 2106708 2106725 2108057 2108062) (-1208 "TS.spad" 2105297 2105313 2106273 2106370) (-1207 "TSETCAT.spad" 2092424 2092441 2105265 2105292) (-1206 "TSETCAT.spad" 2079537 2079556 2092380 2092385) (-1205 "TRMANIP.spad" 2073903 2073920 2079243 2079248) (-1204 "TRIMAT.spad" 2072862 2072887 2073893 2073898) (-1203 "TRIGMNIP.spad" 2071379 2071396 2072852 2072857) (-1202 "TRIGCAT.spad" 2070891 2070900 2071369 2071374) (-1201 "TRIGCAT.spad" 2070401 2070412 2070881 2070886) (-1200 "TREE.spad" 2068972 2068983 2070008 2070035) (-1199 "TRANFUN.spad" 2068803 2068812 2068962 2068967) (-1198 "TRANFUN.spad" 2068632 2068643 2068793 2068798) (-1197 "TOPSP.spad" 2068306 2068315 2068622 2068627) (-1196 "TOOLSIGN.spad" 2067969 2067980 2068296 2068301) (-1195 "TEXTFILE.spad" 2066526 2066535 2067959 2067964) (-1194 "TEX.spad" 2063658 2063667 2066516 2066521) (-1193 "TEX1.spad" 2063214 2063225 2063648 2063653) (-1192 "TEMUTL.spad" 2062769 2062778 2063204 2063209) (-1191 "TBCMPPK.spad" 2060862 2060885 2062759 2062764) (-1190 "TBAGG.spad" 2059898 2059921 2060842 2060857) (-1189 "TBAGG.spad" 2058942 2058967 2059888 2059893) (-1188 "TANEXP.spad" 2058318 2058329 2058932 2058937) (-1187 "TABLE.spad" 2056729 2056752 2056999 2057026) (-1186 "TABLEAU.spad" 2056210 2056221 2056719 2056724) (-1185 "TABLBUMP.spad" 2052993 2053004 2056200 2056205) (-1184 "SYSTEM.spad" 2052221 2052230 2052983 2052988) (-1183 "SYSSOLP.spad" 2049694 2049705 2052211 2052216) (-1182 "SYSNNI.spad" 2048874 2048885 2049684 2049689) (-1181 "SYSINT.spad" 2048278 2048289 2048864 2048869) (-1180 "SYNTAX.spad" 2044472 2044481 2048268 2048273) (-1179 "SYMTAB.spad" 2042528 2042537 2044462 2044467) (-1178 "SYMS.spad" 2038513 2038522 2042518 2042523) (-1177 "SYMPOLY.spad" 2037520 2037531 2037602 2037729) (-1176 "SYMFUNC.spad" 2036995 2037006 2037510 2037515) (-1175 "SYMBOL.spad" 2034422 2034431 2036985 2036990) (-1174 "SWITCH.spad" 2031179 2031188 2034412 2034417) (-1173 "SUTS.spad" 2028078 2028106 2029646 2029743) (-1172 "SUPXS.spad" 2025213 2025241 2026210 2026359) (-1171 "SUP.spad" 2022018 2022029 2022799 2022952) (-1170 "SUPFRACF.spad" 2021123 2021141 2022008 2022013) (-1169 "SUP2.spad" 2020513 2020526 2021113 2021118) (-1168 "SUMRF.spad" 2019479 2019490 2020503 2020508) (-1167 "SUMFS.spad" 2019112 2019129 2019469 2019474) (-1166 "SULS.spad" 2009651 2009679 2010757 2011186) (-1165 "SUCHTAST.spad" 2009420 2009429 2009641 2009646) (-1164 "SUCH.spad" 2009100 2009115 2009410 2009415) (-1163 "SUBSPACE.spad" 2001107 2001122 2009090 2009095) (-1162 "SUBRESP.spad" 2000267 2000281 2001063 2001068) (-1161 "STTF.spad" 1996366 1996382 2000257 2000262) (-1160 "STTFNC.spad" 1992834 1992850 1996356 1996361) (-1159 "STTAYLOR.spad" 1985232 1985243 1992715 1992720) (-1158 "STRTBL.spad" 1983737 1983754 1983886 1983913) (-1157 "STRING.spad" 1983146 1983155 1983160 1983187) (-1156 "STRICAT.spad" 1982934 1982943 1983114 1983141) (-1155 "STREAM.spad" 1979792 1979803 1982459 1982474) (-1154 "STREAM3.spad" 1979337 1979352 1979782 1979787) (-1153 "STREAM2.spad" 1978405 1978418 1979327 1979332) (-1152 "STREAM1.spad" 1978109 1978120 1978395 1978400) (-1151 "STINPROD.spad" 1977015 1977031 1978099 1978104) (-1150 "STEP.spad" 1976216 1976225 1977005 1977010) (-1149 "STBL.spad" 1974742 1974770 1974909 1974924) (-1148 "STAGG.spad" 1973817 1973828 1974732 1974737) (-1147 "STAGG.spad" 1972890 1972903 1973807 1973812) (-1146 "STACK.spad" 1972241 1972252 1972497 1972524) (-1145 "SREGSET.spad" 1969945 1969962 1971887 1971914) (-1144 "SRDCMPK.spad" 1968490 1968510 1969935 1969940) (-1143 "SRAGG.spad" 1963587 1963596 1968458 1968485) (-1142 "SRAGG.spad" 1958704 1958715 1963577 1963582) (-1141 "SQMATRIX.spad" 1956320 1956338 1957236 1957323) (-1140 "SPLTREE.spad" 1950872 1950885 1955756 1955783) (-1139 "SPLNODE.spad" 1947460 1947473 1950862 1950867) (-1138 "SPFCAT.spad" 1946237 1946246 1947450 1947455) (-1137 "SPECOUT.spad" 1944787 1944796 1946227 1946232) (-1136 "SPADXPT.spad" 1936926 1936935 1944777 1944782) (-1135 "spad-parser.spad" 1936391 1936400 1936916 1936921) (-1134 "SPADAST.spad" 1936092 1936101 1936381 1936386) (-1133 "SPACEC.spad" 1920105 1920116 1936082 1936087) (-1132 "SPACE3.spad" 1919881 1919892 1920095 1920100) (-1131 "SORTPAK.spad" 1919426 1919439 1919837 1919842) (-1130 "SOLVETRA.spad" 1917183 1917194 1919416 1919421) (-1129 "SOLVESER.spad" 1915703 1915714 1917173 1917178) (-1128 "SOLVERAD.spad" 1911713 1911724 1915693 1915698) (-1127 "SOLVEFOR.spad" 1910133 1910151 1911703 1911708) (-1126 "SNTSCAT.spad" 1909733 1909750 1910101 1910128) (-1125 "SMTS.spad" 1907993 1908019 1909298 1909395) (-1124 "SMP.spad" 1905468 1905488 1905858 1905985) (-1123 "SMITH.spad" 1904311 1904336 1905458 1905463) (-1122 "SMATCAT.spad" 1902421 1902451 1904255 1904306) (-1121 "SMATCAT.spad" 1900463 1900495 1902299 1902304) (-1120 "SKAGG.spad" 1899424 1899435 1900431 1900458) (-1119 "SINT.spad" 1898250 1898259 1899290 1899419) (-1118 "SIMPAN.spad" 1897978 1897987 1898240 1898245) (-1117 "SIG.spad" 1897306 1897315 1897968 1897973) (-1116 "SIGNRF.spad" 1896414 1896425 1897296 1897301) (-1115 "SIGNEF.spad" 1895683 1895700 1896404 1896409) (-1114 "SIGAST.spad" 1895064 1895073 1895673 1895678) (-1113 "SHP.spad" 1892982 1892997 1895020 1895025) (-1112 "SHDP.spad" 1882693 1882720 1883202 1883333) (-1111 "SGROUP.spad" 1882301 1882310 1882683 1882688) (-1110 "SGROUP.spad" 1881907 1881918 1882291 1882296) (-1109 "SGCF.spad" 1874788 1874797 1881897 1881902) (-1108 "SFRTCAT.spad" 1873716 1873733 1874756 1874783) (-1107 "SFRGCD.spad" 1872779 1872799 1873706 1873711) (-1106 "SFQCMPK.spad" 1867416 1867436 1872769 1872774) (-1105 "SFORT.spad" 1866851 1866865 1867406 1867411) (-1104 "SEXOF.spad" 1866694 1866734 1866841 1866846) (-1103 "SEX.spad" 1866586 1866595 1866684 1866689) (-1102 "SEXCAT.spad" 1864137 1864177 1866576 1866581) (-1101 "SET.spad" 1862437 1862448 1863558 1863597) (-1100 "SETMN.spad" 1860871 1860888 1862427 1862432) (-1099 "SETCAT.spad" 1860193 1860202 1860861 1860866) (-1098 "SETCAT.spad" 1859513 1859524 1860183 1860188) (-1097 "SETAGG.spad" 1856034 1856045 1859493 1859508) (-1096 "SETAGG.spad" 1852563 1852576 1856024 1856029) (-1095 "SEQAST.spad" 1852266 1852275 1852553 1852558) (-1094 "SEGXCAT.spad" 1851388 1851401 1852256 1852261) (-1093 "SEG.spad" 1851201 1851212 1851307 1851312) (-1092 "SEGCAT.spad" 1850108 1850119 1851191 1851196) (-1091 "SEGBIND.spad" 1849180 1849191 1850063 1850068) (-1090 "SEGBIND2.spad" 1848876 1848889 1849170 1849175) (-1089 "SEGAST.spad" 1848590 1848599 1848866 1848871) (-1088 "SEG2.spad" 1848015 1848028 1848546 1848551) (-1087 "SDVAR.spad" 1847291 1847302 1848005 1848010) (-1086 "SDPOL.spad" 1844717 1844728 1845008 1845135) (-1085 "SCPKG.spad" 1842796 1842807 1844707 1844712) (-1084 "SCOPE.spad" 1841945 1841954 1842786 1842791) (-1083 "SCACHE.spad" 1840627 1840638 1841935 1841940) (-1082 "SASTCAT.spad" 1840536 1840545 1840617 1840622) (-1081 "SAOS.spad" 1840408 1840417 1840526 1840531) (-1080 "SAERFFC.spad" 1840121 1840141 1840398 1840403) (-1079 "SAE.spad" 1838296 1838312 1838907 1839042) (-1078 "SAEFACT.spad" 1837997 1838017 1838286 1838291) (-1077 "RURPK.spad" 1835638 1835654 1837987 1837992) (-1076 "RULESET.spad" 1835079 1835103 1835628 1835633) (-1075 "RULE.spad" 1833283 1833307 1835069 1835074) (-1074 "RULECOLD.spad" 1833135 1833148 1833273 1833278) (-1073 "RTVALUE.spad" 1832868 1832877 1833125 1833130) (-1072 "RSTRCAST.spad" 1832585 1832594 1832858 1832863) (-1071 "RSETGCD.spad" 1828963 1828983 1832575 1832580) (-1070 "RSETCAT.spad" 1818747 1818764 1828931 1828958) (-1069 "RSETCAT.spad" 1808551 1808570 1818737 1818742) (-1068 "RSDCMPK.spad" 1807003 1807023 1808541 1808546) (-1067 "RRCC.spad" 1805387 1805417 1806993 1806998) (-1066 "RRCC.spad" 1803769 1803801 1805377 1805382) (-1065 "RPTAST.spad" 1803471 1803480 1803759 1803764) (-1064 "RPOLCAT.spad" 1782831 1782846 1803339 1803466) (-1063 "RPOLCAT.spad" 1761905 1761922 1782415 1782420) (-1062 "ROUTINE.spad" 1757768 1757777 1760552 1760579) (-1061 "ROMAN.spad" 1757096 1757105 1757634 1757763) (-1060 "ROIRC.spad" 1756176 1756208 1757086 1757091) (-1059 "RNS.spad" 1755079 1755088 1756078 1756171) (-1058 "RNS.spad" 1754068 1754079 1755069 1755074) (-1057 "RNG.spad" 1753803 1753812 1754058 1754063) (-1056 "RMODULE.spad" 1753568 1753579 1753793 1753798) (-1055 "RMCAT2.spad" 1752976 1753033 1753558 1753563) (-1054 "RMATRIX.spad" 1751800 1751819 1752143 1752182) (-1053 "RMATCAT.spad" 1747333 1747364 1751756 1751795) (-1052 "RMATCAT.spad" 1742756 1742789 1747181 1747186) (-1051 "RLINSET.spad" 1742150 1742161 1742746 1742751) (-1050 "RINTERP.spad" 1742038 1742058 1742140 1742145) (-1049 "RING.spad" 1741508 1741517 1742018 1742033) (-1048 "RING.spad" 1740986 1740997 1741498 1741503) (-1047 "RIDIST.spad" 1740370 1740379 1740976 1740981) (-1046 "RGCHAIN.spad" 1738949 1738965 1739855 1739882) (-1045 "RGBCSPC.spad" 1738730 1738742 1738939 1738944) (-1044 "RGBCMDL.spad" 1738260 1738272 1738720 1738725) (-1043 "RF.spad" 1735874 1735885 1738250 1738255) (-1042 "RFFACTOR.spad" 1735336 1735347 1735864 1735869) (-1041 "RFFACT.spad" 1735071 1735083 1735326 1735331) (-1040 "RFDIST.spad" 1734059 1734068 1735061 1735066) (-1039 "RETSOL.spad" 1733476 1733489 1734049 1734054) (-1038 "RETRACT.spad" 1732904 1732915 1733466 1733471) (-1037 "RETRACT.spad" 1732330 1732343 1732894 1732899) (-1036 "RETAST.spad" 1732142 1732151 1732320 1732325) (-1035 "RESULT.spad" 1730202 1730211 1730789 1730816) (-1034 "RESRING.spad" 1729549 1729596 1730140 1730197) (-1033 "RESLATC.spad" 1728873 1728884 1729539 1729544) (-1032 "REPSQ.spad" 1728602 1728613 1728863 1728868) (-1031 "REP.spad" 1726154 1726163 1728592 1728597) (-1030 "REPDB.spad" 1725859 1725870 1726144 1726149) (-1029 "REP2.spad" 1715431 1715442 1725701 1725706) (-1028 "REP1.spad" 1709421 1709432 1715381 1715386) (-1027 "REGSET.spad" 1707218 1707235 1709067 1709094) (-1026 "REF.spad" 1706547 1706558 1707173 1707178) (-1025 "REDORDER.spad" 1705723 1705740 1706537 1706542) (-1024 "RECLOS.spad" 1704506 1704526 1705210 1705303) (-1023 "REALSOLV.spad" 1703638 1703647 1704496 1704501) (-1022 "REAL.spad" 1703510 1703519 1703628 1703633) (-1021 "REAL0Q.spad" 1700792 1700807 1703500 1703505) (-1020 "REAL0.spad" 1697620 1697635 1700782 1700787) (-1019 "RDUCEAST.spad" 1697341 1697350 1697610 1697615) (-1018 "RDIV.spad" 1696992 1697017 1697331 1697336) (-1017 "RDIST.spad" 1696555 1696566 1696982 1696987) (-1016 "RDETRS.spad" 1695351 1695369 1696545 1696550) (-1015 "RDETR.spad" 1693458 1693476 1695341 1695346) (-1014 "RDEEFS.spad" 1692531 1692548 1693448 1693453) (-1013 "RDEEF.spad" 1691527 1691544 1692521 1692526) (-1012 "RCFIELD.spad" 1688713 1688722 1691429 1691522) (-1011 "RCFIELD.spad" 1685985 1685996 1688703 1688708) (-1010 "RCAGG.spad" 1683897 1683908 1685975 1685980) (-1009 "RCAGG.spad" 1681736 1681749 1683816 1683821) (-1008 "RATRET.spad" 1681096 1681107 1681726 1681731) (-1007 "RATFACT.spad" 1680788 1680800 1681086 1681091) (-1006 "RANDSRC.spad" 1680107 1680116 1680778 1680783) (-1005 "RADUTIL.spad" 1679861 1679870 1680097 1680102) (-1004 "RADIX.spad" 1676762 1676776 1678328 1678421) (-1003 "RADFF.spad" 1675175 1675212 1675294 1675450) (-1002 "RADCAT.spad" 1674768 1674777 1675165 1675170) (-1001 "RADCAT.spad" 1674359 1674370 1674758 1674763) (-1000 "QUEUE.spad" 1673701 1673712 1673966 1673993) (-999 "QUAT.spad" 1672283 1672293 1672625 1672690) (-998 "QUATCT2.spad" 1671902 1671920 1672273 1672278) (-997 "QUATCAT.spad" 1670067 1670077 1671832 1671897) (-996 "QUATCAT.spad" 1667983 1667995 1669750 1669755) (-995 "QUAGG.spad" 1666809 1666819 1667951 1667978) (-994 "QQUTAST.spad" 1666578 1666586 1666799 1666804) (-993 "QFORM.spad" 1666041 1666055 1666568 1666573) (-992 "QFCAT.spad" 1664744 1664754 1665943 1666036) (-991 "QFCAT.spad" 1663038 1663050 1664239 1664244) (-990 "QFCAT2.spad" 1662729 1662745 1663028 1663033) (-989 "QEQUAT.spad" 1662286 1662294 1662719 1662724) (-988 "QCMPACK.spad" 1657033 1657052 1662276 1662281) (-987 "QALGSET.spad" 1653108 1653140 1656947 1656952) (-986 "QALGSET2.spad" 1651104 1651122 1653098 1653103) (-985 "PWFFINTB.spad" 1648414 1648435 1651094 1651099) (-984 "PUSHVAR.spad" 1647743 1647762 1648404 1648409) (-983 "PTRANFN.spad" 1643869 1643879 1647733 1647738) (-982 "PTPACK.spad" 1640957 1640967 1643859 1643864) (-981 "PTFUNC2.spad" 1640778 1640792 1640947 1640952) (-980 "PTCAT.spad" 1640027 1640037 1640746 1640773) (-979 "PSQFR.spad" 1639334 1639358 1640017 1640022) (-978 "PSEUDLIN.spad" 1638192 1638202 1639324 1639329) (-977 "PSETPK.spad" 1623625 1623641 1638070 1638075) (-976 "PSETCAT.spad" 1617545 1617568 1623605 1623620) (-975 "PSETCAT.spad" 1611439 1611464 1617501 1617506) (-974 "PSCURVE.spad" 1610422 1610430 1611429 1611434) (-973 "PSCAT.spad" 1609189 1609218 1610320 1610417) (-972 "PSCAT.spad" 1608046 1608077 1609179 1609184) (-971 "PRTITION.spad" 1606991 1606999 1608036 1608041) (-970 "PRTDAST.spad" 1606710 1606718 1606981 1606986) (-969 "PRS.spad" 1596272 1596289 1606666 1606671) (-968 "PRQAGG.spad" 1595703 1595713 1596240 1596267) (-967 "PROPLOG.spad" 1594998 1595006 1595693 1595698) (-966 "PROPFRML.spad" 1593806 1593817 1594988 1594993) (-965 "PROPERTY.spad" 1593292 1593300 1593796 1593801) (-964 "PRODUCT.spad" 1590972 1590984 1591258 1591313) (-963 "PR.spad" 1589358 1589370 1590063 1590190) (-962 "PRINT.spad" 1589110 1589118 1589348 1589353) (-961 "PRIMES.spad" 1587361 1587371 1589100 1589105) (-960 "PRIMELT.spad" 1585342 1585356 1587351 1587356) (-959 "PRIMCAT.spad" 1584965 1584973 1585332 1585337) (-958 "PRIMARR.spad" 1583970 1583980 1584148 1584175) (-957 "PRIMARR2.spad" 1582693 1582705 1583960 1583965) (-956 "PREASSOC.spad" 1582065 1582077 1582683 1582688) (-955 "PPCURVE.spad" 1581202 1581210 1582055 1582060) (-954 "PORTNUM.spad" 1580977 1580985 1581192 1581197) (-953 "POLYROOT.spad" 1579806 1579828 1580933 1580938) (-952 "POLY.spad" 1577139 1577149 1577656 1577783) (-951 "POLYLIFT.spad" 1576400 1576423 1577129 1577134) (-950 "POLYCATQ.spad" 1574502 1574524 1576390 1576395) (-949 "POLYCAT.spad" 1567908 1567929 1574370 1574497) (-948 "POLYCAT.spad" 1560652 1560675 1567116 1567121) (-947 "POLY2UP.spad" 1560100 1560114 1560642 1560647) (-946 "POLY2.spad" 1559695 1559707 1560090 1560095) (-945 "POLUTIL.spad" 1558636 1558665 1559651 1559656) (-944 "POLTOPOL.spad" 1557384 1557399 1558626 1558631) (-943 "POINT.spad" 1556222 1556232 1556309 1556336) (-942 "PNTHEORY.spad" 1552888 1552896 1556212 1556217) (-941 "PMTOOLS.spad" 1551645 1551659 1552878 1552883) (-940 "PMSYM.spad" 1551190 1551200 1551635 1551640) (-939 "PMQFCAT.spad" 1550777 1550791 1551180 1551185) (-938 "PMPRED.spad" 1550246 1550260 1550767 1550772) (-937 "PMPREDFS.spad" 1549690 1549712 1550236 1550241) (-936 "PMPLCAT.spad" 1548760 1548778 1549622 1549627) (-935 "PMLSAGG.spad" 1548341 1548355 1548750 1548755) (-934 "PMKERNEL.spad" 1547908 1547920 1548331 1548336) (-933 "PMINS.spad" 1547484 1547494 1547898 1547903) (-932 "PMFS.spad" 1547057 1547075 1547474 1547479) (-931 "PMDOWN.spad" 1546343 1546357 1547047 1547052) (-930 "PMASS.spad" 1545351 1545359 1546333 1546338) (-929 "PMASSFS.spad" 1544316 1544332 1545341 1545346) (-928 "PLOTTOOL.spad" 1544096 1544104 1544306 1544311) (-927 "PLOT.spad" 1538927 1538935 1544086 1544091) (-926 "PLOT3D.spad" 1535347 1535355 1538917 1538922) (-925 "PLOT1.spad" 1534488 1534498 1535337 1535342) (-924 "PLEQN.spad" 1521704 1521731 1534478 1534483) (-923 "PINTERP.spad" 1521320 1521339 1521694 1521699) (-922 "PINTERPA.spad" 1521102 1521118 1521310 1521315) (-921 "PI.spad" 1520709 1520717 1521076 1521097) (-920 "PID.spad" 1519665 1519673 1520635 1520704) (-919 "PICOERCE.spad" 1519322 1519332 1519655 1519660) (-918 "PGROEB.spad" 1517919 1517933 1519312 1519317) (-917 "PGE.spad" 1509172 1509180 1517909 1517914) (-916 "PGCD.spad" 1508054 1508071 1509162 1509167) (-915 "PFRPAC.spad" 1507197 1507207 1508044 1508049) (-914 "PFR.spad" 1503854 1503864 1507099 1507192) (-913 "PFOTOOLS.spad" 1503112 1503128 1503844 1503849) (-912 "PFOQ.spad" 1502482 1502500 1503102 1503107) (-911 "PFO.spad" 1501901 1501928 1502472 1502477) (-910 "PF.spad" 1501475 1501487 1501706 1501799) (-909 "PFECAT.spad" 1499141 1499149 1501401 1501470) (-908 "PFECAT.spad" 1496835 1496845 1499097 1499102) (-907 "PFBRU.spad" 1494705 1494717 1496825 1496830) (-906 "PFBR.spad" 1492243 1492266 1494695 1494700) (-905 "PERM.spad" 1487924 1487934 1492073 1492088) (-904 "PERMGRP.spad" 1482660 1482670 1487914 1487919) (-903 "PERMCAT.spad" 1481212 1481222 1482640 1482655) (-902 "PERMAN.spad" 1479744 1479758 1481202 1481207) (-901 "PENDTREE.spad" 1479083 1479093 1479373 1479378) (-900 "PDRING.spad" 1477574 1477584 1479063 1479078) (-899 "PDRING.spad" 1476073 1476085 1477564 1477569) (-898 "PDEPROB.spad" 1475088 1475096 1476063 1476068) (-897 "PDEPACK.spad" 1469090 1469098 1475078 1475083) (-896 "PDECOMP.spad" 1468552 1468569 1469080 1469085) (-895 "PDECAT.spad" 1466906 1466914 1468542 1468547) (-894 "PCOMP.spad" 1466757 1466770 1466896 1466901) (-893 "PBWLB.spad" 1465339 1465356 1466747 1466752) (-892 "PATTERN.spad" 1459770 1459780 1465329 1465334) (-891 "PATTERN2.spad" 1459506 1459518 1459760 1459765) (-890 "PATTERN1.spad" 1457808 1457824 1459496 1459501) (-889 "PATRES.spad" 1455355 1455367 1457798 1457803) (-888 "PATRES2.spad" 1455017 1455031 1455345 1455350) (-887 "PATMATCH.spad" 1453174 1453205 1454725 1454730) (-886 "PATMAB.spad" 1452599 1452609 1453164 1453169) (-885 "PATLRES.spad" 1451683 1451697 1452589 1452594) (-884 "PATAB.spad" 1451447 1451457 1451673 1451678) (-883 "PARTPERM.spad" 1448809 1448817 1451437 1451442) (-882 "PARSURF.spad" 1448237 1448265 1448799 1448804) (-881 "PARSU2.spad" 1448032 1448048 1448227 1448232) (-880 "script-parser.spad" 1447552 1447560 1448022 1448027) (-879 "PARSCURV.spad" 1446980 1447008 1447542 1447547) (-878 "PARSC2.spad" 1446769 1446785 1446970 1446975) (-877 "PARPCURV.spad" 1446227 1446255 1446759 1446764) (-876 "PARPC2.spad" 1446016 1446032 1446217 1446222) (-875 "PAN2EXPR.spad" 1445428 1445436 1446006 1446011) (-874 "PALETTE.spad" 1444398 1444406 1445418 1445423) (-873 "PAIR.spad" 1443381 1443394 1443986 1443991) (-872 "PADICRC.spad" 1440711 1440729 1441886 1441979) (-871 "PADICRAT.spad" 1438726 1438738 1438947 1439040) (-870 "PADIC.spad" 1438421 1438433 1438652 1438721) (-869 "PADICCT.spad" 1436962 1436974 1438347 1438416) (-868 "PADEPAC.spad" 1435641 1435660 1436952 1436957) (-867 "PADE.spad" 1434381 1434397 1435631 1435636) (-866 "OWP.spad" 1433621 1433651 1434239 1434306) (-865 "OVERSET.spad" 1433194 1433202 1433611 1433616) (-864 "OVAR.spad" 1432975 1432998 1433184 1433189) (-863 "OUT.spad" 1432059 1432067 1432965 1432970) (-862 "OUTFORM.spad" 1421355 1421363 1432049 1432054) (-861 "OUTBFILE.spad" 1420773 1420781 1421345 1421350) (-860 "OUTBCON.spad" 1419771 1419779 1420763 1420768) (-859 "OUTBCON.spad" 1418767 1418777 1419761 1419766) (-858 "OSI.spad" 1418242 1418250 1418757 1418762) (-857 "OSGROUP.spad" 1418160 1418168 1418232 1418237) (-856 "ORTHPOL.spad" 1416621 1416631 1418077 1418082) (-855 "OREUP.spad" 1416074 1416102 1416301 1416340) (-854 "ORESUP.spad" 1415373 1415397 1415754 1415793) (-853 "OREPCTO.spad" 1413192 1413204 1415293 1415298) (-852 "OREPCAT.spad" 1407249 1407259 1413148 1413187) (-851 "OREPCAT.spad" 1401196 1401208 1407097 1407102) (-850 "ORDSET.spad" 1400362 1400370 1401186 1401191) (-849 "ORDSET.spad" 1399526 1399536 1400352 1400357) (-848 "ORDRING.spad" 1398916 1398924 1399506 1399521) (-847 "ORDRING.spad" 1398314 1398324 1398906 1398911) (-846 "ORDMON.spad" 1398169 1398177 1398304 1398309) (-845 "ORDFUNS.spad" 1397295 1397311 1398159 1398164) (-844 "ORDFIN.spad" 1397115 1397123 1397285 1397290) (-843 "ORDCOMP.spad" 1395580 1395590 1396662 1396691) (-842 "ORDCOMP2.spad" 1394865 1394877 1395570 1395575) (-841 "OPTPROB.spad" 1393503 1393511 1394855 1394860) (-840 "OPTPACK.spad" 1385888 1385896 1393493 1393498) (-839 "OPTCAT.spad" 1383563 1383571 1385878 1385883) (-838 "OPSIG.spad" 1383215 1383223 1383553 1383558) (-837 "OPQUERY.spad" 1382764 1382772 1383205 1383210) (-836 "OP.spad" 1382506 1382516 1382586 1382653) (-835 "OPERCAT.spad" 1381970 1381980 1382496 1382501) (-834 "OPERCAT.spad" 1381432 1381444 1381960 1381965) (-833 "ONECOMP.spad" 1380177 1380187 1380979 1381008) (-832 "ONECOMP2.spad" 1379595 1379607 1380167 1380172) (-831 "OMSERVER.spad" 1378597 1378605 1379585 1379590) (-830 "OMSAGG.spad" 1378385 1378395 1378553 1378592) (-829 "OMPKG.spad" 1376997 1377005 1378375 1378380) (-828 "OM.spad" 1375962 1375970 1376987 1376992) (-827 "OMLO.spad" 1375387 1375399 1375848 1375887) (-826 "OMEXPR.spad" 1375221 1375231 1375377 1375382) (-825 "OMERR.spad" 1374764 1374772 1375211 1375216) (-824 "OMERRK.spad" 1373798 1373806 1374754 1374759) (-823 "OMENC.spad" 1373142 1373150 1373788 1373793) (-822 "OMDEV.spad" 1367431 1367439 1373132 1373137) (-821 "OMCONN.spad" 1366840 1366848 1367421 1367426) (-820 "OINTDOM.spad" 1366603 1366611 1366766 1366835) (-819 "OFMONOID.spad" 1362790 1362800 1366593 1366598) (-818 "ODVAR.spad" 1362051 1362061 1362780 1362785) (-817 "ODR.spad" 1361695 1361721 1361863 1362012) (-816 "ODPOL.spad" 1359077 1359087 1359417 1359544) (-815 "ODP.spad" 1348924 1348944 1349297 1349428) (-814 "ODETOOLS.spad" 1347507 1347526 1348914 1348919) (-813 "ODESYS.spad" 1345157 1345174 1347497 1347502) (-812 "ODERTRIC.spad" 1341098 1341115 1345114 1345119) (-811 "ODERED.spad" 1340485 1340509 1341088 1341093) (-810 "ODERAT.spad" 1338036 1338053 1340475 1340480) (-809 "ODEPRRIC.spad" 1334927 1334949 1338026 1338031) (-808 "ODEPROB.spad" 1334184 1334192 1334917 1334922) (-807 "ODEPRIM.spad" 1331458 1331480 1334174 1334179) (-806 "ODEPAL.spad" 1330834 1330858 1331448 1331453) (-805 "ODEPACK.spad" 1317436 1317444 1330824 1330829) (-804 "ODEINT.spad" 1316867 1316883 1317426 1317431) (-803 "ODEIFTBL.spad" 1314262 1314270 1316857 1316862) (-802 "ODEEF.spad" 1309629 1309645 1314252 1314257) (-801 "ODECONST.spad" 1309148 1309166 1309619 1309624) (-800 "ODECAT.spad" 1307744 1307752 1309138 1309143) (-799 "OCT.spad" 1305882 1305892 1306598 1306637) (-798 "OCTCT2.spad" 1305526 1305547 1305872 1305877) (-797 "OC.spad" 1303300 1303310 1305482 1305521) (-796 "OC.spad" 1300799 1300811 1302983 1302988) (-795 "OCAMON.spad" 1300647 1300655 1300789 1300794) (-794 "OASGP.spad" 1300462 1300470 1300637 1300642) (-793 "OAMONS.spad" 1299982 1299990 1300452 1300457) (-792 "OAMON.spad" 1299843 1299851 1299972 1299977) (-791 "OAGROUP.spad" 1299705 1299713 1299833 1299838) (-790 "NUMTUBE.spad" 1299292 1299308 1299695 1299700) (-789 "NUMQUAD.spad" 1287154 1287162 1299282 1299287) (-788 "NUMODE.spad" 1278290 1278298 1287144 1287149) (-787 "NUMINT.spad" 1275848 1275856 1278280 1278285) (-786 "NUMFMT.spad" 1274688 1274696 1275838 1275843) (-785 "NUMERIC.spad" 1266760 1266770 1274493 1274498) (-784 "NTSCAT.spad" 1265262 1265278 1266728 1266755) (-783 "NTPOLFN.spad" 1264807 1264817 1265179 1265184) (-782 "NSUP.spad" 1257853 1257863 1262393 1262546) (-781 "NSUP2.spad" 1257245 1257257 1257843 1257848) (-780 "NSMP.spad" 1253476 1253495 1253784 1253911) (-779 "NREP.spad" 1251848 1251862 1253466 1253471) (-778 "NPCOEF.spad" 1251094 1251114 1251838 1251843) (-777 "NORMRETR.spad" 1250692 1250731 1251084 1251089) (-776 "NORMPK.spad" 1248594 1248613 1250682 1250687) (-775 "NORMMA.spad" 1248282 1248308 1248584 1248589) (-774 "NONE.spad" 1248023 1248031 1248272 1248277) (-773 "NONE1.spad" 1247699 1247709 1248013 1248018) (-772 "NODE1.spad" 1247168 1247184 1247689 1247694) (-771 "NNI.spad" 1246055 1246063 1247142 1247163) (-770 "NLINSOL.spad" 1244677 1244687 1246045 1246050) (-769 "NIPROB.spad" 1243218 1243226 1244667 1244672) (-768 "NFINTBAS.spad" 1240678 1240695 1243208 1243213) (-767 "NETCLT.spad" 1240652 1240663 1240668 1240673) (-766 "NCODIV.spad" 1238850 1238866 1240642 1240647) (-765 "NCNTFRAC.spad" 1238492 1238506 1238840 1238845) (-764 "NCEP.spad" 1236652 1236666 1238482 1238487) (-763 "NASRING.spad" 1236248 1236256 1236642 1236647) (-762 "NASRING.spad" 1235842 1235852 1236238 1236243) (-761 "NARNG.spad" 1235186 1235194 1235832 1235837) (-760 "NARNG.spad" 1234528 1234538 1235176 1235181) (-759 "NAGSP.spad" 1233601 1233609 1234518 1234523) (-758 "NAGS.spad" 1223126 1223134 1233591 1233596) (-757 "NAGF07.spad" 1221519 1221527 1223116 1223121) (-756 "NAGF04.spad" 1215751 1215759 1221509 1221514) (-755 "NAGF02.spad" 1209560 1209568 1215741 1215746) (-754 "NAGF01.spad" 1205163 1205171 1209550 1209555) (-753 "NAGE04.spad" 1198623 1198631 1205153 1205158) (-752 "NAGE02.spad" 1188965 1188973 1198613 1198618) (-751 "NAGE01.spad" 1184849 1184857 1188955 1188960) (-750 "NAGD03.spad" 1182769 1182777 1184839 1184844) (-749 "NAGD02.spad" 1175300 1175308 1182759 1182764) (-748 "NAGD01.spad" 1169413 1169421 1175290 1175295) (-747 "NAGC06.spad" 1165200 1165208 1169403 1169408) (-746 "NAGC05.spad" 1163669 1163677 1165190 1165195) (-745 "NAGC02.spad" 1162924 1162932 1163659 1163664) (-744 "NAALG.spad" 1162459 1162469 1162892 1162919) (-743 "NAALG.spad" 1162014 1162026 1162449 1162454) (-742 "MULTSQFR.spad" 1158972 1158989 1162004 1162009) (-741 "MULTFACT.spad" 1158355 1158372 1158962 1158967) (-740 "MTSCAT.spad" 1156389 1156410 1158253 1158350) (-739 "MTHING.spad" 1156046 1156056 1156379 1156384) (-738 "MSYSCMD.spad" 1155480 1155488 1156036 1156041) (-737 "MSET.spad" 1153422 1153432 1155186 1155225) (-736 "MSETAGG.spad" 1153267 1153277 1153390 1153417) (-735 "MRING.spad" 1150238 1150250 1152975 1153042) (-734 "MRF2.spad" 1149806 1149820 1150228 1150233) (-733 "MRATFAC.spad" 1149352 1149369 1149796 1149801) (-732 "MPRFF.spad" 1147382 1147401 1149342 1149347) (-731 "MPOLY.spad" 1144853 1144868 1145212 1145339) (-730 "MPCPF.spad" 1144117 1144136 1144843 1144848) (-729 "MPC3.spad" 1143932 1143972 1144107 1144112) (-728 "MPC2.spad" 1143574 1143607 1143922 1143927) (-727 "MONOTOOL.spad" 1141909 1141926 1143564 1143569) (-726 "MONOID.spad" 1141228 1141236 1141899 1141904) (-725 "MONOID.spad" 1140545 1140555 1141218 1141223) (-724 "MONOGEN.spad" 1139291 1139304 1140405 1140540) (-723 "MONOGEN.spad" 1138059 1138074 1139175 1139180) (-722 "MONADWU.spad" 1136073 1136081 1138049 1138054) (-721 "MONADWU.spad" 1134085 1134095 1136063 1136068) (-720 "MONAD.spad" 1133229 1133237 1134075 1134080) (-719 "MONAD.spad" 1132371 1132381 1133219 1133224) (-718 "MOEBIUS.spad" 1131057 1131071 1132351 1132366) (-717 "MODULE.spad" 1130927 1130937 1131025 1131052) (-716 "MODULE.spad" 1130817 1130829 1130917 1130922) (-715 "MODRING.spad" 1130148 1130187 1130797 1130812) (-714 "MODOP.spad" 1128807 1128819 1129970 1130037) (-713 "MODMONOM.spad" 1128536 1128554 1128797 1128802) (-712 "MODMON.spad" 1125331 1125347 1126050 1126203) (-711 "MODFIELD.spad" 1124689 1124728 1125233 1125326) (-710 "MMLFORM.spad" 1123549 1123557 1124679 1124684) (-709 "MMAP.spad" 1123289 1123323 1123539 1123544) (-708 "MLO.spad" 1121716 1121726 1123245 1123284) (-707 "MLIFT.spad" 1120288 1120305 1121706 1121711) (-706 "MKUCFUNC.spad" 1119821 1119839 1120278 1120283) (-705 "MKRECORD.spad" 1119423 1119436 1119811 1119816) (-704 "MKFUNC.spad" 1118804 1118814 1119413 1119418) (-703 "MKFLCFN.spad" 1117760 1117770 1118794 1118799) (-702 "MKBCFUNC.spad" 1117245 1117263 1117750 1117755) (-701 "MINT.spad" 1116684 1116692 1117147 1117240) (-700 "MHROWRED.spad" 1115185 1115195 1116674 1116679) (-699 "MFLOAT.spad" 1113701 1113709 1115075 1115180) (-698 "MFINFACT.spad" 1113101 1113123 1113691 1113696) (-697 "MESH.spad" 1110833 1110841 1113091 1113096) (-696 "MDDFACT.spad" 1109026 1109036 1110823 1110828) (-695 "MDAGG.spad" 1108313 1108323 1109006 1109021) (-694 "MCMPLX.spad" 1104324 1104332 1104938 1105139) (-693 "MCDEN.spad" 1103532 1103544 1104314 1104319) (-692 "MCALCFN.spad" 1100634 1100660 1103522 1103527) (-691 "MAYBE.spad" 1099918 1099929 1100624 1100629) (-690 "MATSTOR.spad" 1097194 1097204 1099908 1099913) (-689 "MATRIX.spad" 1095898 1095908 1096382 1096409) (-688 "MATLIN.spad" 1093224 1093248 1095782 1095787) (-687 "MATCAT.spad" 1084809 1084831 1093192 1093219) (-686 "MATCAT.spad" 1076266 1076290 1084651 1084656) (-685 "MATCAT2.spad" 1075534 1075582 1076256 1076261) (-684 "MAPPKG3.spad" 1074433 1074447 1075524 1075529) (-683 "MAPPKG2.spad" 1073767 1073779 1074423 1074428) (-682 "MAPPKG1.spad" 1072585 1072595 1073757 1073762) (-681 "MAPPAST.spad" 1071898 1071906 1072575 1072580) (-680 "MAPHACK3.spad" 1071706 1071720 1071888 1071893) (-679 "MAPHACK2.spad" 1071471 1071483 1071696 1071701) (-678 "MAPHACK1.spad" 1071101 1071111 1071461 1071466) (-677 "MAGMA.spad" 1068891 1068908 1071091 1071096) (-676 "MACROAST.spad" 1068470 1068478 1068881 1068886) (-675 "M3D.spad" 1066166 1066176 1067848 1067853) (-674 "LZSTAGG.spad" 1063394 1063404 1066156 1066161) (-673 "LZSTAGG.spad" 1060620 1060632 1063384 1063389) (-672 "LWORD.spad" 1057325 1057342 1060610 1060615) (-671 "LSTAST.spad" 1057109 1057117 1057315 1057320) (-670 "LSQM.spad" 1055335 1055349 1055733 1055784) (-669 "LSPP.spad" 1054868 1054885 1055325 1055330) (-668 "LSMP.spad" 1053708 1053736 1054858 1054863) (-667 "LSMP1.spad" 1051512 1051526 1053698 1053703) (-666 "LSAGG.spad" 1051181 1051191 1051480 1051507) (-665 "LSAGG.spad" 1050870 1050882 1051171 1051176) (-664 "LPOLY.spad" 1049824 1049843 1050726 1050795) (-663 "LPEFRAC.spad" 1049081 1049091 1049814 1049819) (-662 "LO.spad" 1048482 1048496 1049015 1049042) (-661 "LOGIC.spad" 1048084 1048092 1048472 1048477) (-660 "LOGIC.spad" 1047684 1047694 1048074 1048079) (-659 "LODOOPS.spad" 1046602 1046614 1047674 1047679) (-658 "LODO.spad" 1045986 1046002 1046282 1046321) (-657 "LODOF.spad" 1045030 1045047 1045943 1045948) (-656 "LODOCAT.spad" 1043688 1043698 1044986 1045025) (-655 "LODOCAT.spad" 1042344 1042356 1043644 1043649) (-654 "LODO2.spad" 1041617 1041629 1042024 1042063) (-653 "LODO1.spad" 1041017 1041027 1041297 1041336) (-652 "LODEEF.spad" 1039789 1039807 1041007 1041012) (-651 "LNAGG.spad" 1035591 1035601 1039779 1039784) (-650 "LNAGG.spad" 1031357 1031369 1035547 1035552) (-649 "LMOPS.spad" 1028093 1028110 1031347 1031352) (-648 "LMODULE.spad" 1027861 1027871 1028083 1028088) (-647 "LMDICT.spad" 1027144 1027154 1027412 1027439) (-646 "LLINSET.spad" 1026541 1026551 1027134 1027139) (-645 "LITERAL.spad" 1026447 1026458 1026531 1026536) (-644 "LIST.spad" 1024165 1024175 1025594 1025621) (-643 "LIST3.spad" 1023456 1023470 1024155 1024160) (-642 "LIST2.spad" 1022096 1022108 1023446 1023451) (-641 "LIST2MAP.spad" 1018973 1018985 1022086 1022091) (-640 "LINSET.spad" 1018595 1018605 1018963 1018968) (-639 "LINEXP.spad" 1018027 1018037 1018575 1018590) (-638 "LINDEP.spad" 1016804 1016816 1017939 1017944) (-637 "LIMITRF.spad" 1014718 1014728 1016794 1016799) (-636 "LIMITPS.spad" 1013601 1013614 1014708 1014713) (-635 "LIE.spad" 1011615 1011627 1012891 1013036) (-634 "LIECAT.spad" 1011091 1011101 1011541 1011610) (-633 "LIECAT.spad" 1010595 1010607 1011047 1011052) (-632 "LIB.spad" 1008643 1008651 1009254 1009269) (-631 "LGROBP.spad" 1005996 1006015 1008633 1008638) (-630 "LF.spad" 1004915 1004931 1005986 1005991) (-629 "LFCAT.spad" 1003934 1003942 1004905 1004910) (-628 "LEXTRIPK.spad" 999437 999452 1003924 1003929) (-627 "LEXP.spad" 997440 997467 999417 999432) (-626 "LETAST.spad" 997139 997147 997430 997435) (-625 "LEADCDET.spad" 995523 995540 997129 997134) (-624 "LAZM3PK.spad" 994227 994249 995513 995518) (-623 "LAUPOL.spad" 992916 992929 993820 993889) (-622 "LAPLACE.spad" 992489 992505 992906 992911) (-621 "LA.spad" 991929 991943 992411 992450) (-620 "LALG.spad" 991705 991715 991909 991924) (-619 "LALG.spad" 991489 991501 991695 991700) (-618 "KVTFROM.spad" 991224 991234 991479 991484) (-617 "KTVLOGIC.spad" 990736 990744 991214 991219) (-616 "KRCFROM.spad" 990474 990484 990726 990731) (-615 "KOVACIC.spad" 989187 989204 990464 990469) (-614 "KONVERT.spad" 988909 988919 989177 989182) (-613 "KOERCE.spad" 988646 988656 988899 988904) (-612 "KERNEL.spad" 987265 987275 988430 988435) (-611 "KERNEL2.spad" 986968 986980 987255 987260) (-610 "KDAGG.spad" 986071 986093 986948 986963) (-609 "KDAGG.spad" 985182 985206 986061 986066) (-608 "KAFILE.spad" 984145 984161 984380 984407) (-607 "JORDAN.spad" 981972 981984 983435 983580) (-606 "JOINAST.spad" 981666 981674 981962 981967) (-605 "JAVACODE.spad" 981532 981540 981656 981661) (-604 "IXAGG.spad" 979655 979679 981522 981527) (-603 "IXAGG.spad" 977633 977659 979502 979507) (-602 "IVECTOR.spad" 976403 976418 976558 976585) (-601 "ITUPLE.spad" 975548 975558 976393 976398) (-600 "ITRIGMNP.spad" 974359 974378 975538 975543) (-599 "ITFUN3.spad" 973853 973867 974349 974354) (-598 "ITFUN2.spad" 973583 973595 973843 973848) (-597 "ITAYLOR.spad" 971375 971390 973419 973544) (-596 "ISUPS.spad" 963786 963801 970349 970446) (-595 "ISUMP.spad" 963283 963299 963776 963781) (-594 "ISTRING.spad" 962286 962299 962452 962479) (-593 "ISAST.spad" 962005 962013 962276 962281) (-592 "IRURPK.spad" 960718 960737 961995 962000) (-591 "IRSN.spad" 958678 958686 960708 960713) (-590 "IRRF2F.spad" 957153 957163 958634 958639) (-589 "IRREDFFX.spad" 956754 956765 957143 957148) (-588 "IROOT.spad" 955085 955095 956744 956749) (-587 "IR.spad" 952874 952888 954940 954967) (-586 "IR2.spad" 951894 951910 952864 952869) (-585 "IR2F.spad" 951094 951110 951884 951889) (-584 "IPRNTPK.spad" 950854 950862 951084 951089) (-583 "IPF.spad" 950419 950431 950659 950752) (-582 "IPADIC.spad" 950180 950206 950345 950414) (-581 "IP4ADDR.spad" 949737 949745 950170 950175) (-580 "IOMODE.spad" 949358 949366 949727 949732) (-579 "IOBFILE.spad" 948719 948727 949348 949353) (-578 "IOBCON.spad" 948584 948592 948709 948714) (-577 "INVLAPLA.spad" 948229 948245 948574 948579) (-576 "INTTR.spad" 941475 941492 948219 948224) (-575 "INTTOOLS.spad" 939186 939202 941049 941054) (-574 "INTSLPE.spad" 938492 938500 939176 939181) (-573 "INTRVL.spad" 938058 938068 938406 938487) (-572 "INTRF.spad" 936422 936436 938048 938053) (-571 "INTRET.spad" 935854 935864 936412 936417) (-570 "INTRAT.spad" 934529 934546 935844 935849) (-569 "INTPM.spad" 932892 932908 934172 934177) (-568 "INTPAF.spad" 930660 930678 932824 932829) (-567 "INTPACK.spad" 920970 920978 930650 930655) (-566 "INT.spad" 920331 920339 920824 920965) (-565 "INTHERTR.spad" 919597 919614 920321 920326) (-564 "INTHERAL.spad" 919263 919287 919587 919592) (-563 "INTHEORY.spad" 915676 915684 919253 919258) (-562 "INTG0.spad" 909139 909157 915608 915613) (-561 "INTFTBL.spad" 903168 903176 909129 909134) (-560 "INTFACT.spad" 902227 902237 903158 903163) (-559 "INTEF.spad" 900542 900558 902217 902222) (-558 "INTDOM.spad" 899157 899165 900468 900537) (-557 "INTDOM.spad" 897834 897844 899147 899152) (-556 "INTCAT.spad" 896087 896097 897748 897829) (-555 "INTBIT.spad" 895590 895598 896077 896082) (-554 "INTALG.spad" 894772 894799 895580 895585) (-553 "INTAF.spad" 894264 894280 894762 894767) (-552 "INTABL.spad" 892782 892813 892945 892972) (-551 "INT8.spad" 892662 892670 892772 892777) (-550 "INT64.spad" 892541 892549 892652 892657) (-549 "INT32.spad" 892420 892428 892531 892536) (-548 "INT16.spad" 892299 892307 892410 892415) (-547 "INS.spad" 889766 889774 892201 892294) (-546 "INS.spad" 887319 887329 889756 889761) (-545 "INPSIGN.spad" 886753 886766 887309 887314) (-544 "INPRODPF.spad" 885819 885838 886743 886748) (-543 "INPRODFF.spad" 884877 884901 885809 885814) (-542 "INNMFACT.spad" 883848 883865 884867 884872) (-541 "INMODGCD.spad" 883332 883362 883838 883843) (-540 "INFSP.spad" 881617 881639 883322 883327) (-539 "INFPROD0.spad" 880667 880686 881607 881612) (-538 "INFORM.spad" 877828 877836 880657 880662) (-537 "INFORM1.spad" 877453 877463 877818 877823) (-536 "INFINITY.spad" 877005 877013 877443 877448) (-535 "INETCLTS.spad" 876982 876990 876995 877000) (-534 "INEP.spad" 875514 875536 876972 876977) (-533 "INDE.spad" 875243 875260 875504 875509) (-532 "INCRMAPS.spad" 874664 874674 875233 875238) (-531 "INBFILE.spad" 873736 873744 874654 874659) (-530 "INBFF.spad" 869506 869517 873726 873731) (-529 "INBCON.spad" 867794 867802 869496 869501) (-528 "INBCON.spad" 866080 866090 867784 867789) (-527 "INAST.spad" 865741 865749 866070 866075) (-526 "IMPTAST.spad" 865449 865457 865731 865736) (-525 "IMATRIX.spad" 864394 864420 864906 864933) (-524 "IMATQF.spad" 863488 863532 864350 864355) (-523 "IMATLIN.spad" 862093 862117 863444 863449) (-522 "ILIST.spad" 860749 860764 861276 861303) (-521 "IIARRAY2.spad" 860137 860175 860356 860383) (-520 "IFF.spad" 859547 859563 859818 859911) (-519 "IFAST.spad" 859161 859169 859537 859542) (-518 "IFARRAY.spad" 856648 856663 858344 858371) (-517 "IFAMON.spad" 856510 856527 856604 856609) (-516 "IEVALAB.spad" 855899 855911 856500 856505) (-515 "IEVALAB.spad" 855286 855300 855889 855894) (-514 "IDPO.spad" 855084 855096 855276 855281) (-513 "IDPOAMS.spad" 854840 854852 855074 855079) (-512 "IDPOAM.spad" 854560 854572 854830 854835) (-511 "IDPC.spad" 853494 853506 854550 854555) (-510 "IDPAM.spad" 853239 853251 853484 853489) (-509 "IDPAG.spad" 852986 852998 853229 853234) (-508 "IDENT.spad" 852636 852644 852976 852981) (-507 "IDECOMP.spad" 849873 849891 852626 852631) (-506 "IDEAL.spad" 844796 844835 849808 849813) (-505 "ICDEN.spad" 843947 843963 844786 844791) (-504 "ICARD.spad" 843136 843144 843937 843942) (-503 "IBPTOOLS.spad" 841729 841746 843126 843131) (-502 "IBITS.spad" 840928 840941 841365 841392) (-501 "IBATOOL.spad" 837803 837822 840918 840923) (-500 "IBACHIN.spad" 836290 836305 837793 837798) (-499 "IARRAY2.spad" 835278 835304 835897 835924) (-498 "IARRAY1.spad" 834323 834338 834461 834488) (-497 "IAN.spad" 832536 832544 834139 834232) (-496 "IALGFACT.spad" 832137 832170 832526 832531) (-495 "HYPCAT.spad" 831561 831569 832127 832132) (-494 "HYPCAT.spad" 830983 830993 831551 831556) (-493 "HOSTNAME.spad" 830791 830799 830973 830978) (-492 "HOMOTOP.spad" 830534 830544 830781 830786) (-491 "HOAGG.spad" 827802 827812 830524 830529) (-490 "HOAGG.spad" 824845 824857 827569 827574) (-489 "HEXADEC.spad" 822947 822955 823312 823405) (-488 "HEUGCD.spad" 821962 821973 822937 822942) (-487 "HELLFDIV.spad" 821552 821576 821952 821957) (-486 "HEAP.spad" 820944 820954 821159 821186) (-485 "HEADAST.spad" 820475 820483 820934 820939) (-484 "HDP.spad" 810318 810334 810695 810826) (-483 "HDMP.spad" 807530 807545 808148 808275) (-482 "HB.spad" 805767 805775 807520 807525) (-481 "HASHTBL.spad" 804237 804268 804448 804475) (-480 "HASAST.spad" 803953 803961 804227 804232) (-479 "HACKPI.spad" 803436 803444 803855 803948) (-478 "GTSET.spad" 802375 802391 803082 803109) (-477 "GSTBL.spad" 800894 800929 801068 801083) (-476 "GSERIES.spad" 798061 798088 799026 799175) (-475 "GROUP.spad" 797330 797338 798041 798056) (-474 "GROUP.spad" 796607 796617 797320 797325) (-473 "GROEBSOL.spad" 795095 795116 796597 796602) (-472 "GRMOD.spad" 793666 793678 795085 795090) (-471 "GRMOD.spad" 792235 792249 793656 793661) (-470 "GRIMAGE.spad" 784840 784848 792225 792230) (-469 "GRDEF.spad" 783219 783227 784830 784835) (-468 "GRAY.spad" 781678 781686 783209 783214) (-467 "GRALG.spad" 780725 780737 781668 781673) (-466 "GRALG.spad" 779770 779784 780715 780720) (-465 "GPOLSET.spad" 779224 779247 779452 779479) (-464 "GOSPER.spad" 778489 778507 779214 779219) (-463 "GMODPOL.spad" 777627 777654 778457 778484) (-462 "GHENSEL.spad" 776696 776710 777617 777622) (-461 "GENUPS.spad" 772797 772810 776686 776691) (-460 "GENUFACT.spad" 772374 772384 772787 772792) (-459 "GENPGCD.spad" 771958 771975 772364 772369) (-458 "GENMFACT.spad" 771410 771429 771948 771953) (-457 "GENEEZ.spad" 769349 769362 771400 771405) (-456 "GDMP.spad" 766403 766420 767179 767306) (-455 "GCNAALG.spad" 760298 760325 766197 766264) (-454 "GCDDOM.spad" 759470 759478 760224 760293) (-453 "GCDDOM.spad" 758704 758714 759460 759465) (-452 "GB.spad" 756222 756260 758660 758665) (-451 "GBINTERN.spad" 752242 752280 756212 756217) (-450 "GBF.spad" 747999 748037 752232 752237) (-449 "GBEUCLID.spad" 745873 745911 747989 747994) (-448 "GAUSSFAC.spad" 745170 745178 745863 745868) (-447 "GALUTIL.spad" 743492 743502 745126 745131) (-446 "GALPOLYU.spad" 741938 741951 743482 743487) (-445 "GALFACTU.spad" 740103 740122 741928 741933) (-444 "GALFACT.spad" 730236 730247 740093 740098) (-443 "FVFUN.spad" 727259 727267 730226 730231) (-442 "FVC.spad" 726311 726319 727249 727254) (-441 "FUNDESC.spad" 725989 725997 726301 726306) (-440 "FUNCTION.spad" 725838 725850 725979 725984) (-439 "FT.spad" 724131 724139 725828 725833) (-438 "FTEM.spad" 723294 723302 724121 724126) (-437 "FSUPFACT.spad" 722194 722213 723230 723235) (-436 "FST.spad" 720280 720288 722184 722189) (-435 "FSRED.spad" 719758 719774 720270 720275) (-434 "FSPRMELT.spad" 718582 718598 719715 719720) (-433 "FSPECF.spad" 716659 716675 718572 718577) (-432 "FS.spad" 710721 710731 716434 716654) (-431 "FS.spad" 704561 704573 710276 710281) (-430 "FSINT.spad" 704219 704235 704551 704556) (-429 "FSERIES.spad" 703406 703418 704039 704138) (-428 "FSCINT.spad" 702719 702735 703396 703401) (-427 "FSAGG.spad" 701836 701846 702675 702714) (-426 "FSAGG.spad" 700915 700927 701756 701761) (-425 "FSAGG2.spad" 699614 699630 700905 700910) (-424 "FS2UPS.spad" 694097 694131 699604 699609) (-423 "FS2.spad" 693742 693758 694087 694092) (-422 "FS2EXPXP.spad" 692865 692888 693732 693737) (-421 "FRUTIL.spad" 691807 691817 692855 692860) (-420 "FR.spad" 685501 685511 690831 690900) (-419 "FRNAALG.spad" 680588 680598 685443 685496) (-418 "FRNAALG.spad" 675687 675699 680544 680549) (-417 "FRNAAF2.spad" 675141 675159 675677 675682) (-416 "FRMOD.spad" 674535 674565 675072 675077) (-415 "FRIDEAL.spad" 673730 673751 674515 674530) (-414 "FRIDEAL2.spad" 673332 673364 673720 673725) (-413 "FRETRCT.spad" 672843 672853 673322 673327) (-412 "FRETRCT.spad" 672220 672232 672701 672706) (-411 "FRAMALG.spad" 670548 670561 672176 672215) (-410 "FRAMALG.spad" 668908 668923 670538 670543) (-409 "FRAC.spad" 666007 666017 666410 666583) (-408 "FRAC2.spad" 665610 665622 665997 666002) (-407 "FR2.spad" 664944 664956 665600 665605) (-406 "FPS.spad" 661753 661761 664834 664939) (-405 "FPS.spad" 658590 658600 661673 661678) (-404 "FPC.spad" 657632 657640 658492 658585) (-403 "FPC.spad" 656760 656770 657622 657627) (-402 "FPATMAB.spad" 656522 656532 656750 656755) (-401 "FPARFRAC.spad" 654995 655012 656512 656517) (-400 "FORTRAN.spad" 653501 653544 654985 654990) (-399 "FORT.spad" 652430 652438 653491 653496) (-398 "FORTFN.spad" 649600 649608 652420 652425) (-397 "FORTCAT.spad" 649284 649292 649590 649595) (-396 "FORMULA.spad" 646748 646756 649274 649279) (-395 "FORMULA1.spad" 646227 646237 646738 646743) (-394 "FORDER.spad" 645918 645942 646217 646222) (-393 "FOP.spad" 645119 645127 645908 645913) (-392 "FNLA.spad" 644543 644565 645087 645114) (-391 "FNCAT.spad" 643130 643138 644533 644538) (-390 "FNAME.spad" 643022 643030 643120 643125) (-389 "FMTC.spad" 642820 642828 642948 643017) (-388 "FMONOID.spad" 639875 639885 642776 642781) (-387 "FM.spad" 639570 639582 639809 639836) (-386 "FMFUN.spad" 636600 636608 639560 639565) (-385 "FMC.spad" 635652 635660 636590 636595) (-384 "FMCAT.spad" 633306 633324 635620 635647) (-383 "FM1.spad" 632663 632675 633240 633267) (-382 "FLOATRP.spad" 630384 630398 632653 632658) (-381 "FLOAT.spad" 623672 623680 630250 630379) (-380 "FLOATCP.spad" 621089 621103 623662 623667) (-379 "FLINEXP.spad" 620801 620811 621069 621084) (-378 "FLINEXP.spad" 620467 620479 620737 620742) (-377 "FLASORT.spad" 619787 619799 620457 620462) (-376 "FLALG.spad" 617433 617452 619713 619782) (-375 "FLAGG.spad" 614451 614461 617413 617428) (-374 "FLAGG.spad" 611370 611382 614334 614339) (-373 "FLAGG2.spad" 610051 610067 611360 611365) (-372 "FINRALG.spad" 608080 608093 610007 610046) (-371 "FINRALG.spad" 606035 606050 607964 607969) (-370 "FINITE.spad" 605187 605195 606025 606030) (-369 "FINAALG.spad" 594168 594178 605129 605182) (-368 "FINAALG.spad" 583161 583173 594124 594129) (-367 "FILE.spad" 582744 582754 583151 583156) (-366 "FILECAT.spad" 581262 581279 582734 582739) (-365 "FIELD.spad" 580668 580676 581164 581257) (-364 "FIELD.spad" 580160 580170 580658 580663) (-363 "FGROUP.spad" 578769 578779 580140 580155) (-362 "FGLMICPK.spad" 577556 577571 578759 578764) (-361 "FFX.spad" 576931 576946 577272 577365) (-360 "FFSLPE.spad" 576420 576441 576921 576926) (-359 "FFPOLY.spad" 567672 567683 576410 576415) (-358 "FFPOLY2.spad" 566732 566749 567662 567667) (-357 "FFP.spad" 566129 566149 566448 566541) (-356 "FF.spad" 565577 565593 565810 565903) (-355 "FFNBX.spad" 564089 564109 565293 565386) (-354 "FFNBP.spad" 562602 562619 563805 563898) (-353 "FFNB.spad" 561067 561088 562283 562376) (-352 "FFINTBAS.spad" 558481 558500 561057 561062) (-351 "FFIELDC.spad" 556056 556064 558383 558476) (-350 "FFIELDC.spad" 553717 553727 556046 556051) (-349 "FFHOM.spad" 552465 552482 553707 553712) (-348 "FFF.spad" 549900 549911 552455 552460) (-347 "FFCGX.spad" 548747 548767 549616 549709) (-346 "FFCGP.spad" 547636 547656 548463 548556) (-345 "FFCG.spad" 546428 546449 547317 547410) (-344 "FFCAT.spad" 539455 539477 546267 546423) (-343 "FFCAT.spad" 532561 532585 539375 539380) (-342 "FFCAT2.spad" 532306 532346 532551 532556) (-341 "FEXPR.spad" 524015 524061 532062 532101) (-340 "FEVALAB.spad" 523721 523731 524005 524010) (-339 "FEVALAB.spad" 523212 523224 523498 523503) (-338 "FDIV.spad" 522654 522678 523202 523207) (-337 "FDIVCAT.spad" 520696 520720 522644 522649) (-336 "FDIVCAT.spad" 518736 518762 520686 520691) (-335 "FDIV2.spad" 518390 518430 518726 518731) (-334 "FCTRDATA.spad" 517422 517430 518380 518385) (-333 "FCPAK1.spad" 515975 515983 517412 517417) (-332 "FCOMP.spad" 515354 515364 515965 515970) (-331 "FC.spad" 505269 505277 515344 515349) (-330 "FAXF.spad" 498204 498218 505171 505264) (-329 "FAXF.spad" 491191 491207 498160 498165) (-328 "FARRAY.spad" 489337 489347 490374 490401) (-327 "FAMR.spad" 487457 487469 489235 489332) (-326 "FAMR.spad" 485561 485575 487341 487346) (-325 "FAMONOID.spad" 485211 485221 485515 485520) (-324 "FAMONC.spad" 483433 483445 485201 485206) (-323 "FAGROUP.spad" 483039 483049 483329 483356) (-322 "FACUTIL.spad" 481235 481252 483029 483034) (-321 "FACTFUNC.spad" 480411 480421 481225 481230) (-320 "EXPUPXS.spad" 477244 477267 478543 478692) (-319 "EXPRTUBE.spad" 474472 474480 477234 477239) (-318 "EXPRODE.spad" 471344 471360 474462 474467) (-317 "EXPR.spad" 466619 466629 467333 467740) (-316 "EXPR2UPS.spad" 462711 462724 466609 466614) (-315 "EXPR2.spad" 462414 462426 462701 462706) (-314 "EXPEXPAN.spad" 459352 459377 459986 460079) (-313 "EXIT.spad" 459023 459031 459342 459347) (-312 "EXITAST.spad" 458759 458767 459013 459018) (-311 "EVALCYC.spad" 458217 458231 458749 458754) (-310 "EVALAB.spad" 457781 457791 458207 458212) (-309 "EVALAB.spad" 457343 457355 457771 457776) (-308 "EUCDOM.spad" 454885 454893 457269 457338) (-307 "EUCDOM.spad" 452489 452499 454875 454880) (-306 "ESTOOLS.spad" 444329 444337 452479 452484) (-305 "ESTOOLS2.spad" 443930 443944 444319 444324) (-304 "ESTOOLS1.spad" 443615 443626 443920 443925) (-303 "ES.spad" 436162 436170 443605 443610) (-302 "ES.spad" 428615 428625 436060 436065) (-301 "ESCONT.spad" 425388 425396 428605 428610) (-300 "ESCONT1.spad" 425137 425149 425378 425383) (-299 "ES2.spad" 424632 424648 425127 425132) (-298 "ES1.spad" 424198 424214 424622 424627) (-297 "ERROR.spad" 421519 421527 424188 424193) (-296 "EQTBL.spad" 419991 420013 420200 420227) (-295 "EQ.spad" 414784 414794 417583 417695) (-294 "EQ2.spad" 414500 414512 414774 414779) (-293 "EP.spad" 410814 410824 414490 414495) (-292 "ENV.spad" 409466 409474 410804 410809) (-291 "ENTIRER.spad" 409134 409142 409410 409461) (-290 "EMR.spad" 408335 408376 409060 409129) (-289 "ELTAGG.spad" 406575 406594 408325 408330) (-288 "ELTAGG.spad" 404779 404800 406531 406536) (-287 "ELTAB.spad" 404226 404244 404769 404774) (-286 "ELFUTS.spad" 403605 403624 404216 404221) (-285 "ELEMFUN.spad" 403294 403302 403595 403600) (-284 "ELEMFUN.spad" 402981 402991 403284 403289) (-283 "ELAGG.spad" 400924 400934 402961 402976) (-282 "ELAGG.spad" 398804 398816 400843 400848) (-281 "ELABEXPR.spad" 397727 397735 398794 398799) (-280 "EFUPXS.spad" 394503 394533 397683 397688) (-279 "EFULS.spad" 391339 391362 394459 394464) (-278 "EFSTRUC.spad" 389294 389310 391329 391334) (-277 "EF.spad" 384060 384076 389284 389289) (-276 "EAB.spad" 382336 382344 384050 384055) (-275 "E04UCFA.spad" 381872 381880 382326 382331) (-274 "E04NAFA.spad" 381449 381457 381862 381867) (-273 "E04MBFA.spad" 381029 381037 381439 381444) (-272 "E04JAFA.spad" 380565 380573 381019 381024) (-271 "E04GCFA.spad" 380101 380109 380555 380560) (-270 "E04FDFA.spad" 379637 379645 380091 380096) (-269 "E04DGFA.spad" 379173 379181 379627 379632) (-268 "E04AGNT.spad" 375015 375023 379163 379168) (-267 "DVARCAT.spad" 371700 371710 375005 375010) (-266 "DVARCAT.spad" 368383 368395 371690 371695) (-265 "DSMP.spad" 365850 365864 366155 366282) (-264 "DROPT.spad" 359795 359803 365840 365845) (-263 "DROPT1.spad" 359458 359468 359785 359790) (-262 "DROPT0.spad" 354285 354293 359448 359453) (-261 "DRAWPT.spad" 352440 352448 354275 354280) (-260 "DRAW.spad" 345040 345053 352430 352435) (-259 "DRAWHACK.spad" 344348 344358 345030 345035) (-258 "DRAWCX.spad" 341790 341798 344338 344343) (-257 "DRAWCURV.spad" 341327 341342 341780 341785) (-256 "DRAWCFUN.spad" 330499 330507 341317 341322) (-255 "DQAGG.spad" 328667 328677 330467 330494) (-254 "DPOLCAT.spad" 324008 324024 328535 328662) (-253 "DPOLCAT.spad" 319435 319453 323964 323969) (-252 "DPMO.spad" 311661 311677 311799 312100) (-251 "DPMM.spad" 303900 303918 304025 304326) (-250 "DOMTMPLT.spad" 303560 303568 303890 303895) (-249 "DOMCTOR.spad" 303315 303323 303550 303555) (-248 "DOMAIN.spad" 302446 302454 303305 303310) (-247 "DMP.spad" 299704 299719 300276 300403) (-246 "DLP.spad" 299052 299062 299694 299699) (-245 "DLIST.spad" 297631 297641 298235 298262) (-244 "DLAGG.spad" 296042 296052 297621 297626) (-243 "DIVRING.spad" 295584 295592 295986 296037) (-242 "DIVRING.spad" 295170 295180 295574 295579) (-241 "DISPLAY.spad" 293350 293358 295160 295165) (-240 "DIRPROD.spad" 282930 282946 283570 283701) (-239 "DIRPROD2.spad" 281738 281756 282920 282925) (-238 "DIRPCAT.spad" 280680 280696 281602 281733) (-237 "DIRPCAT.spad" 279351 279369 280275 280280) (-236 "DIOSP.spad" 278176 278184 279341 279346) (-235 "DIOPS.spad" 277160 277170 278156 278171) (-234 "DIOPS.spad" 276118 276130 277116 277121) (-233 "DIFRING.spad" 275410 275418 276098 276113) (-232 "DIFRING.spad" 274710 274720 275400 275405) (-231 "DIFEXT.spad" 273869 273879 274690 274705) (-230 "DIFEXT.spad" 272945 272957 273768 273773) (-229 "DIAGG.spad" 272575 272585 272925 272940) (-228 "DIAGG.spad" 272213 272225 272565 272570) (-227 "DHMATRIX.spad" 270517 270527 271670 271697) (-226 "DFSFUN.spad" 263925 263933 270507 270512) (-225 "DFLOAT.spad" 260646 260654 263815 263920) (-224 "DFINTTLS.spad" 258855 258871 260636 260641) (-223 "DERHAM.spad" 256765 256797 258835 258850) (-222 "DEQUEUE.spad" 256083 256093 256372 256399) (-221 "DEGRED.spad" 255698 255712 256073 256078) (-220 "DEFINTRF.spad" 253223 253233 255688 255693) (-219 "DEFINTEF.spad" 251719 251735 253213 253218) (-218 "DEFAST.spad" 251087 251095 251709 251714) (-217 "DECIMAL.spad" 249193 249201 249554 249647) (-216 "DDFACT.spad" 246992 247009 249183 249188) (-215 "DBLRESP.spad" 246590 246614 246982 246987) (-214 "DBASE.spad" 245244 245254 246580 246585) (-213 "DATAARY.spad" 244706 244719 245234 245239) (-212 "D03FAFA.spad" 244534 244542 244696 244701) (-211 "D03EEFA.spad" 244354 244362 244524 244529) (-210 "D03AGNT.spad" 243434 243442 244344 244349) (-209 "D02EJFA.spad" 242896 242904 243424 243429) (-208 "D02CJFA.spad" 242374 242382 242886 242891) (-207 "D02BHFA.spad" 241864 241872 242364 242369) (-206 "D02BBFA.spad" 241354 241362 241854 241859) (-205 "D02AGNT.spad" 236158 236166 241344 241349) (-204 "D01WGTS.spad" 234477 234485 236148 236153) (-203 "D01TRNS.spad" 234454 234462 234467 234472) (-202 "D01GBFA.spad" 233976 233984 234444 234449) (-201 "D01FCFA.spad" 233498 233506 233966 233971) (-200 "D01ASFA.spad" 232966 232974 233488 233493) (-199 "D01AQFA.spad" 232412 232420 232956 232961) (-198 "D01APFA.spad" 231836 231844 232402 232407) (-197 "D01ANFA.spad" 231330 231338 231826 231831) (-196 "D01AMFA.spad" 230840 230848 231320 231325) (-195 "D01ALFA.spad" 230380 230388 230830 230835) (-194 "D01AKFA.spad" 229906 229914 230370 230375) (-193 "D01AJFA.spad" 229429 229437 229896 229901) (-192 "D01AGNT.spad" 225488 225496 229419 229424) (-191 "CYCLOTOM.spad" 224994 225002 225478 225483) (-190 "CYCLES.spad" 221826 221834 224984 224989) (-189 "CVMP.spad" 221243 221253 221816 221821) (-188 "CTRIGMNP.spad" 219733 219749 221233 221238) (-187 "CTOR.spad" 219424 219432 219723 219728) (-186 "CTORKIND.spad" 219027 219035 219414 219419) (-185 "CTORCAT.spad" 218276 218284 219017 219022) (-184 "CTORCAT.spad" 217523 217533 218266 218271) (-183 "CTORCALL.spad" 217103 217111 217513 217518) (-182 "CSTTOOLS.spad" 216346 216359 217093 217098) (-181 "CRFP.spad" 210050 210063 216336 216341) (-180 "CRCEAST.spad" 209770 209778 210040 210045) (-179 "CRAPACK.spad" 208813 208823 209760 209765) (-178 "CPMATCH.spad" 208313 208328 208738 208743) (-177 "CPIMA.spad" 208018 208037 208303 208308) (-176 "COORDSYS.spad" 202911 202921 208008 208013) (-175 "CONTOUR.spad" 202318 202326 202901 202906) (-174 "CONTFRAC.spad" 197930 197940 202220 202313) (-173 "CONDUIT.spad" 197688 197696 197920 197925) (-172 "COMRING.spad" 197362 197370 197626 197683) (-171 "COMPPROP.spad" 196876 196884 197352 197357) (-170 "COMPLPAT.spad" 196643 196658 196866 196871) (-169 "COMPLEX.spad" 190780 190790 191024 191285) (-168 "COMPLEX2.spad" 190493 190505 190770 190775) (-167 "COMPFACT.spad" 190095 190109 190483 190488) (-166 "COMPCAT.spad" 188163 188173 189829 190090) (-165 "COMPCAT.spad" 185959 185971 187627 187632) (-164 "COMMUPC.spad" 185705 185723 185949 185954) (-163 "COMMONOP.spad" 185238 185246 185695 185700) (-162 "COMM.spad" 185047 185055 185228 185233) (-161 "COMMAAST.spad" 184810 184818 185037 185042) (-160 "COMBOPC.spad" 183715 183723 184800 184805) (-159 "COMBINAT.spad" 182460 182470 183705 183710) (-158 "COMBF.spad" 179828 179844 182450 182455) (-157 "COLOR.spad" 178665 178673 179818 179823) (-156 "COLONAST.spad" 178331 178339 178655 178660) (-155 "CMPLXRT.spad" 178040 178057 178321 178326) (-154 "CLLCTAST.spad" 177702 177710 178030 178035) (-153 "CLIP.spad" 173794 173802 177692 177697) (-152 "CLIF.spad" 172433 172449 173750 173789) (-151 "CLAGG.spad" 168918 168928 172423 172428) (-150 "CLAGG.spad" 165274 165286 168781 168786) (-149 "CINTSLPE.spad" 164599 164612 165264 165269) (-148 "CHVAR.spad" 162677 162699 164589 164594) (-147 "CHARZ.spad" 162592 162600 162657 162672) (-146 "CHARPOL.spad" 162100 162110 162582 162587) (-145 "CHARNZ.spad" 161853 161861 162080 162095) (-144 "CHAR.spad" 159721 159729 161843 161848) (-143 "CFCAT.spad" 159037 159045 159711 159716) (-142 "CDEN.spad" 158195 158209 159027 159032) (-141 "CCLASS.spad" 156344 156352 157606 157645) (-140 "CATEGORY.spad" 155434 155442 156334 156339) (-139 "CATCTOR.spad" 155325 155333 155424 155429) (-138 "CATAST.spad" 154943 154951 155315 155320) (-137 "CASEAST.spad" 154657 154665 154933 154938) (-136 "CARTEN.spad" 149760 149784 154647 154652) (-135 "CARTEN2.spad" 149146 149173 149750 149755) (-134 "CARD.spad" 146435 146443 149120 149141) (-133 "CAPSLAST.spad" 146209 146217 146425 146430) (-132 "CACHSET.spad" 145831 145839 146199 146204) (-131 "CABMON.spad" 145384 145392 145821 145826) (-130 "BYTEORD.spad" 145059 145067 145374 145379) (-129 "BYTE.spad" 144484 144492 145049 145054) (-128 "BYTEBUF.spad" 142341 142349 143653 143680) (-127 "BTREE.spad" 141410 141420 141948 141975) (-126 "BTOURN.spad" 140413 140423 141017 141044) (-125 "BTCAT.spad" 139801 139811 140381 140408) (-124 "BTCAT.spad" 139209 139221 139791 139796) (-123 "BTAGG.spad" 138331 138339 139177 139204) (-122 "BTAGG.spad" 137473 137483 138321 138326) (-121 "BSTREE.spad" 136208 136218 137080 137107) (-120 "BRILL.spad" 134403 134414 136198 136203) (-119 "BRAGG.spad" 133327 133337 134393 134398) (-118 "BRAGG.spad" 132215 132227 133283 133288) (-117 "BPADICRT.spad" 130196 130208 130451 130544) (-116 "BPADIC.spad" 129860 129872 130122 130191) (-115 "BOUNDZRO.spad" 129516 129533 129850 129855) (-114 "BOP.spad" 124640 124648 129506 129511) (-113 "BOP1.spad" 122060 122070 124630 124635) (-112 "BOOLEAN.spad" 121492 121500 122050 122055) (-111 "BMODULE.spad" 121204 121216 121460 121487) (-110 "BITS.spad" 120623 120631 120840 120867) (-109 "BINDING.spad" 120034 120042 120613 120618) (-108 "BINARY.spad" 118145 118153 118501 118594) (-107 "BGAGG.spad" 117342 117352 118125 118140) (-106 "BGAGG.spad" 116547 116559 117332 117337) (-105 "BFUNCT.spad" 116111 116119 116527 116542) (-104 "BEZOUT.spad" 115245 115272 116061 116066) (-103 "BBTREE.spad" 112064 112074 114852 114879) (-102 "BASTYPE.spad" 111736 111744 112054 112059) (-101 "BASTYPE.spad" 111406 111416 111726 111731) (-100 "BALFACT.spad" 110845 110858 111396 111401) (-99 "AUTOMOR.spad" 110292 110301 110825 110840) (-98 "ATTREG.spad" 107011 107018 110044 110287) (-97 "ATTRBUT.spad" 103034 103041 106991 107006) (-96 "ATTRAST.spad" 102751 102758 103024 103029) (-95 "ATRIG.spad" 102221 102228 102741 102746) (-94 "ATRIG.spad" 101689 101698 102211 102216) (-93 "ASTCAT.spad" 101593 101600 101679 101684) (-92 "ASTCAT.spad" 101495 101504 101583 101588) (-91 "ASTACK.spad" 100828 100837 101102 101129) (-90 "ASSOCEQ.spad" 99628 99639 100784 100789) (-89 "ASP9.spad" 98709 98722 99618 99623) (-88 "ASP8.spad" 97752 97765 98699 98704) (-87 "ASP80.spad" 97074 97087 97742 97747) (-86 "ASP7.spad" 96234 96247 97064 97069) (-85 "ASP78.spad" 95685 95698 96224 96229) (-84 "ASP77.spad" 95054 95067 95675 95680) (-83 "ASP74.spad" 94146 94159 95044 95049) (-82 "ASP73.spad" 93417 93430 94136 94141) (-81 "ASP6.spad" 92284 92297 93407 93412) (-80 "ASP55.spad" 90793 90806 92274 92279) (-79 "ASP50.spad" 88610 88623 90783 90788) (-78 "ASP4.spad" 87905 87918 88600 88605) (-77 "ASP49.spad" 86904 86917 87895 87900) (-76 "ASP42.spad" 85311 85350 86894 86899) (-75 "ASP41.spad" 83890 83929 85301 85306) (-74 "ASP35.spad" 82878 82891 83880 83885) (-73 "ASP34.spad" 82179 82192 82868 82873) (-72 "ASP33.spad" 81739 81752 82169 82174) (-71 "ASP31.spad" 80879 80892 81729 81734) (-70 "ASP30.spad" 79771 79784 80869 80874) (-69 "ASP29.spad" 79237 79250 79761 79766) (-68 "ASP28.spad" 70510 70523 79227 79232) (-67 "ASP27.spad" 69407 69420 70500 70505) (-66 "ASP24.spad" 68494 68507 69397 69402) (-65 "ASP20.spad" 67958 67971 68484 68489) (-64 "ASP1.spad" 67339 67352 67948 67953) (-63 "ASP19.spad" 62025 62038 67329 67334) (-62 "ASP12.spad" 61439 61452 62015 62020) (-61 "ASP10.spad" 60710 60723 61429 61434) (-60 "ARRAY2.spad" 60070 60079 60317 60344) (-59 "ARRAY1.spad" 58905 58914 59253 59280) (-58 "ARRAY12.spad" 57574 57585 58895 58900) (-57 "ARR2CAT.spad" 53236 53257 57542 57569) (-56 "ARR2CAT.spad" 48918 48941 53226 53231) (-55 "ARITY.spad" 48290 48297 48908 48913) (-54 "APPRULE.spad" 47534 47556 48280 48285) (-53 "APPLYORE.spad" 47149 47162 47524 47529) (-52 "ANY.spad" 45491 45498 47139 47144) (-51 "ANY1.spad" 44562 44571 45481 45486) (-50 "ANTISYM.spad" 43001 43017 44542 44557) (-49 "ANON.spad" 42694 42701 42991 42996) (-48 "AN.spad" 40995 41002 42510 42603) (-47 "AMR.spad" 39174 39185 40893 40990) (-46 "AMR.spad" 37190 37203 38911 38916) (-45 "ALIST.spad" 34602 34623 34952 34979) (-44 "ALGSC.spad" 33725 33751 34474 34527) (-43 "ALGPKG.spad" 29434 29445 33681 33686) (-42 "ALGMFACT.spad" 28623 28637 29424 29429) (-41 "ALGMANIP.spad" 26079 26094 28456 28461) (-40 "ALGFF.spad" 24394 24421 24611 24767) (-39 "ALGFACT.spad" 23515 23525 24384 24389) (-38 "ALGEBRA.spad" 23348 23357 23471 23510) (-37 "ALGEBRA.spad" 23213 23224 23338 23343) (-36 "ALAGG.spad" 22723 22744 23181 23208) (-35 "AHYP.spad" 22104 22111 22713 22718) (-34 "AGG.spad" 20413 20420 22094 22099) (-33 "AGG.spad" 18686 18695 20369 20374) (-32 "AF.spad" 17111 17126 18621 18626) (-31 "ADDAST.spad" 16789 16796 17101 17106) (-30 "ACPLOT.spad" 15360 15367 16779 16784) (-29 "ACFS.spad" 13111 13120 15262 15355) (-28 "ACFS.spad" 10948 10959 13101 13106) (-27 "ACF.spad" 7550 7557 10850 10943) (-26 "ACF.spad" 4238 4247 7540 7545) (-25 "ABELSG.spad" 3779 3786 4228 4233) (-24 "ABELSG.spad" 3318 3327 3769 3774) (-23 "ABELMON.spad" 2861 2868 3308 3313) (-22 "ABELMON.spad" 2402 2411 2851 2856) (-21 "ABELGRP.spad" 2067 2074 2392 2397) (-20 "ABELGRP.spad" 1730 1739 2057 2062) (-19 "A1AGG.spad" 870 879 1698 1725) (-18 "A1AGG.spad" 30 41 860 865)) \ No newline at end of file
+((-3 NIL 2284962 2284967 2284972 2284977) (-2 NIL 2284942 2284947 2284952 2284957) (-1 NIL 2284922 2284927 2284932 2284937) (0 NIL 2284902 2284907 2284912 2284917) (-1292 "ZMOD.spad" 2284711 2284724 2284840 2284897) (-1291 "ZLINDEP.spad" 2283755 2283766 2284701 2284706) (-1290 "ZDSOLVE.spad" 2273604 2273626 2283745 2283750) (-1289 "YSTREAM.spad" 2273097 2273108 2273594 2273599) (-1288 "XRPOLY.spad" 2272317 2272337 2272953 2273022) (-1287 "XPR.spad" 2270108 2270121 2272035 2272134) (-1286 "XPOLY.spad" 2269663 2269674 2269964 2270033) (-1285 "XPOLYC.spad" 2268980 2268996 2269589 2269658) (-1284 "XPBWPOLY.spad" 2267417 2267437 2268760 2268829) (-1283 "XF.spad" 2265878 2265893 2267319 2267412) (-1282 "XF.spad" 2264319 2264336 2265762 2265767) (-1281 "XFALG.spad" 2261343 2261359 2264245 2264314) (-1280 "XEXPPKG.spad" 2260594 2260620 2261333 2261338) (-1279 "XDPOLY.spad" 2260208 2260224 2260450 2260519) (-1278 "XALG.spad" 2259868 2259879 2260164 2260203) (-1277 "WUTSET.spad" 2255707 2255724 2259514 2259541) (-1276 "WP.spad" 2254906 2254950 2255565 2255632) (-1275 "WHILEAST.spad" 2254704 2254713 2254896 2254901) (-1274 "WHEREAST.spad" 2254375 2254384 2254694 2254699) (-1273 "WFFINTBS.spad" 2251938 2251960 2254365 2254370) (-1272 "WEIER.spad" 2250152 2250163 2251928 2251933) (-1271 "VSPACE.spad" 2249825 2249836 2250120 2250147) (-1270 "VSPACE.spad" 2249518 2249531 2249815 2249820) (-1269 "VOID.spad" 2249195 2249204 2249508 2249513) (-1268 "VIEW.spad" 2246817 2246826 2249185 2249190) (-1267 "VIEWDEF.spad" 2242014 2242023 2246807 2246812) (-1266 "VIEW3D.spad" 2225849 2225858 2242004 2242009) (-1265 "VIEW2D.spad" 2213586 2213595 2225839 2225844) (-1264 "VECTOR.spad" 2212260 2212271 2212511 2212538) (-1263 "VECTOR2.spad" 2210887 2210900 2212250 2212255) (-1262 "VECTCAT.spad" 2208787 2208798 2210855 2210882) (-1261 "VECTCAT.spad" 2206494 2206507 2208564 2208569) (-1260 "VARIABLE.spad" 2206274 2206289 2206484 2206489) (-1259 "UTYPE.spad" 2205918 2205927 2206264 2206269) (-1258 "UTSODETL.spad" 2205211 2205235 2205874 2205879) (-1257 "UTSODE.spad" 2203399 2203419 2205201 2205206) (-1256 "UTS.spad" 2198188 2198216 2201866 2201963) (-1255 "UTSCAT.spad" 2195639 2195655 2198086 2198183) (-1254 "UTSCAT.spad" 2192734 2192752 2195183 2195188) (-1253 "UTS2.spad" 2192327 2192362 2192724 2192729) (-1252 "URAGG.spad" 2186960 2186971 2192317 2192322) (-1251 "URAGG.spad" 2181557 2181570 2186916 2186921) (-1250 "UPXSSING.spad" 2179200 2179226 2180638 2180771) (-1249 "UPXS.spad" 2176348 2176376 2177332 2177481) (-1248 "UPXSCONS.spad" 2174105 2174125 2174480 2174629) (-1247 "UPXSCCA.spad" 2172670 2172690 2173951 2174100) (-1246 "UPXSCCA.spad" 2171377 2171399 2172660 2172665) (-1245 "UPXSCAT.spad" 2169958 2169974 2171223 2171372) (-1244 "UPXS2.spad" 2169499 2169552 2169948 2169953) (-1243 "UPSQFREE.spad" 2167911 2167925 2169489 2169494) (-1242 "UPSCAT.spad" 2165504 2165528 2167809 2167906) (-1241 "UPSCAT.spad" 2162803 2162829 2165110 2165115) (-1240 "UPOLYC.spad" 2157781 2157792 2162645 2162798) (-1239 "UPOLYC.spad" 2152651 2152664 2157517 2157522) (-1238 "UPOLYC2.spad" 2152120 2152139 2152641 2152646) (-1237 "UP.spad" 2149313 2149328 2149706 2149859) (-1236 "UPMP.spad" 2148203 2148216 2149303 2149308) (-1235 "UPDIVP.spad" 2147766 2147780 2148193 2148198) (-1234 "UPDECOMP.spad" 2146003 2146017 2147756 2147761) (-1233 "UPCDEN.spad" 2145210 2145226 2145993 2145998) (-1232 "UP2.spad" 2144572 2144593 2145200 2145205) (-1231 "UNISEG.spad" 2143925 2143936 2144491 2144496) (-1230 "UNISEG2.spad" 2143418 2143431 2143881 2143886) (-1229 "UNIFACT.spad" 2142519 2142531 2143408 2143413) (-1228 "ULS.spad" 2133071 2133099 2134164 2134593) (-1227 "ULSCONS.spad" 2125465 2125485 2125837 2125986) (-1226 "ULSCCAT.spad" 2123194 2123214 2125311 2125460) (-1225 "ULSCCAT.spad" 2121031 2121053 2123150 2123155) (-1224 "ULSCAT.spad" 2119247 2119263 2120877 2121026) (-1223 "ULS2.spad" 2118759 2118812 2119237 2119242) (-1222 "UINT8.spad" 2118636 2118645 2118749 2118754) (-1221 "UINT64.spad" 2118512 2118521 2118626 2118631) (-1220 "UINT32.spad" 2118388 2118397 2118502 2118507) (-1219 "UINT16.spad" 2118264 2118273 2118378 2118383) (-1218 "UFD.spad" 2117329 2117338 2118190 2118259) (-1217 "UFD.spad" 2116456 2116467 2117319 2117324) (-1216 "UDVO.spad" 2115303 2115312 2116446 2116451) (-1215 "UDPO.spad" 2112730 2112741 2115259 2115264) (-1214 "TYPE.spad" 2112662 2112671 2112720 2112725) (-1213 "TYPEAST.spad" 2112581 2112590 2112652 2112657) (-1212 "TWOFACT.spad" 2111231 2111246 2112571 2112576) (-1211 "TUPLE.spad" 2110715 2110726 2111130 2111135) (-1210 "TUBETOOL.spad" 2107552 2107561 2110705 2110710) (-1209 "TUBE.spad" 2106193 2106210 2107542 2107547) (-1208 "TS.spad" 2104782 2104798 2105758 2105855) (-1207 "TSETCAT.spad" 2091909 2091926 2104750 2104777) (-1206 "TSETCAT.spad" 2079022 2079041 2091865 2091870) (-1205 "TRMANIP.spad" 2073388 2073405 2078728 2078733) (-1204 "TRIMAT.spad" 2072347 2072372 2073378 2073383) (-1203 "TRIGMNIP.spad" 2070864 2070881 2072337 2072342) (-1202 "TRIGCAT.spad" 2070376 2070385 2070854 2070859) (-1201 "TRIGCAT.spad" 2069886 2069897 2070366 2070371) (-1200 "TREE.spad" 2068457 2068468 2069493 2069520) (-1199 "TRANFUN.spad" 2068288 2068297 2068447 2068452) (-1198 "TRANFUN.spad" 2068117 2068128 2068278 2068283) (-1197 "TOPSP.spad" 2067791 2067800 2068107 2068112) (-1196 "TOOLSIGN.spad" 2067454 2067465 2067781 2067786) (-1195 "TEXTFILE.spad" 2066011 2066020 2067444 2067449) (-1194 "TEX.spad" 2063143 2063152 2066001 2066006) (-1193 "TEX1.spad" 2062699 2062710 2063133 2063138) (-1192 "TEMUTL.spad" 2062254 2062263 2062689 2062694) (-1191 "TBCMPPK.spad" 2060347 2060370 2062244 2062249) (-1190 "TBAGG.spad" 2059383 2059406 2060327 2060342) (-1189 "TBAGG.spad" 2058427 2058452 2059373 2059378) (-1188 "TANEXP.spad" 2057803 2057814 2058417 2058422) (-1187 "TABLE.spad" 2056214 2056237 2056484 2056511) (-1186 "TABLEAU.spad" 2055695 2055706 2056204 2056209) (-1185 "TABLBUMP.spad" 2052478 2052489 2055685 2055690) (-1184 "SYSTEM.spad" 2051706 2051715 2052468 2052473) (-1183 "SYSSOLP.spad" 2049179 2049190 2051696 2051701) (-1182 "SYSNNI.spad" 2048359 2048370 2049169 2049174) (-1181 "SYSINT.spad" 2047763 2047774 2048349 2048354) (-1180 "SYNTAX.spad" 2043957 2043966 2047753 2047758) (-1179 "SYMTAB.spad" 2042013 2042022 2043947 2043952) (-1178 "SYMS.spad" 2037998 2038007 2042003 2042008) (-1177 "SYMPOLY.spad" 2037005 2037016 2037087 2037214) (-1176 "SYMFUNC.spad" 2036480 2036491 2036995 2037000) (-1175 "SYMBOL.spad" 2033907 2033916 2036470 2036475) (-1174 "SWITCH.spad" 2030664 2030673 2033897 2033902) (-1173 "SUTS.spad" 2027563 2027591 2029131 2029228) (-1172 "SUPXS.spad" 2024698 2024726 2025695 2025844) (-1171 "SUP.spad" 2021503 2021514 2022284 2022437) (-1170 "SUPFRACF.spad" 2020608 2020626 2021493 2021498) (-1169 "SUP2.spad" 2019998 2020011 2020598 2020603) (-1168 "SUMRF.spad" 2018964 2018975 2019988 2019993) (-1167 "SUMFS.spad" 2018597 2018614 2018954 2018959) (-1166 "SULS.spad" 2009136 2009164 2010242 2010671) (-1165 "SUCHTAST.spad" 2008905 2008914 2009126 2009131) (-1164 "SUCH.spad" 2008585 2008600 2008895 2008900) (-1163 "SUBSPACE.spad" 2000592 2000607 2008575 2008580) (-1162 "SUBRESP.spad" 1999752 1999766 2000548 2000553) (-1161 "STTF.spad" 1995851 1995867 1999742 1999747) (-1160 "STTFNC.spad" 1992319 1992335 1995841 1995846) (-1159 "STTAYLOR.spad" 1984717 1984728 1992200 1992205) (-1158 "STRTBL.spad" 1983222 1983239 1983371 1983398) (-1157 "STRING.spad" 1982631 1982640 1982645 1982672) (-1156 "STRICAT.spad" 1982419 1982428 1982599 1982626) (-1155 "STREAM.spad" 1979277 1979288 1981944 1981959) (-1154 "STREAM3.spad" 1978822 1978837 1979267 1979272) (-1153 "STREAM2.spad" 1977890 1977903 1978812 1978817) (-1152 "STREAM1.spad" 1977594 1977605 1977880 1977885) (-1151 "STINPROD.spad" 1976500 1976516 1977584 1977589) (-1150 "STEP.spad" 1975701 1975710 1976490 1976495) (-1149 "STBL.spad" 1974227 1974255 1974394 1974409) (-1148 "STAGG.spad" 1973302 1973313 1974217 1974222) (-1147 "STAGG.spad" 1972375 1972388 1973292 1973297) (-1146 "STACK.spad" 1971726 1971737 1971982 1972009) (-1145 "SREGSET.spad" 1969430 1969447 1971372 1971399) (-1144 "SRDCMPK.spad" 1967975 1967995 1969420 1969425) (-1143 "SRAGG.spad" 1963072 1963081 1967943 1967970) (-1142 "SRAGG.spad" 1958189 1958200 1963062 1963067) (-1141 "SQMATRIX.spad" 1955805 1955823 1956721 1956808) (-1140 "SPLTREE.spad" 1950357 1950370 1955241 1955268) (-1139 "SPLNODE.spad" 1946945 1946958 1950347 1950352) (-1138 "SPFCAT.spad" 1945722 1945731 1946935 1946940) (-1137 "SPECOUT.spad" 1944272 1944281 1945712 1945717) (-1136 "SPADXPT.spad" 1936411 1936420 1944262 1944267) (-1135 "spad-parser.spad" 1935876 1935885 1936401 1936406) (-1134 "SPADAST.spad" 1935577 1935586 1935866 1935871) (-1133 "SPACEC.spad" 1919590 1919601 1935567 1935572) (-1132 "SPACE3.spad" 1919366 1919377 1919580 1919585) (-1131 "SORTPAK.spad" 1918911 1918924 1919322 1919327) (-1130 "SOLVETRA.spad" 1916668 1916679 1918901 1918906) (-1129 "SOLVESER.spad" 1915188 1915199 1916658 1916663) (-1128 "SOLVERAD.spad" 1911198 1911209 1915178 1915183) (-1127 "SOLVEFOR.spad" 1909618 1909636 1911188 1911193) (-1126 "SNTSCAT.spad" 1909218 1909235 1909586 1909613) (-1125 "SMTS.spad" 1907478 1907504 1908783 1908880) (-1124 "SMP.spad" 1904953 1904973 1905343 1905470) (-1123 "SMITH.spad" 1903796 1903821 1904943 1904948) (-1122 "SMATCAT.spad" 1901906 1901936 1903740 1903791) (-1121 "SMATCAT.spad" 1899948 1899980 1901784 1901789) (-1120 "SKAGG.spad" 1898909 1898920 1899916 1899943) (-1119 "SINT.spad" 1897735 1897744 1898775 1898904) (-1118 "SIMPAN.spad" 1897463 1897472 1897725 1897730) (-1117 "SIG.spad" 1896791 1896800 1897453 1897458) (-1116 "SIGNRF.spad" 1895899 1895910 1896781 1896786) (-1115 "SIGNEF.spad" 1895168 1895185 1895889 1895894) (-1114 "SIGAST.spad" 1894549 1894558 1895158 1895163) (-1113 "SHP.spad" 1892467 1892482 1894505 1894510) (-1112 "SHDP.spad" 1882178 1882205 1882687 1882818) (-1111 "SGROUP.spad" 1881786 1881795 1882168 1882173) (-1110 "SGROUP.spad" 1881392 1881403 1881776 1881781) (-1109 "SGCF.spad" 1874273 1874282 1881382 1881387) (-1108 "SFRTCAT.spad" 1873201 1873218 1874241 1874268) (-1107 "SFRGCD.spad" 1872264 1872284 1873191 1873196) (-1106 "SFQCMPK.spad" 1866901 1866921 1872254 1872259) (-1105 "SFORT.spad" 1866336 1866350 1866891 1866896) (-1104 "SEXOF.spad" 1866179 1866219 1866326 1866331) (-1103 "SEX.spad" 1866071 1866080 1866169 1866174) (-1102 "SEXCAT.spad" 1863622 1863662 1866061 1866066) (-1101 "SET.spad" 1861922 1861933 1863043 1863082) (-1100 "SETMN.spad" 1860356 1860373 1861912 1861917) (-1099 "SETCAT.spad" 1859678 1859687 1860346 1860351) (-1098 "SETCAT.spad" 1858998 1859009 1859668 1859673) (-1097 "SETAGG.spad" 1855519 1855530 1858978 1858993) (-1096 "SETAGG.spad" 1852048 1852061 1855509 1855514) (-1095 "SEQAST.spad" 1851751 1851760 1852038 1852043) (-1094 "SEGXCAT.spad" 1850873 1850886 1851741 1851746) (-1093 "SEG.spad" 1850686 1850697 1850792 1850797) (-1092 "SEGCAT.spad" 1849593 1849604 1850676 1850681) (-1091 "SEGBIND.spad" 1848665 1848676 1849548 1849553) (-1090 "SEGBIND2.spad" 1848361 1848374 1848655 1848660) (-1089 "SEGAST.spad" 1848075 1848084 1848351 1848356) (-1088 "SEG2.spad" 1847500 1847513 1848031 1848036) (-1087 "SDVAR.spad" 1846776 1846787 1847490 1847495) (-1086 "SDPOL.spad" 1844202 1844213 1844493 1844620) (-1085 "SCPKG.spad" 1842281 1842292 1844192 1844197) (-1084 "SCOPE.spad" 1841430 1841439 1842271 1842276) (-1083 "SCACHE.spad" 1840112 1840123 1841420 1841425) (-1082 "SASTCAT.spad" 1840021 1840030 1840102 1840107) (-1081 "SAOS.spad" 1839893 1839902 1840011 1840016) (-1080 "SAERFFC.spad" 1839606 1839626 1839883 1839888) (-1079 "SAE.spad" 1837781 1837797 1838392 1838527) (-1078 "SAEFACT.spad" 1837482 1837502 1837771 1837776) (-1077 "RURPK.spad" 1835123 1835139 1837472 1837477) (-1076 "RULESET.spad" 1834564 1834588 1835113 1835118) (-1075 "RULE.spad" 1832768 1832792 1834554 1834559) (-1074 "RULECOLD.spad" 1832620 1832633 1832758 1832763) (-1073 "RTVALUE.spad" 1832353 1832362 1832610 1832615) (-1072 "RSTRCAST.spad" 1832070 1832079 1832343 1832348) (-1071 "RSETGCD.spad" 1828448 1828468 1832060 1832065) (-1070 "RSETCAT.spad" 1818232 1818249 1828416 1828443) (-1069 "RSETCAT.spad" 1808036 1808055 1818222 1818227) (-1068 "RSDCMPK.spad" 1806488 1806508 1808026 1808031) (-1067 "RRCC.spad" 1804872 1804902 1806478 1806483) (-1066 "RRCC.spad" 1803254 1803286 1804862 1804867) (-1065 "RPTAST.spad" 1802956 1802965 1803244 1803249) (-1064 "RPOLCAT.spad" 1782316 1782331 1802824 1802951) (-1063 "RPOLCAT.spad" 1761390 1761407 1781900 1781905) (-1062 "ROUTINE.spad" 1757253 1757262 1760037 1760064) (-1061 "ROMAN.spad" 1756581 1756590 1757119 1757248) (-1060 "ROIRC.spad" 1755661 1755693 1756571 1756576) (-1059 "RNS.spad" 1754564 1754573 1755563 1755656) (-1058 "RNS.spad" 1753553 1753564 1754554 1754559) (-1057 "RNG.spad" 1753288 1753297 1753543 1753548) (-1056 "RMODULE.spad" 1753053 1753064 1753278 1753283) (-1055 "RMCAT2.spad" 1752461 1752518 1753043 1753048) (-1054 "RMATRIX.spad" 1751285 1751304 1751628 1751667) (-1053 "RMATCAT.spad" 1746818 1746849 1751241 1751280) (-1052 "RMATCAT.spad" 1742241 1742274 1746666 1746671) (-1051 "RLINSET.spad" 1741635 1741646 1742231 1742236) (-1050 "RINTERP.spad" 1741523 1741543 1741625 1741630) (-1049 "RING.spad" 1740993 1741002 1741503 1741518) (-1048 "RING.spad" 1740471 1740482 1740983 1740988) (-1047 "RIDIST.spad" 1739855 1739864 1740461 1740466) (-1046 "RGCHAIN.spad" 1738434 1738450 1739340 1739367) (-1045 "RGBCSPC.spad" 1738215 1738227 1738424 1738429) (-1044 "RGBCMDL.spad" 1737745 1737757 1738205 1738210) (-1043 "RF.spad" 1735359 1735370 1737735 1737740) (-1042 "RFFACTOR.spad" 1734821 1734832 1735349 1735354) (-1041 "RFFACT.spad" 1734556 1734568 1734811 1734816) (-1040 "RFDIST.spad" 1733544 1733553 1734546 1734551) (-1039 "RETSOL.spad" 1732961 1732974 1733534 1733539) (-1038 "RETRACT.spad" 1732389 1732400 1732951 1732956) (-1037 "RETRACT.spad" 1731815 1731828 1732379 1732384) (-1036 "RETAST.spad" 1731627 1731636 1731805 1731810) (-1035 "RESULT.spad" 1729687 1729696 1730274 1730301) (-1034 "RESRING.spad" 1729034 1729081 1729625 1729682) (-1033 "RESLATC.spad" 1728358 1728369 1729024 1729029) (-1032 "REPSQ.spad" 1728087 1728098 1728348 1728353) (-1031 "REP.spad" 1725639 1725648 1728077 1728082) (-1030 "REPDB.spad" 1725344 1725355 1725629 1725634) (-1029 "REP2.spad" 1714916 1714927 1725186 1725191) (-1028 "REP1.spad" 1708906 1708917 1714866 1714871) (-1027 "REGSET.spad" 1706703 1706720 1708552 1708579) (-1026 "REF.spad" 1706032 1706043 1706658 1706663) (-1025 "REDORDER.spad" 1705208 1705225 1706022 1706027) (-1024 "RECLOS.spad" 1703991 1704011 1704695 1704788) (-1023 "REALSOLV.spad" 1703123 1703132 1703981 1703986) (-1022 "REAL.spad" 1702995 1703004 1703113 1703118) (-1021 "REAL0Q.spad" 1700277 1700292 1702985 1702990) (-1020 "REAL0.spad" 1697105 1697120 1700267 1700272) (-1019 "RDUCEAST.spad" 1696826 1696835 1697095 1697100) (-1018 "RDIV.spad" 1696477 1696502 1696816 1696821) (-1017 "RDIST.spad" 1696040 1696051 1696467 1696472) (-1016 "RDETRS.spad" 1694836 1694854 1696030 1696035) (-1015 "RDETR.spad" 1692943 1692961 1694826 1694831) (-1014 "RDEEFS.spad" 1692016 1692033 1692933 1692938) (-1013 "RDEEF.spad" 1691012 1691029 1692006 1692011) (-1012 "RCFIELD.spad" 1688198 1688207 1690914 1691007) (-1011 "RCFIELD.spad" 1685470 1685481 1688188 1688193) (-1010 "RCAGG.spad" 1683382 1683393 1685460 1685465) (-1009 "RCAGG.spad" 1681221 1681234 1683301 1683306) (-1008 "RATRET.spad" 1680581 1680592 1681211 1681216) (-1007 "RATFACT.spad" 1680273 1680285 1680571 1680576) (-1006 "RANDSRC.spad" 1679592 1679601 1680263 1680268) (-1005 "RADUTIL.spad" 1679346 1679355 1679582 1679587) (-1004 "RADIX.spad" 1676247 1676261 1677813 1677906) (-1003 "RADFF.spad" 1674660 1674697 1674779 1674935) (-1002 "RADCAT.spad" 1674253 1674262 1674650 1674655) (-1001 "RADCAT.spad" 1673844 1673855 1674243 1674248) (-1000 "QUEUE.spad" 1673186 1673197 1673451 1673478) (-999 "QUAT.spad" 1671768 1671778 1672110 1672175) (-998 "QUATCT2.spad" 1671387 1671405 1671758 1671763) (-997 "QUATCAT.spad" 1669552 1669562 1671317 1671382) (-996 "QUATCAT.spad" 1667468 1667480 1669235 1669240) (-995 "QUAGG.spad" 1666294 1666304 1667436 1667463) (-994 "QQUTAST.spad" 1666063 1666071 1666284 1666289) (-993 "QFORM.spad" 1665526 1665540 1666053 1666058) (-992 "QFCAT.spad" 1664229 1664239 1665428 1665521) (-991 "QFCAT.spad" 1662523 1662535 1663724 1663729) (-990 "QFCAT2.spad" 1662214 1662230 1662513 1662518) (-989 "QEQUAT.spad" 1661771 1661779 1662204 1662209) (-988 "QCMPACK.spad" 1656518 1656537 1661761 1661766) (-987 "QALGSET.spad" 1652593 1652625 1656432 1656437) (-986 "QALGSET2.spad" 1650589 1650607 1652583 1652588) (-985 "PWFFINTB.spad" 1647899 1647920 1650579 1650584) (-984 "PUSHVAR.spad" 1647228 1647247 1647889 1647894) (-983 "PTRANFN.spad" 1643354 1643364 1647218 1647223) (-982 "PTPACK.spad" 1640442 1640452 1643344 1643349) (-981 "PTFUNC2.spad" 1640263 1640277 1640432 1640437) (-980 "PTCAT.spad" 1639512 1639522 1640231 1640258) (-979 "PSQFR.spad" 1638819 1638843 1639502 1639507) (-978 "PSEUDLIN.spad" 1637677 1637687 1638809 1638814) (-977 "PSETPK.spad" 1623110 1623126 1637555 1637560) (-976 "PSETCAT.spad" 1617030 1617053 1623090 1623105) (-975 "PSETCAT.spad" 1610924 1610949 1616986 1616991) (-974 "PSCURVE.spad" 1609907 1609915 1610914 1610919) (-973 "PSCAT.spad" 1608674 1608703 1609805 1609902) (-972 "PSCAT.spad" 1607531 1607562 1608664 1608669) (-971 "PRTITION.spad" 1606476 1606484 1607521 1607526) (-970 "PRTDAST.spad" 1606195 1606203 1606466 1606471) (-969 "PRS.spad" 1595757 1595774 1606151 1606156) (-968 "PRQAGG.spad" 1595188 1595198 1595725 1595752) (-967 "PROPLOG.spad" 1594483 1594491 1595178 1595183) (-966 "PROPFRML.spad" 1593291 1593302 1594473 1594478) (-965 "PROPERTY.spad" 1592777 1592785 1593281 1593286) (-964 "PRODUCT.spad" 1590457 1590469 1590743 1590798) (-963 "PR.spad" 1588843 1588855 1589548 1589675) (-962 "PRINT.spad" 1588595 1588603 1588833 1588838) (-961 "PRIMES.spad" 1586846 1586856 1588585 1588590) (-960 "PRIMELT.spad" 1584827 1584841 1586836 1586841) (-959 "PRIMCAT.spad" 1584450 1584458 1584817 1584822) (-958 "PRIMARR.spad" 1583455 1583465 1583633 1583660) (-957 "PRIMARR2.spad" 1582178 1582190 1583445 1583450) (-956 "PREASSOC.spad" 1581550 1581562 1582168 1582173) (-955 "PPCURVE.spad" 1580687 1580695 1581540 1581545) (-954 "PORTNUM.spad" 1580462 1580470 1580677 1580682) (-953 "POLYROOT.spad" 1579291 1579313 1580418 1580423) (-952 "POLY.spad" 1576624 1576634 1577141 1577268) (-951 "POLYLIFT.spad" 1575885 1575908 1576614 1576619) (-950 "POLYCATQ.spad" 1573987 1574009 1575875 1575880) (-949 "POLYCAT.spad" 1567393 1567414 1573855 1573982) (-948 "POLYCAT.spad" 1560137 1560160 1566601 1566606) (-947 "POLY2UP.spad" 1559585 1559599 1560127 1560132) (-946 "POLY2.spad" 1559180 1559192 1559575 1559580) (-945 "POLUTIL.spad" 1558121 1558150 1559136 1559141) (-944 "POLTOPOL.spad" 1556869 1556884 1558111 1558116) (-943 "POINT.spad" 1555707 1555717 1555794 1555821) (-942 "PNTHEORY.spad" 1552373 1552381 1555697 1555702) (-941 "PMTOOLS.spad" 1551130 1551144 1552363 1552368) (-940 "PMSYM.spad" 1550675 1550685 1551120 1551125) (-939 "PMQFCAT.spad" 1550262 1550276 1550665 1550670) (-938 "PMPRED.spad" 1549731 1549745 1550252 1550257) (-937 "PMPREDFS.spad" 1549175 1549197 1549721 1549726) (-936 "PMPLCAT.spad" 1548245 1548263 1549107 1549112) (-935 "PMLSAGG.spad" 1547826 1547840 1548235 1548240) (-934 "PMKERNEL.spad" 1547393 1547405 1547816 1547821) (-933 "PMINS.spad" 1546969 1546979 1547383 1547388) (-932 "PMFS.spad" 1546542 1546560 1546959 1546964) (-931 "PMDOWN.spad" 1545828 1545842 1546532 1546537) (-930 "PMASS.spad" 1544836 1544844 1545818 1545823) (-929 "PMASSFS.spad" 1543801 1543817 1544826 1544831) (-928 "PLOTTOOL.spad" 1543581 1543589 1543791 1543796) (-927 "PLOT.spad" 1538412 1538420 1543571 1543576) (-926 "PLOT3D.spad" 1534832 1534840 1538402 1538407) (-925 "PLOT1.spad" 1533973 1533983 1534822 1534827) (-924 "PLEQN.spad" 1521189 1521216 1533963 1533968) (-923 "PINTERP.spad" 1520805 1520824 1521179 1521184) (-922 "PINTERPA.spad" 1520587 1520603 1520795 1520800) (-921 "PI.spad" 1520194 1520202 1520561 1520582) (-920 "PID.spad" 1519150 1519158 1520120 1520189) (-919 "PICOERCE.spad" 1518807 1518817 1519140 1519145) (-918 "PGROEB.spad" 1517404 1517418 1518797 1518802) (-917 "PGE.spad" 1508657 1508665 1517394 1517399) (-916 "PGCD.spad" 1507539 1507556 1508647 1508652) (-915 "PFRPAC.spad" 1506682 1506692 1507529 1507534) (-914 "PFR.spad" 1503339 1503349 1506584 1506677) (-913 "PFOTOOLS.spad" 1502597 1502613 1503329 1503334) (-912 "PFOQ.spad" 1501967 1501985 1502587 1502592) (-911 "PFO.spad" 1501386 1501413 1501957 1501962) (-910 "PF.spad" 1500960 1500972 1501191 1501284) (-909 "PFECAT.spad" 1498626 1498634 1500886 1500955) (-908 "PFECAT.spad" 1496320 1496330 1498582 1498587) (-907 "PFBRU.spad" 1494190 1494202 1496310 1496315) (-906 "PFBR.spad" 1491728 1491751 1494180 1494185) (-905 "PERM.spad" 1487409 1487419 1491558 1491573) (-904 "PERMGRP.spad" 1482145 1482155 1487399 1487404) (-903 "PERMCAT.spad" 1480697 1480707 1482125 1482140) (-902 "PERMAN.spad" 1479229 1479243 1480687 1480692) (-901 "PENDTREE.spad" 1478568 1478578 1478858 1478863) (-900 "PDRING.spad" 1477059 1477069 1478548 1478563) (-899 "PDRING.spad" 1475558 1475570 1477049 1477054) (-898 "PDEPROB.spad" 1474573 1474581 1475548 1475553) (-897 "PDEPACK.spad" 1468575 1468583 1474563 1474568) (-896 "PDECOMP.spad" 1468037 1468054 1468565 1468570) (-895 "PDECAT.spad" 1466391 1466399 1468027 1468032) (-894 "PCOMP.spad" 1466242 1466255 1466381 1466386) (-893 "PBWLB.spad" 1464824 1464841 1466232 1466237) (-892 "PATTERN.spad" 1459255 1459265 1464814 1464819) (-891 "PATTERN2.spad" 1458991 1459003 1459245 1459250) (-890 "PATTERN1.spad" 1457293 1457309 1458981 1458986) (-889 "PATRES.spad" 1454840 1454852 1457283 1457288) (-888 "PATRES2.spad" 1454502 1454516 1454830 1454835) (-887 "PATMATCH.spad" 1452659 1452690 1454210 1454215) (-886 "PATMAB.spad" 1452084 1452094 1452649 1452654) (-885 "PATLRES.spad" 1451168 1451182 1452074 1452079) (-884 "PATAB.spad" 1450932 1450942 1451158 1451163) (-883 "PARTPERM.spad" 1448294 1448302 1450922 1450927) (-882 "PARSURF.spad" 1447722 1447750 1448284 1448289) (-881 "PARSU2.spad" 1447517 1447533 1447712 1447717) (-880 "script-parser.spad" 1447037 1447045 1447507 1447512) (-879 "PARSCURV.spad" 1446465 1446493 1447027 1447032) (-878 "PARSC2.spad" 1446254 1446270 1446455 1446460) (-877 "PARPCURV.spad" 1445712 1445740 1446244 1446249) (-876 "PARPC2.spad" 1445501 1445517 1445702 1445707) (-875 "PAN2EXPR.spad" 1444913 1444921 1445491 1445496) (-874 "PALETTE.spad" 1443883 1443891 1444903 1444908) (-873 "PAIR.spad" 1442866 1442879 1443471 1443476) (-872 "PADICRC.spad" 1440196 1440214 1441371 1441464) (-871 "PADICRAT.spad" 1438211 1438223 1438432 1438525) (-870 "PADIC.spad" 1437906 1437918 1438137 1438206) (-869 "PADICCT.spad" 1436447 1436459 1437832 1437901) (-868 "PADEPAC.spad" 1435126 1435145 1436437 1436442) (-867 "PADE.spad" 1433866 1433882 1435116 1435121) (-866 "OWP.spad" 1433106 1433136 1433724 1433791) (-865 "OVERSET.spad" 1432679 1432687 1433096 1433101) (-864 "OVAR.spad" 1432460 1432483 1432669 1432674) (-863 "OUT.spad" 1431544 1431552 1432450 1432455) (-862 "OUTFORM.spad" 1420840 1420848 1431534 1431539) (-861 "OUTBFILE.spad" 1420258 1420266 1420830 1420835) (-860 "OUTBCON.spad" 1419256 1419264 1420248 1420253) (-859 "OUTBCON.spad" 1418252 1418262 1419246 1419251) (-858 "OSI.spad" 1417727 1417735 1418242 1418247) (-857 "OSGROUP.spad" 1417645 1417653 1417717 1417722) (-856 "ORTHPOL.spad" 1416106 1416116 1417562 1417567) (-855 "OREUP.spad" 1415559 1415587 1415786 1415825) (-854 "ORESUP.spad" 1414858 1414882 1415239 1415278) (-853 "OREPCTO.spad" 1412677 1412689 1414778 1414783) (-852 "OREPCAT.spad" 1406734 1406744 1412633 1412672) (-851 "OREPCAT.spad" 1400681 1400693 1406582 1406587) (-850 "ORDSET.spad" 1399847 1399855 1400671 1400676) (-849 "ORDSET.spad" 1399011 1399021 1399837 1399842) (-848 "ORDRING.spad" 1398401 1398409 1398991 1399006) (-847 "ORDRING.spad" 1397799 1397809 1398391 1398396) (-846 "ORDMON.spad" 1397654 1397662 1397789 1397794) (-845 "ORDFUNS.spad" 1396780 1396796 1397644 1397649) (-844 "ORDFIN.spad" 1396600 1396608 1396770 1396775) (-843 "ORDCOMP.spad" 1395065 1395075 1396147 1396176) (-842 "ORDCOMP2.spad" 1394350 1394362 1395055 1395060) (-841 "OPTPROB.spad" 1392988 1392996 1394340 1394345) (-840 "OPTPACK.spad" 1385373 1385381 1392978 1392983) (-839 "OPTCAT.spad" 1383048 1383056 1385363 1385368) (-838 "OPSIG.spad" 1382700 1382708 1383038 1383043) (-837 "OPQUERY.spad" 1382249 1382257 1382690 1382695) (-836 "OP.spad" 1381991 1382001 1382071 1382138) (-835 "OPERCAT.spad" 1381455 1381465 1381981 1381986) (-834 "OPERCAT.spad" 1380917 1380929 1381445 1381450) (-833 "ONECOMP.spad" 1379662 1379672 1380464 1380493) (-832 "ONECOMP2.spad" 1379080 1379092 1379652 1379657) (-831 "OMSERVER.spad" 1378082 1378090 1379070 1379075) (-830 "OMSAGG.spad" 1377870 1377880 1378038 1378077) (-829 "OMPKG.spad" 1376482 1376490 1377860 1377865) (-828 "OM.spad" 1375447 1375455 1376472 1376477) (-827 "OMLO.spad" 1374872 1374884 1375333 1375372) (-826 "OMEXPR.spad" 1374706 1374716 1374862 1374867) (-825 "OMERR.spad" 1374249 1374257 1374696 1374701) (-824 "OMERRK.spad" 1373283 1373291 1374239 1374244) (-823 "OMENC.spad" 1372627 1372635 1373273 1373278) (-822 "OMDEV.spad" 1366916 1366924 1372617 1372622) (-821 "OMCONN.spad" 1366325 1366333 1366906 1366911) (-820 "OINTDOM.spad" 1366088 1366096 1366251 1366320) (-819 "OFMONOID.spad" 1362275 1362285 1366078 1366083) (-818 "ODVAR.spad" 1361536 1361546 1362265 1362270) (-817 "ODR.spad" 1361180 1361206 1361348 1361497) (-816 "ODPOL.spad" 1358562 1358572 1358902 1359029) (-815 "ODP.spad" 1348409 1348429 1348782 1348913) (-814 "ODETOOLS.spad" 1346992 1347011 1348399 1348404) (-813 "ODESYS.spad" 1344642 1344659 1346982 1346987) (-812 "ODERTRIC.spad" 1340583 1340600 1344599 1344604) (-811 "ODERED.spad" 1339970 1339994 1340573 1340578) (-810 "ODERAT.spad" 1337521 1337538 1339960 1339965) (-809 "ODEPRRIC.spad" 1334412 1334434 1337511 1337516) (-808 "ODEPROB.spad" 1333669 1333677 1334402 1334407) (-807 "ODEPRIM.spad" 1330943 1330965 1333659 1333664) (-806 "ODEPAL.spad" 1330319 1330343 1330933 1330938) (-805 "ODEPACK.spad" 1316921 1316929 1330309 1330314) (-804 "ODEINT.spad" 1316352 1316368 1316911 1316916) (-803 "ODEIFTBL.spad" 1313747 1313755 1316342 1316347) (-802 "ODEEF.spad" 1309114 1309130 1313737 1313742) (-801 "ODECONST.spad" 1308633 1308651 1309104 1309109) (-800 "ODECAT.spad" 1307229 1307237 1308623 1308628) (-799 "OCT.spad" 1305367 1305377 1306083 1306122) (-798 "OCTCT2.spad" 1305011 1305032 1305357 1305362) (-797 "OC.spad" 1302785 1302795 1304967 1305006) (-796 "OC.spad" 1300284 1300296 1302468 1302473) (-795 "OCAMON.spad" 1300132 1300140 1300274 1300279) (-794 "OASGP.spad" 1299947 1299955 1300122 1300127) (-793 "OAMONS.spad" 1299467 1299475 1299937 1299942) (-792 "OAMON.spad" 1299328 1299336 1299457 1299462) (-791 "OAGROUP.spad" 1299190 1299198 1299318 1299323) (-790 "NUMTUBE.spad" 1298777 1298793 1299180 1299185) (-789 "NUMQUAD.spad" 1286639 1286647 1298767 1298772) (-788 "NUMODE.spad" 1277775 1277783 1286629 1286634) (-787 "NUMINT.spad" 1275333 1275341 1277765 1277770) (-786 "NUMFMT.spad" 1274173 1274181 1275323 1275328) (-785 "NUMERIC.spad" 1266245 1266255 1273978 1273983) (-784 "NTSCAT.spad" 1264747 1264763 1266213 1266240) (-783 "NTPOLFN.spad" 1264292 1264302 1264664 1264669) (-782 "NSUP.spad" 1257338 1257348 1261878 1262031) (-781 "NSUP2.spad" 1256730 1256742 1257328 1257333) (-780 "NSMP.spad" 1252961 1252980 1253269 1253396) (-779 "NREP.spad" 1251333 1251347 1252951 1252956) (-778 "NPCOEF.spad" 1250579 1250599 1251323 1251328) (-777 "NORMRETR.spad" 1250177 1250216 1250569 1250574) (-776 "NORMPK.spad" 1248079 1248098 1250167 1250172) (-775 "NORMMA.spad" 1247767 1247793 1248069 1248074) (-774 "NONE.spad" 1247508 1247516 1247757 1247762) (-773 "NONE1.spad" 1247184 1247194 1247498 1247503) (-772 "NODE1.spad" 1246653 1246669 1247174 1247179) (-771 "NNI.spad" 1245540 1245548 1246627 1246648) (-770 "NLINSOL.spad" 1244162 1244172 1245530 1245535) (-769 "NIPROB.spad" 1242703 1242711 1244152 1244157) (-768 "NFINTBAS.spad" 1240163 1240180 1242693 1242698) (-767 "NETCLT.spad" 1240137 1240148 1240153 1240158) (-766 "NCODIV.spad" 1238335 1238351 1240127 1240132) (-765 "NCNTFRAC.spad" 1237977 1237991 1238325 1238330) (-764 "NCEP.spad" 1236137 1236151 1237967 1237972) (-763 "NASRING.spad" 1235733 1235741 1236127 1236132) (-762 "NASRING.spad" 1235327 1235337 1235723 1235728) (-761 "NARNG.spad" 1234671 1234679 1235317 1235322) (-760 "NARNG.spad" 1234013 1234023 1234661 1234666) (-759 "NAGSP.spad" 1233086 1233094 1234003 1234008) (-758 "NAGS.spad" 1222611 1222619 1233076 1233081) (-757 "NAGF07.spad" 1221004 1221012 1222601 1222606) (-756 "NAGF04.spad" 1215236 1215244 1220994 1220999) (-755 "NAGF02.spad" 1209045 1209053 1215226 1215231) (-754 "NAGF01.spad" 1204648 1204656 1209035 1209040) (-753 "NAGE04.spad" 1198108 1198116 1204638 1204643) (-752 "NAGE02.spad" 1188450 1188458 1198098 1198103) (-751 "NAGE01.spad" 1184334 1184342 1188440 1188445) (-750 "NAGD03.spad" 1182254 1182262 1184324 1184329) (-749 "NAGD02.spad" 1174785 1174793 1182244 1182249) (-748 "NAGD01.spad" 1168898 1168906 1174775 1174780) (-747 "NAGC06.spad" 1164685 1164693 1168888 1168893) (-746 "NAGC05.spad" 1163154 1163162 1164675 1164680) (-745 "NAGC02.spad" 1162409 1162417 1163144 1163149) (-744 "NAALG.spad" 1161944 1161954 1162377 1162404) (-743 "NAALG.spad" 1161499 1161511 1161934 1161939) (-742 "MULTSQFR.spad" 1158457 1158474 1161489 1161494) (-741 "MULTFACT.spad" 1157840 1157857 1158447 1158452) (-740 "MTSCAT.spad" 1155874 1155895 1157738 1157835) (-739 "MTHING.spad" 1155531 1155541 1155864 1155869) (-738 "MSYSCMD.spad" 1154965 1154973 1155521 1155526) (-737 "MSET.spad" 1152907 1152917 1154671 1154710) (-736 "MSETAGG.spad" 1152752 1152762 1152875 1152902) (-735 "MRING.spad" 1149723 1149735 1152460 1152527) (-734 "MRF2.spad" 1149291 1149305 1149713 1149718) (-733 "MRATFAC.spad" 1148837 1148854 1149281 1149286) (-732 "MPRFF.spad" 1146867 1146886 1148827 1148832) (-731 "MPOLY.spad" 1144338 1144353 1144697 1144824) (-730 "MPCPF.spad" 1143602 1143621 1144328 1144333) (-729 "MPC3.spad" 1143417 1143457 1143592 1143597) (-728 "MPC2.spad" 1143059 1143092 1143407 1143412) (-727 "MONOTOOL.spad" 1141394 1141411 1143049 1143054) (-726 "MONOID.spad" 1140713 1140721 1141384 1141389) (-725 "MONOID.spad" 1140030 1140040 1140703 1140708) (-724 "MONOGEN.spad" 1138776 1138789 1139890 1140025) (-723 "MONOGEN.spad" 1137544 1137559 1138660 1138665) (-722 "MONADWU.spad" 1135558 1135566 1137534 1137539) (-721 "MONADWU.spad" 1133570 1133580 1135548 1135553) (-720 "MONAD.spad" 1132714 1132722 1133560 1133565) (-719 "MONAD.spad" 1131856 1131866 1132704 1132709) (-718 "MOEBIUS.spad" 1130542 1130556 1131836 1131851) (-717 "MODULE.spad" 1130412 1130422 1130510 1130537) (-716 "MODULE.spad" 1130302 1130314 1130402 1130407) (-715 "MODRING.spad" 1129633 1129672 1130282 1130297) (-714 "MODOP.spad" 1128292 1128304 1129455 1129522) (-713 "MODMONOM.spad" 1128021 1128039 1128282 1128287) (-712 "MODMON.spad" 1124816 1124832 1125535 1125688) (-711 "MODFIELD.spad" 1124174 1124213 1124718 1124811) (-710 "MMLFORM.spad" 1123034 1123042 1124164 1124169) (-709 "MMAP.spad" 1122774 1122808 1123024 1123029) (-708 "MLO.spad" 1121201 1121211 1122730 1122769) (-707 "MLIFT.spad" 1119773 1119790 1121191 1121196) (-706 "MKUCFUNC.spad" 1119306 1119324 1119763 1119768) (-705 "MKRECORD.spad" 1118908 1118921 1119296 1119301) (-704 "MKFUNC.spad" 1118289 1118299 1118898 1118903) (-703 "MKFLCFN.spad" 1117245 1117255 1118279 1118284) (-702 "MKBCFUNC.spad" 1116730 1116748 1117235 1117240) (-701 "MINT.spad" 1116169 1116177 1116632 1116725) (-700 "MHROWRED.spad" 1114670 1114680 1116159 1116164) (-699 "MFLOAT.spad" 1113186 1113194 1114560 1114665) (-698 "MFINFACT.spad" 1112586 1112608 1113176 1113181) (-697 "MESH.spad" 1110318 1110326 1112576 1112581) (-696 "MDDFACT.spad" 1108511 1108521 1110308 1110313) (-695 "MDAGG.spad" 1107798 1107808 1108491 1108506) (-694 "MCMPLX.spad" 1103809 1103817 1104423 1104624) (-693 "MCDEN.spad" 1103017 1103029 1103799 1103804) (-692 "MCALCFN.spad" 1100119 1100145 1103007 1103012) (-691 "MAYBE.spad" 1099403 1099414 1100109 1100114) (-690 "MATSTOR.spad" 1096679 1096689 1099393 1099398) (-689 "MATRIX.spad" 1095383 1095393 1095867 1095894) (-688 "MATLIN.spad" 1092709 1092733 1095267 1095272) (-687 "MATCAT.spad" 1084294 1084316 1092677 1092704) (-686 "MATCAT.spad" 1075751 1075775 1084136 1084141) (-685 "MATCAT2.spad" 1075019 1075067 1075741 1075746) (-684 "MAPPKG3.spad" 1073918 1073932 1075009 1075014) (-683 "MAPPKG2.spad" 1073252 1073264 1073908 1073913) (-682 "MAPPKG1.spad" 1072070 1072080 1073242 1073247) (-681 "MAPPAST.spad" 1071383 1071391 1072060 1072065) (-680 "MAPHACK3.spad" 1071191 1071205 1071373 1071378) (-679 "MAPHACK2.spad" 1070956 1070968 1071181 1071186) (-678 "MAPHACK1.spad" 1070586 1070596 1070946 1070951) (-677 "MAGMA.spad" 1068376 1068393 1070576 1070581) (-676 "MACROAST.spad" 1067955 1067963 1068366 1068371) (-675 "M3D.spad" 1065651 1065661 1067333 1067338) (-674 "LZSTAGG.spad" 1062879 1062889 1065641 1065646) (-673 "LZSTAGG.spad" 1060105 1060117 1062869 1062874) (-672 "LWORD.spad" 1056810 1056827 1060095 1060100) (-671 "LSTAST.spad" 1056594 1056602 1056800 1056805) (-670 "LSQM.spad" 1054820 1054834 1055218 1055269) (-669 "LSPP.spad" 1054353 1054370 1054810 1054815) (-668 "LSMP.spad" 1053193 1053221 1054343 1054348) (-667 "LSMP1.spad" 1050997 1051011 1053183 1053188) (-666 "LSAGG.spad" 1050666 1050676 1050965 1050992) (-665 "LSAGG.spad" 1050355 1050367 1050656 1050661) (-664 "LPOLY.spad" 1049309 1049328 1050211 1050280) (-663 "LPEFRAC.spad" 1048566 1048576 1049299 1049304) (-662 "LO.spad" 1047967 1047981 1048500 1048527) (-661 "LOGIC.spad" 1047569 1047577 1047957 1047962) (-660 "LOGIC.spad" 1047169 1047179 1047559 1047564) (-659 "LODOOPS.spad" 1046087 1046099 1047159 1047164) (-658 "LODO.spad" 1045471 1045487 1045767 1045806) (-657 "LODOF.spad" 1044515 1044532 1045428 1045433) (-656 "LODOCAT.spad" 1043173 1043183 1044471 1044510) (-655 "LODOCAT.spad" 1041829 1041841 1043129 1043134) (-654 "LODO2.spad" 1041102 1041114 1041509 1041548) (-653 "LODO1.spad" 1040502 1040512 1040782 1040821) (-652 "LODEEF.spad" 1039274 1039292 1040492 1040497) (-651 "LNAGG.spad" 1035076 1035086 1039264 1039269) (-650 "LNAGG.spad" 1030842 1030854 1035032 1035037) (-649 "LMOPS.spad" 1027578 1027595 1030832 1030837) (-648 "LMODULE.spad" 1027346 1027356 1027568 1027573) (-647 "LMDICT.spad" 1026629 1026639 1026897 1026924) (-646 "LLINSET.spad" 1026026 1026036 1026619 1026624) (-645 "LITERAL.spad" 1025932 1025943 1026016 1026021) (-644 "LIST.spad" 1023650 1023660 1025079 1025106) (-643 "LIST3.spad" 1022941 1022955 1023640 1023645) (-642 "LIST2.spad" 1021581 1021593 1022931 1022936) (-641 "LIST2MAP.spad" 1018458 1018470 1021571 1021576) (-640 "LINSET.spad" 1018080 1018090 1018448 1018453) (-639 "LINEXP.spad" 1017512 1017522 1018060 1018075) (-638 "LINDEP.spad" 1016289 1016301 1017424 1017429) (-637 "LIMITRF.spad" 1014203 1014213 1016279 1016284) (-636 "LIMITPS.spad" 1013086 1013099 1014193 1014198) (-635 "LIE.spad" 1011100 1011112 1012376 1012521) (-634 "LIECAT.spad" 1010576 1010586 1011026 1011095) (-633 "LIECAT.spad" 1010080 1010092 1010532 1010537) (-632 "LIB.spad" 1008128 1008136 1008739 1008754) (-631 "LGROBP.spad" 1005481 1005500 1008118 1008123) (-630 "LF.spad" 1004400 1004416 1005471 1005476) (-629 "LFCAT.spad" 1003419 1003427 1004390 1004395) (-628 "LEXTRIPK.spad" 998922 998937 1003409 1003414) (-627 "LEXP.spad" 996925 996952 998902 998917) (-626 "LETAST.spad" 996624 996632 996915 996920) (-625 "LEADCDET.spad" 995008 995025 996614 996619) (-624 "LAZM3PK.spad" 993712 993734 994998 995003) (-623 "LAUPOL.spad" 992401 992414 993305 993374) (-622 "LAPLACE.spad" 991974 991990 992391 992396) (-621 "LA.spad" 991414 991428 991896 991935) (-620 "LALG.spad" 991190 991200 991394 991409) (-619 "LALG.spad" 990974 990986 991180 991185) (-618 "KVTFROM.spad" 990709 990719 990964 990969) (-617 "KTVLOGIC.spad" 990221 990229 990699 990704) (-616 "KRCFROM.spad" 989959 989969 990211 990216) (-615 "KOVACIC.spad" 988672 988689 989949 989954) (-614 "KONVERT.spad" 988394 988404 988662 988667) (-613 "KOERCE.spad" 988131 988141 988384 988389) (-612 "KERNEL.spad" 986750 986760 987915 987920) (-611 "KERNEL2.spad" 986453 986465 986740 986745) (-610 "KDAGG.spad" 985556 985578 986433 986448) (-609 "KDAGG.spad" 984667 984691 985546 985551) (-608 "KAFILE.spad" 983630 983646 983865 983892) (-607 "JORDAN.spad" 981457 981469 982920 983065) (-606 "JOINAST.spad" 981151 981159 981447 981452) (-605 "JAVACODE.spad" 981017 981025 981141 981146) (-604 "IXAGG.spad" 979140 979164 981007 981012) (-603 "IXAGG.spad" 977118 977144 978987 978992) (-602 "IVECTOR.spad" 975888 975903 976043 976070) (-601 "ITUPLE.spad" 975033 975043 975878 975883) (-600 "ITRIGMNP.spad" 973844 973863 975023 975028) (-599 "ITFUN3.spad" 973338 973352 973834 973839) (-598 "ITFUN2.spad" 973068 973080 973328 973333) (-597 "ITAYLOR.spad" 970860 970875 972904 973029) (-596 "ISUPS.spad" 963271 963286 969834 969931) (-595 "ISUMP.spad" 962768 962784 963261 963266) (-594 "ISTRING.spad" 961771 961784 961937 961964) (-593 "ISAST.spad" 961490 961498 961761 961766) (-592 "IRURPK.spad" 960203 960222 961480 961485) (-591 "IRSN.spad" 958163 958171 960193 960198) (-590 "IRRF2F.spad" 956638 956648 958119 958124) (-589 "IRREDFFX.spad" 956239 956250 956628 956633) (-588 "IROOT.spad" 954570 954580 956229 956234) (-587 "IR.spad" 952359 952373 954425 954452) (-586 "IR2.spad" 951379 951395 952349 952354) (-585 "IR2F.spad" 950579 950595 951369 951374) (-584 "IPRNTPK.spad" 950339 950347 950569 950574) (-583 "IPF.spad" 949904 949916 950144 950237) (-582 "IPADIC.spad" 949665 949691 949830 949899) (-581 "IP4ADDR.spad" 949222 949230 949655 949660) (-580 "IOMODE.spad" 948843 948851 949212 949217) (-579 "IOBFILE.spad" 948204 948212 948833 948838) (-578 "IOBCON.spad" 948069 948077 948194 948199) (-577 "INVLAPLA.spad" 947714 947730 948059 948064) (-576 "INTTR.spad" 940960 940977 947704 947709) (-575 "INTTOOLS.spad" 938671 938687 940534 940539) (-574 "INTSLPE.spad" 937977 937985 938661 938666) (-573 "INTRVL.spad" 937543 937553 937891 937972) (-572 "INTRF.spad" 935907 935921 937533 937538) (-571 "INTRET.spad" 935339 935349 935897 935902) (-570 "INTRAT.spad" 934014 934031 935329 935334) (-569 "INTPM.spad" 932377 932393 933657 933662) (-568 "INTPAF.spad" 930145 930163 932309 932314) (-567 "INTPACK.spad" 920455 920463 930135 930140) (-566 "INT.spad" 919816 919824 920309 920450) (-565 "INTHERTR.spad" 919082 919099 919806 919811) (-564 "INTHERAL.spad" 918748 918772 919072 919077) (-563 "INTHEORY.spad" 915161 915169 918738 918743) (-562 "INTG0.spad" 908624 908642 915093 915098) (-561 "INTFTBL.spad" 902653 902661 908614 908619) (-560 "INTFACT.spad" 901712 901722 902643 902648) (-559 "INTEF.spad" 900027 900043 901702 901707) (-558 "INTDOM.spad" 898642 898650 899953 900022) (-557 "INTDOM.spad" 897319 897329 898632 898637) (-556 "INTCAT.spad" 895572 895582 897233 897314) (-555 "INTBIT.spad" 895075 895083 895562 895567) (-554 "INTALG.spad" 894257 894284 895065 895070) (-553 "INTAF.spad" 893749 893765 894247 894252) (-552 "INTABL.spad" 892267 892298 892430 892457) (-551 "INT8.spad" 892147 892155 892257 892262) (-550 "INT64.spad" 892026 892034 892137 892142) (-549 "INT32.spad" 891905 891913 892016 892021) (-548 "INT16.spad" 891784 891792 891895 891900) (-547 "INS.spad" 889251 889259 891686 891779) (-546 "INS.spad" 886804 886814 889241 889246) (-545 "INPSIGN.spad" 886238 886251 886794 886799) (-544 "INPRODPF.spad" 885304 885323 886228 886233) (-543 "INPRODFF.spad" 884362 884386 885294 885299) (-542 "INNMFACT.spad" 883333 883350 884352 884357) (-541 "INMODGCD.spad" 882817 882847 883323 883328) (-540 "INFSP.spad" 881102 881124 882807 882812) (-539 "INFPROD0.spad" 880152 880171 881092 881097) (-538 "INFORM.spad" 877313 877321 880142 880147) (-537 "INFORM1.spad" 876938 876948 877303 877308) (-536 "INFINITY.spad" 876490 876498 876928 876933) (-535 "INETCLTS.spad" 876467 876475 876480 876485) (-534 "INEP.spad" 874999 875021 876457 876462) (-533 "INDE.spad" 874728 874745 874989 874994) (-532 "INCRMAPS.spad" 874149 874159 874718 874723) (-531 "INBFILE.spad" 873221 873229 874139 874144) (-530 "INBFF.spad" 868991 869002 873211 873216) (-529 "INBCON.spad" 867279 867287 868981 868986) (-528 "INBCON.spad" 865565 865575 867269 867274) (-527 "INAST.spad" 865226 865234 865555 865560) (-526 "IMPTAST.spad" 864934 864942 865216 865221) (-525 "IMATRIX.spad" 863879 863905 864391 864418) (-524 "IMATQF.spad" 862973 863017 863835 863840) (-523 "IMATLIN.spad" 861578 861602 862929 862934) (-522 "ILIST.spad" 860234 860249 860761 860788) (-521 "IIARRAY2.spad" 859622 859660 859841 859868) (-520 "IFF.spad" 859032 859048 859303 859396) (-519 "IFAST.spad" 858646 858654 859022 859027) (-518 "IFARRAY.spad" 856133 856148 857829 857856) (-517 "IFAMON.spad" 855995 856012 856089 856094) (-516 "IEVALAB.spad" 855384 855396 855985 855990) (-515 "IEVALAB.spad" 854771 854785 855374 855379) (-514 "IDPO.spad" 854569 854581 854761 854766) (-513 "IDPOAMS.spad" 854325 854337 854559 854564) (-512 "IDPOAM.spad" 854045 854057 854315 854320) (-511 "IDPC.spad" 852979 852991 854035 854040) (-510 "IDPAM.spad" 852724 852736 852969 852974) (-509 "IDPAG.spad" 852471 852483 852714 852719) (-508 "IDENT.spad" 852121 852129 852461 852466) (-507 "IDECOMP.spad" 849358 849376 852111 852116) (-506 "IDEAL.spad" 844281 844320 849293 849298) (-505 "ICDEN.spad" 843432 843448 844271 844276) (-504 "ICARD.spad" 842621 842629 843422 843427) (-503 "IBPTOOLS.spad" 841214 841231 842611 842616) (-502 "IBITS.spad" 840413 840426 840850 840877) (-501 "IBATOOL.spad" 837288 837307 840403 840408) (-500 "IBACHIN.spad" 835775 835790 837278 837283) (-499 "IARRAY2.spad" 834763 834789 835382 835409) (-498 "IARRAY1.spad" 833808 833823 833946 833973) (-497 "IAN.spad" 832021 832029 833624 833717) (-496 "IALGFACT.spad" 831622 831655 832011 832016) (-495 "HYPCAT.spad" 831046 831054 831612 831617) (-494 "HYPCAT.spad" 830468 830478 831036 831041) (-493 "HOSTNAME.spad" 830276 830284 830458 830463) (-492 "HOMOTOP.spad" 830019 830029 830266 830271) (-491 "HOAGG.spad" 827287 827297 830009 830014) (-490 "HOAGG.spad" 824330 824342 827054 827059) (-489 "HEXADEC.spad" 822432 822440 822797 822890) (-488 "HEUGCD.spad" 821447 821458 822422 822427) (-487 "HELLFDIV.spad" 821037 821061 821437 821442) (-486 "HEAP.spad" 820429 820439 820644 820671) (-485 "HEADAST.spad" 819960 819968 820419 820424) (-484 "HDP.spad" 809803 809819 810180 810311) (-483 "HDMP.spad" 807015 807030 807633 807760) (-482 "HB.spad" 805252 805260 807005 807010) (-481 "HASHTBL.spad" 803722 803753 803933 803960) (-480 "HASAST.spad" 803438 803446 803712 803717) (-479 "HACKPI.spad" 802921 802929 803340 803433) (-478 "GTSET.spad" 801860 801876 802567 802594) (-477 "GSTBL.spad" 800379 800414 800553 800568) (-476 "GSERIES.spad" 797546 797573 798511 798660) (-475 "GROUP.spad" 796815 796823 797526 797541) (-474 "GROUP.spad" 796092 796102 796805 796810) (-473 "GROEBSOL.spad" 794580 794601 796082 796087) (-472 "GRMOD.spad" 793151 793163 794570 794575) (-471 "GRMOD.spad" 791720 791734 793141 793146) (-470 "GRIMAGE.spad" 784325 784333 791710 791715) (-469 "GRDEF.spad" 782704 782712 784315 784320) (-468 "GRAY.spad" 781163 781171 782694 782699) (-467 "GRALG.spad" 780210 780222 781153 781158) (-466 "GRALG.spad" 779255 779269 780200 780205) (-465 "GPOLSET.spad" 778709 778732 778937 778964) (-464 "GOSPER.spad" 777974 777992 778699 778704) (-463 "GMODPOL.spad" 777112 777139 777942 777969) (-462 "GHENSEL.spad" 776181 776195 777102 777107) (-461 "GENUPS.spad" 772282 772295 776171 776176) (-460 "GENUFACT.spad" 771859 771869 772272 772277) (-459 "GENPGCD.spad" 771443 771460 771849 771854) (-458 "GENMFACT.spad" 770895 770914 771433 771438) (-457 "GENEEZ.spad" 768834 768847 770885 770890) (-456 "GDMP.spad" 765888 765905 766664 766791) (-455 "GCNAALG.spad" 759783 759810 765682 765749) (-454 "GCDDOM.spad" 758955 758963 759709 759778) (-453 "GCDDOM.spad" 758189 758199 758945 758950) (-452 "GB.spad" 755707 755745 758145 758150) (-451 "GBINTERN.spad" 751727 751765 755697 755702) (-450 "GBF.spad" 747484 747522 751717 751722) (-449 "GBEUCLID.spad" 745358 745396 747474 747479) (-448 "GAUSSFAC.spad" 744655 744663 745348 745353) (-447 "GALUTIL.spad" 742977 742987 744611 744616) (-446 "GALPOLYU.spad" 741423 741436 742967 742972) (-445 "GALFACTU.spad" 739588 739607 741413 741418) (-444 "GALFACT.spad" 729721 729732 739578 739583) (-443 "FVFUN.spad" 726744 726752 729711 729716) (-442 "FVC.spad" 725796 725804 726734 726739) (-441 "FUNDESC.spad" 725474 725482 725786 725791) (-440 "FUNCTION.spad" 725323 725335 725464 725469) (-439 "FT.spad" 723616 723624 725313 725318) (-438 "FTEM.spad" 722779 722787 723606 723611) (-437 "FSUPFACT.spad" 721679 721698 722715 722720) (-436 "FST.spad" 719765 719773 721669 721674) (-435 "FSRED.spad" 719243 719259 719755 719760) (-434 "FSPRMELT.spad" 718067 718083 719200 719205) (-433 "FSPECF.spad" 716144 716160 718057 718062) (-432 "FS.spad" 710206 710216 715919 716139) (-431 "FS.spad" 704046 704058 709761 709766) (-430 "FSINT.spad" 703704 703720 704036 704041) (-429 "FSERIES.spad" 702891 702903 703524 703623) (-428 "FSCINT.spad" 702204 702220 702881 702886) (-427 "FSAGG.spad" 701321 701331 702160 702199) (-426 "FSAGG.spad" 700400 700412 701241 701246) (-425 "FSAGG2.spad" 699099 699115 700390 700395) (-424 "FS2UPS.spad" 693582 693616 699089 699094) (-423 "FS2.spad" 693227 693243 693572 693577) (-422 "FS2EXPXP.spad" 692350 692373 693217 693222) (-421 "FRUTIL.spad" 691292 691302 692340 692345) (-420 "FR.spad" 684986 684996 690316 690385) (-419 "FRNAALG.spad" 680073 680083 684928 684981) (-418 "FRNAALG.spad" 675172 675184 680029 680034) (-417 "FRNAAF2.spad" 674626 674644 675162 675167) (-416 "FRMOD.spad" 674020 674050 674557 674562) (-415 "FRIDEAL.spad" 673215 673236 674000 674015) (-414 "FRIDEAL2.spad" 672817 672849 673205 673210) (-413 "FRETRCT.spad" 672328 672338 672807 672812) (-412 "FRETRCT.spad" 671705 671717 672186 672191) (-411 "FRAMALG.spad" 670033 670046 671661 671700) (-410 "FRAMALG.spad" 668393 668408 670023 670028) (-409 "FRAC.spad" 665492 665502 665895 666068) (-408 "FRAC2.spad" 665095 665107 665482 665487) (-407 "FR2.spad" 664429 664441 665085 665090) (-406 "FPS.spad" 661238 661246 664319 664424) (-405 "FPS.spad" 658075 658085 661158 661163) (-404 "FPC.spad" 657117 657125 657977 658070) (-403 "FPC.spad" 656245 656255 657107 657112) (-402 "FPATMAB.spad" 656007 656017 656235 656240) (-401 "FPARFRAC.spad" 654480 654497 655997 656002) (-400 "FORTRAN.spad" 652986 653029 654470 654475) (-399 "FORT.spad" 651915 651923 652976 652981) (-398 "FORTFN.spad" 649085 649093 651905 651910) (-397 "FORTCAT.spad" 648769 648777 649075 649080) (-396 "FORMULA.spad" 646233 646241 648759 648764) (-395 "FORMULA1.spad" 645712 645722 646223 646228) (-394 "FORDER.spad" 645403 645427 645702 645707) (-393 "FOP.spad" 644604 644612 645393 645398) (-392 "FNLA.spad" 644028 644050 644572 644599) (-391 "FNCAT.spad" 642615 642623 644018 644023) (-390 "FNAME.spad" 642507 642515 642605 642610) (-389 "FMTC.spad" 642305 642313 642433 642502) (-388 "FMONOID.spad" 639360 639370 642261 642266) (-387 "FM.spad" 639055 639067 639294 639321) (-386 "FMFUN.spad" 636085 636093 639045 639050) (-385 "FMC.spad" 635137 635145 636075 636080) (-384 "FMCAT.spad" 632791 632809 635105 635132) (-383 "FM1.spad" 632148 632160 632725 632752) (-382 "FLOATRP.spad" 629869 629883 632138 632143) (-381 "FLOAT.spad" 623157 623165 629735 629864) (-380 "FLOATCP.spad" 620574 620588 623147 623152) (-379 "FLINEXP.spad" 620286 620296 620554 620569) (-378 "FLINEXP.spad" 619952 619964 620222 620227) (-377 "FLASORT.spad" 619272 619284 619942 619947) (-376 "FLALG.spad" 616918 616937 619198 619267) (-375 "FLAGG.spad" 613936 613946 616898 616913) (-374 "FLAGG.spad" 610855 610867 613819 613824) (-373 "FLAGG2.spad" 609536 609552 610845 610850) (-372 "FINRALG.spad" 607565 607578 609492 609531) (-371 "FINRALG.spad" 605520 605535 607449 607454) (-370 "FINITE.spad" 604672 604680 605510 605515) (-369 "FINAALG.spad" 593653 593663 604614 604667) (-368 "FINAALG.spad" 582646 582658 593609 593614) (-367 "FILE.spad" 582229 582239 582636 582641) (-366 "FILECAT.spad" 580747 580764 582219 582224) (-365 "FIELD.spad" 580153 580161 580649 580742) (-364 "FIELD.spad" 579645 579655 580143 580148) (-363 "FGROUP.spad" 578254 578264 579625 579640) (-362 "FGLMICPK.spad" 577041 577056 578244 578249) (-361 "FFX.spad" 576416 576431 576757 576850) (-360 "FFSLPE.spad" 575905 575926 576406 576411) (-359 "FFPOLY.spad" 567157 567168 575895 575900) (-358 "FFPOLY2.spad" 566217 566234 567147 567152) (-357 "FFP.spad" 565614 565634 565933 566026) (-356 "FF.spad" 565062 565078 565295 565388) (-355 "FFNBX.spad" 563574 563594 564778 564871) (-354 "FFNBP.spad" 562087 562104 563290 563383) (-353 "FFNB.spad" 560552 560573 561768 561861) (-352 "FFINTBAS.spad" 557966 557985 560542 560547) (-351 "FFIELDC.spad" 555541 555549 557868 557961) (-350 "FFIELDC.spad" 553202 553212 555531 555536) (-349 "FFHOM.spad" 551950 551967 553192 553197) (-348 "FFF.spad" 549385 549396 551940 551945) (-347 "FFCGX.spad" 548232 548252 549101 549194) (-346 "FFCGP.spad" 547121 547141 547948 548041) (-345 "FFCG.spad" 545913 545934 546802 546895) (-344 "FFCAT.spad" 538940 538962 545752 545908) (-343 "FFCAT.spad" 532046 532070 538860 538865) (-342 "FFCAT2.spad" 531791 531831 532036 532041) (-341 "FEXPR.spad" 523500 523546 531547 531586) (-340 "FEVALAB.spad" 523206 523216 523490 523495) (-339 "FEVALAB.spad" 522697 522709 522983 522988) (-338 "FDIV.spad" 522139 522163 522687 522692) (-337 "FDIVCAT.spad" 520181 520205 522129 522134) (-336 "FDIVCAT.spad" 518221 518247 520171 520176) (-335 "FDIV2.spad" 517875 517915 518211 518216) (-334 "FCTRDATA.spad" 516907 516915 517865 517870) (-333 "FCPAK1.spad" 515460 515468 516897 516902) (-332 "FCOMP.spad" 514839 514849 515450 515455) (-331 "FC.spad" 504754 504762 514829 514834) (-330 "FAXF.spad" 497689 497703 504656 504749) (-329 "FAXF.spad" 490676 490692 497645 497650) (-328 "FARRAY.spad" 488822 488832 489859 489886) (-327 "FAMR.spad" 486942 486954 488720 488817) (-326 "FAMR.spad" 485046 485060 486826 486831) (-325 "FAMONOID.spad" 484696 484706 485000 485005) (-324 "FAMONC.spad" 482918 482930 484686 484691) (-323 "FAGROUP.spad" 482524 482534 482814 482841) (-322 "FACUTIL.spad" 480720 480737 482514 482519) (-321 "FACTFUNC.spad" 479896 479906 480710 480715) (-320 "EXPUPXS.spad" 476729 476752 478028 478177) (-319 "EXPRTUBE.spad" 473957 473965 476719 476724) (-318 "EXPRODE.spad" 470829 470845 473947 473952) (-317 "EXPR.spad" 466104 466114 466818 467225) (-316 "EXPR2UPS.spad" 462196 462209 466094 466099) (-315 "EXPR2.spad" 461899 461911 462186 462191) (-314 "EXPEXPAN.spad" 458837 458862 459471 459564) (-313 "EXIT.spad" 458508 458516 458827 458832) (-312 "EXITAST.spad" 458244 458252 458498 458503) (-311 "EVALCYC.spad" 457702 457716 458234 458239) (-310 "EVALAB.spad" 457266 457276 457692 457697) (-309 "EVALAB.spad" 456828 456840 457256 457261) (-308 "EUCDOM.spad" 454370 454378 456754 456823) (-307 "EUCDOM.spad" 451974 451984 454360 454365) (-306 "ESTOOLS.spad" 443814 443822 451964 451969) (-305 "ESTOOLS2.spad" 443415 443429 443804 443809) (-304 "ESTOOLS1.spad" 443100 443111 443405 443410) (-303 "ES.spad" 435647 435655 443090 443095) (-302 "ES.spad" 428100 428110 435545 435550) (-301 "ESCONT.spad" 424873 424881 428090 428095) (-300 "ESCONT1.spad" 424622 424634 424863 424868) (-299 "ES2.spad" 424117 424133 424612 424617) (-298 "ES1.spad" 423683 423699 424107 424112) (-297 "ERROR.spad" 421004 421012 423673 423678) (-296 "EQTBL.spad" 419476 419498 419685 419712) (-295 "EQ.spad" 414269 414279 417068 417180) (-294 "EQ2.spad" 413985 413997 414259 414264) (-293 "EP.spad" 410299 410309 413975 413980) (-292 "ENV.spad" 408951 408959 410289 410294) (-291 "ENTIRER.spad" 408619 408627 408895 408946) (-290 "EMR.spad" 407820 407861 408545 408614) (-289 "ELTAGG.spad" 406060 406079 407810 407815) (-288 "ELTAGG.spad" 404264 404285 406016 406021) (-287 "ELTAB.spad" 403711 403729 404254 404259) (-286 "ELFUTS.spad" 403090 403109 403701 403706) (-285 "ELEMFUN.spad" 402779 402787 403080 403085) (-284 "ELEMFUN.spad" 402466 402476 402769 402774) (-283 "ELAGG.spad" 400409 400419 402446 402461) (-282 "ELAGG.spad" 398289 398301 400328 400333) (-281 "ELABEXPR.spad" 397212 397220 398279 398284) (-280 "EFUPXS.spad" 393988 394018 397168 397173) (-279 "EFULS.spad" 390824 390847 393944 393949) (-278 "EFSTRUC.spad" 388779 388795 390814 390819) (-277 "EF.spad" 383545 383561 388769 388774) (-276 "EAB.spad" 381821 381829 383535 383540) (-275 "E04UCFA.spad" 381357 381365 381811 381816) (-274 "E04NAFA.spad" 380934 380942 381347 381352) (-273 "E04MBFA.spad" 380514 380522 380924 380929) (-272 "E04JAFA.spad" 380050 380058 380504 380509) (-271 "E04GCFA.spad" 379586 379594 380040 380045) (-270 "E04FDFA.spad" 379122 379130 379576 379581) (-269 "E04DGFA.spad" 378658 378666 379112 379117) (-268 "E04AGNT.spad" 374500 374508 378648 378653) (-267 "DVARCAT.spad" 371185 371195 374490 374495) (-266 "DVARCAT.spad" 367868 367880 371175 371180) (-265 "DSMP.spad" 365335 365349 365640 365767) (-264 "DROPT.spad" 359280 359288 365325 365330) (-263 "DROPT1.spad" 358943 358953 359270 359275) (-262 "DROPT0.spad" 353770 353778 358933 358938) (-261 "DRAWPT.spad" 351925 351933 353760 353765) (-260 "DRAW.spad" 344525 344538 351915 351920) (-259 "DRAWHACK.spad" 343833 343843 344515 344520) (-258 "DRAWCX.spad" 341275 341283 343823 343828) (-257 "DRAWCURV.spad" 340812 340827 341265 341270) (-256 "DRAWCFUN.spad" 329984 329992 340802 340807) (-255 "DQAGG.spad" 328152 328162 329952 329979) (-254 "DPOLCAT.spad" 323493 323509 328020 328147) (-253 "DPOLCAT.spad" 318920 318938 323449 323454) (-252 "DPMO.spad" 311146 311162 311284 311585) (-251 "DPMM.spad" 303385 303403 303510 303811) (-250 "DOMTMPLT.spad" 303045 303053 303375 303380) (-249 "DOMCTOR.spad" 302800 302808 303035 303040) (-248 "DOMAIN.spad" 301931 301939 302790 302795) (-247 "DMP.spad" 299189 299204 299761 299888) (-246 "DLP.spad" 298537 298547 299179 299184) (-245 "DLIST.spad" 297116 297126 297720 297747) (-244 "DLAGG.spad" 295527 295537 297106 297111) (-243 "DIVRING.spad" 295069 295077 295471 295522) (-242 "DIVRING.spad" 294655 294665 295059 295064) (-241 "DISPLAY.spad" 292835 292843 294645 294650) (-240 "DIRPROD.spad" 282415 282431 283055 283186) (-239 "DIRPROD2.spad" 281223 281241 282405 282410) (-238 "DIRPCAT.spad" 280165 280181 281087 281218) (-237 "DIRPCAT.spad" 278836 278854 279760 279765) (-236 "DIOSP.spad" 277661 277669 278826 278831) (-235 "DIOPS.spad" 276645 276655 277641 277656) (-234 "DIOPS.spad" 275603 275615 276601 276606) (-233 "DIFRING.spad" 274895 274903 275583 275598) (-232 "DIFRING.spad" 274195 274205 274885 274890) (-231 "DIFEXT.spad" 273354 273364 274175 274190) (-230 "DIFEXT.spad" 272430 272442 273253 273258) (-229 "DIAGG.spad" 272060 272070 272410 272425) (-228 "DIAGG.spad" 271698 271710 272050 272055) (-227 "DHMATRIX.spad" 270002 270012 271155 271182) (-226 "DFSFUN.spad" 263410 263418 269992 269997) (-225 "DFLOAT.spad" 260131 260139 263300 263405) (-224 "DFINTTLS.spad" 258340 258356 260121 260126) (-223 "DERHAM.spad" 256250 256282 258320 258335) (-222 "DEQUEUE.spad" 255568 255578 255857 255884) (-221 "DEGRED.spad" 255183 255197 255558 255563) (-220 "DEFINTRF.spad" 252708 252718 255173 255178) (-219 "DEFINTEF.spad" 251204 251220 252698 252703) (-218 "DEFAST.spad" 250572 250580 251194 251199) (-217 "DECIMAL.spad" 248678 248686 249039 249132) (-216 "DDFACT.spad" 246477 246494 248668 248673) (-215 "DBLRESP.spad" 246075 246099 246467 246472) (-214 "DBASE.spad" 244729 244739 246065 246070) (-213 "DATAARY.spad" 244191 244204 244719 244724) (-212 "D03FAFA.spad" 244019 244027 244181 244186) (-211 "D03EEFA.spad" 243839 243847 244009 244014) (-210 "D03AGNT.spad" 242919 242927 243829 243834) (-209 "D02EJFA.spad" 242381 242389 242909 242914) (-208 "D02CJFA.spad" 241859 241867 242371 242376) (-207 "D02BHFA.spad" 241349 241357 241849 241854) (-206 "D02BBFA.spad" 240839 240847 241339 241344) (-205 "D02AGNT.spad" 235643 235651 240829 240834) (-204 "D01WGTS.spad" 233962 233970 235633 235638) (-203 "D01TRNS.spad" 233939 233947 233952 233957) (-202 "D01GBFA.spad" 233461 233469 233929 233934) (-201 "D01FCFA.spad" 232983 232991 233451 233456) (-200 "D01ASFA.spad" 232451 232459 232973 232978) (-199 "D01AQFA.spad" 231897 231905 232441 232446) (-198 "D01APFA.spad" 231321 231329 231887 231892) (-197 "D01ANFA.spad" 230815 230823 231311 231316) (-196 "D01AMFA.spad" 230325 230333 230805 230810) (-195 "D01ALFA.spad" 229865 229873 230315 230320) (-194 "D01AKFA.spad" 229391 229399 229855 229860) (-193 "D01AJFA.spad" 228914 228922 229381 229386) (-192 "D01AGNT.spad" 224973 224981 228904 228909) (-191 "CYCLOTOM.spad" 224479 224487 224963 224968) (-190 "CYCLES.spad" 221311 221319 224469 224474) (-189 "CVMP.spad" 220728 220738 221301 221306) (-188 "CTRIGMNP.spad" 219218 219234 220718 220723) (-187 "CTOR.spad" 218909 218917 219208 219213) (-186 "CTORKIND.spad" 218512 218520 218899 218904) (-185 "CTORCAT.spad" 217761 217769 218502 218507) (-184 "CTORCAT.spad" 217008 217018 217751 217756) (-183 "CTORCALL.spad" 216588 216596 216998 217003) (-182 "CSTTOOLS.spad" 215831 215844 216578 216583) (-181 "CRFP.spad" 209535 209548 215821 215826) (-180 "CRCEAST.spad" 209255 209263 209525 209530) (-179 "CRAPACK.spad" 208298 208308 209245 209250) (-178 "CPMATCH.spad" 207798 207813 208223 208228) (-177 "CPIMA.spad" 207503 207522 207788 207793) (-176 "COORDSYS.spad" 202396 202406 207493 207498) (-175 "CONTOUR.spad" 201803 201811 202386 202391) (-174 "CONTFRAC.spad" 197415 197425 201705 201798) (-173 "CONDUIT.spad" 197173 197181 197405 197410) (-172 "COMRING.spad" 196847 196855 197111 197168) (-171 "COMPPROP.spad" 196361 196369 196837 196842) (-170 "COMPLPAT.spad" 196128 196143 196351 196356) (-169 "COMPLEX.spad" 190265 190275 190509 190770) (-168 "COMPLEX2.spad" 189978 189990 190255 190260) (-167 "COMPFACT.spad" 189580 189594 189968 189973) (-166 "COMPCAT.spad" 187648 187658 189314 189575) (-165 "COMPCAT.spad" 185444 185456 187112 187117) (-164 "COMMUPC.spad" 185190 185208 185434 185439) (-163 "COMMONOP.spad" 184723 184731 185180 185185) (-162 "COMM.spad" 184532 184540 184713 184718) (-161 "COMMAAST.spad" 184295 184303 184522 184527) (-160 "COMBOPC.spad" 183200 183208 184285 184290) (-159 "COMBINAT.spad" 181945 181955 183190 183195) (-158 "COMBF.spad" 179313 179329 181935 181940) (-157 "COLOR.spad" 178150 178158 179303 179308) (-156 "COLONAST.spad" 177816 177824 178140 178145) (-155 "CMPLXRT.spad" 177525 177542 177806 177811) (-154 "CLLCTAST.spad" 177187 177195 177515 177520) (-153 "CLIP.spad" 173279 173287 177177 177182) (-152 "CLIF.spad" 171918 171934 173235 173274) (-151 "CLAGG.spad" 168403 168413 171908 171913) (-150 "CLAGG.spad" 164759 164771 168266 168271) (-149 "CINTSLPE.spad" 164084 164097 164749 164754) (-148 "CHVAR.spad" 162162 162184 164074 164079) (-147 "CHARZ.spad" 162077 162085 162142 162157) (-146 "CHARPOL.spad" 161585 161595 162067 162072) (-145 "CHARNZ.spad" 161338 161346 161565 161580) (-144 "CHAR.spad" 159206 159214 161328 161333) (-143 "CFCAT.spad" 158522 158530 159196 159201) (-142 "CDEN.spad" 157680 157694 158512 158517) (-141 "CCLASS.spad" 155829 155837 157091 157130) (-140 "CATEGORY.spad" 154919 154927 155819 155824) (-139 "CATCTOR.spad" 154810 154818 154909 154914) (-138 "CATAST.spad" 154428 154436 154800 154805) (-137 "CASEAST.spad" 154142 154150 154418 154423) (-136 "CARTEN.spad" 149245 149269 154132 154137) (-135 "CARTEN2.spad" 148631 148658 149235 149240) (-134 "CARD.spad" 145920 145928 148605 148626) (-133 "CAPSLAST.spad" 145694 145702 145910 145915) (-132 "CACHSET.spad" 145316 145324 145684 145689) (-131 "CABMON.spad" 144869 144877 145306 145311) (-130 "BYTEORD.spad" 144544 144552 144859 144864) (-129 "BYTE.spad" 143969 143977 144534 144539) (-128 "BYTEBUF.spad" 141826 141834 143138 143165) (-127 "BTREE.spad" 140895 140905 141433 141460) (-126 "BTOURN.spad" 139898 139908 140502 140529) (-125 "BTCAT.spad" 139286 139296 139866 139893) (-124 "BTCAT.spad" 138694 138706 139276 139281) (-123 "BTAGG.spad" 137816 137824 138662 138689) (-122 "BTAGG.spad" 136958 136968 137806 137811) (-121 "BSTREE.spad" 135693 135703 136565 136592) (-120 "BRILL.spad" 133888 133899 135683 135688) (-119 "BRAGG.spad" 132812 132822 133878 133883) (-118 "BRAGG.spad" 131700 131712 132768 132773) (-117 "BPADICRT.spad" 129681 129693 129936 130029) (-116 "BPADIC.spad" 129345 129357 129607 129676) (-115 "BOUNDZRO.spad" 129001 129018 129335 129340) (-114 "BOP.spad" 124125 124133 128991 128996) (-113 "BOP1.spad" 121545 121555 124115 124120) (-112 "BOOLEAN.spad" 120977 120985 121535 121540) (-111 "BMODULE.spad" 120689 120701 120945 120972) (-110 "BITS.spad" 120108 120116 120325 120352) (-109 "BINDING.spad" 119519 119527 120098 120103) (-108 "BINARY.spad" 117630 117638 117986 118079) (-107 "BGAGG.spad" 116827 116837 117610 117625) (-106 "BGAGG.spad" 116032 116044 116817 116822) (-105 "BFUNCT.spad" 115596 115604 116012 116027) (-104 "BEZOUT.spad" 114730 114757 115546 115551) (-103 "BBTREE.spad" 111549 111559 114337 114364) (-102 "BASTYPE.spad" 111221 111229 111539 111544) (-101 "BASTYPE.spad" 110891 110901 111211 111216) (-100 "BALFACT.spad" 110330 110343 110881 110886) (-99 "AUTOMOR.spad" 109777 109786 110310 110325) (-98 "ATTREG.spad" 106496 106503 109529 109772) (-97 "ATTRBUT.spad" 102519 102526 106476 106491) (-96 "ATTRAST.spad" 102236 102243 102509 102514) (-95 "ATRIG.spad" 101706 101713 102226 102231) (-94 "ATRIG.spad" 101174 101183 101696 101701) (-93 "ASTCAT.spad" 101078 101085 101164 101169) (-92 "ASTCAT.spad" 100980 100989 101068 101073) (-91 "ASTACK.spad" 100313 100322 100587 100614) (-90 "ASSOCEQ.spad" 99113 99124 100269 100274) (-89 "ASP9.spad" 98194 98207 99103 99108) (-88 "ASP8.spad" 97237 97250 98184 98189) (-87 "ASP80.spad" 96559 96572 97227 97232) (-86 "ASP7.spad" 95719 95732 96549 96554) (-85 "ASP78.spad" 95170 95183 95709 95714) (-84 "ASP77.spad" 94539 94552 95160 95165) (-83 "ASP74.spad" 93631 93644 94529 94534) (-82 "ASP73.spad" 92902 92915 93621 93626) (-81 "ASP6.spad" 91769 91782 92892 92897) (-80 "ASP55.spad" 90278 90291 91759 91764) (-79 "ASP50.spad" 88095 88108 90268 90273) (-78 "ASP4.spad" 87390 87403 88085 88090) (-77 "ASP49.spad" 86389 86402 87380 87385) (-76 "ASP42.spad" 84796 84835 86379 86384) (-75 "ASP41.spad" 83375 83414 84786 84791) (-74 "ASP35.spad" 82363 82376 83365 83370) (-73 "ASP34.spad" 81664 81677 82353 82358) (-72 "ASP33.spad" 81224 81237 81654 81659) (-71 "ASP31.spad" 80364 80377 81214 81219) (-70 "ASP30.spad" 79256 79269 80354 80359) (-69 "ASP29.spad" 78722 78735 79246 79251) (-68 "ASP28.spad" 69995 70008 78712 78717) (-67 "ASP27.spad" 68892 68905 69985 69990) (-66 "ASP24.spad" 67979 67992 68882 68887) (-65 "ASP20.spad" 67443 67456 67969 67974) (-64 "ASP1.spad" 66824 66837 67433 67438) (-63 "ASP19.spad" 61510 61523 66814 66819) (-62 "ASP12.spad" 60924 60937 61500 61505) (-61 "ASP10.spad" 60195 60208 60914 60919) (-60 "ARRAY2.spad" 59555 59564 59802 59829) (-59 "ARRAY1.spad" 58390 58399 58738 58765) (-58 "ARRAY12.spad" 57059 57070 58380 58385) (-57 "ARR2CAT.spad" 52721 52742 57027 57054) (-56 "ARR2CAT.spad" 48403 48426 52711 52716) (-55 "ARITY.spad" 47775 47782 48393 48398) (-54 "APPRULE.spad" 47019 47041 47765 47770) (-53 "APPLYORE.spad" 46634 46647 47009 47014) (-52 "ANY.spad" 45491 45498 46624 46629) (-51 "ANY1.spad" 44562 44571 45481 45486) (-50 "ANTISYM.spad" 43001 43017 44542 44557) (-49 "ANON.spad" 42694 42701 42991 42996) (-48 "AN.spad" 40995 41002 42510 42603) (-47 "AMR.spad" 39174 39185 40893 40990) (-46 "AMR.spad" 37190 37203 38911 38916) (-45 "ALIST.spad" 34602 34623 34952 34979) (-44 "ALGSC.spad" 33725 33751 34474 34527) (-43 "ALGPKG.spad" 29434 29445 33681 33686) (-42 "ALGMFACT.spad" 28623 28637 29424 29429) (-41 "ALGMANIP.spad" 26079 26094 28456 28461) (-40 "ALGFF.spad" 24394 24421 24611 24767) (-39 "ALGFACT.spad" 23515 23525 24384 24389) (-38 "ALGEBRA.spad" 23348 23357 23471 23510) (-37 "ALGEBRA.spad" 23213 23224 23338 23343) (-36 "ALAGG.spad" 22723 22744 23181 23208) (-35 "AHYP.spad" 22104 22111 22713 22718) (-34 "AGG.spad" 20413 20420 22094 22099) (-33 "AGG.spad" 18686 18695 20369 20374) (-32 "AF.spad" 17111 17126 18621 18626) (-31 "ADDAST.spad" 16789 16796 17101 17106) (-30 "ACPLOT.spad" 15360 15367 16779 16784) (-29 "ACFS.spad" 13111 13120 15262 15355) (-28 "ACFS.spad" 10948 10959 13101 13106) (-27 "ACF.spad" 7550 7557 10850 10943) (-26 "ACF.spad" 4238 4247 7540 7545) (-25 "ABELSG.spad" 3779 3786 4228 4233) (-24 "ABELSG.spad" 3318 3327 3769 3774) (-23 "ABELMON.spad" 2861 2868 3308 3313) (-22 "ABELMON.spad" 2402 2411 2851 2856) (-21 "ABELGRP.spad" 2067 2074 2392 2397) (-20 "ABELGRP.spad" 1730 1739 2057 2062) (-19 "A1AGG.spad" 870 879 1698 1725) (-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 dba73988..794b9022 100644
--- a/src/share/algebra/category.daase
+++ b/src/share/algebra/category.daase
@@ -1,6 +1,6 @@
-(188029 . 3453749799)
-(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) #0#) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(188029 . 3453990502)
+(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) #0#) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
((((-566)) . T) (($) -2805 (|has| |#1| (-308)) (|has| |#1| (-365)) (|has| |#1| (-351)) (|has| |#1| (-558))) (((-409 (-566))) -2805 (|has| |#1| (-365)) (|has| |#1| (-351)) (|has| |#1| (-1038 (-409 (-566))))) ((|#1|) . T))
(((|#2| |#2|) . T))
((((-566)) . T))
@@ -51,12 +51,12 @@
(((|#1|) . T) (((-566)) |has| |#1| (-1038 (-566))) (((-409 (-566))) |has| |#1| (-1038 (-409 (-566)))))
(-2805 (|has| |#2| (-172)) (|has| |#2| (-454)) (|has| |#2| (-558)) (|has| |#2| (-909)))
(-2805 (|has| |#1| (-172)) (|has| |#1| (-454)) (|has| |#1| (-558)) (|has| |#1| (-909)))
-(((|#2| (-484 (-2997 |#1|) (-771))) . T))
+(((|#2| (-484 (-3020 |#1|) (-771))) . T))
(((|#1| (-533 (-1175))) . T))
(((#0=(-870 |#1|) #0#) . T) ((#1=(-409 (-566)) #1#) . T) (($ $) . T))
((((-1157)) . T) (((-958 (-129))) . T) (((-862)) . T))
((((-862)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(|has| |#4| (-370))
(|has| |#3| (-370))
(((|#1|) . T))
@@ -73,7 +73,7 @@
((((-566)) . T) (((-409 (-566))) -2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566))))) ((|#2|) . T) (($) -2805 (|has| |#2| (-454)) (|has| |#2| (-558)) (|has| |#2| (-909))) (((-864 |#1|)) . T))
(-2805 (|has| |#1| (-365)) (|has| |#1| (-558)))
(-2805 (|has| |#1| (-365)) (|has| |#1| (-558)))
-((((-2 (|:| -2168 |#1|) (|:| -3250 |#2|))) . T))
+((((-2 (|:| -2208 |#1|) (|:| -2456 |#2|))) . T))
((($) . T))
((((-566)) . T) (((-409 (-566))) -2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))) ((|#1|) . T) (($) -2805 (|has| |#1| (-454)) (|has| |#1| (-558)) (|has| |#1| (-909))) (((-1175)) . T))
((((-862)) -2805 (|has| |#1| (-613 (-862))) (|has| |#1| (-850)) (|has| |#1| (-1099))))
@@ -129,7 +129,7 @@
(((|#1|) . T) (((-409 (-566))) |has| |#1| (-38 (-409 (-566)))) (($) . T))
(-2805 (|has| |#1| (-850)) (|has| |#1| (-1099)))
(((|#1|) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-566)) . T))
((((-862)) . T))
(((|#1| |#2|) . T))
@@ -268,8 +268,8 @@
(((|#1|) . T))
((((-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) (((-566)) |has| |#1| (-1038 (-566))) ((|#1|) . T))
(((|#1|) . T) (((-566)) |has| |#1| (-639 (-566))))
-(((|#2|) . T) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
-(((|#1|) . T) (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
+(((|#2|) . T) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
(|has| |#1| (-558))
((((-566)) -2805 (|has| |#4| (-172)) (|has| |#4| (-848)) (-12 (|has| |#4| (-1038 (-566))) (|has| |#4| (-1099))) (|has| |#4| (-1049))) ((|#4|) -2805 (|has| |#4| (-172)) (|has| |#4| (-1099))) (((-409 (-566))) -12 (|has| |#4| (-1038 (-409 (-566)))) (|has| |#4| (-1099))))
((((-566)) -2805 (|has| |#3| (-172)) (|has| |#3| (-848)) (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099))) (|has| |#3| (-1049))) ((|#3|) -2805 (|has| |#3| (-172)) (|has| |#3| (-1099))) (((-409 (-566))) -12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099))))
@@ -298,11 +298,11 @@
((((-538)) |has| |#2| (-614 (-538))) (((-892 (-381))) |has| |#2| (-614 (-892 (-381)))) (((-892 (-566))) |has| |#2| (-614 (-892 (-566)))))
((((-862)) . T))
(((|#1| |#2| |#3| |#4|) . T))
-((((-2 (|:| -2168 |#1|) (|:| -3250 |#2|))) . T) (((-862)) . T))
+((((-2 (|:| -2208 |#1|) (|:| -2456 |#2|))) . T) (((-862)) . T))
((((-538)) |has| |#1| (-614 (-538))) (((-892 (-381))) |has| |#1| (-614 (-892 (-381)))) (((-892 (-566))) |has| |#1| (-614 (-892 (-566)))))
(((|#4|) -2805 (|has| |#4| (-172)) (|has| |#4| (-365)) (|has| |#4| (-1049))) (($) |has| |#4| (-172)))
(((|#3|) -2805 (|has| |#3| (-172)) (|has| |#3| (-365)) (|has| |#3| (-1049))) (($) |has| |#3| (-172)))
-((((-2 (|:| -2168 |#1|) (|:| -3250 |#2|))) . T))
+((((-2 (|:| -2208 |#1|) (|:| -2456 |#2|))) . T))
((((-862)) . T))
((((-862)) . T))
((((-538)) . T) (((-566)) . T) (((-892 (-566))) . T) (((-381)) . T) (((-225)) . T))
@@ -310,7 +310,7 @@
(((|#1|) . T) (((-566)) |has| |#1| (-1038 (-566))) (((-409 (-566))) |has| |#1| (-1038 (-409 (-566)))))
((($) . T) (((-409 (-566))) |has| |#2| (-38 (-409 (-566)))) ((|#2|) . T))
((((-409 $) (-409 $)) |has| |#2| (-558)) (($ $) . T) ((|#2| |#2|) . T))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) . T))
(((|#1|) . T))
(|has| |#2| (-909))
((((-1157) (-52)) . T))
@@ -349,7 +349,7 @@
(((|#1|) . T))
(((|#2| |#2|) . T))
(|has| |#1| (-1150))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
(|has| (-1250 |#1| |#2| |#3| |#4|) (-145))
(|has| (-1250 |#1| |#2| |#3| |#4|) (-147))
(|has| |#1| (-145))
@@ -367,10 +367,10 @@
((($) . T) ((|#1|) . T))
(((|#2|) |has| |#2| (-1049)))
((((-862)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) #0#) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) #0#) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
(((|#1|) . T))
-((((-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699)))) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((#0=(-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) #0#) |has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))))
+((((-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699)))) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((#0=(-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) #0#) |has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))))
((((-862)) . T))
((((-566) |#1|) . T))
((((-538)) -12 (|has| |#1| (-614 (-538))) (|has| |#2| (-614 (-538)))) (((-892 (-381))) -12 (|has| |#1| (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381))))) (((-892 (-566))) -12 (|has| |#1| (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566))))))
@@ -488,12 +488,12 @@
((((-144)) . T))
(((|#3|) |has| |#3| (-1099)) (((-566)) -12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099))) (((-409 (-566))) -12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099))))
((((-862)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#1|) . T))
((((-862)) -2805 (|has| |#1| (-613 (-862))) (|has| |#1| (-850)) (|has| |#1| (-1099))))
((((-538)) |has| |#1| (-614 (-538))))
(((|#1|) |has| |#1| (-172)))
-((((-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) . T))
+((((-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) . T))
(|has| |#1| (-365))
((((-1180)) . T))
(((|#1|) . T))
@@ -504,13 +504,13 @@
(|has| |#1| (-848))
(-2805 (|has| |#1| (-850)) (|has| |#1| (-1099)))
((((-862)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-538)) |has| |#1| (-614 (-538))))
(((|#1| |#2|) . T))
((((-1175)) -12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175)))))
((((-1157) |#1|) . T))
(((|#1| |#2| |#3| (-533 |#3|)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(|has| |#1| (-370))
(|has| |#1| (-370))
(|has| |#1| (-370))
@@ -726,7 +726,7 @@
((((-1139 |#1| |#2|)) |has| (-1139 |#1| |#2|) (-310 (-1139 |#1| |#2|))))
(((|#4| |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))
(((|#3| |#3|) -12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))))
-(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
(((|#2|) . T) (((-566)) |has| |#2| (-1038 (-566))) (((-409 (-566))) |has| |#2| (-1038 (-409 (-566)))))
(((|#1|) . T))
(((|#1| |#2|) . T))
@@ -735,7 +735,7 @@
(((|#2|) . T))
(((|#3|) . T))
(-2805 (|has| |#1| (-850)) (|has| |#1| (-1099)))
-(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
(((|#2|) . T))
((((-862)) -2805 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-613 (-862))) (|has| |#2| (-172)) (|has| |#2| (-365)) (|has| |#2| (-370)) (|has| |#2| (-726)) (|has| |#2| (-793)) (|has| |#2| (-848)) (|has| |#2| (-1049)) (|has| |#2| (-1099))) (((-1264 |#2|)) . T))
((((-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((|#1|) . T) (((-566)) . T) (($) . T))
@@ -834,9 +834,9 @@
(-2805 (|has| |#1| (-454)) (|has| |#1| (-909)))
((((-566) |#2|) . T))
((((-862)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))
((($) -2805 (|has| |#3| (-172)) (|has| |#3| (-848)) (|has| |#3| (-1049))) ((|#3|) -2805 (|has| |#3| (-172)) (|has| |#3| (-365)) (|has| |#3| (-1049))))
((((-566) |#1|) . T))
@@ -851,11 +851,11 @@
(|has| |#1| (-558))
(|has| |#1| (-38 (-409 (-566))))
(|has| |#1| (-38 (-409 (-566))))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-862)) . T))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
(|has| |#1| (-38 (-409 (-566))))
-((((-390) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
+((((-390) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
(|has| |#1| (-38 (-409 (-566))))
(|has| |#2| (-1150))
(-2805 (|has| |#1| (-365)) (|has| |#1| (-558)))
@@ -1070,7 +1070,7 @@
(|has| |#1| (-147))
(|has| |#1| (-145))
(|has| |#4| (-848))
-(((|#2| (-240 (-2997 |#1|) (-771)) (-864 |#1|)) . T))
+(((|#2| (-240 (-3020 |#1|) (-771)) (-864 |#1|)) . T))
(|has| |#3| (-848))
(((|#1| (-533 |#3|) |#3|) . T))
(|has| |#1| (-147))
@@ -1091,7 +1091,7 @@
(|has| |#2| (-172))
(((|#1| |#2|) . T))
(-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))
-(((|#2|) . T) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(-2805 (|has| |#3| (-793)) (|has| |#3| (-848)))
(-2805 (|has| |#3| (-793)) (|has| |#3| (-848)))
((((-862)) . T))
@@ -1122,10 +1122,10 @@
(((|#1| (-409 (-566))) . T))
(((|#3|) . T) (((-612 $)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-566)) -2805 (|has| |#2| (-172)) (|has| |#2| (-848)) (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) (|has| |#2| (-1049))) ((|#2|) -2805 (|has| |#2| (-172)) (|has| |#2| (-1099))) (((-409 (-566))) -12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099))))
(((|#1|) . T) (((-409 (-566))) . T) (($) . T))
((($ $) . T) ((|#2| $) . T))
@@ -1134,8 +1134,8 @@
((((-862)) . T))
((((-862)) . T))
(((|#1| |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
-(((|#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) |has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))))
+(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
+(((|#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) |has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))))
((((-862)) . T))
(((|#1|) . T))
(((|#3| |#3|) . T))
@@ -1151,7 +1151,7 @@
(|has| |#1| (-1099))
(((|#2| |#2|) -2805 (|has| |#2| (-172)) (|has| |#2| (-365)) (|has| |#2| (-1049))) (($ $) |has| |#2| (-172)))
(((|#2|) -2805 (|has| |#2| (-172)) (|has| |#2| (-365))))
-((((-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T) ((|#1| |#2|) . T))
+((((-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T) ((|#1| |#2|) . T))
(((|#2|) -2805 (|has| |#2| (-172)) (|has| |#2| (-365)) (|has| |#2| (-1049))) (($) |has| |#2| (-172)))
((((-566)) . T))
((((-1180)) . T))
@@ -1195,7 +1195,7 @@
(-2805 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-365)) (|has| |#2| (-370)) (|has| |#2| (-726)) (|has| |#2| (-793)) (|has| |#2| (-848)) (|has| |#2| (-1049)) (|has| |#2| (-1099)))
(-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))
(|has| |#2| (-1150))
-(((#0=(-52)) . T) (((-2 (|:| -2010 (-1175)) (|:| -2818 #0#))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2050 (-1175)) (|:| -2849 #0#))) . T))
(((|#1| |#2|) . T))
(-2805 (|has| |#3| (-172)) (|has| |#3| (-848)) (|has| |#3| (-1049)))
(((|#1| (-566) (-1081)) . T))
@@ -1224,7 +1224,7 @@
(((|#4|) . T) (((-862)) . T))
(((|#3|) . T) ((|#2|) . T) (($) -2805 (|has| |#4| (-172)) (|has| |#4| (-848)) (|has| |#4| (-1049))) (((-566)) . T) ((|#4|) -2805 (|has| |#4| (-172)) (|has| |#4| (-365)) (|has| |#4| (-1049))))
(((|#2|) . T) (($) -2805 (|has| |#3| (-172)) (|has| |#3| (-848)) (|has| |#3| (-1049))) (((-566)) . T) ((|#3|) -2805 (|has| |#3| (-172)) (|has| |#3| (-365)) (|has| |#3| (-1049))))
-(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) #0#) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) #0#) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
(|has| |#1| (-558))
(((|#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))
((((-862)) . T))
@@ -1284,7 +1284,7 @@
(-12 (|has| |#1| (-793)) (|has| |#2| (-793)))
(-2805 (|has| |#2| (-172)) (|has| |#2| (-848)) (|has| |#2| (-1049)))
((($) . T) (((-566)) . T) ((|#2|) . T))
-(((|#2|) . T) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#2|) . T) (($) . T))
(|has| |#1| (-1199))
(((#0=(-566) #0#) . T) ((#1=(-409 (-566)) #1#) . T) (($ $) . T))
@@ -1315,7 +1315,7 @@
((($) . T) (((-409 (-566))) -2805 (|has| |#1| (-365)) (|has| |#1| (-351))) ((|#1|) . T))
(-2805 (|has| |#1| (-172)) (|has| |#1| (-558)))
((($) . T))
-(((#0=(-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) #0#) |has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))))
+(((#0=(-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) #0#) |has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))))
((($) . T))
((($) . T))
(((|#2|) |has| |#2| (-1099)))
@@ -1331,10 +1331,10 @@
((((-566)) |has| #0=(-409 |#2|) (-639 (-566))) ((#0#) . T))
((($) . T) (((-566)) . T))
((((-566) (-144)) . T))
-((((-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T) ((|#1| |#2|) . T))
+((((-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T) ((|#1| |#2|) . T))
((((-409 (-566))) . T) (($) . T))
(((|#1|) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-862)) . T))
((((-910 |#1|)) . T))
(|has| |#1| (-365))
@@ -1363,7 +1363,7 @@
((((-862)) . T))
((($) . T))
(((|#2|) . T) (($) . T))
-((((-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T) ((|#1| |#2|) . T))
+((((-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T) ((|#1| |#2|) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-172)))
((($) |has| |#1| (-558)) ((|#1|) |has| |#1| (-172)) (((-409 (-566))) |has| |#1| (-38 (-409 (-566)))))
@@ -1378,7 +1378,7 @@
((((-538)) |has| |#1| (-614 (-538))) (((-892 (-381))) |has| |#1| (-614 (-892 (-381)))) (((-892 (-566))) |has| |#1| (-614 (-892 (-566)))))
((((-862)) . T))
((((-870 |#1|)) . T) (($) . T) (((-409 (-566))) . T))
-(((|#2|) . T) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-508)) . T))
(|has| |#2| (-848))
((((-508)) . T))
@@ -1413,7 +1413,7 @@
(((|#1|) . T))
((((-1175)) |has| (-409 |#2|) (-900 (-1175))))
(((|#2|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) #0#) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) #0#) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
((((-409 (-566))) |has| |#2| (-38 (-409 (-566)))) ((|#2|) |has| |#2| (-172)) (($) -2805 (|has| |#2| (-454)) (|has| |#2| (-558)) (|has| |#2| (-909))))
((((-409 (-566))) |has| |#2| (-38 (-409 (-566)))) ((|#2|) . T) (($) -2805 (|has| |#2| (-172)) (|has| |#2| (-454)) (|has| |#2| (-558)) (|has| |#2| (-909))))
((((-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((|#1|) |has| |#1| (-172)) (($) -2805 (|has| |#1| (-454)) (|has| |#1| (-558)) (|has| |#1| (-909))))
@@ -1430,7 +1430,7 @@
(((|#2|) . T) (((-566)) . T))
((((-862)) . T))
((((-862)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T) ((|#2|) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T) ((|#2|) . T))
((((-862)) . T))
((((-862)) . T))
((((-1157) (-1175) (-566) (-225) (-862)) . T))
@@ -1521,7 +1521,7 @@
((((-999 |#1|)) . T) ((|#1|) . T))
((((-862)) . T))
((((-862)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-409 (-566))) . T) (((-409 |#1|)) . T) ((|#1|) . T) (($) . T))
(((|#1| (-1171 |#1|)) . T))
((((-566)) . T) (($) . T) (((-409 (-566))) . T))
@@ -1530,7 +1530,7 @@
(((|#1|) . T) (((-566)) . T) (($) . T))
(((|#2|) . T))
((((-566)) . T) (($) . T) (((-409 (-566))) . T))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
((((-862)) -2805 (|has| |#1| (-613 (-862))) (|has| |#1| (-1099))))
((((-566) |#2|) . T))
(((|#1|) . T) (((-409 (-566))) . T) (((-566)) . T) (($) . T))
@@ -1544,7 +1544,7 @@
(|has| |#1| (-38 (-409 (-566))))
(|has| |#1| (-38 (-409 (-566))))
((((-1256 |#1| |#2| |#3|)) |has| |#1| (-365)))
-(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) #0#) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) #0#) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
(((|#2| |#2|) . T))
(|has| |#1| (-1099))
(|has| |#1| (-38 (-409 (-566))))
@@ -1589,7 +1589,7 @@
(((|#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))
(((|#1| |#2|) . T))
((((-566) (-144)) . T))
-(((#0=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) #0#) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))
+(((#0=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) #0#) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))
((($) -2805 (|has| |#1| (-454)) (|has| |#1| (-558)) (|has| |#1| (-909))) ((|#1|) |has| |#1| (-172)) (((-409 (-566))) |has| |#1| (-38 (-409 (-566)))))
(|has| |#1| (-850))
(((|#2| (-771) (-1081)) . T))
@@ -1642,7 +1642,7 @@
((((-390) (-1157)) . T))
((($) |has| |#1| (-558)) ((|#1|) |has| |#1| (-172)) (((-409 (-566))) |has| |#1| (-38 (-409 (-566)))))
((((-862)) -2805 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-613 (-862))) (|has| |#2| (-172)) (|has| |#2| (-365)) (|has| |#2| (-370)) (|has| |#2| (-726)) (|has| |#2| (-793)) (|has| |#2| (-848)) (|has| |#2| (-1049)) (|has| |#2| (-1099))) (((-1264 |#2|)) . T))
-(((#0=(-52)) . T) (((-2 (|:| -2010 (-1157)) (|:| -2818 #0#))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2050 (-1157)) (|:| -2849 #0#))) . T))
(((|#1|) . T))
((((-862)) . T))
(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))
@@ -1672,7 +1672,7 @@
((((-862)) . T))
((((-862)) . T))
(|has| |#1| (-1099))
-(((|#2| (-484 (-2997 |#1|) (-771)) (-864 |#1|)) . T))
+(((|#2| (-484 (-3020 |#1|) (-771)) (-864 |#1|)) . T))
((((-409 (-566))) . #0=(|has| |#2| (-365))) (($) . #0#))
(((|#1| (-533 (-1175)) (-1175)) . T))
(((|#1|) . T))
@@ -1693,12 +1693,12 @@
(((|#2|) |has| |#2| (-172)))
(((|#1|) . T))
(((|#2|) . T))
-(((|#1|) . T) (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#2|) . T))
-((((-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) . T))
+((((-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) . T))
((((-1173 |#1| |#2| |#3|)) |has| |#1| (-365)))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-1175) (-52)) . T))
((($ $) . T))
(((|#1| (-566)) . T))
@@ -1748,11 +1748,11 @@
(-2805 (|has| |#1| (-365)) (|has| |#1| (-351)))
(|has| |#1| (-38 (-409 (-566))))
(|has| |#1| (-38 (-409 (-566))))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-1175)) |has| |#1| (-900 (-1175))) (((-1081)) . T))
(((|#1|) . T))
(|has| |#1| (-848))
-(((#0=(-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) #0#) |has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))))
+(((#0=(-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) #0#) |has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))))
(((|#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))
(|has| |#1| (-1099))
((((-862)) . T) (((-1180)) . T))
@@ -1812,7 +1812,7 @@
(((|#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))
(((|#1|) . T))
(((|#1| |#2|) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((#0=(-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) #0#) |has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))))
+(((|#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((#0=(-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) #0#) |has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))))
(-2805 (|has| |#2| (-454)) (|has| |#2| (-909)))
(-2805 (|has| |#1| (-454)) (|has| |#1| (-909)))
(((|#1|) . T) (($) . T))
@@ -1837,7 +1837,7 @@
((((-409 (-566))) -2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-365))) (($) -2805 (|has| |#1| (-365)) (|has| |#1| (-558))) (((-1173 |#1| |#2| |#3|)) |has| |#1| (-365)) ((|#1|) |has| |#1| (-172)))
(((|#1|) |has| |#1| (-172)) (((-409 (-566))) -2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-365))) (($) -2805 (|has| |#1| (-365)) (|has| |#1| (-558))))
((($) |has| |#1| (-558)) ((|#1|) |has| |#1| (-172)) (((-409 (-566))) |has| |#1| (-38 (-409 (-566)))))
-((((-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) . T))
+((((-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) . T))
((((-409 |#2|)) . T) (((-409 (-566))) . T) (($) . T))
((((-672 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
@@ -1915,7 +1915,7 @@
((((-862)) . T))
((((-862)) . T))
((($ $) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((($ $) . T))
((((-566) (-112)) . T))
((($) . T))
@@ -1944,7 +1944,7 @@
(((|#1| (-1228 |#1| |#2| |#3|)) . T))
(((|#1| (-771)) . T))
(((|#1|) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-862)) . T))
(|has| |#1| (-1099))
((((-1157) |#1|) . T))
@@ -1991,7 +1991,7 @@
((($) -2805 (|has| |#1| (-172)) (|has| |#1| (-365)) (|has| |#1| (-558))) (((-409 (-566))) -2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-365))) (((-1173 |#1| |#2| |#3|)) |has| |#1| (-365)) ((|#1|) . T))
(((|#1|) . T) (($) -2805 (|has| |#1| (-172)) (|has| |#1| (-365)) (|has| |#1| (-558))) (((-409 (-566))) -2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-365))))
((($) -2805 (|has| |#1| (-172)) (|has| |#1| (-558))) ((|#1|) . T) (((-409 (-566))) |has| |#1| (-38 (-409 (-566)))))
-(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
(((|#1|) |has| |#1| (-172)))
((((-862)) . T))
((($) |has| |#1| (-558)) ((|#1|) |has| |#1| (-172)) (((-409 (-566))) |has| |#1| (-38 (-409 (-566)))))
@@ -2015,7 +2015,7 @@
(|has| |#1| (-848))
(((|#1| (-566) (-1081)) . T))
(-2805 (|has| |#1| (-900 (-1175))) (|has| |#1| (-1049)))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#1| (-409 (-566)) (-1081)) . T))
(((|#1| (-771) (-1081)) . T))
(|has| |#1| (-850))
@@ -2034,11 +2034,11 @@
(|has| |#1| (-1099))
((((-566)) -12 (|has| |#1| (-365)) (|has| |#2| (-639 (-566)))) ((|#2|) |has| |#1| (-365)))
(-2805 (|has| |#2| (-25)) (|has| |#2| (-131)) (|has| |#2| (-172)) (|has| |#2| (-365)) (|has| |#2| (-370)) (|has| |#2| (-726)) (|has| |#2| (-793)) (|has| |#2| (-848)) (|has| |#2| (-1049)) (|has| |#2| (-1099)))
-((((-689 (-341 (-2523) (-2523 (QUOTE X) (QUOTE HESS)) (-699)))) . T))
+((((-689 (-341 (-3791) (-3791 (QUOTE X) (QUOTE HESS)) (-699)))) . T))
(((|#2|) |has| |#2| (-172)))
(((|#1|) |has| |#1| (-172)))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
((((-862)) . T))
(|has| |#3| (-848))
((((-862)) . T))
@@ -2054,11 +2054,11 @@
((($) . T) ((|#1|) . T) (((-409 (-566))) |has| |#1| (-365)))
(|has| |#1| (-850))
(((|#1|) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#1|) . T) (((-566)) . T))
(((|#2|) . T))
((((-566)) . T) ((|#3|) . T))
-((((-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) |has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))))
+((((-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) |has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))))
(-2805 (|has| |#1| (-454)) (|has| |#1| (-909)))
(((|#2|) . T) (((-566)) |has| |#2| (-639 (-566))))
((((-862)) . T))
@@ -2117,7 +2117,7 @@
((((-644 |#1|)) . T))
(|has| |#1| (-909))
(((|#2|) |has| |#2| (-1049)))
-(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
(|has| |#1| (-365))
(((|#1|) |has| |#1| (-172)))
(((|#1| |#1|) . T))
@@ -2169,7 +2169,7 @@
(((|#1| |#2|) . T))
((($) . T) (((-566)) . T) (((-409 (-566))) . T))
((((-566)) . T) (($) . T) (((-409 (-566))) . T))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) . T))
(((|#1|) . T) (((-409 (-566))) . T) (((-566)) . T) (($) . T))
(((|#1|) . T) (((-409 (-566))) . T) (((-566)) . T) (($) . T))
(((|#1|) . T) (((-409 (-566))) . T) (((-566)) . T) (($) . T))
@@ -2183,7 +2183,7 @@
(((|#2|) . T))
((($) . T) (((-566)) . T) (((-409 (-566))) -2805 (|has| |#1| (-365)) (|has| |#1| (-351))) ((|#1|) . T))
((((-566) |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
((((-381)) . T))
((((-699)) . T))
((((-409 (-566))) . #0=(|has| |#2| (-365))) (($) . #0#))
@@ -2200,7 +2200,7 @@
(|has| |#1| (-365))
((((-1175)) |has| |#2| (-900 (-1175))))
((((-862)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-409 (-566))) . T) (($) . T))
(|has| |#1| (-475))
(|has| |#1| (-370))
@@ -2228,12 +2228,12 @@
(|has| |#1| (-38 (-409 (-566))))
(|has| |#1| (-38 (-409 (-566))))
(|has| |#1| (-850))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
(((|#1| |#2|) . T))
((($) . T) (((-566)) . T))
(|has| |#1| (-147))
(|has| |#1| (-145))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) ((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) ((|#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))
(((|#2|) . T))
(((|#3|) . T))
((((-116 |#1|)) . T))
@@ -2253,7 +2253,7 @@
((((-538)) |has| |#1| (-614 (-538))) (((-892 (-566))) |has| |#1| (-614 (-892 (-566)))) (((-892 (-381))) |has| |#1| (-614 (-892 (-381)))) (((-381)) . #0=(|has| |#1| (-1022))) (((-225)) . #0#))
(((|#1|) |has| |#1| (-365)))
((((-862)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((($ $) . T) (((-612 $) $) . T))
(-2805 (|has| |#1| (-365)) (|has| |#1| (-558)))
((($) . T) (((-1250 |#1| |#2| |#3| |#4|)) . T) (((-409 (-566))) . T))
@@ -2326,7 +2326,7 @@
((((-952 |#1|)) . T) (((-862)) . T))
(((|#3|) . T))
(((|#1| |#1|) . T) (($ $) -2805 (|has| |#1| (-291)) (|has| |#1| (-365))) ((#0=(-409 (-566)) #0#) |has| |#1| (-365)))
-((((-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) . T))
+((((-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) . T))
((((-952 |#1|)) . T))
((($) . T))
((((-566) |#1|) . T))
@@ -2373,7 +2373,7 @@
((($) -2805 (|has| |#1| (-365)) (|has| |#1| (-351))) (((-409 (-566))) -2805 (|has| |#1| (-365)) (|has| |#1| (-351))) ((|#1|) . T))
((((-566)) . T))
(|has| |#1| (-38 (-409 (-566))))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) |has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) |has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))))
(((|#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))
(|has| |#1| (-848))
(|has| |#1| (-38 (-409 (-566))))
@@ -2416,10 +2416,10 @@
((($) -2805 (|has| |#1| (-172)) (|has| |#1| (-365)) (|has| |#1| (-454)) (|has| |#1| (-558)) (|has| |#1| (-909))) ((|#1|) . T) (((-409 (-566))) |has| |#1| (-38 (-409 (-566)))))
((((-538)) |has| |#4| (-614 (-538))))
((((-862)) . T) (((-644 |#4|)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#1|) . T))
(|has| |#1| (-848))
-(((|#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) |has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))))
+(((|#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) |has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))))
(|has| |#1| (-1099))
(|has| |#1| (-365))
(((|#1|) . T))
@@ -2464,7 +2464,7 @@
((((-862)) . T))
((((-862)) . T))
((((-538)) |has| |#1| (-614 (-538))))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-566)) . T) (($) . T) (((-409 (-566))) . T))
((((-1175) |#1|) |has| |#1| (-516 (-1175) |#1|)) ((|#1| |#1|) |has| |#1| (-310 |#1|)))
(((|#1|) -2805 (|has| |#1| (-172)) (|has| |#1| (-365))))
@@ -2503,7 +2503,7 @@
(|has| |#1| (-558))
(((|#2|) . T))
((((-566)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#1|) . T))
(-2805 (|has| |#1| (-145)) (|has| |#1| (-147)) (|has| |#1| (-172)) (|has| |#1| (-558)) (|has| |#1| (-1049)))
(((|#1| (-59 |#1|) (-59 |#1|)) . T))
@@ -2514,7 +2514,7 @@
((($) . T))
(((|#1|) . T))
((((-862)) . T))
-(((|#2|) |has| |#2| (-6 (-4419 "*"))))
+(((|#2|) |has| |#2| (-6 (-4416 "*"))))
(((|#1|) . T))
(((|#1|) . T))
((($) . T))
@@ -2636,22 +2636,22 @@
(((|#2|) . T))
(((|#4| |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))
(((|#2|) . T))
-(((|#2|) -2805 (|has| |#2| (-6 (-4419 "*"))) (|has| |#2| (-172))))
+(((|#2|) -2805 (|has| |#2| (-6 (-4416 "*"))) (|has| |#2| (-172))))
(-2805 (|has| |#2| (-454)) (|has| |#2| (-558)) (|has| |#2| (-909)))
(-2805 (|has| |#1| (-454)) (|has| |#1| (-558)) (|has| |#1| (-909)))
(|has| |#2| (-909))
(|has| |#1| (-909))
(((|#2|) |has| |#2| (-172)))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-1256 |#1| |#2| |#3|)) |has| |#1| (-365)))
((((-862)) . T))
((((-862)) . T))
((((-538)) . T) (((-566)) . T) (((-892 (-566))) . T) (((-381)) . T) (((-225)) . T))
(((|#1| |#2|) . T))
((($) . T) (((-566)) . T))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) . T))
(((|#1|) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-862)) . T))
(((|#1| |#2|) . T))
((($) . T) (((-566)) . T))
@@ -2673,7 +2673,7 @@
((((-862)) . T))
((((-862)) . T))
((((-187)) . T) (((-862)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#2| |#2|) . T) ((|#1| |#1|) . T))
((((-862)) . T))
((((-862)) . T))
@@ -2686,7 +2686,7 @@
((((-862)) . T))
((((-1157)) . T))
((((-1175) |#1|) |has| |#1| (-516 (-1175) |#1|)) ((|#1| |#1|) |has| |#1| (-310 |#1|)))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
(|has| |#1| (-850))
((((-862)) . T))
((((-538)) |has| |#1| (-614 (-538))))
@@ -2748,8 +2748,8 @@
(-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))
(-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))
(-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))
-((((-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) . T))
-(((#0=(-52)) . T) (((-2 (|:| -2010 (-1175)) (|:| -2818 #0#))) . T))
+((((-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2050 (-1175)) (|:| -2849 #0#))) . T))
(|has| |#1| (-351))
((((-566)) . T))
((((-862)) . T))
@@ -2835,7 +2835,7 @@
(|has| |#2| (-1022))
((($) . T))
(|has| |#1| (-909))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((($) . T))
(((|#2|) . T))
(((|#1|) . T))
@@ -2858,12 +2858,12 @@
((((-566)) . T) (($) . T))
((((-566)) . T) (($) . T))
((((-771) |#1|) . T))
-(((|#2| (-240 (-2997 |#1|) (-771))) . T))
+(((|#2| (-240 (-3020 |#1|) (-771))) . T))
(((|#1| (-533 |#3|)) . T))
((((-409 (-566))) . T))
(-2805 (|has| |#1| (-454)) (|has| |#1| (-558)) (|has| |#1| (-909)))
((((-1157)) . T) (((-862)) . T))
-(((#0=(-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) #0#) |has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))))
+(((#0=(-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) #0#) |has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))))
((((-1157)) . T))
(|has| |#1| (-909))
(|has| |#2| (-365))
@@ -2901,7 +2901,7 @@
(((|#2|) |has| |#1| (-365)))
(((|#2|) |has| |#1| (-365)))
((((-566)) . T) (($) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-172)))
(((|#1|) . T))
@@ -2947,9 +2947,9 @@
(((|#2|) . T))
(((|#2|) . T))
(-2805 (|has| |#2| (-172)) (|has| |#2| (-726)) (|has| |#2| (-848)) (|has| |#2| (-1049)))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(|has| |#1| (-38 (-409 (-566))))
(((|#1| |#2|) . T))
(|has| |#1| (-38 (-409 (-566))))
@@ -3081,7 +3081,7 @@
(|has| |#2| (-365))
((((-583 |#1|)) . T) (((-409 (-566))) . T) (($) . T) (((-566)) . T))
((((-566)) . T) (((-409 (-566))) . T) (($) . T))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) . T))
(((|#1|) . T))
(((|#1|) . T) (((-566)) . T))
(((|#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))
@@ -3115,7 +3115,7 @@
(((|#1|) . T))
(((|#1|) . T))
((($) . T) (((-409 (-566))) . T))
-(((|#2|) |has| |#2| (-6 (-4419 "*"))))
+(((|#2|) |has| |#2| (-6 (-4416 "*"))))
(((|#1|) . T))
((((-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((|#1|) . T) (((-566)) . T))
(((|#1|) . T))
@@ -3143,7 +3143,7 @@
((($) -2805 (|has| |#1| (-172)) (|has| |#1| (-454)) (|has| |#1| (-558)) (|has| |#1| (-909))) ((|#1|) . T) (((-409 (-566))) |has| |#1| (-38 (-409 (-566)))))
((((-862)) . T))
(((|#1|) . T))
-((((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) . T))
+((((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -3228,7 +3228,7 @@
(((|#1|) . T))
(((|#1|) |has| |#1| (-172)))
(((|#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))
-(((|#2|) -2805 (|has| |#2| (-6 (-4419 "*"))) (|has| |#2| (-172))))
+(((|#2|) -2805 (|has| |#2| (-6 (-4416 "*"))) (|has| |#2| (-172))))
(((|#2|) . T))
(|has| |#1| (-365))
(((|#2|) . T))
@@ -3274,7 +3274,7 @@
(((|#1|) . T))
((((-862)) . T))
(|has| |#2| (-909))
-((((-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) . T))
+((((-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) . T))
((((-538)) |has| |#2| (-614 (-538))) (((-892 (-381))) |has| |#2| (-614 (-892 (-381)))) (((-892 (-566))) |has| |#2| (-614 (-892 (-566)))))
((((-862)) . T))
((((-862)) . T))
@@ -3317,7 +3317,7 @@
((((-409 |#2|) |#3|) . T))
(((|#1|) . T))
(|has| |#1| (-1099))
-(((|#2| (-484 (-2997 |#1|) (-771))) . T))
+(((|#2| (-484 (-3020 |#1|) (-771))) . T))
((((-566) |#1|) . T))
((((-1157)) . T) (((-862)) . T))
(((|#2| |#2|) . T))
@@ -3376,7 +3376,7 @@
((((-1175)) -12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049))))
(((|#1|) . T))
(|has| |#1| (-233))
-(((|#2| (-240 (-2997 |#1|) (-771))) . T))
+(((|#2| (-240 (-3020 |#1|) (-771))) . T))
(((|#1| (-533 |#3|)) . T))
(|has| |#1| (-370))
(|has| |#1| (-370))
@@ -3465,7 +3465,7 @@
((((-1213)) . T) (((-862)) . T) (((-1180)) . T))
((((-1180)) . T))
((((-1180)) . T))
-((((-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) |has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))))
+((((-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) |has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))))
(-2805 (|has| |#2| (-454)) (|has| |#2| (-558)) (|has| |#2| (-909)))
((((-566) |#1|) . T))
((((-566) |#1|) . T))
@@ -3672,7 +3672,7 @@
(-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793))))
((((-566)) . T))
((((-566)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(((|#1| |#2|) . T))
(((|#1|) . T))
(-2805 (|has| |#2| (-172)) (|has| |#2| (-726)) (|has| |#2| (-848)) (|has| |#2| (-1049)))
@@ -3779,11 +3779,11 @@
((((-1173 |#1| |#2| |#3|)) |has| |#1| (-365)))
((((-1139 |#1| |#2|)) . T))
((((-1173 |#1| |#2| |#3|)) |has| |#1| (-365)))
-(((|#2|) . T) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
-((((-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) . T))
+(((|#2|) . T) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
+((((-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) . T))
((($) . T))
(|has| |#1| (-1022))
-(((|#2|) . T) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
((((-862)) . T))
((((-538)) |has| |#2| (-614 (-538))) (((-892 (-566))) |has| |#2| (-614 (-892 (-566)))) (((-892 (-381))) |has| |#2| (-614 (-892 (-381)))) (((-381)) . #0=(|has| |#2| (-1022))) (((-225)) . #0#))
((((-295 |#3|)) . T))
@@ -3838,7 +3838,7 @@
((((-862)) . T))
((((-862)) . T))
(((|#1| (-533 |#2|)) . T))
-((((-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) . T))
+((((-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) . T))
((((-566) (-129)) . T))
(((|#1| (-566)) . T))
(((|#1| (-409 (-566))) . T))
@@ -3875,7 +3875,7 @@
(((|#1| |#2|) . T))
((((-1157) |#1|) . T))
((((-409 |#2|)) . T))
-((((-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T))
+((((-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T))
(|has| |#1| (-558))
(|has| |#1| (-558))
((($) . T) ((|#2|) . T))
@@ -3909,7 +3909,7 @@
(((|#1| |#2| |#3| |#4|) . T))
(((#0=(-1139 |#1| |#2|) #0#) |has| (-1139 |#1| |#2|) (-310 (-1139 |#1| |#2|))))
(((|#1|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) #0#) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((#0=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) #0#) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))))
(((#0=(-116 |#1|)) |has| #0# (-310 #0#)))
((($ $) . T))
(-2805 (|has| |#1| (-850)) (|has| |#1| (-1099)))
diff --git a/src/share/algebra/compress.daase b/src/share/algebra/compress.daase
index 3d47dfeb..e3dfad8b 100644
--- a/src/share/algebra/compress.daase
+++ b/src/share/algebra/compress.daase
@@ -1,6 +1,6 @@
-(30 . 3453749791)
-(4420 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
+(30 . 3453990493)
+(4417 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
ATTRIBUTE |package| |domain| |category| CATEGORY |nobranch| AND |Join|
|ofType| SIGNATURE "failed" "algebra" |OneDimensionalArrayAggregate&|
|OneDimensionalArrayAggregate| |AbelianGroup&| |AbelianGroup|
@@ -478,664 +478,661 @@
|XPolynomial| |XPolynomialRing| |XRecursivePolynomial|
|ParadoxicalCombinatorsForStreams| |ZeroDimensionalSolvePackage|
|IntegerLinearDependence| |IntegerMod| |Enumeration| |Mapping|
- |Record| |Union| |leftTraceMatrix| |pr2dmp| |minordet| |d01akf|
- |monicLeftDivide| |shellSort| |baseRDE| |iicos| |printStats!|
- |tubePoints| |internalDecompose| |qqq| |module| |hasHi|
- |limitedIntegrate| |zRange| |cyclic?| |numberOfFactors| |minus!|
- |expr| |numberOfComputedEntries| |musserTrials|
- |monicCompleteDecompose| |nextPrimitiveNormalPoly| |addPoint|
- |prinshINFO| |map!| |constantLeft| |double?| |redPo|
- |basisOfLeftAnnihilator| |approxNthRoot| |lazyVariations| |localAbs|
- |getOperator| |qsetelt!| |fractionFreeGauss!| |Lazard2|
- |explicitlyFinite?| |eyeDistance| |taylorIfCan| |dn| |iiGamma|
- |copies| |OMputObject| |hermiteH| |refine| |predicates| |sqfrFactor|
- |abs| |shrinkable| |solveLinearPolynomialEquation| |nthExponent|
- |tensorProduct| |e01sff| |generalLambert| |variable| |squareMatrix|
- |s17dgf| |patternMatch| |coerceS| |finite?| |d01gbf| |errorKind|
- |symbol| |restorePrecision| |monomials| |byte| |iterators| |ord|
- |halfExtendedResultant2| |algebraicDecompose| |algebraic?|
- |squareFree| |certainlySubVariety?| |point| |eigenMatrix| |expression|
- |nextPrimitivePoly| |reduceLODE| |resize| |someBasis|
- |setScreenResolution3D| |mat| |primlimintfrac| |acsch| |integer|
- |option?| |acotIfCan| |findConstructor| |coefChoose| |lquo| |dark|
- |semiIndiceSubResultantEuclidean| |readInt16!| |iteratedInitials|
- |reverseLex| |hasTopPredicate?| |int| |expenseOfEvaluation|
- |exprHasAlgebraicWeight| |collectUnder| |cylindrical| |wrregime|
- |series| |dmp2rfi| |csch2sinh| |reindex| |acscIfCan| |cothIfCan|
- |iicot| |stoseInvertibleSetsqfreg| |basisOfRightAnnihilator| |split!|
- |OMputEndAttr| |outputBinaryFile| |lprop| |balancedFactorisation|
- |e04ycf| |iiasin| |extendedint| ** |equality| |resultantEuclidean|
- |doubleResultant| |radicalSimplify| |expenseOfEvaluationIF| |delete!|
- |changeBase| |cCsch| |algebraicVariables| |clipWithRanges|
- |quadratic?| |complexSolve| |problemPoints| |port| |symmetricProduct|
- |cAcot| |orbits| |failed?| |KrullNumber| |padecf| |min|
- |cyclicSubmodule| |fmecg| |distance| |commonDenominator| |s17akf|
- |chebyshevT| |preprocess| |aQuartic| |children| |colorFunction|
- |realRoots| |LagrangeInterpolation| |dot| |gcdcofactprim| |t|
- |torsionIfCan| |label| |error| |makeFR| |close!| |chineseRemainder|
- |Lazard| |particularSolution| |innerEigenvectors| |complexLimit|
- |interpretString| |f02xef| |triangularSystems| |heapSort|
- |setProperties| |principalIdeal| |selectsecond|
- |semiResultantEuclidean1| |s18acf| |assert| |showTypeInOutput|
- |generators| |integral?| |pastel| |removeCosSq| |connect|
- |rightRegularRepresentation| |lowerCase| |s17aff| |numberOfCycles|
- |makeResult| |stoseLastSubResultant| |dflist|
- |semiDiscriminantEuclidean| |nativeModuleExtension| |numberOfHues|
- |attributeData| |reorder| |substring?| |errorInfo| |sylvesterMatrix|
- |differentialVariables| |karatsubaDivide| |concat!| |psolve|
- |fractRagits| |quasiMonic?| |mkcomm| |rightUnits| |tubeRadiusDefault|
- |coth2tanh| |mainContent| |noKaratsuba| |sayLength| |vark| |power!|
- |optional?| |pushdown| |swap| |credPol| |zerosOf| |suffix?|
- |subscript| |bringDown| |radicalEigenvalues| |sumOfSquares|
- |ListOfTerms| |e04mbf| |binomial| |primitivePart!| |listBranches|
- |idealSimplify| |OMclose| |iiacos| |createPrimitivePoly| |terms|
- |drawCurves| |makeSketch| |mainSquareFreePart| |constructor|
- |linearPart| |createPrimitiveElement| |swap!| |cLog| |fractionPart|
- |prefix?| |graphCurves| |singularitiesOf| |copy!| |maxIndex| |hspace|
- |antiCommutative?| |represents| |complexZeros| |s21bcf| |adjoint|
- |normDeriv2| |resultant| |sub| |option| |rk4| |palglimint0|
- |laguerreL| |explimitedint| |norm| |polar| |sizeLess?| |palgLODE0|
- |iomode| |solveInField| |complexExpand| |pleskenSplit|
- |polarCoordinates| |s15adf| |outputGeneral| |createRandomElement|
- |nthExpon| |OMParseError?| |viewSizeDefault| |absolutelyIrreducible?|
- |solveLinear| |roughEqualIdeals?| |OMgetBVar| |negative?| |recip|
- |subMatrix| |setMaxPoints| |c06frf| |extendIfCan| |lagrange|
- |checkRur| |supersub| |setlast!| |rombergo| |pToDmp| |seed| |d01asf|
- |lazyGintegrate| |iibinom| |mvar| |determinant| |rightTrim| |addiag|
- |clearTheSymbolTable| |setPoly| |e02bef| |s14abf| |purelyAlgebraic?|
- |quote| |ceiling| |noncommutativeJordanAlgebra?| |permutations|
- |outputAsScript| |leftTrim| |curveColor| |sortConstraints| |infix?|
- |atom?| |bubbleSort!| |thenBranch| |f02abf| |setFieldInfo| |increment|
- |nextIrreduciblePoly| |nthRootIfCan| |karatsubaOnce| |cCosh|
- |countRealRootsMultiple| |mask| |lastSubResultant| |curveColorPalette|
- |ridHack1| |stopTableInvSet!| |reducedSystem| |pointSizeDefault|
- |readInt32!| |OMputVariable| |irreducibleFactors| |sparsityIF|
- |associates?| |generic?| |cycleTail| |hexDigit?| |rangePascalTriangle|
- |univariatePolynomials| |condition| |integralBasisAtInfinity|
- |jordanAdmissible?| |euclideanNormalForm| |remainder| |superscript|
- |compiledFunction| |factorSquareFreePolynomial| |hue|
- |numberOfPrimitivePoly| |constantIfCan| |OMsetEncoding| |randomLC|
- |create3Space| |comment| |constant| |multMonom| |symmetricRemainder|
- |leftRemainder| |doubleDisc|
- |rewriteSetByReducingWithParticularGenerators| |cAsin| |iipow|
- |wordInStrongGenerators| |mpsode| |extendedEuclidean| |makeSin|
- |atrapezoidal| |firstDenom| |removeZeroes| |iiacsch| RF2UTS |lifting1|
- |close| |d02ejf| |changeNameToObjf| |eisensteinIrreducible?|
- |expandTrigProducts| |linearlyDependentOverZ?| |printCode|
- |genericRightDiscriminant| |elseBranch| |bindings| |lepol| |positive?|
- |orthonormalBasis| |subPolSet?| |initiallyReduce|
- |genericLeftTraceForm| |primPartElseUnitCanonical!| |kind|
- |drawToScale| |c06eaf| |even?| |cExp| |legendre| |f02awf| |display|
- |changeVar| |s17ajf| |minPoints| |ranges| |f02agf| |iisec|
- |intPatternMatch| |getGoodPrime| |op| |makeprod|
- |isAbsolutelyIrreducible?| |setchildren!| |pattern| |packageCall|
- |ignore?| |complexEigenvectors| |fixedPoint| |simplifyExp|
- |palgintegrate| |cCsc| |e02ddf| |varList| |fill!| |simplifyLog|
- |presub| |karatsuba| |mightHaveRoots| |zeroSetSplit| |isobaric?|
- |d01bbf| |mantissa| |f07fdf| |OMputBind| |pade| |df2mf|
- |wordInGenerators| |writeInt8!| |enqueue!| |laplacian|
- |algebraicCoefficients?| |dmpToP| |symbol?| |badValues| |badNum|
- |modifyPoint| |splitLinear| |OMgetEndBind| |cschIfCan| |rotatez|
- |eigenvalues| |digamma| |iiatan| |maxPoints| |setButtonValue|
- |printStatement| |clipPointsDefault| |increase| |resultantnaif|
- |retract| |symmetricDifference| |input| |message| |upperCase|
- |linSolve| |resultantReduitEuclidean| |c06fqf| |middle|
- |fortranCarriageReturn| |getBadValues| |showArrayValues| |deepExpand|
- |lllp| |cos2sec| |library| |space| |s18aef| |push!| |crushedSet|
- |integer?| |anfactor| |fortranLiteral| |redPol| |numericalIntegration|
- |union| UTS2UP |separateFactors| |palgRDE| |finiteBound|
- |useNagFunctions| |tanQ| |unrankImproperPartitions0| |checkForZero|
- |imagi| |nil?| |adaptive?| |tanh2coth| |inconsistent?| |universe|
- |genericRightTrace| |horizConcat| |initials| |mappingAst| |mr|
- |skewSFunction| |ODESolve| |compose| |LiePoly| |c06gqf| |cartesian|
- |paraboloidal| |df2fi| |compile| |palginfieldint| |gcdPrimitive|
- |power| |euclideanSize| |OMgetInteger| |rightExtendedGcd|
- |wordsForStrongGenerators| |trigs| |se2rfi| |set| |adaptive| |rank|
- |Nul| |e02akf| |partialNumerators|
- |removeRoughlyRedundantFactorsInContents| |constantToUnaryFunction|
- |cons| |nextsousResultant2| |shade| |wreath| |rotate| |algSplitSimple|
- |quadratic| |startTableInvSet!| |symFunc| |elRow1!| |maximumExponent|
- |deleteProperty!| |mulmod| |backOldPos| |oddlambert|
- |subResultantGcdEuclidean| |componentUpperBound| |trunc| |clipSurface|
- |leftCharacteristicPolynomial| |s13acf| |augment| |userOrdered?|
- |constantOpIfCan| |OMgetType| |e02zaf| |isPlus| |moebius| |chebyshevU|
- |sinIfCan| |flagFactor| |rdHack1| |numberOfImproperPartitions|
- |nthCoef| |SturmHabicht| |fortranCharacter| |inc|
- |solveLinearPolynomialEquationByRecursion| |merge!| |OMputFloat|
- |mirror| |pureLex| |cSin| |decreasePrecision| |mindeg|
- |trailingCoefficient| |ode2| |bipolar| |plus| |divideExponents|
- |var1StepsDefault| |setRow!| |assign| |compdegd| |truncate|
- |leftScalarTimes!| |randnum| |topFortranOutputStack|
- |lineColorDefault| |laguerre| |exponential| |modifyPointData|
- |perfectNthRoot| |deref| |froot| |testDim| |qPot| |maxrank|
- |divergence| |trim| |coerceP| |toScale| |setFormula!|
- |linearAssociatedExp| |possiblyInfinite?| |acosIfCan| |lists|
- |cycleEntry| |minColIndex| |diagonal| |linearAssociatedOrder|
- |polyPart| |dimension| |applyRules| |iterationVar| |monic?|
- |sumOfKthPowerDivisors| |printInfo| |parabolicCylindrical| |bit?|
- |points| |coord| |splitDenominator| |d01alf| |brillhartTrials|
- |indices| |times| |relativeApprox| |integralBasis| |trapezoidalo|
- |member?| |nonSingularModel| |regularRepresentation| |bernoulliB|
- |leftDivide| |continuedFraction| |permanent|
- |exprHasLogarithmicWeights| |specialTrigs| |optimize|
- |internalAugment| |extend| |createIrreduciblePoly| |plus!|
- |drawComplexVectorField| |expt| |digit?| |cup| |collectUpper|
- |symmetricPower| |firstNumer| |halfExtendedSubResultantGcd1|
- |littleEndian| |inrootof| |binary| |mkPrim| |symbolIfCan|
- |uncouplingMatrices| |superHeight| |returnType!| |node|
- |perfectSquare?| |balancedBinaryTree| |initial| |mdeg|
- |createLowComplexityNormalBasis| |characteristicPolynomial|
- |listConjugateBases| |arity| |monom| |f01mcf| |parametersOf|
- |writable?| |e01bef| |f04arf| |hostByteOrder| |complete|
- |monicDecomposeIfCan| |e02daf| |polygon| |f02adf| |sqfree|
- |whitePoint| |OMgetSymbol| |freeOf?| |monicModulo| |denominators|
- |functionIsContinuousAtEndPoints| |clearTheFTable| |float?| |sdf2lst|
- |complexElementary| |basisOfNucleus| |basis| |movedPoints|
- |lazyPseudoDivide| |basisOfCentroid| |central?| |common| |Vectorise|
- |hclf| |ptFunc| |biRank| |byteBuffer| |pmintegrate| |setProperties!|
- |extensionDegree| |formula| |makeTerm| |c02aff| |f04asf|
- |extractBottom!| |hcrf| |key| |principal?| |rCoord| |factorOfDegree|
- |lexTriangular| |uniform01| |definingEquations| |mainMonomials|
- |super| |nextColeman| |OMputEndBind| |objectOf| |coefficient|
- |computeBasis| |d01aqf| |vectorise| |groebner?| |goodPoint| |filename|
- |FormatArabic| |writeByte!| |inverseLaplace| |conjugate| |region|
- |isOp| |selectPDERoutines| |ScanFloatIgnoreSpacesIfCan| |imagE|
- |SturmHabichtMultiple| |startStats!| |index?| |internal?| |nrows|
- |zoom| |imagK| |tableau| |lazyPseudoRemainder| |iisqrt2| |parse|
- |pointLists| |overbar| |partialDenominators| |oblateSpheroidal|
- |ncols| |factorAndSplit| |squareFreePolynomial| |dominantTerm|
- |integralCoordinates| |FormatRoman| |solid?| |leftUnit|
- |normalElement| |doubleRank| |ip4Address| |integralMatrix|
- |constantOperator| |createMultiplicationTable|
- |useEisensteinCriterion?| |lyndonIfCan| |sin2csc| |eval| |f01ref|
- |zeroSetSplitIntoTriangularSystems| |setStatus| |midpoints| |besselI|
- |leadingCoefficientRicDE| |equation| |e02bdf| |typeList| |rightTrace|
- |d01anf| |printHeader| |iiacsc| |OMlistSymbols| |factorSquareFree|
- |bezoutDiscriminant| |symmetric?| |createThreeSpace| |clikeUniv|
- |f04adf| |rubiksGroup| |measure| |arrayStack| |setright!|
- |OMconnInDevice| |var2Steps| EQ |kmax| |fixedDivisor| |diag|
- |addPointLast| |makeCrit| |antisymmetric?|
- |semiResultantReduitEuclidean| |child?| |composites| |janko2|
- |compBound| |duplicates| |commutative?| |normalDenom| |sinh2csch|
- |isMult| |rootPoly| |monomialIntPoly| |setLabelValue| |datalist|
- |completeHermite| |OMputSymbol| |getDatabase| |rightDivide| |tRange|
- |f01qcf| |rischDE| |s18adf| |find| |definingPolynomial|
- |stopTableGcd!| |stop| |recoverAfterFail| |brillhartIrreducible?|
- |mapExponents| |prod| |airyAi| |selectfirst| |curve| |alphabetic|
- |extension| |SFunction| |zero| |mathieu11| |expandLog|
- |constantKernel| |areEquivalent?| |generalPosition| |evenlambert|
- |localIntegralBasis| |genericLeftNorm| |youngGroup| |dmpToHdmp| |pquo|
- |unit?| |multiplyCoefficients| |fibonacci| |palgextint| |bottom!|
- |LazardQuotient| |ruleset| |genericRightMinimalPolynomial| |minIndex|
- |d02gbf| |sylvesterSequence| |And| |cAsinh| |properties| |reflect|
- |corrPoly| |index| |taylorQuoByVar| |rootOf| |bandedJacobian|
- |totalfract| |numFunEvals3D| |stopMusserTrials| |pow| |deleteRoutine!|
- |Or| |OMwrite| |reciprocalPolynomial| |lfextlimint| |is?| |eulerE|
- |translate| |lcm| |sequence| |revert| |subscriptedVariables|
- |OMputError| |innerint| |Not| |cAcos|
- |purelyAlgebraicLeadingMonomial?| |beauzamyBound|
- |permutationRepresentation| |changeName| |zeroDimPrime?| |suchThat|
- |setleaves!| |identitySquareMatrix| |imagI| |delete|
- |quasiMonicPolynomials| |stoseIntegralLastSubResultant| |alternating|
- |iisin| |pair| |imports| |append| |d01fcf| |hconcat| |iCompose|
- |value| |pseudoQuotient| |unravel| |integers| |s19acf| |var1Steps|
- |fortranLiteralLine| |OMputAttr| |linears| |magnitude| |gcd| |airyBi|
- |mainCoefficients| |bfEntry| |critBonD| |cAcosh| |npcoef| |powerSum|
- |mainKernel| |cycleSplit!| |conditionsForIdempotents| |fixedPoints|
- |false| |subresultantSequence| |complexNumericIfCan| |OMconnectTCP|
- |nullary?| |setRealSteps| |rk4f| |argument| |setsubMatrix!| |f01rcf|
- |repSq| |nodeOf?| |outputAsTex| |partialQuotients| |tower|
- |mapUnivariate| |LyndonBasis| |implies| |overlabel| |setImagSteps|
- |cosSinInfo| |bitTruth| |inR?| |closedCurve| |rightPower| |setnext!|
- |maxPoints3D| |decomposeFunc| |rowEchelonLocal| |iicoth|
- |totalGroebner| |unknownEndian| |leftExactQuotient|
- |removeIrreducibleRedundantFactors| |rewriteIdealWithHeadRemainder|
- |dequeue| |viewport2D| |graeffe| |iiasinh| |interpret| |getOperands|
- |addmod| |perfectSqrt| |stack| |quasiRegular| |normalForm|
- |collectQuasiMonic| |OMputString| |indiceSubResultantEuclidean|
- |leadingExponent| |shiftLeft| |edf2ef| |nodes| |ffactor|
- |factorSquareFreeByRecursion| |eulerPhi| |parabolic| |mix| |direction|
- |dim| |splitSquarefree| |explicitlyEmpty?| |readByte!|
- |stosePrepareSubResAlgo| |extendedSubResultantGcd| |returnTypeOf|
- |rootPower| |rightUnit| |swapColumns!| |complexNumeric| |cot2trig|
- |zeroVector| |belong?| |genericRightNorm| |squareFreeLexTriangular|
- |leftOne| |palgextint0| |lazyPremWithDefault| |meshFun2Var| |d01gaf|
- |factorFraction| |rootProduct| |iflist2Result| |logpart| |leftRecip|
- |setLegalFortranSourceExtensions| |interpolate| |edf2df| |kernels|
- |OMencodingUnknown| |constantCoefficientRicDE| |OMReadError?|
- |palgint0| |rightTraceMatrix| |multiset| |printingInfo?| |unitNormal|
- |torsion?| |startTable!| |polynomialZeros| |leftExtendedGcd|
- |bernoulli| |operator| |intcompBasis| |lazy?| |recolor| |color|
- |build| |sample| |infRittWu?| |alphabetic?| |iisinh| |log10| |divide|
- |character?| |solveRetract| |multinomial| |postfix| |digit|
- |prindINFO| |iiabs| |surface| |selectOrPolynomials| |tanIfCan|
- |univariate| |bitand| |csubst| |squareFreeFactors| |cCoth|
- |stoseInvertibleSetreg| |rightRank| |irreducible?| |setValue!|
- |groebSolve| |symmetricSquare| |algDsolve| |bitior| |solve|
- |basisOfMiddleNucleus| |top!| |gensym| |cap| |nextLatticePermutation|
- |modTree| |degreeSubResultant| |numFunEvals|
- |rewriteIdealWithRemainder| |rischDEsys| F |sorted?|
- |tryFunctionalDecomposition| |normalise| |solve1| |printInfo!| |rk4qc|
- |prolateSpheroidal| |intersect| |factor| |viewThetaDefault| |f02akf|
- |subHeight| |s17dcf| |OMputInteger| |e04naf| |roughBase?|
- |algebraicOf| |irreducibleFactor| |mainMonomial| |sqrt| |scan|
- |members| |status| |cfirst| |listOfMonoms| |discriminant|
- |inputOutputBinaryFile| |headRemainder| |decimal| |null|
- |makeViewport3D| |search| |triangSolve| |simpleBounds?| |real|
- |indiceSubResultant| |doubleComplex?| |center| |selectPolynomials|
- |unitsColorDefault| |PollardSmallFactor| |SturmHabichtSequence|
- |tubeRadius| |not| |invertIfCan| |queue| |radicalEigenvector| |imag|
- |generalTwoFactor| |cyclePartition| |ldf2lst| |move| |getStream|
- |euler| |s21baf| |and| |dihedral| |directProduct|
- |tryFunctionalDecomposition?| |nullSpace| |splitNodeOf!|
- |numericalOptimization| |leviCivitaSymbol| |separateDegrees|
- |diagonalProduct| |subspace| |generalizedContinuumHypothesisAssumed?|
- |or| |perspective| |wholePart| |setTex!| |csc2sin| |hitherPlane|
- |leftZero| |groebnerIdeal| |bigEndian| |bumprow| |iiexp| |xor|
- |branchPointAtInfinity?| |host| |generalizedInverse| |brace|
- |putColorInfo| |approxSqrt| |binomThmExpt| |OMencodingSGML| |updatF|
- |cscIfCan| |rroot| |case| |integerBound|
- |rewriteIdealWithQuasiMonicGenerators| |seriesToOutputForm| |destruct|
- |bitLength| |OMserve| |setPosition| |nullity| |zeroDim?| |subTriSet?|
- |f04mcf| |Zero| |groebnerFactorize| |contains?|
- |removeSuperfluousQuasiComponents| |leftFactor| |acoshIfCan|
- |leastAffineMultiple| |univariatePolynomialsGcds| |linkToFortran|
- |putGraph| |One| |blue| |distFact| |antiAssociative?| |c06gsf|
- |abelianGroup| |lastSubResultantElseSplit| |exprHasWeightCosWXorSinWX|
- |listOfLists| |pair?| |cyclicEntries| |stirling2|
- |reduceBasisAtInfinity| |partialFraction| |fullDisplay|
- |virtualDegree| |getCurve| |coerce| |pseudoDivide| Y |factorials|
- |leftTrace| |mapDown!| |invmod| |monomial| |quartic| |fTable|
- |notelem| |construct| |increasePrecision| |s14aaf| |OMreadStr|
- |divideIfCan| |OMmakeConn| |back| |multivariate| |reduced?|
- |eigenvectors| |myDegree| |read!| |asinIfCan| |identityMatrix|
- |enterInCache| |dec| |explogs2trigs| |variables| |setOrder| |separate|
- |inputBinaryFile| |iicosh| |conjug| |nextItem| |viewDeltaYDefault|
- |RittWuCompare| |scaleRoots| |explicitEntries?| |hessian| |elRow2!|
- |setMinPoints| |selectODEIVPRoutines| |linearMatrix|
- |resultantEuclideannaif| |computeInt| |expint| |cyclicCopy|
- |nextSublist| |univariateSolve| |graphImage| |idealiserMatrix|
- |alternatingGroup| |inverse| |showSummary| |connectTo| |OMputAtp|
- |lastSubResultantEuclidean| |positiveRemainder| |clip| |obj|
- |ellipticCylindrical| |conjugates| |rationalApproximation| |vspace|
- |lexGroebner| |quoByVar| |palglimint| |monomRDE| |socf2socdf|
- |exactQuotient| |axes| |OMputEndAtp| |cache| |showAttributes| |eq?|
- |binaryTournament| |squareTop| |taylor| |LazardQuotient2|
- |lieAdmissible?| |leftRankPolynomial| |f04mbf| |linGenPos| |mathieu24|
- |critMonD1| |trivialIdeal?| |laurent| |stFunc1| |primlimitedint|
- |OMputEndError| |laurentRep| |getGraph| |e02aef| |evaluateInverse|
- |selectOptimizationRoutines| |c05nbf| |chiSquare1| |puiseux| |s17aef|
- |newSubProgram| |f01rdf| |diff| |bombieriNorm| |curryRight| |simpsono|
- |writeLine!| |nullary| |invertible?| |subQuasiComponent?| |df2ef|
- |delay| |quadraticForm| |readUInt16!| |inv| |insertionSort!| |name|
- |rightOne| |rootKerSimp| |powerAssociative?| |viewPosDefault|
- |internalIntegrate0| |partition| |prime?| |ground?| |normFactors|
- |totalLex| |body| |fixedPointExquo| |curry| |principalAncestors|
- |completeEval| |reducedForm| |linear?| |linearDependence| |nthFactor|
- |fullPartialFraction| |besselJ| |monomialIntegrate| |remove| |droot|
- |critB| |vertConcat| |noLinearFactor?| |coerceL| |primintegrate|
- |extract!| |removeConstantTerm| |po| |trapezoidal| |polygon?|
- |withPredicates| |factorset| |mainValue| |duplicates?|
- |cRationalPower| |removeZero| |integral| |last| |setErrorBound|
- |quoted?| |gramschmidt| |rationalPoints| |internalInfRittWu?|
- |insertTop!| |assoc| |imagj| |maxrow| |viewport3D| |associatedSystem|
- |number?| |generateIrredPoly| |showIntensityFunctions| |cSec|
- |alternative?| |halfExtendedSubResultantGcd2| |finiteBasis| |cross|
- |minPol| |removeSquaresIfCan| |isTimes| |symbolTable| |check|
- |lazyPquo| |asinhIfCan| |pointData| |upperCase?| |geometric| |cAsec|
- |outputList| |writeUInt8!| |subNode?| |atoms| |rightExactQuotient|
- |leadingBasisTerm| |interactiveEnv| |OMgetEndAttr| |viewpoint|
- |pushFortranOutputStack| |makeSeries| |OMopenString| |ParCond|
- |coerceImages| |currentSubProgram| |order| |hypergeometric0F1|
- |complement| |popFortranOutputStack| LODO2FUN |modularFactor| |graphs|
- |f01bsf| |OMreadFile| |spherical| |makeMulti| |getExplanations|
- |lazyPrem| BY |inverseIntegralMatrix| |s17ahf|
- |primPartElseUnitCanonical| |outputAsFortran| |minPoly| |deepestTail|
- |reverse!| |enterPointData| |isNot| |showClipRegion| |triangular?|
- |one?| |diagonal?| |saturate| |more?| |constantRight|
- |linearPolynomials| |pointPlot| |coHeight| |exprToXXP|
- |numberOfOperations| |debug3D| |Frobenius| |depth| |product|
- |setAttributeButtonStep| |prinb| |parseString| |quasiRegular?| |init|
- |quotient| |cSinh| |pseudoRemainder| |arguments| |lambert|
- |lowerPolynomial| |rangeIsFinite| |cycle| |subset?| |showAllElements|
- |coordinates| |lookupFunction| |extractIfCan| |goto| |setref|
- |integralMatrixAtInfinity| |primintfldpoly| |att2Result|
- |mergeFactors| |crest| |adaptive3D?| |viewDeltaXDefault|
- |indicialEquation| |leaf?| |entries| |padicallyExpand|
- |OMconnOutDevice| |leftFactorIfCan| |useEisensteinCriterion| |df2st|
- |generalInfiniteProduct| |s17def| |optAttributes| |cPower| NOT
- |leftRank| |removeRoughlyRedundantFactorsInPols| |seriesSolve|
- |rightNorm| |diophantineSystem| |makeGraphImage| |bandedHessian|
- |polyred| |iiperm| |pomopo!| OR |ratpart| |sign| |padicFraction|
- |printTypes| |exptMod| |distribute| |blankSeparate| |roughBasicSet|
- |basisOfCommutingElements| |radPoly| AND |jordanAlgebra?| |entry|
- |basisOfLeftNucloid| |viewPhiDefault| |antiCommutator| |every?|
- |bivariateSLPEBR| |unaryFunction| |integralDerivationMatrix|
- |listYoungTableaus| |radicalRoots| |radicalOfLeftTraceForm|
- |subResultantGcd| |debug| |setfirst!| |has?| |bitCoef| |ratPoly|
- |leftDiscriminant| |weakBiRank| |consnewpol| |stirling1| |pToHdmp| D
- |thetaCoord| |nextSubsetGray| |relationsIdeal| |lintgcd| |phiCoord|
- |pdf2ef| |rquo| |internalSubQuasiComponent?| |upperCase!| |contract|
- |intChoose| |isList| |vector| |addMatchRestricted| |mapExpon|
- |charClass| |squareFreePart| |basisOfCenter| |complexEigenvalues|
- |iidprod| |numerator| |differentiate| |scale| |divisorCascade|
- |cAtanh| |accuracyIF| |maxdeg| |btwFact| |hermite| |cardinality|
- |nilFactor| |trueEqual| |createNormalElement| |currentCategoryFrame|
- |parametric?| |largest| |indicialEquations| |latex| |list?|
- |linearDependenceOverZ| |zeroDimensional?| |resetVariableOrder|
- |quickSort| |odd?| |genericLeftMinimalPolynomial| |s20acf|
- |trace2PowMod| |monicRightFactorIfCan| |domainTemplate| |stFunc2|
- |getButtonValue| |trigs2explogs| |cCos| |char| |Ci| |leadingSupport|
- |lighting| |primextintfrac| |isAnd| |binding| |makeFloatFunction|
- |removeRedundantFactors| |clearTheIFTable| |sizeMultiplication| *
- |firstSubsetGray| |infinite?| |reducedQPowers| |invertibleSet| |f2st|
- |plusInfinity| |getMatch| |nextPrime| |extendedIntegrate| |d01amf|
- |delta| |cycleRagits| |sh| |logGamma| |goodnessOfFit| |sumSquares|
- |integerIfCan| |minusInfinity| |multisect| |mapSolve| |rem|
- |lazyResidueClass| |createLowComplexityTable| |normInvertible?|
- |headReduce| |fintegrate| |print| |setProperty| |logical?| |medialSet|
- |integralAtInfinity?| |repeatUntilLoop| |quo| |sec2cos| = |llprop|
- |OMread| |selectIntegrationRoutines| |resolve| |rarrow| |hexDigit|
- |selectNonFiniteRoutines| |sts2stst| |startTableGcd!| |expintfldpoly|
- |subNodeOf?| |cotIfCan| |endSubProgram| |empty| |leadingIdeal|
- |f07fef| |getProperties| |minimize| |heap| |rowEchLocal| |div| <
- |components| |c06gcf| |float| |binaryTree| |closedCurve?|
- |changeWeightLevel| |prevPrime| |exponents| |lifting| |exquo|
- |moduleSum| > |s18dcf| |externalList| |retractIfCan| |type| |maxint|
- |showTheFTable| |showTheRoutinesTable| |rightAlternative?| |matrixGcd|
- |readInt8!| ~= |e02adf| <= |callForm?| |polyRDE| |lambda| |shufflein|
- |oddintegers| |Hausdorff| |groebgen| |plenaryPower| |leaves| |#| >=
- |exactQuotient!| |tan2trig| |numer| |twoFactor| |axesColorDefault|
- |cyclotomicDecomposition| |factorsOfDegree| |makeViewport2D|
- |alphanumeric| |resetAttributeButtons| ~ |c06gbf| |signature|
- |OMputEndObject| |denom| |processTemplate| |times!|
- |mainDefiningPolynomial| |flexible?| |charpol| |polygamma| |addPoint2|
- |leftMult| |wholeRagits| |sinhcosh| |pile| |powern| |erf| |repeating?|
- |semiSubResultantGcdEuclidean1| |findCycle| |numericIfCan|
- |exportedOperators| |e02dff| |root?| + |pi| |insertBottom!|
- |validExponential| |rationalPoint?| |oddInfiniteProduct| |tanAn|
- |exp1| |derivationCoordinates| |numberOfDivisors| |/\\| |s15aef|
- |rightLcm| - |infinity| |bracket| |symmetricTensors| |clipParametric|
- |generalizedEigenvectors| |midpoint| |highCommonTerms|
- |normalizedAssociate| |inverseIntegralMatrixAtInfinity|
- |createMultiplicationMatrix| |\\/| |max| |unrankImproperPartitions1| /
- |redmat| GE |dilog| |extractProperty| |remove!| |typeLists| |ptree|
- |cycleLength| |e01sef| |rowEchelon| |s14baf| |light| GT |htrigs| |sin|
- |map| |aQuadratic| |exteriorDifferential| |encodingDirectory| |size?|
- |bits| |kernel| |endOfFile?| |squareFreePrim|
- |removeRedundantFactorsInContents| |setvalue!| LE |cos| |Gamma|
- |s13adf| |primitiveElement| |overlap| |draw| |fi2df| |shift|
- |mainVariables| |evaluate| LT |cot2tan| |characteristicSerie| |tan|
- |bat| |cAsech| |commutativeEquality| |rightScalarTimes!| |e02baf|
- |denomLODE| |makeop| |multiple?| |sturmSequence| |cot| |isQuotient|
- |mathieu22| |tab1| |rationalPower| |unvectorise| |iiasec| |inspect|
- |Ei| |bounds| |before?| |sec| |sinhIfCan| |generic| |pushuconst|
- |leadingTerm| |real?| |genericPosition| |autoReduced?| |hdmpToP|
- |merge| |csc| |convert| |property| FG2F |qelt| |s21bdf|
- |argumentListOf| |OMsupportsCD?| |makeObject|
- |clearFortranOutputStack| |presuper| |tanSum| |epilogue| |asin|
- |qsetelt| |currentEnv| |reducedDiscriminant| |smith| |besselY|
- |rightRecip| |pdf2df| |cond| |atanhIfCan| |stoseInvertible?sqfreg|
- |coef| |indicialEquationAtInfinity| |digits| |acos| |script| |xRange|
- |supDimElseRittWu?| |simplify| |rightFactorIfCan|
- |mainCharacterization| |s17agf| |s17dlf| |OMgetError| |subSet|
- |updateStatus!| |atan| |height| |units| |yRange| |shallowCopy|
- |genericLeftTrace| |initTable!| |radicalSolve| |quadraticNorm|
- |content| |pointColorDefault| |gcdprim| |transform| |acot| |eof?|
- |elem?| |removeSinhSq| |f04maf| |palgLODE| |totolex| |makeCos| |Beta|
- |asec| |tex| |chvar| |e02dcf| |prefixRagits| |lieAlgebra?| |e01bgf|
- |just| |e01daf| |alphanumeric?| |binaryFunction| |acsc| |graphState|
- |rightRankPolynomial| |baseRDEsys| |difference| |elements| |iroot|
- |initializeGroupForWordProblem| |ldf2vmf| |slash| |sinh|
- |numberOfNormalPoly| |divideIfCan!| |isOpen?| |xCoord| |s19adf| |key?|
- |signatureAst| |cosh| |setprevious!| |code| |subst| |isConnected?|
- |poisson| |radicalEigenvectors| |SturmHabichtCoefficients| |f02bjf|
- |degreeSubResultantEuclidean| |localUnquote| |OMsend| |tanh| |box|
- |constDsolve| |modularGcd| |f04jgf| |bright| |permutationGroup|
- |block| |realEigenvalues| |nand| |copyInto!| |returns| |complexForm|
- |coth| |OMgetEndObject| |exponent| |minimumDegree| |cyclotomic|
- |s19abf| |clearTable!| |OMputEndBVar|
- |unprotectedRemoveRedundantFactors| |headReduced?|
- |transcendenceDegree| |sech| |mathieu23| |optpair| |mainPrimitivePart|
- |factorsOfCyclicGroupSize| |palgRDE0| |zeroOf| |minRowIndex| |csch|
- |pushup| |s20adf| |mainExpression| |getZechTable| |failed|
- |conditionP| |resetBadValues| |setMaxPoints3D| |newReduc| |function|
- |semiSubResultantGcdEuclidean2| |asinh| |factorial| |complexIntegrate|
- |decompose| |neglist| |declare| |isExpt| |convergents|
- |stoseInvertible?| |newLine| |realEigenvectors| |sort| |acosh| |dom|
- |allRootsOf| |perfectNthPower?| |s17dhf| |objects| |OMgetFloat|
- |identity| |getProperty| |safetyMargin| |tail| |atanh| |unparse|
- |getMeasure| |changeThreshhold| |base| |f02ajf| |removeSinSq| |bag|
- |comparison| |toseSquareFreePart| |setEpilogue!| |acoth| |pushdterm|
- |OMputBVar| |gderiv| |inf| |extractTop!| |f2df| |cAcsch|
- |computeCycleEntry| |LyndonWordsList| |asech| |lhs| F2FG
- |fillPascalTriangle| |dAndcExp| |rules|
- |stoseInternalLastSubResultant| |external?| |subResultantChain|
- |colorDef| |setelt!| |lazyPseudoQuotient| |random| |rhs| |ef2edf|
- |yellow| |mainVariable| |signAround| |parent| |unknown| |rename!|
- |toseLastSubResultant| |monicDivide| |multiple| |setTopPredicate|
- |title| |measure2Result| |sin?| |drawStyle| |normalizeIfCan|
- |dioSolve| |algintegrate| |elColumn2!| |unexpand| |applyQuote| |zag|
- |c06ebf| |s17adf| |zeroDimPrimary?| |elliptic?| |fortranInteger|
- |monomRDEsys| |OMgetBind| |setAdaptive3D| |double| |fractRadix|
- |meshPar1Var| |rational| |diagonals| |parts| |boundOfCauchy| |iisech|
- |nextsubResultant2| |tValues| |initiallyReduced?| |e| |discreteLog|
- |nary?| |lazyIntegrate| |fortranReal| |rotatey| |quotientByP|
- |prologue| |flexibleArray| |shuffle| |fracPart| |getCode| |s18def|
- |selectMultiDimensionalRoutines| |log2| |fprindINFO| |lfunc|
- |readUInt8!| |li| |halfExtendedResultant1| |true| |lex|
- |solveLinearlyOverQ| |c06fuf| |OMreceive| |createNormalPoly|
- |outputMeasure| |distdfact| |completeSmith| |sturmVariationsOf|
- |controlPanel| |style| |nothing| |legendreP| |cAcoth| |denominator|
- |OMgetEndBVar| |degreePartition| |reopen!| |transcendent?|
- |lowerCase?| |outputArgs| |getConstant| |rootNormalize|
- |purelyTranscendental?| |previous| |leastPower| |infieldIntegrate|
- |sort!| |any?| |makeUnit| |patternVariable| |testModulus| |sequences|
- |multiplyExponents| |intensity| |listLoops| |rightDiscriminant|
- |pascalTriangle| |pdct| |lowerCase!| |declare!| |recur| |infinityNorm|
- |modularGcdPrimitive| |rootRadius| |moebiusMu| |pushNewContour|
- |aLinear| |innerSolve| |setEmpty!| |primitive?| |c06ecf|
- |viewWriteDefault| |getRef| |logIfCan| |dualSignature|
- |strongGenerators| |separant| |OMgetEndError| |e04dgf|
- |minimumExponent| |extractIndex| |yCoordinates| |directory| |width|
- |pop!| |nthFractionalTerm| |integralLastSubResultant| |weight|
- |mergeDifference| |unitNormalize| |cycles| |compound?| |d02raf|
- |split| |idealiser| |positiveSolve| |mapmult| |readLine!| |gethi|
- |OMgetEndApp| |supRittWu?| |powmod| |quatern| |splitConstant|
- |laplace| |s19aaf| |shanksDiscLogAlgorithm| |iFTable| |call| |test|
- |e02agf| |cTan| |mainVariable?| |s18aff| |closed?| |derivative|
- |pushucoef| |nthFlag| |useSingleFactorBound?| |infLex?| |iitan|
- |fortranComplex| |tanintegrate| |lo| |univariatePolynomial|
- |numberOfMonomials| |LiePolyIfCan| |HenselLift|
- |transcendentalDecompose| |open| |segment| |HermiteIntegrate|
- |factor1| |sech2cosh| |topPredicate| |d03faf| |iiasech| |cCot|
- |relerror| |possiblyNewVariety?| |cSech| |cAtan| |viewZoomDefault|
- |nthr| |precision| |eq| |unmakeSUP| |computeCycleLength|
- |rationalFunction| |readBytes!| |minrank| |ground| |buildSyntax|
- |multiEuclideanTree| |asecIfCan| |mesh?| |createZechTable| |iter|
- |s17acf| |standardBasisOfCyclicSubmodule| |optional| |prefix| |roman|
- |extractClosed| |iidsum| |leadingMonomial| |pack!| |OMputEndApp|
- |mkAnswer| |flatten| |reduction| |associator| |firstUncouplingMatrix|
- |reify| |ramifiedAtInfinity?| |operations| |d02cjf|
- |leadingCoefficient| |critpOrder| |solveid| |factorList|
- |cyclotomicFactorization| |OMcloseConn| |aCubic| |Si| |coshIfCan|
- |kovacic| |primitiveMonomials| |iprint| |RemainderList| |aromberg|
- |octon| |currentScope| |newTypeLists| |e01bff| |ode| |ratDenom|
- |reductum| |associatorDependence| |OMgetAtp| |plot| |twist| |getlo|
- |physicalLength| |rightMinimalPolynomial| |rotate!| |select!| |output|
- |mapUp!| |pol| |ddFact| |fortran| |f02axf| |headAst|
- |numberOfFractionalTerms| |leftNorm| |d02kef| |fortranLinkerArgs|
- |weights| |rischNormalize| |showTheSymbolTable| |checkPrecision|
- |outlineRender| |startPolynomial| |c06fpf| |lexico| |hasoln|
- |rightMult| |updatD| |acothIfCan| |imaginary| |elliptic| |nil| |exp|
- |genericRightTraceForm| |graphStates| |prinpolINFO| |matrixConcat3D|
- |dimensionsOf| SEGMENT |insertRoot!| |euclideanGroebner|
- |removeCoshSq| |OMgetVariable| |setLength!| |null?| |primeFrobenius|
- |polCase| |normalizeAtInfinity| |chiSquare| |meshPar2Var| |polyRicDE|
- |stiffnessAndStabilityOfODEIF| |e01saf| |directSum| |f02wef|
- |arbitrary| |moreAlgebraic?| |generalizedEigenvector| |unitVector|
- |frst| |part?| |lflimitedint| |outerProduct| |d01ajf| |approximate|
- |makeVariable| |OMencodingBinary| |LyndonCoordinates| |usingTable?|
- |lfextendedint| |multiEuclidean| |harmonic| |unitCanonical| |complex|
- |sncndn| |asechIfCan| |changeMeasure| |isPower| |setPrologue!|
- |rename| |component| |cyclicEqual?| |dequeue!| |any|
- |dimensionOfIrreducibleRepresentation| |prepareDecompose|
- |leftQuotient| |log| |rootBound| |addBadValue| |innerSolve1|
- |divisors| |dimensions| |operators| |doublyTransitive?| |varselect|
- |e01sbf| |totalDegree| |equiv| |compactFraction|
- |stiffnessAndStabilityFactor| |partitions| |bumptab1| |prem|
- |getIdentifier| |f04axf| |PDESolve| |sechIfCan| |tan2cot|
- |createNormalPrimitivePoly| |OMUnknownSymbol?| |moduloP|
- |nonLinearPart| |untab| |viewDefaults| |traverse| |complexNormalize|
- |sum| |readLineIfCan!| |curryLeft| |scalarMatrix| |mainForm|
- |OMsupportsSymbol?| |concat| |e02def| |f01qef| |outputFixed|
- |leastMonomial| |coordinate| |capacity| |sup| |lookup|
- |incrementKthElement| |critT| |realZeros| |rowEch| |rational?|
- |zCoord| |iiacot| |complementaryBasis| |normalDeriv| |showTheIFTable|
- |interval| UP2UTS |pointColor| |c05adf| |OMunhandledSymbol|
- |critMTonD1| |d02bhf| |d03edf| |UnVectorise| |normalizedDivide|
- |definingInequation| |aspFilename| |bivariate?|
- |semiResultantEuclidean2| |hostPlatform| |mindegTerm| |OMbindTCP| |lp|
- |sPol| |fixPredicate| |raisePolynomial| |diagonalMatrix| |coleman|
- |exprex| |f04faf| |OMgetObject| |linear| |characteristicSet|
- |inGroundField?| |f07adf| |low| |normal?| |commutator| |satisfy?|
- |e04ucf| |d01apf| |univariate?| |ParCondList| |stronglyReduce|
- |bfKeys| |OMgetString| |bothWays| |systemCommand| |simpson| |source|
- |polynomial| |associatedEquations| |acschIfCan| |chainSubResultants|
- |rewriteSetWithReduction| |rightQuotient| |clearDenominator|
- |category| |setOfMinN| |symmetricGroup| |bsolve| |binarySearchTree|
- |setClosed| |atanIfCan| |basisOfRightNucloid| |bezoutResultant|
- |domain| |bytes| |removeSuperfluousCases| |scripted?| |solid| |iilog|
- |toroidal| |root| |normal| |getOrder| |package| |characteristic|
- |makeRecord| |exponentialOrder| |e01baf| |rotatex| |rationalIfCan|
- |show| |appendPoint| |unit| |transpose| |zeroSquareMatrix|
- |triangulate| |prepareSubResAlgo| |pmComplexintegrate| |mapBivariate|
- |quasiComponent| |internalIntegrate| |target| |setProperty!| |submod|
- |rightCharacteristicPolynomial| |cosIfCan| |trace| |exprToGenUPS|
- |expressIdealMember| |getPickedPoints| |tracePowMod| |length|
- |homogeneous?| |s01eaf| |f07aef| |dihedralGroup| |makeEq| |rightZero|
- |critM| |exists?| |scripts| |opeval| |leftLcm| |outputForm|
- |setVariableOrder| |next| |over| |BumInSepFFE| |infieldint| |makeSUP|
- |weierstrass| |charthRoot| |internalLastSubResultant| |rootsOf|
- |setClipValue| |OMlistCDs| |combineFeatureCompatibility| |ravel|
- |e04gcf| |meatAxe| |qualifier| |reverse| |radix| |stFuncN|
- |basisOfLeftNucleus| |factorGroebnerBasis| |commaSeparate| |resetNew|
- |safeFloor| |reshape| |rule| |argumentList!| |systemSizeIF| |yCoord|
- |cn| |linearAssociatedLog| |open?| |coefficients| |limitPlus|
- |permutation| |birth| |generalizedContinuumHypothesisAssumed|
- |normalize| |setelt| |interReduce| |algebraicSort| |top|
- |matrixDimensions| |dictionary| |leftAlternative?| |leftUnits| |less?|
- |arg1| |rootSplit| |high| |c06ekf| |screenResolution| |symbolTableOf|
- |realElementary| |representationType| |comp| |vedf2vef| |primeFactor|
- |arg2| |copy| |cyclicParents| |write!| |lllip| |ScanArabic|
- |kroneckerDelta| |hyperelliptic| |showFortranOutputStack|
- |OMencodingXML| |scanOneDimSubspaces| |element?| |deepestInitial|
- |continue| |shallowExpand| |schema| |update| |nor| |e04fdf|
- |conditions| |isImplies| |whatInfinity| |nonQsign| |scalarTypeOf|
- |ReduceOrder| |leader| |numeric| |numberOfIrreduciblePoly|
- |rootDirectory| |jacobi| |randomR| |cyclic| |match| |makeYoungTableau|
- |autoCoerce| |minimalPolynomial| |prime| |integralRepresents| |list|
- |radical| |complex?| |const| |lyndon?| |stoseSquareFreePart|
- |createPrimitiveNormalPoly| |sizePascalTriangle| |car| |hdmpToDmp|
- |semicolonSeparate| |quotedOperators| |readable?| |jacobian| |red|
- |argscript| |rootSimp| |keys| |structuralConstants| |mapMatrixIfCan|
- |redpps| |traceMatrix| |cdr| |primaryDecomp| |tab| |e02bcf| |zero?|
- |f04atf| |cycleElt| |say| |point?| |create| |string?| |setDifference|
- |factorSFBRlcUnit| |e04jaf| |position| |expandPower| |setMinPoints3D|
- |ref| |Is| |functorData| |qfactor| |setIntersection| |contractSolve|
- |insertMatch| |stoseInvertibleSet| |nthRoot| |henselFact|
- |fortranLogical| |qinterval| |patternMatchTimes|
- |leftMinimalPolynomial| |rightRemainder| |hex| |f02aef| |setUnion|
- |deriv| |match?| |summation| |degree| |elementary| |showAll?|
- |contours| |tree| |escape| |vconcat| |result| |minGbasis|
- |viewWriteAvailable| |apply| |rightFactorCandidate|
- |pointColorPalette| |semiLastSubResultantEuclidean| |iiacosh| |gbasis|
- |routines| |iiacoth| |f02aaf| |regime| |simplifyPower| |invmultisect|
- |overset?| |stoseInvertible?reg| |ScanFloatIgnoreSpaces| |findBinding|
- |associative?| |push| |mapUnivariateIfCan| |child| |reset|
- |tubePointsDefault| |ideal| |size| |frobenius| |xn| |nextPartition|
- |ran| |modulus| |tablePow| |algint| |hash|
- |semiDegreeSubResultantEuclidean| |removeRoughlyRedundantFactorsInPol|
- |ramified?| |primextendedint| |branchPoint?| |pole?|
- |functionIsOscillatory| |categoryFrame| |imagJ| |predicate| |count|
- |monicRightDivide| |showScalarValues| |shiftRight| |write| |green|
- |showRegion| |singularAtInfinity?| |ScanRoman| |bipolarCylindrical|
- |romberg| |lfinfieldint| |createGenericMatrix| |sn| |save|
- |makingStats?| |hasPredicate?| |lazyIrreducibleFactors| |first|
- |OMgetEndAtp| |BasicMethod| |d03eef| |ratDsolve| |generator|
- |writeBytes!| |wholeRadix| |numberOfChildren|
- |getMultiplicationMatrix| |square?| |coerceListOfPairs| |column|
- |coercePreimagesImages| |rest| |exprToUPS| |curve?| |limitedint|
- |orbit| |eigenvector| |iisqrt3| |rectangularMatrix| |substitute|
- |hasSolution?| |slex| |tanNa| |numerators| |genericLeftDiscriminant|
- |selectAndPolynomials| |bivariatePolynomials|
- |nextNormalPrimitivePoly| |removeDuplicates| |tube| |lyndon|
- |extractPoint| |sumOfDivisors| |stripCommentsAndBlanks| |UP2ifCan|
- |e02bbf| |lfintegrate| |minset| |f01brf| |setCondition!| |mapGen|
- |maxColIndex| |univcase| |screenResolution3D| |basisOfRightNucleus|
- |discriminantEuclidean| |ksec| |tanhIfCan| |e02ahf|
- |oneDimensionalArray| |lSpaceBasis| |setPredicates| |integrate|
- |lazyEvaluate| |generate| |mathieu12| |replace| |choosemon|
- |solveLinearPolynomialEquationByFractions| |rst| |OMopenFile|
- |subtractIfCan| |genus| |isTerm| |node?| |removeDuplicates!| |mesh|
- |repeating| |rightGcd| |row| |parameters| |An| |complexRoots|
- |factorPolynomial| |getSyntaxFormsFromFile| |extractSplittingLeaf|
- |expPot| |incrementBy| |edf2efi| |extendedResultant|
- |subresultantVector| |singular?| |exQuo| |weighted| |iiatanh|
- |isEquiv| |antisymmetricTensors| |enumerate| |upDateBranches| |expand|
- |level| |inRadical?| |setScreenResolution| |setColumn!|
- |nextNormalPoly| |approximants| |ode1| |outputFloating| |gradient|
- |irreducibleRepresentation| |filterWhile| |internalZeroSetSplit|
- |constant?| |minPoints3D| |secIfCan| |operation| |leftPower| |e02gaf|
- |fortranCompilerName| |B1solve| |bat1| |filterUntil|
- |totalDifferential| |localReal?| |roughUnitIdeal?| |rur| |conical|
- |schwerpunkt| |cTanh| |roughSubIdeal?| |variationOfParameters|
- |select| |subResultantsChain| |normal01| |reducedContinuedFraction|
- |fortranTypeOf| |position!| |iExquo| |replaceKthElement| |empty?|
- |bumptab| |rk4a| |uniform| |matrix| |iitanh| |reduceByQuasiMonic|
- |quasiAlgebraicSet| |GospersMethod| |c02agf| |expextendedint|
- |singRicDE| |edf2fi| |ricDsolve| |drawComplex| |toseInvertible?|
- |OMUnknownCD?| |physicalLength!| |wronskianMatrix| |countable?|
- |loopPoints| |factorByRecursion| |getVariableOrder| |reseed| |cubic|
- |Aleph| |gcdcofact| |e02ajf| |dfRange| |e01bhf| |id| |cAcsc| |c05pbf|
- |shiftRoots| |isOr| |computePowers| |addMatch| |toseInvertibleSet|
- |f01qdf| |tanh2trigh| |incr| |setleft!| |factors| |d02bbf|
- |removeRedundantFactorsInPols| |categories| |identification|
- |whileLoop| |closeComponent| |in?| |d02gaf| |loadNativeModule| |table|
- |inverseColeman| |primitivePart| |anticoord| |realSolve| |parents|
- |OMgetApp| |subCase?| |generalSqFr| |asimpson| |resultantReduit| |new|
- |hi| |iifact| |normalized?| |ocf2ocdf| |figureUnits| |setAdaptive|
- |omError| |insert!| |mkIntegral| |scopes| |insert| |readUInt32!|
- |swapRows!| |calcRanges| |selectSumOfSquaresRoutines| |tubePlot|
- |leadingIndex| |f04qaf| |fglmIfCan| |expIfCan| |unary?| |leftGcd|
- |useSingleFactorBound| |readIfCan!| |qroot| |clearCache| |cosh2sech|
- |basicSet| |nsqfree| |collect| |options| |fortranDouble| |setrest!|
- |fortranDoubleComplex| |completeHensel| |composite| |ipow| GF2FG
- |numberOfComposites| |taylorRep| |limit| |second| |messagePrint|
- |plotPolar| |numberOfComponents| |selectFiniteRoutines|
- |outputSpacing| |zeroMatrix| |domainOf| |rdregime| |knownInfBasis|
- |third| |nlde| |rootOfIrreduciblePoly| |numberOfVariables|
- |var2StepsDefault| |iicsc| |f01maf| |functionIsFracPolynomial?|
- |floor| |string| |gcdPolynomial| |branchIfCan| |infix| |sincos|
- |UpTriBddDenomInv| |tableForDiscreteLogarithm| |doubleFloatFormat|
- |entry?| |linearlyDependent?| |hMonic| |probablyZeroDim?| |divisor|
- |jacobiIdentity?| |LowTriBddDenomInv| |leftRegularRepresentation|
- |paren| |f02fjf| |primes| |inHallBasis?| |imagk| |denomRicDE| |rspace|
- |head| |OMputApp| |invertibleElseSplit?| |range| |evenInfiniteProduct|
- |listexp| |besselK| |decrease| |exponential1| |lift|
- |intermediateResultsIF| |coth2trigh| |retractable?| |void|
- |companionBlocks| |mapdiv| |left| |bezoutMatrix| |s21bbf|
- |clipBoolean| |completeEchelonBasis| |reduce|
- |semiResultantEuclideannaif| |mapCoef| |s13aaf|
- |getMultiplicationTable| |monomial?| |right| |cyclicGroup|
- |infiniteProduct| |expintegrate| |countRealRoots| |f02bbf|
- |stopTable!| |groebner| |deepCopy| |singleFactorBound|
- |listRepresentation| |palgint| |round| |morphism| |forLoop|
- |OMgetAttr| |powers| |maxRowIndex| |elt| |LyndonWordsList1|
- |defineProperty| |iicsch| |stronglyReduced?| |setStatus!|
- |safeCeiling| |f02aff| |variable?| |front| |internalSubPolSet?|
- |laurentIfCan| |nil| |infinite| |arbitraryExponent| |approximate|
- |complex| |shallowMutable| |canonical| |noetherian| |central|
+ |Record| |Union| |arity| |rightLcm| |lookup| |squareTop|
+ |intermediateResultsIF| |option?| |wordInStrongGenerators| |c06fuf|
+ |getOperands| |functionIsOscillatory| |cCos| |f01mcf| |bracket|
+ |LazardQuotient2| |incrementKthElement| |coth2trigh| |mpsode| |addmod|
+ |OMreceive| |categoryFrame| |Ci| |generate| |symmetricTensors|
+ |parametersOf| |lieAdmissible?| |critT| |retractable?| |parameters|
+ |extendedEuclidean| |createNormalPoly| |perfectSqrt| |leadingSupport|
+ |imagJ| |clipParametric| |writable?| |leftRankPolynomial| |realZeros|
+ |companionBlocks| |makeSin| |outputMeasure| |quasiRegular|
+ |monicRightDivide| |lighting| |incrementBy| |generalizedEigenvectors|
+ |e01bef| |rowEch| |f04mbf| |mapdiv| |atrapezoidal| |distdfact|
+ |normalForm| |primextintfrac| |showScalarValues| |expand| |linGenPos|
+ |f04arf| |midpoint| |expr| |rational?| |bezoutMatrix| |firstDenom|
+ |completeSmith| |collectQuasiMonic| |isAnd| |shiftRight| |filterWhile|
+ |highCommonTerms| |hostByteOrder| |mathieu24| |zCoord| |s21bbf|
+ |stack| |removeZeroes| |OMputString| |sturmVariationsOf| |binding|
+ |green| |filterUntil| |normalizedAssociate| |complete| |iiacot|
+ |critMonD1| |clipBoolean| |iiacsch| |indiceSubResultantEuclidean|
+ |controlPanel| |makeFloatFunction| |showRegion| |select|
+ |inverseIntegralMatrixAtInfinity| |monicDecomposeIfCan|
+ |complementaryBasis| |trivialIdeal?| |completeEchelonBasis| RF2UTS
+ |style| |leadingExponent| |singularAtInfinity?|
+ |removeRedundantFactors| |normalDeriv| |body|
+ |createMultiplicationMatrix| |e02daf| |variable| |stFunc1|
+ |semiResultantEuclideannaif| |lifting1| |ScanRoman| |legendreP|
+ |shiftLeft| |clearTheIFTable| |squareMatrix| |symbol| |primlimitedint|
+ |unrankImproperPartitions1| |polygon| |iterators| |showTheIFTable|
+ |mapCoef| |bipolarCylindrical| |edf2ef| |d02ejf| |cAcoth|
+ |systemCommand| |sizeMultiplication| |s17dgf| |expression| |f02adf|
+ |redmat| |interval| |OMputEndError| |s13aaf| |changeNameToObjf|
+ |denominator| |nodes| |firstSubsetGray| |romberg| |integer| |sqfree|
+ |extractProperty| |laurentRep| UP2UTS |getMultiplicationTable| |sum|
+ |box| |ffactor| |eisensteinIrreducible?| |lfinfieldint| |OMgetEndBVar|
+ |infinite?| ** |whitePoint| |remove!| |pointColor| |getGraph|
+ |monomial?| |expandTrigProducts| |degreePartition|
+ |factorSquareFreeByRecursion| |reducedQPowers| |createGenericMatrix|
+ |makeRecord| |OMgetSymbol| |typeLists| |c05adf| |e02aef| |cyclicGroup|
+ |linearlyDependentOverZ?| |reopen!| |eulerPhi| |invertibleSet|
+ |makingStats?| |port| |freeOf?| |cycleLength| |OMunhandledSymbol|
+ |evaluateInverse| |infiniteProduct| |printCode| |parabolic|
+ |transcendent?| |f2st| |hasPredicate?| |e01sef| |monicModulo|
+ |critMTonD1| |selectOptimizationRoutines| |expintegrate| |initial|
+ |genericRightDiscriminant| |lowerCase?| |mix| |getMatch|
+ |lazyIrreducibleFactors| |lp| |t| |denominators| |rowEchelon| |c05nbf|
+ |d02bhf| |countRealRoots| |error| |elseBranch| |outputArgs|
+ |direction| |OMgetEndAtp| |nextPrime|
+ |functionIsContinuousAtEndPoints| |s14baf| |d03edf| |chiSquare1|
+ |f02bbf| |bindings| |assert| |getConstant| |splitSquarefree|
+ |BasicMethod| |extendedIntegrate| |clearTheFTable| |UnVectorise|
+ |light| |s17aef| |label| |stopTable!| |rootNormalize| |lepol|
+ |explicitlyEmpty?| |patternMatch| |d01amf| |d03eef| |float?| |htrigs|
+ |normalizedDivide| |newSubProgram| |groebner| |positive?| |readByte!|
+ |purelyTranscendental?| |ratDsolve| |cycleRagits| |rule| |sdf2lst|
+ |aQuadratic| |f01rdf| |definingInequation| |deepCopy| |cn| |delta|
+ |orthonormalBasis| |leastPower| |stosePrepareSubResAlgo| |writeBytes!|
+ |sh| |exteriorDifferential| |complexElementary| |aspFilename| |diff|
+ |singleFactorBound| |subPolSet?| |infieldIntegrate|
+ |extendedSubResultantGcd| |logGamma| |wholeRadix| |basisOfNucleus|
+ |tubePoints| |encodingDirectory| |bombieriNorm| |bivariate?|
+ |listRepresentation| |lift| |sort| |initiallyReduce| |sort!|
+ |returnTypeOf| |goodnessOfFit| |numberOfChildren| |size?| |basis|
+ |curryRight| |internalDecompose| |semiResultantEuclidean2| |palgint|
+ |reduce| |genericLeftTraceForm| |rootPower| |any?|
+ |getMultiplicationMatrix| |sumSquares| |bits| |movedPoints| |qqq|
+ |simpsono| |hostPlatform| |round| |constructor|
+ |primPartElseUnitCanonical!| |rightUnit| |makeUnit| |integerIfCan|
+ |square?| |module| |lazyPseudoDivide| |endOfFile?| |writeLine!|
+ |mindegTerm| |morphism| |drawToScale| |swapColumns!| |patternVariable|
+ |coerceListOfPairs| |multisect| |basisOfCentroid| |option| |nullary|
+ |squareFreePrim| |hasHi| |OMbindTCP| |forLoop| |void| |c06eaf|
+ |random| |testModulus| |cot2trig| |column| |mapSolve| |central?|
+ |sPol| |removeRedundantFactorsInContents| |limitedIntegrate|
+ |invertible?| |OMgetAttr| |lambda| |even?| |zeroVector| |sequences|
+ |coercePreimagesImages| |lazyResidueClass| |pr2dmp| |Vectorise|
+ |setvalue!| |cyclic?| |fixPredicate| |subQuasiComponent?| |powers|
+ |cExp| |belong?| |multiplyExponents| |createLowComplexityTable|
+ |exprToUPS| |minordet| |df2ef| |hclf| |Gamma| |raisePolynomial|
+ |numberOfFactors| |maxRowIndex| |say| |legendre| |genericRightNorm|
+ |intensity| |normInvertible?| |curve?| |rightTrim| |minus!| |ptFunc|
+ |s13adf| |diagonalMatrix| |delay| |LyndonWordsList1| |f02awf|
+ |squareFreeLexTriangular| |listLoops| |limitedint| |headReduce|
+ |leftTrim| |biRank| |numberOfComputedEntries| |coleman|
+ |primitiveElement| |depth| |quadraticForm| |defineProperty|
+ |changeVar| |leftOne| |rightDiscriminant| |orbit| |fintegrate|
+ |byteBuffer| |musserTrials| |overlap| |readUInt16!| |exprex| |iicsch|
+ |result| |s17ajf| |pascalTriangle| |palgextint0| |setProperty|
+ |eigenvector| |fi2df| |pmintegrate| |f04faf| |insertionSort!|
+ |monicCompleteDecompose| |stronglyReduced?| |minPoints| |pdct|
+ |lazyPremWithDefault| |iisqrt3| |logical?| |setProperties!| |rightOne|
+ |nextPrimitiveNormalPoly| |mainVariables| |OMgetObject| |close|
+ |setStatus!| |ranges| |reset| |meshFun2Var| |lowerCase!|
+ |rectangularMatrix| |medialSet| |rootKerSimp| |evaluate|
+ |extensionDegree| |characteristicSet| |addPoint| |safeCeiling| |recur|
+ |d01gaf| |integralAtInfinity?| |hasSolution?| |kind|
+ |powerAssociative?| |prinshINFO| |makeTerm| |cot2tan| |display|
+ |inGroundField?| |f02aff| |subMatrix| |write| |infinityNorm|
+ |factorFraction| |repeatUntilLoop| |slex| |constantLeft| |op| |c02aff|
+ |characteristicSerie| |f07adf| |viewPosDefault| |variable?|
+ |setMaxPoints| |save| |rootProduct| |modularGcdPrimitive| |tanNa|
+ |sec2cos| |internalIntegrate0| |f04asf| |bat| |double?| |low| |front|
+ |c06frf| |rootRadius| |iflist2Result| |numerators| |llprop|
+ |precision| |redPo| |normal?| |partition| |pattern|
+ |internalSubPolSet?| |extendIfCan| |moebiusMu| |logpart|
+ |genericLeftDiscriminant| |OMread| |laguerre| |endSubProgram|
+ |basisOfLeftAnnihilator| |commutator| |prime?| |laurentIfCan|
+ |lagrange| |leftRecip| |pushNewContour| |selectAndPolynomials|
+ |selectIntegrationRoutines| |mantissa| |exponential| |empty| |input|
+ |approxNthRoot| |normFactors| |satisfy?| |checkRur|
+ |setLegalFortranSourceExtensions| |aLinear| |rarrow|
+ |bivariatePolynomials| |leadingIdeal| |modifyPointData| |library|
+ |e04ucf| |totalLex| |lazyVariations| |supersub| |hexDigit|
+ |nextNormalPrimitivePoly| |perfectNthRoot| |f07fef| |union| |localAbs|
+ |d01apf| |message| |fixedPointExquo| |setlast!| |extractTop!|
+ |zeroDimPrime?| |selectNonFiniteRoutines| |tube| |varList|
+ |getProperties| |deref| |curry| |univariate?| |getOperator| |rombergo|
+ |setleaves!| |f2df| |lyndon| |sts2stst| |minimize| |froot|
+ |principalAncestors| |fractionFreeGauss!| |ParCondList| |pToDmp|
+ |identitySquareMatrix| |cAcsch| |startTableGcd!| |extractPoint|
+ |level| |testDim| |heap| |computeCycleEntry| |seed| |imagI| |mr|
+ |sumOfDivisors| |expintfldpoly| |qPot| |rowEchLocal| |factorials|
+ |frst| |d01asf| |LyndonWordsList| |quasiMonicPolynomials| |subNodeOf?|
+ |stripCommentsAndBlanks| |leftTrace| |maxrank| |components| |part?|
+ |retract| |lazyGintegrate| F2FG |stoseIntegralLastSubResultant|
+ |UP2ifCan| |cotIfCan| |cons| |divergence| |c06gcf| |point| |mapDown!|
+ |lflimitedint| |iibinom| |alternating| |fillPascalTriangle|
+ |binaryTree| |matrix| |trim| |invmod| |d01ajf| |mvar| |iisin|
+ |dAndcExp| |radicalRoots| |expandPower| |coerceP| |closedCurve?|
+ |makeVariable| |quartic| |determinant| |imports|
+ |stoseInternalLastSubResultant| |radicalOfLeftTraceForm|
+ |setMinPoints3D| |any| |toScale| |series| |changeWeightLevel| |fTable|
+ |OMencodingBinary| |addiag| |external?| |d01fcf| |ref|
+ |subResultantGcd| |setFormula!| |prevPrime| |notelem|
+ |LyndonCoordinates| |Lazard2| |clearTheSymbolTable| |hconcat|
+ |subResultantChain| |Is| |setfirst!| |exponents| |linearAssociatedExp|
+ |increasePrecision| |usingTable?| |fortranDouble| |explicitlyFinite?|
+ |categories| |setPoly| |iCompose| |colorDef| |has?| |functorData|
+ |lifting| |possiblyInfinite?| |lfextendedint| |s14aaf| |setrest!|
+ |e02bef| |setelt!| |pseudoQuotient| |qfactor| |bitCoef| |moduleSum|
+ |min| |acosIfCan| |multiEuclidean| |OMreadStr| |fortranDoubleComplex|
+ |s14abf| |unravel| |lazyPseudoQuotient| |ratPoly| |contractSolve|
+ |plus| |s18dcf| |cycleEntry| |harmonic| |divideIfCan| |completeHensel|
+ |purelyAlgebraic?| |ef2edf| |integers| |leftDiscriminant|
+ |insertMatch| |minColIndex| |externalList| |unitCanonical|
+ |OMmakeConn| |composite| |quote| |yellow| |s19acf| |weakBiRank|
+ |stoseInvertibleSet| |coefChoose| |maxint| |diagonal| |sncndn| |back|
+ |ipow| |ceiling| |var1Steps| |mainVariable| |consnewpol| |nthRoot|
+ |lquo| |linearAssociatedOrder| |showTheFTable| |asechIfCan| |reduced?|
+ GF2FG |noncommutativeJordanAlgebra?| |fortranLiteralLine| |signAround|
+ |stirling1| |henselFact| |dark| |times| |polyPart|
+ |showTheRoutinesTable| |eigenvectors| |changeMeasure|
+ |numberOfComposites| |permutations| |OMputAttr| |parent|
+ |fortranLogical| |pToHdmp| |semiIndiceSubResultantEuclidean|
+ |rightAlternative?| |dimension| |myDegree| |isPower| |taylorRep|
+ |outputAsScript| |linears| |rename!| |qinterval| |thetaCoord|
+ |applyRules| |matrixGcd| |read!| |setPrologue!| |limit| |curveColor|
+ |halfExtendedResultant2| |toseLastSubResultant| |magnitude|
+ |nextSubsetGray| |patternMatchTimes| |iterationVar| |readInt8!|
+ |asinIfCan| |rename| |messagePrint| |sortConstraints| |airyBi|
+ |monicDivide| |algebraicDecompose| |leftMinimalPolynomial|
+ |relationsIdeal| |node| |monom| |e02adf| |monic?| |component|
+ |identityMatrix| |plotPolar| |key| |atom?| |setTopPredicate|
+ |mainCoefficients| |lintgcd| |rightRemainder| |callForm?|
+ |sumOfKthPowerDivisors| |enterInCache| |cyclicEqual?|
+ |numberOfComponents| |bubbleSort!| |bfEntry| |measure2Result| |hex|
+ |phiCoord| |parabolicCylindrical| |polyRDE| |explogs2trigs| |dequeue!|
+ |filename| |selectFiniteRoutines| |thenBranch| |sin?| |critBonD|
+ |pdf2ef| |f02aef| |common| |bit?| |shufflein|
+ |dimensionOfIrreducibleRepresentation| |setOrder| |outputSpacing|
+ |f02abf| |cAcosh| |drawStyle| |deriv| |rquo| |oddintegers| |points|
+ |prepareDecompose| |separate| |zeroMatrix| |parse| |setFieldInfo|
+ |eval| |normalizeIfCan| |npcoef| |summation|
+ |internalSubQuasiComponent?| |coord| |Hausdorff| |inputBinaryFile|
+ |leftQuotient| |increment| |powerSum| |dioSolve| |upperCase!| |degree|
+ |groebgen| |splitDenominator| |iicosh| |rootBound| |rdregime| EQ
+ |nextIrreduciblePoly| |mainKernel| |algintegrate| |elementary|
+ |contract| |plenaryPower| |d01alf| |conjug| |addBadValue|
+ |knownInfBasis| |nthRootIfCan| |elColumn2!| |cycleSplit!| |intChoose|
+ |showAll?| |brillhartTrials| |exactQuotient!| |innerSolve1| |nextItem|
+ |nlde| |karatsubaOnce| |conditionsForIdempotents| |unexpand| |isList|
+ |contours| |indices| |tan2trig| |divisors| |viewDeltaYDefault|
+ |rootOfIrreduciblePoly| |cCosh| |zag| |fixedPoints| |escape|
+ |addMatchRestricted| |relativeApprox| |twoFactor| |RittWuCompare|
+ |dimensions| |numberOfVariables| |countRealRootsMultiple| |c06ebf|
+ |subresultantSequence| |mapExpon| |vconcat| |axesColorDefault|
+ |integralBasis| |operators| |scaleRoots| |var2StepsDefault|
+ |lastSubResultant| |s17adf| |complexNumericIfCan| |charClass|
+ |minGbasis| |cyclotomicDecomposition| |trapezoidalo|
+ |doublyTransitive?| |explicitEntries?| |iicsc| |equation|
+ |curveColorPalette| |zeroDimPrimary?| |OMconnectTCP| |squareFreePart|
+ |viewWriteAvailable| |zero| |factorsOfDegree| |member?| |varselect|
+ |hessian| |f01maf| |ridHack1| |nullary?| |elliptic?| |basisOfCenter|
+ |rightFactorCandidate| |nonSingularModel| |makeViewport2D| |elRow2!|
+ |e01sbf| |functionIsFracPolynomial?| |lcm| |stopTableInvSet!|
+ |setRealSteps| |fortranInteger| |pointColorPalette|
+ |complexEigenvalues| |And| |alphanumeric| |regularRepresentation|
+ |setMinPoints| |totalDegree| |index| |floor| |reducedSystem| |rk4f|
+ |monomRDEsys| |iidprod| |semiLastSubResultantEuclidean| |delete| |Or|
+ |resetAttributeButtons| |bernoulliB| |equiv| |selectODEIVPRoutines|
+ |gcdPolynomial| |append| |pointSizeDefault| |argument| |OMgetBind|
+ |iiacosh| |numerator| |Not| |c06gbf| |leftDivide| |linearMatrix|
+ |compactFraction| |branchIfCan| |readInt32!| |gcd| |setsubMatrix!|
+ |setAdaptive3D| |gbasis| |scale| |OMputEndObject| |continuedFraction|
+ |stiffnessAndStabilityFactor| |resultantEuclideannaif| |infix| |pair|
+ |OMputVariable| |false| |f01rcf| |fractRadix| |divisorCascade|
+ |routines| |value| |processTemplate| |permanent| |computeInt|
+ |partitions| |sincos| |irreducibleFactors| |repSq| |meshPar1Var|
+ |iiacoth| |cAtanh| |exprHasLogarithmicWeights| |times!| |expint|
+ |bumptab1| |UpTriBddDenomInv| |sparsityIF| |rational| |nodeOf?|
+ |accuracyIF| |f02aaf| |specialTrigs| |mainDefiningPolynomial| |prem|
+ |cyclicCopy| |tableForDiscreteLogarithm| |associates?| |outputAsTex|
+ |diagonals| |regime| |maxdeg| |flexible?| |internalAugment|
+ |getIdentifier| |nextSublist| |doubleFloatFormat| |generic?|
+ |partialQuotients| |boundOfCauchy| |simplifyPower| |btwFact| |sn|
+ |charpol| |extend| |f04axf| |univariateSolve| |entry?| |cycleTail|
+ |iisech| |mapUnivariate| |hermite| |invmultisect|
+ |createIrreduciblePoly| |graphImage| |polygamma| |substring?|
+ |PDESolve| |linearlyDependent?| |hexDigit?| |LyndonBasis|
+ |nextsubResultant2| |cardinality| |overset?| |plus!| |addPoint2|
+ |idealiserMatrix| |sechIfCan| |shellSort| |hMonic|
+ |rangePascalTriangle| |tValues| |implies| |nilFactor|
+ |stoseInvertible?reg| |drawComplexVectorField| |tower| |leftMult|
+ |suffix?| |monomials| |alternatingGroup| |tan2cot| |probablyZeroDim?|
+ |baseRDE| |univariatePolynomials| |overlabel| |initiallyReduced?|
+ |trueEqual| |ScanFloatIgnoreSpaces| |ord| |wholeRagits| |expt|
+ |createNormalPrimitivePoly| |inverse| |divisor| |setImagSteps|
+ |discreteLog| |createNormalElement| |findBinding| |cup| |connectTo|
+ |sinhcosh| |prefix?| |OMUnknownSymbol?| |jacobiIdentity?|
+ |ListOfTerms| |nary?| |cosSinInfo| |associative?|
+ |currentCategoryFrame| |log10| |pile| |collectUpper| |OMputAtp|
+ |moduloP| |LowTriBddDenomInv| |e04mbf| |bitTruth| |lazyIntegrate|
+ |push| |parametric?| |bitand| |symmetricPower| |powern|
+ |nonLinearPart| |lastSubResultantEuclidean|
+ |leftRegularRepresentation| |binomial| |fortranReal| |inR?|
+ |mapUnivariateIfCan| |largest| |complexNumeric| |bitior|
+ |positiveRemainder| F |untab| |paren| |primitivePart!| |rotatey|
+ |closedCurve| |indicialEquations| |child| |nextsousResultant2| |clip|
+ |symbolTable| |viewDefaults| |f02fjf| |listBranches| |rightPower|
+ |quotientByP| |latex| |tubePointsDefault| |kernels| |shade|
+ |ellipticCylindrical| |traverse| |primes| |idealSimplify| |setnext!|
+ |prologue| |ideal| |list?| |wreath| |operator|
+ |pushFortranOutputStack| |infix?| |conjugates| |complexNormalize|
+ |inHallBasis?| |OMclose| |null| |frobenius| |linearDependenceOverZ|
+ |rotate| |rationalApproximation| |popFortranOutputStack| |mask|
+ |readLineIfCan!| |imagk| |iiacos| |brillhartIrreducible?|
+ |complexForm| |xn| |zeroDimensional?| |not| |algSplitSimple|
+ |univariate| |curryLeft| |outputAsFortran| |vspace| |denomRicDE|
+ |mapExponents| |createPrimitivePoly| |condition| |OMgetEndObject|
+ |and| |nextPartition| |resetVariableOrder| |search| |quadratic|
+ |lexGroebner| |scalarMatrix| |rspace| |terms| |exponent| |prod| |ran|
+ |quickSort| |constant| |or| |startTableInvSet!| |subst| |head|
+ |drawCurves| |minimumDegree| |airyAi| |modulus| |odd?| |xor|
+ |operation| |symFunc| |factor| |associatorDependence| |perspective|
+ |OMputApp| |makeSketch| |cyclotomic| |selectfirst|
+ |genericLeftMinimalPolynomial| |tablePow| |case| |elRow1!| |sqrt|
+ |OMgetAtp| |wholePart| |invertibleElseSplit?| |mainSquareFreePart|
+ |s19abf| |curve| |algint| |s20acf| |Zero| |maximumExponent| |real|
+ |plot| |setTex!| |range| |linearPart| |alphabetic| |clearTable!|
+ |deleteProperty!| |imag| |twist| |csc2sin| |evenInfiniteProduct|
+ |createPrimitiveElement| |extension| |OMputEndBVar| |cycle| |lllip|
+ |directProduct| |mulmod| |getlo| |hitherPlane| |parents| |listexp|
+ |swap!| Y |SFunction| |unprotectedRemoveRedundantFactors| |ScanArabic|
+ |subset?| |backOldPos| |leftZero| |physicalLength| |objects| |besselK|
+ |cLog| |mathieu11| |headReduced?| |kroneckerDelta| |showAllElements|
+ |oddlambert| |brace| |rightMinimalPolynomial| |groebnerIdeal|
+ |findConstructor| |fractionPart| |expandLog| |transcendenceDegree|
+ |hyperelliptic| |coordinates| |subResultantGcdEuclidean| |destruct|
+ |bigEndian| |rotate!| |dfRange| |graphCurves| |constantKernel|
+ |mathieu23| |lookupFunction| |showFortranOutputStack| |comment|
+ |componentUpperBound| |select!| |bumprow| |e01bhf| |singularitiesOf|
+ |optpair| |areEquivalent?| |OMencodingXML| |extractIfCan| |trunc|
+ |mapUp!| |iiexp| |cAcsc| |vector| |copy!| |generalPosition|
+ |mainPrimitivePart| |goto| |scanOneDimSubspaces| |clipSurface|
+ |branchPointAtInfinity?| |pol| |c05pbf| |differentiate| |maxIndex|
+ |factorsOfCyclicGroupSize| |evenlambert| |element?| |setref|
+ |leftCharacteristicPolynomial| |monomial| |host| |ddFact| |shiftRoots|
+ |showSummary| |compile| |hspace| |palgRDE0| |localIntegralBasis|
+ |integralMatrixAtInfinity| |deepestInitial| |s13acf| |multivariate|
+ |generalizedInverse| |f02axf| |isOr| |zeroOf| |antiCommutative?| |obj|
+ |genericLeftNorm| |shallowExpand| |primintfldpoly| |augment|
+ |variables| |putColorInfo| |headAst| |computePowers| |att2Result|
+ |represents| |youngGroup| |minRowIndex| |cache| |showAttributes|
+ |schema| |userOrdered?| |approxSqrt| |numberOfFractionalTerms|
+ |addMatch| |complexZeros| |dmpToHdmp| |pushup| |nor| |mergeFactors|
+ |constantOpIfCan| |binomThmExpt| |leftNorm| |toseInvertibleSet|
+ |s21bcf| |s20adf| |pquo| |e04fdf| |crest| |inc| |OMgetType| |name|
+ |d02kef| |OMencodingSGML| |f01qdf| |adjoint| |unit?| |mainExpression|
+ |adaptive3D?| |isImplies| |e02zaf| |updatF| |fortranLinkerArgs|
+ |tanh2trigh| |normDeriv2| |getZechTable| |multiplyCoefficients|
+ |whatInfinity| |viewDeltaXDefault| |isPlus| |weights| |cscIfCan|
+ |setleft!| |remove| |resultant| |fibonacci| |conditionP|
+ |indicialEquation| |nonQsign| |moebius| |rischNormalize| |rroot|
+ |factors| |sub| |palgextint| |resetBadValues| |scalarTypeOf| |leaf?|
+ |chebyshevU| |integerBound| |showTheSymbolTable| |d02bbf| |last| |rk4|
+ |bottom!| |setMaxPoints3D| |entries| |ReduceOrder| |sinIfCan|
+ |rewriteIdealWithQuasiMonicGenerators| |outlineRender|
+ |removeRedundantFactorsInPols| |assoc| |palglimint0| |newReduc|
+ |LazardQuotient| |numberOfIrreduciblePoly| |padicallyExpand|
+ |flagFactor| |startPolynomial| |seriesToOutputForm| |identification|
+ |laguerreL| |genericRightMinimalPolynomial|
+ |semiSubResultantGcdEuclidean2| |OMconnOutDevice| |rootDirectory|
+ |rdHack1| |bitLength| |c06fpf| |whileLoop| |max| |explimitedint|
+ |factorial| |minIndex| |jacobi| |leftFactorIfCan|
+ |numberOfImproperPartitions| |lexico| |OMserve| |closeComponent|
+ |norm| |complexIntegrate| |d02gbf| |useEisensteinCriterion| |randomR|
+ |nthCoef| |setPosition| |hasoln| |in?| |polar| |cyclic|
+ |sylvesterSequence| |decompose| |df2st| BY |SturmHabicht| |rightMult|
+ |nullity| |d02gaf| |sizeLess?| |neglist| |cAsinh| |makeYoungTableau|
+ |generalInfiniteProduct| |fortranCharacter| |updatD| |zeroDim?|
+ |inverseColeman| |palgLODE0| |reflect| |isExpt| |minimalPolynomial|
+ |s17def| |solveLinearPolynomialEquationByRecursion| |acothIfCan|
+ |subTriSet?| |primitivePart| |iomode| |convergents| |corrPoly|
+ |optAttributes| |prime| |merge!| |imaginary| |f04mcf| |anticoord|
+ |taylorQuoByVar| |solveInField| |arg1| |stoseInvertible?|
+ |integralRepresents| |cPower| |OMputFloat| |elliptic|
+ |groebnerFactorize| |realSolve| |newLine| |complexExpand| |arg2|
+ |rootOf| |leftRank| |complex?| |mirror| |genericRightTraceForm|
+ |contains?| |OMgetApp| |pleskenSplit| |bandedJacobian|
+ |realEigenvectors| |const| |removeRoughlyRedundantFactorsInPols|
+ |digit?| |pureLex| |removeSuperfluousQuasiComponents| |graphStates|
+ |subCase?| NOT |polarCoordinates| |totalfract| |allRootsOf|
+ |conditions| |seriesSolve| |lyndon?| |cSin| |prinpolINFO| |leftFactor|
+ OR |generalSqFr| |perfectNthPower?| |s15adf| |numFunEvals3D| |match|
+ |rightNorm| |stoseSquareFreePart| |decreasePrecision| |matrixConcat3D|
+ |acoshIfCan| |eyeDistance| |asimpson| AND |outputGeneral|
+ |stopMusserTrials| |s17dhf| |createPrimitiveNormalPoly|
+ |diophantineSystem| |leastAffineMultiple| |mindeg| |dimensionsOf|
+ |taylorIfCan| |resultantReduit| |sizePascalTriangle|
+ |createRandomElement| |pow| |OMgetFloat| |makeGraphImage| |acsc|
+ |trailingCoefficient| |insertRoot!| |univariatePolynomialsGcds|
+ |iifact| |identity| |nthExpon| |bandedHessian| |deleteRoutine!| |sinh|
+ |hdmpToDmp| |ode2| |linkToFortran| |euclideanGroebner| |normalized?|
+ |entry| |getProperty| |OMParseError?| |OMwrite| |cosh|
+ |semicolonSeparate| |polyred| |bipolar| |removeCoshSq| |putGraph|
+ |ocf2ocdf| |iiperm| |reciprocalPolynomial| |viewSizeDefault|
+ |safetyMargin| |debug| |tanh| |quotedOperators| |divideExponents|
+ |OMgetVariable| |blue| |figureUnits| |pomopo!|
+ |absolutelyIrreducible?| |readable?| |unparse| |lfextlimint| D |coth|
+ |d01akf| |var1StepsDefault| |setLength!| |distFact| |setAdaptive|
+ |ratpart| |solveLinear| |is?| |getMeasure| |jacobian| |sech|
+ |monicLeftDivide| |setRow!| |antiAssociative?| |null?| |omError|
+ |eulerE| |roughEqualIdeals?| |changeThreshhold| |csch| |red| |sign|
+ |assign| |primeFrobenius| |c06gsf| |insert!| |sequence| |OMgetBVar|
+ |f02ajf| |asinh| |padicFraction| |argscript| |compdegd| |polCase|
+ |abelianGroup| |mkIntegral| * |rootSimp| |char| |negative?|
+ |removeSinSq| |revert| |acosh| |printTypes| |truncate|
+ |normalizeAtInfinity| |lastSubResultantElseSplit| |scopes| |bag|
+ |properties| |recip| |subscriptedVariables| |exptMod| |atanh|
+ |structuralConstants| |plusInfinity| |leftScalarTimes!|
+ |exprHasWeightCosWXorSinWX| |chiSquare| |readUInt32!| |comparison|
+ |translate| |distribute| |OMputError| |mapMatrixIfCan| |acoth|
+ |minusInfinity| |randnum| |meshPar2Var| |listOfLists| |swapRows!|
+ |rem| = |particularSolution| |innerint| |toseSquareFreePart| |asech|
+ |blankSeparate| |redpps| |topFortranOutputStack| |polyRicDE| |pair?|
+ |quo| |calcRanges| |innerEigenvectors| |cAcos| |setEpilogue!|
+ |traceMatrix| |roughBasicSet| |lineColorDefault|
+ |stiffnessAndStabilityOfODEIF| |cyclicEntries|
+ |selectSumOfSquaresRoutines| |complexLimit| <
+ |basisOfCommutingElements| |primaryDecomp| |pushdterm|
+ |purelyAlgebraicLeadingMonomial?| |multiple| |print| |radPoly|
+ |stirling2| |e01saf| |tubePlot| |div| > |interpretString| |applyQuote|
+ |float| |beauzamyBound| |OMputBVar| |resolve| |tab|
+ |fortranCarriageReturn| |stop| |reduceBasisAtInfinity| |directSum|
+ |leadingIndex| |exquo| |f02xef| <= |permutationRepresentation|
+ |gderiv| |jordanAlgebra?| |e02bcf| |type| |getBadValues| |f02wef|
+ |partialFraction| |f04qaf| ~= >= |triangularSystems| |changeName|
+ |inf| |basisOfLeftNucloid| |zero?| |showArrayValues| |arbitrary|
+ |fullDisplay| |fglmIfCan| |#| |heapSort| |f04atf| |ruleset|
+ |viewPhiDefault| |deepExpand| |virtualDegree| |moreAlgebraic?| ~
+ |expIfCan| |setProperties| |quadraticNorm| |f01ref| |interpret|
+ |cycleElt| |antiCommutator| |lllp| |generalizedEigenvector| |getCurve|
+ |unary?| + |principalIdeal| |content|
+ |zeroSetSplitIntoTriangularSystems| |every?| |point?| |cos2sec|
+ |unitVector| |pseudoDivide| |signature| |leftGcd| - |selectsecond|
+ |setStatus| |pointColorDefault| |suchThat| |bivariateSLPEBR| |create|
+ |space| |qelt| |useSingleFactorBound| |/\\| /
+ |semiResultantEuclidean1| |gcdprim| |midpoints| |retractIfCan|
+ |unaryFunction| |string?| |s18aef| |sorted?| |transcendentalDecompose|
+ |arguments| |qsetelt| |\\/| |readIfCan!| |transform| |s18acf|
+ |besselI| GE |integralDerivationMatrix| |factorSFBRlcUnit| |push!|
+ |tryFunctionalDecomposition| |HermiteIntegrate| |xRange| |qroot|
+ |eof?| |numer| |leadingCoefficientRicDE| GT |e04jaf|
+ |listYoungTableaus| |crushedSet| |factor1| |normalise| |yRange|
+ |elem?| |cosh2sech| |generators| |denom| |e02bdf| LE |integer?|
+ |solve1| |sech2cosh| |zRange| |basicSet| |integral?| |typeList|
+ |removeSinhSq| LT |critM| |atoms| |anfactor| |topPredicate|
+ |printInfo!| |map!| |nsqfree| |pastel| |pi| |rightTrace| |f04maf|
+ |exists?| |rightExactQuotient| |fortranLiteral| |d03faf| |rk4qc|
+ |qsetelt!| |shift| |collect| |infinity| |removeCosSq| |palgLODE|
+ |d01anf| |leadingBasisTerm| |opeval| |redPol| |prolateSpheroidal|
+ |iiasech| |connect| |totolex| |printHeader| |interactiveEnv| |leftLcm|
+ |numericalIntegration| |cCot| |intersect| |ode1| |iiacsc|
+ |rightRegularRepresentation| |makeCos| |map| |OMgetEndAttr|
+ |outputForm| UTS2UP |relerror| |viewThetaDefault| |outputFloating|
+ |kernel| |lowerCase| |OMlistSymbols| |Beta| |setVariableOrder|
+ |viewpoint| |property| |separateFactors| |f02akf|
+ |possiblyNewVariety?| |gradient| |chvar| |draw| |s17aff|
+ |factorSquareFree| |center| |makeSeries| |over| |palgRDE| |cSech|
+ |subHeight| |irreducibleRepresentation| |acsch| |cond|
+ |numberOfCycles| |bezoutDiscriminant| |e02dcf| |OMopenString|
+ |BumInSepFFE| |finiteBound| |cAtan| |s17dcf| |internalZeroSetSplit|
+ |makeResult| |prefixRagits| |symmetric?| |infieldint| |ParCond|
+ |units| |useNagFunctions| |OMputInteger| |viewZoomDefault| |constant?|
+ |lieAlgebra?| |stoseLastSubResultant| |convert| |createThreeSpace|
+ |coerceImages| |makeSUP| |tanQ| |e04naf| |nthr| |minPoints3D|
+ |makeObject| |dflist| |e01bgf| |clikeUniv| |currentSubProgram|
+ |weierstrass| |unrankImproperPartitions0| |roughBase?| |unmakeSUP|
+ |secIfCan| |semiDiscriminantEuclidean| |coef| |just| |f04adf|
+ |charthRoot| |order| |checkForZero| |computeCycleLength| |algebraicOf|
+ |leftPower| |nativeModuleExtension| |e01daf| |rubiksGroup|
+ |hypergeometric0F1| |internalLastSubResultant| |imagi| |bright|
+ |irreducibleFactor| |rationalFunction| |dn| |e02gaf| |numberOfHues|
+ |alphanumeric?| |measure| |rootsOf| |complement| |code| |nil?|
+ |readBytes!| |mainMonomial| |iiGamma| |fortranCompilerName| |status|
+ |arrayStack| |attributeData| |binaryFunction| |algebraic?|
+ |setClipValue| LODO2FUN |failed| |adaptive?| |minrank| |scan| |copies|
+ |B1solve| |setright!| |datalist| |reorder| |graphState| |squareFree|
+ |modularFactor| |OMlistCDs| |fortran| |tanh2coth| |members|
+ |buildSyntax| |bat1| |OMputObject| |rightRankPolynomial| |errorInfo|
+ |function| |OMconnInDevice| |combineFeatureCompatibility| |graphs|
+ |multiEuclideanTree| |inconsistent?| |totalDifferential| |cfirst| |lo|
+ |hermiteH| |sylvesterMatrix| |var2Steps| |baseRDEsys| |e04gcf|
+ |f01bsf| |universe| |listOfMonoms| |asecIfCan| |localReal?| |refine|
+ |differentialVariables| |kmax| |difference| |OMreadFile| |meatAxe|
+ |genericRightTrace| |mesh?| |discriminant| |roughUnitIdeal?|
+ |predicates| |karatsubaDivide| |fixedDivisor| |elements| |spherical|
+ |qualifier| |dom| |leaves| |horizConcat| |createZechTable|
+ |inputOutputBinaryFile| |sqfrFactor| |rur| |concat!| |iroot| |diag|
+ |makeMulti| |radix| |initials| |s17acf| |headRemainder| |conical|
+ |abs| |psolve| |initializeGroupForWordProblem| |addPointLast|
+ |getExplanations| |stFuncN| |mappingAst| |decimal|
+ |standardBasisOfCyclicSubmodule| |schwerpunkt| |shrinkable|
+ |basisOfLeftNucleus| |fractRagits| |ldf2vmf| |makeCrit| |lazyPrem|
+ |lhs| |skewSFunction| |roman| |makeViewport3D| |cTanh|
+ |solveLinearPolynomialEquation| |inverseIntegralMatrix|
+ |factorGroebnerBasis| |quasiMonic?| |slash| |antisymmetric?| |coerceS|
+ |rhs| |normal| |ODESolve| |extractClosed| |triangSolve| |nthExponent|
+ |roughSubIdeal?| |mkcomm| |numberOfNormalPoly|
+ |semiResultantReduitEuclidean| |s17ahf| |commaSeparate| |title|
+ |compose| |iidsum| |simpleBounds?| |variationOfParameters|
+ |tensorProduct| |rightUnits| |divideIfCan!| |child?|
+ |primPartElseUnitCanonical| |resetNew| |LiePoly| |pack!|
+ |indiceSubResultant| |e01sff| |subResultantsChain| |tubeRadiusDefault|
+ |isOpen?| |composites| |minPoly| |safeFloor| |c06gqf| |doubleComplex?|
+ |OMputEndApp| |normal01| |generalLambert| |coth2tanh| |true| |janko2|
+ |xCoord| |deepestTail| |argumentList!| |e| |script| |cartesian|
+ |mkAnswer| |selectPolynomials| |reducedContinuedFraction| |unknown|
+ |mainContent| |compBound| |s19adf| |systemSizeIF| |reverse!|
+ |paraboloidal| |reduction| |unitsColorDefault| |fortranTypeOf|
+ |noKaratsuba| |key?| |duplicates| |yCoord| |enterPointData| |df2fi|
+ |PollardSmallFactor| |associator| |position!| |sayLength|
+ |commutative?| |signatureAst| |linearAssociatedLog| |isNot| |nothing|
+ |tex| |palginfieldint| |firstUncouplingMatrix| |SturmHabichtSequence|
+ |iExquo| |vark| |setprevious!| |normalDenom| |open?| |showClipRegion|
+ |readInt16!| |gcdPrimitive| |reify| |tubeRadius| |replaceKthElement|
+ |power!| |isConnected?| |finite?| |sinh2csch| |triangular?|
+ |coefficients| |iteratedInitials| |power| |ramifiedAtInfinity?|
+ |invertIfCan| |empty?| |isMult| |optional?| |d01gbf| |poisson| |one?|
+ |limitPlus| |reverseLex| |outputList| |euclideanSize| |d02cjf| |queue|
+ |bumptab| |pushdown| |rootPoly| |radicalEigenvectors| |permutation|
+ |diagonal?| |hasTopPredicate?| |OMgetInteger| |critpOrder|
+ |radicalEigenvector| |rk4a| |swap| |saturate| |monomialIntPoly|
+ |SturmHabichtCoefficients| |birth| |printInfo| |currentEnv|
+ |expenseOfEvaluation| |rightExtendedGcd| |solveid| |generalTwoFactor|
+ |uniform| |width| |credPol| |setLabelValue| |f02bjf|
+ |generalizedContinuumHypothesisAssumed| |more?|
+ |exprHasAlgebraicWeight| |wordsForStrongGenerators| |factorList|
+ |cyclePartition| |iitanh| |reverse| |zerosOf|
+ |degreeSubResultantEuclidean| |completeHermite| |constantRight|
+ |normalize| |collectUnder| |trigs| |cyclotomicFactorization| |ldf2lst|
+ |reduceByQuasiMonic| |localUnquote| |subscript| |call| |OMputSymbol|
+ |linearPolynomials| |interReduce| |se2rfi| |OMcloseConn| |move|
+ |quasiAlgebraicSet| |bringDown| |OMsend| |getDatabase| |pointPlot|
+ |algebraicSort| |adaptive| |getStream| |aCubic| |GospersMethod| |open|
+ |radicalEigenvalues| |constDsolve| |rightDivide| |matrixDimensions|
+ |coHeight| |taylor| |Nul| |Si| |euler| |c02agf| |sumOfSquares|
+ |modularGcd| |tRange| |dictionary| |exprToXXP| |laurent| |e02akf|
+ |s21baf| |coshIfCan| |expextendedint| |f01qcf| |f04jgf|
+ |numberOfOperations| |leftAlternative?| |puiseux| |partialNumerators|
+ |dihedral| |kovacic| |singRicDE| |cylindrical| |optional|
+ |permutationGroup| |rischDE| |leftUnits| |debug3D|
+ |removeRoughlyRedundantFactorsInContents|
+ |tryFunctionalDecomposition?| |iprint| |edf2fi| |incr| |wrregime|
+ |operations| |block| |s18adf| |less?| |Frobenius| |inv|
+ |constantToUnaryFunction| |nullSpace| |RemainderList| |ricDsolve| |hi|
+ |dmp2rfi| |find| |realEigenvalues| |rootSplit| |product| |ground?|
+ |aromberg| |splitNodeOf!| |drawComplex| |csch2sinh| |nand|
+ |definingPolynomial| |setAttributeButtonStep| |high| |ground| |f02agf|
+ |octon| |numericalOptimization| |toseInvertible?| |reindex|
+ |copyInto!| |stopTableGcd!| |prinb| |c06ekf| |leadingMonomial| |iisec|
+ |leviCivitaSymbol| |currentScope| |nil| |OMUnknownCD?| |acscIfCan|
+ |returns| |parseString| |recoverAfterFail| |screenResolution| |init|
+ |leadingCoefficient| |intPatternMatch| |separateDegrees| |optimize|
+ |newTypeLists| |physicalLength!| |cothIfCan| |symbolTableOf|
+ |quasiRegular?| |primitiveMonomials| |getGoodPrime| |e01bff|
+ |diagonalProduct| |wronskianMatrix| |iicot| |extractBottom!| |cAsech|
+ |realElementary| |quotient| |reductum| SEGMENT |makeprod| |ode|
+ |subspace| |countable?| |approximate| |stoseInvertibleSetsqfreg|
+ |commutativeEquality| |hcrf| |representationType| |cSinh| |rules|
+ |isAbsolutelyIrreducible?| |ratDenom|
+ |generalizedContinuumHypothesisAssumed?| |complex| |loopPoints|
+ |basisOfRightAnnihilator| |principal?| |rightScalarTimes!| |vedf2vef|
+ |pseudoRemainder| |setchildren!| |factorByRecursion| |split!| |log|
+ |e02baf| |rCoord| |primeFactor| |lambert| |packageCall| |innerSolve|
+ |interpolate| |getVariableOrder| |factorOfDegree| |OMputEndAttr|
+ |denomLODE| |certainlySubVariety?| |lowerPolynomial| |cyclicParents|
+ |ignore?| |edf2df| |setEmpty!| |flatten| |reseed| |lexTriangular|
+ |outputBinaryFile| |makeop| |eigenMatrix| |rangeIsFinite| |write!|
+ |complexEigenvectors| |primitive?| |OMencodingUnknown| |cubic| |lprop|
+ |multiple?| |uniform01| |fixedPoint| |c06ecf|
+ |constantCoefficientRicDE| |Aleph| |balancedFactorisation|
+ |completeEval| |sturmSequence| |definingEquations| |set|
+ |stronglyReduce| |simplifyExp| |OMReadError?| |viewWriteDefault|
+ |gcdcofact| |e04ycf| |mathieu22| |mainMonomials| |bfKeys|
+ |reducedForm| |palgintegrate| |palgint0| |getRef| |e02ajf| |concat|
+ |iiasin| |nextColeman| |tab1| |OMgetString| |linear?| |byte| |cCsc|
+ |rightTraceMatrix| |logIfCan| |extendedint| |OMputEndBind|
+ |rationalPower| |bothWays| |linearDependence| |e02ddf| |dualSignature|
+ |multiset| |e02bbf| |equality| |unvectorise| |simpson| |nthFactor|
+ |fill!| |strongGenerators| |printingInfo?| |lfintegrate|
+ |resultantEuclidean| |iiasec| |coefficient| |associatedEquations|
+ |fullPartialFraction| |separant| |simplifyLog| |unitNormal| |int|
+ |minset| |doubleResultant| |inspect| |computeBasis| |acschIfCan|
+ |besselJ| |category| |presub| |OMgetEndError| |torsion?| |f01brf|
+ |outerProduct| |radicalSimplify| |Ei| |d01aqf| |monomialIntegrate|
+ |chainSubResultants| |coerce| |domain| |karatsuba| |e04dgf|
+ |startTable!| |setCondition!| |expenseOfEvaluationIF| |bounds|
+ |vectorise| |droot| |rewriteSetWithReduction| |construct| |package|
+ |mightHaveRoots| |polynomialZeros| |minimumExponent| |mapGen| |source|
+ |delete!| |parts| |groebner?| |before?| |critB| |rightQuotient|
+ |zeroSetSplit| |leftExtendedGcd| |extractIndex| |maxColIndex|
+ |goodPoint| |changeBase| |vertConcat| |sinhIfCan| |clearDenominator|
+ |show| |isobaric?| |yCoordinates| |bernoulli| |univcase| |ptree|
+ |base| |cCsch| |generic| |FormatArabic| |noLinearFactor?| |setOfMinN|
+ |d01bbf| |intcompBasis| |pop!| |screenResolution3D| |coerceL|
+ |algebraicVariables| |pushuconst| |writeByte!| |symmetricGroup|
+ |trace| |f07fdf| |lazy?| |nthFractionalTerm| |basisOfRightNucleus|
+ |clipWithRanges| |leadingTerm| |inverseLaplace| |primintegrate|
+ |bsolve| |OMputBind| |recolor| |integralLastSubResultant|
+ |discriminantEuclidean| |target| |quadratic?| |conjugate| |real?|
+ |extract!| |binarySearchTree| |pade| |isQuotient| |weight| |color|
+ |ksec| |complexSolve| |genericPosition| |region| |removeConstantTerm|
+ |setClosed| |df2mf| |build| |mergeDifference| |tanhIfCan|
+ |problemPoints| |isOp| |autoReduced?| |po| |atanIfCan| |next| |erf|
+ |wordInGenerators| |unitNormalize| |sample| |e02ahf|
+ |symmetricProduct| |hdmpToP| |selectPDERoutines| |basisOfRightNucloid|
+ |trapezoidal| |writeInt8!| |cycles| |infRittWu?| |oneDimensionalArray|
+ |ravel| |cAcot| |ScanFloatIgnoreSpacesIfCan| |merge| |bezoutResultant|
+ |polygon?| |enqueue!| |alphabetic?| |compound?| |lSpaceBasis|
+ |reshape| |orbits| FG2F |imagE| |bytes| |withPredicates| |dilog|
+ |laplacian| |height| |iisinh| |d02raf| |setPredicates| |failed?|
+ |s21bdf| |SturmHabichtMultiple| |factorset| |removeSuperfluousCases|
+ |sin| |setelt| |algebraicCoefficients?| |top| |divide| |split|
+ |integrate| |KrullNumber| |argumentListOf| |startStats!| |mainValue|
+ |scripted?| |cos| |dmpToP| |character?| |idealiser| |lazyEvaluate|
+ |previous| |comp| |padecf| |index?| |OMsupportsCD?| |solid|
+ |duplicates?| |tan| |copy| |symbol?| |solveRetract| |positiveSolve|
+ |mathieu12| |length| |cyclicSubmodule| |clearFortranOutputStack|
+ |internal?| |iilog| |cRationalPower| |cot| |continue| |badValues|
+ |multinomial| |mapmult| |replace| |scripts| |update| |fmecg|
+ |presuper| |zoom| |toroidal| |removeZero| |sec| |badNum| |postfix|
+ |readLine!| |choosemon| |distance| |imagK| |tanSum| |root| |integral|
+ |csc| |autoCoerce| |modifyPoint| |list| |digit| |gethi|
+ |solveLinearPolynomialEquationByFractions| |commonDenominator|
+ |tableau| |epilogue| |setErrorBound| |getOrder| |asin| |splitLinear|
+ |car| |prindINFO| |OMgetEndApp| |rst| |s17akf| |lazyPseudoRemainder|
+ |reducedDiscriminant| |quoted?| |characteristic| |acos| |OMgetEndBind|
+ |cdr| |iiabs| |supRittWu?| |OMopenFile| |acotIfCan| |chebyshevT|
+ |iisqrt2| |smith| |exponentialOrder| |gramschmidt| |atan|
+ |setDifference| |cschIfCan| |powmod| |surface| |subtractIfCan|
+ |position| |preprocess| |pointLists| |besselY| |rationalPoints|
+ |e01baf| |acot| |rotatez| |setIntersection| |selectOrPolynomials|
+ |quatern| |genus| |declare| |aQuartic| |rightRecip| |overbar|
+ |rotatex| |internalInfRittWu?| |asec| |eigenvalues| |setUnion|
+ |splitConstant| |tanIfCan| |isTerm| |match?| |partialDenominators|
+ |children| |pdf2df| |tail| |insertTop!| |rationalIfCan| |apply|
+ |digamma| |laplace| |csubst| |node?| |colorFunction|
+ |oblateSpheroidal| |atanhIfCan| |appendPoint| |imagj| |hash| |iiatan|
+ |s19aaf| |squareFreeFactors| |removeDuplicates!| |iicos| |realRoots|
+ |factorAndSplit| |stoseInvertible?sqfreg| |unit| |maxrow| |count|
+ |double| |maxPoints| |size| |shanksDiscLogAlgorithm| |cCoth| |mesh|
+ |printStats!| |LagrangeInterpolation| |indicialEquationAtInfinity|
+ |squareFreePolynomial| |transpose| |viewport3D| |setButtonValue|
+ |iFTable| |stoseInvertibleSetreg| |repeating| |associatedSystem|
+ |digits| |dot| |dominantTerm| |tree| |zeroSquareMatrix| |dec|
+ |printStatement| |rightRank| |e02agf| |rightGcd| |gcdcofactprim|
+ |integralCoordinates| |supDimElseRittWu?| |number?| |triangulate|
+ |clipPointsDefault| |first| |irreducible?| |cTan| |row|
+ |leftTraceMatrix| |torsionIfCan| |FormatRoman| |simplify|
+ |generateIrredPoly| |prepareSubResAlgo| |increase| |rest|
+ |mainVariable?| |setValue!| |An| |makeFR| |solid?| |rightFactorIfCan|
+ |pmComplexintegrate| |showIntensityFunctions| |resize| |substitute|
+ |resultantnaif| |groebSolve| |s18aff| |complexRoots| |close!|
+ |leftUnit| |mainCharacterization| |mapBivariate| |cSec| |someBasis|
+ |removeDuplicates| |symmetricDifference| |symmetricSquare| |closed?|
+ |factorPolynomial| |normalElement| |chineseRemainder| |li| |s17agf|
+ |alternative?| |quasiComponent| |leader| |declare!| |upperCase|
+ |derivative| |algDsolve| |getSyntaxFormsFromFile| |doubleRank|
+ |Lazard| |generator| |s17dlf| |internalIntegrate|
+ |halfExtendedSubResultantGcd2| |linSolve| |rank| |pushucoef| |solve|
+ |extractSplittingLeaf| |ip4Address| |OMgetError| |setProperty!|
+ |finiteBasis| |resultantReduitEuclidean| |basisOfMiddleNucleus|
+ |nthFlag| |expPot| |nextPrimitivePoly| |integralMatrix| |subSet|
+ |submod| |cross| |c06fqf| |top!| |useSingleFactorBound?| |edf2efi|
+ |reduceLODE| |constantOperator| |updateStatus!|
+ |rightCharacteristicPolynomial| |minPol| |setScreenResolution3D|
+ |middle| |gensym| |infLex?| |extendedResultant|
+ |createMultiplicationTable| |shallowCopy| |removeSquaresIfCan|
+ |cosIfCan| |super| |mat| |cap| |iitan| |subresultantVector| |linear|
+ |useEisensteinCriterion?| |genericLeftTrace| |exprToGenUPS| |isTimes|
+ |integralBasisAtInfinity| |fortranComplex| |nextLatticePermutation|
+ |singular?| |lyndonIfCan| |initTable!| |expressIdealMember| |check|
+ |segment| |jordanAdmissible?| |modTree| |tanintegrate| |exQuo|
+ |polynomial| |radicalSolve| |sin2csc| |lazyPquo| |getPickedPoints|
+ |euclideanNormalForm| |lists| |degreeSubResultant|
+ |univariatePolynomial| |weighted| |dim| |tracePowMod| |asinhIfCan|
+ |remainder| |test| |numberOfMonomials| |numFunEvals| |iiatanh|
+ |firstNumer| |repeating?| |homogeneous?| |pointData| |superscript|
+ |loadNativeModule| |rewriteIdealWithRemainder| |LiePolyIfCan|
+ |isEquiv| |semiSubResultantGcdEuclidean1|
+ |halfExtendedSubResultantGcd1| |upperCase?| |s01eaf|
+ |compiledFunction| |HenselLift| |rischDEsys| |id|
+ |antisymmetricTensors| |littleEndian| |findCycle| |f07aef| |geometric|
+ |factorSquareFreePolynomial| |enumerate| |eq| |inrootof|
+ |numericIfCan| |cAsec| |dihedralGroup| |formula| |hue| |flexibleArray|
+ |maxPoints3D| |table| |upDateBranches| |iter| |exportedOperators|
+ |binary| |prefix| |makeEq| |writeUInt8!| |numberOfPrimitivePoly|
+ |shuffle| |decomposeFunc| |inRadical?| |new| |mkPrim| |e02dff|
+ |rightZero| |subNode?| |constantIfCan| |fracPart| |rowEchelonLocal|
+ |insert| |setScreenResolution| |symbolIfCan| |root?| |OMsetEncoding|
+ |iicoth| |getCode| |setColumn!| |checkPrecision| |uncouplingMatrices|
+ |insertBottom!| |mainForm| |quoByVar| |clearCache| |randomLC| |nrows|
+ |s18def| |totalGroebner| |options| |nextNormalPoly| |validExponential|
+ |superHeight| |palglimint| |OMsupportsSymbol?| |unknownEndian|
+ |create3Space| |output| |ncols| |keys|
+ |selectMultiDimensionalRoutines| |approximants| |rationalPoint?|
+ |returnType!| |e02def| |monomRDE| |directory| |multMonom| |log2|
+ |leftExactQuotient| |perfectSquare?| |oddInfiniteProduct| |socf2socdf|
+ |f01qef| |trace2PowMod| |predicate| |fprindINFO| |symmetricRemainder|
+ |One| |removeIrreducibleRedundantFactors|
+ |semiDegreeSubResultantEuclidean| |string| |exp| |balancedBinaryTree|
+ |tanAn| |outputFixed| |exactQuotient| |leftRemainder| |lfunc|
+ |rewriteIdealWithHeadRemainder| |removeRoughlyRedundantFactorsInPol|
+ |monicRightFactorIfCan| |exp1| |mdeg| |leastMonomial| |axes|
+ |errorKind| |doubleDisc| |dequeue| |readUInt8!| |domainTemplate|
+ |ramified?| |createLowComplexityNormalBasis| |second|
+ |derivationCoordinates| |restorePrecision| |OMputEndAtp| |coordinate|
+ |rewriteSetByReducingWithParticularGenerators|
+ |halfExtendedResultant1| |viewport2D| |primextendedint| |stFunc2|
+ |numberOfDivisors| |third| |characteristicPolynomial| |numeric| |eq?|
+ |capacity| |decrease| |cAsin| |graeffe| |lex| |getButtonValue|
+ |branchPoint?| |left| |listConjugateBases| |radical| |s15aef|
+ |binaryTournament| |sup| |exponential1| |iipow| |iiasinh|
+ |primlimintfrac| |trigs2explogs| |solveLinearlyOverQ| |pole?| |elt|
+ |right| |nil| |infinite| |arbitraryExponent| |approximate| |complex|
+ |shallowMutable| |canonical| |noetherian| |central|
|partiallyOrderedSet| |arbitraryPrecision| |canonicalsClosed|
|noZeroDivisors| |rightUnitary| |leftUnitary| |additiveValuation|
|unitsKnown| |canonicalUnitNormal| |multiplicativeValuation|
diff --git a/src/share/algebra/interp.daase b/src/share/algebra/interp.daase
index 6e1e9464..5b70fb9d 100644
--- a/src/share/algebra/interp.daase
+++ b/src/share/algebra/interp.daase
@@ -1,5319 +1,5319 @@
-(3221336 . 3453749814)
-((-2383 (((-112) (-1 (-112) |#2| |#2|) $) 87) (((-112) $) NIL)) (-3426 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-3874 ((|#2| $ (-566) |#2|) NIL) ((|#2| $ (-1231 (-566)) |#2|) 44)) (-2736 (($ $) 81)) (-4362 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 52) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 50) ((|#2| (-1 |#2| |#2| |#2|) $) 49)) (-3968 (((-566) (-1 (-112) |#2|) $) 27) (((-566) |#2| $) NIL) (((-566) |#2| $ (-566)) 97)) (-3372 (((-644 |#2|) $) 13)) (-3132 (($ (-1 (-112) |#2| |#2|) $ $) 64) (($ $ $) NIL)) (-1323 (($ (-1 |#2| |#2|) $) 37)) (-3077 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 60)) (-4268 (($ |#2| $ (-566)) NIL) (($ $ $ (-566)) 67)) (-2126 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 29)) (-2822 (((-112) (-1 (-112) |#2|) $) 23)) (-4386 ((|#2| $ (-566) |#2|) NIL) ((|#2| $ (-566)) NIL) (($ $ (-1231 (-566))) 66)) (-2201 (($ $ (-566)) 76) (($ $ (-1231 (-566))) 75)) (-4044 (((-771) (-1 (-112) |#2|) $) 34) (((-771) |#2| $) NIL)) (-3245 (($ $ $ (-566)) 69)) (-3895 (($ $) 68)) (-2523 (($ (-644 |#2|)) 73)) (-3704 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 88) (($ (-644 $)) 86)) (-2512 (((-862) $) 93)) (-3427 (((-112) (-1 (-112) |#2|) $) 22)) (-2940 (((-112) $ $) 96)) (-2962 (((-112) $ $) 100)))
-(((-18 |#1| |#2|) (-10 -8 (-15 -2940 ((-112) |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -2962 ((-112) |#1| |#1|)) (-15 -3426 (|#1| |#1|)) (-15 -3426 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2736 (|#1| |#1|)) (-15 -3245 (|#1| |#1| |#1| (-566))) (-15 -2383 ((-112) |#1|)) (-15 -3132 (|#1| |#1| |#1|)) (-15 -3968 ((-566) |#2| |#1| (-566))) (-15 -3968 ((-566) |#2| |#1|)) (-15 -3968 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -2383 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3132 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3874 (|#2| |#1| (-1231 (-566)) |#2|)) (-15 -4268 (|#1| |#1| |#1| (-566))) (-15 -4268 (|#1| |#2| |#1| (-566))) (-15 -2201 (|#1| |#1| (-1231 (-566)))) (-15 -2201 (|#1| |#1| (-566))) (-15 -4386 (|#1| |#1| (-1231 (-566)))) (-15 -3077 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3704 (|#1| (-644 |#1|))) (-15 -3704 (|#1| |#1| |#1|)) (-15 -3704 (|#1| |#2| |#1|)) (-15 -3704 (|#1| |#1| |#2|)) (-15 -2523 (|#1| (-644 |#2|))) (-15 -2126 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -4386 (|#2| |#1| (-566))) (-15 -4386 (|#2| |#1| (-566) |#2|)) (-15 -3874 (|#2| |#1| (-566) |#2|)) (-15 -4044 ((-771) |#2| |#1|)) (-15 -3372 ((-644 |#2|) |#1|)) (-15 -4044 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -2822 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1323 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3895 (|#1| |#1|))) (-19 |#2|) (-1214)) (T -18))
+(3220929 . 3453990516)
+((-3070 (((-112) (-1 (-112) |#2| |#2|) $) 87) (((-112) $) NIL)) (-1570 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-3916 ((|#2| $ (-566) |#2|) NIL) ((|#2| $ (-1231 (-566)) |#2|) 44)) (-3416 (($ $) 81)) (-1580 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 52) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 50) ((|#2| (-1 |#2| |#2| |#2|) $) 49)) (-4015 (((-566) (-1 (-112) |#2|) $) 27) (((-566) |#2| $) NIL) (((-566) |#2| $ (-566)) 97)) (-3799 (((-644 |#2|) $) 13)) (-3891 (($ (-1 (-112) |#2| |#2|) $ $) 64) (($ $ $) NIL)) (-3117 (($ (-1 |#2| |#2|) $) 37)) (-3152 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 60)) (-4286 (($ |#2| $ (-566)) NIL) (($ $ $ (-566)) 67)) (-3591 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 29)) (-3044 (((-112) (-1 (-112) |#2|) $) 23)) (-4393 ((|#2| $ (-566) |#2|) NIL) ((|#2| $ (-566)) NIL) (($ $ (-1231 (-566))) 66)) (-2215 (($ $ (-566)) 76) (($ $ (-1231 (-566))) 75)) (-4067 (((-771) (-1 (-112) |#2|) $) 34) (((-771) |#2| $) NIL)) (-3610 (($ $ $ (-566)) 69)) (-3940 (($ $) 68)) (-3791 (($ (-644 |#2|)) 73)) (-3727 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 88) (($ (-644 $)) 86)) (-3780 (((-862) $) 93)) (-1583 (((-112) (-1 (-112) |#2|) $) 22)) (-2950 (((-112) $ $) 96)) (-2972 (((-112) $ $) 100)))
+(((-18 |#1| |#2|) (-10 -8 (-15 -2950 ((-112) |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -2972 ((-112) |#1| |#1|)) (-15 -1570 (|#1| |#1|)) (-15 -1570 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3416 (|#1| |#1|)) (-15 -3610 (|#1| |#1| |#1| (-566))) (-15 -3070 ((-112) |#1|)) (-15 -3891 (|#1| |#1| |#1|)) (-15 -4015 ((-566) |#2| |#1| (-566))) (-15 -4015 ((-566) |#2| |#1|)) (-15 -4015 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -3070 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3891 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3916 (|#2| |#1| (-1231 (-566)) |#2|)) (-15 -4286 (|#1| |#1| |#1| (-566))) (-15 -4286 (|#1| |#2| |#1| (-566))) (-15 -2215 (|#1| |#1| (-1231 (-566)))) (-15 -2215 (|#1| |#1| (-566))) (-15 -4393 (|#1| |#1| (-1231 (-566)))) (-15 -3152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3727 (|#1| (-644 |#1|))) (-15 -3727 (|#1| |#1| |#1|)) (-15 -3727 (|#1| |#2| |#1|)) (-15 -3727 (|#1| |#1| |#2|)) (-15 -3791 (|#1| (-644 |#2|))) (-15 -3591 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -4393 (|#2| |#1| (-566))) (-15 -4393 (|#2| |#1| (-566) |#2|)) (-15 -3916 (|#2| |#1| (-566) |#2|)) (-15 -4067 ((-771) |#2| |#1|)) (-15 -3799 ((-644 |#2|) |#1|)) (-15 -4067 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -3044 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3117 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3940 (|#1| |#1|))) (-19 |#2|) (-1214)) (T -18))
NIL
-(-10 -8 (-15 -2940 ((-112) |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -2962 ((-112) |#1| |#1|)) (-15 -3426 (|#1| |#1|)) (-15 -3426 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2736 (|#1| |#1|)) (-15 -3245 (|#1| |#1| |#1| (-566))) (-15 -2383 ((-112) |#1|)) (-15 -3132 (|#1| |#1| |#1|)) (-15 -3968 ((-566) |#2| |#1| (-566))) (-15 -3968 ((-566) |#2| |#1|)) (-15 -3968 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -2383 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3132 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3874 (|#2| |#1| (-1231 (-566)) |#2|)) (-15 -4268 (|#1| |#1| |#1| (-566))) (-15 -4268 (|#1| |#2| |#1| (-566))) (-15 -2201 (|#1| |#1| (-1231 (-566)))) (-15 -2201 (|#1| |#1| (-566))) (-15 -4386 (|#1| |#1| (-1231 (-566)))) (-15 -3077 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3704 (|#1| (-644 |#1|))) (-15 -3704 (|#1| |#1| |#1|)) (-15 -3704 (|#1| |#2| |#1|)) (-15 -3704 (|#1| |#1| |#2|)) (-15 -2523 (|#1| (-644 |#2|))) (-15 -2126 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -4386 (|#2| |#1| (-566))) (-15 -4386 (|#2| |#1| (-566) |#2|)) (-15 -3874 (|#2| |#1| (-566) |#2|)) (-15 -4044 ((-771) |#2| |#1|)) (-15 -3372 ((-644 |#2|) |#1|)) (-15 -4044 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -2822 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1323 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3895 (|#1| |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1537 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4418))) (($ $) 89 (-12 (|has| |#1| (-850)) (|has| $ (-6 -4418))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) 8)) (-3874 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-2736 (($ $) 91 (|has| $ (-6 -4418)))) (-3852 (($ $) 101)) (-4093 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 52)) (-3968 (((-566) (-1 (-112) |#1|) $) 98) (((-566) |#1| $) 97 (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) 96 (|has| |#1| (-1099)))) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-4257 (($ (-771) |#1|) 70)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 44 (|has| (-566) (-850)))) (-1439 (($ $ $) 88 (|has| |#1| (-850)))) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 45 (|has| (-566) (-850)))) (-3059 (($ $ $) 87 (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-1922 (((-644 (-566)) $) 47)) (-2040 (((-112) (-566) $) 48)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4062 ((|#1| $) 43 (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1720 (($ $ |#1|) 42 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-2201 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3245 (($ $ $ (-566)) 92 (|has| $ (-6 -4418)))) (-3895 (($ $) 13)) (-3134 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 71)) (-3704 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) 85 (|has| |#1| (-850)))) (-2974 (((-112) $ $) 84 (|has| |#1| (-850)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2987 (((-112) $ $) 86 (|has| |#1| (-850)))) (-2962 (((-112) $ $) 83 (|has| |#1| (-850)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+(-10 -8 (-15 -2950 ((-112) |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -2972 ((-112) |#1| |#1|)) (-15 -1570 (|#1| |#1|)) (-15 -1570 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3416 (|#1| |#1|)) (-15 -3610 (|#1| |#1| |#1| (-566))) (-15 -3070 ((-112) |#1|)) (-15 -3891 (|#1| |#1| |#1|)) (-15 -4015 ((-566) |#2| |#1| (-566))) (-15 -4015 ((-566) |#2| |#1|)) (-15 -4015 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -3070 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3891 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3916 (|#2| |#1| (-1231 (-566)) |#2|)) (-15 -4286 (|#1| |#1| |#1| (-566))) (-15 -4286 (|#1| |#2| |#1| (-566))) (-15 -2215 (|#1| |#1| (-1231 (-566)))) (-15 -2215 (|#1| |#1| (-566))) (-15 -4393 (|#1| |#1| (-1231 (-566)))) (-15 -3152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3727 (|#1| (-644 |#1|))) (-15 -3727 (|#1| |#1| |#1|)) (-15 -3727 (|#1| |#2| |#1|)) (-15 -3727 (|#1| |#1| |#2|)) (-15 -3791 (|#1| (-644 |#2|))) (-15 -3591 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -4393 (|#2| |#1| (-566))) (-15 -4393 (|#2| |#1| (-566) |#2|)) (-15 -3916 (|#2| |#1| (-566) |#2|)) (-15 -4067 ((-771) |#2| |#1|)) (-15 -3799 ((-644 |#2|) |#1|)) (-15 -4067 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -3044 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3117 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3940 (|#1| |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2518 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4415))) (($ $) 89 (-12 (|has| |#1| (-850)) (|has| $ (-6 -4415))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) 8)) (-3916 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-3416 (($ $) 91 (|has| $ (-6 -4415)))) (-3507 (($ $) 101)) (-4133 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 52)) (-4015 (((-566) (-1 (-112) |#1|) $) 98) (((-566) |#1| $) 97 (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) 96 (|has| |#1| (-1099)))) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-4278 (($ (-771) |#1|) 70)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 44 (|has| (-566) (-850)))) (-1945 (($ $ $) 88 (|has| |#1| (-850)))) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 45 (|has| (-566) (-850)))) (-2709 (($ $ $) 87 (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-2140 (((-644 (-566)) $) 47)) (-3935 (((-112) (-566) $) 48)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4101 ((|#1| $) 43 (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3750 (($ $ |#1|) 42 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-2215 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3610 (($ $ $ (-566)) 92 (|has| $ (-6 -4415)))) (-3940 (($ $) 13)) (-3204 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 71)) (-3727 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) 85 (|has| |#1| (-850)))) (-2984 (((-112) $ $) 84 (|has| |#1| (-850)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2999 (((-112) $ $) 86 (|has| |#1| (-850)))) (-2972 (((-112) $ $) 83 (|has| |#1| (-850)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-19 |#1|) (-140) (-1214)) (T -19))
NIL
-(-13 (-375 |t#1|) (-10 -7 (-6 -4418)))
+(-13 (-375 |t#1|) (-10 -7 (-6 -4415)))
(((-34) . T) ((-102) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850))) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-287 #0=(-566) |#1|) . T) ((-289 #0# |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-375 |#1|) . T) ((-491 |#1|) . T) ((-604 #0# |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-651 |#1|) . T) ((-850) |has| |#1| (-850)) ((-1099) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850))) ((-1214) . T))
-((-4126 (((-3 $ "failed") $ $) 12)) (-3047 (($ $) NIL) (($ $ $) 9)) (* (($ (-921) $) NIL) (($ (-771) $) 16) (($ (-566) $) 26)))
-(((-20 |#1|) (-10 -8 (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 -4126 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|))) (-21)) (T -20))
+((-4014 (((-3 $ "failed") $ $) 12)) (-3051 (($ $) NIL) (($ $ $) 9)) (* (($ (-921) $) NIL) (($ (-771) $) 16) (($ (-566) $) 26)))
+(((-20 |#1|) (-10 -8 (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 -4014 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|))) (-21)) (T -20))
NIL
-(-10 -8 (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 -4126 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24)))
+(-10 -8 (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 -4014 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24)))
(((-21) (-140)) (T -21))
-((-3047 (*1 *1 *1) (-4 *1 (-21))) (-3047 (*1 *1 *1 *1) (-4 *1 (-21))))
-(-13 (-131) (-646 (-566)) (-10 -8 (-15 -3047 ($ $)) (-15 -3047 ($ $ $))))
+((-3051 (*1 *1 *1) (-4 *1 (-21))) (-3051 (*1 *1 *1 *1) (-4 *1 (-21))))
+(-13 (-131) (-646 (-566)) (-10 -8 (-15 -3051 ($ $)) (-15 -3051 ($ $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-1099) . T))
-((-3958 (((-112) $) 10)) (-2342 (($) 15)) (* (($ (-921) $) 14) (($ (-771) $) 19)))
-(((-22 |#1|) (-10 -8 (-15 * (|#1| (-771) |#1|)) (-15 -3958 ((-112) |#1|)) (-15 -2342 (|#1|)) (-15 * (|#1| (-921) |#1|))) (-23)) (T -22))
+((-3015 (((-112) $) 10)) (-3877 (($) 15)) (* (($ (-921) $) 14) (($ (-771) $) 19)))
+(((-22 |#1|) (-10 -8 (-15 * (|#1| (-771) |#1|)) (-15 -3015 ((-112) |#1|)) (-15 -3877 (|#1|)) (-15 * (|#1| (-921) |#1|))) (-23)) (T -22))
NIL
-(-10 -8 (-15 * (|#1| (-771) |#1|)) (-15 -3958 ((-112) |#1|)) (-15 -2342 (|#1|)) (-15 * (|#1| (-921) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2342 (($) 18 T CONST)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16)))
+(-10 -8 (-15 * (|#1| (-771) |#1|)) (-15 -3015 ((-112) |#1|)) (-15 -3877 (|#1|)) (-15 * (|#1| (-921) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3877 (($) 18 T CONST)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16)))
(((-23) (-140)) (T -23))
-((-2485 (*1 *1) (-4 *1 (-23))) (-2342 (*1 *1) (-4 *1 (-23))) (-3958 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-771)))))
-(-13 (-25) (-10 -8 (-15 (-2485) ($) -1655) (-15 -2342 ($) -1655) (-15 -3958 ((-112) $)) (-15 * ($ (-771) $))))
+((-2493 (*1 *1) (-4 *1 (-23))) (-3877 (*1 *1) (-4 *1 (-23))) (-3015 (*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-771)))))
+(-13 (-25) (-10 -8 (-15 (-2493) ($) -2460) (-15 -3877 ($) -2460) (-15 -3015 ((-112) $)) (-15 * ($ (-771) $))))
(((-25) . T) ((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
((* (($ (-921) $) 10)))
(((-24 |#1|) (-10 -8 (-15 * (|#1| (-921) |#1|))) (-25)) (T -24))
NIL
(-10 -8 (-15 * (|#1| (-921) |#1|)))
-((-2985 (((-112) $ $) 7)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14)))
+((-3009 (((-112) $ $) 7)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14)))
(((-25) (-140)) (T -25))
-((-3034 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-921)))))
-(-13 (-1099) (-10 -8 (-15 -3034 ($ $ $)) (-15 * ($ (-921) $))))
+((-3040 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-921)))))
+(-13 (-1099) (-10 -8 (-15 -3040 ($ $ $)) (-15 * ($ (-921) $))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-1515 (((-644 $) (-952 $)) 32) (((-644 $) (-1171 $)) 16) (((-644 $) (-1171 $) (-1175)) 20)) (-3265 (($ (-952 $)) 30) (($ (-1171 $)) 11) (($ (-1171 $) (-1175)) 60)) (-3844 (((-644 $) (-952 $)) 33) (((-644 $) (-1171 $)) 18) (((-644 $) (-1171 $) (-1175)) 19)) (-2170 (($ (-952 $)) 31) (($ (-1171 $)) 13) (($ (-1171 $) (-1175)) NIL)))
-(((-26 |#1|) (-10 -8 (-15 -1515 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -1515 ((-644 |#1|) (-1171 |#1|))) (-15 -1515 ((-644 |#1|) (-952 |#1|))) (-15 -3265 (|#1| (-1171 |#1|) (-1175))) (-15 -3265 (|#1| (-1171 |#1|))) (-15 -3265 (|#1| (-952 |#1|))) (-15 -3844 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3844 ((-644 |#1|) (-1171 |#1|))) (-15 -3844 ((-644 |#1|) (-952 |#1|))) (-15 -2170 (|#1| (-1171 |#1|) (-1175))) (-15 -2170 (|#1| (-1171 |#1|))) (-15 -2170 (|#1| (-952 |#1|)))) (-27)) (T -26))
+((-3508 (((-644 $) (-952 $)) 32) (((-644 $) (-1171 $)) 16) (((-644 $) (-1171 $) (-1175)) 20)) (-2601 (($ (-952 $)) 30) (($ (-1171 $)) 11) (($ (-1171 $) (-1175)) 60)) (-3246 (((-644 $) (-952 $)) 33) (((-644 $) (-1171 $)) 18) (((-644 $) (-1171 $) (-1175)) 19)) (-2778 (($ (-952 $)) 31) (($ (-1171 $)) 13) (($ (-1171 $) (-1175)) NIL)))
+(((-26 |#1|) (-10 -8 (-15 -3508 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3508 ((-644 |#1|) (-1171 |#1|))) (-15 -3508 ((-644 |#1|) (-952 |#1|))) (-15 -2601 (|#1| (-1171 |#1|) (-1175))) (-15 -2601 (|#1| (-1171 |#1|))) (-15 -2601 (|#1| (-952 |#1|))) (-15 -3246 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3246 ((-644 |#1|) (-1171 |#1|))) (-15 -3246 ((-644 |#1|) (-952 |#1|))) (-15 -2778 (|#1| (-1171 |#1|) (-1175))) (-15 -2778 (|#1| (-1171 |#1|))) (-15 -2778 (|#1| (-952 |#1|)))) (-27)) (T -26))
NIL
-(-10 -8 (-15 -1515 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -1515 ((-644 |#1|) (-1171 |#1|))) (-15 -1515 ((-644 |#1|) (-952 |#1|))) (-15 -3265 (|#1| (-1171 |#1|) (-1175))) (-15 -3265 (|#1| (-1171 |#1|))) (-15 -3265 (|#1| (-952 |#1|))) (-15 -3844 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3844 ((-644 |#1|) (-1171 |#1|))) (-15 -3844 ((-644 |#1|) (-952 |#1|))) (-15 -2170 (|#1| (-1171 |#1|) (-1175))) (-15 -2170 (|#1| (-1171 |#1|))) (-15 -2170 (|#1| (-952 |#1|))))
-((-2985 (((-112) $ $) 7)) (-1515 (((-644 $) (-952 $)) 88) (((-644 $) (-1171 $)) 87) (((-644 $) (-1171 $) (-1175)) 86)) (-3265 (($ (-952 $)) 91) (($ (-1171 $)) 90) (($ (-1171 $) (-1175)) 89)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 81)) (-1370 (((-420 $) $) 80)) (-2402 (($ $) 100)) (-1561 (((-112) $ $) 65)) (-2342 (($) 18 T CONST)) (-3844 (((-644 $) (-952 $)) 94) (((-644 $) (-1171 $)) 93) (((-644 $) (-1171 $) (-1175)) 92)) (-2170 (($ (-952 $)) 97) (($ (-1171 $)) 96) (($ (-1171 $) (-1175)) 95)) (-2926 (($ $ $) 61)) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-2635 (((-112) $) 79)) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 99)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 78)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-2391 (((-420 $) $) 82)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1813 (((-771) $) 64)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 73)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77) (($ $ (-409 (-566))) 98)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
+(-10 -8 (-15 -3508 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3508 ((-644 |#1|) (-1171 |#1|))) (-15 -3508 ((-644 |#1|) (-952 |#1|))) (-15 -2601 (|#1| (-1171 |#1|) (-1175))) (-15 -2601 (|#1| (-1171 |#1|))) (-15 -2601 (|#1| (-952 |#1|))) (-15 -3246 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3246 ((-644 |#1|) (-1171 |#1|))) (-15 -3246 ((-644 |#1|) (-952 |#1|))) (-15 -2778 (|#1| (-1171 |#1|) (-1175))) (-15 -2778 (|#1| (-1171 |#1|))) (-15 -2778 (|#1| (-952 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3508 (((-644 $) (-952 $)) 88) (((-644 $) (-1171 $)) 87) (((-644 $) (-1171 $) (-1175)) 86)) (-2601 (($ (-952 $)) 91) (($ (-1171 $)) 90) (($ (-1171 $) (-1175)) 89)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 81)) (-3271 (((-420 $) $) 80)) (-2484 (($ $) 100)) (-2738 (((-112) $ $) 65)) (-3877 (($) 18 T CONST)) (-3246 (((-644 $) (-952 $)) 94) (((-644 $) (-1171 $)) 93) (((-644 $) (-1171 $) (-1175)) 92)) (-2778 (($ (-952 $)) 97) (($ (-1171 $)) 96) (($ (-1171 $) (-1175)) 95)) (-2949 (($ $ $) 61)) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-1784 (((-112) $) 79)) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 99)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 78)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2473 (((-420 $) $) 82)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3470 (((-771) $) 64)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 73)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77) (($ $ (-409 (-566))) 98)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
(((-27) (-140)) (T -27))
-((-2170 (*1 *1 *2) (-12 (-5 *2 (-952 *1)) (-4 *1 (-27)))) (-2170 (*1 *1 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-27)))) (-2170 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *1)) (-5 *3 (-1175)) (-4 *1 (-27)))) (-3844 (*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1)))) (-3844 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1)))) (-3844 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *1)) (-5 *4 (-1175)) (-4 *1 (-27)) (-5 *2 (-644 *1)))) (-3265 (*1 *1 *2) (-12 (-5 *2 (-952 *1)) (-4 *1 (-27)))) (-3265 (*1 *1 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-27)))) (-3265 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *1)) (-5 *3 (-1175)) (-4 *1 (-27)))) (-1515 (*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1)))) (-1515 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1)))) (-1515 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *1)) (-5 *4 (-1175)) (-4 *1 (-27)) (-5 *2 (-644 *1)))))
-(-13 (-365) (-1002) (-10 -8 (-15 -2170 ($ (-952 $))) (-15 -2170 ($ (-1171 $))) (-15 -2170 ($ (-1171 $) (-1175))) (-15 -3844 ((-644 $) (-952 $))) (-15 -3844 ((-644 $) (-1171 $))) (-15 -3844 ((-644 $) (-1171 $) (-1175))) (-15 -3265 ($ (-952 $))) (-15 -3265 ($ (-1171 $))) (-15 -3265 ($ (-1171 $) (-1175))) (-15 -1515 ((-644 $) (-952 $))) (-15 -1515 ((-644 $) (-1171 $))) (-15 -1515 ((-644 $) (-1171 $) (-1175)))))
+((-2778 (*1 *1 *2) (-12 (-5 *2 (-952 *1)) (-4 *1 (-27)))) (-2778 (*1 *1 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-27)))) (-2778 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *1)) (-5 *3 (-1175)) (-4 *1 (-27)))) (-3246 (*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1)))) (-3246 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1)))) (-3246 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *1)) (-5 *4 (-1175)) (-4 *1 (-27)) (-5 *2 (-644 *1)))) (-2601 (*1 *1 *2) (-12 (-5 *2 (-952 *1)) (-4 *1 (-27)))) (-2601 (*1 *1 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-27)))) (-2601 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *1)) (-5 *3 (-1175)) (-4 *1 (-27)))) (-3508 (*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1)))) (-3508 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1)))) (-3508 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *1)) (-5 *4 (-1175)) (-4 *1 (-27)) (-5 *2 (-644 *1)))))
+(-13 (-365) (-1002) (-10 -8 (-15 -2778 ($ (-952 $))) (-15 -2778 ($ (-1171 $))) (-15 -2778 ($ (-1171 $) (-1175))) (-15 -3246 ((-644 $) (-952 $))) (-15 -3246 ((-644 $) (-1171 $))) (-15 -3246 ((-644 $) (-1171 $) (-1175))) (-15 -2601 ($ (-952 $))) (-15 -2601 ($ (-1171 $))) (-15 -2601 ($ (-1171 $) (-1175))) (-15 -3508 ((-644 $) (-952 $))) (-15 -3508 ((-644 $) (-1171 $))) (-15 -3508 ((-644 $) (-1171 $) (-1175)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-616 #0#) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-243) . T) ((-291) . T) ((-308) . T) ((-365) . T) ((-454) . T) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 $) . T) ((-640 #0#) . T) ((-640 $) . T) ((-717 #0#) . T) ((-717 $) . T) ((-726) . T) ((-920) . T) ((-1002) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) . T))
-((-1515 (((-644 $) (-952 $)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-1171 $) (-1175)) 55) (((-644 $) $) 22) (((-644 $) $ (-1175)) 46)) (-3265 (($ (-952 $)) NIL) (($ (-1171 $)) NIL) (($ (-1171 $) (-1175)) 57) (($ $) 20) (($ $ (-1175)) 40)) (-3844 (((-644 $) (-952 $)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-1171 $) (-1175)) 53) (((-644 $) $) 18) (((-644 $) $ (-1175)) 48)) (-2170 (($ (-952 $)) NIL) (($ (-1171 $)) NIL) (($ (-1171 $) (-1175)) NIL) (($ $) 15) (($ $ (-1175)) 42)))
-(((-28 |#1| |#2|) (-10 -8 (-15 -1515 ((-644 |#1|) |#1| (-1175))) (-15 -3265 (|#1| |#1| (-1175))) (-15 -1515 ((-644 |#1|) |#1|)) (-15 -3265 (|#1| |#1|)) (-15 -3844 ((-644 |#1|) |#1| (-1175))) (-15 -2170 (|#1| |#1| (-1175))) (-15 -3844 ((-644 |#1|) |#1|)) (-15 -2170 (|#1| |#1|)) (-15 -1515 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -1515 ((-644 |#1|) (-1171 |#1|))) (-15 -1515 ((-644 |#1|) (-952 |#1|))) (-15 -3265 (|#1| (-1171 |#1|) (-1175))) (-15 -3265 (|#1| (-1171 |#1|))) (-15 -3265 (|#1| (-952 |#1|))) (-15 -3844 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3844 ((-644 |#1|) (-1171 |#1|))) (-15 -3844 ((-644 |#1|) (-952 |#1|))) (-15 -2170 (|#1| (-1171 |#1|) (-1175))) (-15 -2170 (|#1| (-1171 |#1|))) (-15 -2170 (|#1| (-952 |#1|)))) (-29 |#2|) (-558)) (T -28))
+((-3508 (((-644 $) (-952 $)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-1171 $) (-1175)) 55) (((-644 $) $) 22) (((-644 $) $ (-1175)) 46)) (-2601 (($ (-952 $)) NIL) (($ (-1171 $)) NIL) (($ (-1171 $) (-1175)) 57) (($ $) 20) (($ $ (-1175)) 40)) (-3246 (((-644 $) (-952 $)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-1171 $) (-1175)) 53) (((-644 $) $) 18) (((-644 $) $ (-1175)) 48)) (-2778 (($ (-952 $)) NIL) (($ (-1171 $)) NIL) (($ (-1171 $) (-1175)) NIL) (($ $) 15) (($ $ (-1175)) 42)))
+(((-28 |#1| |#2|) (-10 -8 (-15 -3508 ((-644 |#1|) |#1| (-1175))) (-15 -2601 (|#1| |#1| (-1175))) (-15 -3508 ((-644 |#1|) |#1|)) (-15 -2601 (|#1| |#1|)) (-15 -3246 ((-644 |#1|) |#1| (-1175))) (-15 -2778 (|#1| |#1| (-1175))) (-15 -3246 ((-644 |#1|) |#1|)) (-15 -2778 (|#1| |#1|)) (-15 -3508 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3508 ((-644 |#1|) (-1171 |#1|))) (-15 -3508 ((-644 |#1|) (-952 |#1|))) (-15 -2601 (|#1| (-1171 |#1|) (-1175))) (-15 -2601 (|#1| (-1171 |#1|))) (-15 -2601 (|#1| (-952 |#1|))) (-15 -3246 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3246 ((-644 |#1|) (-1171 |#1|))) (-15 -3246 ((-644 |#1|) (-952 |#1|))) (-15 -2778 (|#1| (-1171 |#1|) (-1175))) (-15 -2778 (|#1| (-1171 |#1|))) (-15 -2778 (|#1| (-952 |#1|)))) (-29 |#2|) (-558)) (T -28))
NIL
-(-10 -8 (-15 -1515 ((-644 |#1|) |#1| (-1175))) (-15 -3265 (|#1| |#1| (-1175))) (-15 -1515 ((-644 |#1|) |#1|)) (-15 -3265 (|#1| |#1|)) (-15 -3844 ((-644 |#1|) |#1| (-1175))) (-15 -2170 (|#1| |#1| (-1175))) (-15 -3844 ((-644 |#1|) |#1|)) (-15 -2170 (|#1| |#1|)) (-15 -1515 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -1515 ((-644 |#1|) (-1171 |#1|))) (-15 -1515 ((-644 |#1|) (-952 |#1|))) (-15 -3265 (|#1| (-1171 |#1|) (-1175))) (-15 -3265 (|#1| (-1171 |#1|))) (-15 -3265 (|#1| (-952 |#1|))) (-15 -3844 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3844 ((-644 |#1|) (-1171 |#1|))) (-15 -3844 ((-644 |#1|) (-952 |#1|))) (-15 -2170 (|#1| (-1171 |#1|) (-1175))) (-15 -2170 (|#1| (-1171 |#1|))) (-15 -2170 (|#1| (-952 |#1|))))
-((-2985 (((-112) $ $) 7)) (-1515 (((-644 $) (-952 $)) 88) (((-644 $) (-1171 $)) 87) (((-644 $) (-1171 $) (-1175)) 86) (((-644 $) $) 134) (((-644 $) $ (-1175)) 132)) (-3265 (($ (-952 $)) 91) (($ (-1171 $)) 90) (($ (-1171 $) (-1175)) 89) (($ $) 135) (($ $ (-1175)) 133)) (-3958 (((-112) $) 17)) (-2540 (((-644 (-1175)) $) 203)) (-2358 (((-409 (-1171 $)) $ (-612 $)) 235 (|has| |#1| (-558)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-2248 (((-644 (-612 $)) $) 166)) (-4126 (((-3 $ "failed") $ $) 20)) (-3226 (($ $ (-644 (-612 $)) (-644 $)) 156) (($ $ (-644 (-295 $))) 155) (($ $ (-295 $)) 154)) (-2857 (($ $) 81)) (-1370 (((-420 $) $) 80)) (-2402 (($ $) 100)) (-1561 (((-112) $ $) 65)) (-2342 (($) 18 T CONST)) (-3844 (((-644 $) (-952 $)) 94) (((-644 $) (-1171 $)) 93) (((-644 $) (-1171 $) (-1175)) 92) (((-644 $) $) 138) (((-644 $) $ (-1175)) 136)) (-2170 (($ (-952 $)) 97) (($ (-1171 $)) 96) (($ (-1171 $) (-1175)) 95) (($ $) 139) (($ $ (-1175)) 137)) (-2977 (((-3 (-952 |#1|) "failed") $) 253 (|has| |#1| (-1049))) (((-3 (-409 (-952 |#1|)) "failed") $) 237 (|has| |#1| (-558))) (((-3 |#1| "failed") $) 199) (((-3 (-566) "failed") $) 196 (|has| |#1| (-1038 (-566)))) (((-3 (-1175) "failed") $) 190) (((-3 (-612 $) "failed") $) 141) (((-3 (-409 (-566)) "failed") $) 130 (-2805 (-12 (|has| |#1| (-1038 (-566))) (|has| |#1| (-558))) (|has| |#1| (-1038 (-409 (-566))))))) (-1756 (((-952 |#1|) $) 252 (|has| |#1| (-1049))) (((-409 (-952 |#1|)) $) 236 (|has| |#1| (-558))) ((|#1| $) 198) (((-566) $) 197 (|has| |#1| (-1038 (-566)))) (((-1175) $) 189) (((-612 $) $) 140) (((-409 (-566)) $) 131 (-2805 (-12 (|has| |#1| (-1038 (-566))) (|has| |#1| (-558))) (|has| |#1| (-1038 (-409 (-566))))))) (-2926 (($ $ $) 61)) (-1628 (((-689 |#1|) (-689 $)) 243 (|has| |#1| (-1049))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 242 (|has| |#1| (-1049))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 129 (-2805 (-2438 (|has| |#1| (-1049)) (|has| |#1| (-639 (-566)))) (-2438 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))))) (((-689 (-566)) (-689 $)) 128 (-2805 (-2438 (|has| |#1| (-1049)) (|has| |#1| (-639 (-566)))) (-2438 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-2635 (((-112) $) 79)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 195 (|has| |#1| (-886 (-381)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 194 (|has| |#1| (-886 (-566))))) (-4334 (($ (-644 $)) 160) (($ $) 159)) (-3674 (((-644 (-114)) $) 167)) (-2336 (((-114) (-114)) 168)) (-2741 (((-112) $) 35)) (-2884 (((-112) $) 188 (|has| $ (-1038 (-566))))) (-2861 (($ $) 220 (|has| |#1| (-1049)))) (-3001 (((-1124 |#1| (-612 $)) $) 219 (|has| |#1| (-1049)))) (-3979 (($ $ (-566)) 99)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2734 (((-1171 $) (-612 $)) 185 (|has| $ (-1049)))) (-3077 (($ (-1 $ $) (-612 $)) 174)) (-2230 (((-3 (-612 $) "failed") $) 164)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2322 (((-644 (-612 $)) $) 165)) (-3083 (($ (-114) (-644 $)) 173) (($ (-114) $) 172)) (-2692 (((-3 (-644 $) "failed") $) 214 (|has| |#1| (-1111)))) (-3658 (((-3 (-2 (|:| |val| $) (|:| -3250 (-566))) "failed") $) 223 (|has| |#1| (-1049)))) (-1853 (((-3 (-644 $) "failed") $) 216 (|has| |#1| (-25)))) (-2113 (((-3 (-2 (|:| -3157 (-566)) (|:| |var| (-612 $))) "failed") $) 217 (|has| |#1| (-25)))) (-3285 (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $ (-1175)) 222 (|has| |#1| (-1049))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $ (-114)) 221 (|has| |#1| (-1049))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $) 215 (|has| |#1| (-1111)))) (-2181 (((-112) $ (-1175)) 171) (((-112) $ (-114)) 170)) (-2626 (($ $) 78)) (-3173 (((-771) $) 163)) (-4033 (((-1119) $) 11)) (-2636 (((-112) $) 201)) (-3531 ((|#1| $) 202)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-1981 (((-112) $ (-1175)) 176) (((-112) $ $) 175)) (-2391 (((-420 $) $) 82)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1693 (((-112) $) 187 (|has| $ (-1038 (-566))))) (-2070 (($ $ (-1175) (-771) (-1 $ $)) 227 (|has| |#1| (-1049))) (($ $ (-1175) (-771) (-1 $ (-644 $))) 226 (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ (-644 $)))) 225 (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ $))) 224 (|has| |#1| (-1049))) (($ $ (-644 (-114)) (-644 $) (-1175)) 213 (|has| |#1| (-614 (-538)))) (($ $ (-114) $ (-1175)) 212 (|has| |#1| (-614 (-538)))) (($ $) 211 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-1175))) 210 (|has| |#1| (-614 (-538)))) (($ $ (-1175)) 209 (|has| |#1| (-614 (-538)))) (($ $ (-114) (-1 $ $)) 184) (($ $ (-114) (-1 $ (-644 $))) 183) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) 182) (($ $ (-644 (-114)) (-644 (-1 $ $))) 181) (($ $ (-1175) (-1 $ $)) 180) (($ $ (-1175) (-1 $ (-644 $))) 179) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) 178) (($ $ (-644 (-1175)) (-644 (-1 $ $))) 177) (($ $ (-644 $) (-644 $)) 148) (($ $ $ $) 147) (($ $ (-295 $)) 146) (($ $ (-644 (-295 $))) 145) (($ $ (-644 (-612 $)) (-644 $)) 144) (($ $ (-612 $) $) 143)) (-1813 (((-771) $) 64)) (-4386 (($ (-114) (-644 $)) 153) (($ (-114) $ $ $ $) 152) (($ (-114) $ $ $) 151) (($ (-114) $ $) 150) (($ (-114) $) 149)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-2811 (($ $ $) 162) (($ $) 161)) (-2862 (($ $ (-1175)) 251 (|has| |#1| (-1049))) (($ $ (-644 (-1175))) 250 (|has| |#1| (-1049))) (($ $ (-1175) (-771)) 249 (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) 248 (|has| |#1| (-1049)))) (-3413 (($ $) 230 (|has| |#1| (-558)))) (-3013 (((-1124 |#1| (-612 $)) $) 229 (|has| |#1| (-558)))) (-2127 (($ $) 186 (|has| $ (-1049)))) (-3134 (((-538) $) 257 (|has| |#1| (-614 (-538)))) (($ (-420 $)) 228 (|has| |#1| (-558))) (((-892 (-381)) $) 193 (|has| |#1| (-614 (-892 (-381))))) (((-892 (-566)) $) 192 (|has| |#1| (-614 (-892 (-566)))))) (-2032 (($ $ $) 256 (|has| |#1| (-475)))) (-3755 (($ $ $) 255 (|has| |#1| (-475)))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ (-952 |#1|)) 254 (|has| |#1| (-1049))) (($ (-409 (-952 |#1|))) 238 (|has| |#1| (-558))) (($ (-409 (-952 (-409 |#1|)))) 234 (|has| |#1| (-558))) (($ (-952 (-409 |#1|))) 233 (|has| |#1| (-558))) (($ (-409 |#1|)) 232 (|has| |#1| (-558))) (($ (-1124 |#1| (-612 $))) 218 (|has| |#1| (-1049))) (($ |#1|) 200) (($ (-1175)) 191) (($ (-612 $)) 142)) (-3842 (((-3 $ "failed") $) 241 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-3236 (($ (-644 $)) 158) (($ $) 157)) (-2306 (((-112) (-114)) 169)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-3357 (($ (-1175) (-644 $)) 208) (($ (-1175) $ $ $ $) 207) (($ (-1175) $ $ $) 206) (($ (-1175) $ $) 205) (($ (-1175) $) 204)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-1175)) 247 (|has| |#1| (-1049))) (($ $ (-644 (-1175))) 246 (|has| |#1| (-1049))) (($ $ (-1175) (-771)) 245 (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) 244 (|has| |#1| (-1049)))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 73) (($ (-1124 |#1| (-612 $)) (-1124 |#1| (-612 $))) 231 (|has| |#1| (-558)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77) (($ $ (-409 (-566))) 98)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75) (($ $ |#1|) 240 (|has| |#1| (-172))) (($ |#1| $) 239 (|has| |#1| (-172)))))
+(-10 -8 (-15 -3508 ((-644 |#1|) |#1| (-1175))) (-15 -2601 (|#1| |#1| (-1175))) (-15 -3508 ((-644 |#1|) |#1|)) (-15 -2601 (|#1| |#1|)) (-15 -3246 ((-644 |#1|) |#1| (-1175))) (-15 -2778 (|#1| |#1| (-1175))) (-15 -3246 ((-644 |#1|) |#1|)) (-15 -2778 (|#1| |#1|)) (-15 -3508 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3508 ((-644 |#1|) (-1171 |#1|))) (-15 -3508 ((-644 |#1|) (-952 |#1|))) (-15 -2601 (|#1| (-1171 |#1|) (-1175))) (-15 -2601 (|#1| (-1171 |#1|))) (-15 -2601 (|#1| (-952 |#1|))) (-15 -3246 ((-644 |#1|) (-1171 |#1|) (-1175))) (-15 -3246 ((-644 |#1|) (-1171 |#1|))) (-15 -3246 ((-644 |#1|) (-952 |#1|))) (-15 -2778 (|#1| (-1171 |#1|) (-1175))) (-15 -2778 (|#1| (-1171 |#1|))) (-15 -2778 (|#1| (-952 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3508 (((-644 $) (-952 $)) 88) (((-644 $) (-1171 $)) 87) (((-644 $) (-1171 $) (-1175)) 86) (((-644 $) $) 134) (((-644 $) $ (-1175)) 132)) (-2601 (($ (-952 $)) 91) (($ (-1171 $)) 90) (($ (-1171 $) (-1175)) 89) (($ $) 135) (($ $ (-1175)) 133)) (-3015 (((-112) $) 17)) (-2608 (((-644 (-1175)) $) 203)) (-2438 (((-409 (-1171 $)) $ (-612 $)) 235 (|has| |#1| (-558)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-2327 (((-644 (-612 $)) $) 166)) (-4014 (((-3 $ "failed") $ $) 20)) (-2463 (($ $ (-644 (-612 $)) (-644 $)) 156) (($ $ (-644 (-295 $))) 155) (($ $ (-295 $)) 154)) (-2179 (($ $) 81)) (-3271 (((-420 $) $) 80)) (-2484 (($ $) 100)) (-2738 (((-112) $ $) 65)) (-3877 (($) 18 T CONST)) (-3246 (((-644 $) (-952 $)) 94) (((-644 $) (-1171 $)) 93) (((-644 $) (-1171 $) (-1175)) 92) (((-644 $) $) 138) (((-644 $) $ (-1175)) 136)) (-2778 (($ (-952 $)) 97) (($ (-1171 $)) 96) (($ (-1171 $) (-1175)) 95) (($ $) 139) (($ $ (-1175)) 137)) (-3066 (((-3 (-952 |#1|) "failed") $) 253 (|has| |#1| (-1049))) (((-3 (-409 (-952 |#1|)) "failed") $) 237 (|has| |#1| (-558))) (((-3 |#1| "failed") $) 199) (((-3 (-566) "failed") $) 196 (|has| |#1| (-1038 (-566)))) (((-3 (-1175) "failed") $) 190) (((-3 (-612 $) "failed") $) 141) (((-3 (-409 (-566)) "failed") $) 130 (-2805 (-12 (|has| |#1| (-1038 (-566))) (|has| |#1| (-558))) (|has| |#1| (-1038 (-409 (-566))))))) (-1867 (((-952 |#1|) $) 252 (|has| |#1| (-1049))) (((-409 (-952 |#1|)) $) 236 (|has| |#1| (-558))) ((|#1| $) 198) (((-566) $) 197 (|has| |#1| (-1038 (-566)))) (((-1175) $) 189) (((-612 $) $) 140) (((-409 (-566)) $) 131 (-2805 (-12 (|has| |#1| (-1038 (-566))) (|has| |#1| (-558))) (|has| |#1| (-1038 (-409 (-566))))))) (-2949 (($ $ $) 61)) (-2210 (((-689 |#1|) (-689 $)) 243 (|has| |#1| (-1049))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 242 (|has| |#1| (-1049))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 129 (-2805 (-2447 (|has| |#1| (-1049)) (|has| |#1| (-639 (-566)))) (-2447 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))))) (((-689 (-566)) (-689 $)) 128 (-2805 (-2447 (|has| |#1| (-1049)) (|has| |#1| (-639 (-566)))) (-2447 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-1784 (((-112) $) 79)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 195 (|has| |#1| (-886 (-381)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 194 (|has| |#1| (-886 (-566))))) (-2388 (($ (-644 $)) 160) (($ $) 159)) (-2162 (((-644 (-114)) $) 167)) (-2415 (((-114) (-114)) 168)) (-3466 (((-112) $) 35)) (-2469 (((-112) $) 188 (|has| $ (-1038 (-566))))) (-2227 (($ $) 220 (|has| |#1| (-1049)))) (-3088 (((-1124 |#1| (-612 $)) $) 219 (|has| |#1| (-1049)))) (-1986 (($ $ (-566)) 99)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-3392 (((-1171 $) (-612 $)) 185 (|has| $ (-1049)))) (-3152 (($ (-1 $ $) (-612 $)) 174)) (-2116 (((-3 (-612 $) "failed") $) 164)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-2404 (((-644 (-612 $)) $) 165)) (-3159 (($ (-114) (-644 $)) 173) (($ (-114) $) 172)) (-4201 (((-3 (-644 $) "failed") $) 214 (|has| |#1| (-1111)))) (-2014 (((-3 (-2 (|:| |val| $) (|:| -2456 (-566))) "failed") $) 223 (|has| |#1| (-1049)))) (-2657 (((-3 (-644 $) "failed") $) 216 (|has| |#1| (-25)))) (-3462 (((-3 (-2 (|:| -3223 (-566)) (|:| |var| (-612 $))) "failed") $) 217 (|has| |#1| (-25)))) (-2749 (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $ (-1175)) 222 (|has| |#1| (-1049))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $ (-114)) 221 (|has| |#1| (-1049))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $) 215 (|has| |#1| (-1111)))) (-2885 (((-112) $ (-1175)) 171) (((-112) $ (-114)) 170)) (-3584 (($ $) 78)) (-3906 (((-771) $) 163)) (-4056 (((-1119) $) 11)) (-3595 (((-112) $) 201)) (-3604 ((|#1| $) 202)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-1471 (((-112) $ (-1175)) 176) (((-112) $ $) 175)) (-2473 (((-420 $) $) 82)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1630 (((-112) $) 187 (|has| $ (-1038 (-566))))) (-2095 (($ $ (-1175) (-771) (-1 $ $)) 227 (|has| |#1| (-1049))) (($ $ (-1175) (-771) (-1 $ (-644 $))) 226 (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ (-644 $)))) 225 (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ $))) 224 (|has| |#1| (-1049))) (($ $ (-644 (-114)) (-644 $) (-1175)) 213 (|has| |#1| (-614 (-538)))) (($ $ (-114) $ (-1175)) 212 (|has| |#1| (-614 (-538)))) (($ $) 211 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-1175))) 210 (|has| |#1| (-614 (-538)))) (($ $ (-1175)) 209 (|has| |#1| (-614 (-538)))) (($ $ (-114) (-1 $ $)) 184) (($ $ (-114) (-1 $ (-644 $))) 183) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) 182) (($ $ (-644 (-114)) (-644 (-1 $ $))) 181) (($ $ (-1175) (-1 $ $)) 180) (($ $ (-1175) (-1 $ (-644 $))) 179) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) 178) (($ $ (-644 (-1175)) (-644 (-1 $ $))) 177) (($ $ (-644 $) (-644 $)) 148) (($ $ $ $) 147) (($ $ (-295 $)) 146) (($ $ (-644 (-295 $))) 145) (($ $ (-644 (-612 $)) (-644 $)) 144) (($ $ (-612 $) $) 143)) (-3470 (((-771) $) 64)) (-4393 (($ (-114) (-644 $)) 153) (($ (-114) $ $ $ $) 152) (($ (-114) $ $ $) 151) (($ (-114) $ $) 150) (($ (-114) $) 149)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-2940 (($ $ $) 162) (($ $) 161)) (-2578 (($ $ (-1175)) 251 (|has| |#1| (-1049))) (($ $ (-644 (-1175))) 250 (|has| |#1| (-1049))) (($ $ (-1175) (-771)) 249 (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) 248 (|has| |#1| (-1049)))) (-1431 (($ $) 230 (|has| |#1| (-558)))) (-3100 (((-1124 |#1| (-612 $)) $) 229 (|has| |#1| (-558)))) (-3601 (($ $) 186 (|has| $ (-1049)))) (-3204 (((-538) $) 257 (|has| |#1| (-614 (-538)))) (($ (-420 $)) 228 (|has| |#1| (-558))) (((-892 (-381)) $) 193 (|has| |#1| (-614 (-892 (-381))))) (((-892 (-566)) $) 192 (|has| |#1| (-614 (-892 (-566)))))) (-3850 (($ $ $) 256 (|has| |#1| (-475)))) (-1783 (($ $ $) 255 (|has| |#1| (-475)))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ (-952 |#1|)) 254 (|has| |#1| (-1049))) (($ (-409 (-952 |#1|))) 238 (|has| |#1| (-558))) (($ (-409 (-952 (-409 |#1|)))) 234 (|has| |#1| (-558))) (($ (-952 (-409 |#1|))) 233 (|has| |#1| (-558))) (($ (-409 |#1|)) 232 (|has| |#1| (-558))) (($ (-1124 |#1| (-612 $))) 218 (|has| |#1| (-1049))) (($ |#1|) 200) (($ (-1175)) 191) (($ (-612 $)) 142)) (-3226 (((-3 $ "failed") $) 241 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-1442 (($ (-644 $)) 158) (($ $) 157)) (-1643 (((-112) (-114)) 169)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2986 (($ (-1175) (-644 $)) 208) (($ (-1175) $ $ $ $) 207) (($ (-1175) $ $ $) 206) (($ (-1175) $ $) 205) (($ (-1175) $) 204)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-1175)) 247 (|has| |#1| (-1049))) (($ $ (-644 (-1175))) 246 (|has| |#1| (-1049))) (($ $ (-1175) (-771)) 245 (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) 244 (|has| |#1| (-1049)))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 73) (($ (-1124 |#1| (-612 $)) (-1124 |#1| (-612 $))) 231 (|has| |#1| (-558)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77) (($ $ (-409 (-566))) 98)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75) (($ $ |#1|) 240 (|has| |#1| (-172))) (($ |#1| $) 239 (|has| |#1| (-172)))))
(((-29 |#1|) (-140) (-558)) (T -29))
-((-2170 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-558)))) (-3844 (*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *3)))) (-2170 (*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-4 *1 (-29 *3)) (-4 *3 (-558)))) (-3844 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *4)))) (-3265 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-558)))) (-1515 (*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *3)))) (-3265 (*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-4 *1 (-29 *3)) (-4 *3 (-558)))) (-1515 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *4)))))
-(-13 (-27) (-432 |t#1|) (-10 -8 (-15 -2170 ($ $)) (-15 -3844 ((-644 $) $)) (-15 -2170 ($ $ (-1175))) (-15 -3844 ((-644 $) $ (-1175))) (-15 -3265 ($ $)) (-15 -1515 ((-644 $) $)) (-15 -3265 ($ $ (-1175))) (-15 -1515 ((-644 $) $ (-1175)))))
+((-2778 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-558)))) (-3246 (*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *3)))) (-2778 (*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-4 *1 (-29 *3)) (-4 *3 (-558)))) (-3246 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *4)))) (-2601 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-558)))) (-3508 (*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *3)))) (-2601 (*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-4 *1 (-29 *3)) (-4 *3 (-558)))) (-3508 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *4)))))
+(-13 (-27) (-432 |t#1|) (-10 -8 (-15 -2778 ($ $)) (-15 -3246 ((-644 $) $)) (-15 -2778 ($ $ (-1175))) (-15 -3246 ((-644 $) $ (-1175))) (-15 -2601 ($ $)) (-15 -3508 ((-644 $) $)) (-15 -2601 ($ $ (-1175))) (-15 -3508 ((-644 $) $ (-1175)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) . T) ((-27) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) |has| |#1| (-172)) ((-111 $ $) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) . T) ((-616 #1=(-409 (-952 |#1|))) |has| |#1| (-558)) ((-616 (-566)) . T) ((-616 #2=(-612 $)) . T) ((-616 #3=(-952 |#1|)) |has| |#1| (-1049)) ((-616 #4=(-1175)) . T) ((-616 |#1|) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-614 (-892 (-381))) |has| |#1| (-614 (-892 (-381)))) ((-614 (-892 (-566))) |has| |#1| (-614 (-892 (-566)))) ((-243) . T) ((-291) . T) ((-308) . T) ((-310 $) . T) ((-303) . T) ((-365) . T) ((-379 |#1|) |has| |#1| (-1049)) ((-402 |#1|) . T) ((-413 |#1|) . T) ((-432 |#1|) . T) ((-454) . T) ((-475) |has| |#1| (-475)) ((-516 (-612 $) $) . T) ((-516 $ $) . T) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 |#1|) |has| |#1| (-172)) ((-646 $) . T) ((-648 #0#) . T) ((-648 |#1|) |has| |#1| (-172)) ((-648 $) . T) ((-640 #0#) . T) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) . T) ((-639 (-566)) -12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) ((-639 |#1|) |has| |#1| (-1049)) ((-717 #0#) . T) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) . T) ((-726) . T) ((-900 (-1175)) |has| |#1| (-1049)) ((-886 (-381)) |has| |#1| (-886 (-381))) ((-886 (-566)) |has| |#1| (-886 (-566))) ((-884 |#1|) . T) ((-920) . T) ((-1002) . T) ((-1038 (-409 (-566))) -2805 (|has| |#1| (-1038 (-409 (-566)))) (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566))))) ((-1038 #1#) |has| |#1| (-558)) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 #2#) . T) ((-1038 #3#) |has| |#1| (-1049)) ((-1038 #4#) . T) ((-1038 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) |has| |#1| (-172)) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 |#1|) |has| |#1| (-172)) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1214) . T) ((-1218) . T))
-((-3175 (((-1093 (-225)) $) NIL)) (-3162 (((-1093 (-225)) $) NIL)) (-1343 (($ $ (-225)) 166)) (-1532 (($ (-952 (-566)) (-1175) (-1175) (-1093 (-409 (-566))) (-1093 (-409 (-566)))) 104)) (-1525 (((-644 (-644 (-943 (-225)))) $) 182)) (-2512 (((-862) $) 196)))
-(((-30) (-13 (-955) (-10 -8 (-15 -1532 ($ (-952 (-566)) (-1175) (-1175) (-1093 (-409 (-566))) (-1093 (-409 (-566))))) (-15 -1343 ($ $ (-225)))))) (T -30))
-((-1532 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-952 (-566))) (-5 *3 (-1175)) (-5 *4 (-1093 (-409 (-566)))) (-5 *1 (-30)))) (-1343 (*1 *1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-30)))))
-(-13 (-955) (-10 -8 (-15 -1532 ($ (-952 (-566)) (-1175) (-1175) (-1093 (-409 (-566))) (-1093 (-409 (-566))))) (-15 -1343 ($ $ (-225)))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-2639 (((-1134) $) 11)) (-3122 (((-112) $ $) NIL)) (-3306 (((-1134) $) 9)) (-2940 (((-112) $ $) NIL)))
-(((-31) (-13 (-1082) (-10 -8 (-15 -3306 ((-1134) $)) (-15 -2639 ((-1134) $))))) (T -31))
-((-3306 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-31)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-31)))))
-(-13 (-1082) (-10 -8 (-15 -3306 ((-1134) $)) (-15 -2639 ((-1134) $))))
-((-2170 ((|#2| (-1171 |#2|) (-1175)) 41)) (-2336 (((-114) (-114)) 55)) (-2734 (((-1171 |#2|) (-612 |#2|)) 149 (|has| |#1| (-1038 (-566))))) (-3211 ((|#2| |#1| (-566)) 137 (|has| |#1| (-1038 (-566))))) (-1950 ((|#2| (-1171 |#2|) |#2|) 29)) (-2652 (((-862) (-644 |#2|)) 86)) (-2127 ((|#2| |#2|) 144 (|has| |#1| (-1038 (-566))))) (-2306 (((-112) (-114)) 17)) (** ((|#2| |#2| (-409 (-566))) 103 (|has| |#1| (-1038 (-566))))))
-(((-32 |#1| |#2|) (-10 -7 (-15 -2170 (|#2| (-1171 |#2|) (-1175))) (-15 -2336 ((-114) (-114))) (-15 -2306 ((-112) (-114))) (-15 -1950 (|#2| (-1171 |#2|) |#2|)) (-15 -2652 ((-862) (-644 |#2|))) (IF (|has| |#1| (-1038 (-566))) (PROGN (-15 ** (|#2| |#2| (-409 (-566)))) (-15 -2734 ((-1171 |#2|) (-612 |#2|))) (-15 -2127 (|#2| |#2|)) (-15 -3211 (|#2| |#1| (-566)))) |%noBranch|)) (-558) (-432 |#1|)) (T -32))
-((-3211 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-4 *2 (-432 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1038 *4)) (-4 *3 (-558)))) (-2127 (*1 *2 *2) (-12 (-4 *3 (-1038 (-566))) (-4 *3 (-558)) (-5 *1 (-32 *3 *2)) (-4 *2 (-432 *3)))) (-2734 (*1 *2 *3) (-12 (-5 *3 (-612 *5)) (-4 *5 (-432 *4)) (-4 *4 (-1038 (-566))) (-4 *4 (-558)) (-5 *2 (-1171 *5)) (-5 *1 (-32 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-409 (-566))) (-4 *4 (-1038 (-566))) (-4 *4 (-558)) (-5 *1 (-32 *4 *2)) (-4 *2 (-432 *4)))) (-2652 (*1 *2 *3) (-12 (-5 *3 (-644 *5)) (-4 *5 (-432 *4)) (-4 *4 (-558)) (-5 *2 (-862)) (-5 *1 (-32 *4 *5)))) (-1950 (*1 *2 *3 *2) (-12 (-5 *3 (-1171 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558)) (-5 *1 (-32 *4 *2)))) (-2306 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-432 *4)))) (-2336 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-32 *3 *4)) (-4 *4 (-432 *3)))) (-2170 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *2)) (-5 *4 (-1175)) (-4 *2 (-432 *5)) (-5 *1 (-32 *5 *2)) (-4 *5 (-558)))))
-(-10 -7 (-15 -2170 (|#2| (-1171 |#2|) (-1175))) (-15 -2336 ((-114) (-114))) (-15 -2306 ((-112) (-114))) (-15 -1950 (|#2| (-1171 |#2|) |#2|)) (-15 -2652 ((-862) (-644 |#2|))) (IF (|has| |#1| (-1038 (-566))) (PROGN (-15 ** (|#2| |#2| (-409 (-566)))) (-15 -2734 ((-1171 |#2|) (-612 |#2|))) (-15 -2127 (|#2| |#2|)) (-15 -3211 (|#2| |#1| (-566)))) |%noBranch|))
-((-3081 (((-112) $ (-771)) 20)) (-2342 (($) 10)) (-2744 (((-112) $ (-771)) 19)) (-3882 (((-112) $ (-771)) 17)) (-2587 (((-112) $ $) 8)) (-4194 (((-112) $) 15)))
-(((-33 |#1|) (-10 -8 (-15 -2342 (|#1|)) (-15 -3081 ((-112) |#1| (-771))) (-15 -2744 ((-112) |#1| (-771))) (-15 -3882 ((-112) |#1| (-771))) (-15 -4194 ((-112) |#1|)) (-15 -2587 ((-112) |#1| |#1|))) (-34)) (T -33))
-NIL
-(-10 -8 (-15 -2342 (|#1|)) (-15 -3081 ((-112) |#1| (-771))) (-15 -2744 ((-112) |#1| (-771))) (-15 -3882 ((-112) |#1| (-771))) (-15 -4194 ((-112) |#1|)) (-15 -2587 ((-112) |#1| |#1|)))
-((-3081 (((-112) $ (-771)) 8)) (-2342 (($) 7 T CONST)) (-2744 (((-112) $ (-771)) 9)) (-3882 (((-112) $ (-771)) 10)) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-3895 (($ $) 13)) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3096 (((-1093 (-225)) $) NIL)) (-3085 (((-1093 (-225)) $) NIL)) (-3301 (($ $ (-225)) 166)) (-2477 (($ (-952 (-566)) (-1175) (-1175) (-1093 (-409 (-566))) (-1093 (-409 (-566)))) 104)) (-2399 (((-644 (-644 (-943 (-225)))) $) 182)) (-3780 (((-862) $) 196)))
+(((-30) (-13 (-955) (-10 -8 (-15 -2477 ($ (-952 (-566)) (-1175) (-1175) (-1093 (-409 (-566))) (-1093 (-409 (-566))))) (-15 -3301 ($ $ (-225)))))) (T -30))
+((-2477 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-952 (-566))) (-5 *3 (-1175)) (-5 *4 (-1093 (-409 (-566)))) (-5 *1 (-30)))) (-3301 (*1 *1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-30)))))
+(-13 (-955) (-10 -8 (-15 -2477 ($ (-952 (-566)) (-1175) (-1175) (-1093 (-409 (-566))) (-1093 (-409 (-566))))) (-15 -3301 ($ $ (-225)))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-1398 (((-1134) $) 11)) (-3801 (((-112) $ $) NIL)) (-3819 (((-1134) $) 9)) (-2950 (((-112) $ $) NIL)))
+(((-31) (-13 (-1082) (-10 -8 (-15 -3819 ((-1134) $)) (-15 -1398 ((-1134) $))))) (T -31))
+((-3819 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-31)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-31)))))
+(-13 (-1082) (-10 -8 (-15 -3819 ((-1134) $)) (-15 -1398 ((-1134) $))))
+((-2778 ((|#2| (-1171 |#2|) (-1175)) 41)) (-2415 (((-114) (-114)) 55)) (-3392 (((-1171 |#2|) (-612 |#2|)) 149 (|has| |#1| (-1038 (-566))))) (-3325 ((|#2| |#1| (-566)) 137 (|has| |#1| (-1038 (-566))))) (-4258 ((|#2| (-1171 |#2|) |#2|) 29)) (-3789 (((-862) (-644 |#2|)) 86)) (-3601 ((|#2| |#2|) 144 (|has| |#1| (-1038 (-566))))) (-1643 (((-112) (-114)) 17)) (** ((|#2| |#2| (-409 (-566))) 103 (|has| |#1| (-1038 (-566))))))
+(((-32 |#1| |#2|) (-10 -7 (-15 -2778 (|#2| (-1171 |#2|) (-1175))) (-15 -2415 ((-114) (-114))) (-15 -1643 ((-112) (-114))) (-15 -4258 (|#2| (-1171 |#2|) |#2|)) (-15 -3789 ((-862) (-644 |#2|))) (IF (|has| |#1| (-1038 (-566))) (PROGN (-15 ** (|#2| |#2| (-409 (-566)))) (-15 -3392 ((-1171 |#2|) (-612 |#2|))) (-15 -3601 (|#2| |#2|)) (-15 -3325 (|#2| |#1| (-566)))) |%noBranch|)) (-558) (-432 |#1|)) (T -32))
+((-3325 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-4 *2 (-432 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1038 *4)) (-4 *3 (-558)))) (-3601 (*1 *2 *2) (-12 (-4 *3 (-1038 (-566))) (-4 *3 (-558)) (-5 *1 (-32 *3 *2)) (-4 *2 (-432 *3)))) (-3392 (*1 *2 *3) (-12 (-5 *3 (-612 *5)) (-4 *5 (-432 *4)) (-4 *4 (-1038 (-566))) (-4 *4 (-558)) (-5 *2 (-1171 *5)) (-5 *1 (-32 *4 *5)))) (** (*1 *2 *2 *3) (-12 (-5 *3 (-409 (-566))) (-4 *4 (-1038 (-566))) (-4 *4 (-558)) (-5 *1 (-32 *4 *2)) (-4 *2 (-432 *4)))) (-3789 (*1 *2 *3) (-12 (-5 *3 (-644 *5)) (-4 *5 (-432 *4)) (-4 *4 (-558)) (-5 *2 (-862)) (-5 *1 (-32 *4 *5)))) (-4258 (*1 *2 *3 *2) (-12 (-5 *3 (-1171 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558)) (-5 *1 (-32 *4 *2)))) (-1643 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-432 *4)))) (-2415 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-32 *3 *4)) (-4 *4 (-432 *3)))) (-2778 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *2)) (-5 *4 (-1175)) (-4 *2 (-432 *5)) (-5 *1 (-32 *5 *2)) (-4 *5 (-558)))))
+(-10 -7 (-15 -2778 (|#2| (-1171 |#2|) (-1175))) (-15 -2415 ((-114) (-114))) (-15 -1643 ((-112) (-114))) (-15 -4258 (|#2| (-1171 |#2|) |#2|)) (-15 -3789 ((-862) (-644 |#2|))) (IF (|has| |#1| (-1038 (-566))) (PROGN (-15 ** (|#2| |#2| (-409 (-566)))) (-15 -3392 ((-1171 |#2|) (-612 |#2|))) (-15 -3601 (|#2| |#2|)) (-15 -3325 (|#2| |#1| (-566)))) |%noBranch|))
+((-1574 (((-112) $ (-771)) 20)) (-3877 (($) 10)) (-3501 (((-112) $ (-771)) 19)) (-3582 (((-112) $ (-771)) 17)) (-4372 (((-112) $ $) 8)) (-3461 (((-112) $) 15)))
+(((-33 |#1|) (-10 -8 (-15 -3877 (|#1|)) (-15 -1574 ((-112) |#1| (-771))) (-15 -3501 ((-112) |#1| (-771))) (-15 -3582 ((-112) |#1| (-771))) (-15 -3461 ((-112) |#1|)) (-15 -4372 ((-112) |#1| |#1|))) (-34)) (T -33))
+NIL
+(-10 -8 (-15 -3877 (|#1|)) (-15 -1574 ((-112) |#1| (-771))) (-15 -3501 ((-112) |#1| (-771))) (-15 -3582 ((-112) |#1| (-771))) (-15 -3461 ((-112) |#1|)) (-15 -4372 ((-112) |#1| |#1|)))
+((-1574 (((-112) $ (-771)) 8)) (-3877 (($) 7 T CONST)) (-3501 (((-112) $ (-771)) 9)) (-3582 (((-112) $ (-771)) 10)) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-3940 (($ $) 13)) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-34) (-140)) (T -34))
-((-2587 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3895 (*1 *1 *1) (-4 *1 (-34))) (-2954 (*1 *1) (-4 *1 (-34))) (-4194 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3882 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112)))) (-2744 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112)))) (-3081 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112)))) (-2342 (*1 *1) (-4 *1 (-34))) (-2997 (*1 *2 *1) (-12 (|has| *1 (-6 -4417)) (-4 *1 (-34)) (-5 *2 (-771)))))
-(-13 (-1214) (-10 -8 (-15 -2587 ((-112) $ $)) (-15 -3895 ($ $)) (-15 -2954 ($)) (-15 -4194 ((-112) $)) (-15 -3882 ((-112) $ (-771))) (-15 -2744 ((-112) $ (-771))) (-15 -3081 ((-112) $ (-771))) (-15 -2342 ($) -1655) (IF (|has| $ (-6 -4417)) (-15 -2997 ((-771) $)) |%noBranch|)))
+((-4372 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3940 (*1 *1 *1) (-4 *1 (-34))) (-1793 (*1 *1) (-4 *1 (-34))) (-3461 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3582 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112)))) (-3501 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112)))) (-1574 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112)))) (-3877 (*1 *1) (-4 *1 (-34))) (-3020 (*1 *2 *1) (-12 (|has| *1 (-6 -4414)) (-4 *1 (-34)) (-5 *2 (-771)))))
+(-13 (-1214) (-10 -8 (-15 -4372 ((-112) $ $)) (-15 -3940 ($ $)) (-15 -1793 ($)) (-15 -3461 ((-112) $)) (-15 -3582 ((-112) $ (-771))) (-15 -3501 ((-112) $ (-771))) (-15 -1574 ((-112) $ (-771))) (-15 -3877 ($) -2460) (IF (|has| $ (-6 -4414)) (-15 -3020 ((-771) $)) |%noBranch|)))
(((-1214) . T))
-((-3302 (($ $) 11)) (-3279 (($ $) 10)) (-3323 (($ $) 9)) (-1382 (($ $) 8)) (-3313 (($ $) 7)) (-3291 (($ $) 6)))
+((-2931 (($ $) 11)) (-2907 (($ $) 10)) (-2954 (($ $) 9)) (-3181 (($ $) 8)) (-2943 (($ $) 7)) (-2920 (($ $) 6)))
(((-35) (-140)) (T -35))
-((-3302 (*1 *1 *1) (-4 *1 (-35))) (-3279 (*1 *1 *1) (-4 *1 (-35))) (-3323 (*1 *1 *1) (-4 *1 (-35))) (-1382 (*1 *1 *1) (-4 *1 (-35))) (-3313 (*1 *1 *1) (-4 *1 (-35))) (-3291 (*1 *1 *1) (-4 *1 (-35))))
-(-13 (-10 -8 (-15 -3291 ($ $)) (-15 -3313 ($ $)) (-15 -1382 ($ $)) (-15 -3323 ($ $)) (-15 -3279 ($ $)) (-15 -3302 ($ $))))
-((-2985 (((-112) $ $) 19 (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-2212 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 126)) (-4309 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 149)) (-3301 (($ $) 147)) (-4246 (($) 73) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 72)) (-1537 (((-1269) $ |#1| |#1|) 100 (|has| $ (-6 -4418))) (((-1269) $ (-566) (-566)) 179 (|has| $ (-6 -4418)))) (-1410 (($ $ (-566)) 160 (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 210) (((-112) $) 204 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-3426 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 201 (|has| $ (-6 -4418))) (($ $) 200 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)) (|has| $ (-6 -4418))))) (-3290 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 211) (($ $) 205 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-3081 (((-112) $ (-771)) 8)) (-3087 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 135 (|has| $ (-6 -4418)))) (-4290 (($ $ $) 156 (|has| $ (-6 -4418)))) (-1587 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 158 (|has| $ (-6 -4418)))) (-2831 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 154 (|has| $ (-6 -4418)))) (-3874 ((|#2| $ |#1| |#2|) 74) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 190 (|has| $ (-6 -4418))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-1231 (-566)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 161 (|has| $ (-6 -4418))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "last" (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 159 (|has| $ (-6 -4418))) (($ $ "rest" $) 157 (|has| $ (-6 -4418))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "first" (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 155 (|has| $ (-6 -4418))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "value" (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 134 (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 133 (|has| $ (-6 -4418)))) (-3586 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 46 (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 217)) (-4186 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 56 (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 176 (|has| $ (-6 -4417)))) (-4299 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 148)) (-2414 (((-3 |#2| "failed") |#1| $) 62)) (-2342 (($) 7 T CONST)) (-2736 (($ $) 202 (|has| $ (-6 -4418)))) (-3852 (($ $) 212)) (-4076 (($ $ (-771)) 143) (($ $) 141)) (-4130 (($ $) 215 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-4093 (($ $) 59 (-2805 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417))) (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))))) (-3066 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 48 (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 47 (|has| $ (-6 -4417))) (((-3 |#2| "failed") |#1| $) 63) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 221) (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 216 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-2651 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 55 (|has| $ (-6 -4417))) (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 178 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 175 (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 57 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 54 (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 53 (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 177 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 174 (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 173 (|has| $ (-6 -4417)))) (-1332 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4418))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 191 (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) 89) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566)) 189)) (-1901 (((-112) $) 193)) (-3968 (((-566) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 209) (((-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 208 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))) (((-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566)) 207 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-3372 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 31 (|has| $ (-6 -4417))) (((-644 |#2|) $) 80 (|has| $ (-6 -4417))) (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 115 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) 124)) (-4129 (((-112) $ $) 132 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-4257 (($ (-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 170)) (-2744 (((-112) $ (-771)) 9)) (-2160 ((|#1| $) 97 (|has| |#1| (-850))) (((-566) $) 181 (|has| (-566) (-850)))) (-1439 (($ $ $) 199 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-1865 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ $) 218) (($ $ $) 214 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-3132 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ $) 213) (($ $ $) 206 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-2404 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 30 (|has| $ (-6 -4417))) (((-644 |#2|) $) 81 (|has| $ (-6 -4417))) (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 116 (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4417)))) (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 118 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417))))) (-1544 ((|#1| $) 96 (|has| |#1| (-850))) (((-566) $) 182 (|has| (-566) (-850)))) (-3059 (($ $ $) 198 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 35 (|has| $ (-6 -4418))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4418))) (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 111 (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71) (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ $) 167) (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 110)) (-3932 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 226)) (-3882 (((-112) $ (-771)) 10)) (-2996 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 129)) (-2783 (((-112) $) 125)) (-2878 (((-1157) $) 22 (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-2670 (($ $ (-771)) 146) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 144)) (-3949 (((-644 |#1|) $) 64)) (-3221 (((-112) |#1| $) 65)) (-3119 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 40)) (-4265 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 41) (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566)) 220) (($ $ $ (-566)) 219)) (-4268 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566)) 163) (($ $ $ (-566)) 162)) (-1922 (((-644 |#1|) $) 94) (((-644 (-566)) $) 184)) (-2040 (((-112) |#1| $) 93) (((-112) (-566) $) 185)) (-4033 (((-1119) $) 21 (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-4062 ((|#2| $) 98 (|has| |#1| (-850))) (($ $ (-771)) 140) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 138)) (-2126 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 52) (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 172)) (-1720 (($ $ |#2|) 99 (|has| $ (-6 -4418))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 180 (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 42)) (-1335 (((-112) $) 192)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 33 (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 113 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) 27 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 26 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 25 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 24 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) 87 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) 86 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) 85 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) 84 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 122 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 121 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 120 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) 119 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099)))) (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 183 (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-2784 (((-644 |#2|) $) 92) (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 186)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 188) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566)) 187) (($ $ (-1231 (-566))) 166) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "last") 145) (($ $ "rest") 142) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "first") 139) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "value") 127)) (-1442 (((-566) $ $) 130)) (-3879 (($) 50) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 49)) (-1424 (($ $ (-566)) 223) (($ $ (-1231 (-566))) 222)) (-2201 (($ $ (-566)) 165) (($ $ (-1231 (-566))) 164)) (-1313 (((-112) $) 128)) (-1636 (($ $) 152)) (-2231 (($ $) 153 (|has| $ (-6 -4418)))) (-3069 (((-771) $) 151)) (-1904 (($ $) 150)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 32 (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (((-771) |#2| $) 82 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 114 (|has| $ (-6 -4417)))) (-3245 (($ $ $ (-566)) 203 (|has| $ (-6 -4418)))) (-3895 (($ $) 13)) (-3134 (((-538) $) 60 (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538)))))) (-2523 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 51) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 171)) (-1498 (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 225) (($ $ $) 224)) (-3704 (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 169) (($ (-644 $)) 168) (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 137) (($ $ $) 136)) (-2512 (((-862) $) 18 (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862)))))) (-1448 (((-644 $) $) 123)) (-2105 (((-112) $ $) 131 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-3122 (((-112) $ $) 23 (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 43)) (-2677 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") |#1| $) 109)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 34 (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 112 (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) 196 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-2974 (((-112) $ $) 195 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-2940 (((-112) $ $) 20 (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-2987 (((-112) $ $) 197 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-2962 (((-112) $ $) 194 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-2931 (*1 *1 *1) (-4 *1 (-35))) (-2907 (*1 *1 *1) (-4 *1 (-35))) (-2954 (*1 *1 *1) (-4 *1 (-35))) (-3181 (*1 *1 *1) (-4 *1 (-35))) (-2943 (*1 *1 *1) (-4 *1 (-35))) (-2920 (*1 *1 *1) (-4 *1 (-35))))
+(-13 (-10 -8 (-15 -2920 ($ $)) (-15 -2943 ($ $)) (-15 -3181 ($ $)) (-15 -2954 ($ $)) (-15 -2907 ($ $)) (-15 -2931 ($ $))))
+((-3009 (((-112) $ $) 19 (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-2252 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 126)) (-4369 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 149)) (-4043 (($ $) 147)) (-4266 (($) 73) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 72)) (-2518 (((-1269) $ |#1| |#1|) 100 (|has| $ (-6 -4415))) (((-1269) $ (-566) (-566)) 179 (|has| $ (-6 -4415)))) (-3670 (($ $ (-566)) 160 (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 210) (((-112) $) 204 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-1570 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 201 (|has| $ (-6 -4415))) (($ $) 200 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)) (|has| $ (-6 -4415))))) (-1568 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 211) (($ $) 205 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-1574 (((-112) $ (-771)) 8)) (-1637 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 135 (|has| $ (-6 -4415)))) (-1938 (($ $ $) 156 (|has| $ (-6 -4415)))) (-1819 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 158 (|has| $ (-6 -4415)))) (-1921 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 154 (|has| $ (-6 -4415)))) (-3916 ((|#2| $ |#1| |#2|) 74) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 190 (|has| $ (-6 -4415))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-1231 (-566)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 161 (|has| $ (-6 -4415))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "last" (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 159 (|has| $ (-6 -4415))) (($ $ "rest" $) 157 (|has| $ (-6 -4415))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "first" (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 155 (|has| $ (-6 -4415))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "value" (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 134 (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 133 (|has| $ (-6 -4415)))) (-2556 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 46 (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 217)) (-1386 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 56 (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 176 (|has| $ (-6 -4414)))) (-4358 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 148)) (-2450 (((-3 |#2| "failed") |#1| $) 62)) (-3877 (($) 7 T CONST)) (-3416 (($ $) 202 (|has| $ (-6 -4415)))) (-3507 (($ $) 212)) (-4112 (($ $ (-771)) 143) (($ $) 141)) (-4060 (($ $) 215 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-4133 (($ $) 59 (-2805 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414))) (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))))) (-1450 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 48 (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 47 (|has| $ (-6 -4414))) (((-3 |#2| "failed") |#1| $) 63) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 221) (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 216 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-2661 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 55 (|has| $ (-6 -4414))) (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 178 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 175 (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 57 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 54 (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 53 (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 177 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 174 (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 173 (|has| $ (-6 -4414)))) (-3128 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4415))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 191 (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) 89) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566)) 189)) (-1935 (((-112) $) 193)) (-4015 (((-566) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 209) (((-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 208 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))) (((-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566)) 207 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-3799 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 31 (|has| $ (-6 -4414))) (((-644 |#2|) $) 80 (|has| $ (-6 -4414))) (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 115 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) 124)) (-4050 (((-112) $ $) 132 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-4278 (($ (-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 170)) (-3501 (((-112) $ (-771)) 9)) (-2712 ((|#1| $) 97 (|has| |#1| (-850))) (((-566) $) 181 (|has| (-566) (-850)))) (-1945 (($ $ $) 199 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-2761 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ $) 218) (($ $ $) 214 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-3891 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ $) 213) (($ $ $) 206 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-3276 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 30 (|has| $ (-6 -4414))) (((-644 |#2|) $) 81 (|has| $ (-6 -4414))) (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 116 (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4414)))) (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 118 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414))))) (-2579 ((|#1| $) 96 (|has| |#1| (-850))) (((-566) $) 182 (|has| (-566) (-850)))) (-2709 (($ $ $) 198 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 35 (|has| $ (-6 -4415))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4415))) (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 111 (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71) (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ $) 167) (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 110)) (-3977 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 226)) (-3582 (((-112) $ (-771)) 10)) (-3318 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 129)) (-2675 (((-112) $) 125)) (-2402 (((-1157) $) 22 (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-2680 (($ $ (-771)) 146) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 144)) (-4314 (((-644 |#1|) $) 64)) (-3422 (((-112) |#1| $) 65)) (-3765 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 40)) (-2903 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 41) (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566)) 220) (($ $ $ (-566)) 219)) (-4286 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566)) 163) (($ $ $ (-566)) 162)) (-2140 (((-644 |#1|) $) 94) (((-644 (-566)) $) 184)) (-3935 (((-112) |#1| $) 93) (((-112) (-566) $) 185)) (-4056 (((-1119) $) 21 (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-4101 ((|#2| $) 98 (|has| |#1| (-850))) (($ $ (-771)) 140) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 138)) (-3591 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 52) (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 172)) (-3750 (($ $ |#2|) 99 (|has| $ (-6 -4415))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 180 (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 42)) (-1927 (((-112) $) 192)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 33 (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 113 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) 27 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 26 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 25 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 24 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) 87 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) 86 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) 85 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) 84 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 122 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 121 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 120 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) 119 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099)))) (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 183 (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-2684 (((-644 |#2|) $) 92) (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 186)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 188) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566)) 187) (($ $ (-1231 (-566))) 166) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "last") 145) (($ $ "rest") 142) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "first") 139) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "value") 127)) (-3969 (((-566) $ $) 130)) (-3551 (($) 50) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 49)) (-3798 (($ $ (-566)) 223) (($ $ (-1231 (-566))) 222)) (-2215 (($ $ (-566)) 165) (($ $ (-1231 (-566))) 164)) (-1638 (((-112) $) 128)) (-2299 (($ $) 152)) (-2127 (($ $) 153 (|has| $ (-6 -4415)))) (-1472 (((-771) $) 151)) (-1957 (($ $) 150)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 32 (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (((-771) |#2| $) 82 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 114 (|has| $ (-6 -4414)))) (-3610 (($ $ $ (-566)) 203 (|has| $ (-6 -4415)))) (-3940 (($ $) 13)) (-3204 (((-538) $) 60 (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538)))))) (-3791 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 51) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 171)) (-3324 (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 225) (($ $ $) 224)) (-3727 (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 169) (($ (-644 $)) 168) (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 137) (($ $ $) 136)) (-3780 (((-862) $) 18 (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862)))))) (-4041 (((-644 $) $) 123)) (-3381 (((-112) $ $) 131 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-3801 (((-112) $ $) 23 (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 43)) (-2690 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") |#1| $) 109)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 34 (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 112 (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) 196 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-2984 (((-112) $ $) 195 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-2950 (((-112) $ $) 20 (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-2999 (((-112) $ $) 197 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-2972 (((-112) $ $) 194 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-36 |#1| |#2|) (-140) (-1099) (-1099)) (T -36))
-((-2677 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-5 *2 (-2 (|:| -2010 *3) (|:| -2818 *4))))))
-(-13 (-1190 |t#1| |t#2|) (-666 (-2 (|:| -2010 |t#1|) (|:| -2818 |t#2|))) (-10 -8 (-15 -2677 ((-3 (-2 (|:| -2010 |t#1|) (|:| -2818 |t#2|)) "failed") |t#1| $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T) ((-102) -2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850))) ((-613 (-862)) -2805 (|has| |#2| (-1099)) (|has| |#2| (-613 (-862))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862)))) ((-151 #1=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T) ((-614 (-538)) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))) ((-229 #0#) . T) ((-235 #0#) . T) ((-287 #2=(-566) #1#) . T) ((-287 |#1| |#2|) . T) ((-289 #2# #1#) . T) ((-289 |#1| |#2|) . T) ((-310 #1#) -12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))) ((-310 |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-283 #1#) . T) ((-375 #1#) . T) ((-491 #1#) . T) ((-491 |#2|) . T) ((-604 #2# #1#) . T) ((-604 |#1| |#2|) . T) ((-516 #1# #1#) -12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))) ((-516 |#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-610 |#1| |#2|) . T) ((-651 #1#) . T) ((-666 #1#) . T) ((-850) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)) ((-1010 #1#) . T) ((-1099) -2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850))) ((-1148 #1#) . T) ((-1190 |#1| |#2|) . T) ((-1214) . T) ((-1252 #1#) . T))
-((-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) 10)))
-(((-37 |#1| |#2|) (-10 -8 (-15 -2512 (|#1| |#2|)) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|))) (-38 |#2|) (-172)) (T -37))
-NIL
-(-10 -8 (-15 -2512 (|#1| |#2|)) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+((-2690 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-5 *2 (-2 (|:| -2050 *3) (|:| -2849 *4))))))
+(-13 (-1190 |t#1| |t#2|) (-666 (-2 (|:| -2050 |t#1|) (|:| -2849 |t#2|))) (-10 -8 (-15 -2690 ((-3 (-2 (|:| -2050 |t#1|) (|:| -2849 |t#2|)) "failed") |t#1| $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T) ((-102) -2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850))) ((-613 (-862)) -2805 (|has| |#2| (-1099)) (|has| |#2| (-613 (-862))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862)))) ((-151 #1=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T) ((-614 (-538)) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))) ((-229 #0#) . T) ((-235 #0#) . T) ((-287 #2=(-566) #1#) . T) ((-287 |#1| |#2|) . T) ((-289 #2# #1#) . T) ((-289 |#1| |#2|) . T) ((-310 #1#) -12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))) ((-310 |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-283 #1#) . T) ((-375 #1#) . T) ((-491 #1#) . T) ((-491 |#2|) . T) ((-604 #2# #1#) . T) ((-604 |#1| |#2|) . T) ((-516 #1# #1#) -12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))) ((-516 |#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-610 |#1| |#2|) . T) ((-651 #1#) . T) ((-666 #1#) . T) ((-850) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)) ((-1010 #1#) . T) ((-1099) -2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850))) ((-1148 #1#) . T) ((-1190 |#1| |#2|) . T) ((-1214) . T) ((-1252 #1#) . T))
+((-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) 10)))
+(((-37 |#1| |#2|) (-10 -8 (-15 -3780 (|#1| |#2|)) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|))) (-38 |#2|) (-172)) (T -37))
+NIL
+(-10 -8 (-15 -3780 (|#1| |#2|)) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
(((-38 |#1|) (-140) (-172)) (T -38))
NIL
(-13 (-1049) (-717 |t#1|) (-616 |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 |#1|) . T) ((-717 |#1|) . T) ((-726) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-3473 (((-420 |#1|) |#1|) 41)) (-2391 (((-420 |#1|) |#1|) 30) (((-420 |#1|) |#1| (-644 (-48))) 33)) (-3675 (((-112) |#1|) 59)))
-(((-39 |#1|) (-10 -7 (-15 -2391 ((-420 |#1|) |#1| (-644 (-48)))) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -3473 ((-420 |#1|) |#1|)) (-15 -3675 ((-112) |#1|))) (-1240 (-48))) (T -39))
-((-3675 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48))))) (-3473 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48))))) (-2391 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48))))) (-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-48))) (-5 *2 (-420 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48))))))
-(-10 -7 (-15 -2391 ((-420 |#1|) |#1| (-644 (-48)))) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -3473 ((-420 |#1|) |#1|)) (-15 -3675 ((-112) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3461 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| (-409 |#2|) (-365)))) (-3653 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-2152 (((-112) $) NIL (|has| (-409 |#2|) (-365)))) (-3953 (((-689 (-409 |#2|)) (-1264 $)) NIL) (((-689 (-409 |#2|))) NIL)) (-3817 (((-409 |#2|) $) NIL)) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-409 |#2|) (-351)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-1370 (((-420 $) $) NIL (|has| (-409 |#2|) (-365)))) (-1561 (((-112) $ $) NIL (|has| (-409 |#2|) (-365)))) (-4025 (((-771)) NIL (|has| (-409 |#2|) (-370)))) (-4051 (((-112)) NIL)) (-4146 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| (-409 |#2|) (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-3 (-409 |#2|) "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| (-409 |#2|) (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-409 |#2|) $) NIL)) (-1547 (($ (-1264 (-409 |#2|)) (-1264 $)) NIL) (($ (-1264 (-409 |#2|))) 61) (($ (-1264 |#2|) |#2|) 136)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-409 |#2|) (-351)))) (-2926 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-1929 (((-689 (-409 |#2|)) $ (-1264 $)) NIL) (((-689 (-409 |#2|)) $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-409 |#2|))) (|:| |vec| (-1264 (-409 |#2|)))) (-689 $) (-1264 $)) NIL) (((-689 (-409 |#2|)) (-689 $)) NIL)) (-2507 (((-1264 $) (-1264 $)) NIL)) (-4362 (($ |#3|) NIL) (((-3 $ "failed") (-409 |#3|)) NIL (|has| (-409 |#2|) (-365)))) (-1579 (((-3 $ "failed") $) NIL)) (-2674 (((-644 (-644 |#1|))) NIL (|has| |#1| (-370)))) (-3038 (((-112) |#1| |#1|) NIL)) (-1821 (((-921)) NIL)) (-3335 (($) NIL (|has| (-409 |#2|) (-370)))) (-3554 (((-112)) NIL)) (-4036 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2938 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| (-409 |#2|) (-365)))) (-4248 (($ $) NIL)) (-3092 (($) NIL (|has| (-409 |#2|) (-351)))) (-3449 (((-112) $) NIL (|has| (-409 |#2|) (-351)))) (-3626 (($ $ (-771)) NIL (|has| (-409 |#2|) (-351))) (($ $) NIL (|has| (-409 |#2|) (-351)))) (-2635 (((-112) $) NIL (|has| (-409 |#2|) (-365)))) (-2716 (((-921) $) NIL (|has| (-409 |#2|) (-351))) (((-833 (-921)) $) NIL (|has| (-409 |#2|) (-351)))) (-2741 (((-112) $) NIL)) (-4302 (((-771)) NIL)) (-3628 (((-1264 $) (-1264 $)) 111)) (-1559 (((-409 |#2|) $) NIL)) (-1928 (((-644 (-952 |#1|)) (-1175)) NIL (|has| |#1| (-365)))) (-2546 (((-3 $ "failed") $) NIL (|has| (-409 |#2|) (-351)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-409 |#2|) (-365)))) (-3929 ((|#3| $) NIL (|has| (-409 |#2|) (-365)))) (-3712 (((-921) $) NIL (|has| (-409 |#2|) (-370)))) (-4350 ((|#3| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| (-409 |#2|) (-365))) (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-2878 (((-1157) $) NIL)) (-4308 (((-1269) (-771)) 88)) (-3056 (((-689 (-409 |#2|))) 56)) (-2730 (((-689 (-409 |#2|))) 49)) (-2626 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-3931 (($ (-1264 |#2|) |#2|) 137)) (-2775 (((-689 (-409 |#2|))) 50)) (-2064 (((-689 (-409 |#2|))) 48)) (-2825 (((-2 (|:| |num| (-689 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 135)) (-2057 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) 68)) (-1641 (((-1264 $)) 47)) (-1925 (((-1264 $)) 46)) (-2936 (((-112) $) NIL)) (-1477 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2759 (($) NIL (|has| (-409 |#2|) (-351)) CONST)) (-2168 (($ (-921)) NIL (|has| (-409 |#2|) (-370)))) (-3901 (((-3 |#2| "failed")) NIL)) (-4033 (((-1119) $) NIL)) (-4127 (((-771)) NIL)) (-4067 (($) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| (-409 |#2|) (-365)))) (-2222 (($ (-644 $)) NIL (|has| (-409 |#2|) (-365))) (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| (-409 |#2|) (-351)))) (-2391 (((-420 $) $) NIL (|has| (-409 |#2|) (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-409 |#2|) (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| (-409 |#2|) (-365)))) (-2972 (((-3 $ "failed") $ $) NIL (|has| (-409 |#2|) (-365)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-409 |#2|) (-365)))) (-1813 (((-771) $) NIL (|has| (-409 |#2|) (-365)))) (-4386 ((|#1| $ |#1| |#1|) NIL)) (-3611 (((-3 |#2| "failed")) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| (-409 |#2|) (-365)))) (-2408 (((-409 |#2|) (-1264 $)) NIL) (((-409 |#2|)) 44)) (-3379 (((-771) $) NIL (|has| (-409 |#2|) (-351))) (((-3 (-771) "failed") $ $) NIL (|has| (-409 |#2|) (-351)))) (-2862 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 |#2| |#2|)) 131) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-3042 (((-689 (-409 |#2|)) (-1264 $) (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365)))) (-2127 ((|#3|) 55)) (-1536 (($) NIL (|has| (-409 |#2|) (-351)))) (-2770 (((-1264 (-409 |#2|)) $ (-1264 $)) NIL) (((-689 (-409 |#2|)) (-1264 $) (-1264 $)) NIL) (((-1264 (-409 |#2|)) $) 62) (((-689 (-409 |#2|)) (-1264 $)) 112)) (-3134 (((-1264 (-409 |#2|)) $) NIL) (($ (-1264 (-409 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-409 |#2|) (-351)))) (-3720 (((-1264 $) (-1264 $)) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 |#2|)) NIL) (($ (-409 (-566))) NIL (-2805 (|has| (-409 |#2|) (-1038 (-409 (-566)))) (|has| (-409 |#2|) (-365)))) (($ $) NIL (|has| (-409 |#2|) (-365)))) (-3842 (($ $) NIL (|has| (-409 |#2|) (-351))) (((-3 $ "failed") $) NIL (|has| (-409 |#2|) (-145)))) (-1963 ((|#3| $) NIL)) (-3795 (((-771)) NIL T CONST)) (-2462 (((-112)) 42)) (-4038 (((-112) |#1|) 54) (((-112) |#2|) 143)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) 102)) (-1634 (((-112) $ $) NIL (|has| (-409 |#2|) (-365)))) (-1832 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-1574 (((-112)) NIL)) (-2485 (($) 17 T CONST)) (-2495 (($) 27 T CONST)) (-2840 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| (-409 |#2|) (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 |#2|)) NIL) (($ (-409 |#2|) $) NIL) (($ (-409 (-566)) $) NIL (|has| (-409 |#2|) (-365))) (($ $ (-409 (-566))) NIL (|has| (-409 |#2|) (-365)))))
-(((-40 |#1| |#2| |#3| |#4|) (-13 (-344 |#1| |#2| |#3|) (-10 -7 (-15 -4308 ((-1269) (-771))))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) |#3|) (T -40))
-((-4308 (*1 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-365)) (-4 *5 (-1240 *4)) (-5 *2 (-1269)) (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1240 (-409 *5))) (-14 *7 *6))))
-(-13 (-344 |#1| |#2| |#3|) (-10 -7 (-15 -4308 ((-1269) (-771)))))
-((-3884 ((|#2| |#2|) 47)) (-3948 ((|#2| |#2|) 139 (-12 (|has| |#2| (-432 |#1|)) (|has| |#1| (-13 (-454) (-1038 (-566))))))) (-2315 ((|#2| |#2|) 100 (-12 (|has| |#2| (-432 |#1|)) (|has| |#1| (-13 (-454) (-1038 (-566))))))) (-2300 ((|#2| |#2|) 101 (-12 (|has| |#2| (-432 |#1|)) (|has| |#1| (-13 (-454) (-1038 (-566))))))) (-2630 ((|#2| (-114) |#2| (-771)) 135 (-12 (|has| |#2| (-432 |#1|)) (|has| |#1| (-13 (-454) (-1038 (-566))))))) (-2834 (((-1171 |#2|) |#2|) 44)) (-3576 ((|#2| |#2| (-644 (-612 |#2|))) 18) ((|#2| |#2| (-644 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
-(((-41 |#1| |#2|) (-10 -7 (-15 -3884 (|#2| |#2|)) (-15 -3576 (|#2| |#2|)) (-15 -3576 (|#2| |#2| |#2|)) (-15 -3576 (|#2| |#2| (-644 |#2|))) (-15 -3576 (|#2| |#2| (-644 (-612 |#2|)))) (-15 -2834 ((-1171 |#2|) |#2|)) (IF (|has| |#1| (-13 (-454) (-1038 (-566)))) (IF (|has| |#2| (-432 |#1|)) (PROGN (-15 -2300 (|#2| |#2|)) (-15 -2315 (|#2| |#2|)) (-15 -3948 (|#2| |#2|)) (-15 -2630 (|#2| (-114) |#2| (-771)))) |%noBranch|) |%noBranch|)) (-558) (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 |#1| (-612 $)) $)) (-15 -3013 ((-1124 |#1| (-612 $)) $)) (-15 -2512 ($ (-1124 |#1| (-612 $))))))) (T -41))
-((-2630 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-114)) (-5 *4 (-771)) (-4 *5 (-13 (-454) (-1038 (-566)))) (-4 *5 (-558)) (-5 *1 (-41 *5 *2)) (-4 *2 (-432 *5)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 *5 (-612 $)) $)) (-15 -3013 ((-1124 *5 (-612 $)) $)) (-15 -2512 ($ (-1124 *5 (-612 $))))))))) (-3948 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $)) (-15 -3013 ((-1124 *3 (-612 $)) $)) (-15 -2512 ($ (-1124 *3 (-612 $))))))))) (-2315 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $)) (-15 -3013 ((-1124 *3 (-612 $)) $)) (-15 -2512 ($ (-1124 *3 (-612 $))))))))) (-2300 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $)) (-15 -3013 ((-1124 *3 (-612 $)) $)) (-15 -2512 ($ (-1124 *3 (-612 $))))))))) (-2834 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-1171 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 *4 (-612 $)) $)) (-15 -3013 ((-1124 *4 (-612 $)) $)) (-15 -2512 ($ (-1124 *4 (-612 $))))))))) (-3576 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-612 *2))) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 *4 (-612 $)) $)) (-15 -3013 ((-1124 *4 (-612 $)) $)) (-15 -2512 ($ (-1124 *4 (-612 $))))))) (-4 *4 (-558)) (-5 *1 (-41 *4 *2)))) (-3576 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 *4 (-612 $)) $)) (-15 -3013 ((-1124 *4 (-612 $)) $)) (-15 -2512 ($ (-1124 *4 (-612 $))))))) (-4 *4 (-558)) (-5 *1 (-41 *4 *2)))) (-3576 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $)) (-15 -3013 ((-1124 *3 (-612 $)) $)) (-15 -2512 ($ (-1124 *3 (-612 $))))))))) (-3576 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $)) (-15 -3013 ((-1124 *3 (-612 $)) $)) (-15 -2512 ($ (-1124 *3 (-612 $))))))))) (-3884 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $)) (-15 -3013 ((-1124 *3 (-612 $)) $)) (-15 -2512 ($ (-1124 *3 (-612 $))))))))))
-(-10 -7 (-15 -3884 (|#2| |#2|)) (-15 -3576 (|#2| |#2|)) (-15 -3576 (|#2| |#2| |#2|)) (-15 -3576 (|#2| |#2| (-644 |#2|))) (-15 -3576 (|#2| |#2| (-644 (-612 |#2|)))) (-15 -2834 ((-1171 |#2|) |#2|)) (IF (|has| |#1| (-13 (-454) (-1038 (-566)))) (IF (|has| |#2| (-432 |#1|)) (PROGN (-15 -2300 (|#2| |#2|)) (-15 -2315 (|#2| |#2|)) (-15 -3948 (|#2| |#2|)) (-15 -2630 (|#2| (-114) |#2| (-771)))) |%noBranch|) |%noBranch|))
-((-2391 (((-420 (-1171 |#3|)) (-1171 |#3|) (-644 (-48))) 23) (((-420 |#3|) |#3| (-644 (-48))) 19)))
-(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -2391 ((-420 |#3|) |#3| (-644 (-48)))) (-15 -2391 ((-420 (-1171 |#3|)) (-1171 |#3|) (-644 (-48))))) (-850) (-793) (-949 (-48) |#2| |#1|)) (T -42))
-((-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-48))) (-4 *5 (-850)) (-4 *6 (-793)) (-4 *7 (-949 (-48) *6 *5)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-48))) (-4 *5 (-850)) (-4 *6 (-793)) (-5 *2 (-420 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-949 (-48) *6 *5)))))
-(-10 -7 (-15 -2391 ((-420 |#3|) |#3| (-644 (-48)))) (-15 -2391 ((-420 (-1171 |#3|)) (-1171 |#3|) (-644 (-48)))))
-((-2836 (((-771) |#2|) 72)) (-2364 (((-771) |#2|) 76)) (-2828 (((-644 |#2|)) 39)) (-2795 (((-771) |#2|) 75)) (-2062 (((-771) |#2|) 71)) (-1999 (((-771) |#2|) 74)) (-3782 (((-644 (-689 |#1|))) 67)) (-4109 (((-644 |#2|)) 62)) (-1409 (((-644 |#2|) |#2|) 50)) (-1989 (((-644 |#2|)) 64)) (-2372 (((-644 |#2|)) 63)) (-2819 (((-644 (-689 |#1|))) 55)) (-3855 (((-644 |#2|)) 61)) (-1327 (((-644 |#2|) |#2|) 49)) (-2814 (((-644 |#2|)) 57)) (-1993 (((-644 (-689 |#1|))) 68)) (-2858 (((-644 |#2|)) 66)) (-1990 (((-1264 |#2|) (-1264 |#2|)) 101 (|has| |#1| (-308)))))
-(((-43 |#1| |#2|) (-10 -7 (-15 -2795 ((-771) |#2|)) (-15 -2364 ((-771) |#2|)) (-15 -2062 ((-771) |#2|)) (-15 -2836 ((-771) |#2|)) (-15 -1999 ((-771) |#2|)) (-15 -2814 ((-644 |#2|))) (-15 -1327 ((-644 |#2|) |#2|)) (-15 -1409 ((-644 |#2|) |#2|)) (-15 -3855 ((-644 |#2|))) (-15 -4109 ((-644 |#2|))) (-15 -2372 ((-644 |#2|))) (-15 -1989 ((-644 |#2|))) (-15 -2858 ((-644 |#2|))) (-15 -2819 ((-644 (-689 |#1|)))) (-15 -3782 ((-644 (-689 |#1|)))) (-15 -1993 ((-644 (-689 |#1|)))) (-15 -2828 ((-644 |#2|))) (IF (|has| |#1| (-308)) (-15 -1990 ((-1264 |#2|) (-1264 |#2|))) |%noBranch|)) (-558) (-419 |#1|)) (T -43))
-((-1990 (*1 *2 *2) (-12 (-5 *2 (-1264 *4)) (-4 *4 (-419 *3)) (-4 *3 (-308)) (-4 *3 (-558)) (-5 *1 (-43 *3 *4)))) (-2828 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-1993 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-3782 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-2819 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-2858 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-1989 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-2372 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-4109 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-3855 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-1409 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-1327 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-2814 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-1999 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-2836 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-2062 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-2364 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-2795 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))))
-(-10 -7 (-15 -2795 ((-771) |#2|)) (-15 -2364 ((-771) |#2|)) (-15 -2062 ((-771) |#2|)) (-15 -2836 ((-771) |#2|)) (-15 -1999 ((-771) |#2|)) (-15 -2814 ((-644 |#2|))) (-15 -1327 ((-644 |#2|) |#2|)) (-15 -1409 ((-644 |#2|) |#2|)) (-15 -3855 ((-644 |#2|))) (-15 -4109 ((-644 |#2|))) (-15 -2372 ((-644 |#2|))) (-15 -1989 ((-644 |#2|))) (-15 -2858 ((-644 |#2|))) (-15 -2819 ((-644 (-689 |#1|)))) (-15 -3782 ((-644 (-689 |#1|)))) (-15 -1993 ((-644 (-689 |#1|)))) (-15 -2828 ((-644 |#2|))) (IF (|has| |#1| (-308)) (-15 -1990 ((-1264 |#2|) (-1264 |#2|))) |%noBranch|))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3803 (((-3 $ "failed")) NIL (|has| |#1| (-558)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-3950 (((-1264 (-689 |#1|)) (-1264 $)) NIL) (((-1264 (-689 |#1|))) 24)) (-1378 (((-1264 $)) 55)) (-2342 (($) NIL T CONST)) (-1503 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) NIL (|has| |#1| (-558)))) (-2301 (((-3 $ "failed")) NIL (|has| |#1| (-558)))) (-2327 (((-689 |#1|) (-1264 $)) NIL) (((-689 |#1|)) NIL)) (-2080 ((|#1| $) NIL)) (-1481 (((-689 |#1|) $ (-1264 $)) NIL) (((-689 |#1|) $) NIL)) (-3152 (((-3 $ "failed") $) NIL (|has| |#1| (-558)))) (-3207 (((-1171 (-952 |#1|))) NIL (|has| |#1| (-365)))) (-2258 (($ $ (-921)) NIL)) (-2798 ((|#1| $) NIL)) (-3584 (((-1171 |#1|) $) NIL (|has| |#1| (-558)))) (-3435 ((|#1| (-1264 $)) NIL) ((|#1|) NIL)) (-3815 (((-1171 |#1|) $) NIL)) (-2982 (((-112)) 102)) (-1547 (($ (-1264 |#1|) (-1264 $)) NIL) (($ (-1264 |#1|)) NIL)) (-1579 (((-3 $ "failed") $) 14 (|has| |#1| (-558)))) (-1821 (((-921)) 56)) (-2631 (((-112)) NIL)) (-2995 (($ $ (-921)) NIL)) (-1605 (((-112)) NIL)) (-3199 (((-112)) NIL)) (-2592 (((-112)) 104)) (-3881 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) NIL (|has| |#1| (-558)))) (-2060 (((-3 $ "failed")) NIL (|has| |#1| (-558)))) (-1297 (((-689 |#1|) (-1264 $)) NIL) (((-689 |#1|)) NIL)) (-2516 ((|#1| $) NIL)) (-4333 (((-689 |#1|) $ (-1264 $)) NIL) (((-689 |#1|) $) NIL)) (-2318 (((-3 $ "failed") $) NIL (|has| |#1| (-558)))) (-2593 (((-1171 (-952 |#1|))) NIL (|has| |#1| (-365)))) (-4171 (($ $ (-921)) NIL)) (-3595 ((|#1| $) NIL)) (-3984 (((-1171 |#1|) $) NIL (|has| |#1| (-558)))) (-2835 ((|#1| (-1264 $)) NIL) ((|#1|) NIL)) (-1846 (((-1171 |#1|) $) NIL)) (-3880 (((-112)) 101)) (-2878 (((-1157) $) NIL)) (-2817 (((-112)) 109)) (-1642 (((-112)) 108)) (-4331 (((-112)) 110)) (-4033 (((-1119) $) NIL)) (-3017 (((-112)) 103)) (-4386 ((|#1| $ (-566)) 58)) (-2770 (((-1264 |#1|) $ (-1264 $)) 53) (((-689 |#1|) (-1264 $) (-1264 $)) NIL) (((-1264 |#1|) $) 28) (((-689 |#1|) (-1264 $)) NIL)) (-3134 (((-1264 |#1|) $) NIL) (($ (-1264 |#1|)) NIL)) (-2232 (((-644 (-952 |#1|)) (-1264 $)) NIL) (((-644 (-952 |#1|))) NIL)) (-3755 (($ $ $) NIL)) (-2110 (((-112)) 98)) (-2512 (((-862) $) 75) (($ (-1264 |#1|)) 22)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) 49)) (-3578 (((-644 (-1264 |#1|))) NIL (|has| |#1| (-558)))) (-3551 (($ $ $ $) NIL)) (-4018 (((-112)) 94)) (-4002 (($ (-689 |#1|) $) 18)) (-2821 (($ $ $) NIL)) (-1546 (((-112)) 100)) (-2498 (((-112)) 95)) (-2686 (((-112)) 93)) (-2485 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 84) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1141 |#2| |#1|) $) 19)))
-(((-44 |#1| |#2| |#3| |#4|) (-13 (-419 |#1|) (-648 (-1141 |#2| |#1|)) (-10 -8 (-15 -2512 ($ (-1264 |#1|))))) (-365) (-921) (-644 (-1175)) (-1264 (-689 |#1|))) (T -44))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-365)) (-14 *6 (-1264 (-689 *3))) (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))))))
-(-13 (-419 |#1|) (-648 (-1141 |#2| |#1|)) (-10 -8 (-15 -2512 ($ (-1264 |#1|)))))
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2212 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-4309 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-3301 (($ $) NIL)) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-1537 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4418))) (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-1410 (($ $ (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-3426 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850))))) (-3290 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-3087 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4418)))) (-4290 (($ $ $) 33 (|has| $ (-6 -4418)))) (-1587 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4418)))) (-2831 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 35 (|has| $ (-6 -4418)))) (-3874 ((|#2| $ |#1| |#2|) 53) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4418))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-1231 (-566)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4418))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "last" (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4418))) (($ $ "rest" $) NIL (|has| $ (-6 -4418))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "first" (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4418))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "value" (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) NIL (|has| $ (-6 -4418)))) (-3586 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL)) (-4186 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4299 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-2414 (((-3 |#2| "failed") |#1| $) 43)) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4076 (($ $ (-771)) NIL) (($ $) 29)) (-4130 (($ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-3066 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-3 |#2| "failed") |#1| $) 56) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-2651 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4418))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) NIL) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566)) NIL)) (-1901 (((-112) $) NIL)) (-3968 (((-566) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (((-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))) (((-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566)) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-3372 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 20 (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417))) (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 20 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) NIL)) (-4129 (((-112) $ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-4257 (($ (-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 ((|#1| $) NIL (|has| |#1| (-850))) (((-566) $) 38 (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-1865 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-3132 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-2404 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417))) (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099)))) (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-1544 ((|#1| $) NIL (|has| |#1| (-850))) (((-566) $) 40 (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4418))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418))) (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL)) (-3932 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2996 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL)) (-2783 (((-112) $) NIL)) (-2878 (((-1157) $) 49 (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2670 (($ $ (-771)) NIL) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-3949 (((-644 |#1|) $) 22)) (-3221 (((-112) |#1| $) NIL)) (-3119 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-4265 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL) (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-4268 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 |#1|) $) NIL) (((-644 (-566)) $) NIL)) (-2040 (((-112) |#1| $) NIL) (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4062 ((|#2| $) NIL (|has| |#1| (-850))) (($ $ (-771)) NIL) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 27)) (-2126 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL)) (-1720 (($ $ |#2|) NIL (|has| $ (-6 -4418))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-1335 (((-112) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099)))) (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-2784 (((-644 |#2|) $) NIL) (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 19)) (-4194 (((-112) $) 18)) (-2954 (($) 14)) (-4386 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ (-566)) NIL) (($ $ (-1231 (-566))) NIL) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "first") NIL) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $ "value") NIL)) (-1442 (((-566) $ $) NIL)) (-3879 (($) 13) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-1424 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-1313 (((-112) $) NIL)) (-1636 (($ $) NIL)) (-2231 (($ $) NIL (|has| $ (-6 -4418)))) (-3069 (((-771) $) NIL)) (-1904 (($ $) NIL)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-1498 (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL) (($ $ $) NIL)) (-3704 (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL) (($ (-644 $)) NIL) (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 31) (($ $ $) NIL)) (-2512 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-1448 (((-644 $) $) NIL)) (-2105 (((-112) $ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-3122 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-2677 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") |#1| $) 51)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-2940 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2987 (((-112) $ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-2962 (((-112) $ $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-850)))) (-2997 (((-771) $) 25 (|has| $ (-6 -4417)))))
+((-3920 (((-420 |#1|) |#1|) 41)) (-2473 (((-420 |#1|) |#1|) 30) (((-420 |#1|) |#1| (-644 (-48))) 33)) (-2172 (((-112) |#1|) 59)))
+(((-39 |#1|) (-10 -7 (-15 -2473 ((-420 |#1|) |#1| (-644 (-48)))) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3920 ((-420 |#1|) |#1|)) (-15 -2172 ((-112) |#1|))) (-1240 (-48))) (T -39))
+((-2172 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48))))) (-3920 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48))))) (-2473 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48))))) (-2473 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-48))) (-5 *2 (-420 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48))))))
+(-10 -7 (-15 -2473 ((-420 |#1|) |#1| (-644 (-48)))) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3920 ((-420 |#1|) |#1|)) (-15 -2172 ((-112) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3815 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| (-409 |#2|) (-365)))) (-1968 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-2644 (((-112) $) NIL (|has| (-409 |#2|) (-365)))) (-2965 (((-689 (-409 |#2|)) (-1264 $)) NIL) (((-689 (-409 |#2|))) NIL)) (-3834 (((-409 |#2|) $) NIL)) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-409 |#2|) (-351)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-3271 (((-420 $) $) NIL (|has| (-409 |#2|) (-365)))) (-2738 (((-112) $ $) NIL (|has| (-409 |#2|) (-365)))) (-4070 (((-771)) NIL (|has| (-409 |#2|) (-370)))) (-1395 (((-112)) NIL)) (-4205 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| (-409 |#2|) (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-3 (-409 |#2|) "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| (-409 |#2|) (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-409 |#2|) $) NIL)) (-2613 (($ (-1264 (-409 |#2|)) (-1264 $)) NIL) (($ (-1264 (-409 |#2|))) 61) (($ (-1264 |#2|) |#2|) 136)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-409 |#2|) (-351)))) (-2949 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-2205 (((-689 (-409 |#2|)) $ (-1264 $)) NIL) (((-689 (-409 |#2|)) $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-409 |#2|))) (|:| |vec| (-1264 (-409 |#2|)))) (-689 $) (-1264 $)) NIL) (((-689 (-409 |#2|)) (-689 $)) NIL)) (-2994 (((-1264 $) (-1264 $)) NIL)) (-1580 (($ |#3|) NIL) (((-3 $ "failed") (-409 |#3|)) NIL (|has| (-409 |#2|) (-365)))) (-2928 (((-3 $ "failed") $) NIL)) (-4019 (((-644 (-644 |#1|))) NIL (|has| |#1| (-370)))) (-4317 (((-112) |#1| |#1|) NIL)) (-4157 (((-921)) NIL)) (-1618 (($) NIL (|has| (-409 |#2|) (-370)))) (-3459 (((-112)) NIL)) (-4356 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2960 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| (-409 |#2|) (-365)))) (-2755 (($ $) NIL)) (-1676 (($) NIL (|has| (-409 |#2|) (-351)))) (-3698 (((-112) $) NIL (|has| (-409 |#2|) (-351)))) (-2901 (($ $ (-771)) NIL (|has| (-409 |#2|) (-351))) (($ $) NIL (|has| (-409 |#2|) (-351)))) (-1784 (((-112) $) NIL (|has| (-409 |#2|) (-365)))) (-3227 (((-921) $) NIL (|has| (-409 |#2|) (-351))) (((-833 (-921)) $) NIL (|has| (-409 |#2|) (-351)))) (-3466 (((-112) $) NIL)) (-2060 (((-771)) NIL)) (-2923 (((-1264 $) (-1264 $)) 111)) (-2719 (((-409 |#2|) $) NIL)) (-2192 (((-644 (-952 |#1|)) (-1175)) NIL (|has| |#1| (-365)))) (-2133 (((-3 $ "failed") $) NIL (|has| (-409 |#2|) (-351)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-409 |#2|) (-365)))) (-2750 ((|#3| $) NIL (|has| (-409 |#2|) (-365)))) (-1299 (((-921) $) NIL (|has| (-409 |#2|) (-370)))) (-1567 ((|#3| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| (-409 |#2|) (-365))) (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-2402 (((-1157) $) NIL)) (-2124 (((-1269) (-771)) 88)) (-1387 (((-689 (-409 |#2|))) 56)) (-3355 (((-689 (-409 |#2|))) 49)) (-3584 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-2769 (($ (-1264 |#2|) |#2|) 137)) (-2594 (((-689 (-409 |#2|))) 50)) (-4170 (((-689 (-409 |#2|))) 48)) (-3080 (((-2 (|:| |num| (-689 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 135)) (-4096 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) 68)) (-4202 (((-1264 $)) 47)) (-2161 (((-1264 $)) 46)) (-1729 (((-112) $) NIL)) (-3108 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-3625 (($) NIL (|has| (-409 |#2|) (-351)) CONST)) (-2208 (($ (-921)) NIL (|has| (-409 |#2|) (-370)))) (-2542 (((-3 |#2| "failed")) NIL)) (-4056 (((-1119) $) NIL)) (-4026 (((-771)) NIL)) (-4152 (($) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| (-409 |#2|) (-365)))) (-2235 (($ (-644 $)) NIL (|has| (-409 |#2|) (-365))) (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| (-409 |#2|) (-351)))) (-2473 (((-420 $) $) NIL (|has| (-409 |#2|) (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-409 |#2|) (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| (-409 |#2|) (-365)))) (-2997 (((-3 $ "failed") $ $) NIL (|has| (-409 |#2|) (-365)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-409 |#2|) (-365)))) (-3470 (((-771) $) NIL (|has| (-409 |#2|) (-365)))) (-4393 ((|#1| $ |#1| |#1|) NIL)) (-2772 (((-3 |#2| "failed")) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| (-409 |#2|) (-365)))) (-3309 (((-409 |#2|) (-1264 $)) NIL) (((-409 |#2|)) 44)) (-2347 (((-771) $) NIL (|has| (-409 |#2|) (-351))) (((-3 (-771) "failed") $ $) NIL (|has| (-409 |#2|) (-351)))) (-2578 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 |#2| |#2|)) 131) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-4359 (((-689 (-409 |#2|)) (-1264 $) (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365)))) (-3601 ((|#3|) 55)) (-2507 (($) NIL (|has| (-409 |#2|) (-351)))) (-2543 (((-1264 (-409 |#2|)) $ (-1264 $)) NIL) (((-689 (-409 |#2|)) (-1264 $) (-1264 $)) NIL) (((-1264 (-409 |#2|)) $) 62) (((-689 (-409 |#2|)) (-1264 $)) 112)) (-3204 (((-1264 (-409 |#2|)) $) NIL) (($ (-1264 (-409 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-409 |#2|) (-351)))) (-1389 (((-1264 $) (-1264 $)) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 |#2|)) NIL) (($ (-409 (-566))) NIL (-2805 (|has| (-409 |#2|) (-1038 (-409 (-566)))) (|has| (-409 |#2|) (-365)))) (($ $) NIL (|has| (-409 |#2|) (-365)))) (-3226 (($ $) NIL (|has| (-409 |#2|) (-351))) (((-3 $ "failed") $) NIL (|has| (-409 |#2|) (-145)))) (-4370 ((|#3| $) NIL)) (-3996 (((-771)) NIL T CONST)) (-2575 (((-112)) 42)) (-4379 (((-112) |#1|) 54) (((-112) |#2|) 143)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) 102)) (-2278 (((-112) $ $) NIL (|has| (-409 |#2|) (-365)))) (-2437 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2872 (((-112)) NIL)) (-2493 (($) 17 T CONST)) (-4333 (($) 27 T CONST)) (-2876 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| (-409 |#2|) (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 |#2|)) NIL) (($ (-409 |#2|) $) NIL) (($ (-409 (-566)) $) NIL (|has| (-409 |#2|) (-365))) (($ $ (-409 (-566))) NIL (|has| (-409 |#2|) (-365)))))
+(((-40 |#1| |#2| |#3| |#4|) (-13 (-344 |#1| |#2| |#3|) (-10 -7 (-15 -2124 ((-1269) (-771))))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) |#3|) (T -40))
+((-2124 (*1 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-365)) (-4 *5 (-1240 *4)) (-5 *2 (-1269)) (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1240 (-409 *5))) (-14 *7 *6))))
+(-13 (-344 |#1| |#2| |#3|) (-10 -7 (-15 -2124 ((-1269) (-771)))))
+((-3593 ((|#2| |#2|) 47)) (-2915 ((|#2| |#2|) 139 (-12 (|has| |#2| (-432 |#1|)) (|has| |#1| (-13 (-454) (-1038 (-566))))))) (-1754 ((|#2| |#2|) 100 (-12 (|has| |#2| (-432 |#1|)) (|has| |#1| (-13 (-454) (-1038 (-566))))))) (-1582 ((|#2| |#2|) 101 (-12 (|has| |#2| (-432 |#1|)) (|has| |#1| (-13 (-454) (-1038 (-566))))))) (-1721 ((|#2| (-114) |#2| (-771)) 135 (-12 (|has| |#2| (-432 |#1|)) (|has| |#1| (-13 (-454) (-1038 (-566))))))) (-1953 (((-1171 |#2|) |#2|) 44)) (-3659 ((|#2| |#2| (-644 (-612 |#2|))) 18) ((|#2| |#2| (-644 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
+(((-41 |#1| |#2|) (-10 -7 (-15 -3593 (|#2| |#2|)) (-15 -3659 (|#2| |#2|)) (-15 -3659 (|#2| |#2| |#2|)) (-15 -3659 (|#2| |#2| (-644 |#2|))) (-15 -3659 (|#2| |#2| (-644 (-612 |#2|)))) (-15 -1953 ((-1171 |#2|) |#2|)) (IF (|has| |#1| (-13 (-454) (-1038 (-566)))) (IF (|has| |#2| (-432 |#1|)) (PROGN (-15 -1582 (|#2| |#2|)) (-15 -1754 (|#2| |#2|)) (-15 -2915 (|#2| |#2|)) (-15 -1721 (|#2| (-114) |#2| (-771)))) |%noBranch|) |%noBranch|)) (-558) (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 |#1| (-612 $)) $)) (-15 -3100 ((-1124 |#1| (-612 $)) $)) (-15 -3780 ($ (-1124 |#1| (-612 $))))))) (T -41))
+((-1721 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-114)) (-5 *4 (-771)) (-4 *5 (-13 (-454) (-1038 (-566)))) (-4 *5 (-558)) (-5 *1 (-41 *5 *2)) (-4 *2 (-432 *5)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 *5 (-612 $)) $)) (-15 -3100 ((-1124 *5 (-612 $)) $)) (-15 -3780 ($ (-1124 *5 (-612 $))))))))) (-2915 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $)) (-15 -3100 ((-1124 *3 (-612 $)) $)) (-15 -3780 ($ (-1124 *3 (-612 $))))))))) (-1754 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $)) (-15 -3100 ((-1124 *3 (-612 $)) $)) (-15 -3780 ($ (-1124 *3 (-612 $))))))))) (-1582 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $)) (-15 -3100 ((-1124 *3 (-612 $)) $)) (-15 -3780 ($ (-1124 *3 (-612 $))))))))) (-1953 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-1171 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 *4 (-612 $)) $)) (-15 -3100 ((-1124 *4 (-612 $)) $)) (-15 -3780 ($ (-1124 *4 (-612 $))))))))) (-3659 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-612 *2))) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 *4 (-612 $)) $)) (-15 -3100 ((-1124 *4 (-612 $)) $)) (-15 -3780 ($ (-1124 *4 (-612 $))))))) (-4 *4 (-558)) (-5 *1 (-41 *4 *2)))) (-3659 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 *4 (-612 $)) $)) (-15 -3100 ((-1124 *4 (-612 $)) $)) (-15 -3780 ($ (-1124 *4 (-612 $))))))) (-4 *4 (-558)) (-5 *1 (-41 *4 *2)))) (-3659 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $)) (-15 -3100 ((-1124 *3 (-612 $)) $)) (-15 -3780 ($ (-1124 *3 (-612 $))))))))) (-3659 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $)) (-15 -3100 ((-1124 *3 (-612 $)) $)) (-15 -3780 ($ (-1124 *3 (-612 $))))))))) (-3593 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-365) (-303) (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $)) (-15 -3100 ((-1124 *3 (-612 $)) $)) (-15 -3780 ($ (-1124 *3 (-612 $))))))))))
+(-10 -7 (-15 -3593 (|#2| |#2|)) (-15 -3659 (|#2| |#2|)) (-15 -3659 (|#2| |#2| |#2|)) (-15 -3659 (|#2| |#2| (-644 |#2|))) (-15 -3659 (|#2| |#2| (-644 (-612 |#2|)))) (-15 -1953 ((-1171 |#2|) |#2|)) (IF (|has| |#1| (-13 (-454) (-1038 (-566)))) (IF (|has| |#2| (-432 |#1|)) (PROGN (-15 -1582 (|#2| |#2|)) (-15 -1754 (|#2| |#2|)) (-15 -2915 (|#2| |#2|)) (-15 -1721 (|#2| (-114) |#2| (-771)))) |%noBranch|) |%noBranch|))
+((-2473 (((-420 (-1171 |#3|)) (-1171 |#3|) (-644 (-48))) 23) (((-420 |#3|) |#3| (-644 (-48))) 19)))
+(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -2473 ((-420 |#3|) |#3| (-644 (-48)))) (-15 -2473 ((-420 (-1171 |#3|)) (-1171 |#3|) (-644 (-48))))) (-850) (-793) (-949 (-48) |#2| |#1|)) (T -42))
+((-2473 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-48))) (-4 *5 (-850)) (-4 *6 (-793)) (-4 *7 (-949 (-48) *6 *5)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-42 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-2473 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-48))) (-4 *5 (-850)) (-4 *6 (-793)) (-5 *2 (-420 *3)) (-5 *1 (-42 *5 *6 *3)) (-4 *3 (-949 (-48) *6 *5)))))
+(-10 -7 (-15 -2473 ((-420 |#3|) |#3| (-644 (-48)))) (-15 -2473 ((-420 (-1171 |#3|)) (-1171 |#3|) (-644 (-48)))))
+((-1974 (((-771) |#2|) 72)) (-4092 (((-771) |#2|) 76)) (-1899 (((-644 |#2|)) 39)) (-2779 (((-771) |#2|) 75)) (-4150 (((-771) |#2|) 71)) (-1673 (((-771) |#2|) 74)) (-3882 (((-644 (-689 |#1|))) 67)) (-3838 (((-644 |#2|)) 62)) (-3663 (((-644 |#2|) |#2|) 50)) (-1561 (((-644 |#2|)) 64)) (-4166 (((-644 |#2|)) 63)) (-3014 (((-644 (-689 |#1|))) 55)) (-3344 (((-644 |#2|)) 61)) (-1782 (((-644 |#2|) |#2|) 49)) (-2973 (((-644 |#2|)) 57)) (-1609 (((-644 (-689 |#1|))) 68)) (-2190 (((-644 |#2|)) 66)) (-1575 (((-1264 |#2|) (-1264 |#2|)) 101 (|has| |#1| (-308)))))
+(((-43 |#1| |#2|) (-10 -7 (-15 -2779 ((-771) |#2|)) (-15 -4092 ((-771) |#2|)) (-15 -4150 ((-771) |#2|)) (-15 -1974 ((-771) |#2|)) (-15 -1673 ((-771) |#2|)) (-15 -2973 ((-644 |#2|))) (-15 -1782 ((-644 |#2|) |#2|)) (-15 -3663 ((-644 |#2|) |#2|)) (-15 -3344 ((-644 |#2|))) (-15 -3838 ((-644 |#2|))) (-15 -4166 ((-644 |#2|))) (-15 -1561 ((-644 |#2|))) (-15 -2190 ((-644 |#2|))) (-15 -3014 ((-644 (-689 |#1|)))) (-15 -3882 ((-644 (-689 |#1|)))) (-15 -1609 ((-644 (-689 |#1|)))) (-15 -1899 ((-644 |#2|))) (IF (|has| |#1| (-308)) (-15 -1575 ((-1264 |#2|) (-1264 |#2|))) |%noBranch|)) (-558) (-419 |#1|)) (T -43))
+((-1575 (*1 *2 *2) (-12 (-5 *2 (-1264 *4)) (-4 *4 (-419 *3)) (-4 *3 (-308)) (-4 *3 (-558)) (-5 *1 (-43 *3 *4)))) (-1899 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-1609 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-3882 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-3014 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-2190 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-1561 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-4166 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-3838 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-3344 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-3663 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-1782 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-2973 (*1 *2) (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-419 *3)))) (-1673 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-1974 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-4150 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-4092 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))) (-2779 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3)) (-4 *3 (-419 *4)))))
+(-10 -7 (-15 -2779 ((-771) |#2|)) (-15 -4092 ((-771) |#2|)) (-15 -4150 ((-771) |#2|)) (-15 -1974 ((-771) |#2|)) (-15 -1673 ((-771) |#2|)) (-15 -2973 ((-644 |#2|))) (-15 -1782 ((-644 |#2|) |#2|)) (-15 -3663 ((-644 |#2|) |#2|)) (-15 -3344 ((-644 |#2|))) (-15 -3838 ((-644 |#2|))) (-15 -4166 ((-644 |#2|))) (-15 -1561 ((-644 |#2|))) (-15 -2190 ((-644 |#2|))) (-15 -3014 ((-644 (-689 |#1|)))) (-15 -3882 ((-644 (-689 |#1|)))) (-15 -1609 ((-644 (-689 |#1|)))) (-15 -1899 ((-644 |#2|))) (IF (|has| |#1| (-308)) (-15 -1575 ((-1264 |#2|) (-1264 |#2|))) |%noBranch|))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4065 (((-3 $ "failed")) NIL (|has| |#1| (-558)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2932 (((-1264 (-689 |#1|)) (-1264 $)) NIL) (((-1264 (-689 |#1|))) 24)) (-4132 (((-1264 $)) 55)) (-3877 (($) NIL T CONST)) (-3379 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) NIL (|has| |#1| (-558)))) (-1594 (((-3 $ "failed")) NIL (|has| |#1| (-558)))) (-3735 (((-689 |#1|) (-1264 $)) NIL) (((-689 |#1|)) NIL)) (-3121 ((|#1| $) NIL)) (-3150 (((-689 |#1|) $ (-1264 $)) NIL) (((-689 |#1|) $) NIL)) (-4029 (((-3 $ "failed") $) NIL (|has| |#1| (-558)))) (-3280 (((-1171 (-952 |#1|))) NIL (|has| |#1| (-365)))) (-2400 (($ $ (-921)) NIL)) (-2811 ((|#1| $) NIL)) (-2536 (((-1171 |#1|) $) NIL (|has| |#1| (-558)))) (-1682 ((|#1| (-1264 $)) NIL) ((|#1|) NIL)) (-4181 (((-1171 |#1|) $) NIL)) (-2011 (((-112)) 102)) (-2613 (($ (-1264 |#1|) (-1264 $)) NIL) (($ (-1264 |#1|)) NIL)) (-2928 (((-3 $ "failed") $) 14 (|has| |#1| (-558)))) (-4157 (((-921)) 56)) (-1732 (((-112)) NIL)) (-2120 (($ $ (-921)) NIL)) (-1993 (((-112)) NIL)) (-3202 (((-112)) NIL)) (-1321 (((-112)) 104)) (-3571 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) NIL (|has| |#1| (-558)))) (-4128 (((-3 $ "failed")) NIL (|has| |#1| (-558)))) (-4105 (((-689 |#1|) (-1264 $)) NIL) (((-689 |#1|)) NIL)) (-1863 ((|#1| $) NIL)) (-2377 (((-689 |#1|) $ (-1264 $)) NIL) (((-689 |#1|) $) NIL)) (-1787 (((-3 $ "failed") $) NIL (|has| |#1| (-558)))) (-1332 (((-1171 (-952 |#1|))) NIL (|has| |#1| (-365)))) (-3231 (($ $ (-921)) NIL)) (-2630 ((|#1| $) NIL)) (-2041 (((-1171 |#1|) $) NIL (|has| |#1| (-558)))) (-1964 ((|#1| (-1264 $)) NIL) ((|#1|) NIL)) (-2584 (((-1171 |#1|) $) NIL)) (-3561 (((-112)) 101)) (-2402 (((-1157) $) NIL)) (-3002 (((-112)) 109)) (-4211 (((-112)) 108)) (-2355 (((-112)) 110)) (-4056 (((-1119) $) NIL)) (-2283 (((-112)) 103)) (-4393 ((|#1| $ (-566)) 58)) (-2543 (((-1264 |#1|) $ (-1264 $)) 53) (((-689 |#1|) (-1264 $) (-1264 $)) NIL) (((-1264 |#1|) $) 28) (((-689 |#1|) (-1264 $)) NIL)) (-3204 (((-1264 |#1|) $) NIL) (($ (-1264 |#1|)) NIL)) (-2136 (((-644 (-952 |#1|)) (-1264 $)) NIL) (((-644 (-952 |#1|))) NIL)) (-1783 (($ $ $) NIL)) (-3431 (((-112)) 98)) (-3780 (((-862) $) 75) (($ (-1264 |#1|)) 22)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) 49)) (-2474 (((-644 (-1264 |#1|))) NIL (|has| |#1| (-558)))) (-3428 (($ $ $ $) NIL)) (-2359 (((-112)) 94)) (-4046 (($ (-689 |#1|) $) 18)) (-3035 (($ $ $) NIL)) (-2602 (((-112)) 100)) (-2891 (((-112)) 95)) (-4142 (((-112)) 93)) (-2493 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 84) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1141 |#2| |#1|) $) 19)))
+(((-44 |#1| |#2| |#3| |#4|) (-13 (-419 |#1|) (-648 (-1141 |#2| |#1|)) (-10 -8 (-15 -3780 ($ (-1264 |#1|))))) (-365) (-921) (-644 (-1175)) (-1264 (-689 |#1|))) (T -44))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-365)) (-14 *6 (-1264 (-689 *3))) (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))))))
+(-13 (-419 |#1|) (-648 (-1141 |#2| |#1|)) (-10 -8 (-15 -3780 ($ (-1264 |#1|)))))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2252 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-4369 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-4043 (($ $) NIL)) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-2518 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4415))) (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3670 (($ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-1570 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850))))) (-1568 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-1637 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4415)))) (-1938 (($ $ $) 33 (|has| $ (-6 -4415)))) (-1819 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4415)))) (-1921 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 35 (|has| $ (-6 -4415)))) (-3916 ((|#2| $ |#1| |#2|) 53) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4415))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-1231 (-566)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4415))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "last" (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4415))) (($ $ "rest" $) NIL (|has| $ (-6 -4415))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "first" (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4415))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "value" (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) NIL (|has| $ (-6 -4415)))) (-2556 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL)) (-1386 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-4358 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2450 (((-3 |#2| "failed") |#1| $) 43)) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4112 (($ $ (-771)) NIL) (($ $) 29)) (-4060 (($ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-1450 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-3 |#2| "failed") |#1| $) 56) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-2661 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4415))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) NIL) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566)) NIL)) (-1935 (((-112) $) NIL)) (-4015 (((-566) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (((-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))) (((-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566)) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-3799 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 20 (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414))) (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 20 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) NIL)) (-4050 (((-112) $ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-4278 (($ (-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 ((|#1| $) NIL (|has| |#1| (-850))) (((-566) $) 38 (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-2761 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-3891 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-3276 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414))) (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099)))) (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-2579 ((|#1| $) NIL (|has| |#1| (-850))) (((-566) $) 40 (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4415))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415))) (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL)) (-3977 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-3318 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL)) (-2675 (((-112) $) NIL)) (-2402 (((-1157) $) 49 (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2680 (($ $ (-771)) NIL) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-4314 (((-644 |#1|) $) 22)) (-3422 (((-112) |#1| $) NIL)) (-3765 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2903 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL) (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-4286 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 |#1|) $) NIL) (((-644 (-566)) $) NIL)) (-3935 (((-112) |#1| $) NIL) (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4101 ((|#2| $) NIL (|has| |#1| (-850))) (($ $ (-771)) NIL) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 27)) (-3591 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL)) (-3750 (($ $ |#2|) NIL (|has| $ (-6 -4415))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-1927 (((-112) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099)))) (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-2684 (((-644 |#2|) $) NIL) (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 19)) (-3461 (((-112) $) 18)) (-1793 (($) 14)) (-4393 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ (-566)) NIL) (($ $ (-1231 (-566))) NIL) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "first") NIL) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $ "value") NIL)) (-3969 (((-566) $ $) NIL)) (-3551 (($) 13) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-3798 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-1638 (((-112) $) NIL)) (-2299 (($ $) NIL)) (-2127 (($ $) NIL (|has| $ (-6 -4415)))) (-1472 (((-771) $) NIL)) (-1957 (($ $) NIL)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-3324 (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL) (($ $ $) NIL)) (-3727 (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL) (($ (-644 $)) NIL) (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 31) (($ $ $) NIL)) (-3780 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-4041 (((-644 $) $) NIL)) (-3381 (((-112) $ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-3801 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-2690 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") |#1| $) 51)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-2950 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2999 (((-112) $ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-2972 (((-112) $ $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-850)))) (-3020 (((-771) $) 25 (|has| $ (-6 -4414)))))
(((-45 |#1| |#2|) (-36 |#1| |#2|) (-1099) (-1099)) (T -45))
NIL
(-36 |#1| |#2|)
-((-4367 (((-112) $) 12)) (-3077 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-409 (-566)) $) 25) (($ $ (-409 (-566))) NIL)))
-(((-46 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -4367 ((-112) |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|))) (-47 |#2| |#3|) (-1049) (-792)) (T -46))
+((-1453 (((-112) $) 12)) (-3152 (($ (-1 |#2| |#2|) $) 21)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ (-409 (-566)) $) 25) (($ $ (-409 (-566))) NIL)))
+(((-46 |#1| |#2| |#3|) (-10 -8 (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -1453 ((-112) |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|))) (-47 |#2| |#3|) (-1049) (-792)) (T -46))
NIL
-(-10 -8 (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -4367 ((-112) |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-3653 (($ $) 64 (|has| |#1| (-558)))) (-2152 (((-112) $) 66 (|has| |#1| (-558)))) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-3577 (($ $) 72)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-4367 (((-112) $) 74)) (-2519 (($ |#1| |#2|) 73)) (-3077 (($ (-1 |#1| |#1|) $) 75)) (-3545 (($ $) 77)) (-3557 ((|#1| $) 78)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2972 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-3992 ((|#2| $) 76)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558))) (($ |#1|) 59 (|has| |#1| (-172)))) (-2022 ((|#1| $ |#2|) 71)) (-3842 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 70 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
+(-10 -8 (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -1453 ((-112) |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-1968 (($ $) 64 (|has| |#1| (-558)))) (-2644 (((-112) $) 66 (|has| |#1| (-558)))) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-3645 (($ $) 72)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-1453 (((-112) $) 74)) (-2585 (($ |#1| |#2|) 73)) (-3152 (($ (-1 |#1| |#1|) $) 75)) (-3614 (($ $) 77)) (-3626 ((|#1| $) 78)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2997 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-2108 ((|#2| $) 76)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558))) (($ |#1|) 59 (|has| |#1| (-172)))) (-3756 ((|#1| $ |#2|) 71)) (-3226 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 70 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
(((-47 |#1| |#2|) (-140) (-1049) (-792)) (T -47))
-((-3557 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))) (-3545 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)))) (-3992 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)))) (-4367 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-112)))) (-2519 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)))) (-3577 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)))) (-2022 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))) (-3061 (*1 *1 *1 *2) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)) (-4 *2 (-365)))))
-(-13 (-1049) (-111 |t#1| |t#1|) (-10 -8 (-15 -3557 (|t#1| $)) (-15 -3545 ($ $)) (-15 -3992 (|t#2| $)) (-15 -3077 ($ (-1 |t#1| |t#1|) $)) (-15 -4367 ((-112) $)) (-15 -2519 ($ |t#1| |t#2|)) (-15 -3577 ($ $)) (-15 -2022 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-365)) (-15 -3061 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-6 (-172)) (-6 (-38 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-558)) (-6 (-558)) |%noBranch|) (IF (|has| |t#1| (-38 (-409 (-566)))) (-6 (-38 (-409 (-566)))) |%noBranch|)))
+((-3626 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))) (-3614 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)))) (-2108 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)))) (-1453 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-112)))) (-2585 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)))) (-3645 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)))) (-3756 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))) (-3062 (*1 *1 *1 *2) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)) (-4 *2 (-365)))))
+(-13 (-1049) (-111 |t#1| |t#1|) (-10 -8 (-15 -3626 (|t#1| $)) (-15 -3614 ($ $)) (-15 -2108 (|t#2| $)) (-15 -3152 ($ (-1 |t#1| |t#1|) $)) (-15 -1453 ((-112) $)) (-15 -2585 ($ |t#1| |t#2|)) (-15 -3645 ($ $)) (-15 -3756 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-365)) (-15 -3062 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-6 (-172)) (-6 (-38 |t#1|))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-558)) (-6 (-558)) |%noBranch|) (IF (|has| |t#1| (-38 (-409 (-566)))) (-6 (-38 (-409 (-566)))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-558)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-409 (-566)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) |has| |#1| (-38 (-409 (-566)))) ((-616 (-566)) . T) ((-616 |#1|) |has| |#1| (-172)) ((-616 $) |has| |#1| (-558)) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-291) |has| |#1| (-558)) ((-558) |has| |#1| (-558)) ((-646 #0#) |has| |#1| (-38 (-409 (-566)))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) |has| |#1| (-38 (-409 (-566)))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) |has| |#1| (-38 (-409 (-566)))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) |has| |#1| (-558)) ((-717 #0#) |has| |#1| (-38 (-409 (-566)))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) |has| |#1| (-558)) ((-726) . T) ((-1051 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1056 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-1515 (((-644 $) (-1171 $) (-1175)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-952 $)) NIL)) (-3265 (($ (-1171 $) (-1175)) NIL) (($ (-1171 $)) NIL) (($ (-952 $)) NIL)) (-3958 (((-112) $) 11)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-2248 (((-644 (-612 $)) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-3226 (($ $ (-295 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-2402 (($ $) NIL)) (-1561 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-3844 (((-644 $) (-1171 $) (-1175)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-952 $)) NIL)) (-2170 (($ (-1171 $) (-1175)) NIL) (($ (-1171 $)) NIL) (($ (-952 $)) NIL)) (-2977 (((-3 (-612 $) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL)) (-1756 (((-612 $) $) NIL) (((-566) $) NIL) (((-409 (-566)) $) NIL)) (-2926 (($ $ $) NIL)) (-1628 (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -1380 (-689 (-409 (-566)))) (|:| |vec| (-1264 (-409 (-566))))) (-689 $) (-1264 $)) NIL) (((-689 (-409 (-566))) (-689 $)) NIL)) (-4362 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-4334 (($ $) NIL) (($ (-644 $)) NIL)) (-3674 (((-644 (-114)) $) NIL)) (-2336 (((-114) (-114)) NIL)) (-2741 (((-112) $) 14)) (-2884 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-3001 (((-1124 (-566) (-612 $)) $) NIL)) (-3979 (($ $ (-566)) NIL)) (-1559 (((-1171 $) (-1171 $) (-612 $)) NIL) (((-1171 $) (-1171 $) (-644 (-612 $))) NIL) (($ $ (-612 $)) NIL) (($ $ (-644 (-612 $))) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2734 (((-1171 $) (-612 $)) NIL (|has| $ (-1049)))) (-3077 (($ (-1 $ $) (-612 $)) NIL)) (-2230 (((-3 (-612 $) "failed") $) NIL)) (-2184 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-2322 (((-644 (-612 $)) $) NIL)) (-3083 (($ (-114) $) NIL) (($ (-114) (-644 $)) NIL)) (-2181 (((-112) $ (-114)) NIL) (((-112) $ (-1175)) NIL)) (-2626 (($ $) NIL)) (-3173 (((-771) $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ (-644 $)) NIL) (($ $ $) NIL)) (-1981 (((-112) $ $) NIL) (((-112) $ (-1175)) NIL)) (-2391 (((-420 $) $) NIL)) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1693 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2070 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-1175) (-1 $ (-644 $))) NIL) (($ $ (-1175) (-1 $ $)) NIL) (($ $ (-644 (-114)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-114) (-1 $ (-644 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-1813 (((-771) $) NIL)) (-4386 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-644 $)) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2811 (($ $) NIL) (($ $ $) NIL)) (-2862 (($ $ (-771)) NIL) (($ $) NIL)) (-3013 (((-1124 (-566) (-612 $)) $) NIL)) (-2127 (($ $) NIL (|has| $ (-1049)))) (-3134 (((-381) $) NIL) (((-225) $) NIL) (((-169 (-381)) $) NIL)) (-2512 (((-862) $) NIL) (($ (-612 $)) NIL) (($ (-409 (-566))) NIL) (($ $) NIL) (($ (-566)) NIL) (($ (-1124 (-566) (-612 $))) NIL)) (-3795 (((-771)) NIL T CONST)) (-3236 (($ $) NIL) (($ (-644 $)) NIL)) (-2306 (((-112) (-114)) NIL)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-2485 (($) 7 T CONST)) (-2495 (($) 12 T CONST)) (-2840 (($ $ (-771)) NIL) (($ $) NIL)) (-2940 (((-112) $ $) 16)) (-3061 (($ $ $) NIL)) (-3047 (($ $ $) 15) (($ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-409 (-566))) NIL) (($ $ (-566)) NIL) (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL) (($ $ $) NIL) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL)))
-(((-48) (-13 (-303) (-27) (-1038 (-566)) (-1038 (-409 (-566))) (-639 (-566)) (-1022) (-639 (-409 (-566))) (-147) (-614 (-169 (-381))) (-233) (-10 -8 (-15 -2512 ($ (-1124 (-566) (-612 $)))) (-15 -3001 ((-1124 (-566) (-612 $)) $)) (-15 -3013 ((-1124 (-566) (-612 $)) $)) (-15 -4362 ($ $)) (-15 -1559 ((-1171 $) (-1171 $) (-612 $))) (-15 -1559 ((-1171 $) (-1171 $) (-644 (-612 $)))) (-15 -1559 ($ $ (-612 $))) (-15 -1559 ($ $ (-644 (-612 $))))))) (T -48))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1124 (-566) (-612 (-48)))) (-5 *1 (-48)))) (-3001 (*1 *2 *1) (-12 (-5 *2 (-1124 (-566) (-612 (-48)))) (-5 *1 (-48)))) (-3013 (*1 *2 *1) (-12 (-5 *2 (-1124 (-566) (-612 (-48)))) (-5 *1 (-48)))) (-4362 (*1 *1 *1) (-5 *1 (-48))) (-1559 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 (-48))) (-5 *3 (-612 (-48))) (-5 *1 (-48)))) (-1559 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 (-48))) (-5 *3 (-644 (-612 (-48)))) (-5 *1 (-48)))) (-1559 (*1 *1 *1 *2) (-12 (-5 *2 (-612 (-48))) (-5 *1 (-48)))) (-1559 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-612 (-48)))) (-5 *1 (-48)))))
-(-13 (-303) (-27) (-1038 (-566)) (-1038 (-409 (-566))) (-639 (-566)) (-1022) (-639 (-409 (-566))) (-147) (-614 (-169 (-381))) (-233) (-10 -8 (-15 -2512 ($ (-1124 (-566) (-612 $)))) (-15 -3001 ((-1124 (-566) (-612 $)) $)) (-15 -3013 ((-1124 (-566) (-612 $)) $)) (-15 -4362 ($ $)) (-15 -1559 ((-1171 $) (-1171 $) (-612 $))) (-15 -1559 ((-1171 $) (-1171 $) (-644 (-612 $)))) (-15 -1559 ($ $ (-612 $))) (-15 -1559 ($ $ (-644 (-612 $))))))
-((-2985 (((-112) $ $) NIL)) (-4135 (((-644 (-508)) $) 17)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 7)) (-2639 (((-1180) $) 18)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-49) (-13 (-1099) (-10 -8 (-15 -4135 ((-644 (-508)) $)) (-15 -2639 ((-1180) $))))) (T -49))
-((-4135 (*1 *2 *1) (-12 (-5 *2 (-644 (-508))) (-5 *1 (-49)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-1180)) (-5 *1 (-49)))))
-(-13 (-1099) (-10 -8 (-15 -4135 ((-644 (-508)) $)) (-15 -2639 ((-1180) $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 87)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-4353 (((-112) $) 30)) (-2977 (((-3 |#1| "failed") $) 33)) (-1756 ((|#1| $) 34)) (-3577 (($ $) 40)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3557 ((|#1| $) 31)) (-2706 (($ $) 76)) (-2878 (((-1157) $) NIL)) (-3823 (((-112) $) 43)) (-4033 (((-1119) $) NIL)) (-4067 (($ (-771)) 74)) (-3613 (($ (-644 (-566))) 75)) (-3992 (((-771) $) 44)) (-2512 (((-862) $) 93) (($ (-566)) 71) (($ |#1|) 69)) (-2022 ((|#1| $ $) 28)) (-3795 (((-771)) 73 T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 45 T CONST)) (-2495 (($) 17 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 66)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 67) (($ |#1| $) 60)))
-(((-50 |#1| |#2|) (-13 (-620 |#1|) (-1038 |#1|) (-10 -8 (-15 -3557 (|#1| $)) (-15 -2706 ($ $)) (-15 -3577 ($ $)) (-15 -2022 (|#1| $ $)) (-15 -4067 ($ (-771))) (-15 -3613 ($ (-644 (-566)))) (-15 -3823 ((-112) $)) (-15 -4353 ((-112) $)) (-15 -3992 ((-771) $)) (-15 -3077 ($ (-1 |#1| |#1|) $)))) (-1049) (-644 (-1175))) (T -50))
-((-3557 (*1 *2 *1) (-12 (-4 *2 (-1049)) (-5 *1 (-50 *2 *3)) (-14 *3 (-644 (-1175))))) (-2706 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1049)) (-14 *3 (-644 (-1175))))) (-3577 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1049)) (-14 *3 (-644 (-1175))))) (-2022 (*1 *2 *1 *1) (-12 (-4 *2 (-1049)) (-5 *1 (-50 *2 *3)) (-14 *3 (-644 (-1175))))) (-4067 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049)) (-14 *4 (-644 (-1175))))) (-3613 (*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049)) (-14 *4 (-644 (-1175))))) (-3823 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049)) (-14 *4 (-644 (-1175))))) (-4353 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049)) (-14 *4 (-644 (-1175))))) (-3992 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049)) (-14 *4 (-644 (-1175))))) (-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-50 *3 *4)) (-14 *4 (-644 (-1175))))))
-(-13 (-620 |#1|) (-1038 |#1|) (-10 -8 (-15 -3557 (|#1| $)) (-15 -2706 ($ $)) (-15 -3577 ($ $)) (-15 -2022 (|#1| $ $)) (-15 -4067 ($ (-771))) (-15 -3613 ($ (-644 (-566)))) (-15 -3823 ((-112) $)) (-15 -4353 ((-112) $)) (-15 -3992 ((-771) $)) (-15 -3077 ($ (-1 |#1| |#1|) $))))
-((-4353 (((-112) (-52)) 13)) (-2977 (((-3 |#1| "failed") (-52)) 21)) (-1756 ((|#1| (-52)) 22)) (-2512 (((-52) |#1|) 18)))
-(((-51 |#1|) (-10 -7 (-15 -2512 ((-52) |#1|)) (-15 -2977 ((-3 |#1| "failed") (-52))) (-15 -4353 ((-112) (-52))) (-15 -1756 (|#1| (-52)))) (-1214)) (T -51))
-((-1756 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1214)))) (-4353 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1214)))) (-2977 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1214)))) (-2512 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1214)))))
-(-10 -7 (-15 -2512 ((-52) |#1|)) (-15 -2977 ((-3 |#1| "failed") (-52))) (-15 -4353 ((-112) (-52))) (-15 -1756 (|#1| (-52))))
-((-2985 (((-112) $ $) NIL)) (-1475 (((-1157) (-112)) 26)) (-2021 (((-862) $) 25)) (-2572 (((-774) $) 13)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4306 (((-862) $) 17)) (-3292 (((-1103) $) 15)) (-2512 (((-862) $) 35)) (-3122 (((-112) $ $) NIL)) (-3664 (($ (-1103) (-774)) 36)) (-2940 (((-112) $ $) 19)))
-(((-52) (-13 (-1099) (-10 -8 (-15 -3664 ($ (-1103) (-774))) (-15 -4306 ((-862) $)) (-15 -2021 ((-862) $)) (-15 -3292 ((-1103) $)) (-15 -2572 ((-774) $)) (-15 -1475 ((-1157) (-112)))))) (T -52))
-((-3664 (*1 *1 *2 *3) (-12 (-5 *2 (-1103)) (-5 *3 (-774)) (-5 *1 (-52)))) (-4306 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-52)))) (-2021 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-52)))) (-3292 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-52)))) (-2572 (*1 *2 *1) (-12 (-5 *2 (-774)) (-5 *1 (-52)))) (-1475 (*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1157)) (-5 *1 (-52)))))
-(-13 (-1099) (-10 -8 (-15 -3664 ($ (-1103) (-774))) (-15 -4306 ((-862) $)) (-15 -2021 ((-862) $)) (-15 -3292 ((-1103) $)) (-15 -2572 ((-774) $)) (-15 -1475 ((-1157) (-112)))))
-((-4002 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 19)))
-(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -4002 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-1049) (-648 |#1|) (-852 |#1|)) (T -53))
-((-4002 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-648 *5)) (-4 *5 (-1049)) (-5 *1 (-53 *5 *2 *3)) (-4 *3 (-852 *5)))))
-(-10 -7 (-15 -4002 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
-((-3233 ((|#3| |#3| (-644 (-1175))) 46)) (-1910 ((|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3| (-921)) 32) ((|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3|) 31)))
-(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -1910 (|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3|)) (-15 -1910 (|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3| (-921))) (-15 -3233 (|#3| |#3| (-644 (-1175))))) (-1099) (-13 (-1049) (-886 |#1|) (-614 (-892 |#1|))) (-13 (-432 |#2|) (-886 |#1|) (-614 (-892 |#1|)))) (T -54))
-((-3233 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-54 *4 *5 *2)) (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))))) (-1910 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-644 (-1075 *5 *6 *2))) (-5 *4 (-921)) (-4 *5 (-1099)) (-4 *6 (-13 (-1049) (-886 *5) (-614 (-892 *5)))) (-4 *2 (-13 (-432 *6) (-886 *5) (-614 (-892 *5)))) (-5 *1 (-54 *5 *6 *2)))) (-1910 (*1 *2 *3 *2) (-12 (-5 *3 (-644 (-1075 *4 *5 *2))) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-54 *4 *5 *2)))))
-(-10 -7 (-15 -1910 (|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3|)) (-15 -1910 (|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3| (-921))) (-15 -3233 (|#3| |#3| (-644 (-1175)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 14)) (-2977 (((-3 (-771) "failed") $) 34)) (-1756 (((-771) $) NIL)) (-2741 (((-112) $) 16)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) 18)) (-2512 (((-862) $) 23) (($ (-771)) 29)) (-3122 (((-112) $ $) NIL)) (-3636 (($) 11 T CONST)) (-2940 (((-112) $ $) 20)))
-(((-55) (-13 (-1099) (-1038 (-771)) (-10 -8 (-15 -3636 ($) -1655) (-15 -3958 ((-112) $)) (-15 -2741 ((-112) $))))) (T -55))
-((-3636 (*1 *1) (-5 *1 (-55))) (-3958 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))) (-2741 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))))
-(-13 (-1099) (-1038 (-771)) (-10 -8 (-15 -3636 ($) -1655) (-15 -3958 ((-112) $)) (-15 -2741 ((-112) $))))
-((-3081 (((-112) $ (-771)) 27)) (-1878 (($ $ (-566) |#3|) 66)) (-4158 (($ $ (-566) |#4|) 70)) (-4134 ((|#3| $ (-566)) 79)) (-3372 (((-644 |#2|) $) 47)) (-2744 (((-112) $ (-771)) 31)) (-1927 (((-112) |#2| $) 74)) (-1323 (($ (-1 |#2| |#2|) $) 55)) (-3077 (($ (-1 |#2| |#2|) $) 54) (($ (-1 |#2| |#2| |#2|) $ $) 58) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 62)) (-3882 (((-112) $ (-771)) 29)) (-1720 (($ $ |#2|) 52)) (-2822 (((-112) (-1 (-112) |#2|) $) 21)) (-4386 ((|#2| $ (-566) (-566)) NIL) ((|#2| $ (-566) (-566) |#2|) 35)) (-4044 (((-771) (-1 (-112) |#2|) $) 41) (((-771) |#2| $) 76)) (-3895 (($ $) 51)) (-4074 ((|#4| $ (-566)) 82)) (-2512 (((-862) $) 88)) (-3427 (((-112) (-1 (-112) |#2|) $) 20)) (-2940 (((-112) $ $) 73)) (-2997 (((-771) $) 32)))
-(((-56 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2512 ((-862) |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -3077 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1323 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4158 (|#1| |#1| (-566) |#4|)) (-15 -1878 (|#1| |#1| (-566) |#3|)) (-15 -3372 ((-644 |#2|) |#1|)) (-15 -4074 (|#4| |#1| (-566))) (-15 -4134 (|#3| |#1| (-566))) (-15 -4386 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566) (-566))) (-15 -1720 (|#1| |#1| |#2|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -1927 ((-112) |#2| |#1|)) (-15 -4044 ((-771) |#2| |#1|)) (-15 -4044 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -2822 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2997 ((-771) |#1|)) (-15 -3081 ((-112) |#1| (-771))) (-15 -2744 ((-112) |#1| (-771))) (-15 -3882 ((-112) |#1| (-771))) (-15 -3895 (|#1| |#1|))) (-57 |#2| |#3| |#4|) (-1214) (-375 |#2|) (-375 |#2|)) (T -56))
-NIL
-(-10 -8 (-15 -2512 ((-862) |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -3077 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1323 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4158 (|#1| |#1| (-566) |#4|)) (-15 -1878 (|#1| |#1| (-566) |#3|)) (-15 -3372 ((-644 |#2|) |#1|)) (-15 -4074 (|#4| |#1| (-566))) (-15 -4134 (|#3| |#1| (-566))) (-15 -4386 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566) (-566))) (-15 -1720 (|#1| |#1| |#2|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -1927 ((-112) |#2| |#1|)) (-15 -4044 ((-771) |#2| |#1|)) (-15 -4044 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -2822 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2997 ((-771) |#1|)) (-15 -3081 ((-112) |#1| (-771))) (-15 -2744 ((-112) |#1| (-771))) (-15 -3882 ((-112) |#1| (-771))) (-15 -3895 (|#1| |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) 8)) (-3874 ((|#1| $ (-566) (-566) |#1|) 45)) (-1878 (($ $ (-566) |#2|) 43)) (-4158 (($ $ (-566) |#3|) 42)) (-2342 (($) 7 T CONST)) (-4134 ((|#2| $ (-566)) 47)) (-1332 ((|#1| $ (-566) (-566) |#1|) 44)) (-3137 ((|#1| $ (-566) (-566)) 49)) (-3372 (((-644 |#1|) $) 31)) (-2042 (((-771) $) 52)) (-4257 (($ (-771) (-771) |#1|) 58)) (-2053 (((-771) $) 51)) (-2744 (((-112) $ (-771)) 9)) (-3266 (((-566) $) 56)) (-1905 (((-566) $) 54)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-4385 (((-566) $) 55)) (-4106 (((-566) $) 53)) (-1323 (($ (-1 |#1| |#1|) $) 35)) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-1720 (($ $ |#1|) 57)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ (-566) (-566)) 50) ((|#1| $ (-566) (-566) |#1|) 48)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-4074 ((|#3| $ (-566)) 46)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3508 (((-644 $) (-1171 $) (-1175)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-952 $)) NIL)) (-2601 (($ (-1171 $) (-1175)) NIL) (($ (-1171 $)) NIL) (($ (-952 $)) NIL)) (-3015 (((-112) $) 11)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-2327 (((-644 (-612 $)) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2463 (($ $ (-295 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2484 (($ $) NIL)) (-2738 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-3246 (((-644 $) (-1171 $) (-1175)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-952 $)) NIL)) (-2778 (($ (-1171 $) (-1175)) NIL) (($ (-1171 $)) NIL) (($ (-952 $)) NIL)) (-3066 (((-3 (-612 $) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL)) (-1867 (((-612 $) $) NIL) (((-566) $) NIL) (((-409 (-566)) $) NIL)) (-2949 (($ $ $) NIL)) (-2210 (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -4193 (-689 (-409 (-566)))) (|:| |vec| (-1264 (-409 (-566))))) (-689 $) (-1264 $)) NIL) (((-689 (-409 (-566))) (-689 $)) NIL)) (-1580 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-2388 (($ $) NIL) (($ (-644 $)) NIL)) (-2162 (((-644 (-114)) $) NIL)) (-2415 (((-114) (-114)) NIL)) (-3466 (((-112) $) 14)) (-2469 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-3088 (((-1124 (-566) (-612 $)) $) NIL)) (-1986 (($ $ (-566)) NIL)) (-2719 (((-1171 $) (-1171 $) (-612 $)) NIL) (((-1171 $) (-1171 $) (-644 (-612 $))) NIL) (($ $ (-612 $)) NIL) (($ $ (-644 (-612 $))) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3392 (((-1171 $) (-612 $)) NIL (|has| $ (-1049)))) (-3152 (($ (-1 $ $) (-612 $)) NIL)) (-2116 (((-3 (-612 $) "failed") $) NIL)) (-2197 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-2404 (((-644 (-612 $)) $) NIL)) (-3159 (($ (-114) $) NIL) (($ (-114) (-644 $)) NIL)) (-2885 (((-112) $ (-114)) NIL) (((-112) $ (-1175)) NIL)) (-3584 (($ $) NIL)) (-3906 (((-771) $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ (-644 $)) NIL) (($ $ $) NIL)) (-1471 (((-112) $ $) NIL) (((-112) $ (-1175)) NIL)) (-2473 (((-420 $) $) NIL)) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1630 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2095 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-1175) (-1 $ (-644 $))) NIL) (($ $ (-1175) (-1 $ $)) NIL) (($ $ (-644 (-114)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-114) (-1 $ (-644 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-3470 (((-771) $) NIL)) (-4393 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-644 $)) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2940 (($ $) NIL) (($ $ $) NIL)) (-2578 (($ $ (-771)) NIL) (($ $) NIL)) (-3100 (((-1124 (-566) (-612 $)) $) NIL)) (-3601 (($ $) NIL (|has| $ (-1049)))) (-3204 (((-381) $) NIL) (((-225) $) NIL) (((-169 (-381)) $) NIL)) (-3780 (((-862) $) NIL) (($ (-612 $)) NIL) (($ (-409 (-566))) NIL) (($ $) NIL) (($ (-566)) NIL) (($ (-1124 (-566) (-612 $))) NIL)) (-3996 (((-771)) NIL T CONST)) (-1442 (($ $) NIL) (($ (-644 $)) NIL)) (-1643 (((-112) (-114)) NIL)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-2493 (($) 7 T CONST)) (-4333 (($) 12 T CONST)) (-2876 (($ $ (-771)) NIL) (($ $) NIL)) (-2950 (((-112) $ $) 16)) (-3062 (($ $ $) NIL)) (-3051 (($ $ $) 15) (($ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-409 (-566))) NIL) (($ $ (-566)) NIL) (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL) (($ $ $) NIL) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL)))
+(((-48) (-13 (-303) (-27) (-1038 (-566)) (-1038 (-409 (-566))) (-639 (-566)) (-1022) (-639 (-409 (-566))) (-147) (-614 (-169 (-381))) (-233) (-10 -8 (-15 -3780 ($ (-1124 (-566) (-612 $)))) (-15 -3088 ((-1124 (-566) (-612 $)) $)) (-15 -3100 ((-1124 (-566) (-612 $)) $)) (-15 -1580 ($ $)) (-15 -2719 ((-1171 $) (-1171 $) (-612 $))) (-15 -2719 ((-1171 $) (-1171 $) (-644 (-612 $)))) (-15 -2719 ($ $ (-612 $))) (-15 -2719 ($ $ (-644 (-612 $))))))) (T -48))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1124 (-566) (-612 (-48)))) (-5 *1 (-48)))) (-3088 (*1 *2 *1) (-12 (-5 *2 (-1124 (-566) (-612 (-48)))) (-5 *1 (-48)))) (-3100 (*1 *2 *1) (-12 (-5 *2 (-1124 (-566) (-612 (-48)))) (-5 *1 (-48)))) (-1580 (*1 *1 *1) (-5 *1 (-48))) (-2719 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 (-48))) (-5 *3 (-612 (-48))) (-5 *1 (-48)))) (-2719 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 (-48))) (-5 *3 (-644 (-612 (-48)))) (-5 *1 (-48)))) (-2719 (*1 *1 *1 *2) (-12 (-5 *2 (-612 (-48))) (-5 *1 (-48)))) (-2719 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-612 (-48)))) (-5 *1 (-48)))))
+(-13 (-303) (-27) (-1038 (-566)) (-1038 (-409 (-566))) (-639 (-566)) (-1022) (-639 (-409 (-566))) (-147) (-614 (-169 (-381))) (-233) (-10 -8 (-15 -3780 ($ (-1124 (-566) (-612 $)))) (-15 -3088 ((-1124 (-566) (-612 $)) $)) (-15 -3100 ((-1124 (-566) (-612 $)) $)) (-15 -1580 ($ $)) (-15 -2719 ((-1171 $) (-1171 $) (-612 $))) (-15 -2719 ((-1171 $) (-1171 $) (-644 (-612 $)))) (-15 -2719 ($ $ (-612 $))) (-15 -2719 ($ $ (-644 (-612 $))))))
+((-3009 (((-112) $ $) NIL)) (-1324 (((-644 (-508)) $) 17)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 7)) (-1398 (((-1180) $) 18)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-49) (-13 (-1099) (-10 -8 (-15 -1324 ((-644 (-508)) $)) (-15 -1398 ((-1180) $))))) (T -49))
+((-1324 (*1 *2 *1) (-12 (-5 *2 (-644 (-508))) (-5 *1 (-49)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-1180)) (-5 *1 (-49)))))
+(-13 (-1099) (-10 -8 (-15 -1324 ((-644 (-508)) $)) (-15 -1398 ((-1180) $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 87)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-1323 (((-112) $) 30)) (-3066 (((-3 |#1| "failed") $) 33)) (-1867 ((|#1| $) 34)) (-3645 (($ $) 40)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3626 ((|#1| $) 31)) (-3135 (($ $) 76)) (-2402 (((-1157) $) NIL)) (-4235 (((-112) $) 43)) (-4056 (((-1119) $) NIL)) (-4152 (($ (-771)) 74)) (-4337 (($ (-644 (-566))) 75)) (-2108 (((-771) $) 44)) (-3780 (((-862) $) 93) (($ (-566)) 71) (($ |#1|) 69)) (-3756 ((|#1| $ $) 28)) (-3996 (((-771)) 73 T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 45 T CONST)) (-4333 (($) 17 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 66)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 67) (($ |#1| $) 60)))
+(((-50 |#1| |#2|) (-13 (-620 |#1|) (-1038 |#1|) (-10 -8 (-15 -3626 (|#1| $)) (-15 -3135 ($ $)) (-15 -3645 ($ $)) (-15 -3756 (|#1| $ $)) (-15 -4152 ($ (-771))) (-15 -4337 ($ (-644 (-566)))) (-15 -4235 ((-112) $)) (-15 -1323 ((-112) $)) (-15 -2108 ((-771) $)) (-15 -3152 ($ (-1 |#1| |#1|) $)))) (-1049) (-644 (-1175))) (T -50))
+((-3626 (*1 *2 *1) (-12 (-4 *2 (-1049)) (-5 *1 (-50 *2 *3)) (-14 *3 (-644 (-1175))))) (-3135 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1049)) (-14 *3 (-644 (-1175))))) (-3645 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1049)) (-14 *3 (-644 (-1175))))) (-3756 (*1 *2 *1 *1) (-12 (-4 *2 (-1049)) (-5 *1 (-50 *2 *3)) (-14 *3 (-644 (-1175))))) (-4152 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049)) (-14 *4 (-644 (-1175))))) (-4337 (*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049)) (-14 *4 (-644 (-1175))))) (-4235 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049)) (-14 *4 (-644 (-1175))))) (-1323 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049)) (-14 *4 (-644 (-1175))))) (-2108 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049)) (-14 *4 (-644 (-1175))))) (-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-50 *3 *4)) (-14 *4 (-644 (-1175))))))
+(-13 (-620 |#1|) (-1038 |#1|) (-10 -8 (-15 -3626 (|#1| $)) (-15 -3135 ($ $)) (-15 -3645 ($ $)) (-15 -3756 (|#1| $ $)) (-15 -4152 ($ (-771))) (-15 -4337 ($ (-644 (-566)))) (-15 -4235 ((-112) $)) (-15 -1323 ((-112) $)) (-15 -2108 ((-771) $)) (-15 -3152 ($ (-1 |#1| |#1|) $))))
+((-1323 (((-112) (-52)) 18)) (-3066 (((-3 |#1| "failed") (-52)) 20)) (-1867 ((|#1| (-52)) 21)) (-3780 (((-52) |#1|) 14)))
+(((-51 |#1|) (-10 -7 (-15 -3780 ((-52) |#1|)) (-15 -3066 ((-3 |#1| "failed") (-52))) (-15 -1323 ((-112) (-52))) (-15 -1867 (|#1| (-52)))) (-1214)) (T -51))
+((-1867 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1214)))) (-1323 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1214)))) (-3066 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1214)))) (-3780 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1214)))))
+(-10 -7 (-15 -3780 ((-52) |#1|)) (-15 -3066 ((-3 |#1| "failed") (-52))) (-15 -1323 ((-112) (-52))) (-15 -1867 (|#1| (-52))))
+((-3009 (((-112) $ $) NIL)) (-2603 (((-774) $) 8)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3317 (((-1103) $) 10)) (-3780 (((-862) $) 15)) (-3801 (((-112) $ $) NIL)) (-1901 (($ (-1103) (-774)) 16)) (-2950 (((-112) $ $) 12)))
+(((-52) (-13 (-1099) (-10 -8 (-15 -1901 ($ (-1103) (-774))) (-15 -3317 ((-1103) $)) (-15 -2603 ((-774) $))))) (T -52))
+((-1901 (*1 *1 *2 *3) (-12 (-5 *2 (-1103)) (-5 *3 (-774)) (-5 *1 (-52)))) (-3317 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-52)))) (-2603 (*1 *2 *1) (-12 (-5 *2 (-774)) (-5 *1 (-52)))))
+(-13 (-1099) (-10 -8 (-15 -1901 ($ (-1103) (-774))) (-15 -3317 ((-1103) $)) (-15 -2603 ((-774) $))))
+((-4046 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 19)))
+(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -4046 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-1049) (-648 |#1|) (-852 |#1|)) (T -53))
+((-4046 (*1 *2 *3 *4 *2) (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-648 *5)) (-4 *5 (-1049)) (-5 *1 (-53 *5 *2 *3)) (-4 *3 (-852 *5)))))
+(-10 -7 (-15 -4046 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
+((-3518 ((|#3| |#3| (-644 (-1175))) 46)) (-2021 ((|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3| (-921)) 32) ((|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3|) 31)))
+(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -2021 (|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3|)) (-15 -2021 (|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3| (-921))) (-15 -3518 (|#3| |#3| (-644 (-1175))))) (-1099) (-13 (-1049) (-886 |#1|) (-614 (-892 |#1|))) (-13 (-432 |#2|) (-886 |#1|) (-614 (-892 |#1|)))) (T -54))
+((-3518 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-54 *4 *5 *2)) (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))))) (-2021 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-644 (-1075 *5 *6 *2))) (-5 *4 (-921)) (-4 *5 (-1099)) (-4 *6 (-13 (-1049) (-886 *5) (-614 (-892 *5)))) (-4 *2 (-13 (-432 *6) (-886 *5) (-614 (-892 *5)))) (-5 *1 (-54 *5 *6 *2)))) (-2021 (*1 *2 *3 *2) (-12 (-5 *3 (-644 (-1075 *4 *5 *2))) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-54 *4 *5 *2)))))
+(-10 -7 (-15 -2021 (|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3|)) (-15 -2021 (|#3| (-644 (-1075 |#1| |#2| |#3|)) |#3| (-921))) (-15 -3518 (|#3| |#3| (-644 (-1175)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 14)) (-3066 (((-3 (-771) "failed") $) 34)) (-1867 (((-771) $) NIL)) (-3466 (((-112) $) 16)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) 18)) (-3780 (((-862) $) 23) (($ (-771)) 29)) (-3801 (((-112) $ $) NIL)) (-3017 (($) 11 T CONST)) (-2950 (((-112) $ $) 20)))
+(((-55) (-13 (-1099) (-1038 (-771)) (-10 -8 (-15 -3017 ($) -2460) (-15 -3015 ((-112) $)) (-15 -3466 ((-112) $))))) (T -55))
+((-3017 (*1 *1) (-5 *1 (-55))) (-3015 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))) (-3466 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))))
+(-13 (-1099) (-1038 (-771)) (-10 -8 (-15 -3017 ($) -2460) (-15 -3015 ((-112) $)) (-15 -3466 ((-112) $))))
+((-1574 (((-112) $ (-771)) 27)) (-2890 (($ $ (-566) |#3|) 66)) (-4293 (($ $ (-566) |#4|) 70)) (-4104 ((|#3| $ (-566)) 79)) (-3799 (((-644 |#2|) $) 47)) (-3501 (((-112) $ (-771)) 31)) (-2183 (((-112) |#2| $) 74)) (-3117 (($ (-1 |#2| |#2|) $) 55)) (-3152 (($ (-1 |#2| |#2|) $) 54) (($ (-1 |#2| |#2| |#2|) $ $) 58) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 62)) (-3582 (((-112) $ (-771)) 29)) (-3750 (($ $ |#2|) 52)) (-3044 (((-112) (-1 (-112) |#2|) $) 21)) (-4393 ((|#2| $ (-566) (-566)) NIL) ((|#2| $ (-566) (-566) |#2|) 35)) (-4067 (((-771) (-1 (-112) |#2|) $) 41) (((-771) |#2| $) 76)) (-3940 (($ $) 51)) (-1621 ((|#4| $ (-566)) 82)) (-3780 (((-862) $) 88)) (-1583 (((-112) (-1 (-112) |#2|) $) 20)) (-2950 (((-112) $ $) 73)) (-3020 (((-771) $) 32)))
+(((-56 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3780 ((-862) |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -3152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3117 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4293 (|#1| |#1| (-566) |#4|)) (-15 -2890 (|#1| |#1| (-566) |#3|)) (-15 -3799 ((-644 |#2|) |#1|)) (-15 -1621 (|#4| |#1| (-566))) (-15 -4104 (|#3| |#1| (-566))) (-15 -4393 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566) (-566))) (-15 -3750 (|#1| |#1| |#2|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -2183 ((-112) |#2| |#1|)) (-15 -4067 ((-771) |#2| |#1|)) (-15 -4067 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -3044 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3020 ((-771) |#1|)) (-15 -1574 ((-112) |#1| (-771))) (-15 -3501 ((-112) |#1| (-771))) (-15 -3582 ((-112) |#1| (-771))) (-15 -3940 (|#1| |#1|))) (-57 |#2| |#3| |#4|) (-1214) (-375 |#2|) (-375 |#2|)) (T -56))
+NIL
+(-10 -8 (-15 -3780 ((-862) |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -3152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3117 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4293 (|#1| |#1| (-566) |#4|)) (-15 -2890 (|#1| |#1| (-566) |#3|)) (-15 -3799 ((-644 |#2|) |#1|)) (-15 -1621 (|#4| |#1| (-566))) (-15 -4104 (|#3| |#1| (-566))) (-15 -4393 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566) (-566))) (-15 -3750 (|#1| |#1| |#2|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -2183 ((-112) |#2| |#1|)) (-15 -4067 ((-771) |#2| |#1|)) (-15 -4067 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -3044 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3020 ((-771) |#1|)) (-15 -1574 ((-112) |#1| (-771))) (-15 -3501 ((-112) |#1| (-771))) (-15 -3582 ((-112) |#1| (-771))) (-15 -3940 (|#1| |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) 8)) (-3916 ((|#1| $ (-566) (-566) |#1|) 45)) (-2890 (($ $ (-566) |#2|) 43)) (-4293 (($ $ (-566) |#3|) 42)) (-3877 (($) 7 T CONST)) (-4104 ((|#2| $ (-566)) 47)) (-3128 ((|#1| $ (-566) (-566) |#1|) 44)) (-3059 ((|#1| $ (-566) (-566)) 49)) (-3799 (((-644 |#1|) $) 31)) (-4301 (((-771) $) 52)) (-4278 (($ (-771) (-771) |#1|) 58)) (-4313 (((-771) $) 51)) (-3501 (((-112) $ (-771)) 9)) (-2615 (((-566) $) 56)) (-1966 (((-566) $) 54)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1653 (((-566) $) 55)) (-3807 (((-566) $) 53)) (-3117 (($ (-1 |#1| |#1|) $) 35)) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3750 (($ $ |#1|) 57)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ (-566) (-566)) 50) ((|#1| $ (-566) (-566) |#1|) 48)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-1621 ((|#3| $ (-566)) 46)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-57 |#1| |#2| |#3|) (-140) (-1214) (-375 |t#1|) (-375 |t#1|)) (T -57))
-((-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-4257 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-771)) (-4 *3 (-1214)) (-4 *1 (-57 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-1720 (*1 *1 *1 *2) (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1214)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-3266 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-566)))) (-4385 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-566)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-566)))) (-4106 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-566)))) (-2042 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-771)))) (-2053 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-771)))) (-4386 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-1214)))) (-3137 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-1214)))) (-4386 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1214)) (-4 *4 (-375 *2)) (-4 *5 (-375 *2)))) (-4134 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1214)) (-4 *5 (-375 *4)) (-4 *2 (-375 *4)))) (-4074 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1214)) (-4 *5 (-375 *4)) (-4 *2 (-375 *4)))) (-3372 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-644 *3)))) (-3874 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1214)) (-4 *4 (-375 *2)) (-4 *5 (-375 *2)))) (-1332 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1214)) (-4 *4 (-375 *2)) (-4 *5 (-375 *2)))) (-1878 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-566)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1214)) (-4 *3 (-375 *4)) (-4 *5 (-375 *4)))) (-4158 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-566)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1214)) (-4 *5 (-375 *4)) (-4 *3 (-375 *4)))) (-1323 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3077 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3077 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))))
-(-13 (-491 |t#1|) (-10 -8 (-6 -4418) (-6 -4417) (-15 -4257 ($ (-771) (-771) |t#1|)) (-15 -1720 ($ $ |t#1|)) (-15 -3266 ((-566) $)) (-15 -4385 ((-566) $)) (-15 -1905 ((-566) $)) (-15 -4106 ((-566) $)) (-15 -2042 ((-771) $)) (-15 -2053 ((-771) $)) (-15 -4386 (|t#1| $ (-566) (-566))) (-15 -3137 (|t#1| $ (-566) (-566))) (-15 -4386 (|t#1| $ (-566) (-566) |t#1|)) (-15 -4134 (|t#2| $ (-566))) (-15 -4074 (|t#3| $ (-566))) (-15 -3372 ((-644 |t#1|) $)) (-15 -3874 (|t#1| $ (-566) (-566) |t#1|)) (-15 -1332 (|t#1| $ (-566) (-566) |t#1|)) (-15 -1878 ($ $ (-566) |t#2|)) (-15 -4158 ($ $ (-566) |t#3|)) (-15 -3077 ($ (-1 |t#1| |t#1|) $)) (-15 -1323 ($ (-1 |t#1| |t#1|) $)) (-15 -3077 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -3077 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
+((-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-4278 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-771)) (-4 *3 (-1214)) (-4 *1 (-57 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3750 (*1 *1 *1 *2) (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1214)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-2615 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-566)))) (-1653 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-566)))) (-1966 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-566)))) (-3807 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-566)))) (-4301 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-771)))) (-4313 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-771)))) (-4393 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-1214)))) (-3059 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-1214)))) (-4393 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1214)) (-4 *4 (-375 *2)) (-4 *5 (-375 *2)))) (-4104 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1214)) (-4 *5 (-375 *4)) (-4 *2 (-375 *4)))) (-1621 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1214)) (-4 *5 (-375 *4)) (-4 *2 (-375 *4)))) (-3799 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-644 *3)))) (-3916 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1214)) (-4 *4 (-375 *2)) (-4 *5 (-375 *2)))) (-3128 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1214)) (-4 *4 (-375 *2)) (-4 *5 (-375 *2)))) (-2890 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-566)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1214)) (-4 *3 (-375 *4)) (-4 *5 (-375 *4)))) (-4293 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-566)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1214)) (-4 *5 (-375 *4)) (-4 *3 (-375 *4)))) (-3117 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3152 (*1 *1 *2 *1 *1 *3) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))))
+(-13 (-491 |t#1|) (-10 -8 (-6 -4415) (-6 -4414) (-15 -4278 ($ (-771) (-771) |t#1|)) (-15 -3750 ($ $ |t#1|)) (-15 -2615 ((-566) $)) (-15 -1653 ((-566) $)) (-15 -1966 ((-566) $)) (-15 -3807 ((-566) $)) (-15 -4301 ((-771) $)) (-15 -4313 ((-771) $)) (-15 -4393 (|t#1| $ (-566) (-566))) (-15 -3059 (|t#1| $ (-566) (-566))) (-15 -4393 (|t#1| $ (-566) (-566) |t#1|)) (-15 -4104 (|t#2| $ (-566))) (-15 -1621 (|t#3| $ (-566))) (-15 -3799 ((-644 |t#1|) $)) (-15 -3916 (|t#1| $ (-566) (-566) |t#1|)) (-15 -3128 (|t#1| $ (-566) (-566) |t#1|)) (-15 -2890 ($ $ (-566) |t#2|)) (-15 -4293 ($ $ (-566) |t#3|)) (-15 -3152 ($ (-1 |t#1| |t#1|) $)) (-15 -3117 ($ (-1 |t#1| |t#1|) $)) (-15 -3152 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -3152 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-2403 (((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 16)) (-4362 ((|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 18)) (-3077 (((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)) 13)))
-(((-58 |#1| |#2|) (-10 -7 (-15 -2403 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -4362 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3077 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)))) (-1214) (-1214)) (T -58))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-59 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-59 *6)) (-5 *1 (-58 *5 *6)))) (-4362 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-58 *5 *2)))) (-2403 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1214)) (-4 *5 (-1214)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5)))))
-(-10 -7 (-15 -2403 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -4362 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3077 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) NIL)) (-3968 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-4114 (($ (-644 |#1|)) 11) (($ (-771) |#1|) 14)) (-4257 (($ (-771) |#1|) 13)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4062 ((|#1| $) NIL (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 10)) (-3704 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-59 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -4114 ($ (-644 |#1|))) (-15 -4114 ($ (-771) |#1|)))) (-1214)) (T -59))
-((-4114 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-59 *3)))) (-4114 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *1 (-59 *3)) (-4 *3 (-1214)))))
-(-13 (-19 |#1|) (-10 -8 (-15 -4114 ($ (-644 |#1|))) (-15 -4114 ($ (-771) |#1|))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-566) (-566) |#1|) NIL)) (-1878 (($ $ (-566) (-59 |#1|)) NIL)) (-4158 (($ $ (-566) (-59 |#1|)) NIL)) (-2342 (($) NIL T CONST)) (-4134 (((-59 |#1|) $ (-566)) NIL)) (-1332 ((|#1| $ (-566) (-566) |#1|) NIL)) (-3137 ((|#1| $ (-566) (-566)) NIL)) (-3372 (((-644 |#1|) $) NIL)) (-2042 (((-771) $) NIL)) (-4257 (($ (-771) (-771) |#1|) NIL)) (-2053 (((-771) $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-3266 (((-566) $) NIL)) (-1905 (((-566) $) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-4385 (((-566) $) NIL)) (-4106 (((-566) $) NIL)) (-1323 (($ (-1 |#1| |#1|) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1720 (($ $ |#1|) NIL)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-566) (-566)) NIL) ((|#1| $ (-566) (-566) |#1|) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-4074 (((-59 |#1|) $ (-566)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-60 |#1|) (-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4418))) (-1214)) (T -60))
-NIL
-(-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4418)))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 74) (((-3 $ "failed") (-1264 (-317 (-566)))) 63) (((-3 $ "failed") (-1264 (-952 (-381)))) 94) (((-3 $ "failed") (-1264 (-952 (-566)))) 84) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 52) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 39)) (-1756 (($ (-1264 (-317 (-381)))) 70) (($ (-1264 (-317 (-566)))) 59) (($ (-1264 (-952 (-381)))) 90) (($ (-1264 (-952 (-566)))) 80) (($ (-1264 (-409 (-952 (-381))))) 48) (($ (-1264 (-409 (-952 (-566))))) 32)) (-2733 (((-1269) $) 127)) (-2512 (((-862) $) 121) (($ (-644 (-331))) 103) (($ (-331)) 97) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 101) (($ (-1264 (-341 (-2523 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2523) (-699)))) 31)))
-(((-61 |#1|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2523) (-699))))))) (-1175)) (T -61))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2523) (-699)))) (-5 *1 (-61 *3)) (-14 *3 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-2523) (-699)))))))
-((-2733 (((-1269) $) 54) (((-1269)) 55)) (-2512 (((-862) $) 51)))
-(((-62 |#1|) (-13 (-397) (-10 -7 (-15 -2733 ((-1269))))) (-1175)) (T -62))
-((-2733 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-62 *3)) (-14 *3 (-1175)))))
-(-13 (-397) (-10 -7 (-15 -2733 ((-1269)))))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 154) (((-3 $ "failed") (-1264 (-317 (-566)))) 144) (((-3 $ "failed") (-1264 (-952 (-381)))) 174) (((-3 $ "failed") (-1264 (-952 (-566)))) 164) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 133) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 121)) (-1756 (($ (-1264 (-317 (-381)))) 150) (($ (-1264 (-317 (-566)))) 140) (($ (-1264 (-952 (-381)))) 170) (($ (-1264 (-952 (-566)))) 160) (($ (-1264 (-409 (-952 (-381))))) 129) (($ (-1264 (-409 (-952 (-566))))) 114)) (-2733 (((-1269) $) 107)) (-2512 (((-862) $) 101) (($ (-644 (-331))) 30) (($ (-331)) 35) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 33) (($ (-1264 (-341 (-2523) (-2523 (QUOTE XC)) (-699)))) 99)))
-(((-63 |#1|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523) (-2523 (QUOTE XC)) (-699))))))) (-1175)) (T -63))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523) (-2523 (QUOTE XC)) (-699)))) (-5 *1 (-63 *3)) (-14 *3 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523) (-2523 (QUOTE XC)) (-699)))))))
-((-2977 (((-3 $ "failed") (-317 (-381))) 41) (((-3 $ "failed") (-317 (-566))) 46) (((-3 $ "failed") (-952 (-381))) 50) (((-3 $ "failed") (-952 (-566))) 54) (((-3 $ "failed") (-409 (-952 (-381)))) 36) (((-3 $ "failed") (-409 (-952 (-566)))) 29)) (-1756 (($ (-317 (-381))) 39) (($ (-317 (-566))) 44) (($ (-952 (-381))) 48) (($ (-952 (-566))) 52) (($ (-409 (-952 (-381)))) 34) (($ (-409 (-952 (-566)))) 26)) (-2733 (((-1269) $) 76)) (-2512 (((-862) $) 69) (($ (-644 (-331))) 61) (($ (-331)) 66) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 64) (($ (-341 (-2523 (QUOTE X)) (-2523) (-699))) 25)))
-(((-64 |#1|) (-13 (-398) (-10 -8 (-15 -2512 ($ (-341 (-2523 (QUOTE X)) (-2523) (-699)))))) (-1175)) (T -64))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-341 (-2523 (QUOTE X)) (-2523) (-699))) (-5 *1 (-64 *3)) (-14 *3 (-1175)))))
-(-13 (-398) (-10 -8 (-15 -2512 ($ (-341 (-2523 (QUOTE X)) (-2523) (-699))))))
-((-2977 (((-3 $ "failed") (-689 (-317 (-381)))) 114) (((-3 $ "failed") (-689 (-317 (-566)))) 102) (((-3 $ "failed") (-689 (-952 (-381)))) 136) (((-3 $ "failed") (-689 (-952 (-566)))) 125) (((-3 $ "failed") (-689 (-409 (-952 (-381))))) 90) (((-3 $ "failed") (-689 (-409 (-952 (-566))))) 76)) (-1756 (($ (-689 (-317 (-381)))) 110) (($ (-689 (-317 (-566)))) 98) (($ (-689 (-952 (-381)))) 132) (($ (-689 (-952 (-566)))) 121) (($ (-689 (-409 (-952 (-381))))) 86) (($ (-689 (-409 (-952 (-566))))) 69)) (-2733 (((-1269) $) 144)) (-2512 (((-862) $) 138) (($ (-644 (-331))) 29) (($ (-331)) 34) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 32) (($ (-689 (-341 (-2523) (-2523 (QUOTE X) (QUOTE HESS)) (-699)))) 59)))
-(((-65 |#1|) (-13 (-386) (-616 (-689 (-341 (-2523) (-2523 (QUOTE X) (QUOTE HESS)) (-699))))) (-1175)) (T -65))
-NIL
-(-13 (-386) (-616 (-689 (-341 (-2523) (-2523 (QUOTE X) (QUOTE HESS)) (-699)))))
-((-2977 (((-3 $ "failed") (-317 (-381))) 60) (((-3 $ "failed") (-317 (-566))) 65) (((-3 $ "failed") (-952 (-381))) 69) (((-3 $ "failed") (-952 (-566))) 73) (((-3 $ "failed") (-409 (-952 (-381)))) 55) (((-3 $ "failed") (-409 (-952 (-566)))) 48)) (-1756 (($ (-317 (-381))) 58) (($ (-317 (-566))) 63) (($ (-952 (-381))) 67) (($ (-952 (-566))) 71) (($ (-409 (-952 (-381)))) 53) (($ (-409 (-952 (-566)))) 45)) (-2733 (((-1269) $) 82)) (-2512 (((-862) $) 76) (($ (-644 (-331))) 29) (($ (-331)) 34) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 32) (($ (-341 (-2523) (-2523 (QUOTE XC)) (-699))) 40)))
-(((-66 |#1|) (-13 (-398) (-10 -8 (-15 -2512 ($ (-341 (-2523) (-2523 (QUOTE XC)) (-699)))))) (-1175)) (T -66))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-341 (-2523) (-2523 (QUOTE XC)) (-699))) (-5 *1 (-66 *3)) (-14 *3 (-1175)))))
-(-13 (-398) (-10 -8 (-15 -2512 ($ (-341 (-2523) (-2523 (QUOTE XC)) (-699))))))
-((-2733 (((-1269) $) 68)) (-2512 (((-862) $) 62) (($ (-689 (-699))) 54) (($ (-644 (-331))) 53) (($ (-331)) 60) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 58)))
+((-3264 (((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 16)) (-1580 ((|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 18)) (-3152 (((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)) 13)))
+(((-58 |#1| |#2|) (-10 -7 (-15 -3264 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1580 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3152 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)))) (-1214) (-1214)) (T -58))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-59 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-59 *6)) (-5 *1 (-58 *5 *6)))) (-1580 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-58 *5 *2)))) (-3264 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1214)) (-4 *5 (-1214)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5)))))
+(-10 -7 (-15 -3264 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1580 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3152 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) NIL)) (-4015 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-3887 (($ (-644 |#1|)) 11) (($ (-771) |#1|) 14)) (-4278 (($ (-771) |#1|) 13)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4101 ((|#1| $) NIL (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 10)) (-3727 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-59 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -3887 ($ (-644 |#1|))) (-15 -3887 ($ (-771) |#1|)))) (-1214)) (T -59))
+((-3887 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-59 *3)))) (-3887 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *1 (-59 *3)) (-4 *3 (-1214)))))
+(-13 (-19 |#1|) (-10 -8 (-15 -3887 ($ (-644 |#1|))) (-15 -3887 ($ (-771) |#1|))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-566) (-566) |#1|) NIL)) (-2890 (($ $ (-566) (-59 |#1|)) NIL)) (-4293 (($ $ (-566) (-59 |#1|)) NIL)) (-3877 (($) NIL T CONST)) (-4104 (((-59 |#1|) $ (-566)) NIL)) (-3128 ((|#1| $ (-566) (-566) |#1|) NIL)) (-3059 ((|#1| $ (-566) (-566)) NIL)) (-3799 (((-644 |#1|) $) NIL)) (-4301 (((-771) $) NIL)) (-4278 (($ (-771) (-771) |#1|) NIL)) (-4313 (((-771) $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2615 (((-566) $) NIL)) (-1966 (((-566) $) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1653 (((-566) $) NIL)) (-3807 (((-566) $) NIL)) (-3117 (($ (-1 |#1| |#1|) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3750 (($ $ |#1|) NIL)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-566) (-566)) NIL) ((|#1| $ (-566) (-566) |#1|) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-1621 (((-59 |#1|) $ (-566)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-60 |#1|) (-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4415))) (-1214)) (T -60))
+NIL
+(-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4415)))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 74) (((-3 $ "failed") (-1264 (-317 (-566)))) 63) (((-3 $ "failed") (-1264 (-952 (-381)))) 94) (((-3 $ "failed") (-1264 (-952 (-566)))) 84) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 52) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 39)) (-1867 (($ (-1264 (-317 (-381)))) 70) (($ (-1264 (-317 (-566)))) 59) (($ (-1264 (-952 (-381)))) 90) (($ (-1264 (-952 (-566)))) 80) (($ (-1264 (-409 (-952 (-381))))) 48) (($ (-1264 (-409 (-952 (-566))))) 32)) (-2440 (((-1269) $) 127)) (-3780 (((-862) $) 121) (($ (-644 (-331))) 103) (($ (-331)) 97) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 101) (($ (-1264 (-341 (-3791 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3791) (-699)))) 31)))
+(((-61 |#1|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3791) (-699))))))) (-1175)) (T -61))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3791) (-699)))) (-5 *1 (-61 *3)) (-14 *3 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3791) (-699)))))))
+((-2440 (((-1269) $) 54) (((-1269)) 55)) (-3780 (((-862) $) 51)))
+(((-62 |#1|) (-13 (-397) (-10 -7 (-15 -2440 ((-1269))))) (-1175)) (T -62))
+((-2440 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-62 *3)) (-14 *3 (-1175)))))
+(-13 (-397) (-10 -7 (-15 -2440 ((-1269)))))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 154) (((-3 $ "failed") (-1264 (-317 (-566)))) 144) (((-3 $ "failed") (-1264 (-952 (-381)))) 174) (((-3 $ "failed") (-1264 (-952 (-566)))) 164) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 133) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 121)) (-1867 (($ (-1264 (-317 (-381)))) 150) (($ (-1264 (-317 (-566)))) 140) (($ (-1264 (-952 (-381)))) 170) (($ (-1264 (-952 (-566)))) 160) (($ (-1264 (-409 (-952 (-381))))) 129) (($ (-1264 (-409 (-952 (-566))))) 114)) (-2440 (((-1269) $) 107)) (-3780 (((-862) $) 101) (($ (-644 (-331))) 30) (($ (-331)) 35) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 33) (($ (-1264 (-341 (-3791) (-3791 (QUOTE XC)) (-699)))) 99)))
+(((-63 |#1|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791) (-3791 (QUOTE XC)) (-699))))))) (-1175)) (T -63))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791) (-3791 (QUOTE XC)) (-699)))) (-5 *1 (-63 *3)) (-14 *3 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791) (-3791 (QUOTE XC)) (-699)))))))
+((-3066 (((-3 $ "failed") (-317 (-381))) 41) (((-3 $ "failed") (-317 (-566))) 46) (((-3 $ "failed") (-952 (-381))) 50) (((-3 $ "failed") (-952 (-566))) 54) (((-3 $ "failed") (-409 (-952 (-381)))) 36) (((-3 $ "failed") (-409 (-952 (-566)))) 29)) (-1867 (($ (-317 (-381))) 39) (($ (-317 (-566))) 44) (($ (-952 (-381))) 48) (($ (-952 (-566))) 52) (($ (-409 (-952 (-381)))) 34) (($ (-409 (-952 (-566)))) 26)) (-2440 (((-1269) $) 76)) (-3780 (((-862) $) 69) (($ (-644 (-331))) 61) (($ (-331)) 66) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 64) (($ (-341 (-3791 (QUOTE X)) (-3791) (-699))) 25)))
+(((-64 |#1|) (-13 (-398) (-10 -8 (-15 -3780 ($ (-341 (-3791 (QUOTE X)) (-3791) (-699)))))) (-1175)) (T -64))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-341 (-3791 (QUOTE X)) (-3791) (-699))) (-5 *1 (-64 *3)) (-14 *3 (-1175)))))
+(-13 (-398) (-10 -8 (-15 -3780 ($ (-341 (-3791 (QUOTE X)) (-3791) (-699))))))
+((-3066 (((-3 $ "failed") (-689 (-317 (-381)))) 114) (((-3 $ "failed") (-689 (-317 (-566)))) 102) (((-3 $ "failed") (-689 (-952 (-381)))) 136) (((-3 $ "failed") (-689 (-952 (-566)))) 125) (((-3 $ "failed") (-689 (-409 (-952 (-381))))) 90) (((-3 $ "failed") (-689 (-409 (-952 (-566))))) 76)) (-1867 (($ (-689 (-317 (-381)))) 110) (($ (-689 (-317 (-566)))) 98) (($ (-689 (-952 (-381)))) 132) (($ (-689 (-952 (-566)))) 121) (($ (-689 (-409 (-952 (-381))))) 86) (($ (-689 (-409 (-952 (-566))))) 69)) (-2440 (((-1269) $) 144)) (-3780 (((-862) $) 138) (($ (-644 (-331))) 29) (($ (-331)) 34) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 32) (($ (-689 (-341 (-3791) (-3791 (QUOTE X) (QUOTE HESS)) (-699)))) 59)))
+(((-65 |#1|) (-13 (-386) (-616 (-689 (-341 (-3791) (-3791 (QUOTE X) (QUOTE HESS)) (-699))))) (-1175)) (T -65))
+NIL
+(-13 (-386) (-616 (-689 (-341 (-3791) (-3791 (QUOTE X) (QUOTE HESS)) (-699)))))
+((-3066 (((-3 $ "failed") (-317 (-381))) 60) (((-3 $ "failed") (-317 (-566))) 65) (((-3 $ "failed") (-952 (-381))) 69) (((-3 $ "failed") (-952 (-566))) 73) (((-3 $ "failed") (-409 (-952 (-381)))) 55) (((-3 $ "failed") (-409 (-952 (-566)))) 48)) (-1867 (($ (-317 (-381))) 58) (($ (-317 (-566))) 63) (($ (-952 (-381))) 67) (($ (-952 (-566))) 71) (($ (-409 (-952 (-381)))) 53) (($ (-409 (-952 (-566)))) 45)) (-2440 (((-1269) $) 82)) (-3780 (((-862) $) 76) (($ (-644 (-331))) 29) (($ (-331)) 34) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 32) (($ (-341 (-3791) (-3791 (QUOTE XC)) (-699))) 40)))
+(((-66 |#1|) (-13 (-398) (-10 -8 (-15 -3780 ($ (-341 (-3791) (-3791 (QUOTE XC)) (-699)))))) (-1175)) (T -66))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-341 (-3791) (-3791 (QUOTE XC)) (-699))) (-5 *1 (-66 *3)) (-14 *3 (-1175)))))
+(-13 (-398) (-10 -8 (-15 -3780 ($ (-341 (-3791) (-3791 (QUOTE XC)) (-699))))))
+((-2440 (((-1269) $) 68)) (-3780 (((-862) $) 62) (($ (-689 (-699))) 54) (($ (-644 (-331))) 53) (($ (-331)) 60) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 58)))
(((-67 |#1|) (-385) (-1175)) (T -67))
NIL
(-385)
-((-2733 (((-1269) $) 69)) (-2512 (((-862) $) 63) (($ (-689 (-699))) 55) (($ (-644 (-331))) 54) (($ (-331)) 57) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 60)))
+((-2440 (((-1269) $) 69)) (-3780 (((-862) $) 63) (($ (-689 (-699))) 55) (($ (-644 (-331))) 54) (($ (-331)) 57) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 60)))
(((-68 |#1|) (-385) (-1175)) (T -68))
NIL
(-385)
-((-2733 (((-1269) $) NIL) (((-1269)) 33)) (-2512 (((-862) $) NIL)))
-(((-69 |#1|) (-13 (-397) (-10 -7 (-15 -2733 ((-1269))))) (-1175)) (T -69))
-((-2733 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-69 *3)) (-14 *3 (-1175)))))
-(-13 (-397) (-10 -7 (-15 -2733 ((-1269)))))
-((-2733 (((-1269) $) 75)) (-2512 (((-862) $) 69) (($ (-689 (-699))) 61) (($ (-644 (-331))) 63) (($ (-331)) 66) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 60)))
+((-2440 (((-1269) $) NIL) (((-1269)) 33)) (-3780 (((-862) $) NIL)))
+(((-69 |#1|) (-13 (-397) (-10 -7 (-15 -2440 ((-1269))))) (-1175)) (T -69))
+((-2440 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-69 *3)) (-14 *3 (-1175)))))
+(-13 (-397) (-10 -7 (-15 -2440 ((-1269)))))
+((-2440 (((-1269) $) 75)) (-3780 (((-862) $) 69) (($ (-689 (-699))) 61) (($ (-644 (-331))) 63) (($ (-331)) 66) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 60)))
(((-70 |#1|) (-385) (-1175)) (T -70))
NIL
(-385)
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 111) (((-3 $ "failed") (-1264 (-317 (-566)))) 100) (((-3 $ "failed") (-1264 (-952 (-381)))) 131) (((-3 $ "failed") (-1264 (-952 (-566)))) 121) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 89) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 76)) (-1756 (($ (-1264 (-317 (-381)))) 107) (($ (-1264 (-317 (-566)))) 96) (($ (-1264 (-952 (-381)))) 127) (($ (-1264 (-952 (-566)))) 117) (($ (-1264 (-409 (-952 (-381))))) 85) (($ (-1264 (-409 (-952 (-566))))) 69)) (-2733 (((-1269) $) 144)) (-2512 (((-862) $) 138) (($ (-644 (-331))) 133) (($ (-331)) 136) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 61) (($ (-1264 (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699)))) 62)))
-(((-71 |#1|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699))))))) (-1175)) (T -71))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699)))) (-5 *1 (-71 *3)) (-14 *3 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699)))))))
-((-2733 (((-1269) $) 33) (((-1269)) 32)) (-2512 (((-862) $) 36)))
-(((-72 |#1|) (-13 (-397) (-10 -7 (-15 -2733 ((-1269))))) (-1175)) (T -72))
-((-2733 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-72 *3)) (-14 *3 (-1175)))))
-(-13 (-397) (-10 -7 (-15 -2733 ((-1269)))))
-((-2733 (((-1269) $) 65)) (-2512 (((-862) $) 59) (($ (-689 (-699))) 51) (($ (-644 (-331))) 53) (($ (-331)) 56) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 50)))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 111) (((-3 $ "failed") (-1264 (-317 (-566)))) 100) (((-3 $ "failed") (-1264 (-952 (-381)))) 131) (((-3 $ "failed") (-1264 (-952 (-566)))) 121) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 89) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 76)) (-1867 (($ (-1264 (-317 (-381)))) 107) (($ (-1264 (-317 (-566)))) 96) (($ (-1264 (-952 (-381)))) 127) (($ (-1264 (-952 (-566)))) 117) (($ (-1264 (-409 (-952 (-381))))) 85) (($ (-1264 (-409 (-952 (-566))))) 69)) (-2440 (((-1269) $) 144)) (-3780 (((-862) $) 138) (($ (-644 (-331))) 133) (($ (-331)) 136) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 61) (($ (-1264 (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699)))) 62)))
+(((-71 |#1|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699))))))) (-1175)) (T -71))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699)))) (-5 *1 (-71 *3)) (-14 *3 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699)))))))
+((-2440 (((-1269) $) 33) (((-1269)) 32)) (-3780 (((-862) $) 36)))
+(((-72 |#1|) (-13 (-397) (-10 -7 (-15 -2440 ((-1269))))) (-1175)) (T -72))
+((-2440 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-72 *3)) (-14 *3 (-1175)))))
+(-13 (-397) (-10 -7 (-15 -2440 ((-1269)))))
+((-2440 (((-1269) $) 65)) (-3780 (((-862) $) 59) (($ (-689 (-699))) 51) (($ (-644 (-331))) 53) (($ (-331)) 56) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 50)))
(((-73 |#1|) (-385) (-1175)) (T -73))
NIL
(-385)
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 130) (((-3 $ "failed") (-1264 (-317 (-566)))) 120) (((-3 $ "failed") (-1264 (-952 (-381)))) 150) (((-3 $ "failed") (-1264 (-952 (-566)))) 140) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 110) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 98)) (-1756 (($ (-1264 (-317 (-381)))) 126) (($ (-1264 (-317 (-566)))) 116) (($ (-1264 (-952 (-381)))) 146) (($ (-1264 (-952 (-566)))) 136) (($ (-1264 (-409 (-952 (-381))))) 106) (($ (-1264 (-409 (-952 (-566))))) 91)) (-2733 (((-1269) $) 83)) (-2512 (((-862) $) 28) (($ (-644 (-331))) 73) (($ (-331)) 69) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 76) (($ (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699)))) 70)))
-(((-74 |#1|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699))))))) (-1175)) (T -74))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699)))) (-5 *1 (-74 *3)) (-14 *3 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699)))))))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 135) (((-3 $ "failed") (-1264 (-317 (-566)))) 124) (((-3 $ "failed") (-1264 (-952 (-381)))) 155) (((-3 $ "failed") (-1264 (-952 (-566)))) 145) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 113) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 100)) (-1756 (($ (-1264 (-317 (-381)))) 131) (($ (-1264 (-317 (-566)))) 120) (($ (-1264 (-952 (-381)))) 151) (($ (-1264 (-952 (-566)))) 141) (($ (-1264 (-409 (-952 (-381))))) 109) (($ (-1264 (-409 (-952 (-566))))) 93)) (-2733 (((-1269) $) 85)) (-2512 (((-862) $) 77) (($ (-644 (-331))) NIL) (($ (-331)) NIL) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) NIL) (($ (-1264 (-341 (-2523 (QUOTE X) (QUOTE EPS)) (-2523 (QUOTE -2514)) (-699)))) 72)))
-(((-75 |#1| |#2| |#3|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE X) (QUOTE EPS)) (-2523 (QUOTE -2514)) (-699))))))) (-1175) (-1175) (-1175)) (T -75))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523 (QUOTE X) (QUOTE EPS)) (-2523 (QUOTE -2514)) (-699)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1175)) (-14 *4 (-1175)) (-14 *5 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE X) (QUOTE EPS)) (-2523 (QUOTE -2514)) (-699)))))))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 141) (((-3 $ "failed") (-1264 (-317 (-566)))) 130) (((-3 $ "failed") (-1264 (-952 (-381)))) 161) (((-3 $ "failed") (-1264 (-952 (-566)))) 151) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 119) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 106)) (-1756 (($ (-1264 (-317 (-381)))) 137) (($ (-1264 (-317 (-566)))) 126) (($ (-1264 (-952 (-381)))) 157) (($ (-1264 (-952 (-566)))) 147) (($ (-1264 (-409 (-952 (-381))))) 115) (($ (-1264 (-409 (-952 (-566))))) 99)) (-2733 (((-1269) $) 91)) (-2512 (((-862) $) 83) (($ (-644 (-331))) NIL) (($ (-331)) NIL) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) NIL) (($ (-1264 (-341 (-2523 (QUOTE EPS)) (-2523 (QUOTE YA) (QUOTE YB)) (-699)))) 78)))
-(((-76 |#1| |#2| |#3|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE EPS)) (-2523 (QUOTE YA) (QUOTE YB)) (-699))))))) (-1175) (-1175) (-1175)) (T -76))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523 (QUOTE EPS)) (-2523 (QUOTE YA) (QUOTE YB)) (-699)))) (-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1175)) (-14 *4 (-1175)) (-14 *5 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE EPS)) (-2523 (QUOTE YA) (QUOTE YB)) (-699)))))))
-((-2977 (((-3 $ "failed") (-317 (-381))) 83) (((-3 $ "failed") (-317 (-566))) 88) (((-3 $ "failed") (-952 (-381))) 92) (((-3 $ "failed") (-952 (-566))) 96) (((-3 $ "failed") (-409 (-952 (-381)))) 78) (((-3 $ "failed") (-409 (-952 (-566)))) 71)) (-1756 (($ (-317 (-381))) 81) (($ (-317 (-566))) 86) (($ (-952 (-381))) 90) (($ (-952 (-566))) 94) (($ (-409 (-952 (-381)))) 76) (($ (-409 (-952 (-566)))) 68)) (-2733 (((-1269) $) 63)) (-2512 (((-862) $) 51) (($ (-644 (-331))) 47) (($ (-331)) 57) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 55) (($ (-341 (-2523) (-2523 (QUOTE X)) (-699))) 48)))
-(((-77 |#1|) (-13 (-398) (-10 -8 (-15 -2512 ($ (-341 (-2523) (-2523 (QUOTE X)) (-699)))))) (-1175)) (T -77))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-341 (-2523) (-2523 (QUOTE X)) (-699))) (-5 *1 (-77 *3)) (-14 *3 (-1175)))))
-(-13 (-398) (-10 -8 (-15 -2512 ($ (-341 (-2523) (-2523 (QUOTE X)) (-699))))))
-((-2977 (((-3 $ "failed") (-317 (-381))) 47) (((-3 $ "failed") (-317 (-566))) 52) (((-3 $ "failed") (-952 (-381))) 56) (((-3 $ "failed") (-952 (-566))) 60) (((-3 $ "failed") (-409 (-952 (-381)))) 42) (((-3 $ "failed") (-409 (-952 (-566)))) 35)) (-1756 (($ (-317 (-381))) 45) (($ (-317 (-566))) 50) (($ (-952 (-381))) 54) (($ (-952 (-566))) 58) (($ (-409 (-952 (-381)))) 40) (($ (-409 (-952 (-566)))) 32)) (-2733 (((-1269) $) 81)) (-2512 (((-862) $) 75) (($ (-644 (-331))) 67) (($ (-331)) 72) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 70) (($ (-341 (-2523) (-2523 (QUOTE X)) (-699))) 31)))
-(((-78 |#1|) (-13 (-398) (-10 -8 (-15 -2512 ($ (-341 (-2523) (-2523 (QUOTE X)) (-699)))))) (-1175)) (T -78))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-341 (-2523) (-2523 (QUOTE X)) (-699))) (-5 *1 (-78 *3)) (-14 *3 (-1175)))))
-(-13 (-398) (-10 -8 (-15 -2512 ($ (-341 (-2523) (-2523 (QUOTE X)) (-699))))))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 90) (((-3 $ "failed") (-1264 (-317 (-566)))) 79) (((-3 $ "failed") (-1264 (-952 (-381)))) 110) (((-3 $ "failed") (-1264 (-952 (-566)))) 100) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 68) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 55)) (-1756 (($ (-1264 (-317 (-381)))) 86) (($ (-1264 (-317 (-566)))) 75) (($ (-1264 (-952 (-381)))) 106) (($ (-1264 (-952 (-566)))) 96) (($ (-1264 (-409 (-952 (-381))))) 64) (($ (-1264 (-409 (-952 (-566))))) 48)) (-2733 (((-1269) $) 126)) (-2512 (((-862) $) 120) (($ (-644 (-331))) 113) (($ (-331)) 38) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 116) (($ (-1264 (-341 (-2523) (-2523 (QUOTE XC)) (-699)))) 39)))
-(((-79 |#1|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523) (-2523 (QUOTE XC)) (-699))))))) (-1175)) (T -79))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523) (-2523 (QUOTE XC)) (-699)))) (-5 *1 (-79 *3)) (-14 *3 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523) (-2523 (QUOTE XC)) (-699)))))))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 158) (((-3 $ "failed") (-1264 (-317 (-566)))) 148) (((-3 $ "failed") (-1264 (-952 (-381)))) 178) (((-3 $ "failed") (-1264 (-952 (-566)))) 168) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 138) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 126)) (-1756 (($ (-1264 (-317 (-381)))) 154) (($ (-1264 (-317 (-566)))) 144) (($ (-1264 (-952 (-381)))) 174) (($ (-1264 (-952 (-566)))) 164) (($ (-1264 (-409 (-952 (-381))))) 134) (($ (-1264 (-409 (-952 (-566))))) 119)) (-2733 (((-1269) $) 112)) (-2512 (((-862) $) 106) (($ (-644 (-331))) 97) (($ (-331)) 104) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 102) (($ (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699)))) 98)))
-(((-80 |#1|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699))))))) (-1175)) (T -80))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699)))) (-5 *1 (-80 *3)) (-14 *3 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699)))))))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 79) (((-3 $ "failed") (-1264 (-317 (-566)))) 68) (((-3 $ "failed") (-1264 (-952 (-381)))) 99) (((-3 $ "failed") (-1264 (-952 (-566)))) 89) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 57) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 44)) (-1756 (($ (-1264 (-317 (-381)))) 75) (($ (-1264 (-317 (-566)))) 64) (($ (-1264 (-952 (-381)))) 95) (($ (-1264 (-952 (-566)))) 85) (($ (-1264 (-409 (-952 (-381))))) 53) (($ (-1264 (-409 (-952 (-566))))) 37)) (-2733 (((-1269) $) 125)) (-2512 (((-862) $) 119) (($ (-644 (-331))) 110) (($ (-331)) 116) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 114) (($ (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699)))) 36)))
-(((-81 |#1|) (-13 (-443) (-616 (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699))))) (-1175)) (T -81))
-NIL
-(-13 (-443) (-616 (-1264 (-341 (-2523) (-2523 (QUOTE X)) (-699)))))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 98) (((-3 $ "failed") (-1264 (-317 (-566)))) 87) (((-3 $ "failed") (-1264 (-952 (-381)))) 118) (((-3 $ "failed") (-1264 (-952 (-566)))) 108) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 76) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 63)) (-1756 (($ (-1264 (-317 (-381)))) 94) (($ (-1264 (-317 (-566)))) 83) (($ (-1264 (-952 (-381)))) 114) (($ (-1264 (-952 (-566)))) 104) (($ (-1264 (-409 (-952 (-381))))) 72) (($ (-1264 (-409 (-952 (-566))))) 56)) (-2733 (((-1269) $) 48)) (-2512 (((-862) $) 42) (($ (-644 (-331))) 32) (($ (-331)) 35) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 38) (($ (-1264 (-341 (-2523 (QUOTE X) (QUOTE -2514)) (-2523) (-699)))) 33)))
-(((-82 |#1|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE X) (QUOTE -2514)) (-2523) (-699))))))) (-1175)) (T -82))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523 (QUOTE X) (QUOTE -2514)) (-2523) (-699)))) (-5 *1 (-82 *3)) (-14 *3 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE X) (QUOTE -2514)) (-2523) (-699)))))))
-((-2977 (((-3 $ "failed") (-689 (-317 (-381)))) 118) (((-3 $ "failed") (-689 (-317 (-566)))) 107) (((-3 $ "failed") (-689 (-952 (-381)))) 140) (((-3 $ "failed") (-689 (-952 (-566)))) 129) (((-3 $ "failed") (-689 (-409 (-952 (-381))))) 96) (((-3 $ "failed") (-689 (-409 (-952 (-566))))) 83)) (-1756 (($ (-689 (-317 (-381)))) 114) (($ (-689 (-317 (-566)))) 103) (($ (-689 (-952 (-381)))) 136) (($ (-689 (-952 (-566)))) 125) (($ (-689 (-409 (-952 (-381))))) 92) (($ (-689 (-409 (-952 (-566))))) 76)) (-2733 (((-1269) $) 66)) (-2512 (((-862) $) 53) (($ (-644 (-331))) 60) (($ (-331)) 49) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 58) (($ (-689 (-341 (-2523 (QUOTE X) (QUOTE -2514)) (-2523) (-699)))) 50)))
-(((-83 |#1|) (-13 (-386) (-10 -8 (-15 -2512 ($ (-689 (-341 (-2523 (QUOTE X) (QUOTE -2514)) (-2523) (-699))))))) (-1175)) (T -83))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-689 (-341 (-2523 (QUOTE X) (QUOTE -2514)) (-2523) (-699)))) (-5 *1 (-83 *3)) (-14 *3 (-1175)))))
-(-13 (-386) (-10 -8 (-15 -2512 ($ (-689 (-341 (-2523 (QUOTE X) (QUOTE -2514)) (-2523) (-699)))))))
-((-2977 (((-3 $ "failed") (-689 (-317 (-381)))) 113) (((-3 $ "failed") (-689 (-317 (-566)))) 101) (((-3 $ "failed") (-689 (-952 (-381)))) 135) (((-3 $ "failed") (-689 (-952 (-566)))) 124) (((-3 $ "failed") (-689 (-409 (-952 (-381))))) 89) (((-3 $ "failed") (-689 (-409 (-952 (-566))))) 75)) (-1756 (($ (-689 (-317 (-381)))) 109) (($ (-689 (-317 (-566)))) 97) (($ (-689 (-952 (-381)))) 131) (($ (-689 (-952 (-566)))) 120) (($ (-689 (-409 (-952 (-381))))) 85) (($ (-689 (-409 (-952 (-566))))) 68)) (-2733 (((-1269) $) 60)) (-2512 (((-862) $) 54) (($ (-644 (-331))) 48) (($ (-331)) 51) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 45) (($ (-689 (-341 (-2523 (QUOTE X)) (-2523) (-699)))) 46)))
-(((-84 |#1|) (-13 (-386) (-10 -8 (-15 -2512 ($ (-689 (-341 (-2523 (QUOTE X)) (-2523) (-699))))))) (-1175)) (T -84))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-689 (-341 (-2523 (QUOTE X)) (-2523) (-699)))) (-5 *1 (-84 *3)) (-14 *3 (-1175)))))
-(-13 (-386) (-10 -8 (-15 -2512 ($ (-689 (-341 (-2523 (QUOTE X)) (-2523) (-699)))))))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 105) (((-3 $ "failed") (-1264 (-317 (-566)))) 94) (((-3 $ "failed") (-1264 (-952 (-381)))) 125) (((-3 $ "failed") (-1264 (-952 (-566)))) 115) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 83) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 70)) (-1756 (($ (-1264 (-317 (-381)))) 101) (($ (-1264 (-317 (-566)))) 90) (($ (-1264 (-952 (-381)))) 121) (($ (-1264 (-952 (-566)))) 111) (($ (-1264 (-409 (-952 (-381))))) 79) (($ (-1264 (-409 (-952 (-566))))) 63)) (-2733 (((-1269) $) 47)) (-2512 (((-862) $) 41) (($ (-644 (-331))) 50) (($ (-331)) 37) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 53) (($ (-1264 (-341 (-2523 (QUOTE X)) (-2523) (-699)))) 38)))
-(((-85 |#1|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE X)) (-2523) (-699))))))) (-1175)) (T -85))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523 (QUOTE X)) (-2523) (-699)))) (-5 *1 (-85 *3)) (-14 *3 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE X)) (-2523) (-699)))))))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 80) (((-3 $ "failed") (-1264 (-317 (-566)))) 69) (((-3 $ "failed") (-1264 (-952 (-381)))) 100) (((-3 $ "failed") (-1264 (-952 (-566)))) 90) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 58) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 45)) (-1756 (($ (-1264 (-317 (-381)))) 76) (($ (-1264 (-317 (-566)))) 65) (($ (-1264 (-952 (-381)))) 96) (($ (-1264 (-952 (-566)))) 86) (($ (-1264 (-409 (-952 (-381))))) 54) (($ (-1264 (-409 (-952 (-566))))) 38)) (-2733 (((-1269) $) 126)) (-2512 (((-862) $) 120) (($ (-644 (-331))) 111) (($ (-331)) 117) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 115) (($ (-1264 (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699)))) 37)))
-(((-86 |#1|) (-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699))))))) (-1175)) (T -86))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699)))) (-5 *1 (-86 *3)) (-14 *3 (-1175)))))
-(-13 (-443) (-10 -8 (-15 -2512 ($ (-1264 (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699)))))))
-((-2977 (((-3 $ "failed") (-689 (-317 (-381)))) 117) (((-3 $ "failed") (-689 (-317 (-566)))) 105) (((-3 $ "failed") (-689 (-952 (-381)))) 139) (((-3 $ "failed") (-689 (-952 (-566)))) 128) (((-3 $ "failed") (-689 (-409 (-952 (-381))))) 93) (((-3 $ "failed") (-689 (-409 (-952 (-566))))) 79)) (-1756 (($ (-689 (-317 (-381)))) 113) (($ (-689 (-317 (-566)))) 101) (($ (-689 (-952 (-381)))) 135) (($ (-689 (-952 (-566)))) 124) (($ (-689 (-409 (-952 (-381))))) 89) (($ (-689 (-409 (-952 (-566))))) 72)) (-2733 (((-1269) $) 63)) (-2512 (((-862) $) 57) (($ (-644 (-331))) 47) (($ (-331)) 54) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 52) (($ (-689 (-341 (-2523 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2523) (-699)))) 48)))
-(((-87 |#1|) (-13 (-386) (-10 -8 (-15 -2512 ($ (-689 (-341 (-2523 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2523) (-699))))))) (-1175)) (T -87))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-689 (-341 (-2523 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2523) (-699)))) (-5 *1 (-87 *3)) (-14 *3 (-1175)))))
-(-13 (-386) (-10 -8 (-15 -2512 ($ (-689 (-341 (-2523 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-2523) (-699)))))))
-((-2733 (((-1269) $) 45)) (-2512 (((-862) $) 39) (($ (-1264 (-699))) 101) (($ (-644 (-331))) 31) (($ (-331)) 36) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 34)))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 130) (((-3 $ "failed") (-1264 (-317 (-566)))) 120) (((-3 $ "failed") (-1264 (-952 (-381)))) 150) (((-3 $ "failed") (-1264 (-952 (-566)))) 140) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 110) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 98)) (-1867 (($ (-1264 (-317 (-381)))) 126) (($ (-1264 (-317 (-566)))) 116) (($ (-1264 (-952 (-381)))) 146) (($ (-1264 (-952 (-566)))) 136) (($ (-1264 (-409 (-952 (-381))))) 106) (($ (-1264 (-409 (-952 (-566))))) 91)) (-2440 (((-1269) $) 83)) (-3780 (((-862) $) 28) (($ (-644 (-331))) 73) (($ (-331)) 69) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 76) (($ (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699)))) 70)))
+(((-74 |#1|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699))))))) (-1175)) (T -74))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699)))) (-5 *1 (-74 *3)) (-14 *3 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699)))))))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 135) (((-3 $ "failed") (-1264 (-317 (-566)))) 124) (((-3 $ "failed") (-1264 (-952 (-381)))) 155) (((-3 $ "failed") (-1264 (-952 (-566)))) 145) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 113) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 100)) (-1867 (($ (-1264 (-317 (-381)))) 131) (($ (-1264 (-317 (-566)))) 120) (($ (-1264 (-952 (-381)))) 151) (($ (-1264 (-952 (-566)))) 141) (($ (-1264 (-409 (-952 (-381))))) 109) (($ (-1264 (-409 (-952 (-566))))) 93)) (-2440 (((-1269) $) 85)) (-3780 (((-862) $) 77) (($ (-644 (-331))) NIL) (($ (-331)) NIL) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) NIL) (($ (-1264 (-341 (-3791 (QUOTE X) (QUOTE EPS)) (-3791 (QUOTE -2519)) (-699)))) 72)))
+(((-75 |#1| |#2| |#3|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE X) (QUOTE EPS)) (-3791 (QUOTE -2519)) (-699))))))) (-1175) (-1175) (-1175)) (T -75))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791 (QUOTE X) (QUOTE EPS)) (-3791 (QUOTE -2519)) (-699)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1175)) (-14 *4 (-1175)) (-14 *5 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE X) (QUOTE EPS)) (-3791 (QUOTE -2519)) (-699)))))))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 141) (((-3 $ "failed") (-1264 (-317 (-566)))) 130) (((-3 $ "failed") (-1264 (-952 (-381)))) 161) (((-3 $ "failed") (-1264 (-952 (-566)))) 151) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 119) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 106)) (-1867 (($ (-1264 (-317 (-381)))) 137) (($ (-1264 (-317 (-566)))) 126) (($ (-1264 (-952 (-381)))) 157) (($ (-1264 (-952 (-566)))) 147) (($ (-1264 (-409 (-952 (-381))))) 115) (($ (-1264 (-409 (-952 (-566))))) 99)) (-2440 (((-1269) $) 91)) (-3780 (((-862) $) 83) (($ (-644 (-331))) NIL) (($ (-331)) NIL) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) NIL) (($ (-1264 (-341 (-3791 (QUOTE EPS)) (-3791 (QUOTE YA) (QUOTE YB)) (-699)))) 78)))
+(((-76 |#1| |#2| |#3|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE EPS)) (-3791 (QUOTE YA) (QUOTE YB)) (-699))))))) (-1175) (-1175) (-1175)) (T -76))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791 (QUOTE EPS)) (-3791 (QUOTE YA) (QUOTE YB)) (-699)))) (-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1175)) (-14 *4 (-1175)) (-14 *5 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE EPS)) (-3791 (QUOTE YA) (QUOTE YB)) (-699)))))))
+((-3066 (((-3 $ "failed") (-317 (-381))) 83) (((-3 $ "failed") (-317 (-566))) 88) (((-3 $ "failed") (-952 (-381))) 92) (((-3 $ "failed") (-952 (-566))) 96) (((-3 $ "failed") (-409 (-952 (-381)))) 78) (((-3 $ "failed") (-409 (-952 (-566)))) 71)) (-1867 (($ (-317 (-381))) 81) (($ (-317 (-566))) 86) (($ (-952 (-381))) 90) (($ (-952 (-566))) 94) (($ (-409 (-952 (-381)))) 76) (($ (-409 (-952 (-566)))) 68)) (-2440 (((-1269) $) 63)) (-3780 (((-862) $) 51) (($ (-644 (-331))) 47) (($ (-331)) 57) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 55) (($ (-341 (-3791) (-3791 (QUOTE X)) (-699))) 48)))
+(((-77 |#1|) (-13 (-398) (-10 -8 (-15 -3780 ($ (-341 (-3791) (-3791 (QUOTE X)) (-699)))))) (-1175)) (T -77))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-341 (-3791) (-3791 (QUOTE X)) (-699))) (-5 *1 (-77 *3)) (-14 *3 (-1175)))))
+(-13 (-398) (-10 -8 (-15 -3780 ($ (-341 (-3791) (-3791 (QUOTE X)) (-699))))))
+((-3066 (((-3 $ "failed") (-317 (-381))) 47) (((-3 $ "failed") (-317 (-566))) 52) (((-3 $ "failed") (-952 (-381))) 56) (((-3 $ "failed") (-952 (-566))) 60) (((-3 $ "failed") (-409 (-952 (-381)))) 42) (((-3 $ "failed") (-409 (-952 (-566)))) 35)) (-1867 (($ (-317 (-381))) 45) (($ (-317 (-566))) 50) (($ (-952 (-381))) 54) (($ (-952 (-566))) 58) (($ (-409 (-952 (-381)))) 40) (($ (-409 (-952 (-566)))) 32)) (-2440 (((-1269) $) 81)) (-3780 (((-862) $) 75) (($ (-644 (-331))) 67) (($ (-331)) 72) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 70) (($ (-341 (-3791) (-3791 (QUOTE X)) (-699))) 31)))
+(((-78 |#1|) (-13 (-398) (-10 -8 (-15 -3780 ($ (-341 (-3791) (-3791 (QUOTE X)) (-699)))))) (-1175)) (T -78))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-341 (-3791) (-3791 (QUOTE X)) (-699))) (-5 *1 (-78 *3)) (-14 *3 (-1175)))))
+(-13 (-398) (-10 -8 (-15 -3780 ($ (-341 (-3791) (-3791 (QUOTE X)) (-699))))))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 90) (((-3 $ "failed") (-1264 (-317 (-566)))) 79) (((-3 $ "failed") (-1264 (-952 (-381)))) 110) (((-3 $ "failed") (-1264 (-952 (-566)))) 100) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 68) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 55)) (-1867 (($ (-1264 (-317 (-381)))) 86) (($ (-1264 (-317 (-566)))) 75) (($ (-1264 (-952 (-381)))) 106) (($ (-1264 (-952 (-566)))) 96) (($ (-1264 (-409 (-952 (-381))))) 64) (($ (-1264 (-409 (-952 (-566))))) 48)) (-2440 (((-1269) $) 126)) (-3780 (((-862) $) 120) (($ (-644 (-331))) 113) (($ (-331)) 38) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 116) (($ (-1264 (-341 (-3791) (-3791 (QUOTE XC)) (-699)))) 39)))
+(((-79 |#1|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791) (-3791 (QUOTE XC)) (-699))))))) (-1175)) (T -79))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791) (-3791 (QUOTE XC)) (-699)))) (-5 *1 (-79 *3)) (-14 *3 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791) (-3791 (QUOTE XC)) (-699)))))))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 158) (((-3 $ "failed") (-1264 (-317 (-566)))) 148) (((-3 $ "failed") (-1264 (-952 (-381)))) 178) (((-3 $ "failed") (-1264 (-952 (-566)))) 168) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 138) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 126)) (-1867 (($ (-1264 (-317 (-381)))) 154) (($ (-1264 (-317 (-566)))) 144) (($ (-1264 (-952 (-381)))) 174) (($ (-1264 (-952 (-566)))) 164) (($ (-1264 (-409 (-952 (-381))))) 134) (($ (-1264 (-409 (-952 (-566))))) 119)) (-2440 (((-1269) $) 112)) (-3780 (((-862) $) 106) (($ (-644 (-331))) 97) (($ (-331)) 104) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 102) (($ (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699)))) 98)))
+(((-80 |#1|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699))))))) (-1175)) (T -80))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699)))) (-5 *1 (-80 *3)) (-14 *3 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699)))))))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 79) (((-3 $ "failed") (-1264 (-317 (-566)))) 68) (((-3 $ "failed") (-1264 (-952 (-381)))) 99) (((-3 $ "failed") (-1264 (-952 (-566)))) 89) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 57) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 44)) (-1867 (($ (-1264 (-317 (-381)))) 75) (($ (-1264 (-317 (-566)))) 64) (($ (-1264 (-952 (-381)))) 95) (($ (-1264 (-952 (-566)))) 85) (($ (-1264 (-409 (-952 (-381))))) 53) (($ (-1264 (-409 (-952 (-566))))) 37)) (-2440 (((-1269) $) 125)) (-3780 (((-862) $) 119) (($ (-644 (-331))) 110) (($ (-331)) 116) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 114) (($ (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699)))) 36)))
+(((-81 |#1|) (-13 (-443) (-616 (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699))))) (-1175)) (T -81))
+NIL
+(-13 (-443) (-616 (-1264 (-341 (-3791) (-3791 (QUOTE X)) (-699)))))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 98) (((-3 $ "failed") (-1264 (-317 (-566)))) 87) (((-3 $ "failed") (-1264 (-952 (-381)))) 118) (((-3 $ "failed") (-1264 (-952 (-566)))) 108) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 76) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 63)) (-1867 (($ (-1264 (-317 (-381)))) 94) (($ (-1264 (-317 (-566)))) 83) (($ (-1264 (-952 (-381)))) 114) (($ (-1264 (-952 (-566)))) 104) (($ (-1264 (-409 (-952 (-381))))) 72) (($ (-1264 (-409 (-952 (-566))))) 56)) (-2440 (((-1269) $) 48)) (-3780 (((-862) $) 42) (($ (-644 (-331))) 32) (($ (-331)) 35) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 38) (($ (-1264 (-341 (-3791 (QUOTE X) (QUOTE -2519)) (-3791) (-699)))) 33)))
+(((-82 |#1|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE X) (QUOTE -2519)) (-3791) (-699))))))) (-1175)) (T -82))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791 (QUOTE X) (QUOTE -2519)) (-3791) (-699)))) (-5 *1 (-82 *3)) (-14 *3 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE X) (QUOTE -2519)) (-3791) (-699)))))))
+((-3066 (((-3 $ "failed") (-689 (-317 (-381)))) 118) (((-3 $ "failed") (-689 (-317 (-566)))) 107) (((-3 $ "failed") (-689 (-952 (-381)))) 140) (((-3 $ "failed") (-689 (-952 (-566)))) 129) (((-3 $ "failed") (-689 (-409 (-952 (-381))))) 96) (((-3 $ "failed") (-689 (-409 (-952 (-566))))) 83)) (-1867 (($ (-689 (-317 (-381)))) 114) (($ (-689 (-317 (-566)))) 103) (($ (-689 (-952 (-381)))) 136) (($ (-689 (-952 (-566)))) 125) (($ (-689 (-409 (-952 (-381))))) 92) (($ (-689 (-409 (-952 (-566))))) 76)) (-2440 (((-1269) $) 66)) (-3780 (((-862) $) 53) (($ (-644 (-331))) 60) (($ (-331)) 49) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 58) (($ (-689 (-341 (-3791 (QUOTE X) (QUOTE -2519)) (-3791) (-699)))) 50)))
+(((-83 |#1|) (-13 (-386) (-10 -8 (-15 -3780 ($ (-689 (-341 (-3791 (QUOTE X) (QUOTE -2519)) (-3791) (-699))))))) (-1175)) (T -83))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-689 (-341 (-3791 (QUOTE X) (QUOTE -2519)) (-3791) (-699)))) (-5 *1 (-83 *3)) (-14 *3 (-1175)))))
+(-13 (-386) (-10 -8 (-15 -3780 ($ (-689 (-341 (-3791 (QUOTE X) (QUOTE -2519)) (-3791) (-699)))))))
+((-3066 (((-3 $ "failed") (-689 (-317 (-381)))) 113) (((-3 $ "failed") (-689 (-317 (-566)))) 101) (((-3 $ "failed") (-689 (-952 (-381)))) 135) (((-3 $ "failed") (-689 (-952 (-566)))) 124) (((-3 $ "failed") (-689 (-409 (-952 (-381))))) 89) (((-3 $ "failed") (-689 (-409 (-952 (-566))))) 75)) (-1867 (($ (-689 (-317 (-381)))) 109) (($ (-689 (-317 (-566)))) 97) (($ (-689 (-952 (-381)))) 131) (($ (-689 (-952 (-566)))) 120) (($ (-689 (-409 (-952 (-381))))) 85) (($ (-689 (-409 (-952 (-566))))) 68)) (-2440 (((-1269) $) 60)) (-3780 (((-862) $) 54) (($ (-644 (-331))) 48) (($ (-331)) 51) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 45) (($ (-689 (-341 (-3791 (QUOTE X)) (-3791) (-699)))) 46)))
+(((-84 |#1|) (-13 (-386) (-10 -8 (-15 -3780 ($ (-689 (-341 (-3791 (QUOTE X)) (-3791) (-699))))))) (-1175)) (T -84))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-689 (-341 (-3791 (QUOTE X)) (-3791) (-699)))) (-5 *1 (-84 *3)) (-14 *3 (-1175)))))
+(-13 (-386) (-10 -8 (-15 -3780 ($ (-689 (-341 (-3791 (QUOTE X)) (-3791) (-699)))))))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 105) (((-3 $ "failed") (-1264 (-317 (-566)))) 94) (((-3 $ "failed") (-1264 (-952 (-381)))) 125) (((-3 $ "failed") (-1264 (-952 (-566)))) 115) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 83) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 70)) (-1867 (($ (-1264 (-317 (-381)))) 101) (($ (-1264 (-317 (-566)))) 90) (($ (-1264 (-952 (-381)))) 121) (($ (-1264 (-952 (-566)))) 111) (($ (-1264 (-409 (-952 (-381))))) 79) (($ (-1264 (-409 (-952 (-566))))) 63)) (-2440 (((-1269) $) 47)) (-3780 (((-862) $) 41) (($ (-644 (-331))) 50) (($ (-331)) 37) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 53) (($ (-1264 (-341 (-3791 (QUOTE X)) (-3791) (-699)))) 38)))
+(((-85 |#1|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE X)) (-3791) (-699))))))) (-1175)) (T -85))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791 (QUOTE X)) (-3791) (-699)))) (-5 *1 (-85 *3)) (-14 *3 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE X)) (-3791) (-699)))))))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 80) (((-3 $ "failed") (-1264 (-317 (-566)))) 69) (((-3 $ "failed") (-1264 (-952 (-381)))) 100) (((-3 $ "failed") (-1264 (-952 (-566)))) 90) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 58) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 45)) (-1867 (($ (-1264 (-317 (-381)))) 76) (($ (-1264 (-317 (-566)))) 65) (($ (-1264 (-952 (-381)))) 96) (($ (-1264 (-952 (-566)))) 86) (($ (-1264 (-409 (-952 (-381))))) 54) (($ (-1264 (-409 (-952 (-566))))) 38)) (-2440 (((-1269) $) 126)) (-3780 (((-862) $) 120) (($ (-644 (-331))) 111) (($ (-331)) 117) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 115) (($ (-1264 (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699)))) 37)))
+(((-86 |#1|) (-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699))))))) (-1175)) (T -86))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699)))) (-5 *1 (-86 *3)) (-14 *3 (-1175)))))
+(-13 (-443) (-10 -8 (-15 -3780 ($ (-1264 (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699)))))))
+((-3066 (((-3 $ "failed") (-689 (-317 (-381)))) 117) (((-3 $ "failed") (-689 (-317 (-566)))) 105) (((-3 $ "failed") (-689 (-952 (-381)))) 139) (((-3 $ "failed") (-689 (-952 (-566)))) 128) (((-3 $ "failed") (-689 (-409 (-952 (-381))))) 93) (((-3 $ "failed") (-689 (-409 (-952 (-566))))) 79)) (-1867 (($ (-689 (-317 (-381)))) 113) (($ (-689 (-317 (-566)))) 101) (($ (-689 (-952 (-381)))) 135) (($ (-689 (-952 (-566)))) 124) (($ (-689 (-409 (-952 (-381))))) 89) (($ (-689 (-409 (-952 (-566))))) 72)) (-2440 (((-1269) $) 63)) (-3780 (((-862) $) 57) (($ (-644 (-331))) 47) (($ (-331)) 54) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 52) (($ (-689 (-341 (-3791 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3791) (-699)))) 48)))
+(((-87 |#1|) (-13 (-386) (-10 -8 (-15 -3780 ($ (-689 (-341 (-3791 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3791) (-699))))))) (-1175)) (T -87))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-689 (-341 (-3791 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3791) (-699)))) (-5 *1 (-87 *3)) (-14 *3 (-1175)))))
+(-13 (-386) (-10 -8 (-15 -3780 ($ (-689 (-341 (-3791 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3791) (-699)))))))
+((-2440 (((-1269) $) 45)) (-3780 (((-862) $) 39) (($ (-1264 (-699))) 101) (($ (-644 (-331))) 31) (($ (-331)) 36) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 34)))
(((-88 |#1|) (-442) (-1175)) (T -88))
NIL
(-442)
-((-2977 (((-3 $ "failed") (-317 (-381))) 48) (((-3 $ "failed") (-317 (-566))) 53) (((-3 $ "failed") (-952 (-381))) 57) (((-3 $ "failed") (-952 (-566))) 61) (((-3 $ "failed") (-409 (-952 (-381)))) 43) (((-3 $ "failed") (-409 (-952 (-566)))) 36)) (-1756 (($ (-317 (-381))) 46) (($ (-317 (-566))) 51) (($ (-952 (-381))) 55) (($ (-952 (-566))) 59) (($ (-409 (-952 (-381)))) 41) (($ (-409 (-952 (-566)))) 33)) (-2733 (((-1269) $) 91)) (-2512 (((-862) $) 85) (($ (-644 (-331))) 79) (($ (-331)) 82) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 77) (($ (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699))) 32)))
-(((-89 |#1|) (-13 (-398) (-10 -8 (-15 -2512 ($ (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699)))))) (-1175)) (T -89))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699))) (-5 *1 (-89 *3)) (-14 *3 (-1175)))))
-(-13 (-398) (-10 -8 (-15 -2512 ($ (-341 (-2523 (QUOTE X)) (-2523 (QUOTE -2514)) (-699))))))
-((-1954 (((-1264 (-689 |#1|)) (-689 |#1|)) 65)) (-2681 (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 (-644 (-921))))) |#2| (-921)) 54)) (-3769 (((-2 (|:| |minor| (-644 (-921))) (|:| -3525 |#2|) (|:| |minors| (-644 (-644 (-921)))) (|:| |ops| (-644 |#2|))) |#2| (-921)) 76 (|has| |#1| (-365)))))
-(((-90 |#1| |#2|) (-10 -7 (-15 -2681 ((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 (-644 (-921))))) |#2| (-921))) (-15 -1954 ((-1264 (-689 |#1|)) (-689 |#1|))) (IF (|has| |#1| (-365)) (-15 -3769 ((-2 (|:| |minor| (-644 (-921))) (|:| -3525 |#2|) (|:| |minors| (-644 (-644 (-921)))) (|:| |ops| (-644 |#2|))) |#2| (-921))) |%noBranch|)) (-558) (-656 |#1|)) (T -90))
-((-3769 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *5 (-558)) (-5 *2 (-2 (|:| |minor| (-644 (-921))) (|:| -3525 *3) (|:| |minors| (-644 (-644 (-921)))) (|:| |ops| (-644 *3)))) (-5 *1 (-90 *5 *3)) (-5 *4 (-921)) (-4 *3 (-656 *5)))) (-1954 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-1264 (-689 *4))) (-5 *1 (-90 *4 *5)) (-5 *3 (-689 *4)) (-4 *5 (-656 *4)))) (-2681 (*1 *2 *3 *4) (-12 (-4 *5 (-558)) (-5 *2 (-2 (|:| -1380 (-689 *5)) (|:| |vec| (-1264 (-644 (-921)))))) (-5 *1 (-90 *5 *3)) (-5 *4 (-921)) (-4 *3 (-656 *5)))))
-(-10 -7 (-15 -2681 ((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 (-644 (-921))))) |#2| (-921))) (-15 -1954 ((-1264 (-689 |#1|)) (-689 |#1|))) (IF (|has| |#1| (-365)) (-15 -3769 ((-2 (|:| |minor| (-644 (-921))) (|:| -3525 |#2|) (|:| |minors| (-644 (-644 (-921)))) (|:| |ops| (-644 |#2|))) |#2| (-921))) |%noBranch|))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3877 ((|#1| $) 42)) (-3081 (((-112) $ (-771)) NIL)) (-2342 (($) NIL T CONST)) (-1774 ((|#1| |#1| $) 37)) (-3464 ((|#1| $) 35)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3119 ((|#1| $) NIL)) (-4265 (($ |#1| $) 38)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2658 ((|#1| $) 36)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 18)) (-2954 (($) 46)) (-2753 (((-771) $) 33)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) 17)) (-2512 (((-862) $) 32 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) NIL)) (-2093 (($ (-644 |#1|)) 44)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 15 (|has| |#1| (-1099)))) (-2997 (((-771) $) 12 (|has| $ (-6 -4417)))))
-(((-91 |#1|) (-13 (-1120 |#1|) (-10 -8 (-15 -2093 ($ (-644 |#1|))))) (-1099)) (T -91))
-((-2093 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-91 *3)))))
-(-13 (-1120 |#1|) (-10 -8 (-15 -2093 ($ (-644 |#1|)))))
-((-2512 (((-862) $) 13) (($ (-1180)) 9) (((-1180) $) 8)))
-(((-92 |#1|) (-10 -8 (-15 -2512 ((-1180) |#1|)) (-15 -2512 (|#1| (-1180))) (-15 -2512 ((-862) |#1|))) (-93)) (T -92))
-NIL
-(-10 -8 (-15 -2512 ((-1180) |#1|)) (-15 -2512 (|#1| (-1180))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-1180)) 17) (((-1180) $) 16)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-3066 (((-3 $ "failed") (-317 (-381))) 48) (((-3 $ "failed") (-317 (-566))) 53) (((-3 $ "failed") (-952 (-381))) 57) (((-3 $ "failed") (-952 (-566))) 61) (((-3 $ "failed") (-409 (-952 (-381)))) 43) (((-3 $ "failed") (-409 (-952 (-566)))) 36)) (-1867 (($ (-317 (-381))) 46) (($ (-317 (-566))) 51) (($ (-952 (-381))) 55) (($ (-952 (-566))) 59) (($ (-409 (-952 (-381)))) 41) (($ (-409 (-952 (-566)))) 33)) (-2440 (((-1269) $) 91)) (-3780 (((-862) $) 85) (($ (-644 (-331))) 79) (($ (-331)) 82) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 77) (($ (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699))) 32)))
+(((-89 |#1|) (-13 (-398) (-10 -8 (-15 -3780 ($ (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699)))))) (-1175)) (T -89))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699))) (-5 *1 (-89 *3)) (-14 *3 (-1175)))))
+(-13 (-398) (-10 -8 (-15 -3780 ($ (-341 (-3791 (QUOTE X)) (-3791 (QUOTE -2519)) (-699))))))
+((-4295 (((-1264 (-689 |#1|)) (-689 |#1|)) 65)) (-4084 (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 (-644 (-921))))) |#2| (-921)) 54)) (-3757 (((-2 (|:| |minor| (-644 (-921))) (|:| -4257 |#2|) (|:| |minors| (-644 (-644 (-921)))) (|:| |ops| (-644 |#2|))) |#2| (-921)) 76 (|has| |#1| (-365)))))
+(((-90 |#1| |#2|) (-10 -7 (-15 -4084 ((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 (-644 (-921))))) |#2| (-921))) (-15 -4295 ((-1264 (-689 |#1|)) (-689 |#1|))) (IF (|has| |#1| (-365)) (-15 -3757 ((-2 (|:| |minor| (-644 (-921))) (|:| -4257 |#2|) (|:| |minors| (-644 (-644 (-921)))) (|:| |ops| (-644 |#2|))) |#2| (-921))) |%noBranch|)) (-558) (-656 |#1|)) (T -90))
+((-3757 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *5 (-558)) (-5 *2 (-2 (|:| |minor| (-644 (-921))) (|:| -4257 *3) (|:| |minors| (-644 (-644 (-921)))) (|:| |ops| (-644 *3)))) (-5 *1 (-90 *5 *3)) (-5 *4 (-921)) (-4 *3 (-656 *5)))) (-4295 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-1264 (-689 *4))) (-5 *1 (-90 *4 *5)) (-5 *3 (-689 *4)) (-4 *5 (-656 *4)))) (-4084 (*1 *2 *3 *4) (-12 (-4 *5 (-558)) (-5 *2 (-2 (|:| -4193 (-689 *5)) (|:| |vec| (-1264 (-644 (-921)))))) (-5 *1 (-90 *5 *3)) (-5 *4 (-921)) (-4 *3 (-656 *5)))))
+(-10 -7 (-15 -4084 ((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 (-644 (-921))))) |#2| (-921))) (-15 -4295 ((-1264 (-689 |#1|)) (-689 |#1|))) (IF (|has| |#1| (-365)) (-15 -3757 ((-2 (|:| |minor| (-644 (-921))) (|:| -4257 |#2|) (|:| |minors| (-644 (-644 (-921)))) (|:| |ops| (-644 |#2|))) |#2| (-921))) |%noBranch|))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3918 ((|#1| $) 42)) (-1574 (((-112) $ (-771)) NIL)) (-3877 (($) NIL T CONST)) (-3082 ((|#1| |#1| $) 37)) (-3827 ((|#1| $) 35)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3765 ((|#1| $) NIL)) (-2903 (($ |#1| $) 38)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3852 ((|#1| $) 36)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 18)) (-1793 (($) 46)) (-1677 (((-771) $) 33)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) 17)) (-3780 (((-862) $) 32 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) NIL)) (-3255 (($ (-644 |#1|)) 44)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 15 (|has| |#1| (-1099)))) (-3020 (((-771) $) 12 (|has| $ (-6 -4414)))))
+(((-91 |#1|) (-13 (-1120 |#1|) (-10 -8 (-15 -3255 ($ (-644 |#1|))))) (-1099)) (T -91))
+((-3255 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-91 *3)))))
+(-13 (-1120 |#1|) (-10 -8 (-15 -3255 ($ (-644 |#1|)))))
+((-3780 (((-862) $) 13) (($ (-1180)) 9) (((-1180) $) 8)))
+(((-92 |#1|) (-10 -8 (-15 -3780 ((-1180) |#1|)) (-15 -3780 (|#1| (-1180))) (-15 -3780 ((-862) |#1|))) (-93)) (T -92))
+NIL
+(-10 -8 (-15 -3780 ((-1180) |#1|)) (-15 -3780 (|#1| (-1180))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-1180)) 17) (((-1180) $) 16)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-93) (-140)) (T -93))
NIL
(-13 (-1099) (-492 (-1180)))
(((-102) . T) ((-616 #0=(-1180)) . T) ((-613 (-862)) . T) ((-613 #0#) . T) ((-492 #0#) . T) ((-1099) . T))
-((-3194 (($ $) 10)) (-3205 (($ $) 12)))
-(((-94 |#1|) (-10 -8 (-15 -3205 (|#1| |#1|)) (-15 -3194 (|#1| |#1|))) (-95)) (T -94))
+((-4033 (($ $) 10)) (-2834 (($ $) 12)))
+(((-94 |#1|) (-10 -8 (-15 -2834 (|#1| |#1|)) (-15 -4033 (|#1| |#1|))) (-95)) (T -94))
NIL
-(-10 -8 (-15 -3205 (|#1| |#1|)) (-15 -3194 (|#1| |#1|)))
-((-3172 (($ $) 11)) (-3146 (($ $) 10)) (-3194 (($ $) 9)) (-3205 (($ $) 8)) (-3185 (($ $) 7)) (-3160 (($ $) 6)))
+(-10 -8 (-15 -2834 (|#1| |#1|)) (-15 -4033 (|#1| |#1|)))
+((-4009 (($ $) 11)) (-3986 (($ $) 10)) (-4033 (($ $) 9)) (-2834 (($ $) 8)) (-4021 (($ $) 7)) (-3997 (($ $) 6)))
(((-95) (-140)) (T -95))
-((-3172 (*1 *1 *1) (-4 *1 (-95))) (-3146 (*1 *1 *1) (-4 *1 (-95))) (-3194 (*1 *1 *1) (-4 *1 (-95))) (-3205 (*1 *1 *1) (-4 *1 (-95))) (-3185 (*1 *1 *1) (-4 *1 (-95))) (-3160 (*1 *1 *1) (-4 *1 (-95))))
-(-13 (-10 -8 (-15 -3160 ($ $)) (-15 -3185 ($ $)) (-15 -3205 ($ $)) (-15 -3194 ($ $)) (-15 -3146 ($ $)) (-15 -3172 ($ $))))
-((-2985 (((-112) $ $) NIL)) (-2628 (((-1134) $) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 15) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-96) (-13 (-1082) (-10 -8 (-15 -2628 ((-1134) $))))) (T -96))
-((-2628 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-96)))))
-(-13 (-1082) (-10 -8 (-15 -2628 ((-1134) $))))
-((-2985 (((-112) $ $) NIL)) (-1751 (((-381) (-1157) (-381)) 47) (((-381) (-1157) (-1157) (-381)) 45)) (-2755 (((-381) (-381)) 35)) (-3008 (((-1269)) 38)) (-2878 (((-1157) $) NIL)) (-1754 (((-381) (-1157) (-1157)) 51) (((-381) (-1157)) 53)) (-4033 (((-1119) $) NIL)) (-2891 (((-381) (-1157) (-1157)) 52)) (-4348 (((-381) (-1157) (-1157)) 54) (((-381) (-1157)) 55)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-97) (-13 (-1099) (-10 -7 (-15 -1754 ((-381) (-1157) (-1157))) (-15 -1754 ((-381) (-1157))) (-15 -4348 ((-381) (-1157) (-1157))) (-15 -4348 ((-381) (-1157))) (-15 -2891 ((-381) (-1157) (-1157))) (-15 -3008 ((-1269))) (-15 -2755 ((-381) (-381))) (-15 -1751 ((-381) (-1157) (-381))) (-15 -1751 ((-381) (-1157) (-1157) (-381))) (-6 -4417)))) (T -97))
-((-1754 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))) (-1754 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))) (-4348 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))) (-4348 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))) (-2891 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))) (-3008 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-97)))) (-2755 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-97)))) (-1751 (*1 *2 *3 *2) (-12 (-5 *2 (-381)) (-5 *3 (-1157)) (-5 *1 (-97)))) (-1751 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-381)) (-5 *3 (-1157)) (-5 *1 (-97)))))
-(-13 (-1099) (-10 -7 (-15 -1754 ((-381) (-1157) (-1157))) (-15 -1754 ((-381) (-1157))) (-15 -4348 ((-381) (-1157) (-1157))) (-15 -4348 ((-381) (-1157))) (-15 -2891 ((-381) (-1157) (-1157))) (-15 -3008 ((-1269))) (-15 -2755 ((-381) (-381))) (-15 -1751 ((-381) (-1157) (-381))) (-15 -1751 ((-381) (-1157) (-1157) (-381))) (-6 -4417)))
+((-4009 (*1 *1 *1) (-4 *1 (-95))) (-3986 (*1 *1 *1) (-4 *1 (-95))) (-4033 (*1 *1 *1) (-4 *1 (-95))) (-2834 (*1 *1 *1) (-4 *1 (-95))) (-4021 (*1 *1 *1) (-4 *1 (-95))) (-3997 (*1 *1 *1) (-4 *1 (-95))))
+(-13 (-10 -8 (-15 -3997 ($ $)) (-15 -4021 ($ $)) (-15 -2834 ($ $)) (-15 -4033 ($ $)) (-15 -3986 ($ $)) (-15 -4009 ($ $))))
+((-3009 (((-112) $ $) NIL)) (-2639 (((-1134) $) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 15) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-96) (-13 (-1082) (-10 -8 (-15 -2639 ((-1134) $))))) (T -96))
+((-2639 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-96)))))
+(-13 (-1082) (-10 -8 (-15 -2639 ((-1134) $))))
+((-3009 (((-112) $ $) NIL)) (-4080 (((-381) (-1157) (-381)) 47) (((-381) (-1157) (-1157) (-381)) 45)) (-3602 (((-381) (-381)) 35)) (-2217 (((-1269)) 38)) (-2402 (((-1157) $) NIL)) (-4111 (((-381) (-1157) (-1157)) 51) (((-381) (-1157)) 53)) (-4056 (((-1119) $) NIL)) (-4378 (((-381) (-1157) (-1157)) 52)) (-4374 (((-381) (-1157) (-1157)) 54) (((-381) (-1157)) 55)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-97) (-13 (-1099) (-10 -7 (-15 -4111 ((-381) (-1157) (-1157))) (-15 -4111 ((-381) (-1157))) (-15 -4374 ((-381) (-1157) (-1157))) (-15 -4374 ((-381) (-1157))) (-15 -4378 ((-381) (-1157) (-1157))) (-15 -2217 ((-1269))) (-15 -3602 ((-381) (-381))) (-15 -4080 ((-381) (-1157) (-381))) (-15 -4080 ((-381) (-1157) (-1157) (-381))) (-6 -4414)))) (T -97))
+((-4111 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))) (-4111 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))) (-4374 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))) (-4374 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))) (-4378 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))) (-2217 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-97)))) (-3602 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-97)))) (-4080 (*1 *2 *3 *2) (-12 (-5 *2 (-381)) (-5 *3 (-1157)) (-5 *1 (-97)))) (-4080 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-381)) (-5 *3 (-1157)) (-5 *1 (-97)))))
+(-13 (-1099) (-10 -7 (-15 -4111 ((-381) (-1157) (-1157))) (-15 -4111 ((-381) (-1157))) (-15 -4374 ((-381) (-1157) (-1157))) (-15 -4374 ((-381) (-1157))) (-15 -4378 ((-381) (-1157) (-1157))) (-15 -2217 ((-1269))) (-15 -3602 ((-381) (-381))) (-15 -4080 ((-381) (-1157) (-381))) (-15 -4080 ((-381) (-1157) (-1157) (-381))) (-6 -4414)))
NIL
(((-98) (-140)) (T -98))
NIL
-(-13 (-10 -7 (-6 -4417) (-6 (-4419 "*")) (-6 -4418) (-6 -4414) (-6 -4412) (-6 -4411) (-6 -4410) (-6 -4415) (-6 -4409) (-6 -4408) (-6 -4407) (-6 -4406) (-6 -4405) (-6 -4413) (-6 -4416) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4404)))
-((-2985 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-4381 (($ (-1 |#1| |#1|)) 27) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 26) (($ (-1 |#1| |#1| (-566))) 24)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 16)) (-4033 (((-1119) $) NIL)) (-4386 ((|#1| $ |#1|) 13)) (-2032 (($ $ $) NIL)) (-3755 (($ $ $) NIL)) (-2512 (((-862) $) 22)) (-3122 (((-112) $ $) NIL)) (-2495 (($) 8 T CONST)) (-2940 (((-112) $ $) 10)) (-3061 (($ $ $) NIL)) (** (($ $ (-921)) 34) (($ $ (-771)) NIL) (($ $ (-566)) 18)) (* (($ $ $) 35)))
-(((-99 |#1|) (-13 (-475) (-287 |#1| |#1|) (-10 -8 (-15 -4381 ($ (-1 |#1| |#1|))) (-15 -4381 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -4381 ($ (-1 |#1| |#1| (-566)))))) (-1049)) (T -99))
-((-4381 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-99 *3)))) (-4381 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-99 *3)))) (-4381 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-566))) (-4 *3 (-1049)) (-5 *1 (-99 *3)))))
-(-13 (-475) (-287 |#1| |#1|) (-10 -8 (-15 -4381 ($ (-1 |#1| |#1|))) (-15 -4381 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -4381 ($ (-1 |#1| |#1| (-566))))))
-((-1414 (((-420 |#2|) |#2| (-644 |#2|)) 10) (((-420 |#2|) |#2| |#2|) 11)))
-(((-100 |#1| |#2|) (-10 -7 (-15 -1414 ((-420 |#2|) |#2| |#2|)) (-15 -1414 ((-420 |#2|) |#2| (-644 |#2|)))) (-13 (-454) (-147)) (-1240 |#1|)) (T -100))
-((-1414 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-13 (-454) (-147))) (-5 *2 (-420 *3)) (-5 *1 (-100 *5 *3)))) (-1414 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-454) (-147))) (-5 *2 (-420 *3)) (-5 *1 (-100 *4 *3)) (-4 *3 (-1240 *4)))))
-(-10 -7 (-15 -1414 ((-420 |#2|) |#2| |#2|)) (-15 -1414 ((-420 |#2|) |#2| (-644 |#2|))))
-((-2985 (((-112) $ $) 10)))
-(((-101 |#1|) (-10 -8 (-15 -2985 ((-112) |#1| |#1|))) (-102)) (T -101))
-NIL
-(-10 -8 (-15 -2985 ((-112) |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-2940 (((-112) $ $) 6)))
+(-13 (-10 -7 (-6 -4414) (-6 (-4416 "*")) (-6 -4415) (-6 -4411) (-6 -4409) (-6 -4408) (-6 -4407) (-6 -4412) (-6 -4406) (-6 -4405) (-6 -4404) (-6 -4403) (-6 -4402) (-6 -4410) (-6 -4413) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4401)))
+((-3009 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-1603 (($ (-1 |#1| |#1|)) 27) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 26) (($ (-1 |#1| |#1| (-566))) 24)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 16)) (-4056 (((-1119) $) NIL)) (-4393 ((|#1| $ |#1|) 13)) (-3850 (($ $ $) NIL)) (-1783 (($ $ $) NIL)) (-3780 (((-862) $) 22)) (-3801 (((-112) $ $) NIL)) (-4333 (($) 8 T CONST)) (-2950 (((-112) $ $) 10)) (-3062 (($ $ $) NIL)) (** (($ $ (-921)) 34) (($ $ (-771)) NIL) (($ $ (-566)) 18)) (* (($ $ $) 35)))
+(((-99 |#1|) (-13 (-475) (-287 |#1| |#1|) (-10 -8 (-15 -1603 ($ (-1 |#1| |#1|))) (-15 -1603 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1603 ($ (-1 |#1| |#1| (-566)))))) (-1049)) (T -99))
+((-1603 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-99 *3)))) (-1603 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-99 *3)))) (-1603 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3 (-566))) (-4 *3 (-1049)) (-5 *1 (-99 *3)))))
+(-13 (-475) (-287 |#1| |#1|) (-10 -8 (-15 -1603 ($ (-1 |#1| |#1|))) (-15 -1603 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1603 ($ (-1 |#1| |#1| (-566))))))
+((-3708 (((-420 |#2|) |#2| (-644 |#2|)) 10) (((-420 |#2|) |#2| |#2|) 11)))
+(((-100 |#1| |#2|) (-10 -7 (-15 -3708 ((-420 |#2|) |#2| |#2|)) (-15 -3708 ((-420 |#2|) |#2| (-644 |#2|)))) (-13 (-454) (-147)) (-1240 |#1|)) (T -100))
+((-3708 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-13 (-454) (-147))) (-5 *2 (-420 *3)) (-5 *1 (-100 *5 *3)))) (-3708 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-454) (-147))) (-5 *2 (-420 *3)) (-5 *1 (-100 *4 *3)) (-4 *3 (-1240 *4)))))
+(-10 -7 (-15 -3708 ((-420 |#2|) |#2| |#2|)) (-15 -3708 ((-420 |#2|) |#2| (-644 |#2|))))
+((-3009 (((-112) $ $) 10)))
+(((-101 |#1|) (-10 -8 (-15 -3009 ((-112) |#1| |#1|))) (-102)) (T -101))
+NIL
+(-10 -8 (-15 -3009 ((-112) |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-2950 (((-112) $ $) 6)))
(((-102) (-140)) (T -102))
-((-2985 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))) (-2940 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))))
-(-13 (-10 -8 (-15 -2940 ((-112) $ $)) (-15 -2985 ((-112) $ $))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2212 ((|#1| $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-3087 ((|#1| $ |#1|) 24 (|has| $ (-6 -4418)))) (-2094 (($ $ $) NIL (|has| $ (-6 -4418)))) (-4235 (($ $ $) NIL (|has| $ (-6 -4418)))) (-2198 (($ $ (-644 |#1|)) 34)) (-3874 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4418))) (($ $ "left" $) NIL (|has| $ (-6 -4418))) (($ $ "right" $) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-4368 (($ $) 12)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) NIL)) (-4129 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1957 (($ $ |#1| $) 36)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3588 ((|#1| $ (-1 |#1| |#1| |#1|)) 44) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 49)) (-2517 (($ $ |#1| (-1 |#1| |#1| |#1|)) 50) (($ $ |#1| (-1 (-644 |#1|) |#1| |#1| |#1|)) 53)) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-4357 (($ $) 11)) (-2996 (((-644 |#1|) $) NIL)) (-2783 (((-112) $) 13)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 9)) (-2954 (($) 35)) (-4386 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1442 (((-566) $ $) NIL)) (-1313 (((-112) $) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) NIL)) (-2105 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1959 (($ (-771) |#1|) 37)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-103 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4417) (-6 -4418) (-15 -1959 ($ (-771) |#1|)) (-15 -2198 ($ $ (-644 |#1|))) (-15 -3588 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -3588 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -2517 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -2517 ($ $ |#1| (-1 (-644 |#1|) |#1| |#1| |#1|))))) (-1099)) (T -103))
-((-1959 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *1 (-103 *3)) (-4 *3 (-1099)))) (-2198 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-103 *3)))) (-3588 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1099)))) (-3588 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-103 *3)))) (-2517 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1099)) (-5 *1 (-103 *2)))) (-2517 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-644 *2) *2 *2 *2)) (-4 *2 (-1099)) (-5 *1 (-103 *2)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4417) (-6 -4418) (-15 -1959 ($ (-771) |#1|)) (-15 -2198 ($ $ (-644 |#1|))) (-15 -3588 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -3588 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -2517 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -2517 ($ $ |#1| (-1 (-644 |#1|) |#1| |#1| |#1|)))))
-((-1495 ((|#3| |#2| |#2|) 36)) (-3783 ((|#1| |#2| |#2|) 53 (|has| |#1| (-6 (-4419 "*"))))) (-4358 ((|#3| |#2| |#2|) 38)) (-2086 ((|#1| |#2|) 58 (|has| |#1| (-6 (-4419 "*"))))))
-(((-104 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1495 (|#3| |#2| |#2|)) (-15 -4358 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4419 "*"))) (PROGN (-15 -3783 (|#1| |#2| |#2|)) (-15 -2086 (|#1| |#2|))) |%noBranch|)) (-1049) (-1240 |#1|) (-687 |#1| |#4| |#5|) (-375 |#1|) (-375 |#1|)) (T -104))
-((-2086 (*1 *2 *3) (-12 (|has| *2 (-6 (-4419 "*"))) (-4 *5 (-375 *2)) (-4 *6 (-375 *2)) (-4 *2 (-1049)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1240 *2)) (-4 *4 (-687 *2 *5 *6)))) (-3783 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4419 "*"))) (-4 *5 (-375 *2)) (-4 *6 (-375 *2)) (-4 *2 (-1049)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1240 *2)) (-4 *4 (-687 *2 *5 *6)))) (-4358 (*1 *2 *3 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-687 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1240 *4)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)))) (-1495 (*1 *2 *3 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-687 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1240 *4)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)))))
-(-10 -7 (-15 -1495 (|#3| |#2| |#2|)) (-15 -4358 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4419 "*"))) (PROGN (-15 -3783 (|#1| |#2| |#2|)) (-15 -2086 (|#1| |#2|))) |%noBranch|))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3762 (((-644 (-1175))) 37)) (-2225 (((-2 (|:| |zeros| (-1155 (-225))) (|:| |ones| (-1155 (-225))) (|:| |singularities| (-1155 (-225)))) (-1175)) 39)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-105) (-13 (-1099) (-10 -7 (-15 -3762 ((-644 (-1175)))) (-15 -2225 ((-2 (|:| |zeros| (-1155 (-225))) (|:| |ones| (-1155 (-225))) (|:| |singularities| (-1155 (-225)))) (-1175))) (-6 -4417)))) (T -105))
-((-3762 (*1 *2) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-105)))) (-2225 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-2 (|:| |zeros| (-1155 (-225))) (|:| |ones| (-1155 (-225))) (|:| |singularities| (-1155 (-225))))) (-5 *1 (-105)))))
-(-13 (-1099) (-10 -7 (-15 -3762 ((-644 (-1175)))) (-15 -2225 ((-2 (|:| |zeros| (-1155 (-225))) (|:| |ones| (-1155 (-225))) (|:| |singularities| (-1155 (-225)))) (-1175))) (-6 -4417)))
-((-3309 (($ (-644 |#2|)) 11)))
-(((-106 |#1| |#2|) (-10 -8 (-15 -3309 (|#1| (-644 |#2|)))) (-107 |#2|) (-1214)) (T -106))
-NIL
-(-10 -8 (-15 -3309 (|#1| (-644 |#2|))))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) 8)) (-2342 (($) 7 T CONST)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3119 ((|#1| $) 40)) (-4265 (($ |#1| $) 41)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) 43)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))) (-2950 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))))
+(-13 (-10 -8 (-15 -2950 ((-112) $ $)) (-15 -3009 ((-112) $ $))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2252 ((|#1| $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-1637 ((|#1| $ |#1|) 24 (|has| $ (-6 -4415)))) (-3267 (($ $ $) NIL (|has| $ (-6 -4415)))) (-2660 (($ $ $) NIL (|has| $ (-6 -4415)))) (-1831 (($ $ (-644 |#1|)) 34)) (-3916 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4415))) (($ $ "left" $) NIL (|has| $ (-6 -4415))) (($ $ "right" $) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-4394 (($ $) 12)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) NIL)) (-4050 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2043 (($ $ |#1| $) 36)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2565 ((|#1| $ (-1 |#1| |#1| |#1|)) 44) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 49)) (-1877 (($ $ |#1| (-1 |#1| |#1| |#1|)) 50) (($ $ |#1| (-1 (-644 |#1|) |#1| |#1| |#1|)) 53)) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-4380 (($ $) 11)) (-3318 (((-644 |#1|) $) NIL)) (-2675 (((-112) $) 13)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 9)) (-1793 (($) 35)) (-4393 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3969 (((-566) $ $) NIL)) (-1638 (((-112) $) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) NIL)) (-3381 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4338 (($ (-771) |#1|) 37)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-103 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4414) (-6 -4415) (-15 -4338 ($ (-771) |#1|)) (-15 -1831 ($ $ (-644 |#1|))) (-15 -2565 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2565 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -1877 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -1877 ($ $ |#1| (-1 (-644 |#1|) |#1| |#1| |#1|))))) (-1099)) (T -103))
+((-4338 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *1 (-103 *3)) (-4 *3 (-1099)))) (-1831 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-103 *3)))) (-2565 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1099)))) (-2565 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-103 *3)))) (-1877 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1099)) (-5 *1 (-103 *2)))) (-1877 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 (-644 *2) *2 *2 *2)) (-4 *2 (-1099)) (-5 *1 (-103 *2)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4414) (-6 -4415) (-15 -4338 ($ (-771) |#1|)) (-15 -1831 ($ $ (-644 |#1|))) (-15 -2565 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -2565 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -1877 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -1877 ($ $ |#1| (-1 (-644 |#1|) |#1| |#1| |#1|)))))
+((-3292 ((|#3| |#2| |#2|) 36)) (-3892 ((|#1| |#2| |#2|) 53 (|has| |#1| (-6 (-4416 "*"))))) (-1357 ((|#3| |#2| |#2|) 38)) (-3184 ((|#1| |#2|) 58 (|has| |#1| (-6 (-4416 "*"))))))
+(((-104 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3292 (|#3| |#2| |#2|)) (-15 -1357 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4416 "*"))) (PROGN (-15 -3892 (|#1| |#2| |#2|)) (-15 -3184 (|#1| |#2|))) |%noBranch|)) (-1049) (-1240 |#1|) (-687 |#1| |#4| |#5|) (-375 |#1|) (-375 |#1|)) (T -104))
+((-3184 (*1 *2 *3) (-12 (|has| *2 (-6 (-4416 "*"))) (-4 *5 (-375 *2)) (-4 *6 (-375 *2)) (-4 *2 (-1049)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1240 *2)) (-4 *4 (-687 *2 *5 *6)))) (-3892 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4416 "*"))) (-4 *5 (-375 *2)) (-4 *6 (-375 *2)) (-4 *2 (-1049)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1240 *2)) (-4 *4 (-687 *2 *5 *6)))) (-1357 (*1 *2 *3 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-687 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1240 *4)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)))) (-3292 (*1 *2 *3 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-687 *4 *5 *6)) (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1240 *4)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)))))
+(-10 -7 (-15 -3292 (|#3| |#2| |#2|)) (-15 -1357 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4416 "*"))) (PROGN (-15 -3892 (|#1| |#2| |#2|)) (-15 -3184 (|#1| |#2|))) |%noBranch|))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3721 (((-644 (-1175))) 37)) (-2062 (((-2 (|:| |zeros| (-1155 (-225))) (|:| |ones| (-1155 (-225))) (|:| |singularities| (-1155 (-225)))) (-1175)) 39)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-105) (-13 (-1099) (-10 -7 (-15 -3721 ((-644 (-1175)))) (-15 -2062 ((-2 (|:| |zeros| (-1155 (-225))) (|:| |ones| (-1155 (-225))) (|:| |singularities| (-1155 (-225)))) (-1175))) (-6 -4414)))) (T -105))
+((-3721 (*1 *2) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-105)))) (-2062 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-2 (|:| |zeros| (-1155 (-225))) (|:| |ones| (-1155 (-225))) (|:| |singularities| (-1155 (-225))))) (-5 *1 (-105)))))
+(-13 (-1099) (-10 -7 (-15 -3721 ((-644 (-1175)))) (-15 -2062 ((-2 (|:| |zeros| (-1155 (-225))) (|:| |ones| (-1155 (-225))) (|:| |singularities| (-1155 (-225)))) (-1175))) (-6 -4414)))
+((-2926 (($ (-644 |#2|)) 11)))
+(((-106 |#1| |#2|) (-10 -8 (-15 -2926 (|#1| (-644 |#2|)))) (-107 |#2|) (-1214)) (T -106))
+NIL
+(-10 -8 (-15 -2926 (|#1| (-644 |#2|))))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) 8)) (-3877 (($) 7 T CONST)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3765 ((|#1| $) 40)) (-2903 (($ |#1| $) 41)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) 43)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-107 |#1|) (-140) (-1214)) (T -107))
-((-3309 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-107 *3)))) (-2658 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214)))) (-4265 (*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214)))) (-3119 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214)))))
-(-13 (-491 |t#1|) (-10 -8 (-6 -4418) (-15 -3309 ($ (-644 |t#1|))) (-15 -2658 (|t#1| $)) (-15 -4265 ($ |t#1| $)) (-15 -3119 (|t#1| $))))
+((-2926 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-107 *3)))) (-3852 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214)))) (-2903 (*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214)))) (-3765 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214)))))
+(-13 (-491 |t#1|) (-10 -8 (-6 -4415) (-15 -2926 ($ (-644 |t#1|))) (-15 -3852 (|t#1| $)) (-15 -2903 ($ |t#1| $)) (-15 -3765 (|t#1| $))))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2452 (((-566) $) NIL (|has| (-566) (-308)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL (|has| (-566) (-820)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-566) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-566) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-566) (-1038 (-566))))) (-1756 (((-566) $) NIL) (((-1175) $) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-566) (-1038 (-566)))) (((-566) $) NIL (|has| (-566) (-1038 (-566))))) (-2926 (($ $ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-566) (-547)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-1684 (((-112) $) NIL (|has| (-566) (-820)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-566) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-566) (-886 (-381))))) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL)) (-3001 (((-566) $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| (-566) (-1150)))) (-1578 (((-112) $) NIL (|has| (-566) (-820)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| (-566) (-850)))) (-3077 (($ (-1 (-566) (-566)) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-566) (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL (|has| (-566) (-308))) (((-409 (-566)) $) NIL)) (-4317 (((-566) $) NIL (|has| (-566) (-547)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2070 (($ $ (-644 (-566)) (-644 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-566) (-566)) NIL (|has| (-566) (-310 (-566)))) (($ $ (-295 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-295 (-566)))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-1175)) (-644 (-566))) NIL (|has| (-566) (-516 (-1175) (-566)))) (($ $ (-1175) (-566)) NIL (|has| (-566) (-516 (-1175) (-566))))) (-1813 (((-771) $) NIL)) (-4386 (($ $ (-566)) NIL (|has| (-566) (-287 (-566) (-566))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-3413 (($ $) NIL)) (-3013 (((-566) $) NIL)) (-3134 (((-892 (-566)) $) NIL (|has| (-566) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-566) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-566) (-614 (-538)))) (((-381) $) NIL (|has| (-566) (-1022))) (((-225) $) NIL (|has| (-566) (-1022)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-566) (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) 8) (($ (-566)) NIL) (($ (-1175)) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL) (((-1004 2) $) 10)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-566) (-909))) (|has| (-566) (-145))))) (-3795 (((-771)) NIL T CONST)) (-1604 (((-566) $) NIL (|has| (-566) (-547)))) (-1951 (($ (-409 (-566))) 9)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-1346 (($ $) NIL (|has| (-566) (-820)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-2998 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2962 (((-112) $ $) NIL (|has| (-566) (-850)))) (-3061 (($ $ $) NIL) (($ (-566) (-566)) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-566) $) NIL) (($ $ (-566)) NIL)))
-(((-108) (-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 2)) (-10 -8 (-15 -1539 ((-409 (-566)) $)) (-15 -1951 ($ (-409 (-566))))))) (T -108))
-((-1539 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-108)))) (-1951 (*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-108)))))
-(-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 2)) (-10 -8 (-15 -1539 ((-409 (-566)) $)) (-15 -1951 ($ (-409 (-566))))))
-((-2165 (((-644 (-965)) $) 13)) (-2628 (((-508) $) 9)) (-2512 (((-862) $) 20)) (-2900 (($ (-508) (-644 (-965))) 15)))
-(((-109) (-13 (-613 (-862)) (-10 -8 (-15 -2628 ((-508) $)) (-15 -2165 ((-644 (-965)) $)) (-15 -2900 ($ (-508) (-644 (-965))))))) (T -109))
-((-2628 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-109)))) (-2165 (*1 *2 *1) (-12 (-5 *2 (-644 (-965))) (-5 *1 (-109)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-644 (-965))) (-5 *1 (-109)))))
-(-13 (-613 (-862)) (-10 -8 (-15 -2628 ((-508) $)) (-15 -2165 ((-644 (-965)) $)) (-15 -2900 ($ (-508) (-644 (-965))))))
-((-2985 (((-112) $ $) NIL)) (-3009 (($ $) NIL)) (-2461 (($ $ $) NIL)) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) $) NIL (|has| (-112) (-850))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3426 (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| (-112) (-850)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4418)))) (-3290 (($ $) NIL (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-3874 (((-112) $ (-1231 (-566)) (-112)) NIL (|has| $ (-6 -4418))) (((-112) $ (-566) (-112)) NIL (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-2651 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4417))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-4362 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-1332 (((-112) $ (-566) (-112)) NIL (|has| $ (-6 -4418)))) (-3137 (((-112) $ (-566)) NIL)) (-3968 (((-566) (-112) $ (-566)) NIL (|has| (-112) (-1099))) (((-566) (-112) $) NIL (|has| (-112) (-1099))) (((-566) (-1 (-112) (-112)) $) NIL)) (-3372 (((-644 (-112)) $) NIL (|has| $ (-6 -4417)))) (-2450 (($ $ $) NIL)) (-2426 (($ $) NIL)) (-3911 (($ $ $) NIL)) (-4257 (($ (-771) (-112)) 10)) (-3244 (($ $ $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL)) (-3132 (($ $ $) NIL (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2404 (((-644 (-112)) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL)) (-1323 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-4268 (($ $ $ (-566)) NIL) (($ (-112) $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 (((-112) $) NIL (|has| (-566) (-850)))) (-2126 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-1720 (($ $ (-112)) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-112)) (-644 (-112))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-295 (-112))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-644 (-295 (-112)))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-2784 (((-644 (-112)) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 (($ $ (-1231 (-566))) NIL) (((-112) $ (-566)) NIL) (((-112) $ (-566) (-112)) NIL)) (-2201 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-4044 (((-771) (-112) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099)))) (((-771) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4417)))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-112) (-614 (-538))))) (-2523 (($ (-644 (-112))) NIL)) (-3704 (($ (-644 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-2512 (((-862) $) NIL)) (-3082 (($ (-771) (-112)) 11)) (-3122 (((-112) $ $) NIL)) (-3427 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4417)))) (-2438 (($ $ $) NIL)) (-3058 (($ $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)) (-3044 (($ $ $) NIL)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-110) (-13 (-123) (-10 -8 (-15 -3082 ($ (-771) (-112)))))) (T -110))
-((-3082 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *3 (-112)) (-5 *1 (-110)))))
-(-13 (-123) (-10 -8 (-15 -3082 ($ (-771) (-112)))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27) (($ $ |#2|) 31)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2486 (((-566) $) NIL (|has| (-566) (-308)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL (|has| (-566) (-820)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-566) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-566) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-566) (-1038 (-566))))) (-1867 (((-566) $) NIL) (((-1175) $) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-566) (-1038 (-566)))) (((-566) $) NIL (|has| (-566) (-1038 (-566))))) (-2949 (($ $ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-566) (-547)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1533 (((-112) $) NIL (|has| (-566) (-820)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-566) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-566) (-886 (-381))))) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL)) (-3088 (((-566) $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| (-566) (-1150)))) (-2917 (((-112) $) NIL (|has| (-566) (-820)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| (-566) (-850)))) (-3152 (($ (-1 (-566) (-566)) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-566) (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL (|has| (-566) (-308))) (((-409 (-566)) $) NIL)) (-2209 (((-566) $) NIL (|has| (-566) (-547)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2095 (($ $ (-644 (-566)) (-644 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-566) (-566)) NIL (|has| (-566) (-310 (-566)))) (($ $ (-295 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-295 (-566)))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-1175)) (-644 (-566))) NIL (|has| (-566) (-516 (-1175) (-566)))) (($ $ (-1175) (-566)) NIL (|has| (-566) (-516 (-1175) (-566))))) (-3470 (((-771) $) NIL)) (-4393 (($ $ (-566)) NIL (|has| (-566) (-287 (-566) (-566))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-1431 (($ $) NIL)) (-3100 (((-566) $) NIL)) (-3204 (((-892 (-566)) $) NIL (|has| (-566) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-566) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-566) (-614 (-538)))) (((-381) $) NIL (|has| (-566) (-1022))) (((-225) $) NIL (|has| (-566) (-1022)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-566) (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) 8) (($ (-566)) NIL) (($ (-1175)) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL) (((-1004 2) $) 10)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-566) (-909))) (|has| (-566) (-145))))) (-3996 (((-771)) NIL T CONST)) (-1982 (((-566) $) NIL (|has| (-566) (-547)))) (-4270 (($ (-409 (-566))) 9)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3333 (($ $) NIL (|has| (-566) (-820)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-3010 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2972 (((-112) $ $) NIL (|has| (-566) (-850)))) (-3062 (($ $ $) NIL) (($ (-566) (-566)) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-566) $) NIL) (($ $ (-566)) NIL)))
+(((-108) (-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 2)) (-10 -8 (-15 -2539 ((-409 (-566)) $)) (-15 -4270 ($ (-409 (-566))))))) (T -108))
+((-2539 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-108)))) (-4270 (*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-108)))))
+(-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 2)) (-10 -8 (-15 -2539 ((-409 (-566)) $)) (-15 -4270 ($ (-409 (-566))))))
+((-2927 (((-644 (-965)) $) 13)) (-2639 (((-508) $) 9)) (-3780 (((-862) $) 20)) (-1373 (($ (-508) (-644 (-965))) 15)))
+(((-109) (-13 (-613 (-862)) (-10 -8 (-15 -2639 ((-508) $)) (-15 -2927 ((-644 (-965)) $)) (-15 -1373 ($ (-508) (-644 (-965))))))) (T -109))
+((-2639 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-109)))) (-2927 (*1 *2 *1) (-12 (-5 *2 (-644 (-965))) (-5 *1 (-109)))) (-1373 (*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-644 (-965))) (-5 *1 (-109)))))
+(-13 (-613 (-862)) (-10 -8 (-15 -2639 ((-508) $)) (-15 -2927 ((-644 (-965)) $)) (-15 -1373 ($ (-508) (-644 (-965))))))
+((-3009 (((-112) $ $) NIL)) (-3028 (($ $) NIL)) (-2470 (($ $ $) NIL)) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) $) NIL (|has| (-112) (-850))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-1570 (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| (-112) (-850)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4415)))) (-1568 (($ $) NIL (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-3916 (((-112) $ (-1231 (-566)) (-112)) NIL (|has| $ (-6 -4415))) (((-112) $ (-566) (-112)) NIL (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-2661 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4414))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-1580 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-3128 (((-112) $ (-566) (-112)) NIL (|has| $ (-6 -4415)))) (-3059 (((-112) $ (-566)) NIL)) (-4015 (((-566) (-112) $ (-566)) NIL (|has| (-112) (-1099))) (((-566) (-112) $) NIL (|has| (-112) (-1099))) (((-566) (-1 (-112) (-112)) $) NIL)) (-3799 (((-644 (-112)) $) NIL (|has| $ (-6 -4414)))) (-2461 (($ $ $) NIL)) (-2436 (($ $) NIL)) (-2626 (($ $ $) NIL)) (-4278 (($ (-771) (-112)) 10)) (-3600 (($ $ $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL)) (-3891 (($ $ $) NIL (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-3276 (((-644 (-112)) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL)) (-3117 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-4286 (($ $ $ (-566)) NIL) (($ (-112) $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 (((-112) $) NIL (|has| (-566) (-850)))) (-3591 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-3750 (($ $ (-112)) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-112)) (-644 (-112))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-295 (-112))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-644 (-295 (-112)))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-2684 (((-644 (-112)) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 (($ $ (-1231 (-566))) NIL) (((-112) $ (-566)) NIL) (((-112) $ (-566) (-112)) NIL)) (-2215 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-4067 (((-771) (-112) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099)))) (((-771) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4414)))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-112) (-614 (-538))))) (-3791 (($ (-644 (-112))) NIL)) (-3727 (($ (-644 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3780 (((-862) $) NIL)) (-1586 (($ (-771) (-112)) 11)) (-3801 (((-112) $ $) NIL)) (-1583 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4414)))) (-2447 (($ $ $) NIL)) (-3074 (($ $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-110) (-13 (-123) (-10 -8 (-15 -1586 ($ (-771) (-112)))))) (T -110))
+((-1586 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *3 (-112)) (-5 *1 (-110)))))
+(-13 (-123) (-10 -8 (-15 -1586 ($ (-771) (-112)))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27) (($ $ |#2|) 31)))
(((-111 |#1| |#2|) (-140) (-1049) (-1049)) (T -111))
NIL
-(-13 (-648 |t#1|) (-1056 |t#2|) (-10 -7 (-6 -4412) (-6 -4411)))
+(-13 (-648 |t#1|) (-1056 |t#2|) (-10 -7 (-6 -4409) (-6 -4408)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-648 |#1|) . T) ((-1051 |#2|) . T) ((-1056 |#2|) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3009 (($ $) 13)) (-2461 (($ $ $) 18)) (-3398 (($) 7 T CONST)) (-3489 (($ $) 6)) (-4025 (((-771)) 26)) (-3335 (($) 34)) (-2450 (($ $ $) 16)) (-2426 (($ $) 9)) (-3911 (($ $ $) 19)) (-3244 (($ $ $) 20)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3712 (((-921) $) 32)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) 30)) (-2251 (($ $ $) 22)) (-4033 (((-1119) $) NIL)) (-2234 (($) 8 T CONST)) (-3679 (($ $ $) 23)) (-3134 (((-538) $) 36)) (-2512 (((-862) $) 38)) (-3122 (((-112) $ $) NIL)) (-2438 (($ $ $) 14)) (-3058 (($ $ $) 17)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 21)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 24)) (-3044 (($ $ $) 15)))
-(((-112) (-13 (-844) (-661) (-967) (-614 (-538)) (-10 -8 (-15 -2461 ($ $ $)) (-15 -3244 ($ $ $)) (-15 -3911 ($ $ $)) (-15 -3489 ($ $))))) (T -112))
-((-2461 (*1 *1 *1 *1) (-5 *1 (-112))) (-3244 (*1 *1 *1 *1) (-5 *1 (-112))) (-3911 (*1 *1 *1 *1) (-5 *1 (-112))) (-3489 (*1 *1 *1) (-5 *1 (-112))))
-(-13 (-844) (-661) (-967) (-614 (-538)) (-10 -8 (-15 -2461 ($ $ $)) (-15 -3244 ($ $ $)) (-15 -3911 ($ $ $)) (-15 -3489 ($ $))))
-((-3098 (((-3 (-1 |#1| (-644 |#1|)) "failed") (-114)) 23) (((-114) (-114) (-1 |#1| |#1|)) 13) (((-114) (-114) (-1 |#1| (-644 |#1|))) 11) (((-3 |#1| "failed") (-114) (-644 |#1|)) 25)) (-3495 (((-3 (-644 (-1 |#1| (-644 |#1|))) "failed") (-114)) 29) (((-114) (-114) (-1 |#1| |#1|)) 33) (((-114) (-114) (-644 (-1 |#1| (-644 |#1|)))) 30)) (-2065 (((-114) |#1|) 63)) (-1850 (((-3 |#1| "failed") (-114)) 58)))
-(((-113 |#1|) (-10 -7 (-15 -3098 ((-3 |#1| "failed") (-114) (-644 |#1|))) (-15 -3098 ((-114) (-114) (-1 |#1| (-644 |#1|)))) (-15 -3098 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3098 ((-3 (-1 |#1| (-644 |#1|)) "failed") (-114))) (-15 -3495 ((-114) (-114) (-644 (-1 |#1| (-644 |#1|))))) (-15 -3495 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3495 ((-3 (-644 (-1 |#1| (-644 |#1|))) "failed") (-114))) (-15 -2065 ((-114) |#1|)) (-15 -1850 ((-3 |#1| "failed") (-114)))) (-1099)) (T -113))
-((-1850 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *1 (-113 *2)) (-4 *2 (-1099)))) (-2065 (*1 *2 *3) (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-1099)))) (-3495 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-644 (-1 *4 (-644 *4)))) (-5 *1 (-113 *4)) (-4 *4 (-1099)))) (-3495 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1099)) (-5 *1 (-113 *4)))) (-3495 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-644 (-1 *4 (-644 *4)))) (-4 *4 (-1099)) (-5 *1 (-113 *4)))) (-3098 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-644 *4))) (-5 *1 (-113 *4)) (-4 *4 (-1099)))) (-3098 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1099)) (-5 *1 (-113 *4)))) (-3098 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-644 *4))) (-4 *4 (-1099)) (-5 *1 (-113 *4)))) (-3098 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-644 *2)) (-5 *1 (-113 *2)) (-4 *2 (-1099)))))
-(-10 -7 (-15 -3098 ((-3 |#1| "failed") (-114) (-644 |#1|))) (-15 -3098 ((-114) (-114) (-1 |#1| (-644 |#1|)))) (-15 -3098 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3098 ((-3 (-1 |#1| (-644 |#1|)) "failed") (-114))) (-15 -3495 ((-114) (-114) (-644 (-1 |#1| (-644 |#1|))))) (-15 -3495 ((-114) (-114) (-1 |#1| |#1|))) (-15 -3495 ((-3 (-644 (-1 |#1| (-644 |#1|))) "failed") (-114))) (-15 -2065 ((-114) |#1|)) (-15 -1850 ((-3 |#1| "failed") (-114))))
-((-2985 (((-112) $ $) NIL)) (-3467 (((-771) $) 91) (($ $ (-771)) 37)) (-4278 (((-112) $) 41)) (-2933 (($ $ (-1157) (-774)) 58) (($ $ (-508) (-774)) 33)) (-1469 (($ $ (-45 (-1157) (-774))) 16)) (-3135 (((-3 (-774) "failed") $ (-1157)) 27) (((-691 (-774)) $ (-508)) 32)) (-2165 (((-45 (-1157) (-774)) $) 15)) (-2336 (($ (-1175)) 20) (($ (-1175) (-771)) 23) (($ (-1175) (-55)) 24)) (-2238 (((-112) $) 39)) (-3380 (((-112) $) 43)) (-2628 (((-1175) $) 8)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-2181 (((-112) $ (-1175)) 11)) (-1758 (($ $ (-1 (-538) (-644 (-538)))) 64) (((-3 (-1 (-538) (-644 (-538))) "failed") $) 71)) (-4033 (((-1119) $) NIL)) (-2832 (((-112) $ (-508)) 36)) (-1419 (($ $ (-1 (-112) $ $)) 45)) (-1697 (((-3 (-1 (-862) (-644 (-862))) "failed") $) 69) (($ $ (-1 (-862) (-644 (-862)))) 51) (($ $ (-1 (-862) (-862))) 53)) (-1838 (($ $ (-1157)) 55) (($ $ (-508)) 56)) (-3895 (($ $) 77)) (-3310 (($ $ (-1 (-112) $ $)) 46)) (-2512 (((-862) $) 60)) (-3122 (((-112) $ $) NIL)) (-1474 (($ $ (-508)) 34)) (-1965 (((-55) $) 72)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 89)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 103)))
-(((-114) (-13 (-850) (-835 (-1175)) (-10 -8 (-15 -2165 ((-45 (-1157) (-774)) $)) (-15 -3895 ($ $)) (-15 -2336 ($ (-1175))) (-15 -2336 ($ (-1175) (-771))) (-15 -2336 ($ (-1175) (-55))) (-15 -2238 ((-112) $)) (-15 -4278 ((-112) $)) (-15 -3380 ((-112) $)) (-15 -3467 ((-771) $)) (-15 -3467 ($ $ (-771))) (-15 -1419 ($ $ (-1 (-112) $ $))) (-15 -3310 ($ $ (-1 (-112) $ $))) (-15 -1697 ((-3 (-1 (-862) (-644 (-862))) "failed") $)) (-15 -1697 ($ $ (-1 (-862) (-644 (-862))))) (-15 -1697 ($ $ (-1 (-862) (-862)))) (-15 -1758 ($ $ (-1 (-538) (-644 (-538))))) (-15 -1758 ((-3 (-1 (-538) (-644 (-538))) "failed") $)) (-15 -2832 ((-112) $ (-508))) (-15 -1474 ($ $ (-508))) (-15 -1838 ($ $ (-1157))) (-15 -1838 ($ $ (-508))) (-15 -3135 ((-3 (-774) "failed") $ (-1157))) (-15 -3135 ((-691 (-774)) $ (-508))) (-15 -2933 ($ $ (-1157) (-774))) (-15 -2933 ($ $ (-508) (-774))) (-15 -1469 ($ $ (-45 (-1157) (-774))))))) (T -114))
-((-2165 (*1 *2 *1) (-12 (-5 *2 (-45 (-1157) (-774))) (-5 *1 (-114)))) (-3895 (*1 *1 *1) (-5 *1 (-114))) (-2336 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-114)))) (-2336 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-771)) (-5 *1 (-114)))) (-2336 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-55)) (-5 *1 (-114)))) (-2238 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-4278 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-3380 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-3467 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-114)))) (-3467 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-114)))) (-1419 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-3310 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-1697 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-862) (-644 (-862)))) (-5 *1 (-114)))) (-1697 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-862) (-644 (-862)))) (-5 *1 (-114)))) (-1697 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-862) (-862))) (-5 *1 (-114)))) (-1758 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-538) (-644 (-538)))) (-5 *1 (-114)))) (-1758 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-538) (-644 (-538)))) (-5 *1 (-114)))) (-2832 (*1 *2 *1 *3) (-12 (-5 *3 (-508)) (-5 *2 (-112)) (-5 *1 (-114)))) (-1474 (*1 *1 *1 *2) (-12 (-5 *2 (-508)) (-5 *1 (-114)))) (-1838 (*1 *1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-114)))) (-1838 (*1 *1 *1 *2) (-12 (-5 *2 (-508)) (-5 *1 (-114)))) (-3135 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1157)) (-5 *2 (-774)) (-5 *1 (-114)))) (-3135 (*1 *2 *1 *3) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-774))) (-5 *1 (-114)))) (-2933 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-774)) (-5 *1 (-114)))) (-2933 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-774)) (-5 *1 (-114)))) (-1469 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1157) (-774))) (-5 *1 (-114)))))
-(-13 (-850) (-835 (-1175)) (-10 -8 (-15 -2165 ((-45 (-1157) (-774)) $)) (-15 -3895 ($ $)) (-15 -2336 ($ (-1175))) (-15 -2336 ($ (-1175) (-771))) (-15 -2336 ($ (-1175) (-55))) (-15 -2238 ((-112) $)) (-15 -4278 ((-112) $)) (-15 -3380 ((-112) $)) (-15 -3467 ((-771) $)) (-15 -3467 ($ $ (-771))) (-15 -1419 ($ $ (-1 (-112) $ $))) (-15 -3310 ($ $ (-1 (-112) $ $))) (-15 -1697 ((-3 (-1 (-862) (-644 (-862))) "failed") $)) (-15 -1697 ($ $ (-1 (-862) (-644 (-862))))) (-15 -1697 ($ $ (-1 (-862) (-862)))) (-15 -1758 ($ $ (-1 (-538) (-644 (-538))))) (-15 -1758 ((-3 (-1 (-538) (-644 (-538))) "failed") $)) (-15 -2832 ((-112) $ (-508))) (-15 -1474 ($ $ (-508))) (-15 -1838 ($ $ (-1157))) (-15 -1838 ($ $ (-508))) (-15 -3135 ((-3 (-774) "failed") $ (-1157))) (-15 -3135 ((-691 (-774)) $ (-508))) (-15 -2933 ($ $ (-1157) (-774))) (-15 -2933 ($ $ (-508) (-774))) (-15 -1469 ($ $ (-45 (-1157) (-774))))))
-((-2474 (((-566) |#2|) 41)))
-(((-115 |#1| |#2|) (-10 -7 (-15 -2474 ((-566) |#2|))) (-13 (-365) (-1038 (-409 (-566)))) (-1240 |#1|)) (T -115))
-((-2474 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-1038 (-409 *2)))) (-5 *2 (-566)) (-5 *1 (-115 *4 *3)) (-4 *3 (-1240 *4)))))
-(-10 -7 (-15 -2474 ((-566) |#2|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2402 (($ $ (-566)) NIL)) (-1561 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-3791 (($ (-1171 (-566)) (-566)) NIL)) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3384 (($ $) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2716 (((-771) $) NIL)) (-2741 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-4030 (((-566)) NIL)) (-3692 (((-566) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1938 (($ $ (-566)) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3159 (((-1155 (-566)) $) NIL)) (-1973 (($ $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-3645 (((-566) $ (-566)) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3028 (($ $) 13)) (-2470 (($ $ $) 18)) (-3400 (($) 7 T CONST)) (-4229 (($ $) 6)) (-4070 (((-771)) 26)) (-1618 (($) 34)) (-2461 (($ $ $) 16)) (-2436 (($ $) 9)) (-2626 (($ $ $) 19)) (-3600 (($ $ $) 20)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1299 (((-921) $) 32)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) 30)) (-2323 (($ $ $) 22)) (-4056 (((-1119) $) NIL)) (-2247 (($) 8 T CONST)) (-2219 (($ $ $) 23)) (-3204 (((-538) $) 36)) (-3780 (((-862) $) 38)) (-3801 (((-112) $ $) NIL)) (-2447 (($ $ $) 14)) (-3074 (($ $ $) 17)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 21)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 24)) (-3061 (($ $ $) 15)))
+(((-112) (-13 (-844) (-661) (-967) (-614 (-538)) (-10 -8 (-15 -2470 ($ $ $)) (-15 -3600 ($ $ $)) (-15 -2626 ($ $ $)) (-15 -4229 ($ $))))) (T -112))
+((-2470 (*1 *1 *1 *1) (-5 *1 (-112))) (-3600 (*1 *1 *1 *1) (-5 *1 (-112))) (-2626 (*1 *1 *1 *1) (-5 *1 (-112))) (-4229 (*1 *1 *1) (-5 *1 (-112))))
+(-13 (-844) (-661) (-967) (-614 (-538)) (-10 -8 (-15 -2470 ($ $ $)) (-15 -3600 ($ $ $)) (-15 -2626 ($ $ $)) (-15 -4229 ($ $))))
+((-1722 (((-3 (-1 |#1| (-644 |#1|)) "failed") (-114)) 23) (((-114) (-114) (-1 |#1| |#1|)) 13) (((-114) (-114) (-1 |#1| (-644 |#1|))) 11) (((-3 |#1| "failed") (-114) (-644 |#1|)) 25)) (-4147 (((-3 (-644 (-1 |#1| (-644 |#1|))) "failed") (-114)) 29) (((-114) (-114) (-1 |#1| |#1|)) 33) (((-114) (-114) (-644 (-1 |#1| (-644 |#1|)))) 30)) (-4179 (((-114) |#1|) 63)) (-2628 (((-3 |#1| "failed") (-114)) 58)))
+(((-113 |#1|) (-10 -7 (-15 -1722 ((-3 |#1| "failed") (-114) (-644 |#1|))) (-15 -1722 ((-114) (-114) (-1 |#1| (-644 |#1|)))) (-15 -1722 ((-114) (-114) (-1 |#1| |#1|))) (-15 -1722 ((-3 (-1 |#1| (-644 |#1|)) "failed") (-114))) (-15 -4147 ((-114) (-114) (-644 (-1 |#1| (-644 |#1|))))) (-15 -4147 ((-114) (-114) (-1 |#1| |#1|))) (-15 -4147 ((-3 (-644 (-1 |#1| (-644 |#1|))) "failed") (-114))) (-15 -4179 ((-114) |#1|)) (-15 -2628 ((-3 |#1| "failed") (-114)))) (-1099)) (T -113))
+((-2628 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *1 (-113 *2)) (-4 *2 (-1099)))) (-4179 (*1 *2 *3) (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-1099)))) (-4147 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-644 (-1 *4 (-644 *4)))) (-5 *1 (-113 *4)) (-4 *4 (-1099)))) (-4147 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1099)) (-5 *1 (-113 *4)))) (-4147 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-644 (-1 *4 (-644 *4)))) (-4 *4 (-1099)) (-5 *1 (-113 *4)))) (-1722 (*1 *2 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-644 *4))) (-5 *1 (-113 *4)) (-4 *4 (-1099)))) (-1722 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1099)) (-5 *1 (-113 *4)))) (-1722 (*1 *2 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-644 *4))) (-4 *4 (-1099)) (-5 *1 (-113 *4)))) (-1722 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-644 *2)) (-5 *1 (-113 *2)) (-4 *2 (-1099)))))
+(-10 -7 (-15 -1722 ((-3 |#1| "failed") (-114) (-644 |#1|))) (-15 -1722 ((-114) (-114) (-1 |#1| (-644 |#1|)))) (-15 -1722 ((-114) (-114) (-1 |#1| |#1|))) (-15 -1722 ((-3 (-1 |#1| (-644 |#1|)) "failed") (-114))) (-15 -4147 ((-114) (-114) (-644 (-1 |#1| (-644 |#1|))))) (-15 -4147 ((-114) (-114) (-1 |#1| |#1|))) (-15 -4147 ((-3 (-644 (-1 |#1| (-644 |#1|))) "failed") (-114))) (-15 -4179 ((-114) |#1|)) (-15 -2628 ((-3 |#1| "failed") (-114))))
+((-3009 (((-112) $ $) NIL)) (-3856 (((-771) $) 91) (($ $ (-771)) 37)) (-3039 (((-112) $) 41)) (-1695 (($ $ (-1157) (-774)) 58) (($ $ (-508) (-774)) 33)) (-3030 (($ $ (-45 (-1157) (-774))) 16)) (-3165 (((-3 (-774) "failed") $ (-1157)) 27) (((-691 (-774)) $ (-508)) 32)) (-2927 (((-45 (-1157) (-774)) $) 15)) (-2415 (($ (-1175)) 20) (($ (-1175) (-771)) 23) (($ (-1175) (-55)) 24)) (-2188 (((-112) $) 39)) (-2357 (((-112) $) 43)) (-2639 (((-1175) $) 8)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-2885 (((-112) $ (-1175)) 11)) (-1794 (($ $ (-1 (-538) (-644 (-538)))) 64) (((-3 (-1 (-538) (-644 (-538))) "failed") $) 71)) (-4056 (((-1119) $) NIL)) (-1932 (((-112) $ (-508)) 36)) (-3746 (($ $ (-1 (-112) $ $)) 45)) (-1736 (((-3 (-1 (-862) (-644 (-862))) "failed") $) 69) (($ $ (-1 (-862) (-644 (-862)))) 51) (($ $ (-1 (-862) (-862))) 53)) (-2502 (($ $ (-1157)) 55) (($ $ (-508)) 56)) (-3940 (($ $) 77)) (-2938 (($ $ (-1 (-112) $ $)) 46)) (-3780 (((-862) $) 60)) (-3801 (((-112) $ $) NIL)) (-1511 (($ $ (-508)) 34)) (-1297 (((-55) $) 72)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 89)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 103)))
+(((-114) (-13 (-850) (-835 (-1175)) (-10 -8 (-15 -2927 ((-45 (-1157) (-774)) $)) (-15 -3940 ($ $)) (-15 -2415 ($ (-1175))) (-15 -2415 ($ (-1175) (-771))) (-15 -2415 ($ (-1175) (-55))) (-15 -2188 ((-112) $)) (-15 -3039 ((-112) $)) (-15 -2357 ((-112) $)) (-15 -3856 ((-771) $)) (-15 -3856 ($ $ (-771))) (-15 -3746 ($ $ (-1 (-112) $ $))) (-15 -2938 ($ $ (-1 (-112) $ $))) (-15 -1736 ((-3 (-1 (-862) (-644 (-862))) "failed") $)) (-15 -1736 ($ $ (-1 (-862) (-644 (-862))))) (-15 -1736 ($ $ (-1 (-862) (-862)))) (-15 -1794 ($ $ (-1 (-538) (-644 (-538))))) (-15 -1794 ((-3 (-1 (-538) (-644 (-538))) "failed") $)) (-15 -1932 ((-112) $ (-508))) (-15 -1511 ($ $ (-508))) (-15 -2502 ($ $ (-1157))) (-15 -2502 ($ $ (-508))) (-15 -3165 ((-3 (-774) "failed") $ (-1157))) (-15 -3165 ((-691 (-774)) $ (-508))) (-15 -1695 ($ $ (-1157) (-774))) (-15 -1695 ($ $ (-508) (-774))) (-15 -3030 ($ $ (-45 (-1157) (-774))))))) (T -114))
+((-2927 (*1 *2 *1) (-12 (-5 *2 (-45 (-1157) (-774))) (-5 *1 (-114)))) (-3940 (*1 *1 *1) (-5 *1 (-114))) (-2415 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-114)))) (-2415 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-771)) (-5 *1 (-114)))) (-2415 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-55)) (-5 *1 (-114)))) (-2188 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-2357 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))) (-3856 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-114)))) (-3856 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-114)))) (-3746 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-2938 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))) (-1736 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-862) (-644 (-862)))) (-5 *1 (-114)))) (-1736 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-862) (-644 (-862)))) (-5 *1 (-114)))) (-1736 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-862) (-862))) (-5 *1 (-114)))) (-1794 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-538) (-644 (-538)))) (-5 *1 (-114)))) (-1794 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-538) (-644 (-538)))) (-5 *1 (-114)))) (-1932 (*1 *2 *1 *3) (-12 (-5 *3 (-508)) (-5 *2 (-112)) (-5 *1 (-114)))) (-1511 (*1 *1 *1 *2) (-12 (-5 *2 (-508)) (-5 *1 (-114)))) (-2502 (*1 *1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-114)))) (-2502 (*1 *1 *1 *2) (-12 (-5 *2 (-508)) (-5 *1 (-114)))) (-3165 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1157)) (-5 *2 (-774)) (-5 *1 (-114)))) (-3165 (*1 *2 *1 *3) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-774))) (-5 *1 (-114)))) (-1695 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-774)) (-5 *1 (-114)))) (-1695 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-774)) (-5 *1 (-114)))) (-3030 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1157) (-774))) (-5 *1 (-114)))))
+(-13 (-850) (-835 (-1175)) (-10 -8 (-15 -2927 ((-45 (-1157) (-774)) $)) (-15 -3940 ($ $)) (-15 -2415 ($ (-1175))) (-15 -2415 ($ (-1175) (-771))) (-15 -2415 ($ (-1175) (-55))) (-15 -2188 ((-112) $)) (-15 -3039 ((-112) $)) (-15 -2357 ((-112) $)) (-15 -3856 ((-771) $)) (-15 -3856 ($ $ (-771))) (-15 -3746 ($ $ (-1 (-112) $ $))) (-15 -2938 ($ $ (-1 (-112) $ $))) (-15 -1736 ((-3 (-1 (-862) (-644 (-862))) "failed") $)) (-15 -1736 ($ $ (-1 (-862) (-644 (-862))))) (-15 -1736 ($ $ (-1 (-862) (-862)))) (-15 -1794 ($ $ (-1 (-538) (-644 (-538))))) (-15 -1794 ((-3 (-1 (-538) (-644 (-538))) "failed") $)) (-15 -1932 ((-112) $ (-508))) (-15 -1511 ($ $ (-508))) (-15 -2502 ($ $ (-1157))) (-15 -2502 ($ $ (-508))) (-15 -3165 ((-3 (-774) "failed") $ (-1157))) (-15 -3165 ((-691 (-774)) $ (-508))) (-15 -1695 ($ $ (-1157) (-774))) (-15 -1695 ($ $ (-508) (-774))) (-15 -3030 ($ $ (-45 (-1157) (-774))))))
+((-2677 (((-566) |#2|) 41)))
+(((-115 |#1| |#2|) (-10 -7 (-15 -2677 ((-566) |#2|))) (-13 (-365) (-1038 (-409 (-566)))) (-1240 |#1|)) (T -115))
+((-2677 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-1038 (-409 *2)))) (-5 *2 (-566)) (-5 *1 (-115 *4 *3)) (-4 *3 (-1240 *4)))))
+(-10 -7 (-15 -2677 ((-566) |#2|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2484 (($ $ (-566)) NIL)) (-2738 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-3972 (($ (-1171 (-566)) (-566)) NIL)) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2401 (($ $) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-3227 (((-771) $) NIL)) (-3466 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2468 (((-566)) NIL)) (-2365 (((-566) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2295 (($ $ (-566)) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-4085 (((-1155 (-566)) $) NIL)) (-1377 (($ $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3651 (((-566) $ (-566)) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL)))
(((-116 |#1|) (-869 |#1|) (-566)) (T -116))
NIL
(-869 |#1|)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2452 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-308)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-116 |#1|) (-909)))) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-116 |#1|) (-909)))) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL (|has| (-116 |#1|) (-820)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-116 |#1|) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-116 |#1|) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-116 |#1|) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-116 |#1|) (-1038 (-566))))) (-1756 (((-116 |#1|) $) NIL) (((-1175) $) NIL (|has| (-116 |#1|) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-116 |#1|) (-1038 (-566)))) (((-566) $) NIL (|has| (-116 |#1|) (-1038 (-566))))) (-1669 (($ $) NIL) (($ (-566) $) NIL)) (-2926 (($ $ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| (-116 |#1|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-116 |#1|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-116 |#1|))) (|:| |vec| (-1264 (-116 |#1|)))) (-689 $) (-1264 $)) NIL) (((-689 (-116 |#1|)) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-116 |#1|) (-547)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-1684 (((-112) $) NIL (|has| (-116 |#1|) (-820)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-116 |#1|) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-116 |#1|) (-886 (-381))))) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL)) (-3001 (((-116 |#1|) $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| (-116 |#1|) (-1150)))) (-1578 (((-112) $) NIL (|has| (-116 |#1|) (-820)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL (|has| (-116 |#1|) (-850)))) (-3059 (($ $ $) NIL (|has| (-116 |#1|) (-850)))) (-3077 (($ (-1 (-116 |#1|) (-116 |#1|)) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-116 |#1|) (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL (|has| (-116 |#1|) (-308)))) (-4317 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-547)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-116 |#1|) (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-116 |#1|) (-909)))) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2070 (($ $ (-644 (-116 |#1|)) (-644 (-116 |#1|))) NIL (|has| (-116 |#1|) (-310 (-116 |#1|)))) (($ $ (-116 |#1|) (-116 |#1|)) NIL (|has| (-116 |#1|) (-310 (-116 |#1|)))) (($ $ (-295 (-116 |#1|))) NIL (|has| (-116 |#1|) (-310 (-116 |#1|)))) (($ $ (-644 (-295 (-116 |#1|)))) NIL (|has| (-116 |#1|) (-310 (-116 |#1|)))) (($ $ (-644 (-1175)) (-644 (-116 |#1|))) NIL (|has| (-116 |#1|) (-516 (-1175) (-116 |#1|)))) (($ $ (-1175) (-116 |#1|)) NIL (|has| (-116 |#1|) (-516 (-1175) (-116 |#1|))))) (-1813 (((-771) $) NIL)) (-4386 (($ $ (-116 |#1|)) NIL (|has| (-116 |#1|) (-287 (-116 |#1|) (-116 |#1|))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $) NIL (|has| (-116 |#1|) (-233))) (($ $ (-771)) NIL (|has| (-116 |#1|) (-233))) (($ $ (-1175)) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-771)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-3413 (($ $) NIL)) (-3013 (((-116 |#1|) $) NIL)) (-3134 (((-892 (-566)) $) NIL (|has| (-116 |#1|) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-116 |#1|) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-116 |#1|) (-614 (-538)))) (((-381) $) NIL (|has| (-116 |#1|) (-1022))) (((-225) $) NIL (|has| (-116 |#1|) (-1022)))) (-1932 (((-174 (-409 (-566))) $) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-116 |#1|) (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-116 |#1|)) NIL) (($ (-1175)) NIL (|has| (-116 |#1|) (-1038 (-1175))))) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-116 |#1|) (-909))) (|has| (-116 |#1|) (-145))))) (-3795 (((-771)) NIL T CONST)) (-1604 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-547)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-3645 (((-409 (-566)) $ (-566)) NIL)) (-1346 (($ $) NIL (|has| (-116 |#1|) (-820)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $) NIL (|has| (-116 |#1|) (-233))) (($ $ (-771)) NIL (|has| (-116 |#1|) (-233))) (($ $ (-1175)) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-771)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-2998 (((-112) $ $) NIL (|has| (-116 |#1|) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-116 |#1|) (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| (-116 |#1|) (-850)))) (-2962 (((-112) $ $) NIL (|has| (-116 |#1|) (-850)))) (-3061 (($ $ $) NIL) (($ (-116 |#1|) (-116 |#1|)) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-116 |#1|) $) NIL) (($ $ (-116 |#1|)) NIL)))
-(((-117 |#1|) (-13 (-992 (-116 |#1|)) (-10 -8 (-15 -3645 ((-409 (-566)) $ (-566))) (-15 -1932 ((-174 (-409 (-566))) $)) (-15 -1669 ($ $)) (-15 -1669 ($ (-566) $)))) (-566)) (T -117))
-((-3645 (*1 *2 *1 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-117 *4)) (-14 *4 *3) (-5 *3 (-566)))) (-1932 (*1 *2 *1) (-12 (-5 *2 (-174 (-409 (-566)))) (-5 *1 (-117 *3)) (-14 *3 (-566)))) (-1669 (*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-566)))) (-1669 (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-117 *3)) (-14 *3 *2))))
-(-13 (-992 (-116 |#1|)) (-10 -8 (-15 -3645 ((-409 (-566)) $ (-566))) (-15 -1932 ((-174 (-409 (-566))) $)) (-15 -1669 ($ $)) (-15 -1669 ($ (-566) $))))
-((-3874 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 61) (($ $ "right" $) 63)) (-2286 (((-644 $) $) 31)) (-4129 (((-112) $ $) 36)) (-1927 (((-112) |#2| $) 40)) (-2996 (((-644 |#2|) $) 25)) (-2783 (((-112) $) 18)) (-4386 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-1313 (((-112) $) 57)) (-2512 (((-862) $) 47)) (-1448 (((-644 $) $) 32)) (-2940 (((-112) $ $) 38)) (-2997 (((-771) $) 50)))
-(((-118 |#1| |#2|) (-10 -8 (-15 -2512 ((-862) |#1|)) (-15 -3874 (|#1| |#1| "right" |#1|)) (-15 -3874 (|#1| |#1| "left" |#1|)) (-15 -4386 (|#1| |#1| "right")) (-15 -4386 (|#1| |#1| "left")) (-15 -3874 (|#2| |#1| "value" |#2|)) (-15 -4129 ((-112) |#1| |#1|)) (-15 -2996 ((-644 |#2|) |#1|)) (-15 -1313 ((-112) |#1|)) (-15 -4386 (|#2| |#1| "value")) (-15 -2783 ((-112) |#1|)) (-15 -2286 ((-644 |#1|) |#1|)) (-15 -1448 ((-644 |#1|) |#1|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -1927 ((-112) |#2| |#1|)) (-15 -2997 ((-771) |#1|))) (-119 |#2|) (-1214)) (T -118))
-NIL
-(-10 -8 (-15 -2512 ((-862) |#1|)) (-15 -3874 (|#1| |#1| "right" |#1|)) (-15 -3874 (|#1| |#1| "left" |#1|)) (-15 -4386 (|#1| |#1| "right")) (-15 -4386 (|#1| |#1| "left")) (-15 -3874 (|#2| |#1| "value" |#2|)) (-15 -4129 ((-112) |#1| |#1|)) (-15 -2996 ((-644 |#2|) |#1|)) (-15 -1313 ((-112) |#1|)) (-15 -4386 (|#2| |#1| "value")) (-15 -2783 ((-112) |#1|)) (-15 -2286 ((-644 |#1|) |#1|)) (-15 -1448 ((-644 |#1|) |#1|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -1927 ((-112) |#2| |#1|)) (-15 -2997 ((-771) |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2212 ((|#1| $) 49)) (-3081 (((-112) $ (-771)) 8)) (-3087 ((|#1| $ |#1|) 40 (|has| $ (-6 -4418)))) (-2094 (($ $ $) 53 (|has| $ (-6 -4418)))) (-4235 (($ $ $) 55 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4418))) (($ $ "left" $) 56 (|has| $ (-6 -4418))) (($ $ "right" $) 54 (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 42 (|has| $ (-6 -4418)))) (-2342 (($) 7 T CONST)) (-4368 (($ $) 58)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) 51)) (-4129 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-4357 (($ $) 60)) (-2996 (((-644 |#1|) $) 46)) (-2783 (((-112) $) 50)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-1442 (((-566) $ $) 45)) (-1313 (((-112) $) 47)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) 52)) (-2105 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2486 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-308)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-116 |#1|) (-909)))) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-116 |#1|) (-909)))) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL (|has| (-116 |#1|) (-820)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-116 |#1|) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-116 |#1|) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-116 |#1|) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-116 |#1|) (-1038 (-566))))) (-1867 (((-116 |#1|) $) NIL) (((-1175) $) NIL (|has| (-116 |#1|) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-116 |#1|) (-1038 (-566)))) (((-566) $) NIL (|has| (-116 |#1|) (-1038 (-566))))) (-1370 (($ $) NIL) (($ (-566) $) NIL)) (-2949 (($ $ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| (-116 |#1|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-116 |#1|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-116 |#1|))) (|:| |vec| (-1264 (-116 |#1|)))) (-689 $) (-1264 $)) NIL) (((-689 (-116 |#1|)) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-116 |#1|) (-547)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1533 (((-112) $) NIL (|has| (-116 |#1|) (-820)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-116 |#1|) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-116 |#1|) (-886 (-381))))) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL)) (-3088 (((-116 |#1|) $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| (-116 |#1|) (-1150)))) (-2917 (((-112) $) NIL (|has| (-116 |#1|) (-820)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL (|has| (-116 |#1|) (-850)))) (-2709 (($ $ $) NIL (|has| (-116 |#1|) (-850)))) (-3152 (($ (-1 (-116 |#1|) (-116 |#1|)) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-116 |#1|) (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL (|has| (-116 |#1|) (-308)))) (-2209 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-547)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-116 |#1|) (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-116 |#1|) (-909)))) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2095 (($ $ (-644 (-116 |#1|)) (-644 (-116 |#1|))) NIL (|has| (-116 |#1|) (-310 (-116 |#1|)))) (($ $ (-116 |#1|) (-116 |#1|)) NIL (|has| (-116 |#1|) (-310 (-116 |#1|)))) (($ $ (-295 (-116 |#1|))) NIL (|has| (-116 |#1|) (-310 (-116 |#1|)))) (($ $ (-644 (-295 (-116 |#1|)))) NIL (|has| (-116 |#1|) (-310 (-116 |#1|)))) (($ $ (-644 (-1175)) (-644 (-116 |#1|))) NIL (|has| (-116 |#1|) (-516 (-1175) (-116 |#1|)))) (($ $ (-1175) (-116 |#1|)) NIL (|has| (-116 |#1|) (-516 (-1175) (-116 |#1|))))) (-3470 (((-771) $) NIL)) (-4393 (($ $ (-116 |#1|)) NIL (|has| (-116 |#1|) (-287 (-116 |#1|) (-116 |#1|))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $) NIL (|has| (-116 |#1|) (-233))) (($ $ (-771)) NIL (|has| (-116 |#1|) (-233))) (($ $ (-1175)) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-771)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-1431 (($ $) NIL)) (-3100 (((-116 |#1|) $) NIL)) (-3204 (((-892 (-566)) $) NIL (|has| (-116 |#1|) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-116 |#1|) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-116 |#1|) (-614 (-538)))) (((-381) $) NIL (|has| (-116 |#1|) (-1022))) (((-225) $) NIL (|has| (-116 |#1|) (-1022)))) (-2241 (((-174 (-409 (-566))) $) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-116 |#1|) (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-116 |#1|)) NIL) (($ (-1175)) NIL (|has| (-116 |#1|) (-1038 (-1175))))) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-116 |#1|) (-909))) (|has| (-116 |#1|) (-145))))) (-3996 (((-771)) NIL T CONST)) (-1982 (((-116 |#1|) $) NIL (|has| (-116 |#1|) (-547)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3651 (((-409 (-566)) $ (-566)) NIL)) (-3333 (($ $) NIL (|has| (-116 |#1|) (-820)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $) NIL (|has| (-116 |#1|) (-233))) (($ $ (-771)) NIL (|has| (-116 |#1|) (-233))) (($ $ (-1175)) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-116 |#1|) (-900 (-1175)))) (($ $ (-1 (-116 |#1|) (-116 |#1|)) (-771)) NIL) (($ $ (-1 (-116 |#1|) (-116 |#1|))) NIL)) (-3010 (((-112) $ $) NIL (|has| (-116 |#1|) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-116 |#1|) (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| (-116 |#1|) (-850)))) (-2972 (((-112) $ $) NIL (|has| (-116 |#1|) (-850)))) (-3062 (($ $ $) NIL) (($ (-116 |#1|) (-116 |#1|)) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-116 |#1|) $) NIL) (($ $ (-116 |#1|)) NIL)))
+(((-117 |#1|) (-13 (-992 (-116 |#1|)) (-10 -8 (-15 -3651 ((-409 (-566)) $ (-566))) (-15 -2241 ((-174 (-409 (-566))) $)) (-15 -1370 ($ $)) (-15 -1370 ($ (-566) $)))) (-566)) (T -117))
+((-3651 (*1 *2 *1 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-117 *4)) (-14 *4 *3) (-5 *3 (-566)))) (-2241 (*1 *2 *1) (-12 (-5 *2 (-174 (-409 (-566)))) (-5 *1 (-117 *3)) (-14 *3 (-566)))) (-1370 (*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-566)))) (-1370 (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-117 *3)) (-14 *3 *2))))
+(-13 (-992 (-116 |#1|)) (-10 -8 (-15 -3651 ((-409 (-566)) $ (-566))) (-15 -2241 ((-174 (-409 (-566))) $)) (-15 -1370 ($ $)) (-15 -1370 ($ (-566) $))))
+((-3916 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 61) (($ $ "right" $) 63)) (-1432 (((-644 $) $) 31)) (-4050 (((-112) $ $) 36)) (-2183 (((-112) |#2| $) 40)) (-3318 (((-644 |#2|) $) 25)) (-2675 (((-112) $) 18)) (-4393 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-1638 (((-112) $) 57)) (-3780 (((-862) $) 47)) (-4041 (((-644 $) $) 32)) (-2950 (((-112) $ $) 38)) (-3020 (((-771) $) 50)))
+(((-118 |#1| |#2|) (-10 -8 (-15 -3780 ((-862) |#1|)) (-15 -3916 (|#1| |#1| "right" |#1|)) (-15 -3916 (|#1| |#1| "left" |#1|)) (-15 -4393 (|#1| |#1| "right")) (-15 -4393 (|#1| |#1| "left")) (-15 -3916 (|#2| |#1| "value" |#2|)) (-15 -4050 ((-112) |#1| |#1|)) (-15 -3318 ((-644 |#2|) |#1|)) (-15 -1638 ((-112) |#1|)) (-15 -4393 (|#2| |#1| "value")) (-15 -2675 ((-112) |#1|)) (-15 -1432 ((-644 |#1|) |#1|)) (-15 -4041 ((-644 |#1|) |#1|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -2183 ((-112) |#2| |#1|)) (-15 -3020 ((-771) |#1|))) (-119 |#2|) (-1214)) (T -118))
+NIL
+(-10 -8 (-15 -3780 ((-862) |#1|)) (-15 -3916 (|#1| |#1| "right" |#1|)) (-15 -3916 (|#1| |#1| "left" |#1|)) (-15 -4393 (|#1| |#1| "right")) (-15 -4393 (|#1| |#1| "left")) (-15 -3916 (|#2| |#1| "value" |#2|)) (-15 -4050 ((-112) |#1| |#1|)) (-15 -3318 ((-644 |#2|) |#1|)) (-15 -1638 ((-112) |#1|)) (-15 -4393 (|#2| |#1| "value")) (-15 -2675 ((-112) |#1|)) (-15 -1432 ((-644 |#1|) |#1|)) (-15 -4041 ((-644 |#1|) |#1|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -2183 ((-112) |#2| |#1|)) (-15 -3020 ((-771) |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2252 ((|#1| $) 49)) (-1574 (((-112) $ (-771)) 8)) (-1637 ((|#1| $ |#1|) 40 (|has| $ (-6 -4415)))) (-3267 (($ $ $) 53 (|has| $ (-6 -4415)))) (-2660 (($ $ $) 55 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4415))) (($ $ "left" $) 56 (|has| $ (-6 -4415))) (($ $ "right" $) 54 (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 42 (|has| $ (-6 -4415)))) (-3877 (($) 7 T CONST)) (-4394 (($ $) 58)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) 51)) (-4050 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-4380 (($ $) 60)) (-3318 (((-644 |#1|) $) 46)) (-2675 (((-112) $) 50)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-3969 (((-566) $ $) 45)) (-1638 (((-112) $) 47)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) 52)) (-3381 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-119 |#1|) (-140) (-1214)) (T -119))
-((-4357 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1214)))) (-4386 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-119 *3)) (-4 *3 (-1214)))) (-4368 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1214)))) (-4386 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-119 *3)) (-4 *3 (-1214)))) (-3874 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4418)) (-4 *1 (-119 *3)) (-4 *3 (-1214)))) (-4235 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-119 *2)) (-4 *2 (-1214)))) (-3874 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4418)) (-4 *1 (-119 *3)) (-4 *3 (-1214)))) (-2094 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-119 *2)) (-4 *2 (-1214)))))
-(-13 (-1010 |t#1|) (-10 -8 (-15 -4357 ($ $)) (-15 -4386 ($ $ "left")) (-15 -4368 ($ $)) (-15 -4386 ($ $ "right")) (IF (|has| $ (-6 -4418)) (PROGN (-15 -3874 ($ $ "left" $)) (-15 -4235 ($ $ $)) (-15 -3874 ($ $ "right" $)) (-15 -2094 ($ $ $))) |%noBranch|)))
+((-4380 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1214)))) (-4393 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-119 *3)) (-4 *3 (-1214)))) (-4394 (*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1214)))) (-4393 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-119 *3)) (-4 *3 (-1214)))) (-3916 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4415)) (-4 *1 (-119 *3)) (-4 *3 (-1214)))) (-2660 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-119 *2)) (-4 *2 (-1214)))) (-3916 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4415)) (-4 *1 (-119 *3)) (-4 *3 (-1214)))) (-3267 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-119 *2)) (-4 *2 (-1214)))))
+(-13 (-1010 |t#1|) (-10 -8 (-15 -4380 ($ $)) (-15 -4393 ($ $ "left")) (-15 -4394 ($ $)) (-15 -4393 ($ $ "right")) (IF (|has| $ (-6 -4415)) (PROGN (-15 -3916 ($ $ "left" $)) (-15 -2660 ($ $ $)) (-15 -3916 ($ $ "right" $)) (-15 -3267 ($ $ $))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1010 |#1|) . T) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-2655 (((-112) |#1|) 29)) (-1921 (((-771) (-771)) 28) (((-771)) 27)) (-2131 (((-112) |#1| (-112)) 30) (((-112) |#1|) 31)))
-(((-120 |#1|) (-10 -7 (-15 -2131 ((-112) |#1|)) (-15 -2131 ((-112) |#1| (-112))) (-15 -1921 ((-771))) (-15 -1921 ((-771) (-771))) (-15 -2655 ((-112) |#1|))) (-1240 (-566))) (T -120))
-((-2655 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))) (-1921 (*1 *2 *2) (-12 (-5 *2 (-771)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))) (-1921 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))) (-2131 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))) (-2131 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))))
-(-10 -7 (-15 -2131 ((-112) |#1|)) (-15 -2131 ((-112) |#1| (-112))) (-15 -1921 ((-771))) (-15 -1921 ((-771) (-771))) (-15 -2655 ((-112) |#1|)))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2212 ((|#1| $) 18)) (-3473 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 26)) (-3081 (((-112) $ (-771)) NIL)) (-3087 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-2094 (($ $ $) 21 (|has| $ (-6 -4418)))) (-4235 (($ $ $) 23 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4418))) (($ $ "left" $) NIL (|has| $ (-6 -4418))) (($ $ "right" $) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-4368 (($ $) 20)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) NIL)) (-4129 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1957 (($ $ |#1| $) 27)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-4357 (($ $) 22)) (-2996 (((-644 |#1|) $) NIL)) (-2783 (((-112) $) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3620 (($ |#1| $) 28)) (-4265 (($ |#1| $) 15)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 17)) (-2954 (($) 11)) (-4386 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1442 (((-566) $ $) NIL)) (-1313 (((-112) $) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) NIL)) (-2105 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3779 (($ (-644 |#1|)) 16)) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-121 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4418) (-6 -4417) (-15 -3779 ($ (-644 |#1|))) (-15 -4265 ($ |#1| $)) (-15 -3620 ($ |#1| $)) (-15 -3473 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-850)) (T -121))
-((-3779 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-121 *3)))) (-4265 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-850)))) (-3620 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-850)))) (-3473 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3)))) (-5 *1 (-121 *3)) (-4 *3 (-850)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4418) (-6 -4417) (-15 -3779 ($ (-644 |#1|))) (-15 -4265 ($ |#1| $)) (-15 -3620 ($ |#1| $)) (-15 -3473 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
-((-3009 (($ $) 13)) (-2426 (($ $) 11)) (-3911 (($ $ $) 23)) (-3244 (($ $ $) 21)) (-3058 (($ $ $) 19)) (-3044 (($ $ $) 17)))
-(((-122 |#1|) (-10 -8 (-15 -3911 (|#1| |#1| |#1|)) (-15 -3244 (|#1| |#1| |#1|)) (-15 -2426 (|#1| |#1|)) (-15 -3009 (|#1| |#1|)) (-15 -3044 (|#1| |#1| |#1|)) (-15 -3058 (|#1| |#1| |#1|))) (-123)) (T -122))
-NIL
-(-10 -8 (-15 -3911 (|#1| |#1| |#1|)) (-15 -3244 (|#1| |#1| |#1|)) (-15 -2426 (|#1| |#1|)) (-15 -3009 (|#1| |#1|)) (-15 -3044 (|#1| |#1| |#1|)) (-15 -3058 (|#1| |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3009 (($ $) 104)) (-2461 (($ $ $) 26)) (-1537 (((-1269) $ (-566) (-566)) 67 (|has| $ (-6 -4418)))) (-2383 (((-112) $) 99 (|has| (-112) (-850))) (((-112) (-1 (-112) (-112) (-112)) $) 93)) (-3426 (($ $) 103 (-12 (|has| (-112) (-850)) (|has| $ (-6 -4418)))) (($ (-1 (-112) (-112) (-112)) $) 102 (|has| $ (-6 -4418)))) (-3290 (($ $) 98 (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $) 92)) (-3081 (((-112) $ (-771)) 38)) (-3874 (((-112) $ (-1231 (-566)) (-112)) 89 (|has| $ (-6 -4418))) (((-112) $ (-566) (-112)) 55 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) (-112)) $) 72 (|has| $ (-6 -4417)))) (-2342 (($) 39 T CONST)) (-2736 (($ $) 101 (|has| $ (-6 -4418)))) (-3852 (($ $) 91)) (-4093 (($ $) 69 (-12 (|has| (-112) (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ (-1 (-112) (-112)) $) 73 (|has| $ (-6 -4417))) (($ (-112) $) 70 (-12 (|has| (-112) (-1099)) (|has| $ (-6 -4417))))) (-4362 (((-112) (-1 (-112) (-112) (-112)) $) 75 (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 74 (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 71 (-12 (|has| (-112) (-1099)) (|has| $ (-6 -4417))))) (-1332 (((-112) $ (-566) (-112)) 54 (|has| $ (-6 -4418)))) (-3137 (((-112) $ (-566)) 56)) (-3968 (((-566) (-112) $ (-566)) 96 (|has| (-112) (-1099))) (((-566) (-112) $) 95 (|has| (-112) (-1099))) (((-566) (-1 (-112) (-112)) $) 94)) (-3372 (((-644 (-112)) $) 46 (|has| $ (-6 -4417)))) (-2450 (($ $ $) 27)) (-2426 (($ $) 31)) (-3911 (($ $ $) 29)) (-4257 (($ (-771) (-112)) 78)) (-3244 (($ $ $) 30)) (-2744 (((-112) $ (-771)) 37)) (-2160 (((-566) $) 64 (|has| (-566) (-850)))) (-1439 (($ $ $) 14)) (-3132 (($ $ $) 97 (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $ $) 90)) (-2404 (((-644 (-112)) $) 47 (|has| $ (-6 -4417)))) (-1927 (((-112) (-112) $) 49 (-12 (|has| (-112) (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 63 (|has| (-566) (-850)))) (-3059 (($ $ $) 15)) (-1323 (($ (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-112) (-112) (-112)) $ $) 83) (($ (-1 (-112) (-112)) $) 41)) (-3882 (((-112) $ (-771)) 36)) (-2878 (((-1157) $) 10)) (-4268 (($ $ $ (-566)) 88) (($ (-112) $ (-566)) 87)) (-1922 (((-644 (-566)) $) 61)) (-2040 (((-112) (-566) $) 60)) (-4033 (((-1119) $) 11)) (-4062 (((-112) $) 65 (|has| (-566) (-850)))) (-2126 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 76)) (-1720 (($ $ (-112)) 66 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) (-112)) $) 44 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-112)) (-644 (-112))) 53 (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-112) (-112)) 52 (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-295 (-112))) 51 (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-644 (-295 (-112)))) 50 (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099))))) (-2587 (((-112) $ $) 32)) (-4326 (((-112) (-112) $) 62 (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-2784 (((-644 (-112)) $) 59)) (-4194 (((-112) $) 35)) (-2954 (($) 34)) (-4386 (($ $ (-1231 (-566))) 84) (((-112) $ (-566)) 58) (((-112) $ (-566) (-112)) 57)) (-2201 (($ $ (-1231 (-566))) 86) (($ $ (-566)) 85)) (-4044 (((-771) (-112) $) 48 (-12 (|has| (-112) (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) (-112)) $) 45 (|has| $ (-6 -4417)))) (-3245 (($ $ $ (-566)) 100 (|has| $ (-6 -4418)))) (-3895 (($ $) 33)) (-3134 (((-538) $) 68 (|has| (-112) (-614 (-538))))) (-2523 (($ (-644 (-112))) 77)) (-3704 (($ (-644 $)) 82) (($ $ $) 81) (($ (-112) $) 80) (($ $ (-112)) 79)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-3427 (((-112) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4417)))) (-2438 (($ $ $) 28)) (-3058 (($ $ $) 106)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)) (-3044 (($ $ $) 105)) (-2997 (((-771) $) 40 (|has| $ (-6 -4417)))))
+((-3823 (((-112) |#1|) 29)) (-2130 (((-771) (-771)) 28) (((-771)) 27)) (-2432 (((-112) |#1| (-112)) 30) (((-112) |#1|) 31)))
+(((-120 |#1|) (-10 -7 (-15 -2432 ((-112) |#1|)) (-15 -2432 ((-112) |#1| (-112))) (-15 -2130 ((-771))) (-15 -2130 ((-771) (-771))) (-15 -3823 ((-112) |#1|))) (-1240 (-566))) (T -120))
+((-3823 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))) (-2130 (*1 *2 *2) (-12 (-5 *2 (-771)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))) (-2130 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))) (-2432 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))) (-2432 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))))
+(-10 -7 (-15 -2432 ((-112) |#1|)) (-15 -2432 ((-112) |#1| (-112))) (-15 -2130 ((-771))) (-15 -2130 ((-771) (-771))) (-15 -3823 ((-112) |#1|)))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2252 ((|#1| $) 18)) (-3920 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 26)) (-1574 (((-112) $ (-771)) NIL)) (-1637 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-3267 (($ $ $) 21 (|has| $ (-6 -4415)))) (-2660 (($ $ $) 23 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4415))) (($ $ "left" $) NIL (|has| $ (-6 -4415))) (($ $ "right" $) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-4394 (($ $) 20)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) NIL)) (-4050 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2043 (($ $ |#1| $) 27)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-4380 (($ $) 22)) (-3318 (((-644 |#1|) $) NIL)) (-2675 (((-112) $) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2836 (($ |#1| $) 28)) (-2903 (($ |#1| $) 15)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 17)) (-1793 (($) 11)) (-4393 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3969 (((-566) $ $) NIL)) (-1638 (((-112) $) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) NIL)) (-3381 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3853 (($ (-644 |#1|)) 16)) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-121 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4415) (-6 -4414) (-15 -3853 ($ (-644 |#1|))) (-15 -2903 ($ |#1| $)) (-15 -2836 ($ |#1| $)) (-15 -3920 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-850)) (T -121))
+((-3853 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-121 *3)))) (-2903 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-850)))) (-2836 (*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-850)))) (-3920 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3)))) (-5 *1 (-121 *3)) (-4 *3 (-850)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4415) (-6 -4414) (-15 -3853 ($ (-644 |#1|))) (-15 -2903 ($ |#1| $)) (-15 -2836 ($ |#1| $)) (-15 -3920 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
+((-3028 (($ $) 13)) (-2436 (($ $) 11)) (-2626 (($ $ $) 23)) (-3600 (($ $ $) 21)) (-3074 (($ $ $) 19)) (-3061 (($ $ $) 17)))
+(((-122 |#1|) (-10 -8 (-15 -2626 (|#1| |#1| |#1|)) (-15 -3600 (|#1| |#1| |#1|)) (-15 -2436 (|#1| |#1|)) (-15 -3028 (|#1| |#1|)) (-15 -3061 (|#1| |#1| |#1|)) (-15 -3074 (|#1| |#1| |#1|))) (-123)) (T -122))
+NIL
+(-10 -8 (-15 -2626 (|#1| |#1| |#1|)) (-15 -3600 (|#1| |#1| |#1|)) (-15 -2436 (|#1| |#1|)) (-15 -3028 (|#1| |#1|)) (-15 -3061 (|#1| |#1| |#1|)) (-15 -3074 (|#1| |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3028 (($ $) 104)) (-2470 (($ $ $) 26)) (-2518 (((-1269) $ (-566) (-566)) 67 (|has| $ (-6 -4415)))) (-3070 (((-112) $) 99 (|has| (-112) (-850))) (((-112) (-1 (-112) (-112) (-112)) $) 93)) (-1570 (($ $) 103 (-12 (|has| (-112) (-850)) (|has| $ (-6 -4415)))) (($ (-1 (-112) (-112) (-112)) $) 102 (|has| $ (-6 -4415)))) (-1568 (($ $) 98 (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $) 92)) (-1574 (((-112) $ (-771)) 38)) (-3916 (((-112) $ (-1231 (-566)) (-112)) 89 (|has| $ (-6 -4415))) (((-112) $ (-566) (-112)) 55 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) (-112)) $) 72 (|has| $ (-6 -4414)))) (-3877 (($) 39 T CONST)) (-3416 (($ $) 101 (|has| $ (-6 -4415)))) (-3507 (($ $) 91)) (-4133 (($ $) 69 (-12 (|has| (-112) (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ (-1 (-112) (-112)) $) 73 (|has| $ (-6 -4414))) (($ (-112) $) 70 (-12 (|has| (-112) (-1099)) (|has| $ (-6 -4414))))) (-1580 (((-112) (-1 (-112) (-112) (-112)) $) 75 (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 74 (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 71 (-12 (|has| (-112) (-1099)) (|has| $ (-6 -4414))))) (-3128 (((-112) $ (-566) (-112)) 54 (|has| $ (-6 -4415)))) (-3059 (((-112) $ (-566)) 56)) (-4015 (((-566) (-112) $ (-566)) 96 (|has| (-112) (-1099))) (((-566) (-112) $) 95 (|has| (-112) (-1099))) (((-566) (-1 (-112) (-112)) $) 94)) (-3799 (((-644 (-112)) $) 46 (|has| $ (-6 -4414)))) (-2461 (($ $ $) 27)) (-2436 (($ $) 31)) (-2626 (($ $ $) 29)) (-4278 (($ (-771) (-112)) 78)) (-3600 (($ $ $) 30)) (-3501 (((-112) $ (-771)) 37)) (-2712 (((-566) $) 64 (|has| (-566) (-850)))) (-1945 (($ $ $) 14)) (-3891 (($ $ $) 97 (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $ $) 90)) (-3276 (((-644 (-112)) $) 47 (|has| $ (-6 -4414)))) (-2183 (((-112) (-112) $) 49 (-12 (|has| (-112) (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 63 (|has| (-566) (-850)))) (-2709 (($ $ $) 15)) (-3117 (($ (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-112) (-112) (-112)) $ $) 83) (($ (-1 (-112) (-112)) $) 41)) (-3582 (((-112) $ (-771)) 36)) (-2402 (((-1157) $) 10)) (-4286 (($ $ $ (-566)) 88) (($ (-112) $ (-566)) 87)) (-2140 (((-644 (-566)) $) 61)) (-3935 (((-112) (-566) $) 60)) (-4056 (((-1119) $) 11)) (-4101 (((-112) $) 65 (|has| (-566) (-850)))) (-3591 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 76)) (-3750 (($ $ (-112)) 66 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) (-112)) $) 44 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-112)) (-644 (-112))) 53 (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-112) (-112)) 52 (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-295 (-112))) 51 (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-644 (-295 (-112)))) 50 (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099))))) (-4372 (((-112) $ $) 32)) (-2298 (((-112) (-112) $) 62 (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-2684 (((-644 (-112)) $) 59)) (-3461 (((-112) $) 35)) (-1793 (($) 34)) (-4393 (($ $ (-1231 (-566))) 84) (((-112) $ (-566)) 58) (((-112) $ (-566) (-112)) 57)) (-2215 (($ $ (-1231 (-566))) 86) (($ $ (-566)) 85)) (-4067 (((-771) (-112) $) 48 (-12 (|has| (-112) (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) (-112)) $) 45 (|has| $ (-6 -4414)))) (-3610 (($ $ $ (-566)) 100 (|has| $ (-6 -4415)))) (-3940 (($ $) 33)) (-3204 (((-538) $) 68 (|has| (-112) (-614 (-538))))) (-3791 (($ (-644 (-112))) 77)) (-3727 (($ (-644 $)) 82) (($ $ $) 81) (($ (-112) $) 80) (($ $ (-112)) 79)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-1583 (((-112) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4414)))) (-2447 (($ $ $) 28)) (-3074 (($ $ $) 106)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)) (-3061 (($ $ $) 105)) (-3020 (((-771) $) 40 (|has| $ (-6 -4414)))))
(((-123) (-140)) (T -123))
-((-2426 (*1 *1 *1) (-4 *1 (-123))) (-3244 (*1 *1 *1 *1) (-4 *1 (-123))) (-3911 (*1 *1 *1 *1) (-4 *1 (-123))) (-2438 (*1 *1 *1 *1) (-4 *1 (-123))) (-2450 (*1 *1 *1 *1) (-4 *1 (-123))) (-2461 (*1 *1 *1 *1) (-4 *1 (-123))))
-(-13 (-850) (-661) (-19 (-112)) (-10 -8 (-15 -2426 ($ $)) (-15 -3244 ($ $ $)) (-15 -3911 ($ $ $)) (-15 -2438 ($ $ $)) (-15 -2450 ($ $ $)) (-15 -2461 ($ $ $))))
+((-2436 (*1 *1 *1) (-4 *1 (-123))) (-3600 (*1 *1 *1 *1) (-4 *1 (-123))) (-2626 (*1 *1 *1 *1) (-4 *1 (-123))) (-2447 (*1 *1 *1 *1) (-4 *1 (-123))) (-2461 (*1 *1 *1 *1) (-4 *1 (-123))) (-2470 (*1 *1 *1 *1) (-4 *1 (-123))))
+(-13 (-850) (-661) (-19 (-112)) (-10 -8 (-15 -2436 ($ $)) (-15 -3600 ($ $ $)) (-15 -2626 ($ $ $)) (-15 -2447 ($ $ $)) (-15 -2461 ($ $ $)) (-15 -2470 ($ $ $))))
(((-34) . T) ((-102) . T) ((-613 (-862)) . T) ((-151 #0=(-112)) . T) ((-614 (-538)) |has| (-112) (-614 (-538))) ((-287 #1=(-566) #0#) . T) ((-289 #1# #0#) . T) ((-310 #0#) -12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099))) ((-375 #0#) . T) ((-491 #0#) . T) ((-604 #1# #0#) . T) ((-516 #0# #0#) -12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099))) ((-651 #0#) . T) ((-661) . T) ((-19 #0#) . T) ((-850) . T) ((-1099) . T) ((-1214) . T))
-((-1323 (($ (-1 |#2| |#2|) $) 22)) (-3895 (($ $) 16)) (-2997 (((-771) $) 25)))
-(((-124 |#1| |#2|) (-10 -8 (-15 -1323 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2997 ((-771) |#1|)) (-15 -3895 (|#1| |#1|))) (-125 |#2|) (-1099)) (T -124))
+((-3117 (($ (-1 |#2| |#2|) $) 22)) (-3940 (($ $) 16)) (-3020 (((-771) $) 25)))
+(((-124 |#1| |#2|) (-10 -8 (-15 -3117 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3020 ((-771) |#1|)) (-15 -3940 (|#1| |#1|))) (-125 |#2|) (-1099)) (T -124))
NIL
-(-10 -8 (-15 -1323 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2997 ((-771) |#1|)) (-15 -3895 (|#1| |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2212 ((|#1| $) 49)) (-3081 (((-112) $ (-771)) 8)) (-3087 ((|#1| $ |#1|) 40 (|has| $ (-6 -4418)))) (-2094 (($ $ $) 53 (|has| $ (-6 -4418)))) (-4235 (($ $ $) 55 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4418))) (($ $ "left" $) 56 (|has| $ (-6 -4418))) (($ $ "right" $) 54 (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 42 (|has| $ (-6 -4418)))) (-2342 (($) 7 T CONST)) (-4368 (($ $) 58)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) 51)) (-4129 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-1957 (($ $ |#1| $) 61)) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-4357 (($ $) 60)) (-2996 (((-644 |#1|) $) 46)) (-2783 (((-112) $) 50)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-1442 (((-566) $ $) 45)) (-1313 (((-112) $) 47)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) 52)) (-2105 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+(-10 -8 (-15 -3117 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3020 ((-771) |#1|)) (-15 -3940 (|#1| |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2252 ((|#1| $) 49)) (-1574 (((-112) $ (-771)) 8)) (-1637 ((|#1| $ |#1|) 40 (|has| $ (-6 -4415)))) (-3267 (($ $ $) 53 (|has| $ (-6 -4415)))) (-2660 (($ $ $) 55 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4415))) (($ $ "left" $) 56 (|has| $ (-6 -4415))) (($ $ "right" $) 54 (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 42 (|has| $ (-6 -4415)))) (-3877 (($) 7 T CONST)) (-4394 (($ $) 58)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) 51)) (-4050 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-2043 (($ $ |#1| $) 61)) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-4380 (($ $) 60)) (-3318 (((-644 |#1|) $) 46)) (-2675 (((-112) $) 50)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-3969 (((-566) $ $) 45)) (-1638 (((-112) $) 47)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) 52)) (-3381 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-125 |#1|) (-140) (-1099)) (T -125))
-((-1957 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1099)))))
-(-13 (-119 |t#1|) (-10 -8 (-6 -4418) (-6 -4417) (-15 -1957 ($ $ |t#1| $))))
+((-2043 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1099)))))
+(-13 (-119 |t#1|) (-10 -8 (-6 -4415) (-6 -4414) (-15 -2043 ($ $ |t#1| $))))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-119 |#1|) . T) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1010 |#1|) . T) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2212 ((|#1| $) 18)) (-3081 (((-112) $ (-771)) NIL)) (-3087 ((|#1| $ |#1|) 22 (|has| $ (-6 -4418)))) (-2094 (($ $ $) 23 (|has| $ (-6 -4418)))) (-4235 (($ $ $) 21 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4418))) (($ $ "left" $) NIL (|has| $ (-6 -4418))) (($ $ "right" $) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-4368 (($ $) 24)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) NIL)) (-4129 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1957 (($ $ |#1| $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-4357 (($ $) NIL)) (-2996 (((-644 |#1|) $) NIL)) (-2783 (((-112) $) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4265 (($ |#1| $) 15)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 17)) (-2954 (($) 11)) (-4386 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1442 (((-566) $ $) NIL)) (-1313 (((-112) $) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) 20)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) NIL)) (-2105 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2588 (($ (-644 |#1|)) 16)) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-126 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4418) (-15 -2588 ($ (-644 |#1|))) (-15 -4265 ($ |#1| $)))) (-850)) (T -126))
-((-2588 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-126 *3)))) (-4265 (*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-850)))))
-(-13 (-125 |#1|) (-10 -8 (-6 -4418) (-15 -2588 ($ (-644 |#1|))) (-15 -4265 ($ |#1| $))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2212 ((|#1| $) 30)) (-3081 (((-112) $ (-771)) NIL)) (-3087 ((|#1| $ |#1|) 32 (|has| $ (-6 -4418)))) (-2094 (($ $ $) 36 (|has| $ (-6 -4418)))) (-4235 (($ $ $) 34 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4418))) (($ $ "left" $) NIL (|has| $ (-6 -4418))) (($ $ "right" $) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-4368 (($ $) 23)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) NIL)) (-4129 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1957 (($ $ |#1| $) 16)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-4357 (($ $) 22)) (-2996 (((-644 |#1|) $) NIL)) (-2783 (((-112) $) 25)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 20)) (-2954 (($) 11)) (-4386 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1442 (((-566) $ $) NIL)) (-1313 (((-112) $) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) NIL)) (-2105 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2966 (($ |#1|) 18) (($ $ |#1| $) 17)) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 10 (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-127 |#1|) (-13 (-125 |#1|) (-10 -8 (-15 -2966 ($ |#1|)) (-15 -2966 ($ $ |#1| $)))) (-1099)) (T -127))
-((-2966 (*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1099)))) (-2966 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1099)))))
-(-13 (-125 |#1|) (-10 -8 (-15 -2966 ($ |#1|)) (-15 -2966 ($ $ |#1| $))))
-((-2985 (((-112) $ $) NIL (|has| (-129) (-1099)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) (-129) (-129)) $) NIL) (((-112) $) NIL (|has| (-129) (-850)))) (-3426 (($ (-1 (-112) (-129) (-129)) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| (-129) (-850))))) (-3290 (($ (-1 (-112) (-129) (-129)) $) NIL) (($ $) NIL (|has| (-129) (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 (((-129) $ (-566) (-129)) 26 (|has| $ (-6 -4418))) (((-129) $ (-1231 (-566)) (-129)) NIL (|has| $ (-6 -4418)))) (-3624 (((-771) $ (-771)) 34)) (-4186 (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-129) (-1099))))) (-2651 (($ (-129) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-129) (-1099)))) (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-129) (-1 (-129) (-129) (-129)) $ (-129) (-129)) NIL (-12 (|has| $ (-6 -4417)) (|has| (-129) (-1099)))) (((-129) (-1 (-129) (-129) (-129)) $ (-129)) NIL (|has| $ (-6 -4417))) (((-129) (-1 (-129) (-129) (-129)) $) NIL (|has| $ (-6 -4417)))) (-1332 (((-129) $ (-566) (-129)) 25 (|has| $ (-6 -4418)))) (-3137 (((-129) $ (-566)) 20)) (-3968 (((-566) (-1 (-112) (-129)) $) NIL) (((-566) (-129) $) NIL (|has| (-129) (-1099))) (((-566) (-129) $ (-566)) NIL (|has| (-129) (-1099)))) (-3372 (((-644 (-129)) $) NIL (|has| $ (-6 -4417)))) (-4257 (($ (-771) (-129)) 14)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) 27 (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| (-129) (-850)))) (-3132 (($ (-1 (-112) (-129) (-129)) $ $) NIL) (($ $ $) NIL (|has| (-129) (-850)))) (-2404 (((-644 (-129)) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-129) (-1099))))) (-1544 (((-566) $) 30 (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| (-129) (-850)))) (-1323 (($ (-1 (-129) (-129)) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-129) (-129)) $) NIL) (($ (-1 (-129) (-129) (-129)) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| (-129) (-1099)))) (-4268 (($ (-129) $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| (-129) (-1099)))) (-4062 (((-129) $) NIL (|has| (-566) (-850)))) (-2126 (((-3 (-129) "failed") (-1 (-112) (-129)) $) NIL)) (-1720 (($ $ (-129)) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-129)))) NIL (-12 (|has| (-129) (-310 (-129))) (|has| (-129) (-1099)))) (($ $ (-295 (-129))) NIL (-12 (|has| (-129) (-310 (-129))) (|has| (-129) (-1099)))) (($ $ (-129) (-129)) NIL (-12 (|has| (-129) (-310 (-129))) (|has| (-129) (-1099)))) (($ $ (-644 (-129)) (-644 (-129))) NIL (-12 (|has| (-129) (-310 (-129))) (|has| (-129) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-129) (-1099))))) (-2784 (((-644 (-129)) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) 12)) (-4386 (((-129) $ (-566) (-129)) NIL) (((-129) $ (-566)) 23) (($ $ (-1231 (-566))) NIL)) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4044 (((-771) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4417))) (((-771) (-129) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-129) (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-129) (-614 (-538))))) (-2523 (($ (-644 (-129))) 47)) (-3704 (($ $ (-129)) NIL) (($ (-129) $) NIL) (($ $ $) 48) (($ (-644 $)) NIL)) (-2512 (((-958 (-129)) $) 35) (((-1157) $) 44) (((-862) $) NIL (|has| (-129) (-613 (-862))))) (-3710 (((-771) $) 18)) (-2000 (($ (-771)) 8)) (-3122 (((-112) $ $) NIL (|has| (-129) (-1099)))) (-3427 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| (-129) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-129) (-850)))) (-2940 (((-112) $ $) 32 (|has| (-129) (-1099)))) (-2987 (((-112) $ $) NIL (|has| (-129) (-850)))) (-2962 (((-112) $ $) NIL (|has| (-129) (-850)))) (-2997 (((-771) $) 15 (|has| $ (-6 -4417)))))
-(((-128) (-13 (-19 (-129)) (-613 (-958 (-129))) (-613 (-1157)) (-10 -8 (-15 -2000 ($ (-771))) (-15 -3710 ((-771) $)) (-15 -3624 ((-771) $ (-771))) (-6 -4417)))) (T -128))
-((-2000 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-128)))) (-3710 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-128)))) (-3624 (*1 *2 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-128)))))
-(-13 (-19 (-129)) (-613 (-958 (-129))) (-613 (-1157)) (-10 -8 (-15 -2000 ($ (-771))) (-15 -3710 ((-771) $)) (-15 -3624 ((-771) $ (-771))) (-6 -4417)))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) 12 T CONST)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) 25 T CONST)) (-3059 (($ $ $) NIL) (($) 26 T CONST)) (-3712 (((-921) $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL) (($ (-144)) 16) (((-144) $) 18)) (-1364 (($ (-771)) 8)) (-2370 (($ $ $) 28)) (-2359 (($ $ $) 27)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) 23)) (-2974 (((-112) $ $) 21)) (-2940 (((-112) $ $) 19)) (-2987 (((-112) $ $) 22)) (-2962 (((-112) $ $) 20)))
-(((-129) (-13 (-844) (-492 (-144)) (-10 -8 (-15 -1364 ($ (-771))) (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))) (T -129))
-((-1364 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-129)))) (-2359 (*1 *1 *1 *1) (-5 *1 (-129))) (-2370 (*1 *1 *1 *1) (-5 *1 (-129))) (-2342 (*1 *1) (-5 *1 (-129))))
-(-13 (-844) (-492 (-144)) (-10 -8 (-15 -1364 ($ (-771))) (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2252 ((|#1| $) 18)) (-1574 (((-112) $ (-771)) NIL)) (-1637 ((|#1| $ |#1|) 22 (|has| $ (-6 -4415)))) (-3267 (($ $ $) 23 (|has| $ (-6 -4415)))) (-2660 (($ $ $) 21 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4415))) (($ $ "left" $) NIL (|has| $ (-6 -4415))) (($ $ "right" $) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-4394 (($ $) 24)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) NIL)) (-4050 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2043 (($ $ |#1| $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-4380 (($ $) NIL)) (-3318 (((-644 |#1|) $) NIL)) (-2675 (((-112) $) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2903 (($ |#1| $) 15)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 17)) (-1793 (($) 11)) (-4393 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3969 (((-566) $ $) NIL)) (-1638 (((-112) $) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) 20)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) NIL)) (-3381 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4384 (($ (-644 |#1|)) 16)) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-126 |#1|) (-13 (-125 |#1|) (-10 -8 (-6 -4415) (-15 -4384 ($ (-644 |#1|))) (-15 -2903 ($ |#1| $)))) (-850)) (T -126))
+((-4384 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-126 *3)))) (-2903 (*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-850)))))
+(-13 (-125 |#1|) (-10 -8 (-6 -4415) (-15 -4384 ($ (-644 |#1|))) (-15 -2903 ($ |#1| $))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2252 ((|#1| $) 30)) (-1574 (((-112) $ (-771)) NIL)) (-1637 ((|#1| $ |#1|) 32 (|has| $ (-6 -4415)))) (-3267 (($ $ $) 36 (|has| $ (-6 -4415)))) (-2660 (($ $ $) 34 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4415))) (($ $ "left" $) NIL (|has| $ (-6 -4415))) (($ $ "right" $) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-4394 (($ $) 23)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) NIL)) (-4050 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2043 (($ $ |#1| $) 16)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-4380 (($ $) 22)) (-3318 (((-644 |#1|) $) NIL)) (-2675 (((-112) $) 25)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 20)) (-1793 (($) 11)) (-4393 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3969 (((-566) $ $) NIL)) (-1638 (((-112) $) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) NIL)) (-3381 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1882 (($ |#1|) 18) (($ $ |#1| $) 17)) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 10 (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-127 |#1|) (-13 (-125 |#1|) (-10 -8 (-15 -1882 ($ |#1|)) (-15 -1882 ($ $ |#1| $)))) (-1099)) (T -127))
+((-1882 (*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1099)))) (-1882 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1099)))))
+(-13 (-125 |#1|) (-10 -8 (-15 -1882 ($ |#1|)) (-15 -1882 ($ $ |#1| $))))
+((-3009 (((-112) $ $) NIL (|has| (-129) (-1099)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) (-129) (-129)) $) NIL) (((-112) $) NIL (|has| (-129) (-850)))) (-1570 (($ (-1 (-112) (-129) (-129)) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| (-129) (-850))))) (-1568 (($ (-1 (-112) (-129) (-129)) $) NIL) (($ $) NIL (|has| (-129) (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 (((-129) $ (-566) (-129)) 26 (|has| $ (-6 -4415))) (((-129) $ (-1231 (-566)) (-129)) NIL (|has| $ (-6 -4415)))) (-2880 (((-771) $ (-771)) 34)) (-1386 (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-129) (-1099))))) (-2661 (($ (-129) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-129) (-1099)))) (($ (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-129) (-1 (-129) (-129) (-129)) $ (-129) (-129)) NIL (-12 (|has| $ (-6 -4414)) (|has| (-129) (-1099)))) (((-129) (-1 (-129) (-129) (-129)) $ (-129)) NIL (|has| $ (-6 -4414))) (((-129) (-1 (-129) (-129) (-129)) $) NIL (|has| $ (-6 -4414)))) (-3128 (((-129) $ (-566) (-129)) 25 (|has| $ (-6 -4415)))) (-3059 (((-129) $ (-566)) 20)) (-4015 (((-566) (-1 (-112) (-129)) $) NIL) (((-566) (-129) $) NIL (|has| (-129) (-1099))) (((-566) (-129) $ (-566)) NIL (|has| (-129) (-1099)))) (-3799 (((-644 (-129)) $) NIL (|has| $ (-6 -4414)))) (-4278 (($ (-771) (-129)) 14)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) 27 (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| (-129) (-850)))) (-3891 (($ (-1 (-112) (-129) (-129)) $ $) NIL) (($ $ $) NIL (|has| (-129) (-850)))) (-3276 (((-644 (-129)) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-129) (-1099))))) (-2579 (((-566) $) 30 (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| (-129) (-850)))) (-3117 (($ (-1 (-129) (-129)) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-129) (-129)) $) NIL) (($ (-1 (-129) (-129) (-129)) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| (-129) (-1099)))) (-4286 (($ (-129) $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| (-129) (-1099)))) (-4101 (((-129) $) NIL (|has| (-566) (-850)))) (-3591 (((-3 (-129) "failed") (-1 (-112) (-129)) $) NIL)) (-3750 (($ $ (-129)) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-129)))) NIL (-12 (|has| (-129) (-310 (-129))) (|has| (-129) (-1099)))) (($ $ (-295 (-129))) NIL (-12 (|has| (-129) (-310 (-129))) (|has| (-129) (-1099)))) (($ $ (-129) (-129)) NIL (-12 (|has| (-129) (-310 (-129))) (|has| (-129) (-1099)))) (($ $ (-644 (-129)) (-644 (-129))) NIL (-12 (|has| (-129) (-310 (-129))) (|has| (-129) (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) (-129) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-129) (-1099))))) (-2684 (((-644 (-129)) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) 12)) (-4393 (((-129) $ (-566) (-129)) NIL) (((-129) $ (-566)) 23) (($ $ (-1231 (-566))) NIL)) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4067 (((-771) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4414))) (((-771) (-129) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-129) (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-129) (-614 (-538))))) (-3791 (($ (-644 (-129))) 47)) (-3727 (($ $ (-129)) NIL) (($ (-129) $) NIL) (($ $ $) 48) (($ (-644 $)) NIL)) (-3780 (((-958 (-129)) $) 35) (((-1157) $) 44) (((-862) $) NIL (|has| (-129) (-613 (-862))))) (-4373 (((-771) $) 18)) (-1685 (($ (-771)) 8)) (-3801 (((-112) $ $) NIL (|has| (-129) (-1099)))) (-1583 (((-112) (-1 (-112) (-129)) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| (-129) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-129) (-850)))) (-2950 (((-112) $ $) 32 (|has| (-129) (-1099)))) (-2999 (((-112) $ $) NIL (|has| (-129) (-850)))) (-2972 (((-112) $ $) NIL (|has| (-129) (-850)))) (-3020 (((-771) $) 15 (|has| $ (-6 -4414)))))
+(((-128) (-13 (-19 (-129)) (-613 (-958 (-129))) (-613 (-1157)) (-10 -8 (-15 -1685 ($ (-771))) (-15 -4373 ((-771) $)) (-15 -2880 ((-771) $ (-771))) (-6 -4414)))) (T -128))
+((-1685 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-128)))) (-4373 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-128)))) (-2880 (*1 *2 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-128)))))
+(-13 (-19 (-129)) (-613 (-958 (-129))) (-613 (-1157)) (-10 -8 (-15 -1685 ($ (-771))) (-15 -4373 ((-771) $)) (-15 -2880 ((-771) $ (-771))) (-6 -4414)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) 12 T CONST)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) 25 T CONST)) (-2709 (($ $ $) NIL) (($) 26 T CONST)) (-1299 (((-921) $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL) (($ (-144)) 16) (((-144) $) 18)) (-3733 (($ (-771)) 8)) (-2384 (($ $ $) 28)) (-2372 (($ $ $) 27)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) 23)) (-2984 (((-112) $ $) 21)) (-2950 (((-112) $ $) 19)) (-2999 (((-112) $ $) 22)) (-2972 (((-112) $ $) 20)))
+(((-129) (-13 (-844) (-492 (-144)) (-10 -8 (-15 -3733 ($ (-771))) (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))) (T -129))
+((-3733 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-129)))) (-2372 (*1 *1 *1 *1) (-5 *1 (-129))) (-2384 (*1 *1 *1 *1) (-5 *1 (-129))) (-3877 (*1 *1) (-5 *1 (-129))))
+(-13 (-844) (-492 (-144)) (-10 -8 (-15 -3733 ($ (-771))) (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))
((|NonNegativeInteger|) (< |#1| 256))
-((-2985 (((-112) $ $) NIL)) (-2265 (($) 6 T CONST)) (-1949 (($) 7 T CONST)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 14)) (-2458 (($) 8 T CONST)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 10)))
-(((-130) (-13 (-1099) (-10 -8 (-15 -1949 ($) -1655) (-15 -2458 ($) -1655) (-15 -2265 ($) -1655)))) (T -130))
-((-1949 (*1 *1) (-5 *1 (-130))) (-2458 (*1 *1) (-5 *1 (-130))) (-2265 (*1 *1) (-5 *1 (-130))))
-(-13 (-1099) (-10 -8 (-15 -1949 ($) -1655) (-15 -2458 ($) -1655) (-15 -2265 ($) -1655)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16)))
+((-3009 (((-112) $ $) NIL)) (-4310 (($) 6 T CONST)) (-4251 (($) 7 T CONST)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 14)) (-2546 (($) 8 T CONST)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 10)))
+(((-130) (-13 (-1099) (-10 -8 (-15 -4251 ($) -2460) (-15 -2546 ($) -2460) (-15 -4310 ($) -2460)))) (T -130))
+((-4251 (*1 *1) (-5 *1 (-130))) (-2546 (*1 *1) (-5 *1 (-130))) (-4310 (*1 *1) (-5 *1 (-130))))
+(-13 (-1099) (-10 -8 (-15 -4251 ($) -2460) (-15 -2546 ($) -2460) (-15 -4310 ($) -2460)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16)))
(((-131) (-140)) (T -131))
-((-4126 (*1 *1 *1 *1) (|partial| -4 *1 (-131))))
-(-13 (-23) (-10 -8 (-15 -4126 ((-3 $ "failed") $ $))))
+((-4014 (*1 *1 *1 *1) (|partial| -4 *1 (-131))))
+(-13 (-23) (-10 -8 (-15 -4014 ((-3 $ "failed") $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 7)) (-2480 (((-1269) $ (-771)) 14)) (-3968 (((-771) $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-3009 (((-112) $ $) 7)) (-2725 (((-1269) $ (-771)) 14)) (-4015 (((-771) $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-132) (-140)) (T -132))
-((-3968 (*1 *2 *1) (-12 (-4 *1 (-132)) (-5 *2 (-771)))) (-2480 (*1 *2 *1 *3) (-12 (-4 *1 (-132)) (-5 *3 (-771)) (-5 *2 (-1269)))))
-(-13 (-1099) (-10 -8 (-15 -3968 ((-771) $)) (-15 -2480 ((-1269) $ (-771)))))
+((-4015 (*1 *2 *1) (-12 (-4 *1 (-132)) (-5 *2 (-771)))) (-2725 (*1 *2 *1 *3) (-12 (-4 *1 (-132)) (-5 *3 (-771)) (-5 *2 (-1269)))))
+(-13 (-1099) (-10 -8 (-15 -4015 ((-771) $)) (-15 -2725 ((-1269) $ (-771)))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 16) (($ (-1180)) NIL) (((-1180) $) NIL)) (-2639 (((-644 (-1134)) $) 10)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-133) (-13 (-1082) (-10 -8 (-15 -2639 ((-644 (-1134)) $))))) (T -133))
-((-2639 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-133)))))
-(-13 (-1082) (-10 -8 (-15 -2639 ((-644 (-1134)) $))))
-((-2985 (((-112) $ $) 49)) (-3958 (((-112) $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-771) "failed") $) 58)) (-1756 (((-771) $) 56)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) 37)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2449 (((-112)) 59)) (-3872 (((-112) (-112)) 61)) (-1358 (((-112) $) 30)) (-4213 (((-112) $) 55)) (-2512 (((-862) $) 28) (($ (-771)) 20)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 18 T CONST)) (-2495 (($) 19 T CONST)) (-4219 (($ (-771)) 21)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) 40)) (-2940 (((-112) $ $) 32)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 35)) (-3047 (((-3 $ "failed") $ $) 42)) (-3034 (($ $ $) 38)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL) (($ $ $) 54)) (* (($ (-771) $) 48) (($ (-921) $) NIL) (($ $ $) 45)))
-(((-134) (-13 (-850) (-23) (-726) (-1038 (-771)) (-10 -8 (-6 (-4419 "*")) (-15 -3047 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -4219 ($ (-771))) (-15 -1358 ((-112) $)) (-15 -4213 ((-112) $)) (-15 -2449 ((-112))) (-15 -3872 ((-112) (-112)))))) (T -134))
-((-3047 (*1 *1 *1 *1) (|partial| -5 *1 (-134))) (** (*1 *1 *1 *1) (-5 *1 (-134))) (-4219 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-134)))) (-1358 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-4213 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-2449 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-3872 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
-(-13 (-850) (-23) (-726) (-1038 (-771)) (-10 -8 (-6 (-4419 "*")) (-15 -3047 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -4219 ($ (-771))) (-15 -1358 ((-112) $)) (-15 -4213 ((-112) $)) (-15 -2449 ((-112))) (-15 -3872 ((-112) (-112)))))
-((-3860 (((-136 |#1| |#2| |#4|) (-644 |#4|) (-136 |#1| |#2| |#3|)) 14)) (-3077 (((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|)) 18)))
-(((-135 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3860 ((-136 |#1| |#2| |#4|) (-644 |#4|) (-136 |#1| |#2| |#3|))) (-15 -3077 ((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|)))) (-566) (-771) (-172) (-172)) (T -135))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-136 *5 *6 *7)) (-14 *5 (-566)) (-14 *6 (-771)) (-4 *7 (-172)) (-4 *8 (-172)) (-5 *2 (-136 *5 *6 *8)) (-5 *1 (-135 *5 *6 *7 *8)))) (-3860 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-136 *5 *6 *7)) (-14 *5 (-566)) (-14 *6 (-771)) (-4 *7 (-172)) (-4 *8 (-172)) (-5 *2 (-136 *5 *6 *8)) (-5 *1 (-135 *5 *6 *7 *8)))))
-(-10 -7 (-15 -3860 ((-136 |#1| |#2| |#4|) (-644 |#4|) (-136 |#1| |#2| |#3|))) (-15 -3077 ((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|))))
-((-2985 (((-112) $ $) NIL)) (-2214 (($ (-644 |#3|)) 64)) (-3804 (($ $) 126) (($ $ (-566) (-566)) 125)) (-2342 (($) 20)) (-2977 (((-3 |#3| "failed") $) 86)) (-1756 ((|#3| $) NIL)) (-1404 (($ $ (-644 (-566))) 127)) (-3848 (((-644 |#3|) $) 59)) (-1821 (((-771) $) 69)) (-2754 (($ $ $) 120)) (-2445 (($) 68)) (-2878 (((-1157) $) NIL)) (-3900 (($) 19)) (-4033 (((-1119) $) NIL)) (-4386 ((|#3| $) 71) ((|#3| $ (-566)) 72) ((|#3| $ (-566) (-566)) 73) ((|#3| $ (-566) (-566) (-566)) 74) ((|#3| $ (-566) (-566) (-566) (-566)) 75) ((|#3| $ (-644 (-566))) 76)) (-3992 (((-771) $) 70)) (-2850 (($ $ (-566) $ (-566)) 121) (($ $ (-566) (-566)) 123)) (-2512 (((-862) $) 94) (($ |#3|) 95) (($ (-240 |#2| |#3|)) 102) (($ (-1141 |#2| |#3|)) 105) (($ (-644 |#3|)) 77) (($ (-644 $)) 83)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 96 T CONST)) (-2495 (($) 97 T CONST)) (-2940 (((-112) $ $) 107)) (-3047 (($ $) 113) (($ $ $) 111)) (-3034 (($ $ $) 109)) (* (($ |#3| $) 118) (($ $ |#3|) 119) (($ $ (-566)) 116) (($ (-566) $) 115) (($ $ $) 122)))
-(((-136 |#1| |#2| |#3|) (-13 (-467 |#3| (-771)) (-472 (-566) (-771)) (-10 -8 (-15 -2512 ($ (-240 |#2| |#3|))) (-15 -2512 ($ (-1141 |#2| |#3|))) (-15 -2512 ($ (-644 |#3|))) (-15 -2512 ($ (-644 $))) (-15 -1821 ((-771) $)) (-15 -4386 (|#3| $)) (-15 -4386 (|#3| $ (-566))) (-15 -4386 (|#3| $ (-566) (-566))) (-15 -4386 (|#3| $ (-566) (-566) (-566))) (-15 -4386 (|#3| $ (-566) (-566) (-566) (-566))) (-15 -4386 (|#3| $ (-644 (-566)))) (-15 -2754 ($ $ $)) (-15 * ($ $ $)) (-15 -2850 ($ $ (-566) $ (-566))) (-15 -2850 ($ $ (-566) (-566))) (-15 -3804 ($ $)) (-15 -3804 ($ $ (-566) (-566))) (-15 -1404 ($ $ (-644 (-566)))) (-15 -3900 ($)) (-15 -2445 ($)) (-15 -3848 ((-644 |#3|) $)) (-15 -2214 ($ (-644 |#3|))) (-15 -2342 ($)))) (-566) (-771) (-172)) (T -136))
-((-2754 (*1 *1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-240 *4 *5)) (-14 *4 (-771)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-1141 *4 *5)) (-14 *4 (-771)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 (-771)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-136 *3 *4 *5))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 (-771)) (-4 *5 (-172)))) (-1821 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 *2) (-4 *5 (-172)))) (-4386 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-136 *3 *4 *2)) (-14 *3 (-566)) (-14 *4 (-771)))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-771)))) (-4386 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-771)))) (-4386 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-566)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-771)))) (-4386 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-566)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-771)))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 (-644 (-566))) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 (-566)) (-14 *5 (-771)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))) (-2850 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-771)) (-4 *5 (-172)))) (-2850 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-771)) (-4 *5 (-172)))) (-3804 (*1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))) (-3804 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-771)) (-4 *5 (-172)))) (-1404 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 (-771)) (-4 *5 (-172)))) (-3900 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))) (-2445 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))) (-3848 (*1 *2 *1) (-12 (-5 *2 (-644 *5)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 (-771)) (-4 *5 (-172)))) (-2214 (*1 *1 *2) (-12 (-5 *2 (-644 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 (-771)))) (-2342 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))))
-(-13 (-467 |#3| (-771)) (-472 (-566) (-771)) (-10 -8 (-15 -2512 ($ (-240 |#2| |#3|))) (-15 -2512 ($ (-1141 |#2| |#3|))) (-15 -2512 ($ (-644 |#3|))) (-15 -2512 ($ (-644 $))) (-15 -1821 ((-771) $)) (-15 -4386 (|#3| $)) (-15 -4386 (|#3| $ (-566))) (-15 -4386 (|#3| $ (-566) (-566))) (-15 -4386 (|#3| $ (-566) (-566) (-566))) (-15 -4386 (|#3| $ (-566) (-566) (-566) (-566))) (-15 -4386 (|#3| $ (-644 (-566)))) (-15 -2754 ($ $ $)) (-15 * ($ $ $)) (-15 -2850 ($ $ (-566) $ (-566))) (-15 -2850 ($ $ (-566) (-566))) (-15 -3804 ($ $)) (-15 -3804 ($ $ (-566) (-566))) (-15 -1404 ($ $ (-644 (-566)))) (-15 -3900 ($)) (-15 -2445 ($)) (-15 -3848 ((-644 |#3|) $)) (-15 -2214 ($ (-644 |#3|))) (-15 -2342 ($))))
-((-2985 (((-112) $ $) NIL)) (-3336 (((-1134) $) 11)) (-3324 (((-1134) $) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-137) (-13 (-1082) (-10 -8 (-15 -3324 ((-1134) $)) (-15 -3336 ((-1134) $))))) (T -137))
-((-3324 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-137)))) (-3336 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-137)))))
-(-13 (-1082) (-10 -8 (-15 -3324 ((-1134) $)) (-15 -3336 ((-1134) $))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-1690 (((-186) $) 10)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 20) (($ (-1180)) NIL) (((-1180) $) NIL)) (-2639 (((-644 (-1134)) $) 13)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-138) (-13 (-1082) (-10 -8 (-15 -1690 ((-186) $)) (-15 -2639 ((-644 (-1134)) $))))) (T -138))
-((-1690 (*1 *2 *1) (-12 (-5 *2 (-186)) (-5 *1 (-138)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-138)))))
-(-13 (-1082) (-10 -8 (-15 -1690 ((-186) $)) (-15 -2639 ((-644 (-1134)) $))))
-((-2985 (((-112) $ $) NIL)) (-3555 (((-644 (-865)) $) NIL)) (-2628 (((-508) $) NIL)) (-2878 (((-1157) $) NIL)) (-1690 (((-186) $) NIL)) (-2181 (((-112) $ (-508)) NIL)) (-4033 (((-1119) $) NIL)) (-3454 (((-644 (-112)) $) NIL)) (-2512 (((-862) $) NIL) (((-187) $) 6)) (-3122 (((-112) $ $) NIL)) (-1965 (((-55) $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 16) (($ (-1180)) NIL) (((-1180) $) NIL)) (-1398 (((-644 (-1134)) $) 10)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-133) (-13 (-1082) (-10 -8 (-15 -1398 ((-644 (-1134)) $))))) (T -133))
+((-1398 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-133)))))
+(-13 (-1082) (-10 -8 (-15 -1398 ((-644 (-1134)) $))))
+((-3009 (((-112) $ $) 49)) (-3015 (((-112) $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-771) "failed") $) 58)) (-1867 (((-771) $) 56)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) 37)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3660 (((-112)) 59)) (-3500 (((-112) (-112)) 61)) (-3453 (((-112) $) 30)) (-3650 (((-112) $) 55)) (-3780 (((-862) $) 28) (($ (-771)) 20)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 18 T CONST)) (-4333 (($) 19 T CONST)) (-3707 (($ (-771)) 21)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) 40)) (-2950 (((-112) $ $) 32)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 35)) (-3051 (((-3 $ "failed") $ $) 42)) (-3040 (($ $ $) 38)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL) (($ $ $) 54)) (* (($ (-771) $) 48) (($ (-921) $) NIL) (($ $ $) 45)))
+(((-134) (-13 (-850) (-23) (-726) (-1038 (-771)) (-10 -8 (-6 (-4416 "*")) (-15 -3051 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -3707 ($ (-771))) (-15 -3453 ((-112) $)) (-15 -3650 ((-112) $)) (-15 -3660 ((-112))) (-15 -3500 ((-112) (-112)))))) (T -134))
+((-3051 (*1 *1 *1 *1) (|partial| -5 *1 (-134))) (** (*1 *1 *1 *1) (-5 *1 (-134))) (-3707 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-134)))) (-3453 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-3650 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-3660 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))) (-3500 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
+(-13 (-850) (-23) (-726) (-1038 (-771)) (-10 -8 (-6 (-4416 "*")) (-15 -3051 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -3707 ($ (-771))) (-15 -3453 ((-112) $)) (-15 -3650 ((-112) $)) (-15 -3660 ((-112))) (-15 -3500 ((-112) (-112)))))
+((-3898 (((-136 |#1| |#2| |#4|) (-644 |#4|) (-136 |#1| |#2| |#3|)) 14)) (-3152 (((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|)) 18)))
+(((-135 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3898 ((-136 |#1| |#2| |#4|) (-644 |#4|) (-136 |#1| |#2| |#3|))) (-15 -3152 ((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|)))) (-566) (-771) (-172) (-172)) (T -135))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *7)) (-5 *4 (-136 *5 *6 *7)) (-14 *5 (-566)) (-14 *6 (-771)) (-4 *7 (-172)) (-4 *8 (-172)) (-5 *2 (-136 *5 *6 *8)) (-5 *1 (-135 *5 *6 *7 *8)))) (-3898 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-136 *5 *6 *7)) (-14 *5 (-566)) (-14 *6 (-771)) (-4 *7 (-172)) (-4 *8 (-172)) (-5 *2 (-136 *5 *6 *8)) (-5 *1 (-135 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3898 ((-136 |#1| |#2| |#4|) (-644 |#4|) (-136 |#1| |#2| |#3|))) (-15 -3152 ((-136 |#1| |#2| |#4|) (-1 |#4| |#3|) (-136 |#1| |#2| |#3|))))
+((-3009 (((-112) $ $) NIL)) (-1951 (($ (-644 |#3|)) 64)) (-4078 (($ $) 126) (($ $ (-566) (-566)) 125)) (-3877 (($) 20)) (-3066 (((-3 |#3| "failed") $) 86)) (-1867 ((|#3| $) NIL)) (-3609 (($ $ (-644 (-566))) 127)) (-3888 (((-644 |#3|) $) 59)) (-4157 (((-771) $) 69)) (-3594 (($ $ $) 120)) (-3616 (($) 68)) (-2402 (((-1157) $) NIL)) (-2532 (($) 19)) (-4056 (((-1119) $) NIL)) (-4393 ((|#3| $) 71) ((|#3| $ (-566)) 72) ((|#3| $ (-566) (-566)) 73) ((|#3| $ (-566) (-566) (-566)) 74) ((|#3| $ (-566) (-566) (-566) (-566)) 75) ((|#3| $ (-644 (-566))) 76)) (-2108 (((-771) $) 70)) (-2119 (($ $ (-566) $ (-566)) 121) (($ $ (-566) (-566)) 123)) (-3780 (((-862) $) 94) (($ |#3|) 95) (($ (-240 |#2| |#3|)) 102) (($ (-1141 |#2| |#3|)) 105) (($ (-644 |#3|)) 77) (($ (-644 $)) 83)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 96 T CONST)) (-4333 (($) 97 T CONST)) (-2950 (((-112) $ $) 107)) (-3051 (($ $) 113) (($ $ $) 111)) (-3040 (($ $ $) 109)) (* (($ |#3| $) 118) (($ $ |#3|) 119) (($ $ (-566)) 116) (($ (-566) $) 115) (($ $ $) 122)))
+(((-136 |#1| |#2| |#3|) (-13 (-467 |#3| (-771)) (-472 (-566) (-771)) (-10 -8 (-15 -3780 ($ (-240 |#2| |#3|))) (-15 -3780 ($ (-1141 |#2| |#3|))) (-15 -3780 ($ (-644 |#3|))) (-15 -3780 ($ (-644 $))) (-15 -4157 ((-771) $)) (-15 -4393 (|#3| $)) (-15 -4393 (|#3| $ (-566))) (-15 -4393 (|#3| $ (-566) (-566))) (-15 -4393 (|#3| $ (-566) (-566) (-566))) (-15 -4393 (|#3| $ (-566) (-566) (-566) (-566))) (-15 -4393 (|#3| $ (-644 (-566)))) (-15 -3594 ($ $ $)) (-15 * ($ $ $)) (-15 -2119 ($ $ (-566) $ (-566))) (-15 -2119 ($ $ (-566) (-566))) (-15 -4078 ($ $)) (-15 -4078 ($ $ (-566) (-566))) (-15 -3609 ($ $ (-644 (-566)))) (-15 -2532 ($)) (-15 -3616 ($)) (-15 -3888 ((-644 |#3|) $)) (-15 -1951 ($ (-644 |#3|))) (-15 -3877 ($)))) (-566) (-771) (-172)) (T -136))
+((-3594 (*1 *1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-240 *4 *5)) (-14 *4 (-771)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-1141 *4 *5)) (-14 *4 (-771)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 (-771)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-136 *3 *4 *5))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 (-771)) (-4 *5 (-172)))) (-4157 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 *2) (-4 *5 (-172)))) (-4393 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-136 *3 *4 *2)) (-14 *3 (-566)) (-14 *4 (-771)))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-771)))) (-4393 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-771)))) (-4393 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-566)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-771)))) (-4393 (*1 *2 *1 *3 *3 *3 *3) (-12 (-5 *3 (-566)) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-771)))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 (-644 (-566))) (-4 *2 (-172)) (-5 *1 (-136 *4 *5 *2)) (-14 *4 (-566)) (-14 *5 (-771)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))) (-2119 (*1 *1 *1 *2 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-771)) (-4 *5 (-172)))) (-2119 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-771)) (-4 *5 (-172)))) (-4078 (*1 *1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))) (-4078 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-771)) (-4 *5 (-172)))) (-3609 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 (-771)) (-4 *5 (-172)))) (-2532 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))) (-3616 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))) (-3888 (*1 *2 *1) (-12 (-5 *2 (-644 *5)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 (-771)) (-4 *5 (-172)))) (-1951 (*1 *1 *2) (-12 (-5 *2 (-644 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566)) (-14 *4 (-771)))) (-3877 (*1 *1) (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771)) (-4 *4 (-172)))))
+(-13 (-467 |#3| (-771)) (-472 (-566) (-771)) (-10 -8 (-15 -3780 ($ (-240 |#2| |#3|))) (-15 -3780 ($ (-1141 |#2| |#3|))) (-15 -3780 ($ (-644 |#3|))) (-15 -3780 ($ (-644 $))) (-15 -4157 ((-771) $)) (-15 -4393 (|#3| $)) (-15 -4393 (|#3| $ (-566))) (-15 -4393 (|#3| $ (-566) (-566))) (-15 -4393 (|#3| $ (-566) (-566) (-566))) (-15 -4393 (|#3| $ (-566) (-566) (-566) (-566))) (-15 -4393 (|#3| $ (-644 (-566)))) (-15 -3594 ($ $ $)) (-15 * ($ $ $)) (-15 -2119 ($ $ (-566) $ (-566))) (-15 -2119 ($ $ (-566) (-566))) (-15 -4078 ($ $)) (-15 -4078 ($ $ (-566) (-566))) (-15 -3609 ($ $ (-644 (-566)))) (-15 -2532 ($)) (-15 -3616 ($)) (-15 -3888 ((-644 |#3|) $)) (-15 -1951 ($ (-644 |#3|))) (-15 -3877 ($))))
+((-3009 (((-112) $ $) NIL)) (-3361 (((-1134) $) 11)) (-3349 (((-1134) $) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-137) (-13 (-1082) (-10 -8 (-15 -3349 ((-1134) $)) (-15 -3361 ((-1134) $))))) (T -137))
+((-3349 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-137)))) (-3361 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-137)))))
+(-13 (-1082) (-10 -8 (-15 -3349 ((-1134) $)) (-15 -3361 ((-1134) $))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-1731 (((-186) $) 10)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 20) (($ (-1180)) NIL) (((-1180) $) NIL)) (-1398 (((-644 (-1134)) $) 13)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-138) (-13 (-1082) (-10 -8 (-15 -1731 ((-186) $)) (-15 -1398 ((-644 (-1134)) $))))) (T -138))
+((-1731 (*1 *2 *1) (-12 (-5 *2 (-186)) (-5 *1 (-138)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-138)))))
+(-13 (-1082) (-10 -8 (-15 -1731 ((-186) $)) (-15 -1398 ((-644 (-1134)) $))))
+((-3009 (((-112) $ $) NIL)) (-3579 (((-644 (-865)) $) NIL)) (-2639 (((-508) $) NIL)) (-2402 (((-1157) $) NIL)) (-1731 (((-186) $) NIL)) (-2885 (((-112) $ (-508)) NIL)) (-4056 (((-1119) $) NIL)) (-3743 (((-644 (-112)) $) NIL)) (-3780 (((-862) $) NIL) (((-187) $) 6)) (-3801 (((-112) $ $) NIL)) (-1297 (((-55) $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-139) (-13 (-185) (-613 (-187)))) (T -139))
NIL
(-13 (-185) (-613 (-187)))
-((-2642 (((-644 (-183)) $) 13)) (-4251 (((-644 (-183)) $) 14)) (-3031 (((-644 (-838)) $) 10)) (-1534 (((-139) $) 7)) (-2512 (((-862) $) 16)))
-(((-140) (-13 (-613 (-862)) (-10 -8 (-15 -1534 ((-139) $)) (-15 -3031 ((-644 (-838)) $)) (-15 -2642 ((-644 (-183)) $)) (-15 -4251 ((-644 (-183)) $))))) (T -140))
-((-1534 (*1 *2 *1) (-12 (-5 *2 (-139)) (-5 *1 (-140)))) (-3031 (*1 *2 *1) (-12 (-5 *2 (-644 (-838))) (-5 *1 (-140)))) (-2642 (*1 *2 *1) (-12 (-5 *2 (-644 (-183))) (-5 *1 (-140)))) (-4251 (*1 *2 *1) (-12 (-5 *2 (-644 (-183))) (-5 *1 (-140)))))
-(-13 (-613 (-862)) (-10 -8 (-15 -1534 ((-139) $)) (-15 -3031 ((-644 (-838)) $)) (-15 -2642 ((-644 (-183)) $)) (-15 -4251 ((-644 (-183)) $))))
-((-2985 (((-112) $ $) NIL)) (-1760 (($) 17 T CONST)) (-1795 (($) NIL (|has| (-144) (-370)))) (-1781 (($ $ $) 19) (($ $ (-144)) NIL) (($ (-144) $) NIL)) (-1757 (($ $ $) NIL)) (-2768 (((-112) $ $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-4025 (((-771)) NIL (|has| (-144) (-370)))) (-1819 (($) NIL) (($ (-644 (-144))) NIL)) (-3586 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-3066 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417))) (($ (-144) $) 61 (|has| $ (-6 -4417)))) (-2651 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417))) (($ (-144) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-4362 (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4417))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4417))) (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-3335 (($) NIL (|has| (-144) (-370)))) (-3372 (((-644 (-144)) $) 70 (|has| $ (-6 -4417)))) (-3641 (((-112) $ $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-1439 (((-144) $) NIL (|has| (-144) (-850)))) (-2404 (((-644 (-144)) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-144) $) 27 (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-3059 (((-144) $) NIL (|has| (-144) (-850)))) (-1323 (($ (-1 (-144) (-144)) $) 69 (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-144) (-144)) $) 65)) (-1482 (($) 18 T CONST)) (-3712 (((-921) $) NIL (|has| (-144) (-370)))) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-2390 (($ $ $) 30)) (-3119 (((-144) $) 62)) (-4265 (($ (-144) $) 60)) (-2168 (($ (-921)) NIL (|has| (-144) (-370)))) (-2946 (($) 16 T CONST)) (-4033 (((-1119) $) NIL)) (-2126 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-2658 (((-144) $) 63)) (-2822 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-144)) (-644 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-295 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-644 (-295 (-144)))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) 58)) (-2352 (($) 15 T CONST)) (-3209 (($ $ $) 32) (($ $ (-144)) NIL)) (-3879 (($ (-644 (-144))) NIL) (($) NIL)) (-4044 (((-771) (-144) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099)))) (((-771) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-1157) $) 37) (((-538) $) NIL (|has| (-144) (-614 (-538)))) (((-644 (-144)) $) 35)) (-2523 (($ (-644 (-144))) NIL)) (-2718 (($ $) 33 (|has| (-144) (-370)))) (-2512 (((-862) $) 55)) (-2856 (($ (-1157)) 14) (($ (-644 (-144))) 52)) (-2870 (((-771) $) NIL)) (-2465 (($) 59) (($ (-644 (-144))) NIL)) (-3122 (((-112) $ $) NIL)) (-3309 (($ (-644 (-144))) NIL)) (-3427 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-3007 (($) 21 T CONST)) (-2137 (($) 20 T CONST)) (-2940 (((-112) $ $) 24)) (-2997 (((-771) $) 57 (|has| $ (-6 -4417)))))
-(((-141) (-13 (-1099) (-614 (-1157)) (-427 (-144)) (-614 (-644 (-144))) (-10 -8 (-15 -2856 ($ (-1157))) (-15 -2856 ($ (-644 (-144)))) (-15 -2352 ($) -1655) (-15 -2946 ($) -1655) (-15 -1760 ($) -1655) (-15 -1482 ($) -1655) (-15 -2137 ($) -1655) (-15 -3007 ($) -1655)))) (T -141))
-((-2856 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-141)))) (-2856 (*1 *1 *2) (-12 (-5 *2 (-644 (-144))) (-5 *1 (-141)))) (-2352 (*1 *1) (-5 *1 (-141))) (-2946 (*1 *1) (-5 *1 (-141))) (-1760 (*1 *1) (-5 *1 (-141))) (-1482 (*1 *1) (-5 *1 (-141))) (-2137 (*1 *1) (-5 *1 (-141))) (-3007 (*1 *1) (-5 *1 (-141))))
-(-13 (-1099) (-614 (-1157)) (-427 (-144)) (-614 (-644 (-144))) (-10 -8 (-15 -2856 ($ (-1157))) (-15 -2856 ($ (-644 (-144)))) (-15 -2352 ($) -1655) (-15 -2946 ($) -1655) (-15 -1760 ($) -1655) (-15 -1482 ($) -1655) (-15 -2137 ($) -1655) (-15 -3007 ($) -1655)))
-((-1919 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-1443 ((|#1| |#3|) 9)) (-3774 ((|#3| |#3|) 15)))
-(((-142 |#1| |#2| |#3|) (-10 -7 (-15 -1443 (|#1| |#3|)) (-15 -3774 (|#3| |#3|)) (-15 -1919 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-558) (-992 |#1|) (-375 |#2|)) (T -142))
-((-1919 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-992 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-142 *4 *5 *3)) (-4 *3 (-375 *5)))) (-3774 (*1 *2 *2) (-12 (-4 *3 (-558)) (-4 *4 (-992 *3)) (-5 *1 (-142 *3 *4 *2)) (-4 *2 (-375 *4)))) (-1443 (*1 *2 *3) (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-142 *2 *4 *3)) (-4 *3 (-375 *4)))))
-(-10 -7 (-15 -1443 (|#1| |#3|)) (-15 -3774 (|#3| |#3|)) (-15 -1919 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-3870 (($ $ $) 8)) (-3280 (($ $) 7)) (-1523 (($ $ $) 6)))
+((-1837 (((-644 (-183)) $) 13)) (-2516 (((-644 (-183)) $) 14)) (-4269 (((-644 (-838)) $) 10)) (-1592 (((-139) $) 7)) (-3780 (((-862) $) 16)))
+(((-140) (-13 (-613 (-862)) (-10 -8 (-15 -1592 ((-139) $)) (-15 -4269 ((-644 (-838)) $)) (-15 -1837 ((-644 (-183)) $)) (-15 -2516 ((-644 (-183)) $))))) (T -140))
+((-1592 (*1 *2 *1) (-12 (-5 *2 (-139)) (-5 *1 (-140)))) (-4269 (*1 *2 *1) (-12 (-5 *2 (-644 (-838))) (-5 *1 (-140)))) (-1837 (*1 *2 *1) (-12 (-5 *2 (-644 (-183))) (-5 *1 (-140)))) (-2516 (*1 *2 *1) (-12 (-5 *2 (-644 (-183))) (-5 *1 (-140)))))
+(-13 (-613 (-862)) (-10 -8 (-15 -1592 ((-139) $)) (-15 -4269 ((-644 (-838)) $)) (-15 -1837 ((-644 (-183)) $)) (-15 -2516 ((-644 (-183)) $))))
+((-3009 (((-112) $ $) NIL)) (-4146 (($) 17 T CONST)) (-3297 (($) NIL (|has| (-144) (-370)))) (-1814 (($ $ $) 19) (($ $ (-144)) NIL) (($ (-144) $) NIL)) (-4134 (($ $ $) NIL)) (-2523 (((-112) $ $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-4070 (((-771)) NIL (|has| (-144) (-370)))) (-3712 (($) NIL) (($ (-644 (-144))) NIL)) (-2556 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-1450 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414))) (($ (-144) $) 61 (|has| $ (-6 -4414)))) (-2661 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414))) (($ (-144) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-1580 (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4414))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4414))) (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-1618 (($) NIL (|has| (-144) (-370)))) (-3799 (((-644 (-144)) $) 70 (|has| $ (-6 -4414)))) (-1866 (((-112) $ $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-1945 (((-144) $) NIL (|has| (-144) (-850)))) (-3276 (((-644 (-144)) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-144) $) 27 (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-2709 (((-144) $) NIL (|has| (-144) (-850)))) (-3117 (($ (-1 (-144) (-144)) $) 69 (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-144) (-144)) $) 65)) (-3160 (($) 18 T CONST)) (-1299 (((-921) $) NIL (|has| (-144) (-370)))) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-3147 (($ $ $) 30)) (-3765 (((-144) $) 62)) (-2903 (($ (-144) $) 60)) (-2208 (($ (-921)) NIL (|has| (-144) (-370)))) (-1810 (($) 16 T CONST)) (-4056 (((-1119) $) NIL)) (-3591 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-3852 (((-144) $) 63)) (-3044 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-144)) (-644 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-295 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-644 (-295 (-144)))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) 58)) (-3978 (($) 15 T CONST)) (-3304 (($ $ $) 32) (($ $ (-144)) NIL)) (-3551 (($ (-644 (-144))) NIL) (($) NIL)) (-4067 (((-771) (-144) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099)))) (((-771) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-1157) $) 37) (((-538) $) NIL (|has| (-144) (-614 (-538)))) (((-644 (-144)) $) 35)) (-3791 (($ (-644 (-144))) NIL)) (-3247 (($ $) 33 (|has| (-144) (-370)))) (-3780 (((-862) $) 55)) (-2168 (($ (-1157)) 14) (($ (-644 (-144))) 52)) (-2313 (((-771) $) NIL)) (-2535 (($) 59) (($ (-644 (-144))) NIL)) (-3801 (((-112) $ $) NIL)) (-2926 (($ (-644 (-144))) NIL)) (-1583 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-2204 (($) 21 T CONST)) (-2500 (($) 20 T CONST)) (-2950 (((-112) $ $) 24)) (-3020 (((-771) $) 57 (|has| $ (-6 -4414)))))
+(((-141) (-13 (-1099) (-614 (-1157)) (-427 (-144)) (-614 (-644 (-144))) (-10 -8 (-15 -2168 ($ (-1157))) (-15 -2168 ($ (-644 (-144)))) (-15 -3978 ($) -2460) (-15 -1810 ($) -2460) (-15 -4146 ($) -2460) (-15 -3160 ($) -2460) (-15 -2500 ($) -2460) (-15 -2204 ($) -2460)))) (T -141))
+((-2168 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-141)))) (-2168 (*1 *1 *2) (-12 (-5 *2 (-644 (-144))) (-5 *1 (-141)))) (-3978 (*1 *1) (-5 *1 (-141))) (-1810 (*1 *1) (-5 *1 (-141))) (-4146 (*1 *1) (-5 *1 (-141))) (-3160 (*1 *1) (-5 *1 (-141))) (-2500 (*1 *1) (-5 *1 (-141))) (-2204 (*1 *1) (-5 *1 (-141))))
+(-13 (-1099) (-614 (-1157)) (-427 (-144)) (-614 (-644 (-144))) (-10 -8 (-15 -2168 ($ (-1157))) (-15 -2168 ($ (-644 (-144)))) (-15 -3978 ($) -2460) (-15 -1810 ($) -2460) (-15 -4146 ($) -2460) (-15 -3160 ($) -2460) (-15 -2500 ($) -2460) (-15 -2204 ($) -2460)))
+((-2110 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-3981 ((|#1| |#3|) 9)) (-3812 ((|#3| |#3|) 15)))
+(((-142 |#1| |#2| |#3|) (-10 -7 (-15 -3981 (|#1| |#3|)) (-15 -3812 (|#3| |#3|)) (-15 -2110 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-558) (-992 |#1|) (-375 |#2|)) (T -142))
+((-2110 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-992 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-142 *4 *5 *3)) (-4 *3 (-375 *5)))) (-3812 (*1 *2 *2) (-12 (-4 *3 (-558)) (-4 *4 (-992 *3)) (-5 *1 (-142 *3 *4 *2)) (-4 *2 (-375 *4)))) (-3981 (*1 *2 *3) (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-142 *2 *4 *3)) (-4 *3 (-375 *4)))))
+(-10 -7 (-15 -3981 (|#1| |#3|)) (-15 -3812 (|#3| |#3|)) (-15 -2110 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-3477 (($ $ $) 8)) (-2711 (($ $) 7)) (-2378 (($ $ $) 6)))
(((-143) (-140)) (T -143))
-((-3870 (*1 *1 *1 *1) (-4 *1 (-143))) (-3280 (*1 *1 *1) (-4 *1 (-143))) (-1523 (*1 *1 *1 *1) (-4 *1 (-143))))
-(-13 (-10 -8 (-15 -1523 ($ $ $)) (-15 -3280 ($ $)) (-15 -3870 ($ $ $))))
-((-2985 (((-112) $ $) NIL)) (-2698 (((-112) $) 39)) (-1760 (($ $) 55)) (-1772 (($) 26)) (-4025 (((-771)) 13)) (-3335 (($) 25)) (-1603 (($) 27)) (-1366 (((-771) $) 21)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3418 (((-112) $) 41)) (-1482 (($ $) 56)) (-3712 (((-921) $) 23)) (-2878 (((-1157) $) 49)) (-2168 (($ (-921)) 20)) (-1637 (((-112) $) 37)) (-4033 (((-1119) $) NIL)) (-3997 (($) 28)) (-1943 (((-112) $) 35)) (-2512 (((-862) $) 30)) (-2894 (($ (-771)) 19) (($ (-1157)) 54)) (-3122 (((-112) $ $) NIL)) (-3203 (((-112) $) 45)) (-2344 (((-112) $) 43)) (-2998 (((-112) $ $) 11)) (-2974 (((-112) $ $) 9)) (-2940 (((-112) $ $) 7)) (-2987 (((-112) $ $) 10)) (-2962 (((-112) $ $) 8)))
-(((-144) (-13 (-844) (-10 -8 (-15 -1366 ((-771) $)) (-15 -2894 ($ (-771))) (-15 -2894 ($ (-1157))) (-15 -1772 ($)) (-15 -1603 ($)) (-15 -3997 ($)) (-15 -1760 ($ $)) (-15 -1482 ($ $)) (-15 -1943 ((-112) $)) (-15 -1637 ((-112) $)) (-15 -2344 ((-112) $)) (-15 -2698 ((-112) $)) (-15 -3418 ((-112) $)) (-15 -3203 ((-112) $))))) (T -144))
-((-1366 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-144)))) (-2894 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-144)))) (-2894 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-144)))) (-1772 (*1 *1) (-5 *1 (-144))) (-1603 (*1 *1) (-5 *1 (-144))) (-3997 (*1 *1) (-5 *1 (-144))) (-1760 (*1 *1 *1) (-5 *1 (-144))) (-1482 (*1 *1 *1) (-5 *1 (-144))) (-1943 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-1637 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-2344 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-2698 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-3418 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-3203 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(-13 (-844) (-10 -8 (-15 -1366 ((-771) $)) (-15 -2894 ($ (-771))) (-15 -2894 ($ (-1157))) (-15 -1772 ($)) (-15 -1603 ($)) (-15 -3997 ($)) (-15 -1760 ($ $)) (-15 -1482 ($ $)) (-15 -1943 ((-112) $)) (-15 -1637 ((-112) $)) (-15 -2344 ((-112) $)) (-15 -2698 ((-112) $)) (-15 -3418 ((-112) $)) (-15 -3203 ((-112) $))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33)) (-3842 (((-3 $ "failed") $) 39)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3477 (*1 *1 *1 *1) (-4 *1 (-143))) (-2711 (*1 *1 *1) (-4 *1 (-143))) (-2378 (*1 *1 *1 *1) (-4 *1 (-143))))
+(-13 (-10 -8 (-15 -2378 ($ $ $)) (-15 -2711 ($ $)) (-15 -3477 ($ $ $))))
+((-3009 (((-112) $ $) NIL)) (-4244 (((-112) $) 39)) (-4146 (($ $) 55)) (-3058 (($) 26)) (-4070 (((-771)) 13)) (-1618 (($) 25)) (-1971 (($) 27)) (-2340 (((-771) $) 21)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1488 (((-112) $) 41)) (-3160 (($ $) 56)) (-1299 (((-921) $) 23)) (-2402 (((-1157) $) 49)) (-2208 (($ (-921)) 20)) (-2310 (((-112) $) 37)) (-4056 (((-1119) $) NIL)) (-2148 (($) 28)) (-2790 (((-112) $) 35)) (-3780 (((-862) $) 30)) (-2916 (($ (-771)) 19) (($ (-1157)) 54)) (-3801 (((-112) $ $) NIL)) (-3244 (((-112) $) 45)) (-3895 (((-112) $) 43)) (-3010 (((-112) $ $) 11)) (-2984 (((-112) $ $) 9)) (-2950 (((-112) $ $) 7)) (-2999 (((-112) $ $) 10)) (-2972 (((-112) $ $) 8)))
+(((-144) (-13 (-844) (-10 -8 (-15 -2340 ((-771) $)) (-15 -2916 ($ (-771))) (-15 -2916 ($ (-1157))) (-15 -3058 ($)) (-15 -1971 ($)) (-15 -2148 ($)) (-15 -4146 ($ $)) (-15 -3160 ($ $)) (-15 -2790 ((-112) $)) (-15 -2310 ((-112) $)) (-15 -3895 ((-112) $)) (-15 -4244 ((-112) $)) (-15 -1488 ((-112) $)) (-15 -3244 ((-112) $))))) (T -144))
+((-2340 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-144)))) (-2916 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-144)))) (-2916 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-144)))) (-3058 (*1 *1) (-5 *1 (-144))) (-1971 (*1 *1) (-5 *1 (-144))) (-2148 (*1 *1) (-5 *1 (-144))) (-4146 (*1 *1 *1) (-5 *1 (-144))) (-3160 (*1 *1 *1) (-5 *1 (-144))) (-2790 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-2310 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-3895 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-4244 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-1488 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))) (-3244 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(-13 (-844) (-10 -8 (-15 -2340 ((-771) $)) (-15 -2916 ($ (-771))) (-15 -2916 ($ (-1157))) (-15 -3058 ($)) (-15 -1971 ($)) (-15 -2148 ($)) (-15 -4146 ($ $)) (-15 -3160 ($ $)) (-15 -2790 ((-112) $)) (-15 -2310 ((-112) $)) (-15 -3895 ((-112) $)) (-15 -4244 ((-112) $)) (-15 -1488 ((-112) $)) (-15 -3244 ((-112) $))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33)) (-3226 (((-3 $ "failed") $) 39)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-145) (-140)) (T -145))
-((-3842 (*1 *1 *1) (|partial| -4 *1 (-145))))
-(-13 (-1049) (-10 -8 (-15 -3842 ((-3 $ "failed") $))))
+((-3226 (*1 *1 *1) (|partial| -4 *1 (-145))))
+(-13 (-1049) (-10 -8 (-15 -3226 ((-3 $ "failed") $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-726) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-1963 ((|#1| (-689 |#1|) |#1|) 23)))
-(((-146 |#1|) (-10 -7 (-15 -1963 (|#1| (-689 |#1|) |#1|))) (-172)) (T -146))
-((-1963 (*1 *2 *3 *2) (-12 (-5 *3 (-689 *2)) (-4 *2 (-172)) (-5 *1 (-146 *2)))))
-(-10 -7 (-15 -1963 (|#1| (-689 |#1|) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-4370 ((|#1| (-689 |#1|) |#1|) 23)))
+(((-146 |#1|) (-10 -7 (-15 -4370 (|#1| (-689 |#1|) |#1|))) (-172)) (T -146))
+((-4370 (*1 *2 *3 *2) (-12 (-5 *3 (-689 *2)) (-4 *2 (-172)) (-5 *1 (-146 *2)))))
+(-10 -7 (-15 -4370 (|#1| (-689 |#1|) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-147) (-140)) (T -147))
NIL
(-13 (-1049))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-726) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2114 (((-2 (|:| -3250 (-771)) (|:| -3157 (-409 |#2|)) (|:| |radicand| |#2|)) (-409 |#2|) (-771)) 76)) (-2815 (((-3 (-2 (|:| |radicand| (-409 |#2|)) (|:| |deg| (-771))) "failed") |#3|) 56)) (-4266 (((-2 (|:| -3157 (-409 |#2|)) (|:| |poly| |#3|)) |#3|) 41)) (-2027 ((|#1| |#3| |#3|) 44)) (-2070 ((|#3| |#3| (-409 |#2|) (-409 |#2|)) 20)) (-3196 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| |deg| (-771))) |#3| |#3|) 53)))
-(((-148 |#1| |#2| |#3|) (-10 -7 (-15 -4266 ((-2 (|:| -3157 (-409 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2815 ((-3 (-2 (|:| |radicand| (-409 |#2|)) (|:| |deg| (-771))) "failed") |#3|)) (-15 -2114 ((-2 (|:| -3250 (-771)) (|:| -3157 (-409 |#2|)) (|:| |radicand| |#2|)) (-409 |#2|) (-771))) (-15 -2027 (|#1| |#3| |#3|)) (-15 -2070 (|#3| |#3| (-409 |#2|) (-409 |#2|))) (-15 -3196 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| |deg| (-771))) |#3| |#3|))) (-1218) (-1240 |#1|) (-1240 (-409 |#2|))) (T -148))
-((-3196 (*1 *2 *3 *3) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-409 *5)) (|:| |c2| (-409 *5)) (|:| |deg| (-771)))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))) (-2070 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-409 *5)) (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-5 *1 (-148 *4 *5 *2)) (-4 *2 (-1240 *3)))) (-2027 (*1 *2 *3 *3) (-12 (-4 *4 (-1240 *2)) (-4 *2 (-1218)) (-5 *1 (-148 *2 *4 *3)) (-4 *3 (-1240 (-409 *4))))) (-2114 (*1 *2 *3 *4) (-12 (-5 *3 (-409 *6)) (-4 *5 (-1218)) (-4 *6 (-1240 *5)) (-5 *2 (-2 (|:| -3250 (-771)) (|:| -3157 *3) (|:| |radicand| *6))) (-5 *1 (-148 *5 *6 *7)) (-5 *4 (-771)) (-4 *7 (-1240 *3)))) (-2815 (*1 *2 *3) (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| |radicand| (-409 *5)) (|:| |deg| (-771)))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))) (-4266 (*1 *2 *3) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| -3157 (-409 *5)) (|:| |poly| *3))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))))
-(-10 -7 (-15 -4266 ((-2 (|:| -3157 (-409 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2815 ((-3 (-2 (|:| |radicand| (-409 |#2|)) (|:| |deg| (-771))) "failed") |#3|)) (-15 -2114 ((-2 (|:| -3250 (-771)) (|:| -3157 (-409 |#2|)) (|:| |radicand| |#2|)) (-409 |#2|) (-771))) (-15 -2027 (|#1| |#3| |#3|)) (-15 -2070 (|#3| |#3| (-409 |#2|) (-409 |#2|))) (-15 -3196 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| |deg| (-771))) |#3| |#3|)))
-((-1348 (((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|)) 35)))
-(((-149 |#1| |#2|) (-10 -7 (-15 -1348 ((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|)))) (-547) (-166 |#1|)) (T -149))
-((-1348 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 *5))) (-5 *3 (-1171 *5)) (-4 *5 (-166 *4)) (-4 *4 (-547)) (-5 *1 (-149 *4 *5)))))
-(-10 -7 (-15 -1348 ((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|))))
-((-4186 (($ (-1 (-112) |#2|) $) 35)) (-4093 (($ $) 42)) (-2651 (($ (-1 (-112) |#2|) $) 33) (($ |#2| $) 38)) (-4362 ((|#2| (-1 |#2| |#2| |#2|) $) 28) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 30) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40)) (-2126 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 25)) (-2822 (((-112) (-1 (-112) |#2|) $) 22)) (-4044 (((-771) (-1 (-112) |#2|) $) 18) (((-771) |#2| $) NIL)) (-3427 (((-112) (-1 (-112) |#2|) $) 21)) (-2997 (((-771) $) 12)))
-(((-150 |#1| |#2|) (-10 -8 (-15 -4093 (|#1| |#1|)) (-15 -2651 (|#1| |#2| |#1|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -4186 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2651 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2126 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4044 ((-771) |#2| |#1|)) (-15 -4044 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -2822 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2997 ((-771) |#1|))) (-151 |#2|) (-1214)) (T -150))
-NIL
-(-10 -8 (-15 -4093 (|#1| |#1|)) (-15 -2651 (|#1| |#2| |#1|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -4186 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2651 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2126 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4044 ((-771) |#2| |#1|)) (-15 -4044 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -2822 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2997 ((-771) |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) 8)) (-4186 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-4093 (($ $) 42 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4417))) (($ |#1| $) 43 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $) 48 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 47 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 44 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 49)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 41 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 50)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3475 (((-2 (|:| -2456 (-771)) (|:| -3223 (-409 |#2|)) (|:| |radicand| |#2|)) (-409 |#2|) (-771)) 76)) (-2979 (((-3 (-2 (|:| |radicand| (-409 |#2|)) (|:| |deg| (-771))) "failed") |#3|) 56)) (-2913 (((-2 (|:| -3223 (-409 |#2|)) (|:| |poly| |#3|)) |#3|) 41)) (-3808 ((|#1| |#3| |#3|) 44)) (-2095 ((|#3| |#3| (-409 |#2|) (-409 |#2|)) 20)) (-3170 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| |deg| (-771))) |#3| |#3|) 53)))
+(((-148 |#1| |#2| |#3|) (-10 -7 (-15 -2913 ((-2 (|:| -3223 (-409 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2979 ((-3 (-2 (|:| |radicand| (-409 |#2|)) (|:| |deg| (-771))) "failed") |#3|)) (-15 -3475 ((-2 (|:| -2456 (-771)) (|:| -3223 (-409 |#2|)) (|:| |radicand| |#2|)) (-409 |#2|) (-771))) (-15 -3808 (|#1| |#3| |#3|)) (-15 -2095 (|#3| |#3| (-409 |#2|) (-409 |#2|))) (-15 -3170 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| |deg| (-771))) |#3| |#3|))) (-1218) (-1240 |#1|) (-1240 (-409 |#2|))) (T -148))
+((-3170 (*1 *2 *3 *3) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-409 *5)) (|:| |c2| (-409 *5)) (|:| |deg| (-771)))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))) (-2095 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-409 *5)) (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-5 *1 (-148 *4 *5 *2)) (-4 *2 (-1240 *3)))) (-3808 (*1 *2 *3 *3) (-12 (-4 *4 (-1240 *2)) (-4 *2 (-1218)) (-5 *1 (-148 *2 *4 *3)) (-4 *3 (-1240 (-409 *4))))) (-3475 (*1 *2 *3 *4) (-12 (-5 *3 (-409 *6)) (-4 *5 (-1218)) (-4 *6 (-1240 *5)) (-5 *2 (-2 (|:| -2456 (-771)) (|:| -3223 *3) (|:| |radicand| *6))) (-5 *1 (-148 *5 *6 *7)) (-5 *4 (-771)) (-4 *7 (-1240 *3)))) (-2979 (*1 *2 *3) (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| |radicand| (-409 *5)) (|:| |deg| (-771)))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))) (-2913 (*1 *2 *3) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| -3223 (-409 *5)) (|:| |poly| *3))) (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))))
+(-10 -7 (-15 -2913 ((-2 (|:| -3223 (-409 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2979 ((-3 (-2 (|:| |radicand| (-409 |#2|)) (|:| |deg| (-771))) "failed") |#3|)) (-15 -3475 ((-2 (|:| -2456 (-771)) (|:| -3223 (-409 |#2|)) (|:| |radicand| |#2|)) (-409 |#2|) (-771))) (-15 -3808 (|#1| |#3| |#3|)) (-15 -2095 (|#3| |#3| (-409 |#2|) (-409 |#2|))) (-15 -3170 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| |deg| (-771))) |#3| |#3|)))
+((-3354 (((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|)) 35)))
+(((-149 |#1| |#2|) (-10 -7 (-15 -3354 ((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|)))) (-547) (-166 |#1|)) (T -149))
+((-3354 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 *5))) (-5 *3 (-1171 *5)) (-4 *5 (-166 *4)) (-4 *4 (-547)) (-5 *1 (-149 *4 *5)))))
+(-10 -7 (-15 -3354 ((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|))))
+((-1386 (($ (-1 (-112) |#2|) $) 35)) (-4133 (($ $) 42)) (-2661 (($ (-1 (-112) |#2|) $) 33) (($ |#2| $) 38)) (-1580 ((|#2| (-1 |#2| |#2| |#2|) $) 28) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 30) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40)) (-3591 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 25)) (-3044 (((-112) (-1 (-112) |#2|) $) 22)) (-4067 (((-771) (-1 (-112) |#2|) $) 18) (((-771) |#2| $) NIL)) (-1583 (((-112) (-1 (-112) |#2|) $) 21)) (-3020 (((-771) $) 12)))
+(((-150 |#1| |#2|) (-10 -8 (-15 -4133 (|#1| |#1|)) (-15 -2661 (|#1| |#2| |#1|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1386 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2661 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3591 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4067 ((-771) |#2| |#1|)) (-15 -4067 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -3044 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3020 ((-771) |#1|))) (-151 |#2|) (-1214)) (T -150))
+NIL
+(-10 -8 (-15 -4133 (|#1| |#1|)) (-15 -2661 (|#1| |#2| |#1|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1386 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2661 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3591 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4067 ((-771) |#2| |#1|)) (-15 -4067 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -3044 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3020 ((-771) |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) 8)) (-1386 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-4133 (($ $) 42 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4414))) (($ |#1| $) 43 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $) 48 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 47 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 44 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 49)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 41 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 50)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-151 |#1|) (-140) (-1214)) (T -151))
-((-2523 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-151 *3)))) (-2126 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-151 *2)) (-4 *2 (-1214)))) (-4362 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4417)) (-4 *1 (-151 *2)) (-4 *2 (-1214)))) (-4362 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4417)) (-4 *1 (-151 *2)) (-4 *2 (-1214)))) (-2651 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4417)) (-4 *1 (-151 *3)) (-4 *3 (-1214)))) (-4186 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4417)) (-4 *1 (-151 *3)) (-4 *3 (-1214)))) (-4362 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1099)) (|has| *1 (-6 -4417)) (-4 *1 (-151 *2)) (-4 *2 (-1214)))) (-2651 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4417)) (-4 *1 (-151 *2)) (-4 *2 (-1214)) (-4 *2 (-1099)))) (-4093 (*1 *1 *1) (-12 (|has| *1 (-6 -4417)) (-4 *1 (-151 *2)) (-4 *2 (-1214)) (-4 *2 (-1099)))))
-(-13 (-491 |t#1|) (-10 -8 (-15 -2523 ($ (-644 |t#1|))) (-15 -2126 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4417)) (PROGN (-15 -4362 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -4362 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -2651 ($ (-1 (-112) |t#1|) $)) (-15 -4186 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1099)) (PROGN (-15 -4362 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -2651 ($ |t#1| $)) (-15 -4093 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|)))
+((-3791 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-151 *3)))) (-3591 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-151 *2)) (-4 *2 (-1214)))) (-1580 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4414)) (-4 *1 (-151 *2)) (-4 *2 (-1214)))) (-1580 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4414)) (-4 *1 (-151 *2)) (-4 *2 (-1214)))) (-2661 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4414)) (-4 *1 (-151 *3)) (-4 *3 (-1214)))) (-1386 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4414)) (-4 *1 (-151 *3)) (-4 *3 (-1214)))) (-1580 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1099)) (|has| *1 (-6 -4414)) (-4 *1 (-151 *2)) (-4 *2 (-1214)))) (-2661 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4414)) (-4 *1 (-151 *2)) (-4 *2 (-1214)) (-4 *2 (-1099)))) (-4133 (*1 *1 *1) (-12 (|has| *1 (-6 -4414)) (-4 *1 (-151 *2)) (-4 *2 (-1214)) (-4 *2 (-1099)))))
+(-13 (-491 |t#1|) (-10 -8 (-15 -3791 ($ (-644 |t#1|))) (-15 -3591 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4414)) (PROGN (-15 -1580 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -1580 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -2661 ($ (-1 (-112) |t#1|) $)) (-15 -1386 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1099)) (PROGN (-15 -1580 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -2661 ($ |t#1| $)) (-15 -4133 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) 114)) (-2741 (((-112) $) NIL)) (-2519 (($ |#2| (-644 (-921))) 74)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3378 (($ (-921)) 61)) (-1909 (((-134)) 26)) (-2512 (((-862) $) 89) (($ (-566)) 57) (($ |#2|) 58)) (-2022 ((|#2| $ (-644 (-921))) 77)) (-3795 (((-771)) 23 T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 51 T CONST)) (-2495 (($) 55 T CONST)) (-2940 (((-112) $ $) 37)) (-3061 (($ $ |#2|) NIL)) (-3047 (($ $) 46) (($ $ $) 44)) (-3034 (($ $ $) 42)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 48) (($ $ $) 67) (($ |#2| $) 50) (($ $ |#2|) NIL)))
-(((-152 |#1| |#2| |#3|) (-13 (-1049) (-38 |#2|) (-1271 |#2|) (-10 -8 (-15 -3378 ($ (-921))) (-15 -2519 ($ |#2| (-644 (-921)))) (-15 -2022 (|#2| $ (-644 (-921)))) (-15 -1579 ((-3 $ "failed") $)))) (-921) (-365) (-993 |#1| |#2|)) (T -152))
-((-1579 (*1 *1 *1) (|partial| -12 (-5 *1 (-152 *2 *3 *4)) (-14 *2 (-921)) (-4 *3 (-365)) (-14 *4 (-993 *2 *3)))) (-3378 (*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-152 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-365)) (-14 *5 (-993 *3 *4)))) (-2519 (*1 *1 *2 *3) (-12 (-5 *3 (-644 (-921))) (-5 *1 (-152 *4 *2 *5)) (-14 *4 (-921)) (-4 *2 (-365)) (-14 *5 (-993 *4 *2)))) (-2022 (*1 *2 *1 *3) (-12 (-5 *3 (-644 (-921))) (-4 *2 (-365)) (-5 *1 (-152 *4 *2 *5)) (-14 *4 (-921)) (-14 *5 (-993 *4 *2)))))
-(-13 (-1049) (-38 |#2|) (-1271 |#2|) (-10 -8 (-15 -3378 ($ (-921))) (-15 -2519 ($ |#2| (-644 (-921)))) (-15 -2022 (|#2| $ (-644 (-921)))) (-15 -1579 ((-3 $ "failed") $))))
-((-1428 (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225)))) (-225) (-225) (-225) (-225)) 62)) (-3051 (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566))) 101) (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927)) 102)) (-2571 (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225))))) 105) (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-943 (-225)))) 104) (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566))) 96) (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927)) 97)))
-(((-153) (-10 -7 (-15 -2571 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927))) (-15 -2571 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566)))) (-15 -3051 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927))) (-15 -3051 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566)))) (-15 -1428 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225)))) (-225) (-225) (-225) (-225))) (-15 -2571 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-943 (-225))))) (-15 -2571 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225)))))))) (T -153))
-((-2571 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)) (-5 *3 (-644 (-644 (-943 (-225))))))) (-2571 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)) (-5 *3 (-644 (-943 (-225)))))) (-1428 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-225)) (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 *4)))) (|:| |xValues| (-1093 *4)) (|:| |yValues| (-1093 *4)))) (-5 *1 (-153)) (-5 *3 (-644 (-644 (-943 *4)))))) (-3051 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-927)) (-5 *4 (-409 (-566))) (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)))) (-3051 (*1 *2 *3) (-12 (-5 *3 (-927)) (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)))) (-2571 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-927)) (-5 *4 (-409 (-566))) (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)))) (-2571 (*1 *2 *3) (-12 (-5 *3 (-927)) (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)))))
-(-10 -7 (-15 -2571 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927))) (-15 -2571 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566)))) (-15 -3051 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927))) (-15 -3051 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566)))) (-15 -1428 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225)))) (-225) (-225) (-225) (-225))) (-15 -2571 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-943 (-225))))) (-15 -2571 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225)))))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-1365 (((-644 (-1134)) $) 20)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 27) (($ (-1180)) NIL) (((-1180) $) NIL)) (-2639 (((-1134) $) 9)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-154) (-13 (-1082) (-10 -8 (-15 -1365 ((-644 (-1134)) $)) (-15 -2639 ((-1134) $))))) (T -154))
-((-1365 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-154)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-154)))))
-(-13 (-1082) (-10 -8 (-15 -1365 ((-644 (-1134)) $)) (-15 -2639 ((-1134) $))))
-((-1548 (((-644 (-169 |#2|)) |#1| |#2|) 50)))
-(((-155 |#1| |#2|) (-10 -7 (-15 -1548 ((-644 (-169 |#2|)) |#1| |#2|))) (-1240 (-169 (-566))) (-13 (-365) (-848))) (T -155))
-((-1548 (*1 *2 *3 *4) (-12 (-5 *2 (-644 (-169 *4))) (-5 *1 (-155 *3 *4)) (-4 *3 (-1240 (-169 (-566)))) (-4 *4 (-13 (-365) (-848))))))
-(-10 -7 (-15 -1548 ((-644 (-169 |#2|)) |#1| |#2|)))
-((-2985 (((-112) $ $) NIL)) (-3336 (((-1213) $) 12)) (-3324 (((-1134) $) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 19) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-156) (-13 (-1082) (-10 -8 (-15 -3324 ((-1134) $)) (-15 -3336 ((-1213) $))))) (T -156))
-((-3324 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-156)))) (-3336 (*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-156)))))
-(-13 (-1082) (-10 -8 (-15 -3324 ((-1134) $)) (-15 -3336 ((-1213) $))))
-((-2985 (((-112) $ $) NIL)) (-3338 (($) 41)) (-3946 (($) 40)) (-1490 (((-921)) 46)) (-2878 (((-1157) $) NIL)) (-1648 (((-566) $) 44)) (-4033 (((-1119) $) NIL)) (-4049 (($) 42)) (-2340 (($ (-566)) 47)) (-2512 (((-862) $) 53)) (-2496 (($) 43)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 38)) (-3034 (($ $ $) 35)) (* (($ (-921) $) 45) (($ (-225) $) 11)))
-(((-157) (-13 (-25) (-10 -8 (-15 * ($ (-921) $)) (-15 * ($ (-225) $)) (-15 -3034 ($ $ $)) (-15 -3946 ($)) (-15 -3338 ($)) (-15 -4049 ($)) (-15 -2496 ($)) (-15 -1648 ((-566) $)) (-15 -1490 ((-921))) (-15 -2340 ($ (-566)))))) (T -157))
-((-3034 (*1 *1 *1 *1) (-5 *1 (-157))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-921)) (-5 *1 (-157)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-157)))) (-3946 (*1 *1) (-5 *1 (-157))) (-3338 (*1 *1) (-5 *1 (-157))) (-4049 (*1 *1) (-5 *1 (-157))) (-2496 (*1 *1) (-5 *1 (-157))) (-1648 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-157)))) (-1490 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-157)))) (-2340 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-157)))))
-(-13 (-25) (-10 -8 (-15 * ($ (-921) $)) (-15 * ($ (-225) $)) (-15 -3034 ($ $ $)) (-15 -3946 ($)) (-15 -3338 ($)) (-15 -4049 ($)) (-15 -2496 ($)) (-15 -1648 ((-566) $)) (-15 -1490 ((-921))) (-15 -2340 ($ (-566)))))
-((-3991 ((|#2| |#2| (-1091 |#2|)) 98) ((|#2| |#2| (-1175)) 75)) (-2754 ((|#2| |#2| (-1091 |#2|)) 97) ((|#2| |#2| (-1175)) 74)) (-3870 ((|#2| |#2| |#2|) 25)) (-2336 (((-114) (-114)) 111)) (-4294 ((|#2| (-644 |#2|)) 130)) (-1662 ((|#2| (-644 |#2|)) 152)) (-2803 ((|#2| (-644 |#2|)) 138)) (-4259 ((|#2| |#2|) 136)) (-3544 ((|#2| (-644 |#2|)) 124)) (-2860 ((|#2| (-644 |#2|)) 125)) (-1593 ((|#2| (-644 |#2|)) 150)) (-2515 ((|#2| |#2| (-1175)) 63) ((|#2| |#2|) 62)) (-3280 ((|#2| |#2|) 21)) (-1523 ((|#2| |#2| |#2|) 24)) (-2306 (((-112) (-114)) 55)) (** ((|#2| |#2| |#2|) 46)))
-(((-158 |#1| |#2|) (-10 -7 (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -1523 (|#2| |#2| |#2|)) (-15 -3870 (|#2| |#2| |#2|)) (-15 -3280 (|#2| |#2|)) (-15 -2515 (|#2| |#2|)) (-15 -2515 (|#2| |#2| (-1175))) (-15 -3991 (|#2| |#2| (-1175))) (-15 -3991 (|#2| |#2| (-1091 |#2|))) (-15 -2754 (|#2| |#2| (-1175))) (-15 -2754 (|#2| |#2| (-1091 |#2|))) (-15 -4259 (|#2| |#2|)) (-15 -1593 (|#2| (-644 |#2|))) (-15 -2803 (|#2| (-644 |#2|))) (-15 -1662 (|#2| (-644 |#2|))) (-15 -3544 (|#2| (-644 |#2|))) (-15 -2860 (|#2| (-644 |#2|))) (-15 -4294 (|#2| (-644 |#2|)))) (-558) (-432 |#1|)) (T -158))
-((-4294 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-2860 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-3544 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-1662 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-1593 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-4259 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (-2754 (*1 *2 *2 *3) (-12 (-5 *3 (-1091 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2)))) (-2754 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2)) (-4 *2 (-432 *4)))) (-3991 (*1 *2 *2 *3) (-12 (-5 *3 (-1091 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2)))) (-3991 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2)) (-4 *2 (-432 *4)))) (-2515 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2)) (-4 *2 (-432 *4)))) (-2515 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (-3280 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (-3870 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (-1523 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (-2336 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-158 *3 *4)) (-4 *4 (-432 *3)))) (-2306 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-158 *4 *5)) (-4 *5 (-432 *4)))))
-(-10 -7 (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -1523 (|#2| |#2| |#2|)) (-15 -3870 (|#2| |#2| |#2|)) (-15 -3280 (|#2| |#2|)) (-15 -2515 (|#2| |#2|)) (-15 -2515 (|#2| |#2| (-1175))) (-15 -3991 (|#2| |#2| (-1175))) (-15 -3991 (|#2| |#2| (-1091 |#2|))) (-15 -2754 (|#2| |#2| (-1175))) (-15 -2754 (|#2| |#2| (-1091 |#2|))) (-15 -4259 (|#2| |#2|)) (-15 -1593 (|#2| (-644 |#2|))) (-15 -2803 (|#2| (-644 |#2|))) (-15 -1662 (|#2| (-644 |#2|))) (-15 -3544 (|#2| (-644 |#2|))) (-15 -2860 (|#2| (-644 |#2|))) (-15 -4294 (|#2| (-644 |#2|))))
-((-2506 ((|#1| |#1| |#1|) 67)) (-2838 ((|#1| |#1| |#1|) 64)) (-3870 ((|#1| |#1| |#1|) 58)) (-2634 ((|#1| |#1|) 45)) (-2350 ((|#1| |#1| (-644 |#1|)) 55)) (-3280 ((|#1| |#1|) 48)) (-1523 ((|#1| |#1| |#1|) 51)))
-(((-159 |#1|) (-10 -7 (-15 -1523 (|#1| |#1| |#1|)) (-15 -3280 (|#1| |#1|)) (-15 -2350 (|#1| |#1| (-644 |#1|))) (-15 -2634 (|#1| |#1|)) (-15 -3870 (|#1| |#1| |#1|)) (-15 -2838 (|#1| |#1| |#1|)) (-15 -2506 (|#1| |#1| |#1|))) (-547)) (T -159))
-((-2506 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))) (-2838 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))) (-3870 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))) (-2634 (*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))) (-2350 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-547)) (-5 *1 (-159 *2)))) (-3280 (*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))) (-1523 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))))
-(-10 -7 (-15 -1523 (|#1| |#1| |#1|)) (-15 -3280 (|#1| |#1|)) (-15 -2350 (|#1| |#1| (-644 |#1|))) (-15 -2634 (|#1| |#1|)) (-15 -3870 (|#1| |#1| |#1|)) (-15 -2838 (|#1| |#1| |#1|)) (-15 -2506 (|#1| |#1| |#1|)))
-((-3991 (($ $ (-1175)) 12) (($ $ (-1091 $)) 11)) (-2754 (($ $ (-1175)) 10) (($ $ (-1091 $)) 9)) (-3870 (($ $ $) 8)) (-2515 (($ $) 14) (($ $ (-1175)) 13)) (-3280 (($ $) 7)) (-1523 (($ $ $) 6)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) 114)) (-3466 (((-112) $) NIL)) (-2585 (($ |#2| (-644 (-921))) 74)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3405 (($ (-921)) 61)) (-2012 (((-134)) 26)) (-3780 (((-862) $) 89) (($ (-566)) 57) (($ |#2|) 58)) (-3756 ((|#2| $ (-644 (-921))) 77)) (-3996 (((-771)) 23 T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 51 T CONST)) (-4333 (($) 55 T CONST)) (-2950 (((-112) $ $) 37)) (-3062 (($ $ |#2|) NIL)) (-3051 (($ $) 46) (($ $ $) 44)) (-3040 (($ $ $) 42)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 48) (($ $ $) 67) (($ |#2| $) 50) (($ $ |#2|) NIL)))
+(((-152 |#1| |#2| |#3|) (-13 (-1049) (-38 |#2|) (-1271 |#2|) (-10 -8 (-15 -3405 ($ (-921))) (-15 -2585 ($ |#2| (-644 (-921)))) (-15 -3756 (|#2| $ (-644 (-921)))) (-15 -2928 ((-3 $ "failed") $)))) (-921) (-365) (-993 |#1| |#2|)) (T -152))
+((-2928 (*1 *1 *1) (|partial| -12 (-5 *1 (-152 *2 *3 *4)) (-14 *2 (-921)) (-4 *3 (-365)) (-14 *4 (-993 *2 *3)))) (-3405 (*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-152 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-365)) (-14 *5 (-993 *3 *4)))) (-2585 (*1 *1 *2 *3) (-12 (-5 *3 (-644 (-921))) (-5 *1 (-152 *4 *2 *5)) (-14 *4 (-921)) (-4 *2 (-365)) (-14 *5 (-993 *4 *2)))) (-3756 (*1 *2 *1 *3) (-12 (-5 *3 (-644 (-921))) (-4 *2 (-365)) (-5 *1 (-152 *4 *2 *5)) (-14 *4 (-921)) (-14 *5 (-993 *4 *2)))))
+(-13 (-1049) (-38 |#2|) (-1271 |#2|) (-10 -8 (-15 -3405 ($ (-921))) (-15 -2585 ($ |#2| (-644 (-921)))) (-15 -3756 (|#2| $ (-644 (-921)))) (-15 -2928 ((-3 $ "failed") $))))
+((-3839 (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225)))) (-225) (-225) (-225) (-225)) 62)) (-1330 (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566))) 101) (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927)) 102)) (-2395 (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225))))) 105) (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-943 (-225)))) 104) (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566))) 96) (((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927)) 97)))
+(((-153) (-10 -7 (-15 -2395 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927))) (-15 -2395 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566)))) (-15 -1330 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927))) (-15 -1330 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566)))) (-15 -3839 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225)))) (-225) (-225) (-225) (-225))) (-15 -2395 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-943 (-225))))) (-15 -2395 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225)))))))) (T -153))
+((-2395 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)) (-5 *3 (-644 (-644 (-943 (-225))))))) (-2395 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)) (-5 *3 (-644 (-943 (-225)))))) (-3839 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *4 (-225)) (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 *4)))) (|:| |xValues| (-1093 *4)) (|:| |yValues| (-1093 *4)))) (-5 *1 (-153)) (-5 *3 (-644 (-644 (-943 *4)))))) (-1330 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-927)) (-5 *4 (-409 (-566))) (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)))) (-1330 (*1 *2 *3) (-12 (-5 *3 (-927)) (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)))) (-2395 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-927)) (-5 *4 (-409 (-566))) (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)))) (-2395 (*1 *2 *3) (-12 (-5 *3 (-927)) (-5 *2 (-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225))))) (-5 *1 (-153)))))
+(-10 -7 (-15 -2395 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927))) (-15 -2395 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566)))) (-15 -1330 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927))) (-15 -1330 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-927) (-409 (-566)) (-409 (-566)))) (-15 -3839 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225)))) (-225) (-225) (-225) (-225))) (-15 -2395 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-943 (-225))))) (-15 -2395 ((-2 (|:| |brans| (-644 (-644 (-943 (-225))))) (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))) (-644 (-644 (-943 (-225)))))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-1414 (((-644 (-1134)) $) 20)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 27) (($ (-1180)) NIL) (((-1180) $) NIL)) (-1398 (((-1134) $) 9)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-154) (-13 (-1082) (-10 -8 (-15 -1414 ((-644 (-1134)) $)) (-15 -1398 ((-1134) $))))) (T -154))
+((-1414 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-154)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-154)))))
+(-13 (-1082) (-10 -8 (-15 -1414 ((-644 (-1134)) $)) (-15 -1398 ((-1134) $))))
+((-2623 (((-644 (-169 |#2|)) |#1| |#2|) 50)))
+(((-155 |#1| |#2|) (-10 -7 (-15 -2623 ((-644 (-169 |#2|)) |#1| |#2|))) (-1240 (-169 (-566))) (-13 (-365) (-848))) (T -155))
+((-2623 (*1 *2 *3 *4) (-12 (-5 *2 (-644 (-169 *4))) (-5 *1 (-155 *3 *4)) (-4 *3 (-1240 (-169 (-566)))) (-4 *4 (-13 (-365) (-848))))))
+(-10 -7 (-15 -2623 ((-644 (-169 |#2|)) |#1| |#2|)))
+((-3009 (((-112) $ $) NIL)) (-3361 (((-1213) $) 12)) (-3349 (((-1134) $) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 19) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-156) (-13 (-1082) (-10 -8 (-15 -3349 ((-1134) $)) (-15 -3361 ((-1213) $))))) (T -156))
+((-3349 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-156)))) (-3361 (*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-156)))))
+(-13 (-1082) (-10 -8 (-15 -3349 ((-1134) $)) (-15 -3361 ((-1213) $))))
+((-3009 (((-112) $ $) NIL)) (-1972 (($) 41)) (-2898 (($) 40)) (-3243 (((-921)) 46)) (-2402 (((-1157) $) NIL)) (-4263 (((-566) $) 44)) (-4056 (((-1119) $) NIL)) (-1374 (($) 42)) (-3857 (($ (-566)) 47)) (-3780 (((-862) $) 53)) (-2869 (($) 43)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 38)) (-3040 (($ $ $) 35)) (* (($ (-921) $) 45) (($ (-225) $) 11)))
+(((-157) (-13 (-25) (-10 -8 (-15 * ($ (-921) $)) (-15 * ($ (-225) $)) (-15 -3040 ($ $ $)) (-15 -2898 ($)) (-15 -1972 ($)) (-15 -1374 ($)) (-15 -2869 ($)) (-15 -4263 ((-566) $)) (-15 -3243 ((-921))) (-15 -3857 ($ (-566)))))) (T -157))
+((-3040 (*1 *1 *1 *1) (-5 *1 (-157))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-921)) (-5 *1 (-157)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-157)))) (-2898 (*1 *1) (-5 *1 (-157))) (-1972 (*1 *1) (-5 *1 (-157))) (-1374 (*1 *1) (-5 *1 (-157))) (-2869 (*1 *1) (-5 *1 (-157))) (-4263 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-157)))) (-3243 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-157)))) (-3857 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-157)))))
+(-13 (-25) (-10 -8 (-15 * ($ (-921) $)) (-15 * ($ (-225) $)) (-15 -3040 ($ $ $)) (-15 -2898 ($)) (-15 -1972 ($)) (-15 -1374 ($)) (-15 -2869 ($)) (-15 -4263 ((-566) $)) (-15 -3243 ((-921))) (-15 -3857 ($ (-566)))))
+((-2098 ((|#2| |#2| (-1091 |#2|)) 98) ((|#2| |#2| (-1175)) 75)) (-3594 ((|#2| |#2| (-1091 |#2|)) 97) ((|#2| |#2| (-1175)) 74)) (-3477 ((|#2| |#2| |#2|) 25)) (-2415 (((-114) (-114)) 111)) (-1981 ((|#2| (-644 |#2|)) 130)) (-4387 ((|#2| (-644 |#2|)) 152)) (-2860 ((|#2| (-644 |#2|)) 138)) (-2838 ((|#2| |#2|) 136)) (-3375 ((|#2| (-644 |#2|)) 124)) (-2213 ((|#2| (-644 |#2|)) 125)) (-1879 ((|#2| (-644 |#2|)) 150)) (-1856 ((|#2| |#2| (-1175)) 63) ((|#2| |#2|) 62)) (-2711 ((|#2| |#2|) 21)) (-2378 ((|#2| |#2| |#2|) 24)) (-1643 (((-112) (-114)) 55)) (** ((|#2| |#2| |#2|) 46)))
+(((-158 |#1| |#2|) (-10 -7 (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -2378 (|#2| |#2| |#2|)) (-15 -3477 (|#2| |#2| |#2|)) (-15 -2711 (|#2| |#2|)) (-15 -1856 (|#2| |#2|)) (-15 -1856 (|#2| |#2| (-1175))) (-15 -2098 (|#2| |#2| (-1175))) (-15 -2098 (|#2| |#2| (-1091 |#2|))) (-15 -3594 (|#2| |#2| (-1175))) (-15 -3594 (|#2| |#2| (-1091 |#2|))) (-15 -2838 (|#2| |#2|)) (-15 -1879 (|#2| (-644 |#2|))) (-15 -2860 (|#2| (-644 |#2|))) (-15 -4387 (|#2| (-644 |#2|))) (-15 -3375 (|#2| (-644 |#2|))) (-15 -2213 (|#2| (-644 |#2|))) (-15 -1981 (|#2| (-644 |#2|)))) (-558) (-432 |#1|)) (T -158))
+((-1981 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-2213 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-3375 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-4387 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-2860 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-1879 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2)) (-4 *4 (-558)))) (-2838 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (-3594 (*1 *2 *2 *3) (-12 (-5 *3 (-1091 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2)))) (-3594 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2)) (-4 *2 (-432 *4)))) (-2098 (*1 *2 *2 *3) (-12 (-5 *3 (-1091 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2)))) (-2098 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2)) (-4 *2 (-432 *4)))) (-1856 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2)) (-4 *2 (-432 *4)))) (-1856 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (-2711 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (-3477 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (-2378 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (** (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))) (-2415 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-158 *3 *4)) (-4 *4 (-432 *3)))) (-1643 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-158 *4 *5)) (-4 *5 (-432 *4)))))
+(-10 -7 (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 ** (|#2| |#2| |#2|)) (-15 -2378 (|#2| |#2| |#2|)) (-15 -3477 (|#2| |#2| |#2|)) (-15 -2711 (|#2| |#2|)) (-15 -1856 (|#2| |#2|)) (-15 -1856 (|#2| |#2| (-1175))) (-15 -2098 (|#2| |#2| (-1175))) (-15 -2098 (|#2| |#2| (-1091 |#2|))) (-15 -3594 (|#2| |#2| (-1175))) (-15 -3594 (|#2| |#2| (-1091 |#2|))) (-15 -2838 (|#2| |#2|)) (-15 -1879 (|#2| (-644 |#2|))) (-15 -2860 (|#2| (-644 |#2|))) (-15 -4387 (|#2| (-644 |#2|))) (-15 -3375 (|#2| (-644 |#2|))) (-15 -2213 (|#2| (-644 |#2|))) (-15 -1981 (|#2| (-644 |#2|))))
+((-2980 ((|#1| |#1| |#1|) 67)) (-1996 ((|#1| |#1| |#1|) 64)) (-3477 ((|#1| |#1| |#1|) 58)) (-1772 ((|#1| |#1|) 45)) (-3954 ((|#1| |#1| (-644 |#1|)) 55)) (-2711 ((|#1| |#1|) 48)) (-2378 ((|#1| |#1| |#1|) 51)))
+(((-159 |#1|) (-10 -7 (-15 -2378 (|#1| |#1| |#1|)) (-15 -2711 (|#1| |#1|)) (-15 -3954 (|#1| |#1| (-644 |#1|))) (-15 -1772 (|#1| |#1|)) (-15 -3477 (|#1| |#1| |#1|)) (-15 -1996 (|#1| |#1| |#1|)) (-15 -2980 (|#1| |#1| |#1|))) (-547)) (T -159))
+((-2980 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))) (-1996 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))) (-3477 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))) (-1772 (*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))) (-3954 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-547)) (-5 *1 (-159 *2)))) (-2711 (*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))) (-2378 (*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))))
+(-10 -7 (-15 -2378 (|#1| |#1| |#1|)) (-15 -2711 (|#1| |#1|)) (-15 -3954 (|#1| |#1| (-644 |#1|))) (-15 -1772 (|#1| |#1|)) (-15 -3477 (|#1| |#1| |#1|)) (-15 -1996 (|#1| |#1| |#1|)) (-15 -2980 (|#1| |#1| |#1|)))
+((-2098 (($ $ (-1175)) 12) (($ $ (-1091 $)) 11)) (-3594 (($ $ (-1175)) 10) (($ $ (-1091 $)) 9)) (-3477 (($ $ $) 8)) (-1856 (($ $) 14) (($ $ (-1175)) 13)) (-2711 (($ $) 7)) (-2378 (($ $ $) 6)))
(((-160) (-140)) (T -160))
-((-2515 (*1 *1 *1) (-4 *1 (-160))) (-2515 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175)))) (-3991 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175)))) (-3991 (*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-160)))) (-2754 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175)))) (-2754 (*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-160)))))
-(-13 (-143) (-10 -8 (-15 -2515 ($ $)) (-15 -2515 ($ $ (-1175))) (-15 -3991 ($ $ (-1175))) (-15 -3991 ($ $ (-1091 $))) (-15 -2754 ($ $ (-1175))) (-15 -2754 ($ $ (-1091 $)))))
+((-1856 (*1 *1 *1) (-4 *1 (-160))) (-1856 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175)))) (-2098 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175)))) (-2098 (*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-160)))) (-3594 (*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175)))) (-3594 (*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-160)))))
+(-13 (-143) (-10 -8 (-15 -1856 ($ $)) (-15 -1856 ($ $ (-1175))) (-15 -2098 ($ $ (-1175))) (-15 -2098 ($ $ (-1091 $))) (-15 -3594 ($ $ (-1175))) (-15 -3594 ($ $ (-1091 $)))))
(((-143) . T))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 16) (($ (-1180)) NIL) (((-1180) $) NIL)) (-2639 (((-644 (-1134)) $) 10)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-161) (-13 (-1082) (-10 -8 (-15 -2639 ((-644 (-1134)) $))))) (T -161))
-((-2639 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-161)))))
-(-13 (-1082) (-10 -8 (-15 -2639 ((-644 (-1134)) $))))
-((-2985 (((-112) $ $) NIL)) (-1502 (($ (-566)) 14) (($ $ $) 15)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 18)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 9)))
-(((-162) (-13 (-1099) (-10 -8 (-15 -1502 ($ (-566))) (-15 -1502 ($ $ $))))) (T -162))
-((-1502 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-162)))) (-1502 (*1 *1 *1 *1) (-5 *1 (-162))))
-(-13 (-1099) (-10 -8 (-15 -1502 ($ (-566))) (-15 -1502 ($ $ $))))
-((-2336 (((-114) (-1175)) 102)))
-(((-163) (-10 -7 (-15 -2336 ((-114) (-1175))))) (T -163))
-((-2336 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-114)) (-5 *1 (-163)))))
-(-10 -7 (-15 -2336 ((-114) (-1175))))
-((-1513 ((|#3| |#3|) 19)))
-(((-164 |#1| |#2| |#3|) (-10 -7 (-15 -1513 (|#3| |#3|))) (-1049) (-1240 |#1|) (-1240 |#2|)) (T -164))
-((-1513 (*1 *2 *2) (-12 (-4 *3 (-1049)) (-4 *4 (-1240 *3)) (-5 *1 (-164 *3 *4 *2)) (-4 *2 (-1240 *4)))))
-(-10 -7 (-15 -1513 (|#3| |#3|)))
-((-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 223)) (-3817 ((|#2| $) 102)) (-3235 (($ $) 256)) (-3102 (($ $) 250)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 47)) (-3215 (($ $) 254)) (-3076 (($ $) 248)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#2| "failed") $) 146)) (-1756 (((-566) $) NIL) (((-409 (-566)) $) NIL) ((|#2| $) 144)) (-2926 (($ $ $) 229)) (-1628 (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 160) (((-689 |#2|) (-689 $)) 154)) (-4362 (($ (-1171 |#2|)) 125) (((-3 $ "failed") (-409 (-1171 |#2|))) NIL)) (-1579 (((-3 $ "failed") $) 214)) (-3800 (((-3 (-409 (-566)) "failed") $) 204)) (-3717 (((-112) $) 199)) (-3370 (((-409 (-566)) $) 202)) (-1821 (((-921)) 96)) (-2938 (($ $ $) 231)) (-1567 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 270)) (-3035 (($) 245)) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 193) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 198)) (-1559 ((|#2| $) 100)) (-3929 (((-1171 |#2|) $) 127)) (-3077 (($ (-1 |#2| |#2|) $) 108)) (-3668 (($ $) 247)) (-4350 (((-1171 |#2|) $) 126)) (-2626 (($ $) 207)) (-3610 (($) 103)) (-1647 (((-420 (-1171 $)) (-1171 $)) 95)) (-4138 (((-420 (-1171 $)) (-1171 $)) 64)) (-2972 (((-3 $ "failed") $ |#2|) 209) (((-3 $ "failed") $ $) 212)) (-3613 (($ $) 246)) (-1813 (((-771) $) 226)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 236)) (-2408 ((|#2| (-1264 $)) NIL) ((|#2|) 98)) (-2862 (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 119) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)) (-2127 (((-1171 |#2|)) 120)) (-3223 (($ $) 255)) (-3089 (($ $) 249)) (-2770 (((-1264 |#2|) $ (-1264 $)) 136) (((-689 |#2|) (-1264 $) (-1264 $)) NIL) (((-1264 |#2|) $) 116) (((-689 |#2|) (-1264 $)) NIL)) (-3134 (((-1264 |#2|) $) NIL) (($ (-1264 |#2|)) NIL) (((-1171 |#2|) $) NIL) (($ (-1171 |#2|)) NIL) (((-892 (-566)) $) 184) (((-892 (-381)) $) 188) (((-169 (-381)) $) 172) (((-169 (-225)) $) 167) (((-538) $) 180)) (-2032 (($ $) 104)) (-2512 (((-862) $) 143) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-409 (-566))) NIL) (($ $) NIL)) (-1963 (((-1171 |#2|) $) 32)) (-3795 (((-771)) 106)) (-3122 (((-112) $ $) 13)) (-3302 (($ $) 259)) (-3172 (($ $) 253)) (-3279 (($ $) 257)) (-3146 (($ $) 251)) (-2241 ((|#2| $) 242)) (-3291 (($ $) 258)) (-3160 (($ $) 252)) (-1346 (($ $) 162)) (-2940 (((-112) $ $) 110)) (-3047 (($ $) 112) (($ $ $) NIL)) (-3034 (($ $ $) 111)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-409 (-566))) 277) (($ $ $) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 118) (($ $ $) 147) (($ $ |#2|) NIL) (($ |#2| $) 114) (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL)))
-(((-165 |#1| |#2|) (-10 -8 (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2512 (|#1| |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2330 ((-2 (|:| -3803 |#1|) (|:| -4404 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -1813 ((-771) |#1|)) (-15 -2347 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -2938 (|#1| |#1| |#1|)) (-15 -2926 (|#1| |#1| |#1|)) (-15 -2626 (|#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -3134 ((-538) |#1|)) (-15 -3134 ((-169 (-225)) |#1|)) (-15 -3134 ((-169 (-381)) |#1|)) (-15 -3102 (|#1| |#1|)) (-15 -3076 (|#1| |#1|)) (-15 -3089 (|#1| |#1|)) (-15 -3160 (|#1| |#1|)) (-15 -3146 (|#1| |#1|)) (-15 -3172 (|#1| |#1|)) (-15 -3223 (|#1| |#1|)) (-15 -3215 (|#1| |#1|)) (-15 -3235 (|#1| |#1|)) (-15 -3291 (|#1| |#1|)) (-15 -3279 (|#1| |#1|)) (-15 -3302 (|#1| |#1|)) (-15 -3668 (|#1| |#1|)) (-15 -3613 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -3035 (|#1|)) (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -4138 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1647 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1348 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -3800 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3370 ((-409 (-566)) |#1|)) (-15 -3717 ((-112) |#1|)) (-15 -1567 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2241 (|#2| |#1|)) (-15 -1346 (|#1| |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2032 (|#1| |#1|)) (-15 -3610 (|#1|)) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -1356 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -1356 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -4362 ((-3 |#1| "failed") (-409 (-1171 |#2|)))) (-15 -4350 ((-1171 |#2|) |#1|)) (-15 -3134 (|#1| (-1171 |#2|))) (-15 -4362 (|#1| (-1171 |#2|))) (-15 -2127 ((-1171 |#2|))) (-15 -1628 ((-689 |#2|) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -3134 ((-1171 |#2|) |#1|)) (-15 -2408 (|#2|)) (-15 -3134 (|#1| (-1264 |#2|))) (-15 -3134 ((-1264 |#2|) |#1|)) (-15 -2770 ((-689 |#2|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1|)) (-15 -3929 ((-1171 |#2|) |#1|)) (-15 -1963 ((-1171 |#2|) |#1|)) (-15 -2408 (|#2| (-1264 |#1|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -1559 (|#2| |#1|)) (-15 -3817 (|#2| |#1|)) (-15 -1821 ((-921))) (-15 -2512 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 -1579 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-921))) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3034 (|#1| |#1| |#1|)) (-15 -3122 ((-112) |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|))) (-166 |#2|) (-172)) (T -165))
-((-3795 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))) (-1821 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-921)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))) (-2408 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-165 *3 *2)) (-4 *3 (-166 *2)))) (-2127 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1171 *4)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))))
-(-10 -8 (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2512 (|#1| |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2330 ((-2 (|:| -3803 |#1|) (|:| -4404 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -1813 ((-771) |#1|)) (-15 -2347 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -2938 (|#1| |#1| |#1|)) (-15 -2926 (|#1| |#1| |#1|)) (-15 -2626 (|#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -3134 ((-538) |#1|)) (-15 -3134 ((-169 (-225)) |#1|)) (-15 -3134 ((-169 (-381)) |#1|)) (-15 -3102 (|#1| |#1|)) (-15 -3076 (|#1| |#1|)) (-15 -3089 (|#1| |#1|)) (-15 -3160 (|#1| |#1|)) (-15 -3146 (|#1| |#1|)) (-15 -3172 (|#1| |#1|)) (-15 -3223 (|#1| |#1|)) (-15 -3215 (|#1| |#1|)) (-15 -3235 (|#1| |#1|)) (-15 -3291 (|#1| |#1|)) (-15 -3279 (|#1| |#1|)) (-15 -3302 (|#1| |#1|)) (-15 -3668 (|#1| |#1|)) (-15 -3613 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -3035 (|#1|)) (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -4138 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1647 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1348 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -3800 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3370 ((-409 (-566)) |#1|)) (-15 -3717 ((-112) |#1|)) (-15 -1567 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2241 (|#2| |#1|)) (-15 -1346 (|#1| |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2032 (|#1| |#1|)) (-15 -3610 (|#1|)) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -1356 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -1356 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -4362 ((-3 |#1| "failed") (-409 (-1171 |#2|)))) (-15 -4350 ((-1171 |#2|) |#1|)) (-15 -3134 (|#1| (-1171 |#2|))) (-15 -4362 (|#1| (-1171 |#2|))) (-15 -2127 ((-1171 |#2|))) (-15 -1628 ((-689 |#2|) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -3134 ((-1171 |#2|) |#1|)) (-15 -2408 (|#2|)) (-15 -3134 (|#1| (-1264 |#2|))) (-15 -3134 ((-1264 |#2|) |#1|)) (-15 -2770 ((-689 |#2|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1|)) (-15 -3929 ((-1171 |#2|) |#1|)) (-15 -1963 ((-1171 |#2|) |#1|)) (-15 -2408 (|#2| (-1264 |#1|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -1559 (|#2| |#1|)) (-15 -3817 (|#2| |#1|)) (-15 -1821 ((-921))) (-15 -2512 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 -1579 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-921))) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3034 (|#1| |#1| |#1|)) (-15 -3122 ((-112) |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 102 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-3653 (($ $) 103 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-2152 (((-112) $) 105 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-3953 (((-689 |#1|) (-1264 $)) 53) (((-689 |#1|)) 68)) (-3817 ((|#1| $) 59)) (-3235 (($ $) 229 (|has| |#1| (-1199)))) (-3102 (($ $) 212 (|has| |#1| (-1199)))) (-4324 (((-1187 (-921) (-771)) (-566)) 155 (|has| |#1| (-351)))) (-4126 (((-3 $ "failed") $ $) 20)) (-2055 (((-420 (-1171 $)) (-1171 $)) 243 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-2857 (($ $) 122 (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-1370 (((-420 $) $) 123 (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-2402 (($ $) 242 (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199))))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 246 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-1561 (((-112) $ $) 113 (|has| |#1| (-308)))) (-4025 (((-771)) 96 (|has| |#1| (-370)))) (-3215 (($ $) 228 (|has| |#1| (-1199)))) (-3076 (($ $) 213 (|has| |#1| (-1199)))) (-3259 (($ $) 227 (|has| |#1| (-1199)))) (-3123 (($ $) 214 (|has| |#1| (-1199)))) (-2342 (($) 18 T CONST)) (-2977 (((-3 (-566) "failed") $) 178 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 176 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 173)) (-1756 (((-566) $) 177 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 175 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 174)) (-1547 (($ (-1264 |#1|) (-1264 $)) 55) (($ (-1264 |#1|)) 71)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-351)))) (-2926 (($ $ $) 117 (|has| |#1| (-308)))) (-1929 (((-689 |#1|) $ (-1264 $)) 60) (((-689 |#1|) $) 66)) (-1628 (((-689 (-566)) (-689 $)) 172 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 171 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 170) (((-689 |#1|) (-689 $)) 169)) (-4362 (($ (-1171 |#1|)) 166) (((-3 $ "failed") (-409 (-1171 |#1|))) 163 (|has| |#1| (-365)))) (-1579 (((-3 $ "failed") $) 37)) (-2417 ((|#1| $) 254)) (-3800 (((-3 (-409 (-566)) "failed") $) 247 (|has| |#1| (-547)))) (-3717 (((-112) $) 249 (|has| |#1| (-547)))) (-3370 (((-409 (-566)) $) 248 (|has| |#1| (-547)))) (-1821 (((-921)) 61)) (-3335 (($) 99 (|has| |#1| (-370)))) (-2938 (($ $ $) 116 (|has| |#1| (-308)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 111 (|has| |#1| (-308)))) (-3092 (($) 157 (|has| |#1| (-351)))) (-3449 (((-112) $) 158 (|has| |#1| (-351)))) (-3626 (($ $ (-771)) 149 (|has| |#1| (-351))) (($ $) 148 (|has| |#1| (-351)))) (-2635 (((-112) $) 124 (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-1567 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 250 (-12 (|has| |#1| (-1059)) (|has| |#1| (-1199))))) (-3035 (($) 239 (|has| |#1| (-1199)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 262 (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 261 (|has| |#1| (-886 (-381))))) (-2716 (((-921) $) 160 (|has| |#1| (-351))) (((-833 (-921)) $) 146 (|has| |#1| (-351)))) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 241 (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199))))) (-1559 ((|#1| $) 58)) (-2546 (((-3 $ "failed") $) 150 (|has| |#1| (-351)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 120 (|has| |#1| (-308)))) (-3929 (((-1171 |#1|) $) 51 (|has| |#1| (-365)))) (-3077 (($ (-1 |#1| |#1|) $) 263)) (-3712 (((-921) $) 98 (|has| |#1| (-370)))) (-3668 (($ $) 236 (|has| |#1| (-1199)))) (-4350 (((-1171 |#1|) $) 164)) (-2184 (($ (-644 $)) 109 (-2805 (|has| |#1| (-308)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (($ $ $) 108 (-2805 (|has| |#1| (-308)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-2878 (((-1157) $) 10)) (-2626 (($ $) 125 (|has| |#1| (-365)))) (-2759 (($) 151 (|has| |#1| (-351)) CONST)) (-2168 (($ (-921)) 97 (|has| |#1| (-370)))) (-3610 (($) 258)) (-2430 ((|#1| $) 255)) (-4033 (((-1119) $) 11)) (-4067 (($) 168)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 110 (-2805 (|has| |#1| (-308)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-2222 (($ (-644 $)) 107 (-2805 (|has| |#1| (-308)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (($ $ $) 106 (-2805 (|has| |#1| (-308)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) 154 (|has| |#1| (-351)))) (-1647 (((-420 (-1171 $)) (-1171 $)) 245 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-4138 (((-420 (-1171 $)) (-1171 $)) 244 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-2391 (((-420 $) $) 121 (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-308))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 118 (|has| |#1| (-308)))) (-2972 (((-3 $ "failed") $ |#1|) 253 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 101 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 112 (|has| |#1| (-308)))) (-3613 (($ $) 237 (|has| |#1| (-1199)))) (-2070 (($ $ (-644 |#1|) (-644 |#1|)) 269 (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) 268 (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) 267 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) 266 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 265 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) 264 (|has| |#1| (-516 (-1175) |#1|)))) (-1813 (((-771) $) 114 (|has| |#1| (-308)))) (-4386 (($ $ |#1|) 270 (|has| |#1| (-287 |#1| |#1|)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 115 (|has| |#1| (-308)))) (-2408 ((|#1| (-1264 $)) 54) ((|#1|) 67)) (-3379 (((-771) $) 159 (|has| |#1| (-351))) (((-3 (-771) "failed") $ $) 147 (|has| |#1| (-351)))) (-2862 (($ $ (-1 |#1| |#1|) (-771)) 131) (($ $ (-1 |#1| |#1|)) 130) (($ $ (-644 (-1175)) (-644 (-771))) 138 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 139 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 140 (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) 141 (|has| |#1| (-900 (-1175)))) (($ $ (-771)) 143 (-2805 (-2438 (|has| |#1| (-365)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2438 (|has| |#1| (-233)) (|has| |#1| (-365))))) (($ $) 145 (-2805 (-2438 (|has| |#1| (-365)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2438 (|has| |#1| (-233)) (|has| |#1| (-365)))))) (-3042 (((-689 |#1|) (-1264 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-365)))) (-2127 (((-1171 |#1|)) 167)) (-3267 (($ $) 226 (|has| |#1| (-1199)))) (-3133 (($ $) 215 (|has| |#1| (-1199)))) (-1536 (($) 156 (|has| |#1| (-351)))) (-3248 (($ $) 225 (|has| |#1| (-1199)))) (-3112 (($ $) 216 (|has| |#1| (-1199)))) (-3223 (($ $) 224 (|has| |#1| (-1199)))) (-3089 (($ $) 217 (|has| |#1| (-1199)))) (-2770 (((-1264 |#1|) $ (-1264 $)) 57) (((-689 |#1|) (-1264 $) (-1264 $)) 56) (((-1264 |#1|) $) 73) (((-689 |#1|) (-1264 $)) 72)) (-3134 (((-1264 |#1|) $) 70) (($ (-1264 |#1|)) 69) (((-1171 |#1|) $) 179) (($ (-1171 |#1|)) 165) (((-892 (-566)) $) 260 (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) 259 (|has| |#1| (-614 (-892 (-381))))) (((-169 (-381)) $) 211 (|has| |#1| (-1022))) (((-169 (-225)) $) 210 (|has| |#1| (-1022))) (((-538) $) 209 (|has| |#1| (-614 (-538))))) (-2032 (($ $) 257)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 153 (-2805 (-2438 (|has| $ (-145)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))) (|has| |#1| (-351))))) (-3654 (($ |#1| |#1|) 256)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44) (($ (-409 (-566))) 95 (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) 100 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-3842 (($ $) 152 (|has| |#1| (-351))) (((-3 $ "failed") $) 50 (-2805 (-2438 (|has| $ (-145)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))) (|has| |#1| (-145))))) (-1963 (((-1171 |#1|) $) 52)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1990 (((-1264 $)) 74)) (-3302 (($ $) 235 (|has| |#1| (-1199)))) (-3172 (($ $) 223 (|has| |#1| (-1199)))) (-1634 (((-112) $ $) 104 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-3279 (($ $) 234 (|has| |#1| (-1199)))) (-3146 (($ $) 222 (|has| |#1| (-1199)))) (-3323 (($ $) 233 (|has| |#1| (-1199)))) (-3194 (($ $) 221 (|has| |#1| (-1199)))) (-2241 ((|#1| $) 251 (|has| |#1| (-1199)))) (-1382 (($ $) 232 (|has| |#1| (-1199)))) (-3205 (($ $) 220 (|has| |#1| (-1199)))) (-3313 (($ $) 231 (|has| |#1| (-1199)))) (-3185 (($ $) 219 (|has| |#1| (-1199)))) (-3291 (($ $) 230 (|has| |#1| (-1199)))) (-3160 (($ $) 218 (|has| |#1| (-1199)))) (-1346 (($ $) 252 (|has| |#1| (-1059)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-1 |#1| |#1|) (-771)) 133) (($ $ (-1 |#1| |#1|)) 132) (($ $ (-644 (-1175)) (-644 (-771))) 134 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 135 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 136 (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) 137 (|has| |#1| (-900 (-1175)))) (($ $ (-771)) 142 (-2805 (-2438 (|has| |#1| (-365)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2438 (|has| |#1| (-233)) (|has| |#1| (-365))))) (($ $) 144 (-2805 (-2438 (|has| |#1| (-365)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2438 (|has| |#1| (-233)) (|has| |#1| (-365)))))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 129 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-409 (-566))) 240 (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199)))) (($ $ $) 238 (|has| |#1| (-1199))) (($ $ (-566)) 126 (|has| |#1| (-365)))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ (-409 (-566)) $) 128 (|has| |#1| (-365))) (($ $ (-409 (-566))) 127 (|has| |#1| (-365)))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 16) (($ (-1180)) NIL) (((-1180) $) NIL)) (-1398 (((-644 (-1134)) $) 10)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-161) (-13 (-1082) (-10 -8 (-15 -1398 ((-644 (-1134)) $))))) (T -161))
+((-1398 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-161)))))
+(-13 (-1082) (-10 -8 (-15 -1398 ((-644 (-1134)) $))))
+((-3009 (((-112) $ $) NIL)) (-3368 (($ (-566)) 14) (($ $ $) 15)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 18)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 9)))
+(((-162) (-13 (-1099) (-10 -8 (-15 -3368 ($ (-566))) (-15 -3368 ($ $ $))))) (T -162))
+((-3368 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-162)))) (-3368 (*1 *1 *1 *1) (-5 *1 (-162))))
+(-13 (-1099) (-10 -8 (-15 -3368 ($ (-566))) (-15 -3368 ($ $ $))))
+((-2415 (((-114) (-1175)) 102)))
+(((-163) (-10 -7 (-15 -2415 ((-114) (-1175))))) (T -163))
+((-2415 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-114)) (-5 *1 (-163)))))
+(-10 -7 (-15 -2415 ((-114) (-1175))))
+((-3484 ((|#3| |#3|) 19)))
+(((-164 |#1| |#2| |#3|) (-10 -7 (-15 -3484 (|#3| |#3|))) (-1049) (-1240 |#1|) (-1240 |#2|)) (T -164))
+((-3484 (*1 *2 *2) (-12 (-4 *3 (-1049)) (-4 *4 (-1240 *3)) (-5 *1 (-164 *3 *4 *2)) (-4 *2 (-1240 *4)))))
+(-10 -7 (-15 -3484 (|#3| |#3|)))
+((-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 223)) (-3834 ((|#2| $) 102)) (-2865 (($ $) 256)) (-3939 (($ $) 250)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 47)) (-2843 (($ $) 254)) (-3915 (($ $) 248)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#2| "failed") $) 146)) (-1867 (((-566) $) NIL) (((-409 (-566)) $) NIL) ((|#2| $) 144)) (-2949 (($ $ $) 229)) (-2210 (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 160) (((-689 |#2|) (-689 $)) 154)) (-1580 (($ (-1171 |#2|)) 125) (((-3 $ "failed") (-409 (-1171 |#2|))) NIL)) (-2928 (((-3 $ "failed") $) 214)) (-4045 (((-3 (-409 (-566)) "failed") $) 204)) (-1356 (((-112) $) 199)) (-2269 (((-409 (-566)) $) 202)) (-4157 (((-921)) 96)) (-2960 (($ $ $) 231)) (-2796 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 270)) (-3120 (($) 245)) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 193) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 198)) (-2719 ((|#2| $) 100)) (-2750 (((-1171 |#2|) $) 127)) (-3152 (($ (-1 |#2| |#2|) $) 108)) (-3671 (($ $) 247)) (-1567 (((-1171 |#2|) $) 126)) (-3584 (($ $) 207)) (-2762 (($) 103)) (-4255 (((-420 (-1171 $)) (-1171 $)) 95)) (-4137 (((-420 (-1171 $)) (-1171 $)) 64)) (-2997 (((-3 $ "failed") $ |#2|) 209) (((-3 $ "failed") $ $) 212)) (-4337 (($ $) 246)) (-3470 (((-771) $) 226)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 236)) (-3309 ((|#2| (-1264 $)) NIL) ((|#2|) 98)) (-2578 (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 119) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)) (-3601 (((-1171 |#2|)) 120)) (-2853 (($ $) 255)) (-3927 (($ $) 249)) (-2543 (((-1264 |#2|) $ (-1264 $)) 136) (((-689 |#2|) (-1264 $) (-1264 $)) NIL) (((-1264 |#2|) $) 116) (((-689 |#2|) (-1264 $)) NIL)) (-3204 (((-1264 |#2|) $) NIL) (($ (-1264 |#2|)) NIL) (((-1171 |#2|) $) NIL) (($ (-1171 |#2|)) NIL) (((-892 (-566)) $) 184) (((-892 (-381)) $) 188) (((-169 (-381)) $) 172) (((-169 (-225)) $) 167) (((-538) $) 180)) (-3850 (($ $) 104)) (-3780 (((-862) $) 143) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-409 (-566))) NIL) (($ $) NIL)) (-4370 (((-1171 |#2|) $) 32)) (-3996 (((-771)) 106)) (-3801 (((-112) $ $) 13)) (-2931 (($ $) 259)) (-4009 (($ $) 253)) (-2907 (($ $) 257)) (-3986 (($ $) 251)) (-2224 ((|#2| $) 242)) (-2920 (($ $) 258)) (-3997 (($ $) 252)) (-3333 (($ $) 162)) (-2950 (((-112) $ $) 110)) (-3051 (($ $) 112) (($ $ $) NIL)) (-3040 (($ $ $) 111)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-409 (-566))) 277) (($ $ $) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 118) (($ $ $) 147) (($ $ |#2|) NIL) (($ |#2| $) 114) (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL)))
+(((-165 |#1| |#2|) (-10 -8 (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -3780 (|#1| |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3761 ((-2 (|:| -4065 |#1|) (|:| -4401 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -3470 ((-771) |#1|)) (-15 -3919 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -2960 (|#1| |#1| |#1|)) (-15 -2949 (|#1| |#1| |#1|)) (-15 -3584 (|#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3204 ((-538) |#1|)) (-15 -3204 ((-169 (-225)) |#1|)) (-15 -3204 ((-169 (-381)) |#1|)) (-15 -3939 (|#1| |#1|)) (-15 -3915 (|#1| |#1|)) (-15 -3927 (|#1| |#1|)) (-15 -3997 (|#1| |#1|)) (-15 -3986 (|#1| |#1|)) (-15 -4009 (|#1| |#1|)) (-15 -2853 (|#1| |#1|)) (-15 -2843 (|#1| |#1|)) (-15 -2865 (|#1| |#1|)) (-15 -2920 (|#1| |#1|)) (-15 -2907 (|#1| |#1|)) (-15 -2931 (|#1| |#1|)) (-15 -3671 (|#1| |#1|)) (-15 -4337 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -3120 (|#1|)) (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -4137 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -4255 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -3354 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -4045 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2269 ((-409 (-566)) |#1|)) (-15 -1356 ((-112) |#1|)) (-15 -2796 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2224 (|#2| |#1|)) (-15 -3333 (|#1| |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3850 (|#1| |#1|)) (-15 -2762 (|#1|)) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -1525 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -1525 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -1580 ((-3 |#1| "failed") (-409 (-1171 |#2|)))) (-15 -1567 ((-1171 |#2|) |#1|)) (-15 -3204 (|#1| (-1171 |#2|))) (-15 -1580 (|#1| (-1171 |#2|))) (-15 -3601 ((-1171 |#2|))) (-15 -2210 ((-689 |#2|) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3204 ((-1171 |#2|) |#1|)) (-15 -3309 (|#2|)) (-15 -3204 (|#1| (-1264 |#2|))) (-15 -3204 ((-1264 |#2|) |#1|)) (-15 -2543 ((-689 |#2|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1|)) (-15 -2750 ((-1171 |#2|) |#1|)) (-15 -4370 ((-1171 |#2|) |#1|)) (-15 -3309 (|#2| (-1264 |#1|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -2719 (|#2| |#1|)) (-15 -3834 (|#2| |#1|)) (-15 -4157 ((-921))) (-15 -3780 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 -2928 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-921))) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3040 (|#1| |#1| |#1|)) (-15 -3801 ((-112) |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|))) (-166 |#2|) (-172)) (T -165))
+((-3996 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))) (-4157 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-921)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))) (-3309 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-165 *3 *2)) (-4 *3 (-166 *2)))) (-3601 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1171 *4)) (-5 *1 (-165 *3 *4)) (-4 *3 (-166 *4)))))
+(-10 -8 (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -3780 (|#1| |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3761 ((-2 (|:| -4065 |#1|) (|:| -4401 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -3470 ((-771) |#1|)) (-15 -3919 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -2960 (|#1| |#1| |#1|)) (-15 -2949 (|#1| |#1| |#1|)) (-15 -3584 (|#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3204 ((-538) |#1|)) (-15 -3204 ((-169 (-225)) |#1|)) (-15 -3204 ((-169 (-381)) |#1|)) (-15 -3939 (|#1| |#1|)) (-15 -3915 (|#1| |#1|)) (-15 -3927 (|#1| |#1|)) (-15 -3997 (|#1| |#1|)) (-15 -3986 (|#1| |#1|)) (-15 -4009 (|#1| |#1|)) (-15 -2853 (|#1| |#1|)) (-15 -2843 (|#1| |#1|)) (-15 -2865 (|#1| |#1|)) (-15 -2920 (|#1| |#1|)) (-15 -2907 (|#1| |#1|)) (-15 -2931 (|#1| |#1|)) (-15 -3671 (|#1| |#1|)) (-15 -4337 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -3120 (|#1|)) (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -4137 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -4255 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -3354 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -4045 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2269 ((-409 (-566)) |#1|)) (-15 -1356 ((-112) |#1|)) (-15 -2796 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -2224 (|#2| |#1|)) (-15 -3333 (|#1| |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3850 (|#1| |#1|)) (-15 -2762 (|#1|)) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -1525 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -1525 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -1580 ((-3 |#1| "failed") (-409 (-1171 |#2|)))) (-15 -1567 ((-1171 |#2|) |#1|)) (-15 -3204 (|#1| (-1171 |#2|))) (-15 -1580 (|#1| (-1171 |#2|))) (-15 -3601 ((-1171 |#2|))) (-15 -2210 ((-689 |#2|) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3204 ((-1171 |#2|) |#1|)) (-15 -3309 (|#2|)) (-15 -3204 (|#1| (-1264 |#2|))) (-15 -3204 ((-1264 |#2|) |#1|)) (-15 -2543 ((-689 |#2|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1|)) (-15 -2750 ((-1171 |#2|) |#1|)) (-15 -4370 ((-1171 |#2|) |#1|)) (-15 -3309 (|#2| (-1264 |#1|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -2719 (|#2| |#1|)) (-15 -3834 (|#2| |#1|)) (-15 -4157 ((-921))) (-15 -3780 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 -2928 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-921))) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3040 (|#1| |#1| |#1|)) (-15 -3801 ((-112) |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 102 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-1968 (($ $) 103 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-2644 (((-112) $) 105 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-2965 (((-689 |#1|) (-1264 $)) 53) (((-689 |#1|)) 68)) (-3834 ((|#1| $) 59)) (-2865 (($ $) 229 (|has| |#1| (-1199)))) (-3939 (($ $) 212 (|has| |#1| (-1199)))) (-2277 (((-1187 (-921) (-771)) (-566)) 155 (|has| |#1| (-351)))) (-4014 (((-3 $ "failed") $ $) 20)) (-4077 (((-420 (-1171 $)) (-1171 $)) 243 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-2179 (($ $) 122 (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-3271 (((-420 $) $) 123 (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-2484 (($ $) 242 (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199))))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 246 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-2738 (((-112) $ $) 113 (|has| |#1| (-308)))) (-4070 (((-771)) 96 (|has| |#1| (-370)))) (-2843 (($ $) 228 (|has| |#1| (-1199)))) (-3915 (($ $) 213 (|has| |#1| (-1199)))) (-2888 (($ $) 227 (|has| |#1| (-1199)))) (-3964 (($ $) 214 (|has| |#1| (-1199)))) (-3877 (($) 18 T CONST)) (-3066 (((-3 (-566) "failed") $) 178 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 176 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 173)) (-1867 (((-566) $) 177 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 175 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 174)) (-2613 (($ (-1264 |#1|) (-1264 $)) 55) (($ (-1264 |#1|)) 71)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-351)))) (-2949 (($ $ $) 117 (|has| |#1| (-308)))) (-2205 (((-689 |#1|) $ (-1264 $)) 60) (((-689 |#1|) $) 66)) (-2210 (((-689 (-566)) (-689 $)) 172 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 171 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 170) (((-689 |#1|) (-689 $)) 169)) (-1580 (($ (-1171 |#1|)) 166) (((-3 $ "failed") (-409 (-1171 |#1|))) 163 (|has| |#1| (-365)))) (-2928 (((-3 $ "failed") $) 37)) (-2495 ((|#1| $) 254)) (-4045 (((-3 (-409 (-566)) "failed") $) 247 (|has| |#1| (-547)))) (-1356 (((-112) $) 249 (|has| |#1| (-547)))) (-2269 (((-409 (-566)) $) 248 (|has| |#1| (-547)))) (-4157 (((-921)) 61)) (-1618 (($) 99 (|has| |#1| (-370)))) (-2960 (($ $ $) 116 (|has| |#1| (-308)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 111 (|has| |#1| (-308)))) (-1676 (($) 157 (|has| |#1| (-351)))) (-3698 (((-112) $) 158 (|has| |#1| (-351)))) (-2901 (($ $ (-771)) 149 (|has| |#1| (-351))) (($ $) 148 (|has| |#1| (-351)))) (-1784 (((-112) $) 124 (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-2796 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 250 (-12 (|has| |#1| (-1059)) (|has| |#1| (-1199))))) (-3120 (($) 239 (|has| |#1| (-1199)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 262 (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 261 (|has| |#1| (-886 (-381))))) (-3227 (((-921) $) 160 (|has| |#1| (-351))) (((-833 (-921)) $) 146 (|has| |#1| (-351)))) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 241 (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199))))) (-2719 ((|#1| $) 58)) (-2133 (((-3 $ "failed") $) 150 (|has| |#1| (-351)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 120 (|has| |#1| (-308)))) (-2750 (((-1171 |#1|) $) 51 (|has| |#1| (-365)))) (-3152 (($ (-1 |#1| |#1|) $) 263)) (-1299 (((-921) $) 98 (|has| |#1| (-370)))) (-3671 (($ $) 236 (|has| |#1| (-1199)))) (-1567 (((-1171 |#1|) $) 164)) (-2197 (($ (-644 $)) 109 (-2805 (|has| |#1| (-308)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (($ $ $) 108 (-2805 (|has| |#1| (-308)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-2402 (((-1157) $) 10)) (-3584 (($ $) 125 (|has| |#1| (-365)))) (-3625 (($) 151 (|has| |#1| (-351)) CONST)) (-2208 (($ (-921)) 97 (|has| |#1| (-370)))) (-2762 (($) 258)) (-2503 ((|#1| $) 255)) (-4056 (((-1119) $) 11)) (-4152 (($) 168)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 110 (-2805 (|has| |#1| (-308)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-2235 (($ (-644 $)) 107 (-2805 (|has| |#1| (-308)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (($ $ $) 106 (-2805 (|has| |#1| (-308)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) 154 (|has| |#1| (-351)))) (-4255 (((-420 (-1171 $)) (-1171 $)) 245 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-4137 (((-420 (-1171 $)) (-1171 $)) 244 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-2473 (((-420 $) $) 121 (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-308))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 118 (|has| |#1| (-308)))) (-2997 (((-3 $ "failed") $ |#1|) 253 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 101 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 112 (|has| |#1| (-308)))) (-4337 (($ $) 237 (|has| |#1| (-1199)))) (-2095 (($ $ (-644 |#1|) (-644 |#1|)) 269 (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) 268 (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) 267 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) 266 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 265 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) 264 (|has| |#1| (-516 (-1175) |#1|)))) (-3470 (((-771) $) 114 (|has| |#1| (-308)))) (-4393 (($ $ |#1|) 270 (|has| |#1| (-287 |#1| |#1|)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 115 (|has| |#1| (-308)))) (-3309 ((|#1| (-1264 $)) 54) ((|#1|) 67)) (-2347 (((-771) $) 159 (|has| |#1| (-351))) (((-3 (-771) "failed") $ $) 147 (|has| |#1| (-351)))) (-2578 (($ $ (-1 |#1| |#1|) (-771)) 131) (($ $ (-1 |#1| |#1|)) 130) (($ $ (-644 (-1175)) (-644 (-771))) 138 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 139 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 140 (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) 141 (|has| |#1| (-900 (-1175)))) (($ $ (-771)) 143 (-2805 (-2447 (|has| |#1| (-365)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2447 (|has| |#1| (-233)) (|has| |#1| (-365))))) (($ $) 145 (-2805 (-2447 (|has| |#1| (-365)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2447 (|has| |#1| (-233)) (|has| |#1| (-365)))))) (-4359 (((-689 |#1|) (-1264 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-365)))) (-3601 (((-1171 |#1|)) 167)) (-2897 (($ $) 226 (|has| |#1| (-1199)))) (-3974 (($ $) 215 (|has| |#1| (-1199)))) (-2507 (($) 156 (|has| |#1| (-351)))) (-2877 (($ $) 225 (|has| |#1| (-1199)))) (-3951 (($ $) 216 (|has| |#1| (-1199)))) (-2853 (($ $) 224 (|has| |#1| (-1199)))) (-3927 (($ $) 217 (|has| |#1| (-1199)))) (-2543 (((-1264 |#1|) $ (-1264 $)) 57) (((-689 |#1|) (-1264 $) (-1264 $)) 56) (((-1264 |#1|) $) 73) (((-689 |#1|) (-1264 $)) 72)) (-3204 (((-1264 |#1|) $) 70) (($ (-1264 |#1|)) 69) (((-1171 |#1|) $) 179) (($ (-1171 |#1|)) 165) (((-892 (-566)) $) 260 (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) 259 (|has| |#1| (-614 (-892 (-381))))) (((-169 (-381)) $) 211 (|has| |#1| (-1022))) (((-169 (-225)) $) 210 (|has| |#1| (-1022))) (((-538) $) 209 (|has| |#1| (-614 (-538))))) (-3850 (($ $) 257)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 153 (-2805 (-2447 (|has| $ (-145)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))) (|has| |#1| (-351))))) (-3661 (($ |#1| |#1|) 256)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44) (($ (-409 (-566))) 95 (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) 100 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-3226 (($ $) 152 (|has| |#1| (-351))) (((-3 $ "failed") $) 50 (-2805 (-2447 (|has| $ (-145)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))) (|has| |#1| (-145))))) (-4370 (((-1171 |#1|) $) 52)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-1575 (((-1264 $)) 74)) (-2931 (($ $) 235 (|has| |#1| (-1199)))) (-4009 (($ $) 223 (|has| |#1| (-1199)))) (-2278 (((-112) $ $) 104 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))) (-2907 (($ $) 234 (|has| |#1| (-1199)))) (-3986 (($ $) 222 (|has| |#1| (-1199)))) (-2954 (($ $) 233 (|has| |#1| (-1199)))) (-4033 (($ $) 221 (|has| |#1| (-1199)))) (-2224 ((|#1| $) 251 (|has| |#1| (-1199)))) (-3181 (($ $) 232 (|has| |#1| (-1199)))) (-2834 (($ $) 220 (|has| |#1| (-1199)))) (-2943 (($ $) 231 (|has| |#1| (-1199)))) (-4021 (($ $) 219 (|has| |#1| (-1199)))) (-2920 (($ $) 230 (|has| |#1| (-1199)))) (-3997 (($ $) 218 (|has| |#1| (-1199)))) (-3333 (($ $) 252 (|has| |#1| (-1059)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-1 |#1| |#1|) (-771)) 133) (($ $ (-1 |#1| |#1|)) 132) (($ $ (-644 (-1175)) (-644 (-771))) 134 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 135 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 136 (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) 137 (|has| |#1| (-900 (-1175)))) (($ $ (-771)) 142 (-2805 (-2447 (|has| |#1| (-365)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2447 (|has| |#1| (-233)) (|has| |#1| (-365))))) (($ $) 144 (-2805 (-2447 (|has| |#1| (-365)) (|has| |#1| (-233))) (|has| |#1| (-233)) (-2447 (|has| |#1| (-233)) (|has| |#1| (-365)))))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 129 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-409 (-566))) 240 (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199)))) (($ $ $) 238 (|has| |#1| (-1199))) (($ $ (-566)) 126 (|has| |#1| (-365)))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ (-409 (-566)) $) 128 (|has| |#1| (-365))) (($ $ (-409 (-566))) 127 (|has| |#1| (-365)))))
(((-166 |#1|) (-140) (-172)) (T -166))
-((-1559 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-3610 (*1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2032 (*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-3654 (*1 *1 *2 *2) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2430 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2417 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2972 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-558)))) (-1346 (*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1059)))) (-2241 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1199)))) (-1567 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-1059)) (-4 *3 (-1199)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-3717 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112)))) (-3370 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))) (-3800 (*1 *2 *1) (|partial| -12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))))
-(-13 (-724 |t#1| (-1171 |t#1|)) (-413 |t#1|) (-231 |t#1|) (-340 |t#1|) (-402 |t#1|) (-884 |t#1|) (-379 |t#1|) (-172) (-10 -8 (-6 -3654) (-15 -3610 ($)) (-15 -2032 ($ $)) (-15 -3654 ($ |t#1| |t#1|)) (-15 -2430 (|t#1| $)) (-15 -2417 (|t#1| $)) (-15 -1559 (|t#1| $)) (IF (|has| |t#1| (-558)) (PROGN (-6 (-558)) (-15 -2972 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-308)) (-6 (-308)) |%noBranch|) (IF (|has| |t#1| (-6 -4416)) (-6 -4416) |%noBranch|) (IF (|has| |t#1| (-6 -4413)) (-6 -4413) |%noBranch|) (IF (|has| |t#1| (-365)) (-6 (-365)) |%noBranch|) (IF (|has| |t#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1022)) (PROGN (-6 (-614 (-169 (-225)))) (-6 (-614 (-169 (-381))))) |%noBranch|) (IF (|has| |t#1| (-1059)) (-15 -1346 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1199)) (PROGN (-6 (-1199)) (-15 -2241 (|t#1| $)) (IF (|has| |t#1| (-1002)) (-6 (-1002)) |%noBranch|) (IF (|has| |t#1| (-1059)) (-15 -1567 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-547)) (PROGN (-15 -3717 ((-112) $)) (-15 -3370 ((-409 (-566)) $)) (-15 -3800 ((-3 (-409 (-566)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-909)) (IF (|has| |t#1| (-308)) (-6 (-909)) |%noBranch|) |%noBranch|)))
+((-2719 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2762 (*1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-3850 (*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-3661 (*1 *1 *2 *2) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2503 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2495 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))) (-2997 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-558)))) (-3333 (*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1059)))) (-2224 (*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1199)))) (-2796 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-1059)) (-4 *3 (-1199)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-1356 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112)))) (-2269 (*1 *2 *1) (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))) (-4045 (*1 *2 *1) (|partial| -12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))))
+(-13 (-724 |t#1| (-1171 |t#1|)) (-413 |t#1|) (-231 |t#1|) (-340 |t#1|) (-402 |t#1|) (-884 |t#1|) (-379 |t#1|) (-172) (-10 -8 (-6 -3661) (-15 -2762 ($)) (-15 -3850 ($ $)) (-15 -3661 ($ |t#1| |t#1|)) (-15 -2503 (|t#1| $)) (-15 -2495 (|t#1| $)) (-15 -2719 (|t#1| $)) (IF (|has| |t#1| (-558)) (PROGN (-6 (-558)) (-15 -2997 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-308)) (-6 (-308)) |%noBranch|) (IF (|has| |t#1| (-6 -4413)) (-6 -4413) |%noBranch|) (IF (|has| |t#1| (-6 -4410)) (-6 -4410) |%noBranch|) (IF (|has| |t#1| (-365)) (-6 (-365)) |%noBranch|) (IF (|has| |t#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1022)) (PROGN (-6 (-614 (-169 (-225)))) (-6 (-614 (-169 (-381))))) |%noBranch|) (IF (|has| |t#1| (-1059)) (-15 -3333 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1199)) (PROGN (-6 (-1199)) (-15 -2224 (|t#1| $)) (IF (|has| |t#1| (-1002)) (-6 (-1002)) |%noBranch|) (IF (|has| |t#1| (-1059)) (-15 -2796 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-547)) (PROGN (-15 -1356 ((-112) $)) (-15 -2269 ((-409 (-566)) $)) (-15 -4045 ((-3 (-409 (-566)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-909)) (IF (|has| |t#1| (-308)) (-6 (-909)) |%noBranch|) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-38 |#1|) . T) ((-38 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-351)) (|has| |#1| (-365)) (|has| |#1| (-308))) ((-35) |has| |#1| (-1199)) ((-95) |has| |#1| (-1199)) ((-102) . T) ((-111 #0# #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -2805 (|has| |#1| (-351)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-616 #0#) -2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-351)) (|has| |#1| (-365))) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-616 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-351)) (|has| |#1| (-365)) (|has| |#1| (-308))) ((-613 (-862)) . T) ((-172) . T) ((-614 (-169 (-225))) |has| |#1| (-1022)) ((-614 (-169 (-381))) |has| |#1| (-1022)) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-614 (-892 (-381))) |has| |#1| (-614 (-892 (-381)))) ((-614 (-892 (-566))) |has| |#1| (-614 (-892 (-566)))) ((-614 #1=(-1171 |#1|)) . T) ((-231 |#1|) . T) ((-233) -2805 (|has| |#1| (-351)) (|has| |#1| (-233))) ((-243) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-285) |has| |#1| (-1199)) ((-287 |#1| $) |has| |#1| (-287 |#1| |#1|)) ((-291) -2805 (|has| |#1| (-558)) (|has| |#1| (-351)) (|has| |#1| (-365)) (|has| |#1| (-308))) ((-308) -2805 (|has| |#1| (-351)) (|has| |#1| (-365)) (|has| |#1| (-308))) ((-310 |#1|) |has| |#1| (-310 |#1|)) ((-365) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-404) |has| |#1| (-351)) ((-370) -2805 (|has| |#1| (-370)) (|has| |#1| (-351))) ((-351) |has| |#1| (-351)) ((-372 |#1| #1#) . T) ((-411 |#1| #1#) . T) ((-340 |#1|) . T) ((-379 |#1|) . T) ((-402 |#1|) . T) ((-413 |#1|) . T) ((-454) -2805 (|has| |#1| (-351)) (|has| |#1| (-365)) (|has| |#1| (-308))) ((-495) |has| |#1| (-1199)) ((-516 (-1175) |#1|) |has| |#1| (-516 (-1175) |#1|)) ((-516 |#1| |#1|) |has| |#1| (-310 |#1|)) ((-558) -2805 (|has| |#1| (-558)) (|has| |#1| (-351)) (|has| |#1| (-365)) (|has| |#1| (-308))) ((-646 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-640 |#1|) . T) ((-640 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-351)) (|has| |#1| (-365)) (|has| |#1| (-308))) ((-639 (-566)) |has| |#1| (-639 (-566))) ((-639 |#1|) . T) ((-717 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-717 |#1|) . T) ((-717 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-351)) (|has| |#1| (-365)) (|has| |#1| (-308))) ((-724 |#1| #1#) . T) ((-726) . T) ((-900 (-1175)) |has| |#1| (-900 (-1175))) ((-886 (-381)) |has| |#1| (-886 (-381))) ((-886 (-566)) |has| |#1| (-886 (-566))) ((-884 |#1|) . T) ((-909) -12 (|has| |#1| (-308)) (|has| |#1| (-909))) ((-920) -2805 (|has| |#1| (-351)) (|has| |#1| (-365)) (|has| |#1| (-308))) ((-1002) -12 (|has| |#1| (-1002)) (|has| |#1| (-1199))) ((-1038 (-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T) ((-1051 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1056 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-1056 |#1|) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1150) |has| |#1| (-351)) ((-1199) |has| |#1| (-1199)) ((-1202) |has| |#1| (-1199)) ((-1214) . T) ((-1218) -2805 (|has| |#1| (-351)) (|has| |#1| (-365)) (-12 (|has| |#1| (-308)) (|has| |#1| (-909)))))
-((-2391 (((-420 |#2|) |#2|) 69)))
-(((-167 |#1| |#2|) (-10 -7 (-15 -2391 ((-420 |#2|) |#2|))) (-308) (-1240 (-169 |#1|))) (T -167))
-((-2391 (*1 *2 *3) (-12 (-4 *4 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-167 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
-(-10 -7 (-15 -2391 ((-420 |#2|) |#2|)))
-((-3077 (((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|)) 14)))
-(((-168 |#1| |#2|) (-10 -7 (-15 -3077 ((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|)))) (-172) (-172)) (T -168))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-169 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-5 *2 (-169 *6)) (-5 *1 (-168 *5 *6)))))
-(-10 -7 (-15 -3077 ((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 34)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-3653 (($ $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-2152 (((-112) $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-3953 (((-689 |#1|) (-1264 $)) NIL) (((-689 |#1|)) NIL)) (-3817 ((|#1| $) NIL)) (-3235 (($ $) NIL (|has| |#1| (-1199)))) (-3102 (($ $) NIL (|has| |#1| (-1199)))) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| |#1| (-351)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-2857 (($ $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-1370 (((-420 $) $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-2402 (($ $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199))))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-1561 (((-112) $ $) NIL (|has| |#1| (-308)))) (-4025 (((-771)) NIL (|has| |#1| (-370)))) (-3215 (($ $) NIL (|has| |#1| (-1199)))) (-3076 (($ $) NIL (|has| |#1| (-1199)))) (-3259 (($ $) NIL (|has| |#1| (-1199)))) (-3123 (($ $) NIL (|has| |#1| (-1199)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-1547 (($ (-1264 |#1|) (-1264 $)) NIL) (($ (-1264 |#1|)) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-351)))) (-2926 (($ $ $) NIL (|has| |#1| (-308)))) (-1929 (((-689 |#1|) $ (-1264 $)) NIL) (((-689 |#1|) $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-4362 (($ (-1171 |#1|)) NIL) (((-3 $ "failed") (-409 (-1171 |#1|))) NIL (|has| |#1| (-365)))) (-1579 (((-3 $ "failed") $) NIL)) (-2417 ((|#1| $) 13)) (-3800 (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-547)))) (-3717 (((-112) $) NIL (|has| |#1| (-547)))) (-3370 (((-409 (-566)) $) NIL (|has| |#1| (-547)))) (-1821 (((-921)) NIL)) (-3335 (($) NIL (|has| |#1| (-370)))) (-2938 (($ $ $) NIL (|has| |#1| (-308)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-308)))) (-3092 (($) NIL (|has| |#1| (-351)))) (-3449 (((-112) $) NIL (|has| |#1| (-351)))) (-3626 (($ $ (-771)) NIL (|has| |#1| (-351))) (($ $) NIL (|has| |#1| (-351)))) (-2635 (((-112) $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-1567 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1059)) (|has| |#1| (-1199))))) (-3035 (($) NIL (|has| |#1| (-1199)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| |#1| (-886 (-381))))) (-2716 (((-921) $) NIL (|has| |#1| (-351))) (((-833 (-921)) $) NIL (|has| |#1| (-351)))) (-2741 (((-112) $) 36)) (-3979 (($ $ (-566)) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199))))) (-1559 ((|#1| $) 47)) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-351)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-308)))) (-3929 (((-1171 |#1|) $) NIL (|has| |#1| (-365)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3712 (((-921) $) NIL (|has| |#1| (-370)))) (-3668 (($ $) NIL (|has| |#1| (-1199)))) (-4350 (((-1171 |#1|) $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-308))) (($ $ $) NIL (|has| |#1| (-308)))) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| |#1| (-365)))) (-2759 (($) NIL (|has| |#1| (-351)) CONST)) (-2168 (($ (-921)) NIL (|has| |#1| (-370)))) (-3610 (($) NIL)) (-2430 ((|#1| $) 15)) (-4033 (((-1119) $) NIL)) (-4067 (($) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-308)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-308))) (($ $ $) NIL (|has| |#1| (-308)))) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| |#1| (-351)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-2391 (((-420 $) $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-308))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-308)))) (-2972 (((-3 $ "failed") $ |#1|) 45 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 48 (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-308)))) (-3613 (($ $) NIL (|has| |#1| (-1199)))) (-2070 (($ $ (-644 |#1|) (-644 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-516 (-1175) |#1|)))) (-1813 (((-771) $) NIL (|has| |#1| (-308)))) (-4386 (($ $ |#1|) NIL (|has| |#1| (-287 |#1| |#1|)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-308)))) (-2408 ((|#1| (-1264 $)) NIL) ((|#1|) NIL)) (-3379 (((-771) $) NIL (|has| |#1| (-351))) (((-3 (-771) "failed") $ $) NIL (|has| |#1| (-351)))) (-2862 (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-3042 (((-689 |#1|) (-1264 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-365)))) (-2127 (((-1171 |#1|)) NIL)) (-3267 (($ $) NIL (|has| |#1| (-1199)))) (-3133 (($ $) NIL (|has| |#1| (-1199)))) (-1536 (($) NIL (|has| |#1| (-351)))) (-3248 (($ $) NIL (|has| |#1| (-1199)))) (-3112 (($ $) NIL (|has| |#1| (-1199)))) (-3223 (($ $) NIL (|has| |#1| (-1199)))) (-3089 (($ $) NIL (|has| |#1| (-1199)))) (-2770 (((-1264 |#1|) $ (-1264 $)) NIL) (((-689 |#1|) (-1264 $) (-1264 $)) NIL) (((-1264 |#1|) $) NIL) (((-689 |#1|) (-1264 $)) NIL)) (-3134 (((-1264 |#1|) $) NIL) (($ (-1264 |#1|)) NIL) (((-1171 |#1|) $) NIL) (($ (-1171 |#1|)) NIL) (((-892 (-566)) $) NIL (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| |#1| (-614 (-892 (-381))))) (((-169 (-381)) $) NIL (|has| |#1| (-1022))) (((-169 (-225)) $) NIL (|has| |#1| (-1022))) (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2032 (($ $) 46)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-351))))) (-3654 (($ |#1| |#1|) 38)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) 37) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-3842 (($ $) NIL (|has| |#1| (-351))) (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-1963 (((-1171 |#1|) $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL)) (-3302 (($ $) NIL (|has| |#1| (-1199)))) (-3172 (($ $) NIL (|has| |#1| (-1199)))) (-1634 (((-112) $ $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-3279 (($ $) NIL (|has| |#1| (-1199)))) (-3146 (($ $) NIL (|has| |#1| (-1199)))) (-3323 (($ $) NIL (|has| |#1| (-1199)))) (-3194 (($ $) NIL (|has| |#1| (-1199)))) (-2241 ((|#1| $) NIL (|has| |#1| (-1199)))) (-1382 (($ $) NIL (|has| |#1| (-1199)))) (-3205 (($ $) NIL (|has| |#1| (-1199)))) (-3313 (($ $) NIL (|has| |#1| (-1199)))) (-3185 (($ $) NIL (|has| |#1| (-1199)))) (-3291 (($ $) NIL (|has| |#1| (-1199)))) (-3160 (($ $) NIL (|has| |#1| (-1199)))) (-1346 (($ $) NIL (|has| |#1| (-1059)))) (-2485 (($) 28 T CONST)) (-2495 (($) 30 T CONST)) (-2178 (((-1157) $) 23 (|has| |#1| (-828))) (((-1157) $ (-112)) 25 (|has| |#1| (-828))) (((-1269) (-822) $) 26 (|has| |#1| (-828))) (((-1269) (-822) $ (-112)) 27 (|has| |#1| (-828)))) (-2840 (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 40)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-409 (-566))) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199)))) (($ $ $) NIL (|has| |#1| (-1199))) (($ $ (-566)) NIL (|has| |#1| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 43) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-409 (-566)) $) NIL (|has| |#1| (-365))) (($ $ (-409 (-566))) NIL (|has| |#1| (-365)))))
+((-2473 (((-420 |#2|) |#2|) 69)))
+(((-167 |#1| |#2|) (-10 -7 (-15 -2473 ((-420 |#2|) |#2|))) (-308) (-1240 (-169 |#1|))) (T -167))
+((-2473 (*1 *2 *3) (-12 (-4 *4 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-167 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
+(-10 -7 (-15 -2473 ((-420 |#2|) |#2|)))
+((-3152 (((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|)) 14)))
+(((-168 |#1| |#2|) (-10 -7 (-15 -3152 ((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|)))) (-172) (-172)) (T -168))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-169 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-5 *2 (-169 *6)) (-5 *1 (-168 *5 *6)))))
+(-10 -7 (-15 -3152 ((-169 |#2|) (-1 |#2| |#1|) (-169 |#1|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 34)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-1968 (($ $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-2644 (((-112) $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-2965 (((-689 |#1|) (-1264 $)) NIL) (((-689 |#1|)) NIL)) (-3834 ((|#1| $) NIL)) (-2865 (($ $) NIL (|has| |#1| (-1199)))) (-3939 (($ $) NIL (|has| |#1| (-1199)))) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| |#1| (-351)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-2179 (($ $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-3271 (((-420 $) $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-2484 (($ $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199))))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-2738 (((-112) $ $) NIL (|has| |#1| (-308)))) (-4070 (((-771)) NIL (|has| |#1| (-370)))) (-2843 (($ $) NIL (|has| |#1| (-1199)))) (-3915 (($ $) NIL (|has| |#1| (-1199)))) (-2888 (($ $) NIL (|has| |#1| (-1199)))) (-3964 (($ $) NIL (|has| |#1| (-1199)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-2613 (($ (-1264 |#1|) (-1264 $)) NIL) (($ (-1264 |#1|)) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-351)))) (-2949 (($ $ $) NIL (|has| |#1| (-308)))) (-2205 (((-689 |#1|) $ (-1264 $)) NIL) (((-689 |#1|) $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1580 (($ (-1171 |#1|)) NIL) (((-3 $ "failed") (-409 (-1171 |#1|))) NIL (|has| |#1| (-365)))) (-2928 (((-3 $ "failed") $) NIL)) (-2495 ((|#1| $) 13)) (-4045 (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-547)))) (-1356 (((-112) $) NIL (|has| |#1| (-547)))) (-2269 (((-409 (-566)) $) NIL (|has| |#1| (-547)))) (-4157 (((-921)) NIL)) (-1618 (($) NIL (|has| |#1| (-370)))) (-2960 (($ $ $) NIL (|has| |#1| (-308)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-308)))) (-1676 (($) NIL (|has| |#1| (-351)))) (-3698 (((-112) $) NIL (|has| |#1| (-351)))) (-2901 (($ $ (-771)) NIL (|has| |#1| (-351))) (($ $) NIL (|has| |#1| (-351)))) (-1784 (((-112) $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-2796 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1059)) (|has| |#1| (-1199))))) (-3120 (($) NIL (|has| |#1| (-1199)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| |#1| (-886 (-381))))) (-3227 (((-921) $) NIL (|has| |#1| (-351))) (((-833 (-921)) $) NIL (|has| |#1| (-351)))) (-3466 (((-112) $) 36)) (-1986 (($ $ (-566)) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199))))) (-2719 ((|#1| $) 47)) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-351)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-308)))) (-2750 (((-1171 |#1|) $) NIL (|has| |#1| (-365)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1299 (((-921) $) NIL (|has| |#1| (-370)))) (-3671 (($ $) NIL (|has| |#1| (-1199)))) (-1567 (((-1171 |#1|) $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-308))) (($ $ $) NIL (|has| |#1| (-308)))) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-365)))) (-3625 (($) NIL (|has| |#1| (-351)) CONST)) (-2208 (($ (-921)) NIL (|has| |#1| (-370)))) (-2762 (($) NIL)) (-2503 ((|#1| $) 15)) (-4056 (((-1119) $) NIL)) (-4152 (($) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-308)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-308))) (($ $ $) NIL (|has| |#1| (-308)))) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| |#1| (-351)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#1| (-308)) (|has| |#1| (-909))))) (-2473 (((-420 $) $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-365))))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-308))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-308)))) (-2997 (((-3 $ "failed") $ |#1|) 45 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 48 (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-308)))) (-4337 (($ $) NIL (|has| |#1| (-1199)))) (-2095 (($ $ (-644 |#1|) (-644 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-516 (-1175) |#1|)))) (-3470 (((-771) $) NIL (|has| |#1| (-308)))) (-4393 (($ $ |#1|) NIL (|has| |#1| (-287 |#1| |#1|)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-308)))) (-3309 ((|#1| (-1264 $)) NIL) ((|#1|) NIL)) (-2347 (((-771) $) NIL (|has| |#1| (-351))) (((-3 (-771) "failed") $ $) NIL (|has| |#1| (-351)))) (-2578 (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-4359 (((-689 |#1|) (-1264 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-365)))) (-3601 (((-1171 |#1|)) NIL)) (-2897 (($ $) NIL (|has| |#1| (-1199)))) (-3974 (($ $) NIL (|has| |#1| (-1199)))) (-2507 (($) NIL (|has| |#1| (-351)))) (-2877 (($ $) NIL (|has| |#1| (-1199)))) (-3951 (($ $) NIL (|has| |#1| (-1199)))) (-2853 (($ $) NIL (|has| |#1| (-1199)))) (-3927 (($ $) NIL (|has| |#1| (-1199)))) (-2543 (((-1264 |#1|) $ (-1264 $)) NIL) (((-689 |#1|) (-1264 $) (-1264 $)) NIL) (((-1264 |#1|) $) NIL) (((-689 |#1|) (-1264 $)) NIL)) (-3204 (((-1264 |#1|) $) NIL) (($ (-1264 |#1|)) NIL) (((-1171 |#1|) $) NIL) (($ (-1171 |#1|)) NIL) (((-892 (-566)) $) NIL (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| |#1| (-614 (-892 (-381))))) (((-169 (-381)) $) NIL (|has| |#1| (-1022))) (((-169 (-225)) $) NIL (|has| |#1| (-1022))) (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3850 (($ $) 46)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-351))))) (-3661 (($ |#1| |#1|) 38)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) 37) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-3226 (($ $) NIL (|has| |#1| (-351))) (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-4370 (((-1171 |#1|) $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL)) (-2931 (($ $) NIL (|has| |#1| (-1199)))) (-4009 (($ $) NIL (|has| |#1| (-1199)))) (-2278 (((-112) $ $) NIL (-2805 (-12 (|has| |#1| (-308)) (|has| |#1| (-909))) (|has| |#1| (-558))))) (-2907 (($ $) NIL (|has| |#1| (-1199)))) (-3986 (($ $) NIL (|has| |#1| (-1199)))) (-2954 (($ $) NIL (|has| |#1| (-1199)))) (-4033 (($ $) NIL (|has| |#1| (-1199)))) (-2224 ((|#1| $) NIL (|has| |#1| (-1199)))) (-3181 (($ $) NIL (|has| |#1| (-1199)))) (-2834 (($ $) NIL (|has| |#1| (-1199)))) (-2943 (($ $) NIL (|has| |#1| (-1199)))) (-4021 (($ $) NIL (|has| |#1| (-1199)))) (-2920 (($ $) NIL (|has| |#1| (-1199)))) (-3997 (($ $) NIL (|has| |#1| (-1199)))) (-3333 (($ $) NIL (|has| |#1| (-1059)))) (-2493 (($) 28 T CONST)) (-4333 (($) 30 T CONST)) (-2852 (((-1157) $) 23 (|has| |#1| (-828))) (((-1157) $ (-112)) 25 (|has| |#1| (-828))) (((-1269) (-822) $) 26 (|has| |#1| (-828))) (((-1269) (-822) $ (-112)) 27 (|has| |#1| (-828)))) (-2876 (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 40)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-409 (-566))) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1199)))) (($ $ $) NIL (|has| |#1| (-1199))) (($ $ (-566)) NIL (|has| |#1| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 43) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-409 (-566)) $) NIL (|has| |#1| (-365))) (($ $ (-409 (-566))) NIL (|has| |#1| (-365)))))
(((-169 |#1|) (-13 (-166 |#1|) (-10 -7 (IF (|has| |#1| (-828)) (-6 (-828)) |%noBranch|))) (-172)) (T -169))
NIL
(-13 (-166 |#1|) (-10 -7 (IF (|has| |#1| (-828)) (-6 (-828)) |%noBranch|)))
-((-3134 (((-892 |#1|) |#3|) 22)))
-(((-170 |#1| |#2| |#3|) (-10 -7 (-15 -3134 ((-892 |#1|) |#3|))) (-1099) (-13 (-614 (-892 |#1|)) (-172)) (-166 |#2|)) (T -170))
-((-3134 (*1 *2 *3) (-12 (-4 *5 (-13 (-614 *2) (-172))) (-5 *2 (-892 *4)) (-5 *1 (-170 *4 *5 *3)) (-4 *4 (-1099)) (-4 *3 (-166 *5)))))
-(-10 -7 (-15 -3134 ((-892 |#1|) |#3|)))
-((-2985 (((-112) $ $) NIL)) (-2059 (((-112) $) 9)) (-3788 (((-112) $ (-112)) 11)) (-4257 (($) 13)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3895 (($ $) 14)) (-2512 (((-862) $) 18)) (-3494 (((-112) $) 8)) (-1673 (((-112) $ (-112)) 10)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-171) (-13 (-1099) (-10 -8 (-15 -4257 ($)) (-15 -3494 ((-112) $)) (-15 -2059 ((-112) $)) (-15 -1673 ((-112) $ (-112))) (-15 -3788 ((-112) $ (-112))) (-15 -3895 ($ $))))) (T -171))
-((-4257 (*1 *1) (-5 *1 (-171))) (-3494 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-2059 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-1673 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-3788 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-3895 (*1 *1 *1) (-5 *1 (-171))))
-(-13 (-1099) (-10 -8 (-15 -4257 ($)) (-15 -3494 ((-112) $)) (-15 -2059 ((-112) $)) (-15 -1673 ((-112) $ (-112))) (-15 -3788 ((-112) $ (-112))) (-15 -3895 ($ $))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3204 (((-892 |#1|) |#3|) 22)))
+(((-170 |#1| |#2| |#3|) (-10 -7 (-15 -3204 ((-892 |#1|) |#3|))) (-1099) (-13 (-614 (-892 |#1|)) (-172)) (-166 |#2|)) (T -170))
+((-3204 (*1 *2 *3) (-12 (-4 *5 (-13 (-614 *2) (-172))) (-5 *2 (-892 *4)) (-5 *1 (-170 *4 *5 *3)) (-4 *4 (-1099)) (-4 *3 (-166 *5)))))
+(-10 -7 (-15 -3204 ((-892 |#1|) |#3|)))
+((-3009 (((-112) $ $) NIL)) (-4117 (((-112) $) 9)) (-3937 (((-112) $ (-112)) 11)) (-4278 (($) 13)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3940 (($ $) 14)) (-3780 (((-862) $) 18)) (-4136 (((-112) $) 8)) (-1713 (((-112) $ (-112)) 10)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-171) (-13 (-1099) (-10 -8 (-15 -4278 ($)) (-15 -4136 ((-112) $)) (-15 -4117 ((-112) $)) (-15 -1713 ((-112) $ (-112))) (-15 -3937 ((-112) $ (-112))) (-15 -3940 ($ $))))) (T -171))
+((-4278 (*1 *1) (-5 *1 (-171))) (-4136 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-4117 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-1713 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-3937 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))) (-3940 (*1 *1 *1) (-5 *1 (-171))))
+(-13 (-1099) (-10 -8 (-15 -4278 ($)) (-15 -4136 ((-112) $)) (-15 -4117 ((-112) $)) (-15 -1713 ((-112) $ (-112))) (-15 -3937 ((-112) $ (-112))) (-15 -3940 ($ $))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-172) (-140)) (T -172))
NIL
-(-13 (-1049) (-111 $ $) (-10 -7 (-6 (-4419 "*"))))
+(-13 (-1049) (-111 $ $) (-10 -7 (-6 (-4416 "*"))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-726) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-1459 (($ $) 6)))
+((-4127 (($ $) 6)))
(((-173) (-140)) (T -173))
-((-1459 (*1 *1 *1) (-4 *1 (-173))))
-(-13 (-10 -8 (-15 -1459 ($ $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2452 ((|#1| $) 81)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-2926 (($ $ $) NIL)) (-2644 (($ $) 21)) (-4189 (($ |#1| (-1155 |#1|)) 50)) (-1579 (((-3 $ "failed") $) 123)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-2247 (((-1155 |#1|) $) 88)) (-1824 (((-1155 |#1|) $) 85)) (-2051 (((-1155 |#1|) $) 86)) (-2741 (((-112) $) NIL)) (-4088 (((-1155 |#1|) $) 94)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2184 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2391 (((-420 $) $) NIL)) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL)) (-1938 (($ $ (-566)) 97)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-1983 (((-1155 |#1|) $) 95)) (-3286 (((-1155 (-409 |#1|)) $) 14)) (-1932 (($ (-409 |#1|)) 17) (($ |#1| (-1155 |#1|) (-1155 |#1|)) 40)) (-1973 (($ $) 99)) (-2512 (((-862) $) 140) (($ (-566)) 53) (($ |#1|) 54) (($ (-409 |#1|)) 38) (($ (-409 (-566))) NIL) (($ $) NIL)) (-3795 (((-771)) 70 T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-4160 (((-1155 (-409 |#1|)) $) 20)) (-2485 (($) 27 T CONST)) (-2495 (($) 30 T CONST)) (-2940 (((-112) $ $) 37)) (-3061 (($ $ $) 121)) (-3047 (($ $) 112) (($ $ $) 109)) (-3034 (($ $ $) 107)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 119) (($ $ $) 114) (($ $ |#1|) NIL) (($ |#1| $) 116) (($ (-409 |#1|) $) 117) (($ $ (-409 |#1|)) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL)))
-(((-174 |#1|) (-13 (-38 |#1|) (-38 (-409 |#1|)) (-365) (-10 -8 (-15 -1932 ($ (-409 |#1|))) (-15 -1932 ($ |#1| (-1155 |#1|) (-1155 |#1|))) (-15 -4189 ($ |#1| (-1155 |#1|))) (-15 -1824 ((-1155 |#1|) $)) (-15 -2051 ((-1155 |#1|) $)) (-15 -2247 ((-1155 |#1|) $)) (-15 -2452 (|#1| $)) (-15 -2644 ($ $)) (-15 -4160 ((-1155 (-409 |#1|)) $)) (-15 -3286 ((-1155 (-409 |#1|)) $)) (-15 -4088 ((-1155 |#1|) $)) (-15 -1983 ((-1155 |#1|) $)) (-15 -1938 ($ $ (-566))) (-15 -1973 ($ $)))) (-308)) (T -174))
-((-1932 (*1 *1 *2) (-12 (-5 *2 (-409 *3)) (-4 *3 (-308)) (-5 *1 (-174 *3)))) (-1932 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1155 *2)) (-4 *2 (-308)) (-5 *1 (-174 *2)))) (-4189 (*1 *1 *2 *3) (-12 (-5 *3 (-1155 *2)) (-4 *2 (-308)) (-5 *1 (-174 *2)))) (-1824 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-2051 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-2247 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-2452 (*1 *2 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308)))) (-2644 (*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308)))) (-4160 (*1 *2 *1) (-12 (-5 *2 (-1155 (-409 *3))) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-3286 (*1 *2 *1) (-12 (-5 *2 (-1155 (-409 *3))) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-4088 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-1983 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-1938 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-1973 (*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308)))))
-(-13 (-38 |#1|) (-38 (-409 |#1|)) (-365) (-10 -8 (-15 -1932 ($ (-409 |#1|))) (-15 -1932 ($ |#1| (-1155 |#1|) (-1155 |#1|))) (-15 -4189 ($ |#1| (-1155 |#1|))) (-15 -1824 ((-1155 |#1|) $)) (-15 -2051 ((-1155 |#1|) $)) (-15 -2247 ((-1155 |#1|) $)) (-15 -2452 (|#1| $)) (-15 -2644 ($ $)) (-15 -4160 ((-1155 (-409 |#1|)) $)) (-15 -3286 ((-1155 (-409 |#1|)) $)) (-15 -4088 ((-1155 |#1|) $)) (-15 -1983 ((-1155 |#1|) $)) (-15 -1938 ($ $ (-566))) (-15 -1973 ($ $))))
-((-4019 (($ (-109) $) 15)) (-4017 (((-691 (-109)) (-508) $) 14)) (-2512 (((-862) $) 18)) (-1682 (((-644 (-109)) $) 8)))
-(((-175) (-13 (-613 (-862)) (-10 -8 (-15 -1682 ((-644 (-109)) $)) (-15 -4019 ($ (-109) $)) (-15 -4017 ((-691 (-109)) (-508) $))))) (T -175))
-((-1682 (*1 *2 *1) (-12 (-5 *2 (-644 (-109))) (-5 *1 (-175)))) (-4019 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-175)))) (-4017 (*1 *2 *3 *1) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-109))) (-5 *1 (-175)))))
-(-13 (-613 (-862)) (-10 -8 (-15 -1682 ((-644 (-109)) $)) (-15 -4019 ($ (-109) $)) (-15 -4017 ((-691 (-109)) (-508) $))))
-((-3790 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 40)) (-2725 (((-943 |#1|) (-943 |#1|)) 24)) (-2389 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 36)) (-1560 (((-943 |#1|) (-943 |#1|)) 22)) (-1807 (((-943 |#1|) (-943 |#1|)) 30)) (-1915 (((-943 |#1|) (-943 |#1|)) 29)) (-2290 (((-943 |#1|) (-943 |#1|)) 28)) (-2052 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 37)) (-2573 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 35)) (-3611 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 34)) (-1399 (((-943 |#1|) (-943 |#1|)) 23)) (-4181 (((-1 (-943 |#1|) (-943 |#1|)) |#1| |#1|) 43)) (-1806 (((-943 |#1|) (-943 |#1|)) 8)) (-4053 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 39)) (-1874 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 38)))
-(((-176 |#1|) (-10 -7 (-15 -1806 ((-943 |#1|) (-943 |#1|))) (-15 -1560 ((-943 |#1|) (-943 |#1|))) (-15 -1399 ((-943 |#1|) (-943 |#1|))) (-15 -2725 ((-943 |#1|) (-943 |#1|))) (-15 -2290 ((-943 |#1|) (-943 |#1|))) (-15 -1915 ((-943 |#1|) (-943 |#1|))) (-15 -1807 ((-943 |#1|) (-943 |#1|))) (-15 -3611 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -2573 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -2389 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -2052 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -1874 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -4053 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -3790 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -4181 ((-1 (-943 |#1|) (-943 |#1|)) |#1| |#1|))) (-13 (-365) (-1199) (-1002))) (T -176))
-((-4181 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-3790 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-4053 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-1874 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-2052 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-2389 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-2573 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-3611 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-1807 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-1915 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-2290 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-2725 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-1399 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-1560 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-1806 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))))
-(-10 -7 (-15 -1806 ((-943 |#1|) (-943 |#1|))) (-15 -1560 ((-943 |#1|) (-943 |#1|))) (-15 -1399 ((-943 |#1|) (-943 |#1|))) (-15 -2725 ((-943 |#1|) (-943 |#1|))) (-15 -2290 ((-943 |#1|) (-943 |#1|))) (-15 -1915 ((-943 |#1|) (-943 |#1|))) (-15 -1807 ((-943 |#1|) (-943 |#1|))) (-15 -3611 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -2573 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -2389 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -2052 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -1874 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -4053 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -3790 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -4181 ((-1 (-943 |#1|) (-943 |#1|)) |#1| |#1|)))
-((-1963 ((|#2| |#3|) 28)))
-(((-177 |#1| |#2| |#3|) (-10 -7 (-15 -1963 (|#2| |#3|))) (-172) (-1240 |#1|) (-724 |#1| |#2|)) (T -177))
-((-1963 (*1 *2 *3) (-12 (-4 *4 (-172)) (-4 *2 (-1240 *4)) (-5 *1 (-177 *4 *2 *3)) (-4 *3 (-724 *4 *2)))))
-(-10 -7 (-15 -1963 (|#2| |#3|)))
-((-1356 (((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)) 44 (|has| (-952 |#2|) (-886 |#1|)))))
-(((-178 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-952 |#2|) (-886 |#1|)) (-15 -1356 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))) |%noBranch|)) (-1099) (-13 (-886 |#1|) (-172)) (-166 |#2|)) (T -178))
-((-1356 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *3)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-4 *3 (-166 *6)) (-4 (-952 *6) (-886 *5)) (-4 *6 (-13 (-886 *5) (-172))) (-5 *1 (-178 *5 *6 *3)))))
-(-10 -7 (IF (|has| (-952 |#2|) (-886 |#1|)) (-15 -1356 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))) |%noBranch|))
-((-3533 (((-644 |#1|) (-644 |#1|) |#1|) 41)) (-2377 (((-644 |#1|) |#1| (-644 |#1|)) 20)) (-1460 (((-644 |#1|) (-644 (-644 |#1|)) (-644 |#1|)) 36) ((|#1| (-644 |#1|) (-644 |#1|)) 32)))
-(((-179 |#1|) (-10 -7 (-15 -2377 ((-644 |#1|) |#1| (-644 |#1|))) (-15 -1460 (|#1| (-644 |#1|) (-644 |#1|))) (-15 -1460 ((-644 |#1|) (-644 (-644 |#1|)) (-644 |#1|))) (-15 -3533 ((-644 |#1|) (-644 |#1|) |#1|))) (-308)) (T -179))
-((-3533 (*1 *2 *2 *3) (-12 (-5 *2 (-644 *3)) (-4 *3 (-308)) (-5 *1 (-179 *3)))) (-1460 (*1 *2 *3 *2) (-12 (-5 *3 (-644 (-644 *4))) (-5 *2 (-644 *4)) (-4 *4 (-308)) (-5 *1 (-179 *4)))) (-1460 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *2)) (-5 *1 (-179 *2)) (-4 *2 (-308)))) (-2377 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-308)) (-5 *1 (-179 *3)))))
-(-10 -7 (-15 -2377 ((-644 |#1|) |#1| (-644 |#1|))) (-15 -1460 (|#1| (-644 |#1|) (-644 |#1|))) (-15 -1460 ((-644 |#1|) (-644 (-644 |#1|)) (-644 |#1|))) (-15 -3533 ((-644 |#1|) (-644 |#1|) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3812 (((-1213) $) 13)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1374 (((-1134) $) 10)) (-2512 (((-862) $) 20) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-180) (-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $)) (-15 -3812 ((-1213) $))))) (T -180))
-((-1374 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-180)))) (-3812 (*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-180)))))
-(-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $)) (-15 -3812 ((-1213) $))))
-((-3603 (((-2 (|:| |start| |#2|) (|:| -4236 (-420 |#2|))) |#2|) 66)) (-2671 ((|#1| |#1|) 58)) (-4182 (((-169 |#1|) |#2|) 93)) (-3443 ((|#1| |#2|) 141) ((|#1| |#2| |#1|) 90)) (-2179 ((|#2| |#2|) 91)) (-1566 (((-420 |#2|) |#2| |#1|) 121) (((-420 |#2|) |#2| |#1| (-112)) 88)) (-1559 ((|#1| |#2|) 120)) (-2271 ((|#2| |#2|) 135)) (-2391 (((-420 |#2|) |#2|) 158) (((-420 |#2|) |#2| |#1|) 33) (((-420 |#2|) |#2| |#1| (-112)) 157)) (-2864 (((-644 (-2 (|:| -4236 (-644 |#2|)) (|:| -1457 |#1|))) |#2| |#2|) 156) (((-644 (-2 (|:| -4236 (-644 |#2|)) (|:| -1457 |#1|))) |#2| |#2| (-112)) 81)) (-1548 (((-644 (-169 |#1|)) |#2| |#1|) 42) (((-644 (-169 |#1|)) |#2|) 43)))
-(((-181 |#1| |#2|) (-10 -7 (-15 -1548 ((-644 (-169 |#1|)) |#2|)) (-15 -1548 ((-644 (-169 |#1|)) |#2| |#1|)) (-15 -2864 ((-644 (-2 (|:| -4236 (-644 |#2|)) (|:| -1457 |#1|))) |#2| |#2| (-112))) (-15 -2864 ((-644 (-2 (|:| -4236 (-644 |#2|)) (|:| -1457 |#1|))) |#2| |#2|)) (-15 -2391 ((-420 |#2|) |#2| |#1| (-112))) (-15 -2391 ((-420 |#2|) |#2| |#1|)) (-15 -2391 ((-420 |#2|) |#2|)) (-15 -2271 (|#2| |#2|)) (-15 -1559 (|#1| |#2|)) (-15 -1566 ((-420 |#2|) |#2| |#1| (-112))) (-15 -1566 ((-420 |#2|) |#2| |#1|)) (-15 -2179 (|#2| |#2|)) (-15 -3443 (|#1| |#2| |#1|)) (-15 -3443 (|#1| |#2|)) (-15 -4182 ((-169 |#1|) |#2|)) (-15 -2671 (|#1| |#1|)) (-15 -3603 ((-2 (|:| |start| |#2|) (|:| -4236 (-420 |#2|))) |#2|))) (-13 (-365) (-848)) (-1240 (-169 |#1|))) (T -181))
-((-3603 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-2 (|:| |start| *3) (|:| -4236 (-420 *3)))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2671 (*1 *2 *2) (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1240 (-169 *2))))) (-4182 (*1 *2 *3) (-12 (-5 *2 (-169 *4)) (-5 *1 (-181 *4 *3)) (-4 *4 (-13 (-365) (-848))) (-4 *3 (-1240 *2)))) (-3443 (*1 *2 *3) (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1240 (-169 *2))))) (-3443 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1240 (-169 *2))))) (-2179 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-848))) (-5 *1 (-181 *3 *2)) (-4 *2 (-1240 (-169 *3))))) (-1566 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-1566 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-1559 (*1 *2 *3) (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1240 (-169 *2))))) (-2271 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-848))) (-5 *1 (-181 *3 *2)) (-4 *2 (-1240 (-169 *3))))) (-2391 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2391 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2391 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2864 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-644 (-2 (|:| -4236 (-644 *3)) (|:| -1457 *4)))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2864 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-365) (-848))) (-5 *2 (-644 (-2 (|:| -4236 (-644 *3)) (|:| -1457 *5)))) (-5 *1 (-181 *5 *3)) (-4 *3 (-1240 (-169 *5))))) (-1548 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-644 (-169 *4))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-1548 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-644 (-169 *4))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
-(-10 -7 (-15 -1548 ((-644 (-169 |#1|)) |#2|)) (-15 -1548 ((-644 (-169 |#1|)) |#2| |#1|)) (-15 -2864 ((-644 (-2 (|:| -4236 (-644 |#2|)) (|:| -1457 |#1|))) |#2| |#2| (-112))) (-15 -2864 ((-644 (-2 (|:| -4236 (-644 |#2|)) (|:| -1457 |#1|))) |#2| |#2|)) (-15 -2391 ((-420 |#2|) |#2| |#1| (-112))) (-15 -2391 ((-420 |#2|) |#2| |#1|)) (-15 -2391 ((-420 |#2|) |#2|)) (-15 -2271 (|#2| |#2|)) (-15 -1559 (|#1| |#2|)) (-15 -1566 ((-420 |#2|) |#2| |#1| (-112))) (-15 -1566 ((-420 |#2|) |#2| |#1|)) (-15 -2179 (|#2| |#2|)) (-15 -3443 (|#1| |#2| |#1|)) (-15 -3443 (|#1| |#2|)) (-15 -4182 ((-169 |#1|) |#2|)) (-15 -2671 (|#1| |#1|)) (-15 -3603 ((-2 (|:| |start| |#2|) (|:| -4236 (-420 |#2|))) |#2|)))
-((-3960 (((-3 |#2| "failed") |#2|) 20)) (-3527 (((-771) |#2|) 23)) (-3321 ((|#2| |#2| |#2|) 25)))
-(((-182 |#1| |#2|) (-10 -7 (-15 -3960 ((-3 |#2| "failed") |#2|)) (-15 -3527 ((-771) |#2|)) (-15 -3321 (|#2| |#2| |#2|))) (-1214) (-674 |#1|)) (T -182))
-((-3321 (*1 *2 *2 *2) (-12 (-4 *3 (-1214)) (-5 *1 (-182 *3 *2)) (-4 *2 (-674 *3)))) (-3527 (*1 *2 *3) (-12 (-4 *4 (-1214)) (-5 *2 (-771)) (-5 *1 (-182 *4 *3)) (-4 *3 (-674 *4)))) (-3960 (*1 *2 *2) (|partial| -12 (-4 *3 (-1214)) (-5 *1 (-182 *3 *2)) (-4 *2 (-674 *3)))))
-(-10 -7 (-15 -3960 ((-3 |#2| "failed") |#2|)) (-15 -3527 ((-771) |#2|)) (-15 -3321 (|#2| |#2| |#2|)))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1534 (((-187) $) 7)) (-2512 (((-862) $) 14)) (-3122 (((-112) $ $) NIL)) (-2763 (((-644 (-1180)) $) 10)) (-2940 (((-112) $ $) 12)))
-(((-183) (-13 (-1099) (-10 -8 (-15 -1534 ((-187) $)) (-15 -2763 ((-644 (-1180)) $))))) (T -183))
-((-1534 (*1 *2 *1) (-12 (-5 *2 (-187)) (-5 *1 (-183)))) (-2763 (*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-183)))))
-(-13 (-1099) (-10 -8 (-15 -1534 ((-187) $)) (-15 -2763 ((-644 (-1180)) $))))
-((-3555 (((-644 (-865)) $) 16)) (-1690 (((-186) $) 8)) (-3454 (((-644 (-112)) $) 13)) (-1965 (((-55) $) 10)))
-(((-184 |#1|) (-10 -8 (-15 -3555 ((-644 (-865)) |#1|)) (-15 -3454 ((-644 (-112)) |#1|)) (-15 -1690 ((-186) |#1|)) (-15 -1965 ((-55) |#1|))) (-185)) (T -184))
-NIL
-(-10 -8 (-15 -3555 ((-644 (-865)) |#1|)) (-15 -3454 ((-644 (-112)) |#1|)) (-15 -1690 ((-186) |#1|)) (-15 -1965 ((-55) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3555 (((-644 (-865)) $) 19)) (-2628 (((-508) $) 16)) (-2878 (((-1157) $) 10)) (-1690 (((-186) $) 21)) (-2181 (((-112) $ (-508)) 14)) (-4033 (((-1119) $) 11)) (-3454 (((-644 (-112)) $) 20)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-1965 (((-55) $) 15)) (-2940 (((-112) $ $) 6)))
+((-4127 (*1 *1 *1) (-4 *1 (-173))))
+(-13 (-10 -8 (-15 -4127 ($ $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2486 ((|#1| $) 81)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-2949 (($ $ $) NIL)) (-3722 (($ $) 21)) (-3410 (($ |#1| (-1155 |#1|)) 50)) (-2928 (((-3 $ "failed") $) 123)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-2289 (((-1155 |#1|) $) 88)) (-3563 (((-1155 |#1|) $) 85)) (-4040 (((-1155 |#1|) $) 86)) (-3466 (((-112) $) NIL)) (-1767 (((-1155 |#1|) $) 94)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2197 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2473 (((-420 $) $) NIL)) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL)) (-2295 (($ $ (-566)) 97)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-1494 (((-1155 |#1|) $) 95)) (-2757 (((-1155 (-409 |#1|)) $) 14)) (-2241 (($ (-409 |#1|)) 17) (($ |#1| (-1155 |#1|) (-1155 |#1|)) 40)) (-1377 (($ $) 99)) (-3780 (((-862) $) 140) (($ (-566)) 53) (($ |#1|) 54) (($ (-409 |#1|)) 38) (($ (-409 (-566))) NIL) (($ $) NIL)) (-3996 (((-771)) 70 T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-4316 (((-1155 (-409 |#1|)) $) 20)) (-2493 (($) 27 T CONST)) (-4333 (($) 30 T CONST)) (-2950 (((-112) $ $) 37)) (-3062 (($ $ $) 121)) (-3051 (($ $) 112) (($ $ $) 109)) (-3040 (($ $ $) 107)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 119) (($ $ $) 114) (($ $ |#1|) NIL) (($ |#1| $) 116) (($ (-409 |#1|) $) 117) (($ $ (-409 |#1|)) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL)))
+(((-174 |#1|) (-13 (-38 |#1|) (-38 (-409 |#1|)) (-365) (-10 -8 (-15 -2241 ($ (-409 |#1|))) (-15 -2241 ($ |#1| (-1155 |#1|) (-1155 |#1|))) (-15 -3410 ($ |#1| (-1155 |#1|))) (-15 -3563 ((-1155 |#1|) $)) (-15 -4040 ((-1155 |#1|) $)) (-15 -2289 ((-1155 |#1|) $)) (-15 -2486 (|#1| $)) (-15 -3722 ($ $)) (-15 -4316 ((-1155 (-409 |#1|)) $)) (-15 -2757 ((-1155 (-409 |#1|)) $)) (-15 -1767 ((-1155 |#1|) $)) (-15 -1494 ((-1155 |#1|) $)) (-15 -2295 ($ $ (-566))) (-15 -1377 ($ $)))) (-308)) (T -174))
+((-2241 (*1 *1 *2) (-12 (-5 *2 (-409 *3)) (-4 *3 (-308)) (-5 *1 (-174 *3)))) (-2241 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1155 *2)) (-4 *2 (-308)) (-5 *1 (-174 *2)))) (-3410 (*1 *1 *2 *3) (-12 (-5 *3 (-1155 *2)) (-4 *2 (-308)) (-5 *1 (-174 *2)))) (-3563 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-4040 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-2289 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-2486 (*1 *2 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308)))) (-3722 (*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308)))) (-4316 (*1 *2 *1) (-12 (-5 *2 (-1155 (-409 *3))) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-2757 (*1 *2 *1) (-12 (-5 *2 (-1155 (-409 *3))) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-1767 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-1494 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-2295 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-174 *3)) (-4 *3 (-308)))) (-1377 (*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308)))))
+(-13 (-38 |#1|) (-38 (-409 |#1|)) (-365) (-10 -8 (-15 -2241 ($ (-409 |#1|))) (-15 -2241 ($ |#1| (-1155 |#1|) (-1155 |#1|))) (-15 -3410 ($ |#1| (-1155 |#1|))) (-15 -3563 ((-1155 |#1|) $)) (-15 -4040 ((-1155 |#1|) $)) (-15 -2289 ((-1155 |#1|) $)) (-15 -2486 (|#1| $)) (-15 -3722 ($ $)) (-15 -4316 ((-1155 (-409 |#1|)) $)) (-15 -2757 ((-1155 (-409 |#1|)) $)) (-15 -1767 ((-1155 |#1|) $)) (-15 -1494 ((-1155 |#1|) $)) (-15 -2295 ($ $ (-566))) (-15 -1377 ($ $))))
+((-2370 (($ (-109) $) 15)) (-2349 (((-691 (-109)) (-508) $) 14)) (-3780 (((-862) $) 18)) (-1510 (((-644 (-109)) $) 8)))
+(((-175) (-13 (-613 (-862)) (-10 -8 (-15 -1510 ((-644 (-109)) $)) (-15 -2370 ($ (-109) $)) (-15 -2349 ((-691 (-109)) (-508) $))))) (T -175))
+((-1510 (*1 *2 *1) (-12 (-5 *2 (-644 (-109))) (-5 *1 (-175)))) (-2370 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-175)))) (-2349 (*1 *2 *3 *1) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-109))) (-5 *1 (-175)))))
+(-13 (-613 (-862)) (-10 -8 (-15 -1510 ((-644 (-109)) $)) (-15 -2370 ($ (-109) $)) (-15 -2349 ((-691 (-109)) (-508) $))))
+((-3962 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 40)) (-3315 (((-943 |#1|) (-943 |#1|)) 24)) (-3138 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 36)) (-2728 (((-943 |#1|) (-943 |#1|)) 22)) (-3417 (((-943 |#1|) (-943 |#1|)) 30)) (-2066 (((-943 |#1|) (-943 |#1|)) 29)) (-1477 (((-943 |#1|) (-943 |#1|)) 28)) (-4052 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 37)) (-2406 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 35)) (-2772 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 34)) (-3567 (((-943 |#1|) (-943 |#1|)) 23)) (-3332 (((-1 (-943 |#1|) (-943 |#1|)) |#1| |#1|) 43)) (-3407 (((-943 |#1|) (-943 |#1|)) 8)) (-1417 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 39)) (-2856 (((-1 (-943 |#1|) (-943 |#1|)) |#1|) 38)))
+(((-176 |#1|) (-10 -7 (-15 -3407 ((-943 |#1|) (-943 |#1|))) (-15 -2728 ((-943 |#1|) (-943 |#1|))) (-15 -3567 ((-943 |#1|) (-943 |#1|))) (-15 -3315 ((-943 |#1|) (-943 |#1|))) (-15 -1477 ((-943 |#1|) (-943 |#1|))) (-15 -2066 ((-943 |#1|) (-943 |#1|))) (-15 -3417 ((-943 |#1|) (-943 |#1|))) (-15 -2772 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -2406 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -3138 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -4052 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -2856 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -1417 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -3962 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -3332 ((-1 (-943 |#1|) (-943 |#1|)) |#1| |#1|))) (-13 (-365) (-1199) (-1002))) (T -176))
+((-3332 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-3962 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-1417 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-2856 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-4052 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-3138 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-2406 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-2772 (*1 *2 *3) (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))))) (-3417 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-2066 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-1477 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-3315 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-3567 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-2728 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))) (-3407 (*1 *2 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002))) (-5 *1 (-176 *3)))))
+(-10 -7 (-15 -3407 ((-943 |#1|) (-943 |#1|))) (-15 -2728 ((-943 |#1|) (-943 |#1|))) (-15 -3567 ((-943 |#1|) (-943 |#1|))) (-15 -3315 ((-943 |#1|) (-943 |#1|))) (-15 -1477 ((-943 |#1|) (-943 |#1|))) (-15 -2066 ((-943 |#1|) (-943 |#1|))) (-15 -3417 ((-943 |#1|) (-943 |#1|))) (-15 -2772 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -2406 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -3138 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -4052 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -2856 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -1417 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -3962 ((-1 (-943 |#1|) (-943 |#1|)) |#1|)) (-15 -3332 ((-1 (-943 |#1|) (-943 |#1|)) |#1| |#1|)))
+((-4370 ((|#2| |#3|) 28)))
+(((-177 |#1| |#2| |#3|) (-10 -7 (-15 -4370 (|#2| |#3|))) (-172) (-1240 |#1|) (-724 |#1| |#2|)) (T -177))
+((-4370 (*1 *2 *3) (-12 (-4 *4 (-172)) (-4 *2 (-1240 *4)) (-5 *1 (-177 *4 *2 *3)) (-4 *3 (-724 *4 *2)))))
+(-10 -7 (-15 -4370 (|#2| |#3|)))
+((-1525 (((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)) 44 (|has| (-952 |#2|) (-886 |#1|)))))
+(((-178 |#1| |#2| |#3|) (-10 -7 (IF (|has| (-952 |#2|) (-886 |#1|)) (-15 -1525 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))) |%noBranch|)) (-1099) (-13 (-886 |#1|) (-172)) (-166 |#2|)) (T -178))
+((-1525 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *3)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-4 *3 (-166 *6)) (-4 (-952 *6) (-886 *5)) (-4 *6 (-13 (-886 *5) (-172))) (-5 *1 (-178 *5 *6 *3)))))
+(-10 -7 (IF (|has| (-952 |#2|) (-886 |#1|)) (-15 -1525 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))) |%noBranch|))
+((-3286 (((-644 |#1|) (-644 |#1|) |#1|) 41)) (-4212 (((-644 |#1|) |#1| (-644 |#1|)) 20)) (-4139 (((-644 |#1|) (-644 (-644 |#1|)) (-644 |#1|)) 36) ((|#1| (-644 |#1|) (-644 |#1|)) 32)))
+(((-179 |#1|) (-10 -7 (-15 -4212 ((-644 |#1|) |#1| (-644 |#1|))) (-15 -4139 (|#1| (-644 |#1|) (-644 |#1|))) (-15 -4139 ((-644 |#1|) (-644 (-644 |#1|)) (-644 |#1|))) (-15 -3286 ((-644 |#1|) (-644 |#1|) |#1|))) (-308)) (T -179))
+((-3286 (*1 *2 *2 *3) (-12 (-5 *2 (-644 *3)) (-4 *3 (-308)) (-5 *1 (-179 *3)))) (-4139 (*1 *2 *3 *2) (-12 (-5 *3 (-644 (-644 *4))) (-5 *2 (-644 *4)) (-4 *4 (-308)) (-5 *1 (-179 *4)))) (-4139 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *2)) (-5 *1 (-179 *2)) (-4 *2 (-308)))) (-4212 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-308)) (-5 *1 (-179 *3)))))
+(-10 -7 (-15 -4212 ((-644 |#1|) |#1| (-644 |#1|))) (-15 -4139 (|#1| (-644 |#1|) (-644 |#1|))) (-15 -4139 ((-644 |#1|) (-644 (-644 |#1|)) (-644 |#1|))) (-15 -3286 ((-644 |#1|) (-644 |#1|) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3848 (((-1213) $) 13)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1424 (((-1134) $) 10)) (-3780 (((-862) $) 20) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-180) (-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $)) (-15 -3848 ((-1213) $))))) (T -180))
+((-1424 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-180)))) (-3848 (*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-180)))))
+(-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $)) (-15 -3848 ((-1213) $))))
+((-2697 (((-2 (|:| |start| |#2|) (|:| -2670 (-420 |#2|))) |#2|) 66)) (-3984 ((|#1| |#1|) 58)) (-3342 (((-169 |#1|) |#2|) 93)) (-1765 ((|#1| |#2|) 141) ((|#1| |#2| |#1|) 90)) (-2861 ((|#2| |#2|) 91)) (-2785 (((-420 |#2|) |#2| |#1|) 121) (((-420 |#2|) |#2| |#1| (-112)) 88)) (-2719 ((|#1| |#2|) 120)) (-4376 ((|#2| |#2|) 135)) (-2473 (((-420 |#2|) |#2|) 158) (((-420 |#2|) |#2| |#1|) 33) (((-420 |#2|) |#2| |#1| (-112)) 157)) (-2250 (((-644 (-2 (|:| -2670 (-644 |#2|)) (|:| -1499 |#1|))) |#2| |#2|) 156) (((-644 (-2 (|:| -2670 (-644 |#2|)) (|:| -1499 |#1|))) |#2| |#2| (-112)) 81)) (-2623 (((-644 (-169 |#1|)) |#2| |#1|) 42) (((-644 (-169 |#1|)) |#2|) 43)))
+(((-181 |#1| |#2|) (-10 -7 (-15 -2623 ((-644 (-169 |#1|)) |#2|)) (-15 -2623 ((-644 (-169 |#1|)) |#2| |#1|)) (-15 -2250 ((-644 (-2 (|:| -2670 (-644 |#2|)) (|:| -1499 |#1|))) |#2| |#2| (-112))) (-15 -2250 ((-644 (-2 (|:| -2670 (-644 |#2|)) (|:| -1499 |#1|))) |#2| |#2|)) (-15 -2473 ((-420 |#2|) |#2| |#1| (-112))) (-15 -2473 ((-420 |#2|) |#2| |#1|)) (-15 -2473 ((-420 |#2|) |#2|)) (-15 -4376 (|#2| |#2|)) (-15 -2719 (|#1| |#2|)) (-15 -2785 ((-420 |#2|) |#2| |#1| (-112))) (-15 -2785 ((-420 |#2|) |#2| |#1|)) (-15 -2861 (|#2| |#2|)) (-15 -1765 (|#1| |#2| |#1|)) (-15 -1765 (|#1| |#2|)) (-15 -3342 ((-169 |#1|) |#2|)) (-15 -3984 (|#1| |#1|)) (-15 -2697 ((-2 (|:| |start| |#2|) (|:| -2670 (-420 |#2|))) |#2|))) (-13 (-365) (-848)) (-1240 (-169 |#1|))) (T -181))
+((-2697 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-2 (|:| |start| *3) (|:| -2670 (-420 *3)))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-3984 (*1 *2 *2) (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1240 (-169 *2))))) (-3342 (*1 *2 *3) (-12 (-5 *2 (-169 *4)) (-5 *1 (-181 *4 *3)) (-4 *4 (-13 (-365) (-848))) (-4 *3 (-1240 *2)))) (-1765 (*1 *2 *3) (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1240 (-169 *2))))) (-1765 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1240 (-169 *2))))) (-2861 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-848))) (-5 *1 (-181 *3 *2)) (-4 *2 (-1240 (-169 *3))))) (-2785 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2785 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2719 (*1 *2 *3) (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3)) (-4 *3 (-1240 (-169 *2))))) (-4376 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-848))) (-5 *1 (-181 *3 *2)) (-4 *2 (-1240 (-169 *3))))) (-2473 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2473 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2473 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3)) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2250 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-644 (-2 (|:| -2670 (-644 *3)) (|:| -1499 *4)))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2250 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-365) (-848))) (-5 *2 (-644 (-2 (|:| -2670 (-644 *3)) (|:| -1499 *5)))) (-5 *1 (-181 *5 *3)) (-4 *3 (-1240 (-169 *5))))) (-2623 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-644 (-169 *4))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))) (-2623 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-644 (-169 *4))) (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
+(-10 -7 (-15 -2623 ((-644 (-169 |#1|)) |#2|)) (-15 -2623 ((-644 (-169 |#1|)) |#2| |#1|)) (-15 -2250 ((-644 (-2 (|:| -2670 (-644 |#2|)) (|:| -1499 |#1|))) |#2| |#2| (-112))) (-15 -2250 ((-644 (-2 (|:| -2670 (-644 |#2|)) (|:| -1499 |#1|))) |#2| |#2|)) (-15 -2473 ((-420 |#2|) |#2| |#1| (-112))) (-15 -2473 ((-420 |#2|) |#2| |#1|)) (-15 -2473 ((-420 |#2|) |#2|)) (-15 -4376 (|#2| |#2|)) (-15 -2719 (|#1| |#2|)) (-15 -2785 ((-420 |#2|) |#2| |#1| (-112))) (-15 -2785 ((-420 |#2|) |#2| |#1|)) (-15 -2861 (|#2| |#2|)) (-15 -1765 (|#1| |#2| |#1|)) (-15 -1765 (|#1| |#2|)) (-15 -3342 ((-169 |#1|) |#2|)) (-15 -3984 (|#1| |#1|)) (-15 -2697 ((-2 (|:| |start| |#2|) (|:| -2670 (-420 |#2|))) |#2|)))
+((-3034 (((-3 |#2| "failed") |#2|) 20)) (-3229 (((-771) |#2|) 23)) (-1848 ((|#2| |#2| |#2|) 25)))
+(((-182 |#1| |#2|) (-10 -7 (-15 -3034 ((-3 |#2| "failed") |#2|)) (-15 -3229 ((-771) |#2|)) (-15 -1848 (|#2| |#2| |#2|))) (-1214) (-674 |#1|)) (T -182))
+((-1848 (*1 *2 *2 *2) (-12 (-4 *3 (-1214)) (-5 *1 (-182 *3 *2)) (-4 *2 (-674 *3)))) (-3229 (*1 *2 *3) (-12 (-4 *4 (-1214)) (-5 *2 (-771)) (-5 *1 (-182 *4 *3)) (-4 *3 (-674 *4)))) (-3034 (*1 *2 *2) (|partial| -12 (-4 *3 (-1214)) (-5 *1 (-182 *3 *2)) (-4 *2 (-674 *3)))))
+(-10 -7 (-15 -3034 ((-3 |#2| "failed") |#2|)) (-15 -3229 ((-771) |#2|)) (-15 -1848 (|#2| |#2| |#2|)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1592 (((-187) $) 7)) (-3780 (((-862) $) 14)) (-3801 (((-112) $ $) NIL)) (-3072 (((-644 (-1180)) $) 10)) (-2950 (((-112) $ $) 12)))
+(((-183) (-13 (-1099) (-10 -8 (-15 -1592 ((-187) $)) (-15 -3072 ((-644 (-1180)) $))))) (T -183))
+((-1592 (*1 *2 *1) (-12 (-5 *2 (-187)) (-5 *1 (-183)))) (-3072 (*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-183)))))
+(-13 (-1099) (-10 -8 (-15 -1592 ((-187) $)) (-15 -3072 ((-644 (-1180)) $))))
+((-3579 (((-644 (-865)) $) 16)) (-1731 (((-186) $) 8)) (-3743 (((-644 (-112)) $) 13)) (-1297 (((-55) $) 10)))
+(((-184 |#1|) (-10 -8 (-15 -3579 ((-644 (-865)) |#1|)) (-15 -3743 ((-644 (-112)) |#1|)) (-15 -1731 ((-186) |#1|)) (-15 -1297 ((-55) |#1|))) (-185)) (T -184))
+NIL
+(-10 -8 (-15 -3579 ((-644 (-865)) |#1|)) (-15 -3743 ((-644 (-112)) |#1|)) (-15 -1731 ((-186) |#1|)) (-15 -1297 ((-55) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3579 (((-644 (-865)) $) 19)) (-2639 (((-508) $) 16)) (-2402 (((-1157) $) 10)) (-1731 (((-186) $) 21)) (-2885 (((-112) $ (-508)) 14)) (-4056 (((-1119) $) 11)) (-3743 (((-644 (-112)) $) 20)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-1297 (((-55) $) 15)) (-2950 (((-112) $ $) 6)))
(((-185) (-140)) (T -185))
-((-1690 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-186)))) (-3454 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-644 (-112))))) (-3555 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-644 (-865))))))
-(-13 (-835 (-508)) (-10 -8 (-15 -1690 ((-186) $)) (-15 -3454 ((-644 (-112)) $)) (-15 -3555 ((-644 (-865)) $))))
+((-1731 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-186)))) (-3743 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-644 (-112))))) (-3579 (*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-644 (-865))))))
+(-13 (-835 (-508)) (-10 -8 (-15 -1731 ((-186) $)) (-15 -3743 ((-644 (-112)) $)) (-15 -3579 ((-644 (-865)) $))))
(((-102) . T) ((-613 (-862)) . T) ((-835 (-508)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-7 (($) 8 T CONST)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-8 (($) 7 T CONST)) (-2512 (((-862) $) 12)) (-9 (($) 6 T CONST)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 10)))
-(((-186) (-13 (-1099) (-10 -8 (-15 -9 ($) -1655) (-15 -8 ($) -1655) (-15 -7 ($) -1655)))) (T -186))
+((-3009 (((-112) $ $) NIL)) (-7 (($) 8 T CONST)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-8 (($) 7 T CONST)) (-3780 (((-862) $) 12)) (-9 (($) 6 T CONST)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 10)))
+(((-186) (-13 (-1099) (-10 -8 (-15 -9 ($) -2460) (-15 -8 ($) -2460) (-15 -7 ($) -2460)))) (T -186))
((-9 (*1 *1) (-5 *1 (-186))) (-8 (*1 *1) (-5 *1 (-186))) (-7 (*1 *1) (-5 *1 (-186))))
-(-13 (-1099) (-10 -8 (-15 -9 ($) -1655) (-15 -8 ($) -1655) (-15 -7 ($) -1655)))
-((-2985 (((-112) $ $) NIL)) (-3555 (((-644 (-865)) $) NIL)) (-2628 (((-508) $) 8)) (-2878 (((-1157) $) NIL)) (-1690 (((-186) $) 10)) (-2181 (((-112) $ (-508)) NIL)) (-4033 (((-1119) $) NIL)) (-1386 (((-691 $) (-508)) 17)) (-3454 (((-644 (-112)) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-1965 (((-55) $) 12)) (-2940 (((-112) $ $) NIL)))
-(((-187) (-13 (-185) (-10 -8 (-15 -1386 ((-691 $) (-508)))))) (T -187))
-((-1386 (*1 *2 *3) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-187))) (-5 *1 (-187)))))
-(-13 (-185) (-10 -8 (-15 -1386 ((-691 $) (-508)))))
-((-1817 ((|#2| |#2|) 28)) (-3128 (((-112) |#2|) 19)) (-2417 (((-317 |#1|) |#2|) 12)) (-2430 (((-317 |#1|) |#2|) 14)) (-3697 ((|#2| |#2| (-1175)) 69) ((|#2| |#2|) 70)) (-3247 (((-169 (-317 |#1|)) |#2|) 10)) (-1988 ((|#2| |#2| (-1175)) 66) ((|#2| |#2|) 60)))
-(((-188 |#1| |#2|) (-10 -7 (-15 -3697 (|#2| |#2|)) (-15 -3697 (|#2| |#2| (-1175))) (-15 -1988 (|#2| |#2|)) (-15 -1988 (|#2| |#2| (-1175))) (-15 -2417 ((-317 |#1|) |#2|)) (-15 -2430 ((-317 |#1|) |#2|)) (-15 -3128 ((-112) |#2|)) (-15 -1817 (|#2| |#2|)) (-15 -3247 ((-169 (-317 |#1|)) |#2|))) (-13 (-558) (-1038 (-566))) (-13 (-27) (-1199) (-432 (-169 |#1|)))) (T -188))
-((-3247 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-169 (-317 *4))) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-1817 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3)))))) (-3128 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-112)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-2430 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-317 *4)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-2417 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-317 *4)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-1988 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-1988 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3)))))) (-3697 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-3697 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3)))))))
-(-10 -7 (-15 -3697 (|#2| |#2|)) (-15 -3697 (|#2| |#2| (-1175))) (-15 -1988 (|#2| |#2|)) (-15 -1988 (|#2| |#2| (-1175))) (-15 -2417 ((-317 |#1|) |#2|)) (-15 -2430 ((-317 |#1|) |#2|)) (-15 -3128 ((-112) |#2|)) (-15 -1817 (|#2| |#2|)) (-15 -3247 ((-169 (-317 |#1|)) |#2|)))
-((-1897 (((-1264 (-689 (-952 |#1|))) (-1264 (-689 |#1|))) 26)) (-2512 (((-1264 (-689 (-409 (-952 |#1|)))) (-1264 (-689 |#1|))) 37)))
-(((-189 |#1|) (-10 -7 (-15 -1897 ((-1264 (-689 (-952 |#1|))) (-1264 (-689 |#1|)))) (-15 -2512 ((-1264 (-689 (-409 (-952 |#1|)))) (-1264 (-689 |#1|))))) (-172)) (T -189))
-((-2512 (*1 *2 *3) (-12 (-5 *3 (-1264 (-689 *4))) (-4 *4 (-172)) (-5 *2 (-1264 (-689 (-409 (-952 *4))))) (-5 *1 (-189 *4)))) (-1897 (*1 *2 *3) (-12 (-5 *3 (-1264 (-689 *4))) (-4 *4 (-172)) (-5 *2 (-1264 (-689 (-952 *4)))) (-5 *1 (-189 *4)))))
-(-10 -7 (-15 -1897 ((-1264 (-689 (-952 |#1|))) (-1264 (-689 |#1|)))) (-15 -2512 ((-1264 (-689 (-409 (-952 |#1|)))) (-1264 (-689 |#1|)))))
-((-1830 (((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566)))) 89)) (-1801 (((-1177 (-409 (-566))) (-644 (-566)) (-644 (-566))) 100)) (-2229 (((-1177 (-409 (-566))) (-566)) 56)) (-2722 (((-1177 (-409 (-566))) (-566)) 75)) (-2070 (((-409 (-566)) (-1177 (-409 (-566)))) 85)) (-3993 (((-1177 (-409 (-566))) (-566)) 37)) (-2439 (((-1177 (-409 (-566))) (-566)) 68)) (-3925 (((-1177 (-409 (-566))) (-566)) 62)) (-1944 (((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566)))) 83)) (-1973 (((-1177 (-409 (-566))) (-566)) 29)) (-2375 (((-409 (-566)) (-1177 (-409 (-566))) (-1177 (-409 (-566)))) 87)) (-2204 (((-1177 (-409 (-566))) (-566)) 35)) (-2139 (((-1177 (-409 (-566))) (-644 (-566))) 96)))
-(((-190) (-10 -7 (-15 -1973 ((-1177 (-409 (-566))) (-566))) (-15 -2229 ((-1177 (-409 (-566))) (-566))) (-15 -3993 ((-1177 (-409 (-566))) (-566))) (-15 -2204 ((-1177 (-409 (-566))) (-566))) (-15 -3925 ((-1177 (-409 (-566))) (-566))) (-15 -2439 ((-1177 (-409 (-566))) (-566))) (-15 -2722 ((-1177 (-409 (-566))) (-566))) (-15 -2375 ((-409 (-566)) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -1944 ((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -2070 ((-409 (-566)) (-1177 (-409 (-566))))) (-15 -1830 ((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -2139 ((-1177 (-409 (-566))) (-644 (-566)))) (-15 -1801 ((-1177 (-409 (-566))) (-644 (-566)) (-644 (-566)))))) (T -190))
-((-1801 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))) (-2139 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))) (-1830 (*1 *2 *2 *2) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))) (-2070 (*1 *2 *3) (-12 (-5 *3 (-1177 (-409 (-566)))) (-5 *2 (-409 (-566))) (-5 *1 (-190)))) (-1944 (*1 *2 *2 *2) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))) (-2375 (*1 *2 *3 *3) (-12 (-5 *3 (-1177 (-409 (-566)))) (-5 *2 (-409 (-566))) (-5 *1 (-190)))) (-2722 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-2439 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-3925 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-2204 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-3993 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-2229 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-1973 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
-(-10 -7 (-15 -1973 ((-1177 (-409 (-566))) (-566))) (-15 -2229 ((-1177 (-409 (-566))) (-566))) (-15 -3993 ((-1177 (-409 (-566))) (-566))) (-15 -2204 ((-1177 (-409 (-566))) (-566))) (-15 -3925 ((-1177 (-409 (-566))) (-566))) (-15 -2439 ((-1177 (-409 (-566))) (-566))) (-15 -2722 ((-1177 (-409 (-566))) (-566))) (-15 -2375 ((-409 (-566)) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -1944 ((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -2070 ((-409 (-566)) (-1177 (-409 (-566))))) (-15 -1830 ((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -2139 ((-1177 (-409 (-566))) (-644 (-566)))) (-15 -1801 ((-1177 (-409 (-566))) (-644 (-566)) (-644 (-566)))))
-((-3561 (((-420 (-1171 (-566))) (-566)) 38)) (-3004 (((-644 (-1171 (-566))) (-566)) 33)) (-3252 (((-1171 (-566)) (-566)) 28)))
-(((-191) (-10 -7 (-15 -3004 ((-644 (-1171 (-566))) (-566))) (-15 -3252 ((-1171 (-566)) (-566))) (-15 -3561 ((-420 (-1171 (-566))) (-566))))) (T -191))
-((-3561 (*1 *2 *3) (-12 (-5 *2 (-420 (-1171 (-566)))) (-5 *1 (-191)) (-5 *3 (-566)))) (-3252 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-191)) (-5 *3 (-566)))) (-3004 (*1 *2 *3) (-12 (-5 *2 (-644 (-1171 (-566)))) (-5 *1 (-191)) (-5 *3 (-566)))))
-(-10 -7 (-15 -3004 ((-644 (-1171 (-566))) (-566))) (-15 -3252 ((-1171 (-566)) (-566))) (-15 -3561 ((-420 (-1171 (-566))) (-566))))
-((-1542 (((-1155 (-225)) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 132)) (-1987 (((-644 (-1157)) (-1155 (-225))) NIL)) (-2766 (((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 108)) (-1431 (((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225)))) NIL)) (-2433 (((-644 (-1157)) (-644 (-225))) NIL)) (-3582 (((-225) (-1093 (-843 (-225)))) 31)) (-3478 (((-225) (-1093 (-843 (-225)))) 32)) (-4040 (((-381) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 126)) (-1984 (((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 68)) (-2789 (((-1157) (-225)) NIL)) (-3857 (((-1157) (-644 (-1157))) 27)) (-2195 (((-1035) (-1175) (-1175) (-1035)) 13)))
-(((-192) (-10 -7 (-15 -2766 ((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1984 ((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3582 ((-225) (-1093 (-843 (-225))))) (-15 -3478 ((-225) (-1093 (-843 (-225))))) (-15 -4040 ((-381) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1431 ((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225))))) (-15 -1542 ((-1155 (-225)) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2789 ((-1157) (-225))) (-15 -2433 ((-644 (-1157)) (-644 (-225)))) (-15 -1987 ((-644 (-1157)) (-1155 (-225)))) (-15 -3857 ((-1157) (-644 (-1157)))) (-15 -2195 ((-1035) (-1175) (-1175) (-1035))))) (T -192))
-((-2195 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1035)) (-5 *3 (-1175)) (-5 *1 (-192)))) (-3857 (*1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-192)))) (-1987 (*1 *2 *3) (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-192)))) (-2433 (*1 *2 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-192)))) (-2789 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1157)) (-5 *1 (-192)))) (-1542 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-192)))) (-1431 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-225))) (-5 *4 (-1175)) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-192)))) (-4040 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-381)) (-5 *1 (-192)))) (-3478 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-192)))) (-3582 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-192)))) (-1984 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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 (-192)))) (-2766 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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 (-192)))))
-(-10 -7 (-15 -2766 ((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1984 ((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3582 ((-225) (-1093 (-843 (-225))))) (-15 -3478 ((-225) (-1093 (-843 (-225))))) (-15 -4040 ((-381) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1431 ((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225))))) (-15 -1542 ((-1155 (-225)) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2789 ((-1157) (-225))) (-15 -2433 ((-644 (-1157)) (-644 (-225)))) (-15 -1987 ((-644 (-1157)) (-1155 (-225)))) (-15 -3857 ((-1157) (-644 (-1157)))) (-15 -2195 ((-1035) (-1175) (-1175) (-1035))))
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 61) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 33) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+(-13 (-1099) (-10 -8 (-15 -9 ($) -2460) (-15 -8 ($) -2460) (-15 -7 ($) -2460)))
+((-3009 (((-112) $ $) NIL)) (-3579 (((-644 (-865)) $) NIL)) (-2639 (((-508) $) 8)) (-2402 (((-1157) $) NIL)) (-1731 (((-186) $) 10)) (-2885 (((-112) $ (-508)) NIL)) (-4056 (((-1119) $) NIL)) (-2538 (((-691 $) (-508)) 17)) (-3743 (((-644 (-112)) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-1297 (((-55) $) 12)) (-2950 (((-112) $ $) NIL)))
+(((-187) (-13 (-185) (-10 -8 (-15 -2538 ((-691 $) (-508)))))) (T -187))
+((-2538 (*1 *2 *3) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-187))) (-5 *1 (-187)))))
+(-13 (-185) (-10 -8 (-15 -2538 ((-691 $) (-508)))))
+((-3514 ((|#2| |#2|) 28)) (-3851 (((-112) |#2|) 19)) (-2495 (((-317 |#1|) |#2|) 12)) (-2503 (((-317 |#1|) |#2|) 14)) (-2419 ((|#2| |#2| (-1175)) 69) ((|#2| |#2|) 70)) (-2433 (((-169 (-317 |#1|)) |#2|) 10)) (-1552 ((|#2| |#2| (-1175)) 66) ((|#2| |#2|) 60)))
+(((-188 |#1| |#2|) (-10 -7 (-15 -2419 (|#2| |#2|)) (-15 -2419 (|#2| |#2| (-1175))) (-15 -1552 (|#2| |#2|)) (-15 -1552 (|#2| |#2| (-1175))) (-15 -2495 ((-317 |#1|) |#2|)) (-15 -2503 ((-317 |#1|) |#2|)) (-15 -3851 ((-112) |#2|)) (-15 -3514 (|#2| |#2|)) (-15 -2433 ((-169 (-317 |#1|)) |#2|))) (-13 (-558) (-1038 (-566))) (-13 (-27) (-1199) (-432 (-169 |#1|)))) (T -188))
+((-2433 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-169 (-317 *4))) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-3514 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3)))))) (-3851 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-112)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-2503 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-317 *4)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-2495 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-317 *4)) (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-1552 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-1552 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3)))))) (-2419 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *4)))))) (-2419 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3)))))))
+(-10 -7 (-15 -2419 (|#2| |#2|)) (-15 -2419 (|#2| |#2| (-1175))) (-15 -1552 (|#2| |#2|)) (-15 -1552 (|#2| |#2| (-1175))) (-15 -2495 ((-317 |#1|) |#2|)) (-15 -2503 ((-317 |#1|) |#2|)) (-15 -3851 ((-112) |#2|)) (-15 -3514 (|#2| |#2|)) (-15 -2433 ((-169 (-317 |#1|)) |#2|)))
+((-1892 (((-1264 (-689 (-952 |#1|))) (-1264 (-689 |#1|))) 26)) (-3780 (((-1264 (-689 (-409 (-952 |#1|)))) (-1264 (-689 |#1|))) 37)))
+(((-189 |#1|) (-10 -7 (-15 -1892 ((-1264 (-689 (-952 |#1|))) (-1264 (-689 |#1|)))) (-15 -3780 ((-1264 (-689 (-409 (-952 |#1|)))) (-1264 (-689 |#1|))))) (-172)) (T -189))
+((-3780 (*1 *2 *3) (-12 (-5 *3 (-1264 (-689 *4))) (-4 *4 (-172)) (-5 *2 (-1264 (-689 (-409 (-952 *4))))) (-5 *1 (-189 *4)))) (-1892 (*1 *2 *3) (-12 (-5 *3 (-1264 (-689 *4))) (-4 *4 (-172)) (-5 *2 (-1264 (-689 (-952 *4)))) (-5 *1 (-189 *4)))))
+(-10 -7 (-15 -1892 ((-1264 (-689 (-952 |#1|))) (-1264 (-689 |#1|)))) (-15 -3780 ((-1264 (-689 (-409 (-952 |#1|)))) (-1264 (-689 |#1|)))))
+((-2414 (((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566)))) 89)) (-3350 (((-1177 (-409 (-566))) (-644 (-566)) (-644 (-566))) 100)) (-2105 (((-1177 (-409 (-566))) (-566)) 56)) (-3285 (((-1177 (-409 (-566))) (-566)) 75)) (-2095 (((-409 (-566)) (-1177 (-409 (-566)))) 85)) (-2118 (((-1177 (-409 (-566))) (-566)) 37)) (-3564 (((-1177 (-409 (-566))) (-566)) 68)) (-2729 (((-1177 (-409 (-566))) (-566)) 62)) (-2350 (((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566)))) 83)) (-1377 (((-1177 (-409 (-566))) (-566)) 29)) (-4194 (((-409 (-566)) (-1177 (-409 (-566))) (-1177 (-409 (-566)))) 87)) (-1880 (((-1177 (-409 (-566))) (-566)) 35)) (-2520 (((-1177 (-409 (-566))) (-644 (-566))) 96)))
+(((-190) (-10 -7 (-15 -1377 ((-1177 (-409 (-566))) (-566))) (-15 -2105 ((-1177 (-409 (-566))) (-566))) (-15 -2118 ((-1177 (-409 (-566))) (-566))) (-15 -1880 ((-1177 (-409 (-566))) (-566))) (-15 -2729 ((-1177 (-409 (-566))) (-566))) (-15 -3564 ((-1177 (-409 (-566))) (-566))) (-15 -3285 ((-1177 (-409 (-566))) (-566))) (-15 -4194 ((-409 (-566)) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -2350 ((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -2095 ((-409 (-566)) (-1177 (-409 (-566))))) (-15 -2414 ((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -2520 ((-1177 (-409 (-566))) (-644 (-566)))) (-15 -3350 ((-1177 (-409 (-566))) (-644 (-566)) (-644 (-566)))))) (T -190))
+((-3350 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))) (-2520 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))) (-2414 (*1 *2 *2 *2) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))) (-2095 (*1 *2 *3) (-12 (-5 *3 (-1177 (-409 (-566)))) (-5 *2 (-409 (-566))) (-5 *1 (-190)))) (-2350 (*1 *2 *2 *2) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))) (-4194 (*1 *2 *3 *3) (-12 (-5 *3 (-1177 (-409 (-566)))) (-5 *2 (-409 (-566))) (-5 *1 (-190)))) (-3285 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-3564 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-2729 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-1880 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-2118 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-2105 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))) (-1377 (*1 *2 *3) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
+(-10 -7 (-15 -1377 ((-1177 (-409 (-566))) (-566))) (-15 -2105 ((-1177 (-409 (-566))) (-566))) (-15 -2118 ((-1177 (-409 (-566))) (-566))) (-15 -1880 ((-1177 (-409 (-566))) (-566))) (-15 -2729 ((-1177 (-409 (-566))) (-566))) (-15 -3564 ((-1177 (-409 (-566))) (-566))) (-15 -3285 ((-1177 (-409 (-566))) (-566))) (-15 -4194 ((-409 (-566)) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -2350 ((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -2095 ((-409 (-566)) (-1177 (-409 (-566))))) (-15 -2414 ((-1177 (-409 (-566))) (-1177 (-409 (-566))) (-1177 (-409 (-566))))) (-15 -2520 ((-1177 (-409 (-566))) (-644 (-566)))) (-15 -3350 ((-1177 (-409 (-566))) (-644 (-566)) (-644 (-566)))))
+((-3515 (((-420 (-1171 (-566))) (-566)) 38)) (-2170 (((-644 (-1171 (-566))) (-566)) 33)) (-2478 (((-1171 (-566)) (-566)) 28)))
+(((-191) (-10 -7 (-15 -2170 ((-644 (-1171 (-566))) (-566))) (-15 -2478 ((-1171 (-566)) (-566))) (-15 -3515 ((-420 (-1171 (-566))) (-566))))) (T -191))
+((-3515 (*1 *2 *3) (-12 (-5 *2 (-420 (-1171 (-566)))) (-5 *1 (-191)) (-5 *3 (-566)))) (-2478 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-191)) (-5 *3 (-566)))) (-2170 (*1 *2 *3) (-12 (-5 *2 (-644 (-1171 (-566)))) (-5 *1 (-191)) (-5 *3 (-566)))))
+(-10 -7 (-15 -2170 ((-644 (-1171 (-566))) (-566))) (-15 -2478 ((-1171 (-566)) (-566))) (-15 -3515 ((-420 (-1171 (-566))) (-566))))
+((-2559 (((-1155 (-225)) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 132)) (-1539 (((-644 (-1157)) (-1155 (-225))) NIL)) (-3695 (((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 108)) (-3868 (((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225)))) NIL)) (-3516 (((-644 (-1157)) (-644 (-225))) NIL)) (-2514 (((-225) (-1093 (-843 (-225)))) 31)) (-3979 (((-225) (-1093 (-843 (-225)))) 32)) (-1306 (((-381) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 126)) (-1505 (((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 68)) (-2732 (((-1157) (-225)) NIL)) (-3372 (((-1157) (-644 (-1157))) 27)) (-3012 (((-1035) (-1175) (-1175) (-1035)) 13)))
+(((-192) (-10 -7 (-15 -3695 ((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1505 ((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2514 ((-225) (-1093 (-843 (-225))))) (-15 -3979 ((-225) (-1093 (-843 (-225))))) (-15 -1306 ((-381) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3868 ((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225))))) (-15 -2559 ((-1155 (-225)) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2732 ((-1157) (-225))) (-15 -3516 ((-644 (-1157)) (-644 (-225)))) (-15 -1539 ((-644 (-1157)) (-1155 (-225)))) (-15 -3372 ((-1157) (-644 (-1157)))) (-15 -3012 ((-1035) (-1175) (-1175) (-1035))))) (T -192))
+((-3012 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1035)) (-5 *3 (-1175)) (-5 *1 (-192)))) (-3372 (*1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-192)))) (-1539 (*1 *2 *3) (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-192)))) (-3516 (*1 *2 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-192)))) (-2732 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1157)) (-5 *1 (-192)))) (-2559 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-192)))) (-3868 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-225))) (-5 *4 (-1175)) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-192)))) (-1306 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-381)) (-5 *1 (-192)))) (-3979 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-192)))) (-2514 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-192)))) (-1505 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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 (-192)))) (-3695 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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 (-192)))))
+(-10 -7 (-15 -3695 ((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1505 ((-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2514 ((-225) (-1093 (-843 (-225))))) (-15 -3979 ((-225) (-1093 (-843 (-225))))) (-15 -1306 ((-381) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3868 ((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225))))) (-15 -2559 ((-1155 (-225)) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2732 ((-1157) (-225))) (-15 -3516 ((-644 (-1157)) (-644 (-225)))) (-15 -1539 ((-644 (-1157)) (-1155 (-225)))) (-15 -3372 ((-1157) (-644 (-1157)))) (-15 -3012 ((-1035) (-1175) (-1175) (-1035))))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 61) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 33) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-193) (-787)) (T -193))
NIL
(-787)
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 66) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 44) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 66) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 44) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-194) (-787)) (T -194))
NIL
(-787)
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 81) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 46) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 81) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 46) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-195) (-787)) (T -195))
NIL
(-787)
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 63) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 36) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 63) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 36) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-196) (-787)) (T -196))
NIL
(-787)
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 75) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 40) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 75) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 40) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-197) (-787)) (T -197))
NIL
(-787)
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 90) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 49) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 90) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 49) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-198) (-787)) (T -198))
NIL
(-787)
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 90) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 51) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 90) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 51) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-199) (-787)) (T -199))
NIL
(-787)
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 77) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 42) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 77) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 42) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-200) (-787)) (T -200))
NIL
(-787)
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 78)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 38)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 78)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 38)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-201) (-787)) (T -201))
NIL
(-787)
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 79)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 44)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 79)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 44)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-202) (-787)) (T -202))
NIL
(-787)
-((-2985 (((-112) $ $) NIL)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 105) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 86) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 105) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 86) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-203) (-787)) (T -203))
NIL
(-787)
-((-2502 (((-3 (-2 (|:| -1706 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 110)) (-1934 (((-566) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 60)) (-1397 (((-3 (-644 (-225)) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 91)))
-(((-204) (-10 -7 (-15 -2502 ((-3 (-2 (|:| -1706 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1397 ((-3 (-644 (-225)) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1934 ((-566) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -204))
-((-1934 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-566)) (-5 *1 (-204)))) (-1397 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-204)))) (-2502 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -1706 (-114)) (|:| |w| (-225)))) (-5 *1 (-204)))))
-(-10 -7 (-15 -2502 ((-3 (-2 (|:| -1706 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1397 ((-3 (-644 (-225)) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1934 ((-566) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
-((-3863 (((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 49)) (-3632 (((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 160)) (-3681 (((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-689 (-317 (-225)))) 112)) (-1633 (((-381) (-689 (-317 (-225)))) 140)) (-3945 (((-689 (-317 (-225))) (-1264 (-317 (-225))) (-644 (-1175))) 136)) (-4351 (((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 37)) (-1423 (((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 53)) (-2070 (((-689 (-317 (-225))) (-689 (-317 (-225))) (-644 (-1175)) (-1264 (-317 (-225)))) 125)) (-3847 (((-381) (-381) (-644 (-381))) 133) (((-381) (-381) (-381)) 128)) (-2866 (((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 45)))
-(((-205) (-10 -7 (-15 -3847 ((-381) (-381) (-381))) (-15 -3847 ((-381) (-381) (-644 (-381)))) (-15 -1633 ((-381) (-689 (-317 (-225))))) (-15 -3945 ((-689 (-317 (-225))) (-1264 (-317 (-225))) (-644 (-1175)))) (-15 -2070 ((-689 (-317 (-225))) (-689 (-317 (-225))) (-644 (-1175)) (-1264 (-317 (-225))))) (-15 -3681 ((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-689 (-317 (-225))))) (-15 -3632 ((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3863 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1423 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2866 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -4351 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -205))
-((-4351 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))) (-2866 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))) (-1423 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))) (-3863 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))) (-3632 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381)))) (-5 *1 (-205)))) (-3681 (*1 *2 *3) (-12 (-5 *3 (-689 (-317 (-225)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381)))) (-5 *1 (-205)))) (-2070 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-689 (-317 (-225)))) (-5 *3 (-644 (-1175))) (-5 *4 (-1264 (-317 (-225)))) (-5 *1 (-205)))) (-3945 (*1 *2 *3 *4) (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *4 (-644 (-1175))) (-5 *2 (-689 (-317 (-225)))) (-5 *1 (-205)))) (-1633 (*1 *2 *3) (-12 (-5 *3 (-689 (-317 (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))) (-3847 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-381))) (-5 *2 (-381)) (-5 *1 (-205)))) (-3847 (*1 *2 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-205)))))
-(-10 -7 (-15 -3847 ((-381) (-381) (-381))) (-15 -3847 ((-381) (-381) (-644 (-381)))) (-15 -1633 ((-381) (-689 (-317 (-225))))) (-15 -3945 ((-689 (-317 (-225))) (-1264 (-317 (-225))) (-644 (-1175)))) (-15 -2070 ((-689 (-317 (-225))) (-689 (-317 (-225))) (-644 (-1175)) (-1264 (-317 (-225))))) (-15 -3681 ((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-689 (-317 (-225))))) (-15 -3632 ((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3863 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1423 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2866 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -4351 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
-((-2985 (((-112) $ $) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 43)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-1802 (((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 75)) (-2940 (((-112) $ $) NIL)))
+((-2935 (((-3 (-2 (|:| -1746 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 110)) (-2263 (((-566) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 60)) (-3502 (((-3 (-644 (-225)) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 91)))
+(((-204) (-10 -7 (-15 -2935 ((-3 (-2 (|:| -1746 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3502 ((-3 (-644 (-225)) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2263 ((-566) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -204))
+((-2263 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-566)) (-5 *1 (-204)))) (-3502 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-204)))) (-2935 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -1746 (-114)) (|:| |w| (-225)))) (-5 *1 (-204)))))
+(-10 -7 (-15 -2935 ((-3 (-2 (|:| -1746 (-114)) (|:| |w| (-225))) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3502 ((-3 (-644 (-225)) "failed") (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2263 ((-566) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
+((-3415 (((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 49)) (-2968 (((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 160)) (-2242 (((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-689 (-317 (-225)))) 112)) (-2268 (((-381) (-689 (-317 (-225)))) 140)) (-2887 (((-689 (-317 (-225))) (-1264 (-317 (-225))) (-644 (-1175))) 136)) (-1301 (((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 37)) (-3786 (((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 53)) (-2095 (((-689 (-317 (-225))) (-689 (-317 (-225))) (-644 (-1175)) (-1264 (-317 (-225)))) 125)) (-3284 (((-381) (-381) (-644 (-381))) 133) (((-381) (-381) (-381)) 128)) (-2271 (((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 45)))
+(((-205) (-10 -7 (-15 -3284 ((-381) (-381) (-381))) (-15 -3284 ((-381) (-381) (-644 (-381)))) (-15 -2268 ((-381) (-689 (-317 (-225))))) (-15 -2887 ((-689 (-317 (-225))) (-1264 (-317 (-225))) (-644 (-1175)))) (-15 -2095 ((-689 (-317 (-225))) (-689 (-317 (-225))) (-644 (-1175)) (-1264 (-317 (-225))))) (-15 -2242 ((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-689 (-317 (-225))))) (-15 -2968 ((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3415 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3786 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2271 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1301 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -205))
+((-1301 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))) (-2271 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))) (-3786 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))) (-3415 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))) (-2968 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381)))) (-5 *1 (-205)))) (-2242 (*1 *2 *3) (-12 (-5 *3 (-689 (-317 (-225)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381)))) (-5 *1 (-205)))) (-2095 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-689 (-317 (-225)))) (-5 *3 (-644 (-1175))) (-5 *4 (-1264 (-317 (-225)))) (-5 *1 (-205)))) (-2887 (*1 *2 *3 *4) (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *4 (-644 (-1175))) (-5 *2 (-689 (-317 (-225)))) (-5 *1 (-205)))) (-2268 (*1 *2 *3) (-12 (-5 *3 (-689 (-317 (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))) (-3284 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-381))) (-5 *2 (-381)) (-5 *1 (-205)))) (-3284 (*1 *2 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-205)))))
+(-10 -7 (-15 -3284 ((-381) (-381) (-381))) (-15 -3284 ((-381) (-381) (-644 (-381)))) (-15 -2268 ((-381) (-689 (-317 (-225))))) (-15 -2887 ((-689 (-317 (-225))) (-1264 (-317 (-225))) (-644 (-1175)))) (-15 -2095 ((-689 (-317 (-225))) (-689 (-317 (-225))) (-644 (-1175)) (-1264 (-317 (-225))))) (-15 -2242 ((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-689 (-317 (-225))))) (-15 -2968 ((-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3415 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3786 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2271 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1301 ((-381) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
+((-3009 (((-112) $ $) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 43)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-3363 (((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 75)) (-2950 (((-112) $ $) NIL)))
(((-206) (-800)) (T -206))
NIL
(-800)
-((-2985 (((-112) $ $) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 43)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-1802 (((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 73)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 43)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-3363 (((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 73)) (-2950 (((-112) $ $) NIL)))
(((-207) (-800)) (T -207))
NIL
(-800)
-((-2985 (((-112) $ $) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 40)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-1802 (((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 76)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 40)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-3363 (((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 76)) (-2950 (((-112) $ $) NIL)))
(((-208) (-800)) (T -208))
NIL
(-800)
-((-2985 (((-112) $ $) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 48)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-1802 (((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 88)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 48)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-3363 (((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 88)) (-2950 (((-112) $ $) NIL)))
(((-209) (-800)) (T -209))
NIL
(-800)
-((-1719 (((-644 (-1175)) (-1175) (-771)) 26)) (-2187 (((-317 (-225)) (-317 (-225))) 35)) (-3362 (((-112) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 87)) (-1994 (((-112) (-225) (-225) (-644 (-317 (-225)))) 47)))
-(((-210) (-10 -7 (-15 -1719 ((-644 (-1175)) (-1175) (-771))) (-15 -2187 ((-317 (-225)) (-317 (-225)))) (-15 -1994 ((-112) (-225) (-225) (-644 (-317 (-225))))) (-15 -3362 ((-112) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))))))) (T -210))
-((-3362 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) (-5 *2 (-112)) (-5 *1 (-210)))) (-1994 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-644 (-317 (-225)))) (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-210)))) (-2187 (*1 *2 *2) (-12 (-5 *2 (-317 (-225))) (-5 *1 (-210)))) (-1719 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-5 *2 (-644 (-1175))) (-5 *1 (-210)) (-5 *3 (-1175)))))
-(-10 -7 (-15 -1719 ((-644 (-1175)) (-1175) (-771))) (-15 -2187 ((-317 (-225)) (-317 (-225)))) (-15 -1994 ((-112) (-225) (-225) (-644 (-317 (-225))))) (-15 -3362 ((-112) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))))))
-((-2985 (((-112) $ $) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 28)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-3687 (((-1035) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 70)) (-2940 (((-112) $ $) NIL)))
+((-1824 (((-644 (-1175)) (-1175) (-771)) 26)) (-2929 (((-317 (-225)) (-317 (-225))) 35)) (-2189 (((-112) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 87)) (-1623 (((-112) (-225) (-225) (-644 (-317 (-225)))) 47)))
+(((-210) (-10 -7 (-15 -1824 ((-644 (-1175)) (-1175) (-771))) (-15 -2929 ((-317 (-225)) (-317 (-225)))) (-15 -1623 ((-112) (-225) (-225) (-644 (-317 (-225))))) (-15 -2189 ((-112) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))))))) (T -210))
+((-2189 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) (-5 *2 (-112)) (-5 *1 (-210)))) (-1623 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-644 (-317 (-225)))) (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-210)))) (-2929 (*1 *2 *2) (-12 (-5 *2 (-317 (-225))) (-5 *1 (-210)))) (-1824 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-5 *2 (-644 (-1175))) (-5 *1 (-210)) (-5 *3 (-1175)))))
+(-10 -7 (-15 -1824 ((-644 (-1175)) (-1175) (-771))) (-15 -2929 ((-317 (-225)) (-317 (-225)))) (-15 -1623 ((-112) (-225) (-225) (-644 (-317 (-225))))) (-15 -2189 ((-112) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))))))
+((-3009 (((-112) $ $) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 28)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2308 (((-1035) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 70)) (-2950 (((-112) $ $) NIL)))
(((-211) (-895)) (T -211))
NIL
(-895)
-((-2985 (((-112) $ $) NIL)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 24)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-3687 (((-1035) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 24)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2308 (((-1035) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) NIL)) (-2950 (((-112) $ $) NIL)))
(((-212) (-895)) (T -212))
NIL
(-895)
-((-2985 (((-112) $ $) NIL)) (-3147 ((|#2| $ (-771) |#2|) 11)) (-3137 ((|#2| $ (-771)) 10)) (-4257 (($) 8)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 26)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 13)))
-(((-213 |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -4257 ($)) (-15 -3137 (|#2| $ (-771))) (-15 -3147 (|#2| $ (-771) |#2|)))) (-921) (-1099)) (T -213))
-((-4257 (*1 *1) (-12 (-5 *1 (-213 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1099)))) (-3137 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *2 (-1099)) (-5 *1 (-213 *4 *2)) (-14 *4 (-921)))) (-3147 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-213 *4 *2)) (-14 *4 (-921)) (-4 *2 (-1099)))))
-(-13 (-1099) (-10 -8 (-15 -4257 ($)) (-15 -3137 (|#2| $ (-771))) (-15 -3147 (|#2| $ (-771) |#2|))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2509 (((-1269) $) 37) (((-1269) $ (-921) (-921)) 44)) (-4386 (($ $ (-989)) 19) (((-245 (-1157)) $ (-1175)) 15)) (-1697 (((-1269) $) 35)) (-2512 (((-862) $) 32) (($ (-644 |#1|)) 8)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $ $) 27)) (-3034 (($ $ $) 22)))
-(((-214 |#1|) (-13 (-1099) (-616 (-644 |#1|)) (-10 -8 (-15 -4386 ($ $ (-989))) (-15 -4386 ((-245 (-1157)) $ (-1175))) (-15 -3034 ($ $ $)) (-15 -3047 ($ $ $)) (-15 -1697 ((-1269) $)) (-15 -2509 ((-1269) $)) (-15 -2509 ((-1269) $ (-921) (-921))))) (-13 (-850) (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 ((-1269) $)) (-15 -2509 ((-1269) $))))) (T -214))
-((-4386 (*1 *1 *1 *2) (-12 (-5 *2 (-989)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-850) (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 ((-1269) $)) (-15 -2509 ((-1269) $))))))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-245 (-1157))) (-5 *1 (-214 *4)) (-4 *4 (-13 (-850) (-10 -8 (-15 -4386 ((-1157) $ *3)) (-15 -1697 ((-1269) $)) (-15 -2509 ((-1269) $))))))) (-3034 (*1 *1 *1 *1) (-12 (-5 *1 (-214 *2)) (-4 *2 (-13 (-850) (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 ((-1269) $)) (-15 -2509 ((-1269) $))))))) (-3047 (*1 *1 *1 *1) (-12 (-5 *1 (-214 *2)) (-4 *2 (-13 (-850) (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 ((-1269) $)) (-15 -2509 ((-1269) $))))))) (-1697 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-850) (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 (*2 $)) (-15 -2509 (*2 $))))))) (-2509 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-850) (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 (*2 $)) (-15 -2509 (*2 $))))))) (-2509 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-214 *4)) (-4 *4 (-13 (-850) (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 (*2 $)) (-15 -2509 (*2 $))))))))
-(-13 (-1099) (-616 (-644 |#1|)) (-10 -8 (-15 -4386 ($ $ (-989))) (-15 -4386 ((-245 (-1157)) $ (-1175))) (-15 -3034 ($ $ $)) (-15 -3047 ($ $ $)) (-15 -1697 ((-1269) $)) (-15 -2509 ((-1269) $)) (-15 -2509 ((-1269) $ (-921) (-921)))))
-((-1421 ((|#2| |#4| (-1 |#2| |#2|)) 49)))
-(((-215 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1421 (|#2| |#4| (-1 |#2| |#2|)))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -215))
-((-1421 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-365)) (-4 *6 (-1240 (-409 *2))) (-4 *2 (-1240 *5)) (-5 *1 (-215 *5 *2 *6 *3)) (-4 *3 (-344 *5 *2 *6)))))
-(-10 -7 (-15 -1421 (|#2| |#4| (-1 |#2| |#2|))))
-((-3821 ((|#2| |#2| (-771) |#2|) 58)) (-2887 ((|#2| |#2| (-771) |#2|) 54)) (-1783 (((-644 |#2|) (-644 (-2 (|:| |deg| (-771)) (|:| -2133 |#2|)))) 82)) (-2446 (((-644 (-2 (|:| |deg| (-771)) (|:| -2133 |#2|))) |#2|) 76)) (-2365 (((-112) |#2|) 74)) (-2085 (((-420 |#2|) |#2|) 96)) (-2391 (((-420 |#2|) |#2|) 95)) (-2810 ((|#2| |#2| (-771) |#2|) 52)) (-3405 (((-2 (|:| |cont| |#1|) (|:| -4236 (-644 (-2 (|:| |irr| |#2|) (|:| -2175 (-566)))))) |#2| (-112)) 88)))
-(((-216 |#1| |#2|) (-10 -7 (-15 -2391 ((-420 |#2|) |#2|)) (-15 -2085 ((-420 |#2|) |#2|)) (-15 -3405 ((-2 (|:| |cont| |#1|) (|:| -4236 (-644 (-2 (|:| |irr| |#2|) (|:| -2175 (-566)))))) |#2| (-112))) (-15 -2446 ((-644 (-2 (|:| |deg| (-771)) (|:| -2133 |#2|))) |#2|)) (-15 -1783 ((-644 |#2|) (-644 (-2 (|:| |deg| (-771)) (|:| -2133 |#2|))))) (-15 -2810 (|#2| |#2| (-771) |#2|)) (-15 -2887 (|#2| |#2| (-771) |#2|)) (-15 -3821 (|#2| |#2| (-771) |#2|)) (-15 -2365 ((-112) |#2|))) (-351) (-1240 |#1|)) (T -216))
-((-2365 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-112)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1240 *4)))) (-3821 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1240 *4)))) (-2887 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1240 *4)))) (-2810 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1240 *4)))) (-1783 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| |deg| (-771)) (|:| -2133 *5)))) (-4 *5 (-1240 *4)) (-4 *4 (-351)) (-5 *2 (-644 *5)) (-5 *1 (-216 *4 *5)))) (-2446 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-644 (-2 (|:| |deg| (-771)) (|:| -2133 *3)))) (-5 *1 (-216 *4 *3)) (-4 *3 (-1240 *4)))) (-3405 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-351)) (-5 *2 (-2 (|:| |cont| *5) (|:| -4236 (-644 (-2 (|:| |irr| *3) (|:| -2175 (-566))))))) (-5 *1 (-216 *5 *3)) (-4 *3 (-1240 *5)))) (-2085 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-420 *3)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1240 *4)))) (-2391 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-420 *3)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1240 *4)))))
-(-10 -7 (-15 -2391 ((-420 |#2|) |#2|)) (-15 -2085 ((-420 |#2|) |#2|)) (-15 -3405 ((-2 (|:| |cont| |#1|) (|:| -4236 (-644 (-2 (|:| |irr| |#2|) (|:| -2175 (-566)))))) |#2| (-112))) (-15 -2446 ((-644 (-2 (|:| |deg| (-771)) (|:| -2133 |#2|))) |#2|)) (-15 -1783 ((-644 |#2|) (-644 (-2 (|:| |deg| (-771)) (|:| -2133 |#2|))))) (-15 -2810 (|#2| |#2| (-771) |#2|)) (-15 -2887 (|#2| |#2| (-771) |#2|)) (-15 -3821 (|#2| |#2| (-771) |#2|)) (-15 -2365 ((-112) |#2|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2452 (((-566) $) NIL (|has| (-566) (-308)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL (|has| (-566) (-820)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-566) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-566) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-566) (-1038 (-566))))) (-1756 (((-566) $) NIL) (((-1175) $) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-566) (-1038 (-566)))) (((-566) $) NIL (|has| (-566) (-1038 (-566))))) (-2926 (($ $ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-566) (-547)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-1684 (((-112) $) NIL (|has| (-566) (-820)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-566) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-566) (-886 (-381))))) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL)) (-3001 (((-566) $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| (-566) (-1150)))) (-1578 (((-112) $) NIL (|has| (-566) (-820)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| (-566) (-850)))) (-3077 (($ (-1 (-566) (-566)) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-566) (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL (|has| (-566) (-308))) (((-409 (-566)) $) NIL)) (-4317 (((-566) $) NIL (|has| (-566) (-547)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2070 (($ $ (-644 (-566)) (-644 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-566) (-566)) NIL (|has| (-566) (-310 (-566)))) (($ $ (-295 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-295 (-566)))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-1175)) (-644 (-566))) NIL (|has| (-566) (-516 (-1175) (-566)))) (($ $ (-1175) (-566)) NIL (|has| (-566) (-516 (-1175) (-566))))) (-1813 (((-771) $) NIL)) (-4386 (($ $ (-566)) NIL (|has| (-566) (-287 (-566) (-566))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-3413 (($ $) NIL)) (-3013 (((-566) $) NIL)) (-2411 (($ (-409 (-566))) 9)) (-3134 (((-892 (-566)) $) NIL (|has| (-566) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-566) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-566) (-614 (-538)))) (((-381) $) NIL (|has| (-566) (-1022))) (((-225) $) NIL (|has| (-566) (-1022)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-566) (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) 8) (($ (-566)) NIL) (($ (-1175)) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL) (((-1004 10) $) 10)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-566) (-909))) (|has| (-566) (-145))))) (-3795 (((-771)) NIL T CONST)) (-1604 (((-566) $) NIL (|has| (-566) (-547)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-1346 (($ $) NIL (|has| (-566) (-820)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-2998 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2962 (((-112) $ $) NIL (|has| (-566) (-850)))) (-3061 (($ $ $) NIL) (($ (-566) (-566)) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-566) $) NIL) (($ $ (-566)) NIL)))
-(((-217) (-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 10)) (-10 -8 (-15 -1539 ((-409 (-566)) $)) (-15 -2411 ($ (-409 (-566))))))) (T -217))
-((-1539 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-217)))) (-2411 (*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-217)))))
-(-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 10)) (-10 -8 (-15 -1539 ((-409 (-566)) $)) (-15 -2411 ($ (-409 (-566))))))
-((-2985 (((-112) $ $) NIL)) (-3011 (((-1117) $) 13)) (-2878 (((-1157) $) NIL)) (-4341 (((-485) $) 10)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 23) (($ (-1180)) NIL) (((-1180) $) NIL)) (-2639 (((-1134) $) 15)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-218) (-13 (-1082) (-10 -8 (-15 -4341 ((-485) $)) (-15 -3011 ((-1117) $)) (-15 -2639 ((-1134) $))))) (T -218))
-((-4341 (*1 *2 *1) (-12 (-5 *2 (-485)) (-5 *1 (-218)))) (-3011 (*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-218)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-218)))))
-(-13 (-1082) (-10 -8 (-15 -4341 ((-485) $)) (-15 -3011 ((-1117) $)) (-15 -2639 ((-1134) $))))
-((-4117 (((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|)) (-1157)) 29) (((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|))) 25)) (-2189 (((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1175) (-843 |#2|) (-843 |#2|) (-112)) 17)))
-(((-219 |#1| |#2|) (-10 -7 (-15 -4117 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|)))) (-15 -4117 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|)) (-1157))) (-15 -2189 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1175) (-843 |#2|) (-843 |#2|) (-112)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-959) (-29 |#1|))) (T -219))
-((-2189 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1175)) (-5 *6 (-112)) (-4 *7 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-4 *3 (-13 (-1199) (-959) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-843 *3)) (|:| |f2| (-644 (-843 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *7 *3)) (-5 *5 (-843 *3)))) (-4117 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1091 (-843 *3))) (-5 *5 (-1157)) (-4 *3 (-13 (-1199) (-959) (-29 *6))) (-4 *6 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 *3)) (|:| |f2| (-644 (-843 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *6 *3)))) (-4117 (*1 *2 *3 *4) (-12 (-5 *4 (-1091 (-843 *3))) (-4 *3 (-13 (-1199) (-959) (-29 *5))) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 *3)) (|:| |f2| (-644 (-843 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *5 *3)))))
-(-10 -7 (-15 -4117 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|)))) (-15 -4117 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|)) (-1157))) (-15 -2189 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1175) (-843 |#2|) (-843 |#2|) (-112))))
-((-4117 (((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|)))) (-1157)) 49) (((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|))))) 46) (((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|))) (-1157)) 50) (((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|)))) 22)))
-(((-220 |#1|) (-10 -7 (-15 -4117 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|))))) (-15 -4117 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|))) (-1157))) (-15 -4117 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|)))))) (-15 -4117 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|)))) (-1157)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (T -220))
-((-4117 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1091 (-843 (-409 (-952 *6))))) (-5 *5 (-1157)) (-5 *3 (-409 (-952 *6))) (-4 *6 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 (-317 *6))) (|:| |f2| (-644 (-843 (-317 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *6)))) (-4117 (*1 *2 *3 *4) (-12 (-5 *4 (-1091 (-843 (-409 (-952 *5))))) (-5 *3 (-409 (-952 *5))) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 (-317 *5))) (|:| |f2| (-644 (-843 (-317 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *5)))) (-4117 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-409 (-952 *6))) (-5 *4 (-1091 (-843 (-317 *6)))) (-5 *5 (-1157)) (-4 *6 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 (-317 *6))) (|:| |f2| (-644 (-843 (-317 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *6)))) (-4117 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1091 (-843 (-317 *5)))) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 (-317 *5))) (|:| |f2| (-644 (-843 (-317 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *5)))))
-(-10 -7 (-15 -4117 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|))))) (-15 -4117 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|))) (-1157))) (-15 -4117 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|)))))) (-15 -4117 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|)))) (-1157))))
-((-4362 (((-2 (|:| -3589 (-1171 |#1|)) (|:| |deg| (-921))) (-1171 |#1|)) 26)) (-4154 (((-644 (-317 |#2|)) (-317 |#2|) (-921)) 54)))
-(((-221 |#1| |#2|) (-10 -7 (-15 -4362 ((-2 (|:| -3589 (-1171 |#1|)) (|:| |deg| (-921))) (-1171 |#1|))) (-15 -4154 ((-644 (-317 |#2|)) (-317 |#2|) (-921)))) (-1049) (-558)) (T -221))
-((-4154 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-4 *6 (-558)) (-5 *2 (-644 (-317 *6))) (-5 *1 (-221 *5 *6)) (-5 *3 (-317 *6)) (-4 *5 (-1049)))) (-4362 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-5 *2 (-2 (|:| -3589 (-1171 *4)) (|:| |deg| (-921)))) (-5 *1 (-221 *4 *5)) (-5 *3 (-1171 *4)) (-4 *5 (-558)))))
-(-10 -7 (-15 -4362 ((-2 (|:| -3589 (-1171 |#1|)) (|:| |deg| (-921))) (-1171 |#1|))) (-15 -4154 ((-644 (-317 |#2|)) (-317 |#2|) (-921))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2373 ((|#1| $) NIL)) (-3877 ((|#1| $) 30)) (-3081 (((-112) $ (-771)) NIL)) (-2342 (($) NIL T CONST)) (-3585 (($ $) NIL)) (-2736 (($ $) 39)) (-1774 ((|#1| |#1| $) NIL)) (-3464 ((|#1| $) NIL)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-3822 (((-771) $) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3119 ((|#1| $) NIL)) (-2676 ((|#1| |#1| $) 35)) (-3036 ((|#1| |#1| $) 37)) (-4265 (($ |#1| $) NIL)) (-3173 (((-771) $) 33)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4395 ((|#1| $) NIL)) (-3318 ((|#1| $) 31)) (-2008 ((|#1| $) 29)) (-2658 ((|#1| $) NIL)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-1735 ((|#1| |#1| $) NIL)) (-4194 (((-112) $) 9)) (-2954 (($) NIL)) (-3663 ((|#1| $) NIL)) (-2269 (($) NIL) (($ (-644 |#1|)) 16)) (-2753 (((-771) $) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-2156 ((|#1| $) 13)) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) NIL)) (-2529 ((|#1| $) NIL)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-222 |#1|) (-13 (-255 |#1|) (-10 -8 (-15 -2269 ($ (-644 |#1|))))) (-1099)) (T -222))
-((-2269 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-222 *3)))))
-(-13 (-255 |#1|) (-10 -8 (-15 -2269 ($ (-644 |#1|)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4177 (($ (-317 |#1|)) 27)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-4353 (((-112) $) NIL)) (-2977 (((-3 (-317 |#1|) "failed") $) NIL)) (-1756 (((-317 |#1|) $) NIL)) (-3577 (($ $) 35)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-3077 (($ (-1 (-317 |#1|) (-317 |#1|)) $) NIL)) (-3557 (((-317 |#1|) $) NIL)) (-2706 (($ $) 34)) (-2878 (((-1157) $) NIL)) (-3823 (((-112) $) NIL)) (-4033 (((-1119) $) NIL)) (-4067 (($ (-771)) NIL)) (-3079 (($ $) 36)) (-3992 (((-566) $) NIL)) (-2512 (((-862) $) 68) (($ (-566)) NIL) (($ (-317 |#1|)) NIL)) (-2022 (((-317 |#1|) $ $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 29 T CONST)) (-2495 (($) NIL T CONST)) (-2940 (((-112) $ $) 32)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 23)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 28) (($ (-317 |#1|) $) 22)))
-(((-223 |#1| |#2|) (-13 (-620 (-317 |#1|)) (-1038 (-317 |#1|)) (-10 -8 (-15 -3557 ((-317 |#1|) $)) (-15 -2706 ($ $)) (-15 -3577 ($ $)) (-15 -2022 ((-317 |#1|) $ $)) (-15 -4067 ($ (-771))) (-15 -3823 ((-112) $)) (-15 -4353 ((-112) $)) (-15 -3992 ((-566) $)) (-15 -3077 ($ (-1 (-317 |#1|) (-317 |#1|)) $)) (-15 -4177 ($ (-317 |#1|))) (-15 -3079 ($ $)))) (-13 (-1049) (-850)) (-644 (-1175))) (T -223))
-((-3557 (*1 *2 *1) (-12 (-5 *2 (-317 *3)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-2706 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1049) (-850))) (-14 *3 (-644 (-1175))))) (-3577 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1049) (-850))) (-14 *3 (-644 (-1175))))) (-2022 (*1 *2 *1 *1) (-12 (-5 *2 (-317 *3)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-4067 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-3823 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-4353 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-3992 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-317 *3) (-317 *3))) (-4 *3 (-13 (-1049) (-850))) (-5 *1 (-223 *3 *4)) (-14 *4 (-644 (-1175))))) (-4177 (*1 *1 *2) (-12 (-5 *2 (-317 *3)) (-4 *3 (-13 (-1049) (-850))) (-5 *1 (-223 *3 *4)) (-14 *4 (-644 (-1175))))) (-3079 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1049) (-850))) (-14 *3 (-644 (-1175))))))
-(-13 (-620 (-317 |#1|)) (-1038 (-317 |#1|)) (-10 -8 (-15 -3557 ((-317 |#1|) $)) (-15 -2706 ($ $)) (-15 -3577 ($ $)) (-15 -2022 ((-317 |#1|) $ $)) (-15 -4067 ($ (-771))) (-15 -3823 ((-112) $)) (-15 -4353 ((-112) $)) (-15 -3992 ((-566) $)) (-15 -3077 ($ (-1 (-317 |#1|) (-317 |#1|)) $)) (-15 -4177 ($ (-317 |#1|))) (-15 -3079 ($ $))))
-((-1712 (((-112) (-1157)) 26)) (-2557 (((-3 (-843 |#2|) "failed") (-612 |#2|) |#2| (-843 |#2|) (-843 |#2|) (-112)) 35)) (-1789 (((-3 (-112) "failed") (-1171 |#2|) (-843 |#2|) (-843 |#2|) (-112)) 84) (((-3 (-112) "failed") (-952 |#1|) (-1175) (-843 |#2|) (-843 |#2|) (-112)) 85)))
-(((-224 |#1| |#2|) (-10 -7 (-15 -1712 ((-112) (-1157))) (-15 -2557 ((-3 (-843 |#2|) "failed") (-612 |#2|) |#2| (-843 |#2|) (-843 |#2|) (-112))) (-15 -1789 ((-3 (-112) "failed") (-952 |#1|) (-1175) (-843 |#2|) (-843 |#2|) (-112))) (-15 -1789 ((-3 (-112) "failed") (-1171 |#2|) (-843 |#2|) (-843 |#2|) (-112)))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-29 |#1|))) (T -224))
-((-1789 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1171 *6)) (-5 *4 (-843 *6)) (-4 *6 (-13 (-1199) (-29 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-224 *5 *6)))) (-1789 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-952 *6)) (-5 *4 (-1175)) (-5 *5 (-843 *7)) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-4 *7 (-13 (-1199) (-29 *6))) (-5 *1 (-224 *6 *7)))) (-2557 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-843 *4)) (-5 *3 (-612 *4)) (-5 *5 (-112)) (-4 *4 (-13 (-1199) (-29 *6))) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-224 *6 *4)))) (-1712 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-112)) (-5 *1 (-224 *4 *5)) (-4 *5 (-13 (-1199) (-29 *4))))))
-(-10 -7 (-15 -1712 ((-112) (-1157))) (-15 -2557 ((-3 (-843 |#2|) "failed") (-612 |#2|) |#2| (-843 |#2|) (-843 |#2|) (-112))) (-15 -1789 ((-3 (-112) "failed") (-952 |#1|) (-1175) (-843 |#2|) (-843 |#2|) (-112))) (-15 -1789 ((-3 (-112) "failed") (-1171 |#2|) (-843 |#2|) (-843 |#2|) (-112))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 100)) (-2452 (((-566) $) 36)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-1881 (($ $) NIL)) (-3235 (($ $) 89)) (-3102 (($ $) 77)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-2402 (($ $) 68)) (-1561 (((-112) $ $) NIL)) (-3215 (($ $) 87)) (-3076 (($ $) 75)) (-2807 (((-566) $) 130)) (-3259 (($ $) 92)) (-3123 (($ $) 79)) (-2342 (($) NIL T CONST)) (-4380 (($ $) NIL)) (-2977 (((-3 (-566) "failed") $) 129) (((-3 (-409 (-566)) "failed") $) 126)) (-1756 (((-566) $) 127) (((-409 (-566)) $) 124)) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) 105)) (-2575 (((-409 (-566)) $ (-771)) 119) (((-409 (-566)) $ (-771) (-771)) 118)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-3524 (((-921)) 29) (((-921) (-921)) NIL (|has| $ (-6 -4408)))) (-1684 (((-112) $) NIL)) (-3035 (($) 47)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL)) (-2716 (((-566) $) 43)) (-2741 (((-112) $) 101)) (-3979 (($ $ (-566)) NIL)) (-1559 (($ $) NIL)) (-1578 (((-112) $) 99)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) 65) (($) 39 (-12 (-2426 (|has| $ (-6 -4400))) (-2426 (|has| $ (-6 -4408)))))) (-3059 (($ $ $) 64) (($) 38 (-12 (-2426 (|has| $ (-6 -4400))) (-2426 (|has| $ (-6 -4408)))))) (-1728 (((-566) $) 27)) (-3392 (($ $) 34)) (-2346 (($ $) 69)) (-3668 (($ $) 74)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2524 (((-921) (-566)) NIL (|has| $ (-6 -4408)))) (-4033 (((-1119) $) 103)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL)) (-4317 (($ $) NIL)) (-2965 (($ (-566) (-566)) NIL) (($ (-566) (-566) (-921)) 112)) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3250 (((-566) $) 28)) (-3041 (($) 46)) (-3613 (($ $) 73)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3159 (((-921)) NIL) (((-921) (-921)) NIL (|has| $ (-6 -4408)))) (-2862 (($ $ (-771)) NIL) (($ $) 106)) (-1870 (((-921) (-566)) NIL (|has| $ (-6 -4408)))) (-3267 (($ $) 90)) (-3133 (($ $) 80)) (-3248 (($ $) 91)) (-3112 (($ $) 78)) (-3223 (($ $) 88)) (-3089 (($ $) 76)) (-3134 (((-381) $) 115) (((-225) $) 14) (((-892 (-381)) $) NIL) (((-538) $) 53)) (-2512 (((-862) $) 50) (($ (-566)) 72) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-566)) 72) (($ (-409 (-566))) NIL)) (-3795 (((-771)) NIL T CONST)) (-1604 (($ $) NIL)) (-3082 (((-921)) 37) (((-921) (-921)) NIL (|has| $ (-6 -4408)))) (-3122 (((-112) $ $) NIL)) (-3306 (((-921)) 25)) (-3302 (($ $) 95)) (-3172 (($ $) 83) (($ $ $) 122)) (-1634 (((-112) $ $) NIL)) (-3279 (($ $) 93)) (-3146 (($ $) 81)) (-3323 (($ $) 98)) (-3194 (($ $) 86)) (-1382 (($ $) 96)) (-3205 (($ $) 84)) (-3313 (($ $) 97)) (-3185 (($ $) 85)) (-3291 (($ $) 94)) (-3160 (($ $) 82)) (-1346 (($ $) 121)) (-2485 (($) 23 T CONST)) (-2495 (($) 44 T CONST)) (-2178 (((-1157) $) 18) (((-1157) $ (-112)) 20) (((-1269) (-822) $) 21) (((-1269) (-822) $ (-112)) 22)) (-3090 (($ $) 109)) (-2840 (($ $ (-771)) NIL) (($ $) NIL)) (-3193 (($ $ $) 111)) (-2998 (((-112) $ $) 58)) (-2974 (((-112) $ $) 55)) (-2940 (((-112) $ $) 66)) (-2987 (((-112) $ $) 57)) (-2962 (((-112) $ $) 54)) (-3061 (($ $ $) 45) (($ $ (-566)) 67)) (-3047 (($ $) 59) (($ $ $) 61)) (-3034 (($ $ $) 60)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 70) (($ $ (-409 (-566))) 154) (($ $ $) 71)) (* (($ (-921) $) 35) (($ (-771) $) NIL) (($ (-566) $) 63) (($ $ $) 62) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
-(((-225) (-13 (-406) (-233) (-828) (-1199) (-614 (-538)) (-10 -8 (-15 -3061 ($ $ (-566))) (-15 ** ($ $ $)) (-15 -3041 ($)) (-15 -3392 ($ $)) (-15 -2346 ($ $)) (-15 -3172 ($ $ $)) (-15 -3090 ($ $)) (-15 -3193 ($ $ $)) (-15 -2575 ((-409 (-566)) $ (-771))) (-15 -2575 ((-409 (-566)) $ (-771) (-771)))))) (T -225))
-((** (*1 *1 *1 *1) (-5 *1 (-225))) (-3061 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-225)))) (-3041 (*1 *1) (-5 *1 (-225))) (-3392 (*1 *1 *1) (-5 *1 (-225))) (-2346 (*1 *1 *1) (-5 *1 (-225))) (-3172 (*1 *1 *1 *1) (-5 *1 (-225))) (-3090 (*1 *1 *1) (-5 *1 (-225))) (-3193 (*1 *1 *1 *1) (-5 *1 (-225))) (-2575 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-225)))) (-2575 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-225)))))
-(-13 (-406) (-233) (-828) (-1199) (-614 (-538)) (-10 -8 (-15 -3061 ($ $ (-566))) (-15 ** ($ $ $)) (-15 -3041 ($)) (-15 -3392 ($ $)) (-15 -2346 ($ $)) (-15 -3172 ($ $ $)) (-15 -3090 ($ $)) (-15 -3193 ($ $ $)) (-15 -2575 ((-409 (-566)) $ (-771))) (-15 -2575 ((-409 (-566)) $ (-771) (-771)))))
-((-3019 (((-169 (-225)) (-771) (-169 (-225))) 11) (((-225) (-771) (-225)) 12)) (-2919 (((-169 (-225)) (-169 (-225))) 13) (((-225) (-225)) 14)) (-2717 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 19) (((-225) (-225) (-225)) 22)) (-1748 (((-169 (-225)) (-169 (-225))) 27) (((-225) (-225)) 26)) (-3151 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 57) (((-225) (-225) (-225)) 49)) (-4347 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 62) (((-225) (-225) (-225)) 60)) (-2649 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 15) (((-225) (-225) (-225)) 16)) (-2075 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 17) (((-225) (-225) (-225)) 18)) (-2223 (((-169 (-225)) (-169 (-225))) 74) (((-225) (-225)) 73)) (-2134 (((-225) (-225)) 68) (((-169 (-225)) (-169 (-225))) 72)) (-3090 (((-169 (-225)) (-169 (-225))) 8) (((-225) (-225)) 9)) (-3193 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 35) (((-225) (-225) (-225)) 31)))
-(((-226) (-10 -7 (-15 -3090 ((-225) (-225))) (-15 -3090 ((-169 (-225)) (-169 (-225)))) (-15 -3193 ((-225) (-225) (-225))) (-15 -3193 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2919 ((-225) (-225))) (-15 -2919 ((-169 (-225)) (-169 (-225)))) (-15 -1748 ((-225) (-225))) (-15 -1748 ((-169 (-225)) (-169 (-225)))) (-15 -3019 ((-225) (-771) (-225))) (-15 -3019 ((-169 (-225)) (-771) (-169 (-225)))) (-15 -2649 ((-225) (-225) (-225))) (-15 -2649 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -3151 ((-225) (-225) (-225))) (-15 -3151 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2075 ((-225) (-225) (-225))) (-15 -2075 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -4347 ((-225) (-225) (-225))) (-15 -4347 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2134 ((-169 (-225)) (-169 (-225)))) (-15 -2134 ((-225) (-225))) (-15 -2223 ((-225) (-225))) (-15 -2223 ((-169 (-225)) (-169 (-225)))) (-15 -2717 ((-225) (-225) (-225))) (-15 -2717 ((-169 (-225)) (-169 (-225)) (-169 (-225)))))) (T -226))
-((-2717 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2717 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2223 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2223 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2134 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2134 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-4347 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-4347 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2075 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2075 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3151 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3151 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2649 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2649 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3019 (*1 *2 *3 *2) (-12 (-5 *2 (-169 (-225))) (-5 *3 (-771)) (-5 *1 (-226)))) (-3019 (*1 *2 *3 *2) (-12 (-5 *2 (-225)) (-5 *3 (-771)) (-5 *1 (-226)))) (-1748 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1748 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2919 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2919 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3193 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3193 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3090 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3090 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))))
-(-10 -7 (-15 -3090 ((-225) (-225))) (-15 -3090 ((-169 (-225)) (-169 (-225)))) (-15 -3193 ((-225) (-225) (-225))) (-15 -3193 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2919 ((-225) (-225))) (-15 -2919 ((-169 (-225)) (-169 (-225)))) (-15 -1748 ((-225) (-225))) (-15 -1748 ((-169 (-225)) (-169 (-225)))) (-15 -3019 ((-225) (-771) (-225))) (-15 -3019 ((-169 (-225)) (-771) (-169 (-225)))) (-15 -2649 ((-225) (-225) (-225))) (-15 -2649 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -3151 ((-225) (-225) (-225))) (-15 -3151 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2075 ((-225) (-225) (-225))) (-15 -2075 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -4347 ((-225) (-225) (-225))) (-15 -4347 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2134 ((-169 (-225)) (-169 (-225)))) (-15 -2134 ((-225) (-225))) (-15 -2223 ((-225) (-225))) (-15 -2223 ((-169 (-225)) (-169 (-225)))) (-15 -2717 ((-225) (-225) (-225))) (-15 -2717 ((-169 (-225)) (-169 (-225)) (-169 (-225)))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2140 (($ (-771) (-771)) NIL)) (-2654 (($ $ $) NIL)) (-3804 (($ (-1264 |#1|)) NIL) (($ $) NIL)) (-2183 (($ |#1| |#1| |#1|) 33)) (-2087 (((-112) $) NIL)) (-4270 (($ $ (-566) (-566)) NIL)) (-2302 (($ $ (-566) (-566)) NIL)) (-1580 (($ $ (-566) (-566) (-566) (-566)) NIL)) (-2589 (($ $) NIL)) (-4072 (((-112) $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-2242 (($ $ (-566) (-566) $) NIL)) (-3874 ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566)) $) NIL)) (-1878 (($ $ (-566) (-1264 |#1|)) NIL)) (-4158 (($ $ (-566) (-1264 |#1|)) NIL)) (-2863 (($ |#1| |#1| |#1|) 32)) (-3701 (($ (-771) |#1|) NIL)) (-2342 (($) NIL T CONST)) (-3071 (($ $) NIL (|has| |#1| (-308)))) (-4134 (((-1264 |#1|) $ (-566)) NIL)) (-1746 (($ |#1|) 31)) (-3383 (($ |#1|) 30)) (-3799 (($ |#1|) 29)) (-1821 (((-771) $) NIL (|has| |#1| (-558)))) (-1332 ((|#1| $ (-566) (-566) |#1|) NIL)) (-3137 ((|#1| $ (-566) (-566)) NIL)) (-3372 (((-644 |#1|) $) NIL)) (-2481 (((-771) $) NIL (|has| |#1| (-558)))) (-2442 (((-644 (-1264 |#1|)) $) NIL (|has| |#1| (-558)))) (-2042 (((-771) $) NIL)) (-4257 (($ (-771) (-771) |#1|) NIL)) (-2053 (((-771) $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-1299 ((|#1| $) NIL (|has| |#1| (-6 (-4419 "*"))))) (-3266 (((-566) $) NIL)) (-1905 (((-566) $) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-4385 (((-566) $) NIL)) (-4106 (((-566) $) NIL)) (-4198 (($ (-644 (-644 |#1|))) 11)) (-1323 (($ (-1 |#1| |#1|) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2503 (((-644 (-644 |#1|)) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2565 (((-3 $ "failed") $) NIL (|has| |#1| (-365)))) (-3298 (($) 12)) (-1797 (($ $ $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1720 (($ $ |#1|) NIL)) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-566) (-566)) NIL) ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566))) NIL)) (-3744 (($ (-644 |#1|)) NIL) (($ (-644 $)) NIL)) (-2742 (((-112) $) NIL)) (-1595 ((|#1| $) NIL (|has| |#1| (-6 (-4419 "*"))))) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-4074 (((-1264 |#1|) $ (-566)) NIL)) (-2512 (($ (-1264 |#1|)) NIL) (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2103 (((-112) $) NIL)) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $ $) NIL) (($ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-566) $) NIL) (((-1264 |#1|) $ (-1264 |#1|)) 15) (((-1264 |#1|) (-1264 |#1|) $) NIL) (((-943 |#1|) $ (-943 |#1|)) 21)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-227 |#1|) (-13 (-687 |#1| (-1264 |#1|) (-1264 |#1|)) (-10 -8 (-15 * ((-943 |#1|) $ (-943 |#1|))) (-15 -3298 ($)) (-15 -3799 ($ |#1|)) (-15 -3383 ($ |#1|)) (-15 -1746 ($ |#1|)) (-15 -2863 ($ |#1| |#1| |#1|)) (-15 -2183 ($ |#1| |#1| |#1|)))) (-13 (-365) (-1199))) (T -227))
-((* (*1 *2 *1 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199))) (-5 *1 (-227 *3)))) (-3298 (*1 *1) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))) (-3799 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))) (-3383 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))) (-1746 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))) (-2863 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))) (-2183 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))))
-(-13 (-687 |#1| (-1264 |#1|) (-1264 |#1|)) (-10 -8 (-15 * ((-943 |#1|) $ (-943 |#1|))) (-15 -3298 ($)) (-15 -3799 ($ |#1|)) (-15 -3383 ($ |#1|)) (-15 -1746 ($ |#1|)) (-15 -2863 ($ |#1| |#1| |#1|)) (-15 -2183 ($ |#1| |#1| |#1|))))
-((-3586 (($ (-1 (-112) |#2|) $) 16)) (-3066 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 27)) (-3879 (($) NIL) (($ (-644 |#2|)) 11)) (-2940 (((-112) $ $) 25)))
-(((-228 |#1| |#2|) (-10 -8 (-15 -3586 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3066 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3066 (|#1| |#2| |#1|)) (-15 -3879 (|#1| (-644 |#2|))) (-15 -3879 (|#1|)) (-15 -2940 ((-112) |#1| |#1|))) (-229 |#2|) (-1099)) (T -228))
-NIL
-(-10 -8 (-15 -3586 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3066 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3066 (|#1| |#2| |#1|)) (-15 -3879 (|#1| (-644 |#2|))) (-15 -3879 (|#1|)) (-15 -2940 ((-112) |#1| |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) 8)) (-3586 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-4093 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3066 (($ |#1| $) 48 (|has| $ (-6 -4417))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4417)))) (-2651 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4417)))) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3119 ((|#1| $) 40)) (-4265 (($ |#1| $) 41)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-3879 (($) 50) (($ (-644 |#1|)) 49)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 51)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) 43)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3073 ((|#2| $ (-771) |#2|) 11)) (-3059 ((|#2| $ (-771)) 10)) (-4278 (($) 8)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 26)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 13)))
+(((-213 |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -4278 ($)) (-15 -3059 (|#2| $ (-771))) (-15 -3073 (|#2| $ (-771) |#2|)))) (-921) (-1099)) (T -213))
+((-4278 (*1 *1) (-12 (-5 *1 (-213 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1099)))) (-3059 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *2 (-1099)) (-5 *1 (-213 *4 *2)) (-14 *4 (-921)))) (-3073 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-213 *4 *2)) (-14 *4 (-921)) (-4 *2 (-1099)))))
+(-13 (-1099) (-10 -8 (-15 -4278 ($)) (-15 -3059 (|#2| $ (-771))) (-15 -3073 (|#2| $ (-771) |#2|))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3018 (((-1269) $) 37) (((-1269) $ (-921) (-921)) 44)) (-4393 (($ $ (-989)) 19) (((-245 (-1157)) $ (-1175)) 15)) (-1736 (((-1269) $) 35)) (-3780 (((-862) $) 32) (($ (-644 |#1|)) 8)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $ $) 27)) (-3040 (($ $ $) 22)))
+(((-214 |#1|) (-13 (-1099) (-616 (-644 |#1|)) (-10 -8 (-15 -4393 ($ $ (-989))) (-15 -4393 ((-245 (-1157)) $ (-1175))) (-15 -3040 ($ $ $)) (-15 -3051 ($ $ $)) (-15 -1736 ((-1269) $)) (-15 -3018 ((-1269) $)) (-15 -3018 ((-1269) $ (-921) (-921))))) (-13 (-850) (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 ((-1269) $)) (-15 -3018 ((-1269) $))))) (T -214))
+((-4393 (*1 *1 *1 *2) (-12 (-5 *2 (-989)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-850) (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 ((-1269) $)) (-15 -3018 ((-1269) $))))))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-245 (-1157))) (-5 *1 (-214 *4)) (-4 *4 (-13 (-850) (-10 -8 (-15 -4393 ((-1157) $ *3)) (-15 -1736 ((-1269) $)) (-15 -3018 ((-1269) $))))))) (-3040 (*1 *1 *1 *1) (-12 (-5 *1 (-214 *2)) (-4 *2 (-13 (-850) (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 ((-1269) $)) (-15 -3018 ((-1269) $))))))) (-3051 (*1 *1 *1 *1) (-12 (-5 *1 (-214 *2)) (-4 *2 (-13 (-850) (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 ((-1269) $)) (-15 -3018 ((-1269) $))))))) (-1736 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-850) (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 (*2 $)) (-15 -3018 (*2 $))))))) (-3018 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-214 *3)) (-4 *3 (-13 (-850) (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 (*2 $)) (-15 -3018 (*2 $))))))) (-3018 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-214 *4)) (-4 *4 (-13 (-850) (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 (*2 $)) (-15 -3018 (*2 $))))))))
+(-13 (-1099) (-616 (-644 |#1|)) (-10 -8 (-15 -4393 ($ $ (-989))) (-15 -4393 ((-245 (-1157)) $ (-1175))) (-15 -3040 ($ $ $)) (-15 -3051 ($ $ $)) (-15 -1736 ((-1269) $)) (-15 -3018 ((-1269) $)) (-15 -3018 ((-1269) $ (-921) (-921)))))
+((-3764 ((|#2| |#4| (-1 |#2| |#2|)) 49)))
+(((-215 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3764 (|#2| |#4| (-1 |#2| |#2|)))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -215))
+((-3764 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-365)) (-4 *6 (-1240 (-409 *2))) (-4 *2 (-1240 *5)) (-5 *1 (-215 *5 *2 *6 *3)) (-4 *3 (-344 *5 *2 *6)))))
+(-10 -7 (-15 -3764 (|#2| |#4| (-1 |#2| |#2|))))
+((-4226 ((|#2| |#2| (-771) |#2|) 58)) (-4329 ((|#2| |#2| (-771) |#2|) 54)) (-3166 (((-644 |#2|) (-644 (-2 (|:| |deg| (-771)) (|:| -2457 |#2|)))) 82)) (-3628 (((-644 (-2 (|:| |deg| (-771)) (|:| -2457 |#2|))) |#2|) 76)) (-4102 (((-112) |#2|) 74)) (-3173 (((-420 |#2|) |#2|) 96)) (-2473 (((-420 |#2|) |#2|) 95)) (-2930 ((|#2| |#2| (-771) |#2|) 52)) (-1347 (((-2 (|:| |cont| |#1|) (|:| -2670 (-644 (-2 (|:| |irr| |#2|) (|:| -2831 (-566)))))) |#2| (-112)) 88)))
+(((-216 |#1| |#2|) (-10 -7 (-15 -2473 ((-420 |#2|) |#2|)) (-15 -3173 ((-420 |#2|) |#2|)) (-15 -1347 ((-2 (|:| |cont| |#1|) (|:| -2670 (-644 (-2 (|:| |irr| |#2|) (|:| -2831 (-566)))))) |#2| (-112))) (-15 -3628 ((-644 (-2 (|:| |deg| (-771)) (|:| -2457 |#2|))) |#2|)) (-15 -3166 ((-644 |#2|) (-644 (-2 (|:| |deg| (-771)) (|:| -2457 |#2|))))) (-15 -2930 (|#2| |#2| (-771) |#2|)) (-15 -4329 (|#2| |#2| (-771) |#2|)) (-15 -4226 (|#2| |#2| (-771) |#2|)) (-15 -4102 ((-112) |#2|))) (-351) (-1240 |#1|)) (T -216))
+((-4102 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-112)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1240 *4)))) (-4226 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1240 *4)))) (-4329 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1240 *4)))) (-2930 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2)) (-4 *2 (-1240 *4)))) (-3166 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| |deg| (-771)) (|:| -2457 *5)))) (-4 *5 (-1240 *4)) (-4 *4 (-351)) (-5 *2 (-644 *5)) (-5 *1 (-216 *4 *5)))) (-3628 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-644 (-2 (|:| |deg| (-771)) (|:| -2457 *3)))) (-5 *1 (-216 *4 *3)) (-4 *3 (-1240 *4)))) (-1347 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-351)) (-5 *2 (-2 (|:| |cont| *5) (|:| -2670 (-644 (-2 (|:| |irr| *3) (|:| -2831 (-566))))))) (-5 *1 (-216 *5 *3)) (-4 *3 (-1240 *5)))) (-3173 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-420 *3)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1240 *4)))) (-2473 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-420 *3)) (-5 *1 (-216 *4 *3)) (-4 *3 (-1240 *4)))))
+(-10 -7 (-15 -2473 ((-420 |#2|) |#2|)) (-15 -3173 ((-420 |#2|) |#2|)) (-15 -1347 ((-2 (|:| |cont| |#1|) (|:| -2670 (-644 (-2 (|:| |irr| |#2|) (|:| -2831 (-566)))))) |#2| (-112))) (-15 -3628 ((-644 (-2 (|:| |deg| (-771)) (|:| -2457 |#2|))) |#2|)) (-15 -3166 ((-644 |#2|) (-644 (-2 (|:| |deg| (-771)) (|:| -2457 |#2|))))) (-15 -2930 (|#2| |#2| (-771) |#2|)) (-15 -4329 (|#2| |#2| (-771) |#2|)) (-15 -4226 (|#2| |#2| (-771) |#2|)) (-15 -4102 ((-112) |#2|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2486 (((-566) $) NIL (|has| (-566) (-308)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL (|has| (-566) (-820)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-566) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-566) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-566) (-1038 (-566))))) (-1867 (((-566) $) NIL) (((-1175) $) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-566) (-1038 (-566)))) (((-566) $) NIL (|has| (-566) (-1038 (-566))))) (-2949 (($ $ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-566) (-547)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1533 (((-112) $) NIL (|has| (-566) (-820)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-566) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-566) (-886 (-381))))) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL)) (-3088 (((-566) $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| (-566) (-1150)))) (-2917 (((-112) $) NIL (|has| (-566) (-820)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| (-566) (-850)))) (-3152 (($ (-1 (-566) (-566)) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-566) (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL (|has| (-566) (-308))) (((-409 (-566)) $) NIL)) (-2209 (((-566) $) NIL (|has| (-566) (-547)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2095 (($ $ (-644 (-566)) (-644 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-566) (-566)) NIL (|has| (-566) (-310 (-566)))) (($ $ (-295 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-295 (-566)))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-1175)) (-644 (-566))) NIL (|has| (-566) (-516 (-1175) (-566)))) (($ $ (-1175) (-566)) NIL (|has| (-566) (-516 (-1175) (-566))))) (-3470 (((-771) $) NIL)) (-4393 (($ $ (-566)) NIL (|has| (-566) (-287 (-566) (-566))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-1431 (($ $) NIL)) (-3100 (((-566) $) NIL)) (-3340 (($ (-409 (-566))) 9)) (-3204 (((-892 (-566)) $) NIL (|has| (-566) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-566) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-566) (-614 (-538)))) (((-381) $) NIL (|has| (-566) (-1022))) (((-225) $) NIL (|has| (-566) (-1022)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-566) (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) 8) (($ (-566)) NIL) (($ (-1175)) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL) (((-1004 10) $) 10)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-566) (-909))) (|has| (-566) (-145))))) (-3996 (((-771)) NIL T CONST)) (-1982 (((-566) $) NIL (|has| (-566) (-547)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3333 (($ $) NIL (|has| (-566) (-820)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-3010 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2972 (((-112) $ $) NIL (|has| (-566) (-850)))) (-3062 (($ $ $) NIL) (($ (-566) (-566)) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-566) $) NIL) (($ $ (-566)) NIL)))
+(((-217) (-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 10)) (-10 -8 (-15 -2539 ((-409 (-566)) $)) (-15 -3340 ($ (-409 (-566))))))) (T -217))
+((-2539 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-217)))) (-3340 (*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-217)))))
+(-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 10)) (-10 -8 (-15 -2539 ((-409 (-566)) $)) (-15 -3340 ($ (-409 (-566))))))
+((-3009 (((-112) $ $) NIL)) (-3049 (((-1117) $) 13)) (-2402 (((-1157) $) NIL)) (-2464 (((-485) $) 10)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 23) (($ (-1180)) NIL) (((-1180) $) NIL)) (-1398 (((-1134) $) 15)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-218) (-13 (-1082) (-10 -8 (-15 -2464 ((-485) $)) (-15 -3049 ((-1117) $)) (-15 -1398 ((-1134) $))))) (T -218))
+((-2464 (*1 *2 *1) (-12 (-5 *2 (-485)) (-5 *1 (-218)))) (-3049 (*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-218)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-218)))))
+(-13 (-1082) (-10 -8 (-15 -2464 ((-485) $)) (-15 -3049 ((-1117) $)) (-15 -1398 ((-1134) $))))
+((-3921 (((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|)) (-1157)) 29) (((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|))) 25)) (-2952 (((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1175) (-843 |#2|) (-843 |#2|) (-112)) 17)))
+(((-219 |#1| |#2|) (-10 -7 (-15 -3921 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|)))) (-15 -3921 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|)) (-1157))) (-15 -2952 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1175) (-843 |#2|) (-843 |#2|) (-112)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-959) (-29 |#1|))) (T -219))
+((-2952 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-1175)) (-5 *6 (-112)) (-4 *7 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-4 *3 (-13 (-1199) (-959) (-29 *7))) (-5 *2 (-3 (|:| |f1| (-843 *3)) (|:| |f2| (-644 (-843 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *7 *3)) (-5 *5 (-843 *3)))) (-3921 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1091 (-843 *3))) (-5 *5 (-1157)) (-4 *3 (-13 (-1199) (-959) (-29 *6))) (-4 *6 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 *3)) (|:| |f2| (-644 (-843 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *6 *3)))) (-3921 (*1 *2 *3 *4) (-12 (-5 *4 (-1091 (-843 *3))) (-4 *3 (-13 (-1199) (-959) (-29 *5))) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 *3)) (|:| |f2| (-644 (-843 *3))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-219 *5 *3)))))
+(-10 -7 (-15 -3921 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|)))) (-15 -3921 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1091 (-843 |#2|)) (-1157))) (-15 -2952 ((-3 (|:| |f1| (-843 |#2|)) (|:| |f2| (-644 (-843 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1175) (-843 |#2|) (-843 |#2|) (-112))))
+((-3921 (((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|)))) (-1157)) 49) (((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|))))) 46) (((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|))) (-1157)) 50) (((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|)))) 22)))
+(((-220 |#1|) (-10 -7 (-15 -3921 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|))))) (-15 -3921 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|))) (-1157))) (-15 -3921 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|)))))) (-15 -3921 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|)))) (-1157)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (T -220))
+((-3921 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1091 (-843 (-409 (-952 *6))))) (-5 *5 (-1157)) (-5 *3 (-409 (-952 *6))) (-4 *6 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 (-317 *6))) (|:| |f2| (-644 (-843 (-317 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *6)))) (-3921 (*1 *2 *3 *4) (-12 (-5 *4 (-1091 (-843 (-409 (-952 *5))))) (-5 *3 (-409 (-952 *5))) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 (-317 *5))) (|:| |f2| (-644 (-843 (-317 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *5)))) (-3921 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-409 (-952 *6))) (-5 *4 (-1091 (-843 (-317 *6)))) (-5 *5 (-1157)) (-4 *6 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 (-317 *6))) (|:| |f2| (-644 (-843 (-317 *6)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *6)))) (-3921 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1091 (-843 (-317 *5)))) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |f1| (-843 (-317 *5))) (|:| |f2| (-644 (-843 (-317 *5)))) (|:| |fail| "failed") (|:| |pole| "potentialPole"))) (-5 *1 (-220 *5)))))
+(-10 -7 (-15 -3921 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|))))) (-15 -3921 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-317 |#1|))) (-1157))) (-15 -3921 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|)))))) (-15 -3921 ((-3 (|:| |f1| (-843 (-317 |#1|))) (|:| |f2| (-644 (-843 (-317 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-409 (-952 |#1|)) (-1091 (-843 (-409 (-952 |#1|)))) (-1157))))
+((-1580 (((-2 (|:| -2576 (-1171 |#1|)) (|:| |deg| (-921))) (-1171 |#1|)) 26)) (-1351 (((-644 (-317 |#2|)) (-317 |#2|) (-921)) 54)))
+(((-221 |#1| |#2|) (-10 -7 (-15 -1580 ((-2 (|:| -2576 (-1171 |#1|)) (|:| |deg| (-921))) (-1171 |#1|))) (-15 -1351 ((-644 (-317 |#2|)) (-317 |#2|) (-921)))) (-1049) (-558)) (T -221))
+((-1351 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-4 *6 (-558)) (-5 *2 (-644 (-317 *6))) (-5 *1 (-221 *5 *6)) (-5 *3 (-317 *6)) (-4 *5 (-1049)))) (-1580 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-5 *2 (-2 (|:| -2576 (-1171 *4)) (|:| |deg| (-921)))) (-5 *1 (-221 *4 *5)) (-5 *3 (-1171 *4)) (-4 *5 (-558)))))
+(-10 -7 (-15 -1580 ((-2 (|:| -2576 (-1171 |#1|)) (|:| |deg| (-921))) (-1171 |#1|))) (-15 -1351 ((-644 (-317 |#2|)) (-317 |#2|) (-921))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4175 ((|#1| $) NIL)) (-3918 ((|#1| $) 30)) (-1574 (((-112) $ (-771)) NIL)) (-3877 (($) NIL T CONST)) (-2547 (($ $) NIL)) (-3416 (($ $) 39)) (-3082 ((|#1| |#1| $) NIL)) (-3827 ((|#1| $) NIL)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-3945 (((-771) $) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3765 ((|#1| $) NIL)) (-4044 ((|#1| |#1| $) 35)) (-4296 ((|#1| |#1| $) 37)) (-2903 (($ |#1| $) NIL)) (-3906 (((-771) $) 33)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1763 ((|#1| $) NIL)) (-1820 ((|#1| $) 31)) (-3641 ((|#1| $) 29)) (-3852 ((|#1| $) NIL)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3894 ((|#1| |#1| $) NIL)) (-3461 (((-112) $) 9)) (-1793 (($) NIL)) (-2069 ((|#1| $) NIL)) (-4353 (($) NIL) (($ (-644 |#1|)) 16)) (-1677 (((-771) $) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-2682 ((|#1| $) 13)) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) NIL)) (-1980 ((|#1| $) NIL)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-222 |#1|) (-13 (-255 |#1|) (-10 -8 (-15 -4353 ($ (-644 |#1|))))) (-1099)) (T -222))
+((-4353 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-222 *3)))))
+(-13 (-255 |#1|) (-10 -8 (-15 -4353 ($ (-644 |#1|)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3288 (($ (-317 |#1|)) 27)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-1323 (((-112) $) NIL)) (-3066 (((-3 (-317 |#1|) "failed") $) NIL)) (-1867 (((-317 |#1|) $) NIL)) (-3645 (($ $) 35)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-3152 (($ (-1 (-317 |#1|) (-317 |#1|)) $) NIL)) (-3626 (((-317 |#1|) $) NIL)) (-3135 (($ $) 34)) (-2402 (((-1157) $) NIL)) (-4235 (((-112) $) NIL)) (-4056 (((-1119) $) NIL)) (-4152 (($ (-771)) NIL)) (-1551 (($ $) 36)) (-2108 (((-566) $) NIL)) (-3780 (((-862) $) 68) (($ (-566)) NIL) (($ (-317 |#1|)) NIL)) (-3756 (((-317 |#1|) $ $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 29 T CONST)) (-4333 (($) NIL T CONST)) (-2950 (((-112) $ $) 32)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 23)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 28) (($ (-317 |#1|) $) 22)))
+(((-223 |#1| |#2|) (-13 (-620 (-317 |#1|)) (-1038 (-317 |#1|)) (-10 -8 (-15 -3626 ((-317 |#1|) $)) (-15 -3135 ($ $)) (-15 -3645 ($ $)) (-15 -3756 ((-317 |#1|) $ $)) (-15 -4152 ($ (-771))) (-15 -4235 ((-112) $)) (-15 -1323 ((-112) $)) (-15 -2108 ((-566) $)) (-15 -3152 ($ (-1 (-317 |#1|) (-317 |#1|)) $)) (-15 -3288 ($ (-317 |#1|))) (-15 -1551 ($ $)))) (-13 (-1049) (-850)) (-644 (-1175))) (T -223))
+((-3626 (*1 *2 *1) (-12 (-5 *2 (-317 *3)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-3135 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1049) (-850))) (-14 *3 (-644 (-1175))))) (-3645 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1049) (-850))) (-14 *3 (-644 (-1175))))) (-3756 (*1 *2 *1 *1) (-12 (-5 *2 (-317 *3)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-4152 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-4235 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-1323 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-2108 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175))))) (-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-317 *3) (-317 *3))) (-4 *3 (-13 (-1049) (-850))) (-5 *1 (-223 *3 *4)) (-14 *4 (-644 (-1175))))) (-3288 (*1 *1 *2) (-12 (-5 *2 (-317 *3)) (-4 *3 (-13 (-1049) (-850))) (-5 *1 (-223 *3 *4)) (-14 *4 (-644 (-1175))))) (-1551 (*1 *1 *1) (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1049) (-850))) (-14 *3 (-644 (-1175))))))
+(-13 (-620 (-317 |#1|)) (-1038 (-317 |#1|)) (-10 -8 (-15 -3626 ((-317 |#1|) $)) (-15 -3135 ($ $)) (-15 -3645 ($ $)) (-15 -3756 ((-317 |#1|) $ $)) (-15 -4152 ($ (-771))) (-15 -4235 ((-112) $)) (-15 -1323 ((-112) $)) (-15 -2108 ((-566) $)) (-15 -3152 ($ (-1 (-317 |#1|) (-317 |#1|)) $)) (-15 -3288 ($ (-317 |#1|))) (-15 -1551 ($ $))))
+((-3686 (((-112) (-1157)) 26)) (-2255 (((-3 (-843 |#2|) "failed") (-612 |#2|) |#2| (-843 |#2|) (-843 |#2|) (-112)) 35)) (-3228 (((-3 (-112) "failed") (-1171 |#2|) (-843 |#2|) (-843 |#2|) (-112)) 84) (((-3 (-112) "failed") (-952 |#1|) (-1175) (-843 |#2|) (-843 |#2|) (-112)) 85)))
+(((-224 |#1| |#2|) (-10 -7 (-15 -3686 ((-112) (-1157))) (-15 -2255 ((-3 (-843 |#2|) "failed") (-612 |#2|) |#2| (-843 |#2|) (-843 |#2|) (-112))) (-15 -3228 ((-3 (-112) "failed") (-952 |#1|) (-1175) (-843 |#2|) (-843 |#2|) (-112))) (-15 -3228 ((-3 (-112) "failed") (-1171 |#2|) (-843 |#2|) (-843 |#2|) (-112)))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-29 |#1|))) (T -224))
+((-3228 (*1 *2 *3 *4 *4 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1171 *6)) (-5 *4 (-843 *6)) (-4 *6 (-13 (-1199) (-29 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-224 *5 *6)))) (-3228 (*1 *2 *3 *4 *5 *5 *2) (|partial| -12 (-5 *2 (-112)) (-5 *3 (-952 *6)) (-5 *4 (-1175)) (-5 *5 (-843 *7)) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-4 *7 (-13 (-1199) (-29 *6))) (-5 *1 (-224 *6 *7)))) (-2255 (*1 *2 *3 *4 *2 *2 *5) (|partial| -12 (-5 *2 (-843 *4)) (-5 *3 (-612 *4)) (-5 *5 (-112)) (-4 *4 (-13 (-1199) (-29 *6))) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-224 *6 *4)))) (-3686 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-112)) (-5 *1 (-224 *4 *5)) (-4 *5 (-13 (-1199) (-29 *4))))))
+(-10 -7 (-15 -3686 ((-112) (-1157))) (-15 -2255 ((-3 (-843 |#2|) "failed") (-612 |#2|) |#2| (-843 |#2|) (-843 |#2|) (-112))) (-15 -3228 ((-3 (-112) "failed") (-952 |#1|) (-1175) (-843 |#2|) (-843 |#2|) (-112))) (-15 -3228 ((-3 (-112) "failed") (-1171 |#2|) (-843 |#2|) (-843 |#2|) (-112))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 100)) (-2486 (((-566) $) 36)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-2922 (($ $) NIL)) (-2865 (($ $) 89)) (-3939 (($ $) 77)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2484 (($ $) 68)) (-2738 (((-112) $ $) NIL)) (-2843 (($ $) 87)) (-3915 (($ $) 75)) (-2899 (((-566) $) 130)) (-2888 (($ $) 92)) (-3964 (($ $) 79)) (-3877 (($) NIL T CONST)) (-1591 (($ $) NIL)) (-3066 (((-3 (-566) "failed") $) 129) (((-3 (-409 (-566)) "failed") $) 126)) (-1867 (((-566) $) 127) (((-409 (-566)) $) 124)) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) 105)) (-2426 (((-409 (-566)) $ (-771)) 119) (((-409 (-566)) $ (-771) (-771)) 118)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1769 (((-921)) 29) (((-921) (-921)) NIL (|has| $ (-6 -4405)))) (-1533 (((-112) $) NIL)) (-3120 (($) 47)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL)) (-3227 (((-566) $) 43)) (-3466 (((-112) $) 101)) (-1986 (($ $ (-566)) NIL)) (-2719 (($ $) NIL)) (-2917 (((-112) $) 99)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) 65) (($) 39 (-12 (-2436 (|has| $ (-6 -4397))) (-2436 (|has| $ (-6 -4405)))))) (-2709 (($ $ $) 64) (($) 38 (-12 (-2436 (|has| $ (-6 -4397))) (-2436 (|has| $ (-6 -4405)))))) (-1791 (((-566) $) 27)) (-4323 (($ $) 34)) (-2361 (($ $) 69)) (-3671 (($ $) 74)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-1924 (((-921) (-566)) NIL (|has| $ (-6 -4405)))) (-4056 (((-1119) $) 103)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL)) (-2209 (($ $) NIL)) (-2987 (($ (-566) (-566)) NIL) (($ (-566) (-566) (-921)) 112)) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2456 (((-566) $) 28)) (-4347 (($) 46)) (-4337 (($ $) 73)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-4085 (((-921)) NIL) (((-921) (-921)) NIL (|has| $ (-6 -4405)))) (-2578 (($ $ (-771)) NIL) (($ $) 106)) (-2813 (((-921) (-566)) NIL (|has| $ (-6 -4405)))) (-2897 (($ $) 90)) (-3974 (($ $) 80)) (-2877 (($ $) 91)) (-3951 (($ $) 78)) (-2853 (($ $) 88)) (-3927 (($ $) 76)) (-3204 (((-381) $) 115) (((-225) $) 14) (((-892 (-381)) $) NIL) (((-538) $) 53)) (-3780 (((-862) $) 50) (($ (-566)) 72) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-566)) 72) (($ (-409 (-566))) NIL)) (-3996 (((-771)) NIL T CONST)) (-1982 (($ $) NIL)) (-1586 (((-921)) 37) (((-921) (-921)) NIL (|has| $ (-6 -4405)))) (-3801 (((-112) $ $) NIL)) (-3819 (((-921)) 25)) (-2931 (($ $) 95)) (-4009 (($ $) 83) (($ $ $) 122)) (-2278 (((-112) $ $) NIL)) (-2907 (($ $) 93)) (-3986 (($ $) 81)) (-2954 (($ $) 98)) (-4033 (($ $) 86)) (-3181 (($ $) 96)) (-2834 (($ $) 84)) (-2943 (($ $) 97)) (-4021 (($ $) 85)) (-2920 (($ $) 94)) (-3997 (($ $) 82)) (-3333 (($ $) 121)) (-2493 (($) 23 T CONST)) (-4333 (($) 44 T CONST)) (-2852 (((-1157) $) 18) (((-1157) $ (-112)) 20) (((-1269) (-822) $) 21) (((-1269) (-822) $ (-112)) 22)) (-1650 (($ $) 109)) (-2876 (($ $ (-771)) NIL) (($ $) NIL)) (-3162 (($ $ $) 111)) (-3010 (((-112) $ $) 58)) (-2984 (((-112) $ $) 55)) (-2950 (((-112) $ $) 66)) (-2999 (((-112) $ $) 57)) (-2972 (((-112) $ $) 54)) (-3062 (($ $ $) 45) (($ $ (-566)) 67)) (-3051 (($ $) 59) (($ $ $) 61)) (-3040 (($ $ $) 60)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 70) (($ $ (-409 (-566))) 154) (($ $ $) 71)) (* (($ (-921) $) 35) (($ (-771) $) NIL) (($ (-566) $) 63) (($ $ $) 62) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
+(((-225) (-13 (-406) (-233) (-828) (-1199) (-614 (-538)) (-10 -8 (-15 -3062 ($ $ (-566))) (-15 ** ($ $ $)) (-15 -4347 ($)) (-15 -4323 ($ $)) (-15 -2361 ($ $)) (-15 -4009 ($ $ $)) (-15 -1650 ($ $)) (-15 -3162 ($ $ $)) (-15 -2426 ((-409 (-566)) $ (-771))) (-15 -2426 ((-409 (-566)) $ (-771) (-771)))))) (T -225))
+((** (*1 *1 *1 *1) (-5 *1 (-225))) (-3062 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-225)))) (-4347 (*1 *1) (-5 *1 (-225))) (-4323 (*1 *1 *1) (-5 *1 (-225))) (-2361 (*1 *1 *1) (-5 *1 (-225))) (-4009 (*1 *1 *1 *1) (-5 *1 (-225))) (-1650 (*1 *1 *1) (-5 *1 (-225))) (-3162 (*1 *1 *1 *1) (-5 *1 (-225))) (-2426 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-225)))) (-2426 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-225)))))
+(-13 (-406) (-233) (-828) (-1199) (-614 (-538)) (-10 -8 (-15 -3062 ($ $ (-566))) (-15 ** ($ $ $)) (-15 -4347 ($)) (-15 -4323 ($ $)) (-15 -2361 ($ $)) (-15 -4009 ($ $ $)) (-15 -1650 ($ $)) (-15 -3162 ($ $ $)) (-15 -2426 ((-409 (-566)) $ (-771))) (-15 -2426 ((-409 (-566)) $ (-771) (-771)))))
+((-2306 (((-169 (-225)) (-771) (-169 (-225))) 11) (((-225) (-771) (-225)) 12)) (-1559 (((-169 (-225)) (-169 (-225))) 13) (((-225) (-225)) 14)) (-3235 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 19) (((-225) (-225) (-225)) 22)) (-4047 (((-169 (-225)) (-169 (-225))) 27) (((-225) (-225)) 26)) (-4018 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 57) (((-225) (-225) (-225)) 49)) (-2528 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 62) (((-225) (-225) (-225)) 60)) (-3768 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 15) (((-225) (-225) (-225)) 16)) (-3078 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 17) (((-225) (-225) (-225)) 18)) (-2038 (((-169 (-225)) (-169 (-225))) 74) (((-225) (-225)) 73)) (-2467 (((-225) (-225)) 68) (((-169 (-225)) (-169 (-225))) 72)) (-1650 (((-169 (-225)) (-169 (-225))) 8) (((-225) (-225)) 9)) (-3162 (((-169 (-225)) (-169 (-225)) (-169 (-225))) 35) (((-225) (-225) (-225)) 31)))
+(((-226) (-10 -7 (-15 -1650 ((-225) (-225))) (-15 -1650 ((-169 (-225)) (-169 (-225)))) (-15 -3162 ((-225) (-225) (-225))) (-15 -3162 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -1559 ((-225) (-225))) (-15 -1559 ((-169 (-225)) (-169 (-225)))) (-15 -4047 ((-225) (-225))) (-15 -4047 ((-169 (-225)) (-169 (-225)))) (-15 -2306 ((-225) (-771) (-225))) (-15 -2306 ((-169 (-225)) (-771) (-169 (-225)))) (-15 -3768 ((-225) (-225) (-225))) (-15 -3768 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -4018 ((-225) (-225) (-225))) (-15 -4018 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -3078 ((-225) (-225) (-225))) (-15 -3078 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2528 ((-225) (-225) (-225))) (-15 -2528 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2467 ((-169 (-225)) (-169 (-225)))) (-15 -2467 ((-225) (-225))) (-15 -2038 ((-225) (-225))) (-15 -2038 ((-169 (-225)) (-169 (-225)))) (-15 -3235 ((-225) (-225) (-225))) (-15 -3235 ((-169 (-225)) (-169 (-225)) (-169 (-225)))))) (T -226))
+((-3235 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3235 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2038 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2038 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2467 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2467 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2528 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-2528 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3078 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3078 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-4018 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-4018 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3768 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3768 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-2306 (*1 *2 *3 *2) (-12 (-5 *2 (-169 (-225))) (-5 *3 (-771)) (-5 *1 (-226)))) (-2306 (*1 *2 *3 *2) (-12 (-5 *2 (-225)) (-5 *3 (-771)) (-5 *1 (-226)))) (-4047 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-4047 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1559 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1559 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-3162 (*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-3162 (*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))) (-1650 (*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))) (-1650 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226)))))
+(-10 -7 (-15 -1650 ((-225) (-225))) (-15 -1650 ((-169 (-225)) (-169 (-225)))) (-15 -3162 ((-225) (-225) (-225))) (-15 -3162 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -1559 ((-225) (-225))) (-15 -1559 ((-169 (-225)) (-169 (-225)))) (-15 -4047 ((-225) (-225))) (-15 -4047 ((-169 (-225)) (-169 (-225)))) (-15 -2306 ((-225) (-771) (-225))) (-15 -2306 ((-169 (-225)) (-771) (-169 (-225)))) (-15 -3768 ((-225) (-225) (-225))) (-15 -3768 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -4018 ((-225) (-225) (-225))) (-15 -4018 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -3078 ((-225) (-225) (-225))) (-15 -3078 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2528 ((-225) (-225) (-225))) (-15 -2528 ((-169 (-225)) (-169 (-225)) (-169 (-225)))) (-15 -2467 ((-169 (-225)) (-169 (-225)))) (-15 -2467 ((-225) (-225))) (-15 -2038 ((-225) (-225))) (-15 -2038 ((-169 (-225)) (-169 (-225)))) (-15 -3235 ((-225) (-225) (-225))) (-15 -3235 ((-169 (-225)) (-169 (-225)) (-169 (-225)))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2181 (($ (-771) (-771)) NIL)) (-3810 (($ $ $) NIL)) (-4078 (($ (-1264 |#1|)) NIL) (($ $) NIL)) (-2939 (($ |#1| |#1| |#1|) 33)) (-3194 (((-112) $) NIL)) (-2948 (($ $ (-566) (-566)) NIL)) (-1605 (($ $ (-566) (-566)) NIL)) (-1739 (($ $ (-566) (-566) (-566) (-566)) NIL)) (-1300 (($ $) NIL)) (-1597 (((-112) $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-2236 (($ $ (-566) (-566) $) NIL)) (-3916 ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566)) $) NIL)) (-2890 (($ $ (-566) (-1264 |#1|)) NIL)) (-4293 (($ $ (-566) (-1264 |#1|)) NIL)) (-2239 (($ |#1| |#1| |#1|) 32)) (-2453 (($ (-771) |#1|) NIL)) (-3877 (($) NIL T CONST)) (-1495 (($ $) NIL (|has| |#1| (-308)))) (-4104 (((-1264 |#1|) $ (-566)) NIL)) (-4022 (($ |#1|) 31)) (-2390 (($ |#1|) 30)) (-4031 (($ |#1|) 29)) (-4157 (((-771) $) NIL (|has| |#1| (-558)))) (-3128 ((|#1| $ (-566) (-566) |#1|) NIL)) (-3059 ((|#1| $ (-566) (-566)) NIL)) (-3799 (((-644 |#1|) $) NIL)) (-2736 (((-771) $) NIL (|has| |#1| (-558)))) (-3586 (((-644 (-1264 |#1|)) $) NIL (|has| |#1| (-558)))) (-4301 (((-771) $) NIL)) (-4278 (($ (-771) (-771) |#1|) NIL)) (-4313 (((-771) $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-1647 ((|#1| $) NIL (|has| |#1| (-6 (-4416 "*"))))) (-2615 (((-566) $) NIL)) (-1966 (((-566) $) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1653 (((-566) $) NIL)) (-3807 (((-566) $) NIL)) (-1883 (($ (-644 (-644 |#1|))) 11)) (-3117 (($ (-1 |#1| |#1|) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2947 (((-644 (-644 |#1|)) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2344 (((-3 $ "failed") $) NIL (|has| |#1| (-365)))) (-2839 (($) 12)) (-3319 (($ $ $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3750 (($ $ |#1|) NIL)) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-566) (-566)) NIL) ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566))) NIL)) (-1664 (($ (-644 |#1|)) NIL) (($ (-644 $)) NIL)) (-3478 (((-112) $) NIL)) (-1896 ((|#1| $) NIL (|has| |#1| (-6 (-4416 "*"))))) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-1621 (((-1264 |#1|) $ (-566)) NIL)) (-3780 (($ (-1264 |#1|)) NIL) (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3359 (((-112) $) NIL)) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $ $) NIL) (($ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-566) $) NIL) (((-1264 |#1|) $ (-1264 |#1|)) 15) (((-1264 |#1|) (-1264 |#1|) $) NIL) (((-943 |#1|) $ (-943 |#1|)) 21)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-227 |#1|) (-13 (-687 |#1| (-1264 |#1|) (-1264 |#1|)) (-10 -8 (-15 * ((-943 |#1|) $ (-943 |#1|))) (-15 -2839 ($)) (-15 -4031 ($ |#1|)) (-15 -2390 ($ |#1|)) (-15 -4022 ($ |#1|)) (-15 -2239 ($ |#1| |#1| |#1|)) (-15 -2939 ($ |#1| |#1| |#1|)))) (-13 (-365) (-1199))) (T -227))
+((* (*1 *2 *1 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199))) (-5 *1 (-227 *3)))) (-2839 (*1 *1) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))) (-4031 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))) (-2390 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))) (-4022 (*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))) (-2239 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))) (-2939 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))))
+(-13 (-687 |#1| (-1264 |#1|) (-1264 |#1|)) (-10 -8 (-15 * ((-943 |#1|) $ (-943 |#1|))) (-15 -2839 ($)) (-15 -4031 ($ |#1|)) (-15 -2390 ($ |#1|)) (-15 -4022 ($ |#1|)) (-15 -2239 ($ |#1| |#1| |#1|)) (-15 -2939 ($ |#1| |#1| |#1|))))
+((-2556 (($ (-1 (-112) |#2|) $) 16)) (-1450 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 27)) (-3551 (($) NIL) (($ (-644 |#2|)) 11)) (-2950 (((-112) $ $) 25)))
+(((-228 |#1| |#2|) (-10 -8 (-15 -2556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1450 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1450 (|#1| |#2| |#1|)) (-15 -3551 (|#1| (-644 |#2|))) (-15 -3551 (|#1|)) (-15 -2950 ((-112) |#1| |#1|))) (-229 |#2|) (-1099)) (T -228))
+NIL
+(-10 -8 (-15 -2556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1450 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1450 (|#1| |#2| |#1|)) (-15 -3551 (|#1| (-644 |#2|))) (-15 -3551 (|#1|)) (-15 -2950 ((-112) |#1| |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) 8)) (-2556 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-4133 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1450 (($ |#1| $) 48 (|has| $ (-6 -4414))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4414)))) (-2661 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4414)))) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3765 ((|#1| $) 40)) (-2903 (($ |#1| $) 41)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-3551 (($) 50) (($ (-644 |#1|)) 49)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 51)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) 43)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-229 |#1|) (-140) (-1099)) (T -229))
NIL
(-13 (-235 |t#1|))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-235 |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-2862 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) 14) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) 22) (($ $ (-771)) NIL) (($ $) 19)) (-2840 (($ $ (-1 |#2| |#2|)) 15) (($ $ (-1 |#2| |#2|) (-771)) 17) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)))
-(((-230 |#1| |#2|) (-10 -8 (-15 -2862 (|#1| |#1|)) (-15 -2840 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2840 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2840 (|#1| |#1| (-1175))) (-15 -2840 (|#1| |#1| (-644 (-1175)))) (-15 -2840 (|#1| |#1| (-1175) (-771))) (-15 -2840 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2840 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2840 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|)))) (-231 |#2|) (-1049)) (T -230))
+((-2578 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) 14) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) 22) (($ $ (-771)) NIL) (($ $) 19)) (-2876 (($ $ (-1 |#2| |#2|)) 15) (($ $ (-1 |#2| |#2|) (-771)) 17) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)))
+(((-230 |#1| |#2|) (-10 -8 (-15 -2578 (|#1| |#1|)) (-15 -2876 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -2876 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2876 (|#1| |#1| (-1175))) (-15 -2876 (|#1| |#1| (-644 (-1175)))) (-15 -2876 (|#1| |#1| (-1175) (-771))) (-15 -2876 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2876 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2876 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|)))) (-231 |#2|) (-1049)) (T -230))
NIL
-(-10 -8 (-15 -2862 (|#1| |#1|)) (-15 -2840 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2840 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2840 (|#1| |#1| (-1175))) (-15 -2840 (|#1| |#1| (-644 (-1175)))) (-15 -2840 (|#1| |#1| (-1175) (-771))) (-15 -2840 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2840 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2840 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2862 (($ $ (-1 |#1| |#1|)) 56) (($ $ (-1 |#1| |#1|) (-771)) 55) (($ $ (-644 (-1175)) (-644 (-771))) 48 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 47 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 46 (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) 45 (|has| |#1| (-900 (-1175)))) (($ $ (-771)) 43 (|has| |#1| (-233))) (($ $) 41 (|has| |#1| (-233)))) (-2512 (((-862) $) 12) (($ (-566)) 33)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-1 |#1| |#1|)) 54) (($ $ (-1 |#1| |#1|) (-771)) 53) (($ $ (-644 (-1175)) (-644 (-771))) 52 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 51 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 50 (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) 49 (|has| |#1| (-900 (-1175)))) (($ $ (-771)) 44 (|has| |#1| (-233))) (($ $) 42 (|has| |#1| (-233)))) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+(-10 -8 (-15 -2578 (|#1| |#1|)) (-15 -2876 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -2876 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2876 (|#1| |#1| (-1175))) (-15 -2876 (|#1| |#1| (-644 (-1175)))) (-15 -2876 (|#1| |#1| (-1175) (-771))) (-15 -2876 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2876 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2876 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2578 (($ $ (-1 |#1| |#1|)) 56) (($ $ (-1 |#1| |#1|) (-771)) 55) (($ $ (-644 (-1175)) (-644 (-771))) 48 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 47 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 46 (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) 45 (|has| |#1| (-900 (-1175)))) (($ $ (-771)) 43 (|has| |#1| (-233))) (($ $) 41 (|has| |#1| (-233)))) (-3780 (((-862) $) 12) (($ (-566)) 33)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-1 |#1| |#1|)) 54) (($ $ (-1 |#1| |#1|) (-771)) 53) (($ $ (-644 (-1175)) (-644 (-771))) 52 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 51 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 50 (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) 49 (|has| |#1| (-900 (-1175)))) (($ $ (-771)) 44 (|has| |#1| (-233))) (($ $) 42 (|has| |#1| (-233)))) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-231 |#1|) (-140) (-1049)) (T -231))
-((-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-231 *3)) (-4 *3 (-1049)))) (-2862 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-771)) (-4 *1 (-231 *4)) (-4 *4 (-1049)))) (-2840 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-231 *3)) (-4 *3 (-1049)))) (-2840 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-771)) (-4 *1 (-231 *4)) (-4 *4 (-1049)))))
-(-13 (-1049) (-10 -8 (-15 -2862 ($ $ (-1 |t#1| |t#1|))) (-15 -2862 ($ $ (-1 |t#1| |t#1|) (-771))) (-15 -2840 ($ $ (-1 |t#1| |t#1|))) (-15 -2840 ($ $ (-1 |t#1| |t#1|) (-771))) (IF (|has| |t#1| (-233)) (-6 (-233)) |%noBranch|) (IF (|has| |t#1| (-900 (-1175))) (-6 (-900 (-1175))) |%noBranch|)))
+((-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-231 *3)) (-4 *3 (-1049)))) (-2578 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-771)) (-4 *1 (-231 *4)) (-4 *4 (-1049)))) (-2876 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-231 *3)) (-4 *3 (-1049)))) (-2876 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-771)) (-4 *1 (-231 *4)) (-4 *4 (-1049)))))
+(-13 (-1049) (-10 -8 (-15 -2578 ($ $ (-1 |t#1| |t#1|))) (-15 -2578 ($ $ (-1 |t#1| |t#1|) (-771))) (-15 -2876 ($ $ (-1 |t#1| |t#1|))) (-15 -2876 ($ $ (-1 |t#1| |t#1|) (-771))) (IF (|has| |t#1| (-233)) (-6 (-233)) |%noBranch|) (IF (|has| |t#1| (-900 (-1175))) (-6 (-900 (-1175))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-233) |has| |#1| (-233)) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-726) . T) ((-900 (-1175)) |has| |#1| (-900 (-1175))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2862 (($ $) NIL) (($ $ (-771)) 13)) (-2840 (($ $) 8) (($ $ (-771)) 15)))
-(((-232 |#1|) (-10 -8 (-15 -2840 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-771))) (-15 -2840 (|#1| |#1|)) (-15 -2862 (|#1| |#1|))) (-233)) (T -232))
+((-2578 (($ $) NIL) (($ $ (-771)) 13)) (-2876 (($ $) 8) (($ $ (-771)) 15)))
+(((-232 |#1|) (-10 -8 (-15 -2876 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-771))) (-15 -2876 (|#1| |#1|)) (-15 -2578 (|#1| |#1|))) (-233)) (T -232))
NIL
-(-10 -8 (-15 -2840 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-771))) (-15 -2840 (|#1| |#1|)) (-15 -2862 (|#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2862 (($ $) 42) (($ $ (-771)) 40)) (-2512 (((-862) $) 12) (($ (-566)) 33)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $) 41) (($ $ (-771)) 39)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+(-10 -8 (-15 -2876 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-771))) (-15 -2876 (|#1| |#1|)) (-15 -2578 (|#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2578 (($ $) 42) (($ $ (-771)) 40)) (-3780 (((-862) $) 12) (($ (-566)) 33)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $) 41) (($ $ (-771)) 39)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-233) (-140)) (T -233))
-((-2862 (*1 *1 *1) (-4 *1 (-233))) (-2840 (*1 *1 *1) (-4 *1 (-233))) (-2862 (*1 *1 *1 *2) (-12 (-4 *1 (-233)) (-5 *2 (-771)))) (-2840 (*1 *1 *1 *2) (-12 (-4 *1 (-233)) (-5 *2 (-771)))))
-(-13 (-1049) (-10 -8 (-15 -2862 ($ $)) (-15 -2840 ($ $)) (-15 -2862 ($ $ (-771))) (-15 -2840 ($ $ (-771)))))
+((-2578 (*1 *1 *1) (-4 *1 (-233))) (-2876 (*1 *1 *1) (-4 *1 (-233))) (-2578 (*1 *1 *1 *2) (-12 (-4 *1 (-233)) (-5 *2 (-771)))) (-2876 (*1 *1 *1 *2) (-12 (-4 *1 (-233)) (-5 *2 (-771)))))
+(-13 (-1049) (-10 -8 (-15 -2578 ($ $)) (-15 -2876 ($ $)) (-15 -2578 ($ $ (-771))) (-15 -2876 ($ $ (-771)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-726) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-3879 (($) 12) (($ (-644 |#2|)) NIL)) (-3895 (($ $) 14)) (-2523 (($ (-644 |#2|)) 10)) (-2512 (((-862) $) 21)))
-(((-234 |#1| |#2|) (-10 -8 (-15 -2512 ((-862) |#1|)) (-15 -3879 (|#1| (-644 |#2|))) (-15 -3879 (|#1|)) (-15 -2523 (|#1| (-644 |#2|))) (-15 -3895 (|#1| |#1|))) (-235 |#2|) (-1099)) (T -234))
+((-3551 (($) 12) (($ (-644 |#2|)) NIL)) (-3940 (($ $) 14)) (-3791 (($ (-644 |#2|)) 10)) (-3780 (((-862) $) 21)))
+(((-234 |#1| |#2|) (-10 -8 (-15 -3780 ((-862) |#1|)) (-15 -3551 (|#1| (-644 |#2|))) (-15 -3551 (|#1|)) (-15 -3791 (|#1| (-644 |#2|))) (-15 -3940 (|#1| |#1|))) (-235 |#2|) (-1099)) (T -234))
NIL
-(-10 -8 (-15 -2512 ((-862) |#1|)) (-15 -3879 (|#1| (-644 |#2|))) (-15 -3879 (|#1|)) (-15 -2523 (|#1| (-644 |#2|))) (-15 -3895 (|#1| |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) 8)) (-3586 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-4093 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3066 (($ |#1| $) 48 (|has| $ (-6 -4417))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4417)))) (-2651 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4417)))) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3119 ((|#1| $) 40)) (-4265 (($ |#1| $) 41)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-3879 (($) 50) (($ (-644 |#1|)) 49)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 51)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) 43)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+(-10 -8 (-15 -3780 ((-862) |#1|)) (-15 -3551 (|#1| (-644 |#2|))) (-15 -3551 (|#1|)) (-15 -3791 (|#1| (-644 |#2|))) (-15 -3940 (|#1| |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) 8)) (-2556 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-4133 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1450 (($ |#1| $) 48 (|has| $ (-6 -4414))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4414)))) (-2661 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4414)))) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3765 ((|#1| $) 40)) (-2903 (($ |#1| $) 41)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-3551 (($) 50) (($ (-644 |#1|)) 49)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 51)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) 43)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-235 |#1|) (-140) (-1099)) (T -235))
-((-3879 (*1 *1) (-12 (-4 *1 (-235 *2)) (-4 *2 (-1099)))) (-3879 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-235 *3)))) (-3066 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4417)) (-4 *1 (-235 *2)) (-4 *2 (-1099)))) (-3066 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4417)) (-4 *1 (-235 *3)) (-4 *3 (-1099)))) (-3586 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4417)) (-4 *1 (-235 *3)) (-4 *3 (-1099)))))
-(-13 (-107 |t#1|) (-151 |t#1|) (-10 -8 (-15 -3879 ($)) (-15 -3879 ($ (-644 |t#1|))) (IF (|has| $ (-6 -4417)) (PROGN (-15 -3066 ($ |t#1| $)) (-15 -3066 ($ (-1 (-112) |t#1|) $)) (-15 -3586 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
+((-3551 (*1 *1) (-12 (-4 *1 (-235 *2)) (-4 *2 (-1099)))) (-3551 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-235 *3)))) (-1450 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4414)) (-4 *1 (-235 *2)) (-4 *2 (-1099)))) (-1450 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4414)) (-4 *1 (-235 *3)) (-4 *3 (-1099)))) (-2556 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4414)) (-4 *1 (-235 *3)) (-4 *3 (-1099)))))
+(-13 (-107 |t#1|) (-151 |t#1|) (-10 -8 (-15 -3551 ($)) (-15 -3551 ($ (-644 |t#1|))) (IF (|has| $ (-6 -4414)) (PROGN (-15 -1450 ($ |t#1| $)) (-15 -1450 ($ (-1 (-112) |t#1|) $)) (-15 -2556 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-3353 (((-2 (|:| |varOrder| (-644 (-1175))) (|:| |inhom| (-3 (-644 (-1264 (-771))) "failed")) (|:| |hom| (-644 (-1264 (-771))))) (-295 (-952 (-566)))) 42)))
-(((-236) (-10 -7 (-15 -3353 ((-2 (|:| |varOrder| (-644 (-1175))) (|:| |inhom| (-3 (-644 (-1264 (-771))) "failed")) (|:| |hom| (-644 (-1264 (-771))))) (-295 (-952 (-566))))))) (T -236))
-((-3353 (*1 *2 *3) (-12 (-5 *3 (-295 (-952 (-566)))) (-5 *2 (-2 (|:| |varOrder| (-644 (-1175))) (|:| |inhom| (-3 (-644 (-1264 (-771))) "failed")) (|:| |hom| (-644 (-1264 (-771)))))) (-5 *1 (-236)))))
-(-10 -7 (-15 -3353 ((-2 (|:| |varOrder| (-644 (-1175))) (|:| |inhom| (-3 (-644 (-1264 (-771))) "failed")) (|:| |hom| (-644 (-1264 (-771))))) (-295 (-952 (-566))))))
-((-4025 (((-771)) 56)) (-1628 (((-2 (|:| -1380 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 $) (-1264 $)) 53) (((-689 |#3|) (-689 $)) 44) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-1909 (((-134)) 62)) (-2862 (($ $ (-1 |#3| |#3|) (-771)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)) (-2512 (((-1264 |#3|) $) NIL) (($ |#3|) NIL) (((-862) $) NIL) (($ (-566)) 12) (($ (-409 (-566))) NIL)) (-3795 (((-771)) 15)) (-3061 (($ $ |#3|) 59)))
-(((-237 |#1| |#2| |#3|) (-10 -8 (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)) (-15 -3795 ((-771))) (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2512 (|#1| |#3|)) (-15 -2862 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2862 (|#1| |#1| (-1 |#3| |#3|) (-771))) (-15 -1628 ((-689 |#3|) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 |#1|) (-1264 |#1|))) (-15 -4025 ((-771))) (-15 -3061 (|#1| |#1| |#3|)) (-15 -1909 ((-134))) (-15 -2512 ((-1264 |#3|) |#1|))) (-238 |#2| |#3|) (-771) (-1214)) (T -237))
-((-1909 (*1 *2) (-12 (-14 *4 (-771)) (-4 *5 (-1214)) (-5 *2 (-134)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))) (-4025 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1214)) (-5 *2 (-771)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))) (-3795 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1214)) (-5 *2 (-771)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))))
-(-10 -8 (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)) (-15 -3795 ((-771))) (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2512 (|#1| |#3|)) (-15 -2862 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2862 (|#1| |#1| (-1 |#3| |#3|) (-771))) (-15 -1628 ((-689 |#3|) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 |#1|) (-1264 |#1|))) (-15 -4025 ((-771))) (-15 -3061 (|#1| |#1| |#3|)) (-15 -1909 ((-134))) (-15 -2512 ((-1264 |#3|) |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#2| (-1099)))) (-3958 (((-112) $) 73 (|has| |#2| (-131)))) (-3639 (($ (-921)) 126 (|has| |#2| (-1049)))) (-1537 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4418)))) (-3711 (($ $ $) 122 (|has| |#2| (-793)))) (-4126 (((-3 $ "failed") $ $) 75 (|has| |#2| (-131)))) (-3081 (((-112) $ (-771)) 8)) (-4025 (((-771)) 108 (|has| |#2| (-370)))) (-2807 (((-566) $) 120 (|has| |#2| (-848)))) (-3874 ((|#2| $ (-566) |#2|) 53 (|has| $ (-6 -4418)))) (-2342 (($) 7 T CONST)) (-2977 (((-3 (-566) "failed") $) 68 (-2438 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-3 (-409 (-566)) "failed") $) 65 (-2438 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (((-3 |#2| "failed") $) 62 (|has| |#2| (-1099)))) (-1756 (((-566) $) 67 (-2438 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-409 (-566)) $) 64 (-2438 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) ((|#2| $) 63 (|has| |#2| (-1099)))) (-1628 (((-689 (-566)) (-689 $)) 107 (-2438 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 106 (-2438 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 105 (|has| |#2| (-1049))) (((-689 |#2|) (-689 $)) 104 (|has| |#2| (-1049)))) (-1579 (((-3 $ "failed") $) 80 (|has| |#2| (-726)))) (-3335 (($) 111 (|has| |#2| (-370)))) (-1332 ((|#2| $ (-566) |#2|) 54 (|has| $ (-6 -4418)))) (-3137 ((|#2| $ (-566)) 52)) (-1684 (((-112) $) 118 (|has| |#2| (-848)))) (-3372 (((-644 |#2|) $) 31 (|has| $ (-6 -4417)))) (-2741 (((-112) $) 82 (|has| |#2| (-726)))) (-1578 (((-112) $) 119 (|has| |#2| (-848)))) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 44 (|has| (-566) (-850)))) (-1439 (($ $ $) 117 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-2404 (((-644 |#2|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 45 (|has| (-566) (-850)))) (-3059 (($ $ $) 116 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-1323 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#2| |#2|) $) 36)) (-3712 (((-921) $) 110 (|has| |#2| (-370)))) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#2| (-1099)))) (-1922 (((-644 (-566)) $) 47)) (-2040 (((-112) (-566) $) 48)) (-2168 (($ (-921)) 109 (|has| |#2| (-370)))) (-4033 (((-1119) $) 21 (|has| |#2| (-1099)))) (-4062 ((|#2| $) 43 (|has| (-566) (-850)))) (-1720 (($ $ |#2|) 42 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#2|))) 27 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) 26 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) 25 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) 24 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#2| $ (-566) |#2|) 51) ((|#2| $ (-566)) 50)) (-1452 ((|#2| $ $) 125 (|has| |#2| (-1049)))) (-2440 (($ (-1264 |#2|)) 127)) (-1909 (((-134)) 124 (|has| |#2| (-365)))) (-2862 (($ $) 99 (-2438 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) 97 (-2438 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) 95 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) 94 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) 93 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) 92 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) 85 (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) 84 (|has| |#2| (-1049)))) (-4044 (((-771) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4417))) (((-771) |#2| $) 29 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-1264 |#2|) $) 128) (($ (-566)) 69 (-2805 (-2438 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) (|has| |#2| (-1049)))) (($ (-409 (-566))) 66 (-2438 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (($ |#2|) 61 (|has| |#2| (-1099))) (((-862) $) 18 (|has| |#2| (-613 (-862))))) (-3795 (((-771)) 103 (|has| |#2| (-1049)) CONST)) (-3122 (((-112) $ $) 23 (|has| |#2| (-1099)))) (-3427 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4417)))) (-1346 (($ $) 121 (|has| |#2| (-848)))) (-2485 (($) 72 (|has| |#2| (-131)) CONST)) (-2495 (($) 83 (|has| |#2| (-726)) CONST)) (-2840 (($ $) 98 (-2438 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) 96 (-2438 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) 91 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) 90 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) 89 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) 88 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) 87 (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) 86 (|has| |#2| (-1049)))) (-2998 (((-112) $ $) 114 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-2974 (((-112) $ $) 113 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-2940 (((-112) $ $) 20 (|has| |#2| (-1099)))) (-2987 (((-112) $ $) 115 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-2962 (((-112) $ $) 112 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-3061 (($ $ |#2|) 123 (|has| |#2| (-365)))) (-3047 (($ $ $) 102 (|has| |#2| (-1049))) (($ $) 101 (|has| |#2| (-1049)))) (-3034 (($ $ $) 70 (|has| |#2| (-25)))) (** (($ $ (-771)) 81 (|has| |#2| (-726))) (($ $ (-921)) 78 (|has| |#2| (-726)))) (* (($ (-566) $) 100 (|has| |#2| (-1049))) (($ $ $) 79 (|has| |#2| (-726))) (($ $ |#2|) 77 (|has| |#2| (-726))) (($ |#2| $) 76 (|has| |#2| (-726))) (($ (-771) $) 74 (|has| |#2| (-131))) (($ (-921) $) 71 (|has| |#2| (-25)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-2106 (((-2 (|:| |varOrder| (-644 (-1175))) (|:| |inhom| (-3 (-644 (-1264 (-771))) "failed")) (|:| |hom| (-644 (-1264 (-771))))) (-295 (-952 (-566)))) 42)))
+(((-236) (-10 -7 (-15 -2106 ((-2 (|:| |varOrder| (-644 (-1175))) (|:| |inhom| (-3 (-644 (-1264 (-771))) "failed")) (|:| |hom| (-644 (-1264 (-771))))) (-295 (-952 (-566))))))) (T -236))
+((-2106 (*1 *2 *3) (-12 (-5 *3 (-295 (-952 (-566)))) (-5 *2 (-2 (|:| |varOrder| (-644 (-1175))) (|:| |inhom| (-3 (-644 (-1264 (-771))) "failed")) (|:| |hom| (-644 (-1264 (-771)))))) (-5 *1 (-236)))))
+(-10 -7 (-15 -2106 ((-2 (|:| |varOrder| (-644 (-1175))) (|:| |inhom| (-3 (-644 (-1264 (-771))) "failed")) (|:| |hom| (-644 (-1264 (-771))))) (-295 (-952 (-566))))))
+((-4070 (((-771)) 56)) (-2210 (((-2 (|:| -4193 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 $) (-1264 $)) 53) (((-689 |#3|) (-689 $)) 44) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-2012 (((-134)) 62)) (-2578 (($ $ (-1 |#3| |#3|) (-771)) NIL) (($ $ (-1 |#3| |#3|)) 18) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)) (-3780 (((-1264 |#3|) $) NIL) (($ |#3|) NIL) (((-862) $) NIL) (($ (-566)) 12) (($ (-409 (-566))) NIL)) (-3996 (((-771)) 15)) (-3062 (($ $ |#3|) 59)))
+(((-237 |#1| |#2| |#3|) (-10 -8 (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)) (-15 -3996 ((-771))) (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -3780 (|#1| |#3|)) (-15 -2578 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2578 (|#1| |#1| (-1 |#3| |#3|) (-771))) (-15 -2210 ((-689 |#3|) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 |#1|) (-1264 |#1|))) (-15 -4070 ((-771))) (-15 -3062 (|#1| |#1| |#3|)) (-15 -2012 ((-134))) (-15 -3780 ((-1264 |#3|) |#1|))) (-238 |#2| |#3|) (-771) (-1214)) (T -237))
+((-2012 (*1 *2) (-12 (-14 *4 (-771)) (-4 *5 (-1214)) (-5 *2 (-134)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))) (-4070 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1214)) (-5 *2 (-771)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))) (-3996 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1214)) (-5 *2 (-771)) (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5)))))
+(-10 -8 (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)) (-15 -3996 ((-771))) (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -3780 (|#1| |#3|)) (-15 -2578 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2578 (|#1| |#1| (-1 |#3| |#3|) (-771))) (-15 -2210 ((-689 |#3|) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 |#1|) (-1264 |#1|))) (-15 -4070 ((-771))) (-15 -3062 (|#1| |#1| |#3|)) (-15 -2012 ((-134))) (-15 -3780 ((-1264 |#3|) |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#2| (-1099)))) (-3015 (((-112) $) 73 (|has| |#2| (-131)))) (-3047 (($ (-921)) 126 (|has| |#2| (-1049)))) (-2518 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4415)))) (-4385 (($ $ $) 122 (|has| |#2| (-793)))) (-4014 (((-3 $ "failed") $ $) 75 (|has| |#2| (-131)))) (-1574 (((-112) $ (-771)) 8)) (-4070 (((-771)) 108 (|has| |#2| (-370)))) (-2899 (((-566) $) 120 (|has| |#2| (-848)))) (-3916 ((|#2| $ (-566) |#2|) 53 (|has| $ (-6 -4415)))) (-3877 (($) 7 T CONST)) (-3066 (((-3 (-566) "failed") $) 68 (-2447 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-3 (-409 (-566)) "failed") $) 65 (-2447 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (((-3 |#2| "failed") $) 62 (|has| |#2| (-1099)))) (-1867 (((-566) $) 67 (-2447 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-409 (-566)) $) 64 (-2447 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) ((|#2| $) 63 (|has| |#2| (-1099)))) (-2210 (((-689 (-566)) (-689 $)) 107 (-2447 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 106 (-2447 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 105 (|has| |#2| (-1049))) (((-689 |#2|) (-689 $)) 104 (|has| |#2| (-1049)))) (-2928 (((-3 $ "failed") $) 80 (|has| |#2| (-726)))) (-1618 (($) 111 (|has| |#2| (-370)))) (-3128 ((|#2| $ (-566) |#2|) 54 (|has| $ (-6 -4415)))) (-3059 ((|#2| $ (-566)) 52)) (-1533 (((-112) $) 118 (|has| |#2| (-848)))) (-3799 (((-644 |#2|) $) 31 (|has| $ (-6 -4414)))) (-3466 (((-112) $) 82 (|has| |#2| (-726)))) (-2917 (((-112) $) 119 (|has| |#2| (-848)))) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 44 (|has| (-566) (-850)))) (-1945 (($ $ $) 117 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-3276 (((-644 |#2|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 45 (|has| (-566) (-850)))) (-2709 (($ $ $) 116 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-3117 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#2| |#2|) $) 36)) (-1299 (((-921) $) 110 (|has| |#2| (-370)))) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#2| (-1099)))) (-2140 (((-644 (-566)) $) 47)) (-3935 (((-112) (-566) $) 48)) (-2208 (($ (-921)) 109 (|has| |#2| (-370)))) (-4056 (((-1119) $) 21 (|has| |#2| (-1099)))) (-4101 ((|#2| $) 43 (|has| (-566) (-850)))) (-3750 (($ $ |#2|) 42 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#2|))) 27 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) 26 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) 25 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) 24 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#2| $ (-566) |#2|) 51) ((|#2| $ (-566)) 50)) (-4086 ((|#2| $ $) 125 (|has| |#2| (-1049)))) (-2512 (($ (-1264 |#2|)) 127)) (-2012 (((-134)) 124 (|has| |#2| (-365)))) (-2578 (($ $) 99 (-2447 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) 97 (-2447 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) 95 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) 94 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) 93 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) 92 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) 85 (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) 84 (|has| |#2| (-1049)))) (-4067 (((-771) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4414))) (((-771) |#2| $) 29 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-1264 |#2|) $) 128) (($ (-566)) 69 (-2805 (-2447 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) (|has| |#2| (-1049)))) (($ (-409 (-566))) 66 (-2447 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (($ |#2|) 61 (|has| |#2| (-1099))) (((-862) $) 18 (|has| |#2| (-613 (-862))))) (-3996 (((-771)) 103 (|has| |#2| (-1049)) CONST)) (-3801 (((-112) $ $) 23 (|has| |#2| (-1099)))) (-1583 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4414)))) (-3333 (($ $) 121 (|has| |#2| (-848)))) (-2493 (($) 72 (|has| |#2| (-131)) CONST)) (-4333 (($) 83 (|has| |#2| (-726)) CONST)) (-2876 (($ $) 98 (-2447 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) 96 (-2447 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) 91 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) 90 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) 89 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) 88 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) 87 (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) 86 (|has| |#2| (-1049)))) (-3010 (((-112) $ $) 114 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-2984 (((-112) $ $) 113 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-2950 (((-112) $ $) 20 (|has| |#2| (-1099)))) (-2999 (((-112) $ $) 115 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-2972 (((-112) $ $) 112 (-2805 (|has| |#2| (-848)) (|has| |#2| (-793))))) (-3062 (($ $ |#2|) 123 (|has| |#2| (-365)))) (-3051 (($ $ $) 102 (|has| |#2| (-1049))) (($ $) 101 (|has| |#2| (-1049)))) (-3040 (($ $ $) 70 (|has| |#2| (-25)))) (** (($ $ (-771)) 81 (|has| |#2| (-726))) (($ $ (-921)) 78 (|has| |#2| (-726)))) (* (($ (-566) $) 100 (|has| |#2| (-1049))) (($ $ $) 79 (|has| |#2| (-726))) (($ $ |#2|) 77 (|has| |#2| (-726))) (($ |#2| $) 76 (|has| |#2| (-726))) (($ (-771) $) 74 (|has| |#2| (-131))) (($ (-921) $) 71 (|has| |#2| (-25)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-238 |#1| |#2|) (-140) (-771) (-1214)) (T -238))
-((-2440 (*1 *1 *2) (-12 (-5 *2 (-1264 *4)) (-4 *4 (-1214)) (-4 *1 (-238 *3 *4)))) (-3639 (*1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-238 *3 *4)) (-4 *4 (-1049)) (-4 *4 (-1214)))) (-1452 (*1 *2 *1 *1) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1214)) (-4 *2 (-1049)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1214)) (-4 *2 (-726)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1214)) (-4 *2 (-726)))))
-(-13 (-604 (-566) |t#2|) (-613 (-1264 |t#2|)) (-10 -8 (-6 -4417) (-15 -2440 ($ (-1264 |t#2|))) (IF (|has| |t#2| (-1099)) (-6 (-413 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-1049)) (PROGN (-6 (-111 |t#2| |t#2|)) (-6 (-231 |t#2|)) (-6 (-379 |t#2|)) (-15 -3639 ($ (-921))) (-15 -1452 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-131)) (-6 (-131)) |%noBranch|) (IF (|has| |t#2| (-726)) (PROGN (-6 (-726)) (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-370)) (-6 (-370)) |%noBranch|) (IF (|has| |t#2| (-172)) (PROGN (-6 (-38 |t#2|)) (-6 (-172))) |%noBranch|) (IF (|has| |t#2| (-6 -4414)) (-6 -4414) |%noBranch|) (IF (|has| |t#2| (-848)) (-6 (-848)) |%noBranch|) (IF (|has| |t#2| (-793)) (-6 (-793)) |%noBranch|) (IF (|has| |t#2| (-365)) (-6 (-1271 |t#2|)) |%noBranch|)))
+((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 *4)) (-4 *4 (-1214)) (-4 *1 (-238 *3 *4)))) (-3047 (*1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-238 *3 *4)) (-4 *4 (-1049)) (-4 *4 (-1214)))) (-4086 (*1 *2 *1 *1) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1214)) (-4 *2 (-1049)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1214)) (-4 *2 (-726)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1214)) (-4 *2 (-726)))))
+(-13 (-604 (-566) |t#2|) (-613 (-1264 |t#2|)) (-10 -8 (-6 -4414) (-15 -2512 ($ (-1264 |t#2|))) (IF (|has| |t#2| (-1099)) (-6 (-413 |t#2|)) |%noBranch|) (IF (|has| |t#2| (-1049)) (PROGN (-6 (-111 |t#2| |t#2|)) (-6 (-231 |t#2|)) (-6 (-379 |t#2|)) (-15 -3047 ($ (-921))) (-15 -4086 (|t#2| $ $))) |%noBranch|) (IF (|has| |t#2| (-25)) (-6 (-25)) |%noBranch|) (IF (|has| |t#2| (-131)) (-6 (-131)) |%noBranch|) (IF (|has| |t#2| (-726)) (PROGN (-6 (-726)) (-15 * ($ |t#2| $)) (-15 * ($ $ |t#2|))) |%noBranch|) (IF (|has| |t#2| (-370)) (-6 (-370)) |%noBranch|) (IF (|has| |t#2| (-172)) (PROGN (-6 (-38 |t#2|)) (-6 (-172))) |%noBranch|) (IF (|has| |t#2| (-6 -4411)) (-6 -4411) |%noBranch|) (IF (|has| |t#2| (-848)) (-6 (-848)) |%noBranch|) (IF (|has| |t#2| (-793)) (-6 (-793)) |%noBranch|) (IF (|has| |t#2| (-365)) (-6 (-1271 |t#2|)) |%noBranch|)))
(((-21) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-365)) (|has| |#2| (-172))) ((-23) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-793)) (|has| |#2| (-365)) (|has| |#2| (-172)) (|has| |#2| (-131))) ((-25) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-793)) (|has| |#2| (-365)) (|has| |#2| (-172)) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-34) . T) ((-38 |#2|) |has| |#2| (-172)) ((-102) -2805 (|has| |#2| (-1099)) (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-793)) (|has| |#2| (-726)) (|has| |#2| (-370)) (|has| |#2| (-365)) (|has| |#2| (-172)) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-111 |#2| |#2|) -2805 (|has| |#2| (-1049)) (|has| |#2| (-365)) (|has| |#2| (-172))) ((-111 $ $) |has| |#2| (-172)) ((-131) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-793)) (|has| |#2| (-365)) (|has| |#2| (-172)) (|has| |#2| (-131))) ((-616 #0=(-409 (-566))) -12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099))) ((-616 (-566)) -2805 (|has| |#2| (-1049)) (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) (|has| |#2| (-848)) (|has| |#2| (-172))) ((-616 |#2|) -2805 (|has| |#2| (-1099)) (|has| |#2| (-172))) ((-613 (-862)) -2805 (|has| |#2| (-1099)) (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-793)) (|has| |#2| (-726)) (|has| |#2| (-370)) (|has| |#2| (-365)) (|has| |#2| (-172)) (|has| |#2| (-613 (-862))) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-613 (-1264 |#2|)) . T) ((-172) |has| |#2| (-172)) ((-231 |#2|) |has| |#2| (-1049)) ((-233) -12 (|has| |#2| (-233)) (|has| |#2| (-1049))) ((-287 #1=(-566) |#2|) . T) ((-289 #1# |#2|) . T) ((-310 |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-370) |has| |#2| (-370)) ((-379 |#2|) |has| |#2| (-1049)) ((-413 |#2|) |has| |#2| (-1099)) ((-491 |#2|) . T) ((-604 #1# |#2|) . T) ((-516 |#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-646 (-566)) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-365)) (|has| |#2| (-172))) ((-646 |#2|) -2805 (|has| |#2| (-1049)) (|has| |#2| (-365)) (|has| |#2| (-172))) ((-646 $) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-172))) ((-648 |#2|) -2805 (|has| |#2| (-1049)) (|has| |#2| (-365)) (|has| |#2| (-172))) ((-648 $) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-172))) ((-640 |#2|) -2805 (|has| |#2| (-365)) (|has| |#2| (-172))) ((-639 (-566)) -12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049))) ((-639 |#2|) |has| |#2| (-1049)) ((-717 |#2|) -2805 (|has| |#2| (-365)) (|has| |#2| (-172))) ((-726) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-726)) (|has| |#2| (-172))) ((-791) |has| |#2| (-848)) ((-792) -2805 (|has| |#2| (-848)) (|has| |#2| (-793))) ((-793) |has| |#2| (-793)) ((-794) -2805 (|has| |#2| (-848)) (|has| |#2| (-793))) ((-795) -2805 (|has| |#2| (-848)) (|has| |#2| (-793))) ((-848) |has| |#2| (-848)) ((-850) -2805 (|has| |#2| (-848)) (|has| |#2| (-793))) ((-900 (-1175)) -12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049))) ((-1038 #0#) -12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099))) ((-1038 (-566)) -12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) ((-1038 |#2|) |has| |#2| (-1099)) ((-1051 |#2|) -2805 (|has| |#2| (-1049)) (|has| |#2| (-365)) (|has| |#2| (-172))) ((-1051 $) |has| |#2| (-172)) ((-1056 |#2|) -2805 (|has| |#2| (-1049)) (|has| |#2| (-365)) (|has| |#2| (-172))) ((-1056 $) |has| |#2| (-172)) ((-1049) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-172))) ((-1057) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-172))) ((-1111) -2805 (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-726)) (|has| |#2| (-172))) ((-1099) -2805 (|has| |#2| (-1099)) (|has| |#2| (-1049)) (|has| |#2| (-848)) (|has| |#2| (-793)) (|has| |#2| (-726)) (|has| |#2| (-370)) (|has| |#2| (-365)) (|has| |#2| (-172)) (|has| |#2| (-131)) (|has| |#2| (-25))) ((-1214) . T) ((-1271 |#2|) |has| |#2| (-365)))
-((-2403 (((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|) 21)) (-4362 ((|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|) 23)) (-3077 (((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|)) 18)))
-(((-239 |#1| |#2| |#3|) (-10 -7 (-15 -2403 ((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -4362 (|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -3077 ((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|)))) (-771) (-1214) (-1214)) (T -239))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-240 *5 *6)) (-14 *5 (-771)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-5 *2 (-240 *5 *7)) (-5 *1 (-239 *5 *6 *7)))) (-4362 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-240 *5 *6)) (-14 *5 (-771)) (-4 *6 (-1214)) (-4 *2 (-1214)) (-5 *1 (-239 *5 *6 *2)))) (-2403 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-240 *6 *7)) (-14 *6 (-771)) (-4 *7 (-1214)) (-4 *5 (-1214)) (-5 *2 (-240 *6 *5)) (-5 *1 (-239 *6 *7 *5)))))
-(-10 -7 (-15 -2403 ((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -4362 (|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -3077 ((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|))))
-((-2985 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-3958 (((-112) $) NIL (|has| |#2| (-131)))) (-3639 (($ (-921)) 65 (|has| |#2| (-1049)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-3711 (($ $ $) 70 (|has| |#2| (-793)))) (-4126 (((-3 $ "failed") $ $) 57 (|has| |#2| (-131)))) (-3081 (((-112) $ (-771)) 17)) (-4025 (((-771)) NIL (|has| |#2| (-370)))) (-2807 (((-566) $) NIL (|has| |#2| (-848)))) (-3874 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (((-3 |#2| "failed") $) 34 (|has| |#2| (-1099)))) (-1756 (((-566) $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) ((|#2| $) 32 (|has| |#2| (-1099)))) (-1628 (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL (|has| |#2| (-1049))) (((-689 |#2|) (-689 $)) NIL (|has| |#2| (-1049)))) (-1579 (((-3 $ "failed") $) 61 (|has| |#2| (-726)))) (-3335 (($) NIL (|has| |#2| (-370)))) (-1332 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#2| $ (-566)) 59)) (-1684 (((-112) $) NIL (|has| |#2| (-848)))) (-3372 (((-644 |#2|) $) 15 (|has| $ (-6 -4417)))) (-2741 (((-112) $) NIL (|has| |#2| (-726)))) (-1578 (((-112) $) NIL (|has| |#2| (-848)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) 20 (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2404 (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-1544 (((-566) $) 58 (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-1323 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#2| |#2|) $) 47)) (-3712 (((-921) $) NIL (|has| |#2| (-370)))) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#2| (-1099)))) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-2168 (($ (-921)) NIL (|has| |#2| (-370)))) (-4033 (((-1119) $) NIL (|has| |#2| (-1099)))) (-4062 ((|#2| $) NIL (|has| (-566) (-850)))) (-1720 (($ $ |#2|) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#2| $ (-566) |#2|) NIL) ((|#2| $ (-566)) 21)) (-1452 ((|#2| $ $) NIL (|has| |#2| (-1049)))) (-2440 (($ (-1264 |#2|)) 18)) (-1909 (((-134)) NIL (|has| |#2| (-365)))) (-2862 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-4044 (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-1264 |#2|) $) 10) (($ (-566)) NIL (-2805 (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) (|has| |#2| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (($ |#2|) 13 (|has| |#2| (-1099))) (((-862) $) NIL (|has| |#2| (-613 (-862))))) (-3795 (((-771)) NIL (|has| |#2| (-1049)) CONST)) (-3122 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-3427 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-1346 (($ $) NIL (|has| |#2| (-848)))) (-2485 (($) 40 (|has| |#2| (-131)) CONST)) (-2495 (($) 44 (|has| |#2| (-726)) CONST)) (-2840 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-2998 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2974 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2940 (((-112) $ $) 31 (|has| |#2| (-1099)))) (-2987 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2962 (((-112) $ $) 68 (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3061 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3047 (($ $ $) NIL (|has| |#2| (-1049))) (($ $) NIL (|has| |#2| (-1049)))) (-3034 (($ $ $) 38 (|has| |#2| (-25)))) (** (($ $ (-771)) NIL (|has| |#2| (-726))) (($ $ (-921)) NIL (|has| |#2| (-726)))) (* (($ (-566) $) NIL (|has| |#2| (-1049))) (($ $ $) 50 (|has| |#2| (-726))) (($ $ |#2|) 48 (|has| |#2| (-726))) (($ |#2| $) 49 (|has| |#2| (-726))) (($ (-771) $) NIL (|has| |#2| (-131))) (($ (-921) $) NIL (|has| |#2| (-25)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3264 (((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|) 21)) (-1580 ((|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|) 23)) (-3152 (((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|)) 18)))
+(((-239 |#1| |#2| |#3|) (-10 -7 (-15 -3264 ((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -1580 (|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -3152 ((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|)))) (-771) (-1214) (-1214)) (T -239))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-240 *5 *6)) (-14 *5 (-771)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-5 *2 (-240 *5 *7)) (-5 *1 (-239 *5 *6 *7)))) (-1580 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-240 *5 *6)) (-14 *5 (-771)) (-4 *6 (-1214)) (-4 *2 (-1214)) (-5 *1 (-239 *5 *6 *2)))) (-3264 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-240 *6 *7)) (-14 *6 (-771)) (-4 *7 (-1214)) (-4 *5 (-1214)) (-5 *2 (-240 *6 *5)) (-5 *1 (-239 *6 *7 *5)))))
+(-10 -7 (-15 -3264 ((-240 |#1| |#3|) (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -1580 (|#3| (-1 |#3| |#2| |#3|) (-240 |#1| |#2|) |#3|)) (-15 -3152 ((-240 |#1| |#3|) (-1 |#3| |#2|) (-240 |#1| |#2|))))
+((-3009 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-3015 (((-112) $) NIL (|has| |#2| (-131)))) (-3047 (($ (-921)) 65 (|has| |#2| (-1049)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-4385 (($ $ $) 70 (|has| |#2| (-793)))) (-4014 (((-3 $ "failed") $ $) 57 (|has| |#2| (-131)))) (-1574 (((-112) $ (-771)) 17)) (-4070 (((-771)) NIL (|has| |#2| (-370)))) (-2899 (((-566) $) NIL (|has| |#2| (-848)))) (-3916 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (((-3 |#2| "failed") $) 34 (|has| |#2| (-1099)))) (-1867 (((-566) $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) ((|#2| $) 32 (|has| |#2| (-1099)))) (-2210 (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL (|has| |#2| (-1049))) (((-689 |#2|) (-689 $)) NIL (|has| |#2| (-1049)))) (-2928 (((-3 $ "failed") $) 61 (|has| |#2| (-726)))) (-1618 (($) NIL (|has| |#2| (-370)))) (-3128 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#2| $ (-566)) 59)) (-1533 (((-112) $) NIL (|has| |#2| (-848)))) (-3799 (((-644 |#2|) $) 15 (|has| $ (-6 -4414)))) (-3466 (((-112) $) NIL (|has| |#2| (-726)))) (-2917 (((-112) $) NIL (|has| |#2| (-848)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) 20 (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3276 (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2579 (((-566) $) 58 (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3117 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#2| |#2|) $) 47)) (-1299 (((-921) $) NIL (|has| |#2| (-370)))) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#2| (-1099)))) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-2208 (($ (-921)) NIL (|has| |#2| (-370)))) (-4056 (((-1119) $) NIL (|has| |#2| (-1099)))) (-4101 ((|#2| $) NIL (|has| (-566) (-850)))) (-3750 (($ $ |#2|) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#2| $ (-566) |#2|) NIL) ((|#2| $ (-566)) 21)) (-4086 ((|#2| $ $) NIL (|has| |#2| (-1049)))) (-2512 (($ (-1264 |#2|)) 18)) (-2012 (((-134)) NIL (|has| |#2| (-365)))) (-2578 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-4067 (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-1264 |#2|) $) 10) (($ (-566)) NIL (-2805 (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) (|has| |#2| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (($ |#2|) 13 (|has| |#2| (-1099))) (((-862) $) NIL (|has| |#2| (-613 (-862))))) (-3996 (((-771)) NIL (|has| |#2| (-1049)) CONST)) (-3801 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-1583 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3333 (($ $) NIL (|has| |#2| (-848)))) (-2493 (($) 40 (|has| |#2| (-131)) CONST)) (-4333 (($) 44 (|has| |#2| (-726)) CONST)) (-2876 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-3010 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2984 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2950 (((-112) $ $) 31 (|has| |#2| (-1099)))) (-2999 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2972 (((-112) $ $) 68 (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3062 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3051 (($ $ $) NIL (|has| |#2| (-1049))) (($ $) NIL (|has| |#2| (-1049)))) (-3040 (($ $ $) 38 (|has| |#2| (-25)))) (** (($ $ (-771)) NIL (|has| |#2| (-726))) (($ $ (-921)) NIL (|has| |#2| (-726)))) (* (($ (-566) $) NIL (|has| |#2| (-1049))) (($ $ $) 50 (|has| |#2| (-726))) (($ $ |#2|) 48 (|has| |#2| (-726))) (($ |#2| $) 49 (|has| |#2| (-726))) (($ (-771) $) NIL (|has| |#2| (-131))) (($ (-921) $) NIL (|has| |#2| (-25)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-240 |#1| |#2|) (-238 |#1| |#2|) (-771) (-1214)) (T -240))
NIL
(-238 |#1| |#2|)
-((-1508 (((-566) (-644 (-1157))) 36) (((-566) (-1157)) 29)) (-3961 (((-1269) (-644 (-1157))) 41) (((-1269) (-1157)) 40)) (-3288 (((-1157)) 16)) (-1340 (((-1157) (-566) (-1157)) 23)) (-2420 (((-644 (-1157)) (-644 (-1157)) (-566) (-1157)) 37) (((-1157) (-1157) (-566) (-1157)) 35)) (-3240 (((-644 (-1157)) (-644 (-1157))) 15) (((-644 (-1157)) (-1157)) 11)))
-(((-241) (-10 -7 (-15 -3240 ((-644 (-1157)) (-1157))) (-15 -3240 ((-644 (-1157)) (-644 (-1157)))) (-15 -3288 ((-1157))) (-15 -1340 ((-1157) (-566) (-1157))) (-15 -2420 ((-1157) (-1157) (-566) (-1157))) (-15 -2420 ((-644 (-1157)) (-644 (-1157)) (-566) (-1157))) (-15 -3961 ((-1269) (-1157))) (-15 -3961 ((-1269) (-644 (-1157)))) (-15 -1508 ((-566) (-1157))) (-15 -1508 ((-566) (-644 (-1157)))))) (T -241))
-((-1508 (*1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-566)) (-5 *1 (-241)))) (-1508 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-566)) (-5 *1 (-241)))) (-3961 (*1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1269)) (-5 *1 (-241)))) (-3961 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-241)))) (-2420 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-644 (-1157))) (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *1 (-241)))) (-2420 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-241)))) (-1340 (*1 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-241)))) (-3288 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-241)))) (-3240 (*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-241)))) (-3240 (*1 *2 *3) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-241)) (-5 *3 (-1157)))))
-(-10 -7 (-15 -3240 ((-644 (-1157)) (-1157))) (-15 -3240 ((-644 (-1157)) (-644 (-1157)))) (-15 -3288 ((-1157))) (-15 -1340 ((-1157) (-566) (-1157))) (-15 -2420 ((-1157) (-1157) (-566) (-1157))) (-15 -2420 ((-644 (-1157)) (-644 (-1157)) (-566) (-1157))) (-15 -3961 ((-1269) (-1157))) (-15 -3961 ((-1269) (-644 (-1157)))) (-15 -1508 ((-566) (-1157))) (-15 -1508 ((-566) (-644 (-1157)))))
+((-3430 (((-566) (-644 (-1157))) 36) (((-566) (-1157)) 29)) (-1654 (((-1269) (-644 (-1157))) 41) (((-1269) (-1157)) 40)) (-2775 (((-1157)) 16)) (-3265 (((-1157) (-566) (-1157)) 23)) (-3174 (((-644 (-1157)) (-644 (-1157)) (-566) (-1157)) 37) (((-1157) (-1157) (-566) (-1157)) 35)) (-3238 (((-644 (-1157)) (-644 (-1157))) 15) (((-644 (-1157)) (-1157)) 11)))
+(((-241) (-10 -7 (-15 -3238 ((-644 (-1157)) (-1157))) (-15 -3238 ((-644 (-1157)) (-644 (-1157)))) (-15 -2775 ((-1157))) (-15 -3265 ((-1157) (-566) (-1157))) (-15 -3174 ((-1157) (-1157) (-566) (-1157))) (-15 -3174 ((-644 (-1157)) (-644 (-1157)) (-566) (-1157))) (-15 -1654 ((-1269) (-1157))) (-15 -1654 ((-1269) (-644 (-1157)))) (-15 -3430 ((-566) (-1157))) (-15 -3430 ((-566) (-644 (-1157)))))) (T -241))
+((-3430 (*1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-566)) (-5 *1 (-241)))) (-3430 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-566)) (-5 *1 (-241)))) (-1654 (*1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1269)) (-5 *1 (-241)))) (-1654 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-241)))) (-3174 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-644 (-1157))) (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *1 (-241)))) (-3174 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-241)))) (-3265 (*1 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-241)))) (-2775 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-241)))) (-3238 (*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-241)))) (-3238 (*1 *2 *3) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-241)) (-5 *3 (-1157)))))
+(-10 -7 (-15 -3238 ((-644 (-1157)) (-1157))) (-15 -3238 ((-644 (-1157)) (-644 (-1157)))) (-15 -2775 ((-1157))) (-15 -3265 ((-1157) (-566) (-1157))) (-15 -3174 ((-1157) (-1157) (-566) (-1157))) (-15 -3174 ((-644 (-1157)) (-644 (-1157)) (-566) (-1157))) (-15 -1654 ((-1269) (-1157))) (-15 -1654 ((-1269) (-644 (-1157)))) (-15 -3430 ((-566) (-1157))) (-15 -3430 ((-566) (-644 (-1157)))))
((** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 20)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ (-409 (-566)) $) 27) (($ $ (-409 (-566))) NIL)))
(((-242 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-566))) (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 ** (|#1| |#1| (-771))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-921))) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|))) (-243)) (T -242))
NIL
(-10 -8 (-15 ** (|#1| |#1| (-566))) (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 ** (|#1| |#1| (-771))) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-921))) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 47)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 51)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 48)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ (-409 (-566)) $) 50) (($ $ (-409 (-566))) 49)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 47)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 51)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 48)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ (-409 (-566)) $) 50) (($ $ (-409 (-566))) 49)))
(((-243) (-140)) (T -243))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-243)) (-5 *2 (-566)))) (-2626 (*1 *1 *1) (-4 *1 (-243))))
-(-13 (-291) (-38 (-409 (-566))) (-10 -8 (-15 ** ($ $ (-566))) (-15 -2626 ($ $))))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-243)) (-5 *2 (-566)))) (-3584 (*1 *1 *1) (-4 *1 (-243))))
+(-13 (-291) (-38 (-409 (-566))) (-10 -8 (-15 ** ($ $ (-566))) (-15 -3584 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-616 #0#) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-291) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 $) . T) ((-640 #0#) . T) ((-717 #0#) . T) ((-726) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2212 ((|#1| $) 49)) (-3301 (($ $) 58)) (-3081 (((-112) $ (-771)) 8)) (-3087 ((|#1| $ |#1|) 40 (|has| $ (-6 -4418)))) (-3224 (($ $ $) 54 (|has| $ (-6 -4418)))) (-2259 (($ $ $) 53 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 42 (|has| $ (-6 -4418)))) (-2342 (($) 7 T CONST)) (-3423 (($ $) 57)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) 51)) (-4129 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-3836 (($ $) 56)) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2996 (((-644 |#1|) $) 46)) (-2783 (((-112) $) 50)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2670 ((|#1| $) 60)) (-4341 (($ $) 59)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ "value") 48)) (-1442 (((-566) $ $) 45)) (-1313 (((-112) $) 47)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-1498 (($ $ $) 55 (|has| $ (-6 -4418)))) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) 52)) (-2105 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2252 ((|#1| $) 49)) (-4043 (($ $) 58)) (-1574 (((-112) $ (-771)) 8)) (-1637 ((|#1| $ |#1|) 40 (|has| $ (-6 -4415)))) (-3442 (($ $ $) 54 (|has| $ (-6 -4415)))) (-2410 (($ $ $) 53 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 42 (|has| $ (-6 -4415)))) (-3877 (($) 7 T CONST)) (-3932 (($ $) 57)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) 51)) (-4050 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-3873 (($ $) 56)) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-3318 (((-644 |#1|) $) 46)) (-2675 (((-112) $) 50)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2680 ((|#1| $) 60)) (-2464 (($ $) 59)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ "value") 48)) (-3969 (((-566) $ $) 45)) (-1638 (((-112) $) 47)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3324 (($ $ $) 55 (|has| $ (-6 -4415)))) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) 52)) (-3381 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-244 |#1|) (-140) (-1214)) (T -244))
-((-2670 (*1 *2 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-4341 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-3301 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-3423 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-3836 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-1498 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-3224 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-2259 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-244 *2)) (-4 *2 (-1214)))))
-(-13 (-1010 |t#1|) (-10 -8 (-15 -2670 (|t#1| $)) (-15 -4341 ($ $)) (-15 -3301 ($ $)) (-15 -3423 ($ $)) (-15 -3836 ($ $)) (IF (|has| $ (-6 -4418)) (PROGN (-15 -1498 ($ $ $)) (-15 -3224 ($ $ $)) (-15 -2259 ($ $ $))) |%noBranch|)))
+((-2680 (*1 *2 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-2464 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-4043 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-3932 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-3873 (*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-3324 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-3442 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-244 *2)) (-4 *2 (-1214)))) (-2410 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-244 *2)) (-4 *2 (-1214)))))
+(-13 (-1010 |t#1|) (-10 -8 (-15 -2680 (|t#1| $)) (-15 -2464 ($ $)) (-15 -4043 ($ $)) (-15 -3932 ($ $)) (-15 -3873 ($ $)) (IF (|has| $ (-6 -4415)) (PROGN (-15 -3324 ($ $ $)) (-15 -3442 ($ $ $)) (-15 -2410 ($ $ $))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1010 |#1|) . T) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2212 ((|#1| $) NIL)) (-4309 ((|#1| $) NIL)) (-3301 (($ $) NIL)) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-1410 (($ $ (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) $) NIL (|has| |#1| (-850))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3426 (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3290 (($ $) 10 (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-3087 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-4290 (($ $ $) NIL (|has| $ (-6 -4418)))) (-1587 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-2831 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4418))) (($ $ "rest" $) NIL (|has| $ (-6 -4418))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) NIL (|has| $ (-6 -4418)))) (-3586 (($ (-1 (-112) |#1|) $) NIL)) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4299 ((|#1| $) NIL)) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4076 (($ $) NIL) (($ $ (-771)) NIL)) (-4130 (($ $) NIL (|has| |#1| (-1099)))) (-4093 (($ $) 7 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3066 (($ |#1| $) NIL (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) NIL)) (-2651 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1332 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) NIL)) (-1901 (((-112) $) NIL)) (-3968 (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099))) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) (-1 (-112) |#1|) $) NIL)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) NIL)) (-4129 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4257 (($ (-771) |#1|) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-1865 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3132 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3932 (($ |#1|) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2996 (((-644 |#1|) $) NIL)) (-2783 (((-112) $) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2670 ((|#1| $) NIL) (($ $ (-771)) NIL)) (-4265 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-4268 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4062 ((|#1| $) NIL) (($ $ (-771)) NIL)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) NIL (|has| $ (-6 -4418)))) (-1335 (((-112) $) NIL)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1231 (-566))) NIL) ((|#1| $ (-566)) NIL) ((|#1| $ (-566) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-771) $ "count") 16)) (-1442 (((-566) $ $) NIL)) (-1424 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-2201 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-2117 (($ (-644 |#1|)) 22)) (-1313 (((-112) $) NIL)) (-1636 (($ $) NIL)) (-2231 (($ $) NIL (|has| $ (-6 -4418)))) (-3069 (((-771) $) NIL)) (-1904 (($ $) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) NIL)) (-1498 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3704 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-644 $)) NIL) (($ $ |#1|) NIL)) (-2512 (($ (-644 |#1|)) 17) (((-644 |#1|) $) 18) (((-862) $) 21 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) NIL)) (-2105 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2997 (((-771) $) 14 (|has| $ (-6 -4417)))))
-(((-245 |#1|) (-13 (-666 |#1|) (-492 (-644 |#1|)) (-10 -8 (-15 -2117 ($ (-644 |#1|))) (-15 -4386 ($ $ "unique")) (-15 -4386 ($ $ "sort")) (-15 -4386 ((-771) $ "count")))) (-850)) (T -245))
-((-2117 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-245 *3)))) (-4386 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-245 *3)) (-4 *3 (-850)))) (-4386 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-245 *3)) (-4 *3 (-850)))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-771)) (-5 *1 (-245 *4)) (-4 *4 (-850)))))
-(-13 (-666 |#1|) (-492 (-644 |#1|)) (-10 -8 (-15 -2117 ($ (-644 |#1|))) (-15 -4386 ($ $ "unique")) (-15 -4386 ($ $ "sort")) (-15 -4386 ((-771) $ "count"))))
-((-3486 (((-3 (-771) "failed") |#1| |#1| (-771)) 43)))
-(((-246 |#1|) (-10 -7 (-15 -3486 ((-3 (-771) "failed") |#1| |#1| (-771)))) (-13 (-726) (-370) (-10 -7 (-15 ** (|#1| |#1| (-566)))))) (T -246))
-((-3486 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-771)) (-4 *3 (-13 (-726) (-370) (-10 -7 (-15 ** (*3 *3 (-566)))))) (-5 *1 (-246 *3)))))
-(-10 -7 (-15 -3486 ((-3 (-771) "failed") |#1| |#1| (-771))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-864 |#1|)) $) NIL)) (-2358 (((-1171 $) $ (-864 |#1|)) NIL) (((-1171 |#2|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#2| (-558)))) (-3653 (($ $) NIL (|has| |#2| (-558)))) (-2152 (((-112) $) NIL (|has| |#2| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-864 |#1|))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2857 (($ $) NIL (|has| |#2| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#2| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-864 |#1|) "failed") $) NIL)) (-1756 ((|#2| $) NIL) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-864 |#1|) $) NIL)) (-1552 (($ $ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-1492 (($ $ (-644 (-566))) NIL)) (-3577 (($ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#2| (-909)))) (-2804 (($ $ |#2| (-240 (-2997 |#1|) (-771)) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-2530 (($ (-1171 |#2|) (-864 |#1|)) NIL) (($ (-1171 $) (-864 |#1|)) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#2| (-240 (-2997 |#1|) (-771))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-864 |#1|)) NIL)) (-3251 (((-240 (-2997 |#1|) (-771)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-2132 (($ (-1 (-240 (-2997 |#1|) (-771)) (-240 (-2997 |#1|) (-771))) $) NIL)) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-3339 (((-3 (-864 |#1|) "failed") $) NIL)) (-3545 (($ $) NIL)) (-3557 ((|#2| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-2878 (((-1157) $) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-864 |#1|)) (|:| -3250 (-771))) "failed") $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 ((|#2| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#2| (-909)))) (-2972 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-558)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-864 |#1|) |#2|) NIL) (($ $ (-644 (-864 |#1|)) (-644 |#2|)) NIL) (($ $ (-864 |#1|) $) NIL) (($ $ (-644 (-864 |#1|)) (-644 $)) NIL)) (-2408 (($ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-2862 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3992 (((-240 (-2997 |#1|) (-771)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-864 |#1|) (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3181 ((|#2| $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-864 |#1|)) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#2| (-558)))) (-3868 (((-644 |#2|) $) NIL)) (-2022 ((|#2| $ (-240 (-2997 |#1|) (-771))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#2| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#2| (-558)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#2| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#2| (-38 (-409 (-566))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-247 |#1| |#2|) (-13 (-949 |#2| (-240 (-2997 |#1|) (-771)) (-864 |#1|)) (-10 -8 (-15 -1492 ($ $ (-644 (-566)))))) (-644 (-1175)) (-1049)) (T -247))
-((-1492 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-247 *3 *4)) (-14 *3 (-644 (-1175))) (-4 *4 (-1049)))))
-(-13 (-949 |#2| (-240 (-2997 |#1|) (-771)) (-864 |#1|)) (-10 -8 (-15 -1492 ($ $ (-644 (-566))))))
-((-2985 (((-112) $ $) NIL)) (-2566 (((-1269) $) 17)) (-3553 (((-183) $) 11)) (-2166 (($ (-183)) 12)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1534 (((-249) $) 7)) (-2512 (((-862) $) 9)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 15)))
-(((-248) (-13 (-1099) (-10 -8 (-15 -1534 ((-249) $)) (-15 -3553 ((-183) $)) (-15 -2166 ($ (-183))) (-15 -2566 ((-1269) $))))) (T -248))
-((-1534 (*1 *2 *1) (-12 (-5 *2 (-249)) (-5 *1 (-248)))) (-3553 (*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-248)))) (-2166 (*1 *1 *2) (-12 (-5 *2 (-183)) (-5 *1 (-248)))) (-2566 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-248)))))
-(-13 (-1099) (-10 -8 (-15 -1534 ((-249) $)) (-15 -3553 ((-183) $)) (-15 -2166 ($ (-183))) (-15 -2566 ((-1269) $))))
-((-2985 (((-112) $ $) NIL)) (-3555 (((-644 (-865)) $) NIL)) (-2628 (((-508) $) NIL)) (-2878 (((-1157) $) NIL)) (-1690 (((-186) $) NIL)) (-2181 (((-112) $ (-508)) NIL)) (-4033 (((-1119) $) NIL)) (-3973 (((-334) $) 7)) (-3454 (((-644 (-112)) $) NIL)) (-2512 (((-862) $) NIL) (((-187) $) 8)) (-3122 (((-112) $ $) NIL)) (-1965 (((-55) $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-249) (-13 (-185) (-613 (-187)) (-10 -8 (-15 -3973 ((-334) $))))) (T -249))
-((-3973 (*1 *2 *1) (-12 (-5 *2 (-334)) (-5 *1 (-249)))))
-(-13 (-185) (-613 (-187)) (-10 -8 (-15 -3973 ((-334) $))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4386 (((-1180) $ (-771)) 13)) (-2512 (((-862) $) 20)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 16)) (-2997 (((-771) $) 9)))
-(((-250) (-13 (-1099) (-10 -8 (-15 -2997 ((-771) $)) (-15 -4386 ((-1180) $ (-771)))))) (T -250))
-((-2997 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-250)))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1180)) (-5 *1 (-250)))))
-(-13 (-1099) (-10 -8 (-15 -2997 ((-771) $)) (-15 -4386 ((-1180) $ (-771)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3639 (($ (-921)) NIL (|has| |#4| (-1049)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-3711 (($ $ $) NIL (|has| |#4| (-793)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-4025 (((-771)) NIL (|has| |#4| (-370)))) (-2807 (((-566) $) NIL (|has| |#4| (-848)))) (-3874 ((|#4| $ (-566) |#4|) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1099))) (((-3 (-566) "failed") $) NIL (-12 (|has| |#4| (-1038 (-566))) (|has| |#4| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#4| (-1038 (-409 (-566)))) (|has| |#4| (-1099))))) (-1756 ((|#4| $) NIL (|has| |#4| (-1099))) (((-566) $) NIL (-12 (|has| |#4| (-1038 (-566))) (|has| |#4| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#4| (-1038 (-409 (-566)))) (|has| |#4| (-1099))))) (-1628 (((-2 (|:| -1380 (-689 |#4|)) (|:| |vec| (-1264 |#4|))) (-689 $) (-1264 $)) NIL (|has| |#4| (-1049))) (((-689 |#4|) (-689 $)) NIL (|has| |#4| (-1049))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))))) (-1579 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))))) (-3335 (($) NIL (|has| |#4| (-370)))) (-1332 ((|#4| $ (-566) |#4|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#4| $ (-566)) NIL)) (-1684 (((-112) $) NIL (|has| |#4| (-848)))) (-3372 (((-644 |#4|) $) NIL (|has| $ (-6 -4417)))) (-2741 (((-112) $) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))))) (-1578 (((-112) $) NIL (|has| |#4| (-848)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-2404 (((-644 |#4|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-1323 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) NIL)) (-3712 (((-921) $) NIL (|has| |#4| (-370)))) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-2168 (($ (-921)) NIL (|has| |#4| (-370)))) (-4033 (((-1119) $) NIL)) (-4062 ((|#4| $) NIL (|has| (-566) (-850)))) (-1720 (($ $ |#4|) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-2784 (((-644 |#4|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#4| $ (-566) |#4|) NIL) ((|#4| $ (-566)) 16)) (-1452 ((|#4| $ $) NIL (|has| |#4| (-1049)))) (-2440 (($ (-1264 |#4|)) NIL)) (-1909 (((-134)) NIL (|has| |#4| (-365)))) (-2862 (($ $ (-1 |#4| |#4|) (-771)) NIL (|has| |#4| (-1049))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1049)))) (($ $) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))))) (-4044 (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417))) (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-1264 |#4|) $) NIL) (((-862) $) NIL) (($ |#4|) NIL (|has| |#4| (-1099))) (($ (-566)) NIL (-2805 (-12 (|has| |#4| (-1038 (-566))) (|has| |#4| (-1099))) (|has| |#4| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#4| (-1038 (-409 (-566)))) (|has| |#4| (-1099))))) (-3795 (((-771)) NIL (|has| |#4| (-1049)) CONST)) (-3122 (((-112) $ $) NIL)) (-3427 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-1346 (($ $) NIL (|has| |#4| (-848)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) CONST)) (-2840 (($ $ (-1 |#4| |#4|) (-771)) NIL (|has| |#4| (-1049))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1049)))) (($ $) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))))) (-2998 (((-112) $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-2974 (((-112) $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-2962 (((-112) $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-3061 (($ $ |#4|) NIL (|has| |#4| (-365)))) (-3047 (($ $ $) NIL) (($ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-771)) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049))))) (($ $ (-921)) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))))) (* (($ |#2| $) 18) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL) (($ |#3| $) 22) (($ $ |#4|) NIL (|has| |#4| (-726))) (($ |#4| $) NIL (|has| |#4| (-726))) (($ $ $) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2252 ((|#1| $) NIL)) (-4369 ((|#1| $) NIL)) (-4043 (($ $) NIL)) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3670 (($ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) $) NIL (|has| |#1| (-850))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-1570 (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-1568 (($ $) 10 (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-1637 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-1938 (($ $ $) NIL (|has| $ (-6 -4415)))) (-1819 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-1921 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4415))) (($ $ "rest" $) NIL (|has| $ (-6 -4415))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) NIL (|has| $ (-6 -4415)))) (-2556 (($ (-1 (-112) |#1|) $) NIL)) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-4358 ((|#1| $) NIL)) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4112 (($ $) NIL) (($ $ (-771)) NIL)) (-4060 (($ $) NIL (|has| |#1| (-1099)))) (-4133 (($ $) 7 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1450 (($ |#1| $) NIL (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) NIL)) (-2661 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3128 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) NIL)) (-1935 (((-112) $) NIL)) (-4015 (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099))) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) (-1 (-112) |#1|) $) NIL)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) NIL)) (-4050 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4278 (($ (-771) |#1|) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-2761 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3891 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3977 (($ |#1|) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-3318 (((-644 |#1|) $) NIL)) (-2675 (((-112) $) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2680 ((|#1| $) NIL) (($ $ (-771)) NIL)) (-2903 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-4286 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4101 ((|#1| $) NIL) (($ $ (-771)) NIL)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) NIL (|has| $ (-6 -4415)))) (-1927 (((-112) $) NIL)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1231 (-566))) NIL) ((|#1| $ (-566)) NIL) ((|#1| $ (-566) |#1|) NIL) (($ $ "unique") 9) (($ $ "sort") 12) (((-771) $ "count") 16)) (-3969 (((-566) $ $) NIL)) (-3798 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-2215 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-3268 (($ (-644 |#1|)) 22)) (-1638 (((-112) $) NIL)) (-2299 (($ $) NIL)) (-2127 (($ $) NIL (|has| $ (-6 -4415)))) (-1472 (((-771) $) NIL)) (-1957 (($ $) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) NIL)) (-3324 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3727 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-644 $)) NIL) (($ $ |#1|) NIL)) (-3780 (($ (-644 |#1|)) 17) (((-644 |#1|) $) 18) (((-862) $) 21 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) NIL)) (-3381 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3020 (((-771) $) 14 (|has| $ (-6 -4414)))))
+(((-245 |#1|) (-13 (-666 |#1|) (-492 (-644 |#1|)) (-10 -8 (-15 -3268 ($ (-644 |#1|))) (-15 -4393 ($ $ "unique")) (-15 -4393 ($ $ "sort")) (-15 -4393 ((-771) $ "count")))) (-850)) (T -245))
+((-3268 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-245 *3)))) (-4393 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-245 *3)) (-4 *3 (-850)))) (-4393 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-245 *3)) (-4 *3 (-850)))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 "count") (-5 *2 (-771)) (-5 *1 (-245 *4)) (-4 *4 (-850)))))
+(-13 (-666 |#1|) (-492 (-644 |#1|)) (-10 -8 (-15 -3268 ($ (-644 |#1|))) (-15 -4393 ($ $ "unique")) (-15 -4393 ($ $ "sort")) (-15 -4393 ((-771) $ "count"))))
+((-4071 (((-3 (-771) "failed") |#1| |#1| (-771)) 43)))
+(((-246 |#1|) (-10 -7 (-15 -4071 ((-3 (-771) "failed") |#1| |#1| (-771)))) (-13 (-726) (-370) (-10 -7 (-15 ** (|#1| |#1| (-566)))))) (T -246))
+((-4071 (*1 *2 *3 *3 *2) (|partial| -12 (-5 *2 (-771)) (-4 *3 (-13 (-726) (-370) (-10 -7 (-15 ** (*3 *3 (-566)))))) (-5 *1 (-246 *3)))))
+(-10 -7 (-15 -4071 ((-3 (-771) "failed") |#1| |#1| (-771))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-864 |#1|)) $) NIL)) (-2438 (((-1171 $) $ (-864 |#1|)) NIL) (((-1171 |#2|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#2| (-558)))) (-1968 (($ $) NIL (|has| |#2| (-558)))) (-2644 (((-112) $) NIL (|has| |#2| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-864 |#1|))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2179 (($ $) NIL (|has| |#2| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#2| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-864 |#1|) "failed") $) NIL)) (-1867 ((|#2| $) NIL) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-864 |#1|) $) NIL)) (-2662 (($ $ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-3269 (($ $ (-644 (-566))) NIL)) (-3645 (($ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#2| (-909)))) (-2871 (($ $ |#2| (-240 (-3020 |#1|) (-771)) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2597 (($ (-1171 |#2|) (-864 |#1|)) NIL) (($ (-1171 $) (-864 |#1|)) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#2| (-240 (-3020 |#1|) (-771))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-864 |#1|)) NIL)) (-2466 (((-240 (-3020 |#1|) (-771)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-2443 (($ (-1 (-240 (-3020 |#1|) (-771)) (-240 (-3020 |#1|) (-771))) $) NIL)) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-1984 (((-3 (-864 |#1|) "failed") $) NIL)) (-3614 (($ $) NIL)) (-3626 ((|#2| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-2402 (((-1157) $) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-864 |#1|)) (|:| -2456 (-771))) "failed") $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 ((|#2| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#2| (-909)))) (-2997 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-558)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-864 |#1|) |#2|) NIL) (($ $ (-644 (-864 |#1|)) (-644 |#2|)) NIL) (($ $ (-864 |#1|) $) NIL) (($ $ (-644 (-864 |#1|)) (-644 $)) NIL)) (-3309 (($ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-2578 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2108 (((-240 (-3020 |#1|) (-771)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-864 |#1|) (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3042 ((|#2| $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-864 |#1|)) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#2| (-558)))) (-3456 (((-644 |#2|) $) NIL)) (-3756 ((|#2| $ (-240 (-3020 |#1|) (-771))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#2| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#2| (-558)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#2| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#2| (-38 (-409 (-566))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-247 |#1| |#2|) (-13 (-949 |#2| (-240 (-3020 |#1|) (-771)) (-864 |#1|)) (-10 -8 (-15 -3269 ($ $ (-644 (-566)))))) (-644 (-1175)) (-1049)) (T -247))
+((-3269 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-247 *3 *4)) (-14 *3 (-644 (-1175))) (-4 *4 (-1049)))))
+(-13 (-949 |#2| (-240 (-3020 |#1|) (-771)) (-864 |#1|)) (-10 -8 (-15 -3269 ($ $ (-644 (-566))))))
+((-3009 (((-112) $ $) NIL)) (-2589 (((-1269) $) 17)) (-3448 (((-183) $) 11)) (-2748 (($ (-183)) 12)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1592 (((-249) $) 7)) (-3780 (((-862) $) 9)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 15)))
+(((-248) (-13 (-1099) (-10 -8 (-15 -1592 ((-249) $)) (-15 -3448 ((-183) $)) (-15 -2748 ($ (-183))) (-15 -2589 ((-1269) $))))) (T -248))
+((-1592 (*1 *2 *1) (-12 (-5 *2 (-249)) (-5 *1 (-248)))) (-3448 (*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-248)))) (-2748 (*1 *1 *2) (-12 (-5 *2 (-183)) (-5 *1 (-248)))) (-2589 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-248)))))
+(-13 (-1099) (-10 -8 (-15 -1592 ((-249) $)) (-15 -3448 ((-183) $)) (-15 -2748 ($ (-183))) (-15 -2589 ((-1269) $))))
+((-3009 (((-112) $ $) NIL)) (-3579 (((-644 (-865)) $) NIL)) (-2639 (((-508) $) NIL)) (-2402 (((-1157) $) NIL)) (-1731 (((-186) $) NIL)) (-2885 (((-112) $ (-508)) NIL)) (-4056 (((-1119) $) NIL)) (-1933 (((-334) $) 7)) (-3743 (((-644 (-112)) $) NIL)) (-3780 (((-862) $) NIL) (((-187) $) 8)) (-3801 (((-112) $ $) NIL)) (-1297 (((-55) $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-249) (-13 (-185) (-613 (-187)) (-10 -8 (-15 -1933 ((-334) $))))) (T -249))
+((-1933 (*1 *2 *1) (-12 (-5 *2 (-334)) (-5 *1 (-249)))))
+(-13 (-185) (-613 (-187)) (-10 -8 (-15 -1933 ((-334) $))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4393 (((-1180) $ (-771)) 13)) (-3780 (((-862) $) 20)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 16)) (-3020 (((-771) $) 9)))
+(((-250) (-13 (-1099) (-10 -8 (-15 -3020 ((-771) $)) (-15 -4393 ((-1180) $ (-771)))))) (T -250))
+((-3020 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-250)))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1180)) (-5 *1 (-250)))))
+(-13 (-1099) (-10 -8 (-15 -3020 ((-771) $)) (-15 -4393 ((-1180) $ (-771)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3047 (($ (-921)) NIL (|has| |#4| (-1049)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-4385 (($ $ $) NIL (|has| |#4| (-793)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-4070 (((-771)) NIL (|has| |#4| (-370)))) (-2899 (((-566) $) NIL (|has| |#4| (-848)))) (-3916 ((|#4| $ (-566) |#4|) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#4| "failed") $) NIL (|has| |#4| (-1099))) (((-3 (-566) "failed") $) NIL (-12 (|has| |#4| (-1038 (-566))) (|has| |#4| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#4| (-1038 (-409 (-566)))) (|has| |#4| (-1099))))) (-1867 ((|#4| $) NIL (|has| |#4| (-1099))) (((-566) $) NIL (-12 (|has| |#4| (-1038 (-566))) (|has| |#4| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#4| (-1038 (-409 (-566)))) (|has| |#4| (-1099))))) (-2210 (((-2 (|:| -4193 (-689 |#4|)) (|:| |vec| (-1264 |#4|))) (-689 $) (-1264 $)) NIL (|has| |#4| (-1049))) (((-689 |#4|) (-689 $)) NIL (|has| |#4| (-1049))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))))) (-2928 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))))) (-1618 (($) NIL (|has| |#4| (-370)))) (-3128 ((|#4| $ (-566) |#4|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#4| $ (-566)) NIL)) (-1533 (((-112) $) NIL (|has| |#4| (-848)))) (-3799 (((-644 |#4|) $) NIL (|has| $ (-6 -4414)))) (-3466 (((-112) $) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))))) (-2917 (((-112) $) NIL (|has| |#4| (-848)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-3276 (((-644 |#4|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-3117 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) NIL)) (-1299 (((-921) $) NIL (|has| |#4| (-370)))) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-2208 (($ (-921)) NIL (|has| |#4| (-370)))) (-4056 (((-1119) $) NIL)) (-4101 ((|#4| $) NIL (|has| (-566) (-850)))) (-3750 (($ $ |#4|) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-2684 (((-644 |#4|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#4| $ (-566) |#4|) NIL) ((|#4| $ (-566)) 16)) (-4086 ((|#4| $ $) NIL (|has| |#4| (-1049)))) (-2512 (($ (-1264 |#4|)) NIL)) (-2012 (((-134)) NIL (|has| |#4| (-365)))) (-2578 (($ $ (-1 |#4| |#4|) (-771)) NIL (|has| |#4| (-1049))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1049)))) (($ $) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))))) (-4067 (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414))) (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-1264 |#4|) $) NIL) (((-862) $) NIL) (($ |#4|) NIL (|has| |#4| (-1099))) (($ (-566)) NIL (-2805 (-12 (|has| |#4| (-1038 (-566))) (|has| |#4| (-1099))) (|has| |#4| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#4| (-1038 (-409 (-566)))) (|has| |#4| (-1099))))) (-3996 (((-771)) NIL (|has| |#4| (-1049)) CONST)) (-3801 (((-112) $ $) NIL)) (-1583 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3333 (($ $) NIL (|has| |#4| (-848)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) CONST)) (-2876 (($ $ (-1 |#4| |#4|) (-771)) NIL (|has| |#4| (-1049))) (($ $ (-1 |#4| |#4|)) NIL (|has| |#4| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1049)))) (($ $) NIL (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))))) (-3010 (((-112) $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-2984 (((-112) $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-2972 (((-112) $ $) NIL (-2805 (|has| |#4| (-793)) (|has| |#4| (-848))))) (-3062 (($ $ |#4|) NIL (|has| |#4| (-365)))) (-3051 (($ $ $) NIL) (($ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-771)) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049))))) (($ $ (-921)) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))))) (* (($ |#2| $) 18) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL) (($ |#3| $) 22) (($ $ |#4|) NIL (|has| |#4| (-726))) (($ |#4| $) NIL (|has| |#4| (-726))) (($ $ $) NIL (-2805 (-12 (|has| |#4| (-233)) (|has| |#4| (-1049))) (-12 (|has| |#4| (-639 (-566))) (|has| |#4| (-1049))) (|has| |#4| (-726)) (-12 (|has| |#4| (-900 (-1175))) (|has| |#4| (-1049)))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-251 |#1| |#2| |#3| |#4|) (-13 (-238 |#1| |#4|) (-648 |#2|) (-648 |#3|)) (-921) (-1049) (-1122 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-648 |#2|)) (T -251))
NIL
(-13 (-238 |#1| |#4|) (-648 |#2|) (-648 |#3|))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3639 (($ (-921)) NIL (|has| |#3| (-1049)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-3711 (($ $ $) NIL (|has| |#3| (-793)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-4025 (((-771)) NIL (|has| |#3| (-370)))) (-2807 (((-566) $) NIL (|has| |#3| (-848)))) (-3874 ((|#3| $ (-566) |#3|) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1099))) (((-3 (-566) "failed") $) NIL (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099))))) (-1756 ((|#3| $) NIL (|has| |#3| (-1099))) (((-566) $) NIL (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099))))) (-1628 (((-2 (|:| -1380 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 $) (-1264 $)) NIL (|has| |#3| (-1049))) (((-689 |#3|) (-689 $)) NIL (|has| |#3| (-1049))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))))) (-1579 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))))) (-3335 (($) NIL (|has| |#3| (-370)))) (-1332 ((|#3| $ (-566) |#3|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#3| $ (-566)) NIL)) (-1684 (((-112) $) NIL (|has| |#3| (-848)))) (-3372 (((-644 |#3|) $) NIL (|has| $ (-6 -4417)))) (-2741 (((-112) $) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))))) (-1578 (((-112) $) NIL (|has| |#3| (-848)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2404 (((-644 |#3|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#3| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-1323 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#3| |#3|) $) NIL)) (-3712 (((-921) $) NIL (|has| |#3| (-370)))) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-2168 (($ (-921)) NIL (|has| |#3| (-370)))) (-4033 (((-1119) $) NIL)) (-4062 ((|#3| $) NIL (|has| (-566) (-850)))) (-1720 (($ $ |#3|) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#3|))) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-295 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-644 |#3|) (-644 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#3| (-1099))))) (-2784 (((-644 |#3|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#3| $ (-566) |#3|) NIL) ((|#3| $ (-566)) 15)) (-1452 ((|#3| $ $) NIL (|has| |#3| (-1049)))) (-2440 (($ (-1264 |#3|)) NIL)) (-1909 (((-134)) NIL (|has| |#3| (-365)))) (-2862 (($ $ (-1 |#3| |#3|) (-771)) NIL (|has| |#3| (-1049))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))))) (-4044 (((-771) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4417))) (((-771) |#3| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#3| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-1264 |#3|) $) NIL) (((-862) $) NIL) (($ |#3|) NIL (|has| |#3| (-1099))) (($ (-566)) NIL (-2805 (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099))) (|has| |#3| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099))))) (-3795 (((-771)) NIL (|has| |#3| (-1049)) CONST)) (-3122 (((-112) $ $) NIL)) (-3427 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4417)))) (-1346 (($ $) NIL (|has| |#3| (-848)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) CONST)) (-2840 (($ $ (-1 |#3| |#3|) (-771)) NIL (|has| |#3| (-1049))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))))) (-2998 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2974 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2962 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-3061 (($ $ |#3|) NIL (|has| |#3| (-365)))) (-3047 (($ $ $) NIL) (($ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-771)) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049))))) (($ $ (-921)) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))))) (* (($ |#2| $) 17) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-726))) (($ |#3| $) NIL (|has| |#3| (-726))) (($ $ $) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3047 (($ (-921)) NIL (|has| |#3| (-1049)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-4385 (($ $ $) NIL (|has| |#3| (-793)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-4070 (((-771)) NIL (|has| |#3| (-370)))) (-2899 (((-566) $) NIL (|has| |#3| (-848)))) (-3916 ((|#3| $ (-566) |#3|) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#3| "failed") $) NIL (|has| |#3| (-1099))) (((-3 (-566) "failed") $) NIL (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099))))) (-1867 ((|#3| $) NIL (|has| |#3| (-1099))) (((-566) $) NIL (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099))))) (-2210 (((-2 (|:| -4193 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 $) (-1264 $)) NIL (|has| |#3| (-1049))) (((-689 |#3|) (-689 $)) NIL (|has| |#3| (-1049))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))))) (-2928 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))))) (-1618 (($) NIL (|has| |#3| (-370)))) (-3128 ((|#3| $ (-566) |#3|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#3| $ (-566)) NIL)) (-1533 (((-112) $) NIL (|has| |#3| (-848)))) (-3799 (((-644 |#3|) $) NIL (|has| $ (-6 -4414)))) (-3466 (((-112) $) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))))) (-2917 (((-112) $) NIL (|has| |#3| (-848)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-3276 (((-644 |#3|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#3| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-3117 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#3| |#3|) $) NIL)) (-1299 (((-921) $) NIL (|has| |#3| (-370)))) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-2208 (($ (-921)) NIL (|has| |#3| (-370)))) (-4056 (((-1119) $) NIL)) (-4101 ((|#3| $) NIL (|has| (-566) (-850)))) (-3750 (($ $ |#3|) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#3|))) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-295 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-644 |#3|) (-644 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#3| (-1099))))) (-2684 (((-644 |#3|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#3| $ (-566) |#3|) NIL) ((|#3| $ (-566)) 15)) (-4086 ((|#3| $ $) NIL (|has| |#3| (-1049)))) (-2512 (($ (-1264 |#3|)) NIL)) (-2012 (((-134)) NIL (|has| |#3| (-365)))) (-2578 (($ $ (-1 |#3| |#3|) (-771)) NIL (|has| |#3| (-1049))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))))) (-4067 (((-771) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4414))) (((-771) |#3| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#3| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-1264 |#3|) $) NIL) (((-862) $) NIL) (($ |#3|) NIL (|has| |#3| (-1099))) (($ (-566)) NIL (-2805 (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099))) (|has| |#3| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099))))) (-3996 (((-771)) NIL (|has| |#3| (-1049)) CONST)) (-3801 (((-112) $ $) NIL)) (-1583 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4414)))) (-3333 (($ $) NIL (|has| |#3| (-848)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) CONST)) (-2876 (($ $ (-1 |#3| |#3|) (-771)) NIL (|has| |#3| (-1049))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1049))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))))) (-3010 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2984 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2972 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-3062 (($ $ |#3|) NIL (|has| |#3| (-365)))) (-3051 (($ $ $) NIL) (($ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-771)) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049))))) (($ $ (-921)) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))))) (* (($ |#2| $) 17) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-726))) (($ |#3| $) NIL (|has| |#3| (-726))) (($ $ $) NIL (-2805 (-12 (|has| |#3| (-233)) (|has| |#3| (-1049))) (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049))) (|has| |#3| (-726)) (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-252 |#1| |#2| |#3|) (-13 (-238 |#1| |#3|) (-648 |#2|)) (-771) (-1049) (-648 |#2|)) (T -252))
NIL
(-13 (-238 |#1| |#3|) (-648 |#2|))
-((-3598 (((-644 (-771)) $) 56) (((-644 (-771)) $ |#3|) 59)) (-3467 (((-771) $) 58) (((-771) $ |#3|) 61)) (-3456 (($ $) 76)) (-2977 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 83)) (-2716 (((-771) $ |#3|) 43) (((-771) $) 38)) (-3646 (((-1 $ (-771)) |#3|) 15) (((-1 $ (-771)) $) 88)) (-3919 ((|#4| $) 69)) (-1726 (((-112) $) 67)) (-1960 (($ $) 75)) (-2070 (($ $ (-644 (-295 $))) 114) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-644 |#4|) (-644 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-644 |#4|) (-644 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-644 |#3|) (-644 $)) 106) (($ $ |#3| |#2|) NIL) (($ $ (-644 |#3|) (-644 |#2|)) 100)) (-2862 (($ $ |#4|) NIL) (($ $ (-644 |#4|)) NIL) (($ $ |#4| (-771)) NIL) (($ $ (-644 |#4|) (-644 (-771))) NIL) (($ $) NIL) (($ $ (-771)) NIL) (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-1496 (((-644 |#3|) $) 86)) (-3992 ((|#5| $) NIL) (((-771) $ |#4|) NIL) (((-644 (-771)) $ (-644 |#4|)) NIL) (((-771) $ |#3|) 49)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 78) (($ (-409 (-566))) NIL) (($ $) NIL)))
-(((-253 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2512 (|#1| |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2070 (|#1| |#1| (-644 |#3|) (-644 |#2|))) (-15 -2070 (|#1| |#1| |#3| |#2|)) (-15 -2070 (|#1| |#1| (-644 |#3|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#3| |#1|)) (-15 -3646 ((-1 |#1| (-771)) |#1|)) (-15 -3456 (|#1| |#1|)) (-15 -1960 (|#1| |#1|)) (-15 -3919 (|#4| |#1|)) (-15 -1726 ((-112) |#1|)) (-15 -3467 ((-771) |#1| |#3|)) (-15 -3598 ((-644 (-771)) |#1| |#3|)) (-15 -3467 ((-771) |#1|)) (-15 -3598 ((-644 (-771)) |#1|)) (-15 -3992 ((-771) |#1| |#3|)) (-15 -2716 ((-771) |#1|)) (-15 -2716 ((-771) |#1| |#3|)) (-15 -1496 ((-644 |#3|) |#1|)) (-15 -3646 ((-1 |#1| (-771)) |#3|)) (-15 -2512 (|#1| |#3|)) (-15 -2977 ((-3 |#3| "failed") |#1|)) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1|)) (-15 -3992 ((-644 (-771)) |#1| (-644 |#4|))) (-15 -3992 ((-771) |#1| |#4|)) (-15 -2512 (|#1| |#4|)) (-15 -2977 ((-3 |#4| "failed") |#1|)) (-15 -2070 (|#1| |#1| (-644 |#4|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#4| |#1|)) (-15 -2070 (|#1| |#1| (-644 |#4|) (-644 |#2|))) (-15 -2070 (|#1| |#1| |#4| |#2|)) (-15 -2070 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#1| |#1|)) (-15 -2070 (|#1| |#1| (-295 |#1|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -3992 (|#5| |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2862 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -2862 (|#1| |#1| |#4| (-771))) (-15 -2862 (|#1| |#1| (-644 |#4|))) (-15 -2862 (|#1| |#1| |#4|)) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|))) (-254 |#2| |#3| |#4| |#5|) (-1049) (-850) (-267 |#3|) (-793)) (T -253))
+((-2658 (((-644 (-771)) $) 56) (((-644 (-771)) $ |#3|) 59)) (-3856 (((-771) $) 58) (((-771) $ |#3|) 61)) (-3759 (($ $) 76)) (-3066 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 83)) (-3227 (((-771) $ |#3|) 43) (((-771) $) 38)) (-1894 (((-1 $ (-771)) |#3|) 15) (((-1 $ (-771)) $) 88)) (-4144 ((|#4| $) 69)) (-3814 (((-112) $) 67)) (-1486 (($ $) 75)) (-2095 (($ $ (-644 (-295 $))) 114) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-644 |#4|) (-644 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-644 |#4|) (-644 $)) NIL) (($ $ |#3| $) NIL) (($ $ (-644 |#3|) (-644 $)) 106) (($ $ |#3| |#2|) NIL) (($ $ (-644 |#3|) (-644 |#2|)) 100)) (-2578 (($ $ |#4|) NIL) (($ $ (-644 |#4|)) NIL) (($ $ |#4| (-771)) NIL) (($ $ (-644 |#4|) (-644 (-771))) NIL) (($ $) NIL) (($ $ (-771)) NIL) (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 32)) (-3302 (((-644 |#3|) $) 86)) (-2108 ((|#5| $) NIL) (((-771) $ |#4|) NIL) (((-644 (-771)) $ (-644 |#4|)) NIL) (((-771) $ |#3|) 49)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 78) (($ (-409 (-566))) NIL) (($ $) NIL)))
+(((-253 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3780 (|#1| |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -2095 (|#1| |#1| (-644 |#3|) (-644 |#2|))) (-15 -2095 (|#1| |#1| |#3| |#2|)) (-15 -2095 (|#1| |#1| (-644 |#3|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#3| |#1|)) (-15 -1894 ((-1 |#1| (-771)) |#1|)) (-15 -3759 (|#1| |#1|)) (-15 -1486 (|#1| |#1|)) (-15 -4144 (|#4| |#1|)) (-15 -3814 ((-112) |#1|)) (-15 -3856 ((-771) |#1| |#3|)) (-15 -2658 ((-644 (-771)) |#1| |#3|)) (-15 -3856 ((-771) |#1|)) (-15 -2658 ((-644 (-771)) |#1|)) (-15 -2108 ((-771) |#1| |#3|)) (-15 -3227 ((-771) |#1|)) (-15 -3227 ((-771) |#1| |#3|)) (-15 -3302 ((-644 |#3|) |#1|)) (-15 -1894 ((-1 |#1| (-771)) |#3|)) (-15 -3780 (|#1| |#3|)) (-15 -3066 ((-3 |#3| "failed") |#1|)) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1|)) (-15 -2108 ((-644 (-771)) |#1| (-644 |#4|))) (-15 -2108 ((-771) |#1| |#4|)) (-15 -3780 (|#1| |#4|)) (-15 -3066 ((-3 |#4| "failed") |#1|)) (-15 -2095 (|#1| |#1| (-644 |#4|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#4| |#1|)) (-15 -2095 (|#1| |#1| (-644 |#4|) (-644 |#2|))) (-15 -2095 (|#1| |#1| |#4| |#2|)) (-15 -2095 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| (-295 |#1|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2108 (|#5| |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -2578 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -2578 (|#1| |#1| |#4| (-771))) (-15 -2578 (|#1| |#1| (-644 |#4|))) (-15 -2578 (|#1| |#1| |#4|)) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|))) (-254 |#2| |#3| |#4| |#5|) (-1049) (-850) (-267 |#3|) (-793)) (T -253))
NIL
-(-10 -8 (-15 -2512 (|#1| |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2070 (|#1| |#1| (-644 |#3|) (-644 |#2|))) (-15 -2070 (|#1| |#1| |#3| |#2|)) (-15 -2070 (|#1| |#1| (-644 |#3|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#3| |#1|)) (-15 -3646 ((-1 |#1| (-771)) |#1|)) (-15 -3456 (|#1| |#1|)) (-15 -1960 (|#1| |#1|)) (-15 -3919 (|#4| |#1|)) (-15 -1726 ((-112) |#1|)) (-15 -3467 ((-771) |#1| |#3|)) (-15 -3598 ((-644 (-771)) |#1| |#3|)) (-15 -3467 ((-771) |#1|)) (-15 -3598 ((-644 (-771)) |#1|)) (-15 -3992 ((-771) |#1| |#3|)) (-15 -2716 ((-771) |#1|)) (-15 -2716 ((-771) |#1| |#3|)) (-15 -1496 ((-644 |#3|) |#1|)) (-15 -3646 ((-1 |#1| (-771)) |#3|)) (-15 -2512 (|#1| |#3|)) (-15 -2977 ((-3 |#3| "failed") |#1|)) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1|)) (-15 -3992 ((-644 (-771)) |#1| (-644 |#4|))) (-15 -3992 ((-771) |#1| |#4|)) (-15 -2512 (|#1| |#4|)) (-15 -2977 ((-3 |#4| "failed") |#1|)) (-15 -2070 (|#1| |#1| (-644 |#4|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#4| |#1|)) (-15 -2070 (|#1| |#1| (-644 |#4|) (-644 |#2|))) (-15 -2070 (|#1| |#1| |#4| |#2|)) (-15 -2070 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#1| |#1|)) (-15 -2070 (|#1| |#1| (-295 |#1|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -3992 (|#5| |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2862 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -2862 (|#1| |#1| |#4| (-771))) (-15 -2862 (|#1| |#1| (-644 |#4|))) (-15 -2862 (|#1| |#1| |#4|)) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-3598 (((-644 (-771)) $) 216) (((-644 (-771)) $ |#2|) 214)) (-3467 (((-771) $) 215) (((-771) $ |#2|) 213)) (-2540 (((-644 |#3|) $) 112)) (-2358 (((-1171 $) $ |#3|) 127) (((-1171 |#1|) $) 126)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 89 (|has| |#1| (-558)))) (-3653 (($ $) 90 (|has| |#1| (-558)))) (-2152 (((-112) $) 92 (|has| |#1| (-558)))) (-3678 (((-771) $) 114) (((-771) $ (-644 |#3|)) 113)) (-4126 (((-3 $ "failed") $ $) 20)) (-2055 (((-420 (-1171 $)) (-1171 $)) 102 (|has| |#1| (-909)))) (-2857 (($ $) 100 (|has| |#1| (-454)))) (-1370 (((-420 $) $) 99 (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 105 (|has| |#1| (-909)))) (-3456 (($ $) 209)) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#1| "failed") $) 166) (((-3 (-409 (-566)) "failed") $) 163 (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) 161 (|has| |#1| (-1038 (-566)))) (((-3 |#3| "failed") $) 138) (((-3 |#2| "failed") $) 223)) (-1756 ((|#1| $) 165) (((-409 (-566)) $) 164 (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) 162 (|has| |#1| (-1038 (-566)))) ((|#3| $) 139) ((|#2| $) 224)) (-1552 (($ $ $ |#3|) 110 (|has| |#1| (-172)))) (-3577 (($ $) 156)) (-1628 (((-689 (-566)) (-689 $)) 136 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 135 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 134) (((-689 |#1|) (-689 $)) 133)) (-1579 (((-3 $ "failed") $) 37)) (-4248 (($ $) 178 (|has| |#1| (-454))) (($ $ |#3|) 107 (|has| |#1| (-454)))) (-3567 (((-644 $) $) 111)) (-2635 (((-112) $) 98 (|has| |#1| (-909)))) (-2804 (($ $ |#1| |#4| $) 174)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 86 (-12 (|has| |#3| (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 85 (-12 (|has| |#3| (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-2716 (((-771) $ |#2|) 219) (((-771) $) 218)) (-2741 (((-112) $) 35)) (-3505 (((-771) $) 171)) (-2530 (($ (-1171 |#1|) |#3|) 119) (($ (-1171 $) |#3|) 118)) (-1363 (((-644 $) $) 128)) (-4367 (((-112) $) 154)) (-2519 (($ |#1| |#4|) 155) (($ $ |#3| (-771)) 121) (($ $ (-644 |#3|) (-644 (-771))) 120)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ |#3|) 122)) (-3251 ((|#4| $) 172) (((-771) $ |#3|) 124) (((-644 (-771)) $ (-644 |#3|)) 123)) (-2132 (($ (-1 |#4| |#4|) $) 173)) (-3077 (($ (-1 |#1| |#1|) $) 153)) (-3646 (((-1 $ (-771)) |#2|) 221) (((-1 $ (-771)) $) 208 (|has| |#1| (-233)))) (-3339 (((-3 |#3| "failed") $) 125)) (-3545 (($ $) 151)) (-3557 ((|#1| $) 150)) (-3919 ((|#3| $) 211)) (-2184 (($ (-644 $)) 96 (|has| |#1| (-454))) (($ $ $) 95 (|has| |#1| (-454)))) (-2878 (((-1157) $) 10)) (-1726 (((-112) $) 212)) (-2692 (((-3 (-644 $) "failed") $) 116)) (-1853 (((-3 (-644 $) "failed") $) 117)) (-3285 (((-3 (-2 (|:| |var| |#3|) (|:| -3250 (-771))) "failed") $) 115)) (-1960 (($ $) 210)) (-4033 (((-1119) $) 11)) (-2636 (((-112) $) 168)) (-3531 ((|#1| $) 169)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 97 (|has| |#1| (-454)))) (-2222 (($ (-644 $)) 94 (|has| |#1| (-454))) (($ $ $) 93 (|has| |#1| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) 104 (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) 103 (|has| |#1| (-909)))) (-2391 (((-420 $) $) 101 (|has| |#1| (-909)))) (-2972 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-558)))) (-2070 (($ $ (-644 (-295 $))) 147) (($ $ (-295 $)) 146) (($ $ $ $) 145) (($ $ (-644 $) (-644 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-644 |#3|) (-644 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-644 |#3|) (-644 $)) 140) (($ $ |#2| $) 207 (|has| |#1| (-233))) (($ $ (-644 |#2|) (-644 $)) 206 (|has| |#1| (-233))) (($ $ |#2| |#1|) 205 (|has| |#1| (-233))) (($ $ (-644 |#2|) (-644 |#1|)) 204 (|has| |#1| (-233)))) (-2408 (($ $ |#3|) 109 (|has| |#1| (-172)))) (-2862 (($ $ |#3|) 46) (($ $ (-644 |#3|)) 45) (($ $ |#3| (-771)) 44) (($ $ (-644 |#3|) (-644 (-771))) 43) (($ $) 240 (|has| |#1| (-233))) (($ $ (-771)) 238 (|has| |#1| (-233))) (($ $ (-1175)) 236 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 235 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 234 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 233 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-1496 (((-644 |#2|) $) 220)) (-3992 ((|#4| $) 152) (((-771) $ |#3|) 132) (((-644 (-771)) $ (-644 |#3|)) 131) (((-771) $ |#2|) 217)) (-3134 (((-892 (-381)) $) 84 (-12 (|has| |#3| (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) 83 (-12 (|has| |#3| (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) 82 (-12 (|has| |#3| (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3181 ((|#1| $) 177 (|has| |#1| (-454))) (($ $ |#3|) 108 (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 106 (-2438 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ |#2|) 222) (($ (-409 (-566))) 80 (-2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566)))))) (($ $) 87 (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) 170)) (-2022 ((|#1| $ |#4|) 157) (($ $ |#3| (-771)) 130) (($ $ (-644 |#3|) (-644 (-771))) 129)) (-3842 (((-3 $ "failed") $) 81 (-2805 (-2438 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) 32 T CONST)) (-2468 (($ $ $ (-771)) 175 (|has| |#1| (-172)))) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 91 (|has| |#1| (-558)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ |#3|) 42) (($ $ (-644 |#3|)) 41) (($ $ |#3| (-771)) 40) (($ $ (-644 |#3|) (-644 (-771))) 39) (($ $) 239 (|has| |#1| (-233))) (($ $ (-771)) 237 (|has| |#1| (-233))) (($ $ (-1175)) 232 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 231 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 230 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 229 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 228) (($ $ (-1 |#1| |#1|)) 227)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 158 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 160 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 159 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
+(-10 -8 (-15 -3780 (|#1| |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -2095 (|#1| |#1| (-644 |#3|) (-644 |#2|))) (-15 -2095 (|#1| |#1| |#3| |#2|)) (-15 -2095 (|#1| |#1| (-644 |#3|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#3| |#1|)) (-15 -1894 ((-1 |#1| (-771)) |#1|)) (-15 -3759 (|#1| |#1|)) (-15 -1486 (|#1| |#1|)) (-15 -4144 (|#4| |#1|)) (-15 -3814 ((-112) |#1|)) (-15 -3856 ((-771) |#1| |#3|)) (-15 -2658 ((-644 (-771)) |#1| |#3|)) (-15 -3856 ((-771) |#1|)) (-15 -2658 ((-644 (-771)) |#1|)) (-15 -2108 ((-771) |#1| |#3|)) (-15 -3227 ((-771) |#1|)) (-15 -3227 ((-771) |#1| |#3|)) (-15 -3302 ((-644 |#3|) |#1|)) (-15 -1894 ((-1 |#1| (-771)) |#3|)) (-15 -3780 (|#1| |#3|)) (-15 -3066 ((-3 |#3| "failed") |#1|)) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1|)) (-15 -2108 ((-644 (-771)) |#1| (-644 |#4|))) (-15 -2108 ((-771) |#1| |#4|)) (-15 -3780 (|#1| |#4|)) (-15 -3066 ((-3 |#4| "failed") |#1|)) (-15 -2095 (|#1| |#1| (-644 |#4|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#4| |#1|)) (-15 -2095 (|#1| |#1| (-644 |#4|) (-644 |#2|))) (-15 -2095 (|#1| |#1| |#4| |#2|)) (-15 -2095 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| (-295 |#1|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2108 (|#5| |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -2578 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -2578 (|#1| |#1| |#4| (-771))) (-15 -2578 (|#1| |#1| (-644 |#4|))) (-15 -2578 (|#1| |#1| |#4|)) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2658 (((-644 (-771)) $) 216) (((-644 (-771)) $ |#2|) 214)) (-3856 (((-771) $) 215) (((-771) $ |#2|) 213)) (-2608 (((-644 |#3|) $) 112)) (-2438 (((-1171 $) $ |#3|) 127) (((-1171 |#1|) $) 126)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 89 (|has| |#1| (-558)))) (-1968 (($ $) 90 (|has| |#1| (-558)))) (-2644 (((-112) $) 92 (|has| |#1| (-558)))) (-2207 (((-771) $) 114) (((-771) $ (-644 |#3|)) 113)) (-4014 (((-3 $ "failed") $ $) 20)) (-4077 (((-420 (-1171 $)) (-1171 $)) 102 (|has| |#1| (-909)))) (-2179 (($ $) 100 (|has| |#1| (-454)))) (-3271 (((-420 $) $) 99 (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 105 (|has| |#1| (-909)))) (-3759 (($ $) 209)) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#1| "failed") $) 166) (((-3 (-409 (-566)) "failed") $) 163 (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) 161 (|has| |#1| (-1038 (-566)))) (((-3 |#3| "failed") $) 138) (((-3 |#2| "failed") $) 223)) (-1867 ((|#1| $) 165) (((-409 (-566)) $) 164 (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) 162 (|has| |#1| (-1038 (-566)))) ((|#3| $) 139) ((|#2| $) 224)) (-2662 (($ $ $ |#3|) 110 (|has| |#1| (-172)))) (-3645 (($ $) 156)) (-2210 (((-689 (-566)) (-689 $)) 136 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 135 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 134) (((-689 |#1|) (-689 $)) 133)) (-2928 (((-3 $ "failed") $) 37)) (-2755 (($ $) 178 (|has| |#1| (-454))) (($ $ |#3|) 107 (|has| |#1| (-454)))) (-3635 (((-644 $) $) 111)) (-1784 (((-112) $) 98 (|has| |#1| (-909)))) (-2871 (($ $ |#1| |#4| $) 174)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 86 (-12 (|has| |#3| (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 85 (-12 (|has| |#3| (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3227 (((-771) $ |#2|) 219) (((-771) $) 218)) (-3466 (((-112) $) 35)) (-4230 (((-771) $) 171)) (-2597 (($ (-1171 |#1|) |#3|) 119) (($ (-1171 $) |#3|) 118)) (-2330 (((-644 $) $) 128)) (-1453 (((-112) $) 154)) (-2585 (($ |#1| |#4|) 155) (($ $ |#3| (-771)) 121) (($ $ (-644 |#3|) (-644 (-771))) 120)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ |#3|) 122)) (-2466 ((|#4| $) 172) (((-771) $ |#3|) 124) (((-644 (-771)) $ (-644 |#3|)) 123)) (-2443 (($ (-1 |#4| |#4|) $) 173)) (-3152 (($ (-1 |#1| |#1|) $) 153)) (-1894 (((-1 $ (-771)) |#2|) 221) (((-1 $ (-771)) $) 208 (|has| |#1| (-233)))) (-1984 (((-3 |#3| "failed") $) 125)) (-3614 (($ $) 151)) (-3626 ((|#1| $) 150)) (-4144 ((|#3| $) 211)) (-2197 (($ (-644 $)) 96 (|has| |#1| (-454))) (($ $ $) 95 (|has| |#1| (-454)))) (-2402 (((-1157) $) 10)) (-3814 (((-112) $) 212)) (-4201 (((-3 (-644 $) "failed") $) 116)) (-2657 (((-3 (-644 $) "failed") $) 117)) (-2749 (((-3 (-2 (|:| |var| |#3|) (|:| -2456 (-771))) "failed") $) 115)) (-1486 (($ $) 210)) (-4056 (((-1119) $) 11)) (-3595 (((-112) $) 168)) (-3604 ((|#1| $) 169)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 97 (|has| |#1| (-454)))) (-2235 (($ (-644 $)) 94 (|has| |#1| (-454))) (($ $ $) 93 (|has| |#1| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) 104 (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) 103 (|has| |#1| (-909)))) (-2473 (((-420 $) $) 101 (|has| |#1| (-909)))) (-2997 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-558)))) (-2095 (($ $ (-644 (-295 $))) 147) (($ $ (-295 $)) 146) (($ $ $ $) 145) (($ $ (-644 $) (-644 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-644 |#3|) (-644 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-644 |#3|) (-644 $)) 140) (($ $ |#2| $) 207 (|has| |#1| (-233))) (($ $ (-644 |#2|) (-644 $)) 206 (|has| |#1| (-233))) (($ $ |#2| |#1|) 205 (|has| |#1| (-233))) (($ $ (-644 |#2|) (-644 |#1|)) 204 (|has| |#1| (-233)))) (-3309 (($ $ |#3|) 109 (|has| |#1| (-172)))) (-2578 (($ $ |#3|) 46) (($ $ (-644 |#3|)) 45) (($ $ |#3| (-771)) 44) (($ $ (-644 |#3|) (-644 (-771))) 43) (($ $) 240 (|has| |#1| (-233))) (($ $ (-771)) 238 (|has| |#1| (-233))) (($ $ (-1175)) 236 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 235 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 234 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 233 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 226) (($ $ (-1 |#1| |#1|)) 225)) (-3302 (((-644 |#2|) $) 220)) (-2108 ((|#4| $) 152) (((-771) $ |#3|) 132) (((-644 (-771)) $ (-644 |#3|)) 131) (((-771) $ |#2|) 217)) (-3204 (((-892 (-381)) $) 84 (-12 (|has| |#3| (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) 83 (-12 (|has| |#3| (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) 82 (-12 (|has| |#3| (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3042 ((|#1| $) 177 (|has| |#1| (-454))) (($ $ |#3|) 108 (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 106 (-2447 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ |#2|) 222) (($ (-409 (-566))) 80 (-2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566)))))) (($ $) 87 (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) 170)) (-3756 ((|#1| $ |#4|) 157) (($ $ |#3| (-771)) 130) (($ $ (-644 |#3|) (-644 (-771))) 129)) (-3226 (((-3 $ "failed") $) 81 (-2805 (-2447 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) 32 T CONST)) (-2629 (($ $ $ (-771)) 175 (|has| |#1| (-172)))) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 91 (|has| |#1| (-558)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ |#3|) 42) (($ $ (-644 |#3|)) 41) (($ $ |#3| (-771)) 40) (($ $ (-644 |#3|) (-644 (-771))) 39) (($ $) 239 (|has| |#1| (-233))) (($ $ (-771)) 237 (|has| |#1| (-233))) (($ $ (-1175)) 232 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 231 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 230 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 229 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 228) (($ $ (-1 |#1| |#1|)) 227)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 158 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 160 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 159 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
(((-254 |#1| |#2| |#3| |#4|) (-140) (-1049) (-850) (-267 |t#2|) (-793)) (T -254))
-((-3646 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-1 *1 (-771))) (-4 *1 (-254 *4 *3 *5 *6)))) (-1496 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-644 *4)))) (-2716 (*1 *2 *1 *3) (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771)))) (-2716 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-771)))) (-3992 (*1 *2 *1 *3) (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771)))) (-3598 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-644 (-771))))) (-3467 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-771)))) (-3598 (*1 *2 *1 *3) (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-644 (-771))))) (-3467 (*1 *2 *1 *3) (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771)))) (-1726 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-112)))) (-3919 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-793)) (-4 *2 (-267 *4)))) (-1960 (*1 *1 *1) (-12 (-4 *1 (-254 *2 *3 *4 *5)) (-4 *2 (-1049)) (-4 *3 (-850)) (-4 *4 (-267 *3)) (-4 *5 (-793)))) (-3456 (*1 *1 *1) (-12 (-4 *1 (-254 *2 *3 *4 *5)) (-4 *2 (-1049)) (-4 *3 (-850)) (-4 *4 (-267 *3)) (-4 *5 (-793)))) (-3646 (*1 *2 *1) (-12 (-4 *3 (-233)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-1 *1 (-771))) (-4 *1 (-254 *3 *4 *5 *6)))))
-(-13 (-949 |t#1| |t#4| |t#3|) (-231 |t#1|) (-1038 |t#2|) (-10 -8 (-15 -3646 ((-1 $ (-771)) |t#2|)) (-15 -1496 ((-644 |t#2|) $)) (-15 -2716 ((-771) $ |t#2|)) (-15 -2716 ((-771) $)) (-15 -3992 ((-771) $ |t#2|)) (-15 -3598 ((-644 (-771)) $)) (-15 -3467 ((-771) $)) (-15 -3598 ((-644 (-771)) $ |t#2|)) (-15 -3467 ((-771) $ |t#2|)) (-15 -1726 ((-112) $)) (-15 -3919 (|t#3| $)) (-15 -1960 ($ $)) (-15 -3456 ($ $)) (IF (|has| |t#1| (-233)) (PROGN (-6 (-516 |t#2| |t#1|)) (-6 (-516 |t#2| $)) (-6 (-310 $)) (-15 -3646 ((-1 $ (-771)) $))) |%noBranch|)))
+((-1894 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-1 *1 (-771))) (-4 *1 (-254 *4 *3 *5 *6)))) (-3302 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-644 *4)))) (-3227 (*1 *2 *1 *3) (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771)))) (-3227 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-771)))) (-2108 (*1 *2 *1 *3) (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771)))) (-2658 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-644 (-771))))) (-3856 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-771)))) (-2658 (*1 *2 *1 *3) (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-644 (-771))))) (-3856 (*1 *2 *1 *3) (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771)))) (-3814 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-112)))) (-4144 (*1 *2 *1) (-12 (-4 *1 (-254 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-793)) (-4 *2 (-267 *4)))) (-1486 (*1 *1 *1) (-12 (-4 *1 (-254 *2 *3 *4 *5)) (-4 *2 (-1049)) (-4 *3 (-850)) (-4 *4 (-267 *3)) (-4 *5 (-793)))) (-3759 (*1 *1 *1) (-12 (-4 *1 (-254 *2 *3 *4 *5)) (-4 *2 (-1049)) (-4 *3 (-850)) (-4 *4 (-267 *3)) (-4 *5 (-793)))) (-1894 (*1 *2 *1) (-12 (-4 *3 (-233)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-1 *1 (-771))) (-4 *1 (-254 *3 *4 *5 *6)))))
+(-13 (-949 |t#1| |t#4| |t#3|) (-231 |t#1|) (-1038 |t#2|) (-10 -8 (-15 -1894 ((-1 $ (-771)) |t#2|)) (-15 -3302 ((-644 |t#2|) $)) (-15 -3227 ((-771) $ |t#2|)) (-15 -3227 ((-771) $)) (-15 -2108 ((-771) $ |t#2|)) (-15 -2658 ((-644 (-771)) $)) (-15 -3856 ((-771) $)) (-15 -2658 ((-644 (-771)) $ |t#2|)) (-15 -3856 ((-771) $ |t#2|)) (-15 -3814 ((-112) $)) (-15 -4144 (|t#3| $)) (-15 -1486 ($ $)) (-15 -3759 ($ $)) (IF (|has| |t#1| (-233)) (PROGN (-6 (-516 |t#2| |t#1|)) (-6 (-516 |t#2| $)) (-6 (-310 $)) (-15 -1894 ((-1 $ (-771)) $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#4|) . T) ((-25) . T) ((-38 #0=(-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-409 (-566)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) -2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566))))) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-616 |#2|) . T) ((-616 |#3|) . T) ((-616 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-614 (-538)) -12 (|has| |#1| (-614 (-538))) (|has| |#3| (-614 (-538)))) ((-614 (-892 (-381))) -12 (|has| |#1| (-614 (-892 (-381)))) (|has| |#3| (-614 (-892 (-381))))) ((-614 (-892 (-566))) -12 (|has| |#1| (-614 (-892 (-566)))) (|has| |#3| (-614 (-892 (-566))))) ((-231 |#1|) . T) ((-233) |has| |#1| (-233)) ((-291) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-310 $) . T) ((-327 |#1| |#4|) . T) ((-379 |#1|) . T) ((-413 |#1|) . T) ((-454) -2805 (|has| |#1| (-909)) (|has| |#1| (-454))) ((-516 |#2| |#1|) |has| |#1| (-233)) ((-516 |#2| $) |has| |#1| (-233)) ((-516 |#3| |#1|) . T) ((-516 |#3| $) . T) ((-516 $ $) . T) ((-558) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-646 #0#) |has| |#1| (-38 (-409 (-566)))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) |has| |#1| (-38 (-409 (-566)))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) |has| |#1| (-38 (-409 (-566)))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-639 (-566)) |has| |#1| (-639 (-566))) ((-639 |#1|) . T) ((-717 #0#) |has| |#1| (-38 (-409 (-566)))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-726) . T) ((-900 (-1175)) |has| |#1| (-900 (-1175))) ((-900 |#3|) . T) ((-886 (-381)) -12 (|has| |#1| (-886 (-381))) (|has| |#3| (-886 (-381)))) ((-886 (-566)) -12 (|has| |#1| (-886 (-566))) (|has| |#3| (-886 (-566)))) ((-949 |#1| |#4| |#3|) . T) ((-909) |has| |#1| (-909)) ((-1038 (-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T) ((-1038 |#2|) . T) ((-1038 |#3|) . T) ((-1051 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-1056 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) |has| |#1| (-909)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2373 ((|#1| $) 55)) (-3877 ((|#1| $) 45)) (-3081 (((-112) $ (-771)) 8)) (-2342 (($) 7 T CONST)) (-3585 (($ $) 61)) (-2736 (($ $) 49)) (-1774 ((|#1| |#1| $) 47)) (-3464 ((|#1| $) 46)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-3822 (((-771) $) 62)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3119 ((|#1| $) 40)) (-2676 ((|#1| |#1| $) 53)) (-3036 ((|#1| |#1| $) 52)) (-4265 (($ |#1| $) 41)) (-3173 (((-771) $) 56)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4395 ((|#1| $) 63)) (-3318 ((|#1| $) 51)) (-2008 ((|#1| $) 50)) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-1735 ((|#1| |#1| $) 59)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-3663 ((|#1| $) 60)) (-2269 (($) 58) (($ (-644 |#1|)) 57)) (-2753 (((-771) $) 44)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-2156 ((|#1| $) 54)) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) 43)) (-2529 ((|#1| $) 64)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-4175 ((|#1| $) 55)) (-3918 ((|#1| $) 45)) (-1574 (((-112) $ (-771)) 8)) (-3877 (($) 7 T CONST)) (-2547 (($ $) 61)) (-3416 (($ $) 49)) (-3082 ((|#1| |#1| $) 47)) (-3827 ((|#1| $) 46)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-3945 (((-771) $) 62)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3765 ((|#1| $) 40)) (-4044 ((|#1| |#1| $) 53)) (-4296 ((|#1| |#1| $) 52)) (-2903 (($ |#1| $) 41)) (-3906 (((-771) $) 56)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-1763 ((|#1| $) 63)) (-1820 ((|#1| $) 51)) (-3641 ((|#1| $) 50)) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3894 ((|#1| |#1| $) 59)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-2069 ((|#1| $) 60)) (-4353 (($) 58) (($ (-644 |#1|)) 57)) (-1677 (((-771) $) 44)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-2682 ((|#1| $) 54)) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) 43)) (-1980 ((|#1| $) 64)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-255 |#1|) (-140) (-1214)) (T -255))
-((-2269 (*1 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-2269 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-255 *3)))) (-3173 (*1 *2 *1) (-12 (-4 *1 (-255 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))) (-2373 (*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-2156 (*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-2676 (*1 *2 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-3036 (*1 *2 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-3318 (*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-2008 (*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-2736 (*1 *1 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
-(-13 (-1120 |t#1|) (-995 |t#1|) (-10 -8 (-15 -2269 ($)) (-15 -2269 ($ (-644 |t#1|))) (-15 -3173 ((-771) $)) (-15 -2373 (|t#1| $)) (-15 -2156 (|t#1| $)) (-15 -2676 (|t#1| |t#1| $)) (-15 -3036 (|t#1| |t#1| $)) (-15 -3318 (|t#1| $)) (-15 -2008 (|t#1| $)) (-15 -2736 ($ $))))
+((-4353 (*1 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-4353 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-255 *3)))) (-3906 (*1 *2 *1) (-12 (-4 *1 (-255 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))) (-4175 (*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-2682 (*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-4044 (*1 *2 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-4296 (*1 *2 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-1820 (*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-3641 (*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))) (-3416 (*1 *1 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
+(-13 (-1120 |t#1|) (-995 |t#1|) (-10 -8 (-15 -4353 ($)) (-15 -4353 ($ (-644 |t#1|))) (-15 -3906 ((-771) $)) (-15 -4175 (|t#1| $)) (-15 -2682 (|t#1| $)) (-15 -4044 (|t#1| |t#1| $)) (-15 -4296 (|t#1| |t#1| $)) (-15 -1820 (|t#1| $)) (-15 -3641 (|t#1| $)) (-15 -3416 ($ $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-995 |#1|) . T) ((-1099) |has| |#1| (-1099)) ((-1120 |#1|) . T) ((-1214) . T))
-((-2339 (((-1 (-943 (-225)) (-225) (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225))) 153)) (-3141 (((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381))) 173) (((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 171) (((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381))) 176) (((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 172) (((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381))) 164) (((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 163) (((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381))) 145) (((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264))) 143) (((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381))) 144) (((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264))) 141)) (-3094 (((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381))) 175) (((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 174) (((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381))) 178) (((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 177) (((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381))) 166) (((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 165) (((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381))) 151) (((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264))) 150) (((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381))) 149) (((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264))) 148) (((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381))) 113) (((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264))) 112) (((-1265) (-1 (-225) (-225)) (-1093 (-381))) 107) (((-1265) (-1 (-225) (-225)) (-1093 (-381)) (-644 (-264))) 105)))
-(((-256) (-10 -7 (-15 -3094 ((-1265) (-1 (-225) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1265) (-1 (-225) (-225)) (-1093 (-381)))) (-15 -3094 ((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3094 ((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3094 ((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381)))) (-15 -3141 ((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3141 ((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381)))) (-15 -3094 ((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3141 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3094 ((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3141 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3094 ((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)))) (-15 -3141 ((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)))) (-15 -2339 ((-1 (-943 (-225)) (-225) (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))) (T -256))
-((-2339 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-943 (-225)) (-225) (-225))) (-5 *3 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-256)))) (-3141 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-882 (-1 (-225) (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3141 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-882 (-1 (-225) (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-882 (-1 (-225) (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-882 (-1 (-225) (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3141 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3141 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3141 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3141 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3141 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-943 (-225)) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3141 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-943 (-225)) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3141 (*1 *2 *3 *4) (-12 (-5 *3 (-879 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3141 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-879 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-943 (-225)) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-943 (-225)) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-879 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-879 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-877 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *2 (-1265)) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-877 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1265)) (-5 *1 (-256)))) (-3094 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-256)))))
-(-10 -7 (-15 -3094 ((-1265) (-1 (-225) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1265) (-1 (-225) (-225)) (-1093 (-381)))) (-15 -3094 ((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3094 ((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3094 ((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381)))) (-15 -3141 ((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3141 ((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381)))) (-15 -3094 ((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3141 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3094 ((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3141 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3094 ((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)))) (-15 -3141 ((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)))) (-15 -2339 ((-1 (-943 (-225)) (-225) (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))
-((-3094 (((-1265) (-295 |#2|) (-1175) (-1175) (-644 (-264))) 101)))
-(((-257 |#1| |#2|) (-10 -7 (-15 -3094 ((-1265) (-295 |#2|) (-1175) (-1175) (-644 (-264))))) (-13 (-558) (-850) (-1038 (-566))) (-432 |#1|)) (T -257))
-((-3094 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-295 *7)) (-5 *4 (-1175)) (-5 *5 (-644 (-264))) (-4 *7 (-432 *6)) (-4 *6 (-13 (-558) (-850) (-1038 (-566)))) (-5 *2 (-1265)) (-5 *1 (-257 *6 *7)))))
-(-10 -7 (-15 -3094 ((-1265) (-295 |#2|) (-1175) (-1175) (-644 (-264)))))
-((-2239 (((-566) (-566)) 73)) (-2253 (((-566) (-566)) 74)) (-3845 (((-225) (-225)) 75)) (-1941 (((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225))) 72)) (-4208 (((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225)) (-112)) 70)))
-(((-258) (-10 -7 (-15 -4208 ((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225)) (-112))) (-15 -1941 ((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225)))) (-15 -2239 ((-566) (-566))) (-15 -2253 ((-566) (-566))) (-15 -3845 ((-225) (-225))))) (T -258))
-((-3845 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-258)))) (-2253 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-258)))) (-2239 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-258)))) (-1941 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1093 (-225))) (-5 *2 (-1266)) (-5 *1 (-258)))) (-4208 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1093 (-225))) (-5 *5 (-112)) (-5 *2 (-1266)) (-5 *1 (-258)))))
-(-10 -7 (-15 -4208 ((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225)) (-112))) (-15 -1941 ((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225)))) (-15 -2239 ((-566) (-566))) (-15 -2253 ((-566) (-566))) (-15 -3845 ((-225) (-225))))
-((-2512 (((-1091 (-381)) (-1091 (-317 |#1|))) 16)))
-(((-259 |#1|) (-10 -7 (-15 -2512 ((-1091 (-381)) (-1091 (-317 |#1|))))) (-13 (-850) (-558) (-614 (-381)))) (T -259))
-((-2512 (*1 *2 *3) (-12 (-5 *3 (-1091 (-317 *4))) (-4 *4 (-13 (-850) (-558) (-614 (-381)))) (-5 *2 (-1091 (-381))) (-5 *1 (-259 *4)))))
-(-10 -7 (-15 -2512 ((-1091 (-381)) (-1091 (-317 |#1|)))))
-((-3141 (((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381))) 75) (((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264))) 74) (((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381))) 65) (((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264))) 64) (((-1132 (-225)) (-879 |#1|) (-1091 (-381))) 56) (((-1132 (-225)) (-879 |#1|) (-1091 (-381)) (-644 (-264))) 55)) (-3094 (((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381))) 78) (((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264))) 77) (((-1266) |#1| (-1091 (-381)) (-1091 (-381))) 68) (((-1266) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264))) 67) (((-1266) (-879 |#1|) (-1091 (-381))) 60) (((-1266) (-879 |#1|) (-1091 (-381)) (-644 (-264))) 59) (((-1265) (-877 |#1|) (-1091 (-381))) 47) (((-1265) (-877 |#1|) (-1091 (-381)) (-644 (-264))) 46) (((-1265) |#1| (-1091 (-381))) 38) (((-1265) |#1| (-1091 (-381)) (-644 (-264))) 36)))
-(((-260 |#1|) (-10 -7 (-15 -3094 ((-1265) |#1| (-1091 (-381)) (-644 (-264)))) (-15 -3094 ((-1265) |#1| (-1091 (-381)))) (-15 -3094 ((-1265) (-877 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3094 ((-1265) (-877 |#1|) (-1091 (-381)))) (-15 -3094 ((-1266) (-879 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-879 |#1|) (-1091 (-381)))) (-15 -3141 ((-1132 (-225)) (-879 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-879 |#1|) (-1091 (-381)))) (-15 -3094 ((-1266) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) |#1| (-1091 (-381)) (-1091 (-381)))) (-15 -3141 ((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381)))) (-15 -3094 ((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381)))) (-15 -3141 ((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381))))) (-13 (-614 (-538)) (-1099))) (T -260))
-((-3141 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-882 *5)) (-5 *4 (-1091 (-381))) (-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *5)))) (-3141 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-882 *6)) (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-4 *6 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *6)))) (-3094 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-882 *5)) (-5 *4 (-1091 (-381))) (-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1266)) (-5 *1 (-260 *5)))) (-3094 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-882 *6)) (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-4 *6 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1266)) (-5 *1 (-260 *6)))) (-3141 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1091 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))) (-3141 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))) (-3094 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1091 (-381))) (-5 *2 (-1266)) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))) (-3094 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))) (-3141 (*1 *2 *3 *4) (-12 (-5 *3 (-879 *5)) (-5 *4 (-1091 (-381))) (-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *5)))) (-3141 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-879 *6)) (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-4 *6 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *6)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-879 *5)) (-5 *4 (-1091 (-381))) (-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1266)) (-5 *1 (-260 *5)))) (-3094 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-879 *6)) (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-4 *6 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1266)) (-5 *1 (-260 *6)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-877 *5)) (-5 *4 (-1091 (-381))) (-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1265)) (-5 *1 (-260 *5)))) (-3094 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-877 *6)) (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-4 *6 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1265)) (-5 *1 (-260 *6)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *4 (-1091 (-381))) (-5 *2 (-1265)) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))) (-3094 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))))
-(-10 -7 (-15 -3094 ((-1265) |#1| (-1091 (-381)) (-644 (-264)))) (-15 -3094 ((-1265) |#1| (-1091 (-381)))) (-15 -3094 ((-1265) (-877 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3094 ((-1265) (-877 |#1|) (-1091 (-381)))) (-15 -3094 ((-1266) (-879 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-879 |#1|) (-1091 (-381)))) (-15 -3141 ((-1132 (-225)) (-879 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-879 |#1|) (-1091 (-381)))) (-15 -3094 ((-1266) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) |#1| (-1091 (-381)) (-1091 (-381)))) (-15 -3141 ((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381)))) (-15 -3094 ((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3094 ((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381)))) (-15 -3141 ((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3141 ((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381)))))
-((-3094 (((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225)) (-644 (-264))) 23) (((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225))) 24) (((-1265) (-644 (-943 (-225))) (-644 (-264))) 16) (((-1265) (-644 (-943 (-225)))) 17) (((-1265) (-644 (-225)) (-644 (-225)) (-644 (-264))) 20) (((-1265) (-644 (-225)) (-644 (-225))) 21)))
-(((-261) (-10 -7 (-15 -3094 ((-1265) (-644 (-225)) (-644 (-225)))) (-15 -3094 ((-1265) (-644 (-225)) (-644 (-225)) (-644 (-264)))) (-15 -3094 ((-1265) (-644 (-943 (-225))))) (-15 -3094 ((-1265) (-644 (-943 (-225))) (-644 (-264)))) (-15 -3094 ((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225)))) (-15 -3094 ((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225)) (-644 (-264)))))) (T -261))
-((-3094 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-644 (-225))) (-5 *4 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-261)))) (-3094 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-1266)) (-5 *1 (-261)))) (-3094 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-943 (-225)))) (-5 *4 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-261)))) (-3094 (*1 *2 *3) (-12 (-5 *3 (-644 (-943 (-225)))) (-5 *2 (-1265)) (-5 *1 (-261)))) (-3094 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-644 (-225))) (-5 *4 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-261)))) (-3094 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-1265)) (-5 *1 (-261)))))
-(-10 -7 (-15 -3094 ((-1265) (-644 (-225)) (-644 (-225)))) (-15 -3094 ((-1265) (-644 (-225)) (-644 (-225)) (-644 (-264)))) (-15 -3094 ((-1265) (-644 (-943 (-225))))) (-15 -3094 ((-1265) (-644 (-943 (-225))) (-644 (-264)))) (-15 -3094 ((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225)))) (-15 -3094 ((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225)) (-644 (-264)))))
-((-2709 (((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-644 (-264)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 25)) (-2096 (((-921) (-644 (-264)) (-921)) 52)) (-2217 (((-921) (-644 (-264)) (-921)) 51)) (-3174 (((-644 (-381)) (-644 (-264)) (-644 (-381))) 68)) (-2425 (((-381) (-644 (-264)) (-381)) 57)) (-1306 (((-921) (-644 (-264)) (-921)) 53)) (-1898 (((-112) (-644 (-264)) (-112)) 27)) (-3348 (((-1157) (-644 (-264)) (-1157)) 19)) (-3409 (((-1157) (-644 (-264)) (-1157)) 26)) (-1772 (((-1132 (-225)) (-644 (-264))) 46)) (-1701 (((-644 (-1093 (-381))) (-644 (-264)) (-644 (-1093 (-381)))) 40)) (-4004 (((-874) (-644 (-264)) (-874)) 32)) (-1625 (((-874) (-644 (-264)) (-874)) 33)) (-1918 (((-1 (-943 (-225)) (-943 (-225))) (-644 (-264)) (-1 (-943 (-225)) (-943 (-225)))) 63)) (-4360 (((-112) (-644 (-264)) (-112)) 14)) (-1820 (((-112) (-644 (-264)) (-112)) 13)))
-(((-262) (-10 -7 (-15 -1820 ((-112) (-644 (-264)) (-112))) (-15 -4360 ((-112) (-644 (-264)) (-112))) (-15 -2709 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-644 (-264)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3348 ((-1157) (-644 (-264)) (-1157))) (-15 -3409 ((-1157) (-644 (-264)) (-1157))) (-15 -1898 ((-112) (-644 (-264)) (-112))) (-15 -4004 ((-874) (-644 (-264)) (-874))) (-15 -1625 ((-874) (-644 (-264)) (-874))) (-15 -1701 ((-644 (-1093 (-381))) (-644 (-264)) (-644 (-1093 (-381))))) (-15 -2217 ((-921) (-644 (-264)) (-921))) (-15 -2096 ((-921) (-644 (-264)) (-921))) (-15 -1772 ((-1132 (-225)) (-644 (-264)))) (-15 -1306 ((-921) (-644 (-264)) (-921))) (-15 -2425 ((-381) (-644 (-264)) (-381))) (-15 -1918 ((-1 (-943 (-225)) (-943 (-225))) (-644 (-264)) (-1 (-943 (-225)) (-943 (-225))))) (-15 -3174 ((-644 (-381)) (-644 (-264)) (-644 (-381)))))) (T -262))
-((-3174 (*1 *2 *3 *2) (-12 (-5 *2 (-644 (-381))) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1918 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-2425 (*1 *2 *3 *2) (-12 (-5 *2 (-381)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1306 (*1 *2 *3 *2) (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1772 (*1 *2 *3) (-12 (-5 *3 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-262)))) (-2096 (*1 *2 *3 *2) (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-2217 (*1 *2 *3 *2) (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1701 (*1 *2 *3 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1625 (*1 *2 *3 *2) (-12 (-5 *2 (-874)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-4004 (*1 *2 *3 *2) (-12 (-5 *2 (-874)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1898 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-3409 (*1 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-3348 (*1 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-2709 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-4360 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1820 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))))
-(-10 -7 (-15 -1820 ((-112) (-644 (-264)) (-112))) (-15 -4360 ((-112) (-644 (-264)) (-112))) (-15 -2709 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-644 (-264)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3348 ((-1157) (-644 (-264)) (-1157))) (-15 -3409 ((-1157) (-644 (-264)) (-1157))) (-15 -1898 ((-112) (-644 (-264)) (-112))) (-15 -4004 ((-874) (-644 (-264)) (-874))) (-15 -1625 ((-874) (-644 (-264)) (-874))) (-15 -1701 ((-644 (-1093 (-381))) (-644 (-264)) (-644 (-1093 (-381))))) (-15 -2217 ((-921) (-644 (-264)) (-921))) (-15 -2096 ((-921) (-644 (-264)) (-921))) (-15 -1772 ((-1132 (-225)) (-644 (-264)))) (-15 -1306 ((-921) (-644 (-264)) (-921))) (-15 -2425 ((-381) (-644 (-264)) (-381))) (-15 -1918 ((-1 (-943 (-225)) (-943 (-225))) (-644 (-264)) (-1 (-943 (-225)) (-943 (-225))))) (-15 -3174 ((-644 (-381)) (-644 (-264)) (-644 (-381)))))
-((-1554 (((-3 |#1| "failed") (-644 (-264)) (-1175)) 17)))
-(((-263 |#1|) (-10 -7 (-15 -1554 ((-3 |#1| "failed") (-644 (-264)) (-1175)))) (-1214)) (T -263))
-((-1554 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-644 (-264))) (-5 *4 (-1175)) (-5 *1 (-263 *2)) (-4 *2 (-1214)))))
-(-10 -7 (-15 -1554 ((-3 |#1| "failed") (-644 (-264)) (-1175))))
-((-2985 (((-112) $ $) NIL)) (-2709 (($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 24)) (-2096 (($ (-921)) 81)) (-2217 (($ (-921)) 80)) (-3803 (($ (-644 (-381))) 87)) (-2425 (($ (-381)) 66)) (-1306 (($ (-921)) 82)) (-1898 (($ (-112)) 33)) (-3348 (($ (-1157)) 28)) (-3409 (($ (-1157)) 29)) (-1772 (($ (-1132 (-225))) 76)) (-1701 (($ (-644 (-1093 (-381)))) 72)) (-4344 (($ (-644 (-1093 (-381)))) 68) (($ (-644 (-1093 (-409 (-566))))) 71)) (-3725 (($ (-381)) 38) (($ (-874)) 42)) (-1384 (((-112) (-644 $) (-1175)) 100)) (-1554 (((-3 (-52) "failed") (-644 $) (-1175)) 102)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1609 (($ (-381)) 43) (($ (-874)) 44)) (-2770 (($ (-1 (-943 (-225)) (-943 (-225)))) 65)) (-1918 (($ (-1 (-943 (-225)) (-943 (-225)))) 83)) (-1449 (($ (-1 (-225) (-225))) 48) (($ (-1 (-225) (-225) (-225))) 52) (($ (-1 (-225) (-225) (-225) (-225))) 56)) (-2512 (((-862) $) 93)) (-2571 (($ (-112)) 34) (($ (-644 (-1093 (-381)))) 60)) (-3122 (((-112) $ $) NIL)) (-1820 (($ (-112)) 35)) (-2940 (((-112) $ $) 97)))
-(((-264) (-13 (-1099) (-10 -8 (-15 -1820 ($ (-112))) (-15 -2571 ($ (-112))) (-15 -2709 ($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3348 ($ (-1157))) (-15 -3409 ($ (-1157))) (-15 -1898 ($ (-112))) (-15 -2571 ($ (-644 (-1093 (-381))))) (-15 -2770 ($ (-1 (-943 (-225)) (-943 (-225))))) (-15 -3725 ($ (-381))) (-15 -3725 ($ (-874))) (-15 -1609 ($ (-381))) (-15 -1609 ($ (-874))) (-15 -1449 ($ (-1 (-225) (-225)))) (-15 -1449 ($ (-1 (-225) (-225) (-225)))) (-15 -1449 ($ (-1 (-225) (-225) (-225) (-225)))) (-15 -2425 ($ (-381))) (-15 -4344 ($ (-644 (-1093 (-381))))) (-15 -4344 ($ (-644 (-1093 (-409 (-566)))))) (-15 -1701 ($ (-644 (-1093 (-381))))) (-15 -1772 ($ (-1132 (-225)))) (-15 -2217 ($ (-921))) (-15 -2096 ($ (-921))) (-15 -1306 ($ (-921))) (-15 -1918 ($ (-1 (-943 (-225)) (-943 (-225))))) (-15 -3803 ($ (-644 (-381)))) (-15 -1554 ((-3 (-52) "failed") (-644 $) (-1175))) (-15 -1384 ((-112) (-644 $) (-1175)))))) (T -264))
-((-1820 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264)))) (-2571 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264)))) (-2709 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *1 (-264)))) (-3348 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-264)))) (-3409 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-264)))) (-1898 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264)))) (-2571 (*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264)))) (-2770 (*1 *1 *2) (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *1 (-264)))) (-3725 (*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))) (-3725 (*1 *1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-264)))) (-1609 (*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))) (-1609 (*1 *1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-264)))) (-1449 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-264)))) (-1449 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-264)))) (-1449 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-264)))) (-2425 (*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))) (-4344 (*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264)))) (-4344 (*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-409 (-566))))) (-5 *1 (-264)))) (-1701 (*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264)))) (-1772 (*1 *1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-264)))) (-2217 (*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))) (-2096 (*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))) (-1306 (*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))) (-1918 (*1 *1 *2) (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *1 (-264)))) (-3803 (*1 *1 *2) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-264)))) (-1554 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-644 (-264))) (-5 *4 (-1175)) (-5 *2 (-52)) (-5 *1 (-264)))) (-1384 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-264))) (-5 *4 (-1175)) (-5 *2 (-112)) (-5 *1 (-264)))))
-(-13 (-1099) (-10 -8 (-15 -1820 ($ (-112))) (-15 -2571 ($ (-112))) (-15 -2709 ($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3348 ($ (-1157))) (-15 -3409 ($ (-1157))) (-15 -1898 ($ (-112))) (-15 -2571 ($ (-644 (-1093 (-381))))) (-15 -2770 ($ (-1 (-943 (-225)) (-943 (-225))))) (-15 -3725 ($ (-381))) (-15 -3725 ($ (-874))) (-15 -1609 ($ (-381))) (-15 -1609 ($ (-874))) (-15 -1449 ($ (-1 (-225) (-225)))) (-15 -1449 ($ (-1 (-225) (-225) (-225)))) (-15 -1449 ($ (-1 (-225) (-225) (-225) (-225)))) (-15 -2425 ($ (-381))) (-15 -4344 ($ (-644 (-1093 (-381))))) (-15 -4344 ($ (-644 (-1093 (-409 (-566)))))) (-15 -1701 ($ (-644 (-1093 (-381))))) (-15 -1772 ($ (-1132 (-225)))) (-15 -2217 ($ (-921))) (-15 -2096 ($ (-921))) (-15 -1306 ($ (-921))) (-15 -1918 ($ (-1 (-943 (-225)) (-943 (-225))))) (-15 -3803 ($ (-644 (-381)))) (-15 -1554 ((-3 (-52) "failed") (-644 $) (-1175))) (-15 -1384 ((-112) (-644 $) (-1175)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3598 (((-644 (-771)) $) NIL) (((-644 (-771)) $ |#2|) NIL)) (-3467 (((-771) $) NIL) (((-771) $ |#2|) NIL)) (-2540 (((-644 |#3|) $) NIL)) (-2358 (((-1171 $) $ |#3|) NIL) (((-1171 |#1|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 |#3|)) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2857 (($ $) NIL (|has| |#1| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-3456 (($ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1124 |#1| |#2|) "failed") $) 23)) (-1756 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1124 |#1| |#2|) $) NIL)) (-1552 (($ $ $ |#3|) NIL (|has| |#1| (-172)))) (-3577 (($ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#1| (-454))) (($ $ |#3|) NIL (|has| |#1| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#1| (-909)))) (-2804 (($ $ |#1| (-533 |#3|) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| |#1| (-886 (-381))) (|has| |#3| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| |#1| (-886 (-566))) (|has| |#3| (-886 (-566)))))) (-2716 (((-771) $ |#2|) NIL) (((-771) $) 10)) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-2530 (($ (-1171 |#1|) |#3|) NIL) (($ (-1171 $) |#3|) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-533 |#3|)) NIL) (($ $ |#3| (-771)) NIL) (($ $ (-644 |#3|) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ |#3|) NIL)) (-3251 (((-533 |#3|) $) NIL) (((-771) $ |#3|) NIL) (((-644 (-771)) $ (-644 |#3|)) NIL)) (-2132 (($ (-1 (-533 |#3|) (-533 |#3|)) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3646 (((-1 $ (-771)) |#2|) NIL) (((-1 $ (-771)) $) NIL (|has| |#1| (-233)))) (-3339 (((-3 |#3| "failed") $) NIL)) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-3919 ((|#3| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2878 (((-1157) $) NIL)) (-1726 (((-112) $) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| |#3|) (|:| -3250 (-771))) "failed") $) NIL)) (-1960 (($ $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 ((|#1| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-644 |#3|) (-644 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-644 |#3|) (-644 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-233))) (($ $ (-644 |#2|) (-644 $)) NIL (|has| |#1| (-233))) (($ $ |#2| |#1|) NIL (|has| |#1| (-233))) (($ $ (-644 |#2|) (-644 |#1|)) NIL (|has| |#1| (-233)))) (-2408 (($ $ |#3|) NIL (|has| |#1| (-172)))) (-2862 (($ $ |#3|) NIL) (($ $ (-644 |#3|)) NIL) (($ $ |#3| (-771)) NIL) (($ $ (-644 |#3|) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1496 (((-644 |#2|) $) NIL)) (-3992 (((-533 |#3|) $) NIL) (((-771) $ |#3|) NIL) (((-644 (-771)) $ (-644 |#3|)) NIL) (((-771) $ |#2|) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| |#1| (-614 (-892 (-381)))) (|has| |#3| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| |#1| (-614 (-892 (-566)))) (|has| |#3| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| |#1| (-614 (-538))) (|has| |#3| (-614 (-538)))))) (-3181 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ |#3|) NIL (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) 26) (($ |#3|) 25) (($ |#2|) NIL) (($ (-1124 |#1| |#2|)) 32) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-533 |#3|)) NIL) (($ $ |#3| (-771)) NIL) (($ $ (-644 |#3|) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ |#3|) NIL) (($ $ (-644 |#3|)) NIL) (($ $ |#3| (-771)) NIL) (($ $ (-644 |#3|) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-3845 (((-1 (-943 (-225)) (-225) (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225))) 153)) (-3212 (((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381))) 173) (((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 171) (((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381))) 176) (((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 172) (((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381))) 164) (((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 163) (((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381))) 145) (((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264))) 143) (((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381))) 144) (((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264))) 141)) (-3171 (((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381))) 175) (((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 174) (((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381))) 178) (((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 177) (((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381))) 166) (((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264))) 165) (((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381))) 151) (((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264))) 150) (((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381))) 149) (((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264))) 148) (((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381))) 113) (((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264))) 112) (((-1265) (-1 (-225) (-225)) (-1093 (-381))) 107) (((-1265) (-1 (-225) (-225)) (-1093 (-381)) (-644 (-264))) 105)))
+(((-256) (-10 -7 (-15 -3171 ((-1265) (-1 (-225) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1265) (-1 (-225) (-225)) (-1093 (-381)))) (-15 -3171 ((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3171 ((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3171 ((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381)))) (-15 -3212 ((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3212 ((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381)))) (-15 -3171 ((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3212 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3171 ((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3212 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3171 ((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)))) (-15 -3212 ((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)))) (-15 -3845 ((-1 (-943 (-225)) (-225) (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))) (T -256))
+((-3845 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-943 (-225)) (-225) (-225))) (-5 *3 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-256)))) (-3212 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-882 (-1 (-225) (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3212 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-882 (-1 (-225) (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-882 (-1 (-225) (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-882 (-1 (-225) (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3212 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3212 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3212 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3212 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3212 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-943 (-225)) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3212 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-943 (-225)) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3212 (*1 *2 *3 *4) (-12 (-5 *3 (-879 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3212 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-879 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-943 (-225)) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-943 (-225)) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4) (-12 (-5 *3 (-879 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-879 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4) (-12 (-5 *3 (-877 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *2 (-1265)) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-877 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *2 (-1265)) (-5 *1 (-256)))) (-3171 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-225) (-225))) (-5 *4 (-1093 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-256)))))
+(-10 -7 (-15 -3171 ((-1265) (-1 (-225) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1265) (-1 (-225) (-225)) (-1093 (-381)))) (-15 -3171 ((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1265) (-877 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3171 ((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-879 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3171 ((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-1 (-943 (-225)) (-225)) (-1093 (-381)))) (-15 -3212 ((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-879 (-1 (-225) (-225))) (-1093 (-381)))) (-15 -3212 ((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-1 (-943 (-225)) (-225)) (-1093 (-381)))) (-15 -3171 ((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3212 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3171 ((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3212 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-381)) (-1093 (-381)))) (-15 -3171 ((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)))) (-15 -3212 ((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-882 (-1 (-225) (-225) (-225))) (-1093 (-381)) (-1093 (-381)))) (-15 -3845 ((-1 (-943 (-225)) (-225) (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))
+((-3171 (((-1265) (-295 |#2|) (-1175) (-1175) (-644 (-264))) 101)))
+(((-257 |#1| |#2|) (-10 -7 (-15 -3171 ((-1265) (-295 |#2|) (-1175) (-1175) (-644 (-264))))) (-13 (-558) (-850) (-1038 (-566))) (-432 |#1|)) (T -257))
+((-3171 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-295 *7)) (-5 *4 (-1175)) (-5 *5 (-644 (-264))) (-4 *7 (-432 *6)) (-4 *6 (-13 (-558) (-850) (-1038 (-566)))) (-5 *2 (-1265)) (-5 *1 (-257 *6 *7)))))
+(-10 -7 (-15 -3171 ((-1265) (-295 |#2|) (-1175) (-1175) (-644 (-264)))))
+((-2199 (((-566) (-566)) 73)) (-2346 (((-566) (-566)) 74)) (-3259 (((-225) (-225)) 75)) (-2326 (((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225))) 72)) (-3598 (((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225)) (-112)) 70)))
+(((-258) (-10 -7 (-15 -3598 ((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225)) (-112))) (-15 -2326 ((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225)))) (-15 -2199 ((-566) (-566))) (-15 -2346 ((-566) (-566))) (-15 -3259 ((-225) (-225))))) (T -258))
+((-3259 (*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-258)))) (-2346 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-258)))) (-2199 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-258)))) (-2326 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1093 (-225))) (-5 *2 (-1266)) (-5 *1 (-258)))) (-3598 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1093 (-225))) (-5 *5 (-112)) (-5 *2 (-1266)) (-5 *1 (-258)))))
+(-10 -7 (-15 -3598 ((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225)) (-112))) (-15 -2326 ((-1266) (-1 (-169 (-225)) (-169 (-225))) (-1093 (-225)) (-1093 (-225)))) (-15 -2199 ((-566) (-566))) (-15 -2346 ((-566) (-566))) (-15 -3259 ((-225) (-225))))
+((-3780 (((-1091 (-381)) (-1091 (-317 |#1|))) 16)))
+(((-259 |#1|) (-10 -7 (-15 -3780 ((-1091 (-381)) (-1091 (-317 |#1|))))) (-13 (-850) (-558) (-614 (-381)))) (T -259))
+((-3780 (*1 *2 *3) (-12 (-5 *3 (-1091 (-317 *4))) (-4 *4 (-13 (-850) (-558) (-614 (-381)))) (-5 *2 (-1091 (-381))) (-5 *1 (-259 *4)))))
+(-10 -7 (-15 -3780 ((-1091 (-381)) (-1091 (-317 |#1|)))))
+((-3212 (((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381))) 75) (((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264))) 74) (((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381))) 65) (((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264))) 64) (((-1132 (-225)) (-879 |#1|) (-1091 (-381))) 56) (((-1132 (-225)) (-879 |#1|) (-1091 (-381)) (-644 (-264))) 55)) (-3171 (((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381))) 78) (((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264))) 77) (((-1266) |#1| (-1091 (-381)) (-1091 (-381))) 68) (((-1266) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264))) 67) (((-1266) (-879 |#1|) (-1091 (-381))) 60) (((-1266) (-879 |#1|) (-1091 (-381)) (-644 (-264))) 59) (((-1265) (-877 |#1|) (-1091 (-381))) 47) (((-1265) (-877 |#1|) (-1091 (-381)) (-644 (-264))) 46) (((-1265) |#1| (-1091 (-381))) 38) (((-1265) |#1| (-1091 (-381)) (-644 (-264))) 36)))
+(((-260 |#1|) (-10 -7 (-15 -3171 ((-1265) |#1| (-1091 (-381)) (-644 (-264)))) (-15 -3171 ((-1265) |#1| (-1091 (-381)))) (-15 -3171 ((-1265) (-877 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3171 ((-1265) (-877 |#1|) (-1091 (-381)))) (-15 -3171 ((-1266) (-879 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-879 |#1|) (-1091 (-381)))) (-15 -3212 ((-1132 (-225)) (-879 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-879 |#1|) (-1091 (-381)))) (-15 -3171 ((-1266) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) |#1| (-1091 (-381)) (-1091 (-381)))) (-15 -3212 ((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381)))) (-15 -3171 ((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381)))) (-15 -3212 ((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381))))) (-13 (-614 (-538)) (-1099))) (T -260))
+((-3212 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-882 *5)) (-5 *4 (-1091 (-381))) (-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *5)))) (-3212 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-882 *6)) (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-4 *6 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *6)))) (-3171 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-882 *5)) (-5 *4 (-1091 (-381))) (-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1266)) (-5 *1 (-260 *5)))) (-3171 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-882 *6)) (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-4 *6 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1266)) (-5 *1 (-260 *6)))) (-3212 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1091 (-381))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))) (-3212 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))) (-3171 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1091 (-381))) (-5 *2 (-1266)) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))) (-3171 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))) (-3212 (*1 *2 *3 *4) (-12 (-5 *3 (-879 *5)) (-5 *4 (-1091 (-381))) (-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *5)))) (-3212 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-879 *6)) (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-4 *6 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1132 (-225))) (-5 *1 (-260 *6)))) (-3171 (*1 *2 *3 *4) (-12 (-5 *3 (-879 *5)) (-5 *4 (-1091 (-381))) (-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1266)) (-5 *1 (-260 *5)))) (-3171 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-879 *6)) (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-4 *6 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1266)) (-5 *1 (-260 *6)))) (-3171 (*1 *2 *3 *4) (-12 (-5 *3 (-877 *5)) (-5 *4 (-1091 (-381))) (-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1265)) (-5 *1 (-260 *5)))) (-3171 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-877 *6)) (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-4 *6 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1265)) (-5 *1 (-260 *6)))) (-3171 (*1 *2 *3 *4) (-12 (-5 *4 (-1091 (-381))) (-5 *2 (-1265)) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))) (-3171 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1091 (-381))) (-5 *5 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-260 *3)) (-4 *3 (-13 (-614 (-538)) (-1099))))))
+(-10 -7 (-15 -3171 ((-1265) |#1| (-1091 (-381)) (-644 (-264)))) (-15 -3171 ((-1265) |#1| (-1091 (-381)))) (-15 -3171 ((-1265) (-877 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3171 ((-1265) (-877 |#1|) (-1091 (-381)))) (-15 -3171 ((-1266) (-879 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-879 |#1|) (-1091 (-381)))) (-15 -3212 ((-1132 (-225)) (-879 |#1|) (-1091 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-879 |#1|) (-1091 (-381)))) (-15 -3171 ((-1266) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) |#1| (-1091 (-381)) (-1091 (-381)))) (-15 -3212 ((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) |#1| (-1091 (-381)) (-1091 (-381)))) (-15 -3171 ((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3171 ((-1266) (-882 |#1|) (-1091 (-381)) (-1091 (-381)))) (-15 -3212 ((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381)) (-644 (-264)))) (-15 -3212 ((-1132 (-225)) (-882 |#1|) (-1091 (-381)) (-1091 (-381)))))
+((-3171 (((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225)) (-644 (-264))) 23) (((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225))) 24) (((-1265) (-644 (-943 (-225))) (-644 (-264))) 16) (((-1265) (-644 (-943 (-225)))) 17) (((-1265) (-644 (-225)) (-644 (-225)) (-644 (-264))) 20) (((-1265) (-644 (-225)) (-644 (-225))) 21)))
+(((-261) (-10 -7 (-15 -3171 ((-1265) (-644 (-225)) (-644 (-225)))) (-15 -3171 ((-1265) (-644 (-225)) (-644 (-225)) (-644 (-264)))) (-15 -3171 ((-1265) (-644 (-943 (-225))))) (-15 -3171 ((-1265) (-644 (-943 (-225))) (-644 (-264)))) (-15 -3171 ((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225)))) (-15 -3171 ((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225)) (-644 (-264)))))) (T -261))
+((-3171 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-644 (-225))) (-5 *4 (-644 (-264))) (-5 *2 (-1266)) (-5 *1 (-261)))) (-3171 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-1266)) (-5 *1 (-261)))) (-3171 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-943 (-225)))) (-5 *4 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-261)))) (-3171 (*1 *2 *3) (-12 (-5 *3 (-644 (-943 (-225)))) (-5 *2 (-1265)) (-5 *1 (-261)))) (-3171 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-644 (-225))) (-5 *4 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-261)))) (-3171 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-1265)) (-5 *1 (-261)))))
+(-10 -7 (-15 -3171 ((-1265) (-644 (-225)) (-644 (-225)))) (-15 -3171 ((-1265) (-644 (-225)) (-644 (-225)) (-644 (-264)))) (-15 -3171 ((-1265) (-644 (-943 (-225))))) (-15 -3171 ((-1265) (-644 (-943 (-225))) (-644 (-264)))) (-15 -3171 ((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225)))) (-15 -3171 ((-1266) (-644 (-225)) (-644 (-225)) (-644 (-225)) (-644 (-264)))))
+((-3164 (((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-644 (-264)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 25)) (-3293 (((-921) (-644 (-264)) (-921)) 52)) (-1983 (((-921) (-644 (-264)) (-921)) 51)) (-3197 (((-644 (-381)) (-644 (-264)) (-644 (-381))) 68)) (-3449 (((-381) (-644 (-264)) (-381)) 57)) (-1562 (((-921) (-644 (-264)) (-921)) 53)) (-1902 (((-112) (-644 (-264)) (-112)) 27)) (-3373 (((-1157) (-644 (-264)) (-1157)) 19)) (-1393 (((-1157) (-644 (-264)) (-1157)) 26)) (-3058 (((-1132 (-225)) (-644 (-264))) 46)) (-1715 (((-644 (-1093 (-381))) (-644 (-264)) (-644 (-1093 (-381)))) 40)) (-2201 (((-874) (-644 (-264)) (-874)) 32)) (-2176 (((-874) (-644 (-264)) (-874)) 33)) (-2100 (((-1 (-943 (-225)) (-943 (-225))) (-644 (-264)) (-1 (-943 (-225)) (-943 (-225)))) 63)) (-1380 (((-112) (-644 (-264)) (-112)) 14)) (-3533 (((-112) (-644 (-264)) (-112)) 13)))
+(((-262) (-10 -7 (-15 -3533 ((-112) (-644 (-264)) (-112))) (-15 -1380 ((-112) (-644 (-264)) (-112))) (-15 -3164 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-644 (-264)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3373 ((-1157) (-644 (-264)) (-1157))) (-15 -1393 ((-1157) (-644 (-264)) (-1157))) (-15 -1902 ((-112) (-644 (-264)) (-112))) (-15 -2201 ((-874) (-644 (-264)) (-874))) (-15 -2176 ((-874) (-644 (-264)) (-874))) (-15 -1715 ((-644 (-1093 (-381))) (-644 (-264)) (-644 (-1093 (-381))))) (-15 -1983 ((-921) (-644 (-264)) (-921))) (-15 -3293 ((-921) (-644 (-264)) (-921))) (-15 -3058 ((-1132 (-225)) (-644 (-264)))) (-15 -1562 ((-921) (-644 (-264)) (-921))) (-15 -3449 ((-381) (-644 (-264)) (-381))) (-15 -2100 ((-1 (-943 (-225)) (-943 (-225))) (-644 (-264)) (-1 (-943 (-225)) (-943 (-225))))) (-15 -3197 ((-644 (-381)) (-644 (-264)) (-644 (-381)))))) (T -262))
+((-3197 (*1 *2 *3 *2) (-12 (-5 *2 (-644 (-381))) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-2100 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-3449 (*1 *2 *3 *2) (-12 (-5 *2 (-381)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1562 (*1 *2 *3 *2) (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-3058 (*1 *2 *3) (-12 (-5 *3 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-262)))) (-3293 (*1 *2 *3 *2) (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1983 (*1 *2 *3 *2) (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1715 (*1 *2 *3 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-2176 (*1 *2 *3 *2) (-12 (-5 *2 (-874)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-2201 (*1 *2 *3 *2) (-12 (-5 *2 (-874)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1902 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1393 (*1 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-3373 (*1 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-3164 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-1380 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))) (-3533 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))))
+(-10 -7 (-15 -3533 ((-112) (-644 (-264)) (-112))) (-15 -1380 ((-112) (-644 (-264)) (-112))) (-15 -3164 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) (-644 (-264)) (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3373 ((-1157) (-644 (-264)) (-1157))) (-15 -1393 ((-1157) (-644 (-264)) (-1157))) (-15 -1902 ((-112) (-644 (-264)) (-112))) (-15 -2201 ((-874) (-644 (-264)) (-874))) (-15 -2176 ((-874) (-644 (-264)) (-874))) (-15 -1715 ((-644 (-1093 (-381))) (-644 (-264)) (-644 (-1093 (-381))))) (-15 -1983 ((-921) (-644 (-264)) (-921))) (-15 -3293 ((-921) (-644 (-264)) (-921))) (-15 -3058 ((-1132 (-225)) (-644 (-264)))) (-15 -1562 ((-921) (-644 (-264)) (-921))) (-15 -3449 ((-381) (-644 (-264)) (-381))) (-15 -2100 ((-1 (-943 (-225)) (-943 (-225))) (-644 (-264)) (-1 (-943 (-225)) (-943 (-225))))) (-15 -3197 ((-644 (-381)) (-644 (-264)) (-644 (-381)))))
+((-1610 (((-3 |#1| "failed") (-644 (-264)) (-1175)) 17)))
+(((-263 |#1|) (-10 -7 (-15 -1610 ((-3 |#1| "failed") (-644 (-264)) (-1175)))) (-1214)) (T -263))
+((-1610 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-644 (-264))) (-5 *4 (-1175)) (-5 *1 (-263 *2)) (-4 *2 (-1214)))))
+(-10 -7 (-15 -1610 ((-3 |#1| "failed") (-644 (-264)) (-1175))))
+((-3009 (((-112) $ $) NIL)) (-3164 (($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 24)) (-3293 (($ (-921)) 81)) (-1983 (($ (-921)) 80)) (-4065 (($ (-644 (-381))) 87)) (-3449 (($ (-381)) 66)) (-1562 (($ (-921)) 82)) (-1902 (($ (-112)) 33)) (-3373 (($ (-1157)) 28)) (-1393 (($ (-1157)) 29)) (-3058 (($ (-1132 (-225))) 76)) (-1715 (($ (-644 (-1093 (-381)))) 72)) (-2498 (($ (-644 (-1093 (-381)))) 68) (($ (-644 (-1093 (-409 (-566))))) 71)) (-1451 (($ (-381)) 38) (($ (-874)) 42)) (-1302 (((-112) (-644 $) (-1175)) 100)) (-1610 (((-3 (-52) "failed") (-644 $) (-1175)) 102)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2026 (($ (-381)) 43) (($ (-874)) 44)) (-2543 (($ (-1 (-943 (-225)) (-943 (-225)))) 65)) (-2100 (($ (-1 (-943 (-225)) (-943 (-225)))) 83)) (-4051 (($ (-1 (-225) (-225))) 48) (($ (-1 (-225) (-225) (-225))) 52) (($ (-1 (-225) (-225) (-225) (-225))) 56)) (-3780 (((-862) $) 93)) (-2395 (($ (-112)) 34) (($ (-644 (-1093 (-381)))) 60)) (-3801 (((-112) $ $) NIL)) (-3533 (($ (-112)) 35)) (-2950 (((-112) $ $) 97)))
+(((-264) (-13 (-1099) (-10 -8 (-15 -3533 ($ (-112))) (-15 -2395 ($ (-112))) (-15 -3164 ($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3373 ($ (-1157))) (-15 -1393 ($ (-1157))) (-15 -1902 ($ (-112))) (-15 -2395 ($ (-644 (-1093 (-381))))) (-15 -2543 ($ (-1 (-943 (-225)) (-943 (-225))))) (-15 -1451 ($ (-381))) (-15 -1451 ($ (-874))) (-15 -2026 ($ (-381))) (-15 -2026 ($ (-874))) (-15 -4051 ($ (-1 (-225) (-225)))) (-15 -4051 ($ (-1 (-225) (-225) (-225)))) (-15 -4051 ($ (-1 (-225) (-225) (-225) (-225)))) (-15 -3449 ($ (-381))) (-15 -2498 ($ (-644 (-1093 (-381))))) (-15 -2498 ($ (-644 (-1093 (-409 (-566)))))) (-15 -1715 ($ (-644 (-1093 (-381))))) (-15 -3058 ($ (-1132 (-225)))) (-15 -1983 ($ (-921))) (-15 -3293 ($ (-921))) (-15 -1562 ($ (-921))) (-15 -2100 ($ (-1 (-943 (-225)) (-943 (-225))))) (-15 -4065 ($ (-644 (-381)))) (-15 -1610 ((-3 (-52) "failed") (-644 $) (-1175))) (-15 -1302 ((-112) (-644 $) (-1175)))))) (T -264))
+((-3533 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264)))) (-2395 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264)))) (-3164 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *1 (-264)))) (-3373 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-264)))) (-1393 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-264)))) (-1902 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264)))) (-2395 (*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264)))) (-2543 (*1 *1 *2) (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *1 (-264)))) (-1451 (*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))) (-1451 (*1 *1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-264)))) (-2026 (*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))) (-2026 (*1 *1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-264)))) (-4051 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-264)))) (-4051 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-264)))) (-4051 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-264)))) (-3449 (*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))) (-2498 (*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264)))) (-2498 (*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-409 (-566))))) (-5 *1 (-264)))) (-1715 (*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264)))) (-3058 (*1 *1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-264)))) (-1983 (*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))) (-3293 (*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))) (-1562 (*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))) (-2100 (*1 *1 *2) (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *1 (-264)))) (-4065 (*1 *1 *2) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-264)))) (-1610 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-644 (-264))) (-5 *4 (-1175)) (-5 *2 (-52)) (-5 *1 (-264)))) (-1302 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-264))) (-5 *4 (-1175)) (-5 *2 (-112)) (-5 *1 (-264)))))
+(-13 (-1099) (-10 -8 (-15 -3533 ($ (-112))) (-15 -2395 ($ (-112))) (-15 -3164 ($ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3373 ($ (-1157))) (-15 -1393 ($ (-1157))) (-15 -1902 ($ (-112))) (-15 -2395 ($ (-644 (-1093 (-381))))) (-15 -2543 ($ (-1 (-943 (-225)) (-943 (-225))))) (-15 -1451 ($ (-381))) (-15 -1451 ($ (-874))) (-15 -2026 ($ (-381))) (-15 -2026 ($ (-874))) (-15 -4051 ($ (-1 (-225) (-225)))) (-15 -4051 ($ (-1 (-225) (-225) (-225)))) (-15 -4051 ($ (-1 (-225) (-225) (-225) (-225)))) (-15 -3449 ($ (-381))) (-15 -2498 ($ (-644 (-1093 (-381))))) (-15 -2498 ($ (-644 (-1093 (-409 (-566)))))) (-15 -1715 ($ (-644 (-1093 (-381))))) (-15 -3058 ($ (-1132 (-225)))) (-15 -1983 ($ (-921))) (-15 -3293 ($ (-921))) (-15 -1562 ($ (-921))) (-15 -2100 ($ (-1 (-943 (-225)) (-943 (-225))))) (-15 -4065 ($ (-644 (-381)))) (-15 -1610 ((-3 (-52) "failed") (-644 $) (-1175))) (-15 -1302 ((-112) (-644 $) (-1175)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2658 (((-644 (-771)) $) NIL) (((-644 (-771)) $ |#2|) NIL)) (-3856 (((-771) $) NIL) (((-771) $ |#2|) NIL)) (-2608 (((-644 |#3|) $) NIL)) (-2438 (((-1171 $) $ |#3|) NIL) (((-1171 |#1|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 |#3|)) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2179 (($ $) NIL (|has| |#1| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-3759 (($ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 |#3| "failed") $) NIL) (((-3 |#2| "failed") $) NIL) (((-3 (-1124 |#1| |#2|) "failed") $) 23)) (-1867 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1124 |#1| |#2|) $) NIL)) (-2662 (($ $ $ |#3|) NIL (|has| |#1| (-172)))) (-3645 (($ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#1| (-454))) (($ $ |#3|) NIL (|has| |#1| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#1| (-909)))) (-2871 (($ $ |#1| (-533 |#3|) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| |#1| (-886 (-381))) (|has| |#3| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| |#1| (-886 (-566))) (|has| |#3| (-886 (-566)))))) (-3227 (((-771) $ |#2|) NIL) (((-771) $) 10)) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2597 (($ (-1171 |#1|) |#3|) NIL) (($ (-1171 $) |#3|) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-533 |#3|)) NIL) (($ $ |#3| (-771)) NIL) (($ $ (-644 |#3|) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ |#3|) NIL)) (-2466 (((-533 |#3|) $) NIL) (((-771) $ |#3|) NIL) (((-644 (-771)) $ (-644 |#3|)) NIL)) (-2443 (($ (-1 (-533 |#3|) (-533 |#3|)) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1894 (((-1 $ (-771)) |#2|) NIL) (((-1 $ (-771)) $) NIL (|has| |#1| (-233)))) (-1984 (((-3 |#3| "failed") $) NIL)) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-4144 ((|#3| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2402 (((-1157) $) NIL)) (-3814 (((-112) $) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| |#3|) (|:| -2456 (-771))) "failed") $) NIL)) (-1486 (($ $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 ((|#1| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ |#3| |#1|) NIL) (($ $ (-644 |#3|) (-644 |#1|)) NIL) (($ $ |#3| $) NIL) (($ $ (-644 |#3|) (-644 $)) NIL) (($ $ |#2| $) NIL (|has| |#1| (-233))) (($ $ (-644 |#2|) (-644 $)) NIL (|has| |#1| (-233))) (($ $ |#2| |#1|) NIL (|has| |#1| (-233))) (($ $ (-644 |#2|) (-644 |#1|)) NIL (|has| |#1| (-233)))) (-3309 (($ $ |#3|) NIL (|has| |#1| (-172)))) (-2578 (($ $ |#3|) NIL) (($ $ (-644 |#3|)) NIL) (($ $ |#3| (-771)) NIL) (($ $ (-644 |#3|) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3302 (((-644 |#2|) $) NIL)) (-2108 (((-533 |#3|) $) NIL) (((-771) $ |#3|) NIL) (((-644 (-771)) $ (-644 |#3|)) NIL) (((-771) $ |#2|) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| |#1| (-614 (-892 (-381)))) (|has| |#3| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| |#1| (-614 (-892 (-566)))) (|has| |#3| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| |#1| (-614 (-538))) (|has| |#3| (-614 (-538)))))) (-3042 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ |#3|) NIL (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) 26) (($ |#3|) 25) (($ |#2|) NIL) (($ (-1124 |#1| |#2|)) 32) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-533 |#3|)) NIL) (($ $ |#3| (-771)) NIL) (($ $ (-644 |#3|) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ |#3|) NIL) (($ $ (-644 |#3|)) NIL) (($ $ |#3| (-771)) NIL) (($ $ (-644 |#3|) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-265 |#1| |#2| |#3|) (-13 (-254 |#1| |#2| |#3| (-533 |#3|)) (-1038 (-1124 |#1| |#2|))) (-1049) (-850) (-267 |#2|)) (T -265))
NIL
(-13 (-254 |#1| |#2| |#3| (-533 |#3|)) (-1038 (-1124 |#1| |#2|)))
-((-3467 (((-771) $) 37)) (-2977 (((-3 |#2| "failed") $) 22)) (-1756 ((|#2| $) 33)) (-2862 (($ $) 14) (($ $ (-771)) 18)) (-2512 (((-862) $) 32) (($ |#2|) 11)) (-2940 (((-112) $ $) 26)) (-2962 (((-112) $ $) 36)))
-(((-266 |#1| |#2|) (-10 -8 (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1|)) (-15 -3467 ((-771) |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2962 ((-112) |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|))) (-267 |#2|) (-850)) (T -266))
+((-3856 (((-771) $) 37)) (-3066 (((-3 |#2| "failed") $) 22)) (-1867 ((|#2| $) 33)) (-2578 (($ $) 14) (($ $ (-771)) 18)) (-3780 (((-862) $) 32) (($ |#2|) 11)) (-2950 (((-112) $ $) 26)) (-2972 (((-112) $ $) 36)))
+(((-266 |#1| |#2|) (-10 -8 (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1|)) (-15 -3856 ((-771) |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -2972 ((-112) |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|))) (-267 |#2|) (-850)) (T -266))
NIL
-(-10 -8 (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1|)) (-15 -3467 ((-771) |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2962 ((-112) |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3467 (((-771) $) 23)) (-1353 ((|#1| $) 24)) (-2977 (((-3 |#1| "failed") $) 28)) (-1756 ((|#1| $) 29)) (-2716 (((-771) $) 25)) (-1439 (($ $ $) 14)) (-3059 (($ $ $) 15)) (-3646 (($ |#1| (-771)) 26)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2862 (($ $) 22) (($ $ (-771)) 21)) (-2512 (((-862) $) 12) (($ |#1|) 27)) (-3122 (((-112) $ $) 9)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)))
+(-10 -8 (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1|)) (-15 -3856 ((-771) |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -2972 ((-112) |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3856 (((-771) $) 23)) (-1401 ((|#1| $) 24)) (-3066 (((-3 |#1| "failed") $) 28)) (-1867 ((|#1| $) 29)) (-3227 (((-771) $) 25)) (-1945 (($ $ $) 14)) (-2709 (($ $ $) 15)) (-1894 (($ |#1| (-771)) 26)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2578 (($ $) 22) (($ $ (-771)) 21)) (-3780 (((-862) $) 12) (($ |#1|) 27)) (-3801 (((-112) $ $) 9)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)))
(((-267 |#1|) (-140) (-850)) (T -267))
-((-2512 (*1 *1 *2) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850)))) (-3646 (*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-267 *2)) (-4 *2 (-850)))) (-2716 (*1 *2 *1) (-12 (-4 *1 (-267 *3)) (-4 *3 (-850)) (-5 *2 (-771)))) (-1353 (*1 *2 *1) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850)))) (-3467 (*1 *2 *1) (-12 (-4 *1 (-267 *3)) (-4 *3 (-850)) (-5 *2 (-771)))) (-2862 (*1 *1 *1) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850)))) (-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-267 *3)) (-4 *3 (-850)))))
-(-13 (-850) (-1038 |t#1|) (-10 -8 (-15 -3646 ($ |t#1| (-771))) (-15 -2716 ((-771) $)) (-15 -1353 (|t#1| $)) (-15 -3467 ((-771) $)) (-15 -2862 ($ $)) (-15 -2862 ($ $ (-771))) (-15 -2512 ($ |t#1|))))
+((-3780 (*1 *1 *2) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850)))) (-1894 (*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-267 *2)) (-4 *2 (-850)))) (-3227 (*1 *2 *1) (-12 (-4 *1 (-267 *3)) (-4 *3 (-850)) (-5 *2 (-771)))) (-1401 (*1 *2 *1) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850)))) (-3856 (*1 *2 *1) (-12 (-4 *1 (-267 *3)) (-4 *3 (-850)) (-5 *2 (-771)))) (-2578 (*1 *1 *1) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850)))) (-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-267 *3)) (-4 *3 (-850)))))
+(-13 (-850) (-1038 |t#1|) (-10 -8 (-15 -1894 ($ |t#1| (-771))) (-15 -3227 ((-771) $)) (-15 -1401 (|t#1| $)) (-15 -3856 ((-771) $)) (-15 -2578 ($ $)) (-15 -2578 ($ $ (-771))) (-15 -3780 ($ |t#1|))))
(((-102) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-850) . T) ((-1038 |#1|) . T) ((-1099) . T))
-((-2540 (((-644 (-1175)) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) 54)) (-1719 (((-644 (-1175)) (-317 (-225)) (-771)) 96)) (-1520 (((-3 (-317 (-225)) "failed") (-317 (-225))) 64)) (-1743 (((-317 (-225)) (-317 (-225))) 82)) (-1610 (((-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 39)) (-2416 (((-112) (-644 (-317 (-225)))) 106)) (-1429 (((-112) (-317 (-225))) 37)) (-2792 (((-644 (-1157)) (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))))) 134)) (-3693 (((-644 (-317 (-225))) (-644 (-317 (-225)))) 110)) (-1535 (((-644 (-317 (-225))) (-644 (-317 (-225)))) 108)) (-2555 (((-689 (-225)) (-644 (-317 (-225))) (-771)) 122)) (-2645 (((-112) (-317 (-225))) 32) (((-112) (-644 (-317 (-225)))) 107)) (-1785 (((-644 (-225)) (-644 (-843 (-225))) (-225)) 15)) (-1396 (((-381) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) 128)) (-1675 (((-1035) (-1175) (-1035)) 47)))
-(((-268) (-10 -7 (-15 -1785 ((-644 (-225)) (-644 (-843 (-225))) (-225))) (-15 -1610 ((-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))))) (-15 -1520 ((-3 (-317 (-225)) "failed") (-317 (-225)))) (-15 -1743 ((-317 (-225)) (-317 (-225)))) (-15 -2416 ((-112) (-644 (-317 (-225))))) (-15 -2645 ((-112) (-644 (-317 (-225))))) (-15 -2645 ((-112) (-317 (-225)))) (-15 -2555 ((-689 (-225)) (-644 (-317 (-225))) (-771))) (-15 -1535 ((-644 (-317 (-225))) (-644 (-317 (-225))))) (-15 -3693 ((-644 (-317 (-225))) (-644 (-317 (-225))))) (-15 -1429 ((-112) (-317 (-225)))) (-15 -2540 ((-644 (-1175)) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) (-15 -1719 ((-644 (-1175)) (-317 (-225)) (-771))) (-15 -1675 ((-1035) (-1175) (-1035))) (-15 -1396 ((-381) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) (-15 -2792 ((-644 (-1157)) (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))))))) (T -268))
-((-2792 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))))) (-5 *2 (-644 (-1157))) (-5 *1 (-268)))) (-1396 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) (-5 *2 (-381)) (-5 *1 (-268)))) (-1675 (*1 *2 *3 *2) (-12 (-5 *2 (-1035)) (-5 *3 (-1175)) (-5 *1 (-268)))) (-1719 (*1 *2 *3 *4) (-12 (-5 *3 (-317 (-225))) (-5 *4 (-771)) (-5 *2 (-644 (-1175))) (-5 *1 (-268)))) (-2540 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) (-5 *2 (-644 (-1175))) (-5 *1 (-268)))) (-1429 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-112)) (-5 *1 (-268)))) (-3693 (*1 *2 *2) (-12 (-5 *2 (-644 (-317 (-225)))) (-5 *1 (-268)))) (-1535 (*1 *2 *2) (-12 (-5 *2 (-644 (-317 (-225)))) (-5 *1 (-268)))) (-2555 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *4 (-771)) (-5 *2 (-689 (-225))) (-5 *1 (-268)))) (-2645 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-112)) (-5 *1 (-268)))) (-2645 (*1 *2 *3) (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *2 (-112)) (-5 *1 (-268)))) (-2416 (*1 *2 *3) (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *2 (-112)) (-5 *1 (-268)))) (-1743 (*1 *2 *2) (-12 (-5 *2 (-317 (-225))) (-5 *1 (-268)))) (-1520 (*1 *2 *2) (|partial| -12 (-5 *2 (-317 (-225))) (-5 *1 (-268)))) (-1610 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (-5 *1 (-268)))) (-1785 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-843 (-225)))) (-5 *4 (-225)) (-5 *2 (-644 *4)) (-5 *1 (-268)))))
-(-10 -7 (-15 -1785 ((-644 (-225)) (-644 (-843 (-225))) (-225))) (-15 -1610 ((-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))))) (-15 -1520 ((-3 (-317 (-225)) "failed") (-317 (-225)))) (-15 -1743 ((-317 (-225)) (-317 (-225)))) (-15 -2416 ((-112) (-644 (-317 (-225))))) (-15 -2645 ((-112) (-644 (-317 (-225))))) (-15 -2645 ((-112) (-317 (-225)))) (-15 -2555 ((-689 (-225)) (-644 (-317 (-225))) (-771))) (-15 -1535 ((-644 (-317 (-225))) (-644 (-317 (-225))))) (-15 -3693 ((-644 (-317 (-225))) (-644 (-317 (-225))))) (-15 -1429 ((-112) (-317 (-225)))) (-15 -2540 ((-644 (-1175)) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) (-15 -1719 ((-644 (-1175)) (-317 (-225)) (-771))) (-15 -1675 ((-1035) (-1175) (-1035))) (-15 -1396 ((-381) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) (-15 -2792 ((-644 (-1157)) (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))))))
-((-2985 (((-112) $ $) NIL)) (-2444 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 56)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 32) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-2608 (((-644 (-1175)) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) 54)) (-1824 (((-644 (-1175)) (-317 (-225)) (-771)) 96)) (-3548 (((-3 (-317 (-225)) "failed") (-317 (-225))) 64)) (-3987 (((-317 (-225)) (-317 (-225))) 82)) (-2037 (((-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 39)) (-3376 (((-112) (-644 (-317 (-225)))) 106)) (-3849 (((-112) (-317 (-225))) 37)) (-2759 (((-644 (-1157)) (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))))) 134)) (-2375 (((-644 (-317 (-225))) (-644 (-317 (-225)))) 110)) (-2499 (((-644 (-317 (-225))) (-644 (-317 (-225)))) 108)) (-2231 (((-689 (-225)) (-644 (-317 (-225))) (-771)) 122)) (-3732 (((-112) (-317 (-225))) 32) (((-112) (-644 (-317 (-225)))) 107)) (-3188 (((-644 (-225)) (-644 (-843 (-225))) (-225)) 15)) (-3491 (((-381) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) 128)) (-1430 (((-1035) (-1175) (-1035)) 47)))
+(((-268) (-10 -7 (-15 -3188 ((-644 (-225)) (-644 (-843 (-225))) (-225))) (-15 -2037 ((-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))))) (-15 -3548 ((-3 (-317 (-225)) "failed") (-317 (-225)))) (-15 -3987 ((-317 (-225)) (-317 (-225)))) (-15 -3376 ((-112) (-644 (-317 (-225))))) (-15 -3732 ((-112) (-644 (-317 (-225))))) (-15 -3732 ((-112) (-317 (-225)))) (-15 -2231 ((-689 (-225)) (-644 (-317 (-225))) (-771))) (-15 -2499 ((-644 (-317 (-225))) (-644 (-317 (-225))))) (-15 -2375 ((-644 (-317 (-225))) (-644 (-317 (-225))))) (-15 -3849 ((-112) (-317 (-225)))) (-15 -2608 ((-644 (-1175)) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) (-15 -1824 ((-644 (-1175)) (-317 (-225)) (-771))) (-15 -1430 ((-1035) (-1175) (-1035))) (-15 -3491 ((-381) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) (-15 -2759 ((-644 (-1157)) (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))))))) (T -268))
+((-2759 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))))) (-5 *2 (-644 (-1157))) (-5 *1 (-268)))) (-3491 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) (-5 *2 (-381)) (-5 *1 (-268)))) (-1430 (*1 *2 *3 *2) (-12 (-5 *2 (-1035)) (-5 *3 (-1175)) (-5 *1 (-268)))) (-1824 (*1 *2 *3 *4) (-12 (-5 *3 (-317 (-225))) (-5 *4 (-771)) (-5 *2 (-644 (-1175))) (-5 *1 (-268)))) (-2608 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) (-5 *2 (-644 (-1175))) (-5 *1 (-268)))) (-3849 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-112)) (-5 *1 (-268)))) (-2375 (*1 *2 *2) (-12 (-5 *2 (-644 (-317 (-225)))) (-5 *1 (-268)))) (-2499 (*1 *2 *2) (-12 (-5 *2 (-644 (-317 (-225)))) (-5 *1 (-268)))) (-2231 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *4 (-771)) (-5 *2 (-689 (-225))) (-5 *1 (-268)))) (-3732 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-112)) (-5 *1 (-268)))) (-3732 (*1 *2 *3) (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *2 (-112)) (-5 *1 (-268)))) (-3376 (*1 *2 *3) (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *2 (-112)) (-5 *1 (-268)))) (-3987 (*1 *2 *2) (-12 (-5 *2 (-317 (-225))) (-5 *1 (-268)))) (-3548 (*1 *2 *2) (|partial| -12 (-5 *2 (-317 (-225))) (-5 *1 (-268)))) (-2037 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (-5 *1 (-268)))) (-3188 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-843 (-225)))) (-5 *4 (-225)) (-5 *2 (-644 *4)) (-5 *1 (-268)))))
+(-10 -7 (-15 -3188 ((-644 (-225)) (-644 (-843 (-225))) (-225))) (-15 -2037 ((-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))))) (-15 -3548 ((-3 (-317 (-225)) "failed") (-317 (-225)))) (-15 -3987 ((-317 (-225)) (-317 (-225)))) (-15 -3376 ((-112) (-644 (-317 (-225))))) (-15 -3732 ((-112) (-644 (-317 (-225))))) (-15 -3732 ((-112) (-317 (-225)))) (-15 -2231 ((-689 (-225)) (-644 (-317 (-225))) (-771))) (-15 -2499 ((-644 (-317 (-225))) (-644 (-317 (-225))))) (-15 -2375 ((-644 (-317 (-225))) (-644 (-317 (-225))))) (-15 -3849 ((-112) (-317 (-225)))) (-15 -2608 ((-644 (-1175)) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) (-15 -1824 ((-644 (-1175)) (-317 (-225)) (-771))) (-15 -1430 ((-1035) (-1175) (-1035))) (-15 -3491 ((-381) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) (-15 -2759 ((-644 (-1157)) (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))))))
+((-3009 (((-112) $ $) NIL)) (-3607 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 56)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 32) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-269) (-839)) (T -269))
NIL
(-839)
-((-2985 (((-112) $ $) NIL)) (-2444 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) 72) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 63)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 41) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) 43)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3607 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) 72) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 63)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 41) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) 43)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-270) (-839)) (T -270))
NIL
(-839)
-((-2985 (((-112) $ $) NIL)) (-2444 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) 90) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 85)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 52) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) 65)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3607 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) 90) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 85)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 52) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) 65)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-271) (-839)) (T -271))
NIL
(-839)
-((-2985 (((-112) $ $) NIL)) (-2444 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 73)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 45) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3607 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 73)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 45) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-272) (-839)) (T -272))
NIL
(-839)
-((-2985 (((-112) $ $) NIL)) (-2444 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 65)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 31) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3607 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 65)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 31) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-273) (-839)) (T -273))
NIL
(-839)
-((-2985 (((-112) $ $) NIL)) (-2444 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 90)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 33) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3607 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 90)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 33) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-274) (-839)) (T -274))
NIL
(-839)
-((-2985 (((-112) $ $) NIL)) (-2444 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 95)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 32) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3607 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) NIL) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 95)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 32) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-275) (-839)) (T -275))
NIL
(-839)
-((-2985 (((-112) $ $) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2970 (((-644 (-566)) $) 29)) (-3992 (((-771) $) 27)) (-2512 (((-862) $) 36) (($ (-644 (-566))) 23)) (-3122 (((-112) $ $) NIL)) (-1822 (($ (-771)) 33)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 9)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 17)))
-(((-276) (-13 (-850) (-10 -8 (-15 -2512 ($ (-644 (-566)))) (-15 -3992 ((-771) $)) (-15 -2970 ((-644 (-566)) $)) (-15 -1822 ($ (-771)))))) (T -276))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-276)))) (-3992 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-276)))) (-2970 (*1 *2 *1) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-276)))) (-1822 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-276)))))
-(-13 (-850) (-10 -8 (-15 -2512 ($ (-644 (-566)))) (-15 -3992 ((-771) $)) (-15 -2970 ((-644 (-566)) $)) (-15 -1822 ($ (-771)))))
-((-3235 ((|#2| |#2|) 77)) (-3102 ((|#2| |#2|) 65)) (-1935 (((-3 |#2| "failed") |#2| (-644 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 125)) (-3215 ((|#2| |#2|) 75)) (-3076 ((|#2| |#2|) 63)) (-3259 ((|#2| |#2|) 79)) (-3123 ((|#2| |#2|) 67)) (-3035 ((|#2|) 46)) (-2336 (((-114) (-114)) 100)) (-3668 ((|#2| |#2|) 61)) (-4178 (((-112) |#2|) 147)) (-4199 ((|#2| |#2|) 195)) (-3500 ((|#2| |#2|) 171)) (-4082 ((|#2|) 59)) (-2047 ((|#2|) 58)) (-2345 ((|#2| |#2|) 191)) (-2205 ((|#2| |#2|) 167)) (-3374 ((|#2| |#2|) 199)) (-1703 ((|#2| |#2|) 175)) (-3789 ((|#2| |#2|) 163)) (-2460 ((|#2| |#2|) 165)) (-4389 ((|#2| |#2|) 201)) (-4314 ((|#2| |#2|) 177)) (-2263 ((|#2| |#2|) 197)) (-1407 ((|#2| |#2|) 173)) (-2544 ((|#2| |#2|) 193)) (-1304 ((|#2| |#2|) 169)) (-4149 ((|#2| |#2|) 207)) (-1749 ((|#2| |#2|) 183)) (-2272 ((|#2| |#2|) 203)) (-1416 ((|#2| |#2|) 179)) (-3516 ((|#2| |#2|) 211)) (-3118 ((|#2| |#2|) 187)) (-1670 ((|#2| |#2|) 213)) (-2083 ((|#2| |#2|) 189)) (-4009 ((|#2| |#2|) 209)) (-3719 ((|#2| |#2|) 185)) (-4006 ((|#2| |#2|) 205)) (-1528 ((|#2| |#2|) 181)) (-3613 ((|#2| |#2|) 62)) (-3267 ((|#2| |#2|) 80)) (-3133 ((|#2| |#2|) 68)) (-3248 ((|#2| |#2|) 78)) (-3112 ((|#2| |#2|) 66)) (-3223 ((|#2| |#2|) 76)) (-3089 ((|#2| |#2|) 64)) (-2306 (((-112) (-114)) 98)) (-3302 ((|#2| |#2|) 83)) (-3172 ((|#2| |#2|) 71)) (-3279 ((|#2| |#2|) 81)) (-3146 ((|#2| |#2|) 69)) (-3323 ((|#2| |#2|) 85)) (-3194 ((|#2| |#2|) 73)) (-1382 ((|#2| |#2|) 86)) (-3205 ((|#2| |#2|) 74)) (-3313 ((|#2| |#2|) 84)) (-3185 ((|#2| |#2|) 72)) (-3291 ((|#2| |#2|) 82)) (-3160 ((|#2| |#2|) 70)))
-(((-277 |#1| |#2|) (-10 -7 (-15 -3613 (|#2| |#2|)) (-15 -3668 (|#2| |#2|)) (-15 -3076 (|#2| |#2|)) (-15 -3089 (|#2| |#2|)) (-15 -3102 (|#2| |#2|)) (-15 -3112 (|#2| |#2|)) (-15 -3123 (|#2| |#2|)) (-15 -3133 (|#2| |#2|)) (-15 -3146 (|#2| |#2|)) (-15 -3160 (|#2| |#2|)) (-15 -3172 (|#2| |#2|)) (-15 -3185 (|#2| |#2|)) (-15 -3194 (|#2| |#2|)) (-15 -3205 (|#2| |#2|)) (-15 -3215 (|#2| |#2|)) (-15 -3223 (|#2| |#2|)) (-15 -3235 (|#2| |#2|)) (-15 -3248 (|#2| |#2|)) (-15 -3259 (|#2| |#2|)) (-15 -3267 (|#2| |#2|)) (-15 -3279 (|#2| |#2|)) (-15 -3291 (|#2| |#2|)) (-15 -3302 (|#2| |#2|)) (-15 -3313 (|#2| |#2|)) (-15 -3323 (|#2| |#2|)) (-15 -1382 (|#2| |#2|)) (-15 -3035 (|#2|)) (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 -2047 (|#2|)) (-15 -4082 (|#2|)) (-15 -2460 (|#2| |#2|)) (-15 -3789 (|#2| |#2|)) (-15 -2205 (|#2| |#2|)) (-15 -1304 (|#2| |#2|)) (-15 -3500 (|#2| |#2|)) (-15 -1407 (|#2| |#2|)) (-15 -1703 (|#2| |#2|)) (-15 -4314 (|#2| |#2|)) (-15 -1416 (|#2| |#2|)) (-15 -1528 (|#2| |#2|)) (-15 -1749 (|#2| |#2|)) (-15 -3719 (|#2| |#2|)) (-15 -3118 (|#2| |#2|)) (-15 -2083 (|#2| |#2|)) (-15 -2345 (|#2| |#2|)) (-15 -2544 (|#2| |#2|)) (-15 -4199 (|#2| |#2|)) (-15 -2263 (|#2| |#2|)) (-15 -3374 (|#2| |#2|)) (-15 -4389 (|#2| |#2|)) (-15 -2272 (|#2| |#2|)) (-15 -4006 (|#2| |#2|)) (-15 -4149 (|#2| |#2|)) (-15 -4009 (|#2| |#2|)) (-15 -3516 (|#2| |#2|)) (-15 -1670 (|#2| |#2|)) (-15 -1935 ((-3 |#2| "failed") |#2| (-644 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -4178 ((-112) |#2|))) (-558) (-13 (-432 |#1|) (-1002))) (T -277))
-((-4178 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-277 *4 *3)) (-4 *3 (-13 (-432 *4) (-1002))))) (-1935 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-644 (-2 (|:| |func| *2) (|:| |pole| (-112))))) (-4 *2 (-13 (-432 *4) (-1002))) (-4 *4 (-558)) (-5 *1 (-277 *4 *2)))) (-1670 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3516 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4009 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4149 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4006 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2272 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4389 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3374 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2263 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4199 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2544 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2345 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2083 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3118 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3719 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-1749 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-1528 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-1416 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4314 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-1703 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-1407 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3500 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-1304 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2205 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3789 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2460 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4082 (*1 *2) (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2)) (-4 *3 (-558)))) (-2047 (*1 *2) (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2)) (-4 *3 (-558)))) (-2336 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-277 *3 *4)) (-4 *4 (-13 (-432 *3) (-1002))))) (-2306 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-277 *4 *5)) (-4 *5 (-13 (-432 *4) (-1002))))) (-3035 (*1 *2) (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2)) (-4 *3 (-558)))) (-1382 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3323 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3313 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3302 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3291 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3279 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3267 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3259 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3248 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3235 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3223 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3215 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3205 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3194 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3185 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3172 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3160 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3146 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3133 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3123 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3112 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3102 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3089 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3076 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3668 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3613 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))))
-(-10 -7 (-15 -3613 (|#2| |#2|)) (-15 -3668 (|#2| |#2|)) (-15 -3076 (|#2| |#2|)) (-15 -3089 (|#2| |#2|)) (-15 -3102 (|#2| |#2|)) (-15 -3112 (|#2| |#2|)) (-15 -3123 (|#2| |#2|)) (-15 -3133 (|#2| |#2|)) (-15 -3146 (|#2| |#2|)) (-15 -3160 (|#2| |#2|)) (-15 -3172 (|#2| |#2|)) (-15 -3185 (|#2| |#2|)) (-15 -3194 (|#2| |#2|)) (-15 -3205 (|#2| |#2|)) (-15 -3215 (|#2| |#2|)) (-15 -3223 (|#2| |#2|)) (-15 -3235 (|#2| |#2|)) (-15 -3248 (|#2| |#2|)) (-15 -3259 (|#2| |#2|)) (-15 -3267 (|#2| |#2|)) (-15 -3279 (|#2| |#2|)) (-15 -3291 (|#2| |#2|)) (-15 -3302 (|#2| |#2|)) (-15 -3313 (|#2| |#2|)) (-15 -3323 (|#2| |#2|)) (-15 -1382 (|#2| |#2|)) (-15 -3035 (|#2|)) (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 -2047 (|#2|)) (-15 -4082 (|#2|)) (-15 -2460 (|#2| |#2|)) (-15 -3789 (|#2| |#2|)) (-15 -2205 (|#2| |#2|)) (-15 -1304 (|#2| |#2|)) (-15 -3500 (|#2| |#2|)) (-15 -1407 (|#2| |#2|)) (-15 -1703 (|#2| |#2|)) (-15 -4314 (|#2| |#2|)) (-15 -1416 (|#2| |#2|)) (-15 -1528 (|#2| |#2|)) (-15 -1749 (|#2| |#2|)) (-15 -3719 (|#2| |#2|)) (-15 -3118 (|#2| |#2|)) (-15 -2083 (|#2| |#2|)) (-15 -2345 (|#2| |#2|)) (-15 -2544 (|#2| |#2|)) (-15 -4199 (|#2| |#2|)) (-15 -2263 (|#2| |#2|)) (-15 -3374 (|#2| |#2|)) (-15 -4389 (|#2| |#2|)) (-15 -2272 (|#2| |#2|)) (-15 -4006 (|#2| |#2|)) (-15 -4149 (|#2| |#2|)) (-15 -4009 (|#2| |#2|)) (-15 -3516 (|#2| |#2|)) (-15 -1670 (|#2| |#2|)) (-15 -1935 ((-3 |#2| "failed") |#2| (-644 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -4178 ((-112) |#2|)))
-((-3037 (((-3 |#2| "failed") (-644 (-612 |#2|)) |#2| (-1175)) 153)) (-1787 ((|#2| (-409 (-566)) |#2|) 49)) (-3421 ((|#2| |#2| (-612 |#2|)) 146)) (-3599 (((-2 (|:| |func| |#2|) (|:| |kers| (-644 (-612 |#2|))) (|:| |vals| (-644 |#2|))) |#2| (-1175)) 145)) (-3889 ((|#2| |#2| (-1175)) 20) ((|#2| |#2|) 23)) (-3873 ((|#2| |#2| (-1175)) 159) ((|#2| |#2|) 157)))
-(((-278 |#1| |#2|) (-10 -7 (-15 -3873 (|#2| |#2|)) (-15 -3873 (|#2| |#2| (-1175))) (-15 -3599 ((-2 (|:| |func| |#2|) (|:| |kers| (-644 (-612 |#2|))) (|:| |vals| (-644 |#2|))) |#2| (-1175))) (-15 -3889 (|#2| |#2|)) (-15 -3889 (|#2| |#2| (-1175))) (-15 -3037 ((-3 |#2| "failed") (-644 (-612 |#2|)) |#2| (-1175))) (-15 -3421 (|#2| |#2| (-612 |#2|))) (-15 -1787 (|#2| (-409 (-566)) |#2|))) (-13 (-558) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -278))
-((-1787 (*1 *2 *3 *2) (-12 (-5 *3 (-409 (-566))) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-3421 (*1 *2 *2 *3) (-12 (-5 *3 (-612 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *4 *2)))) (-3037 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-644 (-612 *2))) (-5 *4 (-1175)) (-4 *2 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *5 *2)))) (-3889 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-3889 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))) (-3599 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-644 (-612 *3))) (|:| |vals| (-644 *3)))) (-5 *1 (-278 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-3873 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-3873 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))))
-(-10 -7 (-15 -3873 (|#2| |#2|)) (-15 -3873 (|#2| |#2| (-1175))) (-15 -3599 ((-2 (|:| |func| |#2|) (|:| |kers| (-644 (-612 |#2|))) (|:| |vals| (-644 |#2|))) |#2| (-1175))) (-15 -3889 (|#2| |#2|)) (-15 -3889 (|#2| |#2| (-1175))) (-15 -3037 ((-3 |#2| "failed") (-644 (-612 |#2|)) |#2| (-1175))) (-15 -3421 (|#2| |#2| (-612 |#2|))) (-15 -1787 (|#2| (-409 (-566)) |#2|)))
-((-4112 (((-3 |#3| "failed") |#3|) 120)) (-3235 ((|#3| |#3|) 142)) (-2357 (((-3 |#3| "failed") |#3|) 89)) (-3102 ((|#3| |#3|) 132)) (-3124 (((-3 |#3| "failed") |#3|) 65)) (-3215 ((|#3| |#3|) 140)) (-1856 (((-3 |#3| "failed") |#3|) 53)) (-3076 ((|#3| |#3|) 130)) (-3688 (((-3 |#3| "failed") |#3|) 122)) (-3259 ((|#3| |#3|) 144)) (-4169 (((-3 |#3| "failed") |#3|) 91)) (-3123 ((|#3| |#3|) 134)) (-1619 (((-3 |#3| "failed") |#3| (-771)) 41)) (-3453 (((-3 |#3| "failed") |#3|) 81)) (-3668 ((|#3| |#3|) 129)) (-4277 (((-3 |#3| "failed") |#3|) 51)) (-3613 ((|#3| |#3|) 128)) (-1745 (((-3 |#3| "failed") |#3|) 123)) (-3267 ((|#3| |#3|) 145)) (-2471 (((-3 |#3| "failed") |#3|) 92)) (-3133 ((|#3| |#3|) 135)) (-1406 (((-3 |#3| "failed") |#3|) 121)) (-3248 ((|#3| |#3|) 143)) (-2952 (((-3 |#3| "failed") |#3|) 90)) (-3112 ((|#3| |#3|) 133)) (-3565 (((-3 |#3| "failed") |#3|) 67)) (-3223 ((|#3| |#3|) 141)) (-3816 (((-3 |#3| "failed") |#3|) 55)) (-3089 ((|#3| |#3|) 131)) (-3155 (((-3 |#3| "failed") |#3|) 73)) (-3302 ((|#3| |#3|) 148)) (-3781 (((-3 |#3| "failed") |#3|) 114)) (-3172 ((|#3| |#3|) 154)) (-2696 (((-3 |#3| "failed") |#3|) 69)) (-3279 ((|#3| |#3|) 146)) (-2535 (((-3 |#3| "failed") |#3|) 57)) (-3146 ((|#3| |#3|) 136)) (-3656 (((-3 |#3| "failed") |#3|) 77)) (-3323 ((|#3| |#3|) 150)) (-3534 (((-3 |#3| "failed") |#3|) 61)) (-3194 ((|#3| |#3|) 138)) (-3770 (((-3 |#3| "failed") |#3|) 79)) (-1382 ((|#3| |#3|) 151)) (-1405 (((-3 |#3| "failed") |#3|) 63)) (-3205 ((|#3| |#3|) 139)) (-3609 (((-3 |#3| "failed") |#3|) 75)) (-3313 ((|#3| |#3|) 149)) (-1385 (((-3 |#3| "failed") |#3|) 117)) (-3185 ((|#3| |#3|) 155)) (-2490 (((-3 |#3| "failed") |#3|) 71)) (-3291 ((|#3| |#3|) 147)) (-1902 (((-3 |#3| "failed") |#3|) 59)) (-3160 ((|#3| |#3|) 137)) (** ((|#3| |#3| (-409 (-566))) 47 (|has| |#1| (-365)))))
-(((-279 |#1| |#2| |#3|) (-13 (-983 |#3|) (-10 -7 (IF (|has| |#1| (-365)) (-15 ** (|#3| |#3| (-409 (-566)))) |%noBranch|) (-15 -3613 (|#3| |#3|)) (-15 -3668 (|#3| |#3|)) (-15 -3076 (|#3| |#3|)) (-15 -3089 (|#3| |#3|)) (-15 -3102 (|#3| |#3|)) (-15 -3112 (|#3| |#3|)) (-15 -3123 (|#3| |#3|)) (-15 -3133 (|#3| |#3|)) (-15 -3146 (|#3| |#3|)) (-15 -3160 (|#3| |#3|)) (-15 -3172 (|#3| |#3|)) (-15 -3185 (|#3| |#3|)) (-15 -3194 (|#3| |#3|)) (-15 -3205 (|#3| |#3|)) (-15 -3215 (|#3| |#3|)) (-15 -3223 (|#3| |#3|)) (-15 -3235 (|#3| |#3|)) (-15 -3248 (|#3| |#3|)) (-15 -3259 (|#3| |#3|)) (-15 -3267 (|#3| |#3|)) (-15 -3279 (|#3| |#3|)) (-15 -3291 (|#3| |#3|)) (-15 -3302 (|#3| |#3|)) (-15 -3313 (|#3| |#3|)) (-15 -3323 (|#3| |#3|)) (-15 -1382 (|#3| |#3|)))) (-38 (-409 (-566))) (-1255 |#1|) (-1226 |#1| |#2|)) (T -279))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-409 (-566))) (-4 *4 (-365)) (-4 *4 (-38 *3)) (-4 *5 (-1255 *4)) (-5 *1 (-279 *4 *5 *2)) (-4 *2 (-1226 *4 *5)))) (-3613 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3668 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3076 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3089 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3102 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3112 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3123 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3133 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3146 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3160 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3172 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3185 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3194 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3205 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3215 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3223 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3235 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3248 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3259 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3267 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3279 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3291 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3302 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3313 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3323 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-1382 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))))
-(-13 (-983 |#3|) (-10 -7 (IF (|has| |#1| (-365)) (-15 ** (|#3| |#3| (-409 (-566)))) |%noBranch|) (-15 -3613 (|#3| |#3|)) (-15 -3668 (|#3| |#3|)) (-15 -3076 (|#3| |#3|)) (-15 -3089 (|#3| |#3|)) (-15 -3102 (|#3| |#3|)) (-15 -3112 (|#3| |#3|)) (-15 -3123 (|#3| |#3|)) (-15 -3133 (|#3| |#3|)) (-15 -3146 (|#3| |#3|)) (-15 -3160 (|#3| |#3|)) (-15 -3172 (|#3| |#3|)) (-15 -3185 (|#3| |#3|)) (-15 -3194 (|#3| |#3|)) (-15 -3205 (|#3| |#3|)) (-15 -3215 (|#3| |#3|)) (-15 -3223 (|#3| |#3|)) (-15 -3235 (|#3| |#3|)) (-15 -3248 (|#3| |#3|)) (-15 -3259 (|#3| |#3|)) (-15 -3267 (|#3| |#3|)) (-15 -3279 (|#3| |#3|)) (-15 -3291 (|#3| |#3|)) (-15 -3302 (|#3| |#3|)) (-15 -3313 (|#3| |#3|)) (-15 -3323 (|#3| |#3|)) (-15 -1382 (|#3| |#3|))))
-((-4112 (((-3 |#3| "failed") |#3|) 70)) (-3235 ((|#3| |#3|) 137)) (-2357 (((-3 |#3| "failed") |#3|) 54)) (-3102 ((|#3| |#3|) 125)) (-3124 (((-3 |#3| "failed") |#3|) 66)) (-3215 ((|#3| |#3|) 135)) (-1856 (((-3 |#3| "failed") |#3|) 50)) (-3076 ((|#3| |#3|) 123)) (-3688 (((-3 |#3| "failed") |#3|) 74)) (-3259 ((|#3| |#3|) 139)) (-4169 (((-3 |#3| "failed") |#3|) 58)) (-3123 ((|#3| |#3|) 127)) (-1619 (((-3 |#3| "failed") |#3| (-771)) 38)) (-3453 (((-3 |#3| "failed") |#3|) 48)) (-3668 ((|#3| |#3|) 111)) (-4277 (((-3 |#3| "failed") |#3|) 46)) (-3613 ((|#3| |#3|) 122)) (-1745 (((-3 |#3| "failed") |#3|) 76)) (-3267 ((|#3| |#3|) 140)) (-2471 (((-3 |#3| "failed") |#3|) 60)) (-3133 ((|#3| |#3|) 128)) (-1406 (((-3 |#3| "failed") |#3|) 72)) (-3248 ((|#3| |#3|) 138)) (-2952 (((-3 |#3| "failed") |#3|) 56)) (-3112 ((|#3| |#3|) 126)) (-3565 (((-3 |#3| "failed") |#3|) 68)) (-3223 ((|#3| |#3|) 136)) (-3816 (((-3 |#3| "failed") |#3|) 52)) (-3089 ((|#3| |#3|) 124)) (-3155 (((-3 |#3| "failed") |#3|) 78)) (-3302 ((|#3| |#3|) 143)) (-3781 (((-3 |#3| "failed") |#3|) 62)) (-3172 ((|#3| |#3|) 131)) (-2696 (((-3 |#3| "failed") |#3|) 112)) (-3279 ((|#3| |#3|) 141)) (-2535 (((-3 |#3| "failed") |#3|) 100)) (-3146 ((|#3| |#3|) 129)) (-3656 (((-3 |#3| "failed") |#3|) 116)) (-3323 ((|#3| |#3|) 145)) (-3534 (((-3 |#3| "failed") |#3|) 107)) (-3194 ((|#3| |#3|) 133)) (-3770 (((-3 |#3| "failed") |#3|) 117)) (-1382 ((|#3| |#3|) 146)) (-1405 (((-3 |#3| "failed") |#3|) 109)) (-3205 ((|#3| |#3|) 134)) (-3609 (((-3 |#3| "failed") |#3|) 80)) (-3313 ((|#3| |#3|) 144)) (-1385 (((-3 |#3| "failed") |#3|) 64)) (-3185 ((|#3| |#3|) 132)) (-2490 (((-3 |#3| "failed") |#3|) 113)) (-3291 ((|#3| |#3|) 142)) (-1902 (((-3 |#3| "failed") |#3|) 103)) (-3160 ((|#3| |#3|) 130)) (** ((|#3| |#3| (-409 (-566))) 44 (|has| |#1| (-365)))))
-(((-280 |#1| |#2| |#3| |#4|) (-13 (-983 |#3|) (-10 -7 (IF (|has| |#1| (-365)) (-15 ** (|#3| |#3| (-409 (-566)))) |%noBranch|) (-15 -3613 (|#3| |#3|)) (-15 -3668 (|#3| |#3|)) (-15 -3076 (|#3| |#3|)) (-15 -3089 (|#3| |#3|)) (-15 -3102 (|#3| |#3|)) (-15 -3112 (|#3| |#3|)) (-15 -3123 (|#3| |#3|)) (-15 -3133 (|#3| |#3|)) (-15 -3146 (|#3| |#3|)) (-15 -3160 (|#3| |#3|)) (-15 -3172 (|#3| |#3|)) (-15 -3185 (|#3| |#3|)) (-15 -3194 (|#3| |#3|)) (-15 -3205 (|#3| |#3|)) (-15 -3215 (|#3| |#3|)) (-15 -3223 (|#3| |#3|)) (-15 -3235 (|#3| |#3|)) (-15 -3248 (|#3| |#3|)) (-15 -3259 (|#3| |#3|)) (-15 -3267 (|#3| |#3|)) (-15 -3279 (|#3| |#3|)) (-15 -3291 (|#3| |#3|)) (-15 -3302 (|#3| |#3|)) (-15 -3313 (|#3| |#3|)) (-15 -3323 (|#3| |#3|)) (-15 -1382 (|#3| |#3|)))) (-38 (-409 (-566))) (-1224 |#1|) (-1247 |#1| |#2|) (-983 |#2|)) (T -280))
-((** (*1 *2 *2 *3) (-12 (-5 *3 (-409 (-566))) (-4 *4 (-365)) (-4 *4 (-38 *3)) (-4 *5 (-1224 *4)) (-5 *1 (-280 *4 *5 *2 *6)) (-4 *2 (-1247 *4 *5)) (-4 *6 (-983 *5)))) (-3613 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3668 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3076 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3089 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3102 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3112 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3123 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3133 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3146 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3160 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3172 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3185 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3194 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3205 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3215 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3223 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3235 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3248 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3259 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3267 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3279 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3291 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3302 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3313 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3323 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-1382 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))))
-(-13 (-983 |#3|) (-10 -7 (IF (|has| |#1| (-365)) (-15 ** (|#3| |#3| (-409 (-566)))) |%noBranch|) (-15 -3613 (|#3| |#3|)) (-15 -3668 (|#3| |#3|)) (-15 -3076 (|#3| |#3|)) (-15 -3089 (|#3| |#3|)) (-15 -3102 (|#3| |#3|)) (-15 -3112 (|#3| |#3|)) (-15 -3123 (|#3| |#3|)) (-15 -3133 (|#3| |#3|)) (-15 -3146 (|#3| |#3|)) (-15 -3160 (|#3| |#3|)) (-15 -3172 (|#3| |#3|)) (-15 -3185 (|#3| |#3|)) (-15 -3194 (|#3| |#3|)) (-15 -3205 (|#3| |#3|)) (-15 -3215 (|#3| |#3|)) (-15 -3223 (|#3| |#3|)) (-15 -3235 (|#3| |#3|)) (-15 -3248 (|#3| |#3|)) (-15 -3259 (|#3| |#3|)) (-15 -3267 (|#3| |#3|)) (-15 -3279 (|#3| |#3|)) (-15 -3291 (|#3| |#3|)) (-15 -3302 (|#3| |#3|)) (-15 -3313 (|#3| |#3|)) (-15 -3323 (|#3| |#3|)) (-15 -1382 (|#3| |#3|))))
-((-4394 (((-112) $) 20)) (-2978 (((-183) $) 7)) (-1331 (((-3 (-508) "failed") $) 14)) (-2274 (((-3 (-644 $) "failed") $) NIL)) (-3685 (((-3 (-508) "failed") $) 21)) (-3420 (((-3 (-1103) "failed") $) 18)) (-4167 (((-112) $) 16)) (-2512 (((-862) $) NIL)) (-2988 (((-112) $) 9)))
-(((-281) (-13 (-613 (-862)) (-10 -8 (-15 -2978 ((-183) $)) (-15 -4167 ((-112) $)) (-15 -3420 ((-3 (-1103) "failed") $)) (-15 -4394 ((-112) $)) (-15 -3685 ((-3 (-508) "failed") $)) (-15 -2988 ((-112) $)) (-15 -1331 ((-3 (-508) "failed") $)) (-15 -2274 ((-3 (-644 $) "failed") $))))) (T -281))
-((-2978 (*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-281)))) (-4167 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281)))) (-3420 (*1 *2 *1) (|partial| -12 (-5 *2 (-1103)) (-5 *1 (-281)))) (-4394 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281)))) (-3685 (*1 *2 *1) (|partial| -12 (-5 *2 (-508)) (-5 *1 (-281)))) (-2988 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281)))) (-1331 (*1 *2 *1) (|partial| -12 (-5 *2 (-508)) (-5 *1 (-281)))) (-2274 (*1 *2 *1) (|partial| -12 (-5 *2 (-644 (-281))) (-5 *1 (-281)))))
-(-13 (-613 (-862)) (-10 -8 (-15 -2978 ((-183) $)) (-15 -4167 ((-112) $)) (-15 -3420 ((-3 (-1103) "failed") $)) (-15 -4394 ((-112) $)) (-15 -3685 ((-3 (-508) "failed") $)) (-15 -2988 ((-112) $)) (-15 -1331 ((-3 (-508) "failed") $)) (-15 -2274 ((-3 (-644 $) "failed") $))))
-((-4186 (($ (-1 (-112) |#2|) $) 24)) (-4093 (($ $) 38)) (-3066 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 36)) (-2651 (($ |#2| $) 34) (($ (-1 (-112) |#2|) $) 18)) (-1865 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 42)) (-4268 (($ |#2| $ (-566)) 20) (($ $ $ (-566)) 22)) (-2201 (($ $ (-566)) 11) (($ $ (-1231 (-566))) 14)) (-1498 (($ $ |#2|) 32) (($ $ $) NIL)) (-3704 (($ $ |#2|) 31) (($ |#2| $) NIL) (($ $ $) 26) (($ (-644 $)) NIL)))
-(((-282 |#1| |#2|) (-10 -8 (-15 -1865 (|#1| |#1| |#1|)) (-15 -3066 (|#1| |#2| |#1|)) (-15 -1865 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3066 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1498 (|#1| |#1| |#1|)) (-15 -1498 (|#1| |#1| |#2|)) (-15 -4268 (|#1| |#1| |#1| (-566))) (-15 -4268 (|#1| |#2| |#1| (-566))) (-15 -2201 (|#1| |#1| (-1231 (-566)))) (-15 -2201 (|#1| |#1| (-566))) (-15 -3704 (|#1| (-644 |#1|))) (-15 -3704 (|#1| |#1| |#1|)) (-15 -3704 (|#1| |#2| |#1|)) (-15 -3704 (|#1| |#1| |#2|)) (-15 -2651 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4186 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2651 (|#1| |#2| |#1|)) (-15 -4093 (|#1| |#1|))) (-283 |#2|) (-1214)) (T -282))
-NIL
-(-10 -8 (-15 -1865 (|#1| |#1| |#1|)) (-15 -3066 (|#1| |#2| |#1|)) (-15 -1865 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3066 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1498 (|#1| |#1| |#1|)) (-15 -1498 (|#1| |#1| |#2|)) (-15 -4268 (|#1| |#1| |#1| (-566))) (-15 -4268 (|#1| |#2| |#1| (-566))) (-15 -2201 (|#1| |#1| (-1231 (-566)))) (-15 -2201 (|#1| |#1| (-566))) (-15 -3704 (|#1| (-644 |#1|))) (-15 -3704 (|#1| |#1| |#1|)) (-15 -3704 (|#1| |#2| |#1|)) (-15 -3704 (|#1| |#1| |#2|)) (-15 -2651 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4186 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2651 (|#1| |#2| |#1|)) (-15 -4093 (|#1| |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1537 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) 8)) (-3874 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4418)))) (-3586 (($ (-1 (-112) |#1|) $) 86)) (-4186 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-4130 (($ $) 84 (|has| |#1| (-1099)))) (-4093 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3066 (($ (-1 (-112) |#1|) $) 90) (($ |#1| $) 85 (|has| |#1| (-1099)))) (-2651 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 52)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-4257 (($ (-771) |#1|) 70)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 44 (|has| (-566) (-850)))) (-1865 (($ (-1 (-112) |#1| |#1|) $ $) 87) (($ $ $) 83 (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 45 (|has| (-566) (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4265 (($ |#1| $ (-566)) 89) (($ $ $ (-566)) 88)) (-4268 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-1922 (((-644 (-566)) $) 47)) (-2040 (((-112) (-566) $) 48)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4062 ((|#1| $) 43 (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1720 (($ $ |#1|) 42 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-1424 (($ $ (-566)) 92) (($ $ (-1231 (-566))) 91)) (-2201 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 71)) (-1498 (($ $ |#1|) 94) (($ $ $) 93)) (-3704 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1922 (((-644 (-566)) $) 29)) (-2108 (((-771) $) 27)) (-3780 (((-862) $) 36) (($ (-644 (-566))) 23)) (-3801 (((-112) $ $) NIL)) (-3544 (($ (-771)) 33)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 9)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 17)))
+(((-276) (-13 (-850) (-10 -8 (-15 -3780 ($ (-644 (-566)))) (-15 -2108 ((-771) $)) (-15 -1922 ((-644 (-566)) $)) (-15 -3544 ($ (-771)))))) (T -276))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-276)))) (-2108 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-276)))) (-1922 (*1 *2 *1) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-276)))) (-3544 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-276)))))
+(-13 (-850) (-10 -8 (-15 -3780 ($ (-644 (-566)))) (-15 -2108 ((-771) $)) (-15 -1922 ((-644 (-566)) $)) (-15 -3544 ($ (-771)))))
+((-2865 ((|#2| |#2|) 77)) (-3939 ((|#2| |#2|) 65)) (-2273 (((-3 |#2| "failed") |#2| (-644 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 125)) (-2843 ((|#2| |#2|) 75)) (-3915 ((|#2| |#2|) 63)) (-2888 ((|#2| |#2|) 79)) (-3964 ((|#2| |#2|) 67)) (-3120 ((|#2|) 46)) (-2415 (((-114) (-114)) 100)) (-3671 ((|#2| |#2|) 61)) (-3300 (((-112) |#2|) 147)) (-3506 ((|#2| |#2|) 195)) (-4195 ((|#2| |#2|) 171)) (-1706 ((|#2|) 59)) (-4005 ((|#2|) 58)) (-3907 ((|#2| |#2|) 191)) (-1888 ((|#2| |#2|) 167)) (-2300 ((|#2| |#2|) 199)) (-3615 ((|#2| |#2|) 175)) (-3949 ((|#2| |#2|) 163)) (-2566 ((|#2| |#2|) 165)) (-1690 ((|#2| |#2|) 201)) (-2174 ((|#2| |#2|) 177)) (-4291 ((|#2| |#2|) 197)) (-3640 ((|#2| |#2|) 173)) (-2111 ((|#2| |#2|) 193)) (-4061 ((|#2| |#2|) 169)) (-4232 ((|#2| |#2|) 207)) (-4057 ((|#2| |#2|) 183)) (-4388 ((|#2| |#2|) 203)) (-3728 ((|#2| |#2|) 179)) (-3139 ((|#2| |#2|) 211)) (-3755 ((|#2| |#2|) 187)) (-1381 ((|#2| |#2|) 213)) (-3149 ((|#2| |#2|) 189)) (-2261 ((|#2| |#2|) 209)) (-1378 ((|#2| |#2|) 185)) (-2226 ((|#2| |#2|) 205)) (-2431 ((|#2| |#2|) 181)) (-4337 ((|#2| |#2|) 62)) (-2897 ((|#2| |#2|) 80)) (-3974 ((|#2| |#2|) 68)) (-2877 ((|#2| |#2|) 78)) (-3951 ((|#2| |#2|) 66)) (-2853 ((|#2| |#2|) 76)) (-3927 ((|#2| |#2|) 64)) (-1643 (((-112) (-114)) 98)) (-2931 ((|#2| |#2|) 83)) (-4009 ((|#2| |#2|) 71)) (-2907 ((|#2| |#2|) 81)) (-3986 ((|#2| |#2|) 69)) (-2954 ((|#2| |#2|) 85)) (-4033 ((|#2| |#2|) 73)) (-3181 ((|#2| |#2|) 86)) (-2834 ((|#2| |#2|) 74)) (-2943 ((|#2| |#2|) 84)) (-4021 ((|#2| |#2|) 72)) (-2920 ((|#2| |#2|) 82)) (-3997 ((|#2| |#2|) 70)))
+(((-277 |#1| |#2|) (-10 -7 (-15 -4337 (|#2| |#2|)) (-15 -3671 (|#2| |#2|)) (-15 -3915 (|#2| |#2|)) (-15 -3927 (|#2| |#2|)) (-15 -3939 (|#2| |#2|)) (-15 -3951 (|#2| |#2|)) (-15 -3964 (|#2| |#2|)) (-15 -3974 (|#2| |#2|)) (-15 -3986 (|#2| |#2|)) (-15 -3997 (|#2| |#2|)) (-15 -4009 (|#2| |#2|)) (-15 -4021 (|#2| |#2|)) (-15 -4033 (|#2| |#2|)) (-15 -2834 (|#2| |#2|)) (-15 -2843 (|#2| |#2|)) (-15 -2853 (|#2| |#2|)) (-15 -2865 (|#2| |#2|)) (-15 -2877 (|#2| |#2|)) (-15 -2888 (|#2| |#2|)) (-15 -2897 (|#2| |#2|)) (-15 -2907 (|#2| |#2|)) (-15 -2920 (|#2| |#2|)) (-15 -2931 (|#2| |#2|)) (-15 -2943 (|#2| |#2|)) (-15 -2954 (|#2| |#2|)) (-15 -3181 (|#2| |#2|)) (-15 -3120 (|#2|)) (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 -4005 (|#2|)) (-15 -1706 (|#2|)) (-15 -2566 (|#2| |#2|)) (-15 -3949 (|#2| |#2|)) (-15 -1888 (|#2| |#2|)) (-15 -4061 (|#2| |#2|)) (-15 -4195 (|#2| |#2|)) (-15 -3640 (|#2| |#2|)) (-15 -3615 (|#2| |#2|)) (-15 -2174 (|#2| |#2|)) (-15 -3728 (|#2| |#2|)) (-15 -2431 (|#2| |#2|)) (-15 -4057 (|#2| |#2|)) (-15 -1378 (|#2| |#2|)) (-15 -3755 (|#2| |#2|)) (-15 -3149 (|#2| |#2|)) (-15 -3907 (|#2| |#2|)) (-15 -2111 (|#2| |#2|)) (-15 -3506 (|#2| |#2|)) (-15 -4291 (|#2| |#2|)) (-15 -2300 (|#2| |#2|)) (-15 -1690 (|#2| |#2|)) (-15 -4388 (|#2| |#2|)) (-15 -2226 (|#2| |#2|)) (-15 -4232 (|#2| |#2|)) (-15 -2261 (|#2| |#2|)) (-15 -3139 (|#2| |#2|)) (-15 -1381 (|#2| |#2|)) (-15 -2273 ((-3 |#2| "failed") |#2| (-644 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -3300 ((-112) |#2|))) (-558) (-13 (-432 |#1|) (-1002))) (T -277))
+((-3300 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-277 *4 *3)) (-4 *3 (-13 (-432 *4) (-1002))))) (-2273 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-644 (-2 (|:| |func| *2) (|:| |pole| (-112))))) (-4 *2 (-13 (-432 *4) (-1002))) (-4 *4 (-558)) (-5 *1 (-277 *4 *2)))) (-1381 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3139 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2261 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4232 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2226 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4388 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-1690 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2300 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4291 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3506 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2111 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3907 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3149 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3755 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-1378 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4057 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2431 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3728 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2174 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3615 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3640 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4195 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4061 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-1888 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3949 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2566 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-1706 (*1 *2) (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2)) (-4 *3 (-558)))) (-4005 (*1 *2) (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2)) (-4 *3 (-558)))) (-2415 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-277 *3 *4)) (-4 *4 (-13 (-432 *3) (-1002))))) (-1643 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-277 *4 *5)) (-4 *5 (-13 (-432 *4) (-1002))))) (-3120 (*1 *2) (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2)) (-4 *3 (-558)))) (-3181 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2954 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2943 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2931 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2920 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2907 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2897 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2888 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2877 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2865 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2853 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2843 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-2834 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4033 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4021 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4009 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3997 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3986 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3974 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3964 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3951 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3939 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3927 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3915 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-3671 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))) (-4337 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002))))))
+(-10 -7 (-15 -4337 (|#2| |#2|)) (-15 -3671 (|#2| |#2|)) (-15 -3915 (|#2| |#2|)) (-15 -3927 (|#2| |#2|)) (-15 -3939 (|#2| |#2|)) (-15 -3951 (|#2| |#2|)) (-15 -3964 (|#2| |#2|)) (-15 -3974 (|#2| |#2|)) (-15 -3986 (|#2| |#2|)) (-15 -3997 (|#2| |#2|)) (-15 -4009 (|#2| |#2|)) (-15 -4021 (|#2| |#2|)) (-15 -4033 (|#2| |#2|)) (-15 -2834 (|#2| |#2|)) (-15 -2843 (|#2| |#2|)) (-15 -2853 (|#2| |#2|)) (-15 -2865 (|#2| |#2|)) (-15 -2877 (|#2| |#2|)) (-15 -2888 (|#2| |#2|)) (-15 -2897 (|#2| |#2|)) (-15 -2907 (|#2| |#2|)) (-15 -2920 (|#2| |#2|)) (-15 -2931 (|#2| |#2|)) (-15 -2943 (|#2| |#2|)) (-15 -2954 (|#2| |#2|)) (-15 -3181 (|#2| |#2|)) (-15 -3120 (|#2|)) (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 -4005 (|#2|)) (-15 -1706 (|#2|)) (-15 -2566 (|#2| |#2|)) (-15 -3949 (|#2| |#2|)) (-15 -1888 (|#2| |#2|)) (-15 -4061 (|#2| |#2|)) (-15 -4195 (|#2| |#2|)) (-15 -3640 (|#2| |#2|)) (-15 -3615 (|#2| |#2|)) (-15 -2174 (|#2| |#2|)) (-15 -3728 (|#2| |#2|)) (-15 -2431 (|#2| |#2|)) (-15 -4057 (|#2| |#2|)) (-15 -1378 (|#2| |#2|)) (-15 -3755 (|#2| |#2|)) (-15 -3149 (|#2| |#2|)) (-15 -3907 (|#2| |#2|)) (-15 -2111 (|#2| |#2|)) (-15 -3506 (|#2| |#2|)) (-15 -4291 (|#2| |#2|)) (-15 -2300 (|#2| |#2|)) (-15 -1690 (|#2| |#2|)) (-15 -4388 (|#2| |#2|)) (-15 -2226 (|#2| |#2|)) (-15 -4232 (|#2| |#2|)) (-15 -2261 (|#2| |#2|)) (-15 -3139 (|#2| |#2|)) (-15 -1381 (|#2| |#2|)) (-15 -2273 ((-3 |#2| "failed") |#2| (-644 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -3300 ((-112) |#2|)))
+((-4306 (((-3 |#2| "failed") (-644 (-612 |#2|)) |#2| (-1175)) 153)) (-3208 ((|#2| (-409 (-566)) |#2|) 49)) (-1522 ((|#2| |#2| (-612 |#2|)) 146)) (-2668 (((-2 (|:| |func| |#2|) (|:| |kers| (-644 (-612 |#2|))) (|:| |vals| (-644 |#2|))) |#2| (-1175)) 145)) (-3643 ((|#2| |#2| (-1175)) 20) ((|#2| |#2|) 23)) (-3512 ((|#2| |#2| (-1175)) 159) ((|#2| |#2|) 157)))
+(((-278 |#1| |#2|) (-10 -7 (-15 -3512 (|#2| |#2|)) (-15 -3512 (|#2| |#2| (-1175))) (-15 -2668 ((-2 (|:| |func| |#2|) (|:| |kers| (-644 (-612 |#2|))) (|:| |vals| (-644 |#2|))) |#2| (-1175))) (-15 -3643 (|#2| |#2|)) (-15 -3643 (|#2| |#2| (-1175))) (-15 -4306 ((-3 |#2| "failed") (-644 (-612 |#2|)) |#2| (-1175))) (-15 -1522 (|#2| |#2| (-612 |#2|))) (-15 -3208 (|#2| (-409 (-566)) |#2|))) (-13 (-558) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -278))
+((-3208 (*1 *2 *3 *2) (-12 (-5 *3 (-409 (-566))) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-1522 (*1 *2 *2 *3) (-12 (-5 *3 (-612 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *4 *2)))) (-4306 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-644 (-612 *2))) (-5 *4 (-1175)) (-4 *2 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *5 *2)))) (-3643 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-3643 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))) (-2668 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-2 (|:| |func| *3) (|:| |kers| (-644 (-612 *3))) (|:| |vals| (-644 *3)))) (-5 *1 (-278 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-3512 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-3512 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-278 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))))
+(-10 -7 (-15 -3512 (|#2| |#2|)) (-15 -3512 (|#2| |#2| (-1175))) (-15 -2668 ((-2 (|:| |func| |#2|) (|:| |kers| (-644 (-612 |#2|))) (|:| |vals| (-644 |#2|))) |#2| (-1175))) (-15 -3643 (|#2| |#2|)) (-15 -3643 (|#2| |#2| (-1175))) (-15 -4306 ((-3 |#2| "failed") (-644 (-612 |#2|)) |#2| (-1175))) (-15 -1522 (|#2| |#2| (-612 |#2|))) (-15 -3208 (|#2| (-409 (-566)) |#2|)))
+((-3867 (((-3 |#3| "failed") |#3|) 120)) (-2865 ((|#3| |#3|) 142)) (-4037 (((-3 |#3| "failed") |#3|) 89)) (-3939 ((|#3| |#3|) 132)) (-3811 (((-3 |#3| "failed") |#3|) 65)) (-2843 ((|#3| |#3|) 140)) (-2686 (((-3 |#3| "failed") |#3|) 53)) (-3915 ((|#3| |#3|) 130)) (-2318 (((-3 |#3| "failed") |#3|) 122)) (-2888 ((|#3| |#3|) 144)) (-3221 (((-3 |#3| "failed") |#3|) 91)) (-3964 ((|#3| |#3|) 134)) (-2125 (((-3 |#3| "failed") |#3| (-771)) 41)) (-3736 (((-3 |#3| "failed") |#3|) 81)) (-3671 ((|#3| |#3|) 129)) (-3029 (((-3 |#3| "failed") |#3|) 51)) (-4337 ((|#3| |#3|) 128)) (-4011 (((-3 |#3| "failed") |#3|) 123)) (-2897 ((|#3| |#3|) 145)) (-2659 (((-3 |#3| "failed") |#3|) 92)) (-3974 ((|#3| |#3|) 135)) (-3632 (((-3 |#3| "failed") |#3|) 121)) (-2877 ((|#3| |#3|) 143)) (-1872 (((-3 |#3| "failed") |#3|) 90)) (-3951 ((|#3| |#3|) 133)) (-3556 (((-3 |#3| "failed") |#3|) 67)) (-2853 ((|#3| |#3|) 141)) (-4191 (((-3 |#3| "failed") |#3|) 55)) (-3927 ((|#3| |#3|) 131)) (-4053 (((-3 |#3| "failed") |#3|) 73)) (-2931 ((|#3| |#3|) 148)) (-3872 (((-3 |#3| "failed") |#3|) 114)) (-4009 ((|#3| |#3|) 154)) (-4227 (((-3 |#3| "failed") |#3|) 69)) (-2907 ((|#3| |#3|) 146)) (-2034 (((-3 |#3| "failed") |#3|) 57)) (-3986 ((|#3| |#3|) 136)) (-1990 (((-3 |#3| "failed") |#3|) 77)) (-2954 ((|#3| |#3|) 150)) (-3299 (((-3 |#3| "failed") |#3|) 61)) (-4033 ((|#3| |#3|) 138)) (-3767 (((-3 |#3| "failed") |#3|) 79)) (-3181 ((|#3| |#3|) 151)) (-3620 (((-3 |#3| "failed") |#3|) 63)) (-2834 ((|#3| |#3|) 139)) (-2753 (((-3 |#3| "failed") |#3|) 75)) (-2943 ((|#3| |#3|) 149)) (-4003 (((-3 |#3| "failed") |#3|) 117)) (-4021 ((|#3| |#3|) 155)) (-2815 (((-3 |#3| "failed") |#3|) 71)) (-2920 ((|#3| |#3|) 147)) (-1946 (((-3 |#3| "failed") |#3|) 59)) (-3997 ((|#3| |#3|) 137)) (** ((|#3| |#3| (-409 (-566))) 47 (|has| |#1| (-365)))))
+(((-279 |#1| |#2| |#3|) (-13 (-983 |#3|) (-10 -7 (IF (|has| |#1| (-365)) (-15 ** (|#3| |#3| (-409 (-566)))) |%noBranch|) (-15 -4337 (|#3| |#3|)) (-15 -3671 (|#3| |#3|)) (-15 -3915 (|#3| |#3|)) (-15 -3927 (|#3| |#3|)) (-15 -3939 (|#3| |#3|)) (-15 -3951 (|#3| |#3|)) (-15 -3964 (|#3| |#3|)) (-15 -3974 (|#3| |#3|)) (-15 -3986 (|#3| |#3|)) (-15 -3997 (|#3| |#3|)) (-15 -4009 (|#3| |#3|)) (-15 -4021 (|#3| |#3|)) (-15 -4033 (|#3| |#3|)) (-15 -2834 (|#3| |#3|)) (-15 -2843 (|#3| |#3|)) (-15 -2853 (|#3| |#3|)) (-15 -2865 (|#3| |#3|)) (-15 -2877 (|#3| |#3|)) (-15 -2888 (|#3| |#3|)) (-15 -2897 (|#3| |#3|)) (-15 -2907 (|#3| |#3|)) (-15 -2920 (|#3| |#3|)) (-15 -2931 (|#3| |#3|)) (-15 -2943 (|#3| |#3|)) (-15 -2954 (|#3| |#3|)) (-15 -3181 (|#3| |#3|)))) (-38 (-409 (-566))) (-1255 |#1|) (-1226 |#1| |#2|)) (T -279))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-409 (-566))) (-4 *4 (-365)) (-4 *4 (-38 *3)) (-4 *5 (-1255 *4)) (-5 *1 (-279 *4 *5 *2)) (-4 *2 (-1226 *4 *5)))) (-4337 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3671 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3915 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3927 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3939 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3951 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3964 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3974 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3986 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3997 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-4009 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-4021 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-4033 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2834 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2843 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2853 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2865 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2877 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2888 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2897 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2907 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2920 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2931 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2943 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-2954 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))) (-3181 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3)) (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4)))))
+(-13 (-983 |#3|) (-10 -7 (IF (|has| |#1| (-365)) (-15 ** (|#3| |#3| (-409 (-566)))) |%noBranch|) (-15 -4337 (|#3| |#3|)) (-15 -3671 (|#3| |#3|)) (-15 -3915 (|#3| |#3|)) (-15 -3927 (|#3| |#3|)) (-15 -3939 (|#3| |#3|)) (-15 -3951 (|#3| |#3|)) (-15 -3964 (|#3| |#3|)) (-15 -3974 (|#3| |#3|)) (-15 -3986 (|#3| |#3|)) (-15 -3997 (|#3| |#3|)) (-15 -4009 (|#3| |#3|)) (-15 -4021 (|#3| |#3|)) (-15 -4033 (|#3| |#3|)) (-15 -2834 (|#3| |#3|)) (-15 -2843 (|#3| |#3|)) (-15 -2853 (|#3| |#3|)) (-15 -2865 (|#3| |#3|)) (-15 -2877 (|#3| |#3|)) (-15 -2888 (|#3| |#3|)) (-15 -2897 (|#3| |#3|)) (-15 -2907 (|#3| |#3|)) (-15 -2920 (|#3| |#3|)) (-15 -2931 (|#3| |#3|)) (-15 -2943 (|#3| |#3|)) (-15 -2954 (|#3| |#3|)) (-15 -3181 (|#3| |#3|))))
+((-3867 (((-3 |#3| "failed") |#3|) 70)) (-2865 ((|#3| |#3|) 137)) (-4037 (((-3 |#3| "failed") |#3|) 54)) (-3939 ((|#3| |#3|) 125)) (-3811 (((-3 |#3| "failed") |#3|) 66)) (-2843 ((|#3| |#3|) 135)) (-2686 (((-3 |#3| "failed") |#3|) 50)) (-3915 ((|#3| |#3|) 123)) (-2318 (((-3 |#3| "failed") |#3|) 74)) (-2888 ((|#3| |#3|) 139)) (-3221 (((-3 |#3| "failed") |#3|) 58)) (-3964 ((|#3| |#3|) 127)) (-2125 (((-3 |#3| "failed") |#3| (-771)) 38)) (-3736 (((-3 |#3| "failed") |#3|) 48)) (-3671 ((|#3| |#3|) 111)) (-3029 (((-3 |#3| "failed") |#3|) 46)) (-4337 ((|#3| |#3|) 122)) (-4011 (((-3 |#3| "failed") |#3|) 76)) (-2897 ((|#3| |#3|) 140)) (-2659 (((-3 |#3| "failed") |#3|) 60)) (-3974 ((|#3| |#3|) 128)) (-3632 (((-3 |#3| "failed") |#3|) 72)) (-2877 ((|#3| |#3|) 138)) (-1872 (((-3 |#3| "failed") |#3|) 56)) (-3951 ((|#3| |#3|) 126)) (-3556 (((-3 |#3| "failed") |#3|) 68)) (-2853 ((|#3| |#3|) 136)) (-4191 (((-3 |#3| "failed") |#3|) 52)) (-3927 ((|#3| |#3|) 124)) (-4053 (((-3 |#3| "failed") |#3|) 78)) (-2931 ((|#3| |#3|) 143)) (-3872 (((-3 |#3| "failed") |#3|) 62)) (-4009 ((|#3| |#3|) 131)) (-4227 (((-3 |#3| "failed") |#3|) 112)) (-2907 ((|#3| |#3|) 141)) (-2034 (((-3 |#3| "failed") |#3|) 100)) (-3986 ((|#3| |#3|) 129)) (-1990 (((-3 |#3| "failed") |#3|) 116)) (-2954 ((|#3| |#3|) 145)) (-3299 (((-3 |#3| "failed") |#3|) 107)) (-4033 ((|#3| |#3|) 133)) (-3767 (((-3 |#3| "failed") |#3|) 117)) (-3181 ((|#3| |#3|) 146)) (-3620 (((-3 |#3| "failed") |#3|) 109)) (-2834 ((|#3| |#3|) 134)) (-2753 (((-3 |#3| "failed") |#3|) 80)) (-2943 ((|#3| |#3|) 144)) (-4003 (((-3 |#3| "failed") |#3|) 64)) (-4021 ((|#3| |#3|) 132)) (-2815 (((-3 |#3| "failed") |#3|) 113)) (-2920 ((|#3| |#3|) 142)) (-1946 (((-3 |#3| "failed") |#3|) 103)) (-3997 ((|#3| |#3|) 130)) (** ((|#3| |#3| (-409 (-566))) 44 (|has| |#1| (-365)))))
+(((-280 |#1| |#2| |#3| |#4|) (-13 (-983 |#3|) (-10 -7 (IF (|has| |#1| (-365)) (-15 ** (|#3| |#3| (-409 (-566)))) |%noBranch|) (-15 -4337 (|#3| |#3|)) (-15 -3671 (|#3| |#3|)) (-15 -3915 (|#3| |#3|)) (-15 -3927 (|#3| |#3|)) (-15 -3939 (|#3| |#3|)) (-15 -3951 (|#3| |#3|)) (-15 -3964 (|#3| |#3|)) (-15 -3974 (|#3| |#3|)) (-15 -3986 (|#3| |#3|)) (-15 -3997 (|#3| |#3|)) (-15 -4009 (|#3| |#3|)) (-15 -4021 (|#3| |#3|)) (-15 -4033 (|#3| |#3|)) (-15 -2834 (|#3| |#3|)) (-15 -2843 (|#3| |#3|)) (-15 -2853 (|#3| |#3|)) (-15 -2865 (|#3| |#3|)) (-15 -2877 (|#3| |#3|)) (-15 -2888 (|#3| |#3|)) (-15 -2897 (|#3| |#3|)) (-15 -2907 (|#3| |#3|)) (-15 -2920 (|#3| |#3|)) (-15 -2931 (|#3| |#3|)) (-15 -2943 (|#3| |#3|)) (-15 -2954 (|#3| |#3|)) (-15 -3181 (|#3| |#3|)))) (-38 (-409 (-566))) (-1224 |#1|) (-1247 |#1| |#2|) (-983 |#2|)) (T -280))
+((** (*1 *2 *2 *3) (-12 (-5 *3 (-409 (-566))) (-4 *4 (-365)) (-4 *4 (-38 *3)) (-4 *5 (-1224 *4)) (-5 *1 (-280 *4 *5 *2 *6)) (-4 *2 (-1247 *4 *5)) (-4 *6 (-983 *5)))) (-4337 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3671 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3915 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3927 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3939 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3951 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3964 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3974 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3986 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3997 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-4009 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-4021 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-4033 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2834 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2843 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2853 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2865 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2877 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2888 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2897 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2907 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2920 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2931 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2943 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-2954 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))) (-3181 (*1 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3)) (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4)))))
+(-13 (-983 |#3|) (-10 -7 (IF (|has| |#1| (-365)) (-15 ** (|#3| |#3| (-409 (-566)))) |%noBranch|) (-15 -4337 (|#3| |#3|)) (-15 -3671 (|#3| |#3|)) (-15 -3915 (|#3| |#3|)) (-15 -3927 (|#3| |#3|)) (-15 -3939 (|#3| |#3|)) (-15 -3951 (|#3| |#3|)) (-15 -3964 (|#3| |#3|)) (-15 -3974 (|#3| |#3|)) (-15 -3986 (|#3| |#3|)) (-15 -3997 (|#3| |#3|)) (-15 -4009 (|#3| |#3|)) (-15 -4021 (|#3| |#3|)) (-15 -4033 (|#3| |#3|)) (-15 -2834 (|#3| |#3|)) (-15 -2843 (|#3| |#3|)) (-15 -2853 (|#3| |#3|)) (-15 -2865 (|#3| |#3|)) (-15 -2877 (|#3| |#3|)) (-15 -2888 (|#3| |#3|)) (-15 -2897 (|#3| |#3|)) (-15 -2907 (|#3| |#3|)) (-15 -2920 (|#3| |#3|)) (-15 -2931 (|#3| |#3|)) (-15 -2943 (|#3| |#3|)) (-15 -2954 (|#3| |#3|)) (-15 -3181 (|#3| |#3|))))
+((-1751 (((-112) $) 20)) (-3004 (((-183) $) 7)) (-1829 (((-3 (-508) "failed") $) 14)) (-1305 (((-3 (-644 $) "failed") $) NIL)) (-2285 (((-3 (-508) "failed") $) 21)) (-1512 (((-3 (-1103) "failed") $) 18)) (-3201 (((-112) $) 16)) (-3780 (((-862) $) NIL)) (-2056 (((-112) $) 9)))
+(((-281) (-13 (-613 (-862)) (-10 -8 (-15 -3004 ((-183) $)) (-15 -3201 ((-112) $)) (-15 -1512 ((-3 (-1103) "failed") $)) (-15 -1751 ((-112) $)) (-15 -2285 ((-3 (-508) "failed") $)) (-15 -2056 ((-112) $)) (-15 -1829 ((-3 (-508) "failed") $)) (-15 -1305 ((-3 (-644 $) "failed") $))))) (T -281))
+((-3004 (*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-281)))) (-3201 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281)))) (-1512 (*1 *2 *1) (|partial| -12 (-5 *2 (-1103)) (-5 *1 (-281)))) (-1751 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281)))) (-2285 (*1 *2 *1) (|partial| -12 (-5 *2 (-508)) (-5 *1 (-281)))) (-2056 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281)))) (-1829 (*1 *2 *1) (|partial| -12 (-5 *2 (-508)) (-5 *1 (-281)))) (-1305 (*1 *2 *1) (|partial| -12 (-5 *2 (-644 (-281))) (-5 *1 (-281)))))
+(-13 (-613 (-862)) (-10 -8 (-15 -3004 ((-183) $)) (-15 -3201 ((-112) $)) (-15 -1512 ((-3 (-1103) "failed") $)) (-15 -1751 ((-112) $)) (-15 -2285 ((-3 (-508) "failed") $)) (-15 -2056 ((-112) $)) (-15 -1829 ((-3 (-508) "failed") $)) (-15 -1305 ((-3 (-644 $) "failed") $))))
+((-1386 (($ (-1 (-112) |#2|) $) 24)) (-4133 (($ $) 38)) (-1450 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 36)) (-2661 (($ |#2| $) 34) (($ (-1 (-112) |#2|) $) 18)) (-2761 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 42)) (-4286 (($ |#2| $ (-566)) 20) (($ $ $ (-566)) 22)) (-2215 (($ $ (-566)) 11) (($ $ (-1231 (-566))) 14)) (-3324 (($ $ |#2|) 32) (($ $ $) NIL)) (-3727 (($ $ |#2|) 31) (($ |#2| $) NIL) (($ $ $) 26) (($ (-644 $)) NIL)))
+(((-282 |#1| |#2|) (-10 -8 (-15 -2761 (|#1| |#1| |#1|)) (-15 -1450 (|#1| |#2| |#1|)) (-15 -2761 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1450 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3324 (|#1| |#1| |#1|)) (-15 -3324 (|#1| |#1| |#2|)) (-15 -4286 (|#1| |#1| |#1| (-566))) (-15 -4286 (|#1| |#2| |#1| (-566))) (-15 -2215 (|#1| |#1| (-1231 (-566)))) (-15 -2215 (|#1| |#1| (-566))) (-15 -3727 (|#1| (-644 |#1|))) (-15 -3727 (|#1| |#1| |#1|)) (-15 -3727 (|#1| |#2| |#1|)) (-15 -3727 (|#1| |#1| |#2|)) (-15 -2661 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1386 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2661 (|#1| |#2| |#1|)) (-15 -4133 (|#1| |#1|))) (-283 |#2|) (-1214)) (T -282))
+NIL
+(-10 -8 (-15 -2761 (|#1| |#1| |#1|)) (-15 -1450 (|#1| |#2| |#1|)) (-15 -2761 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -1450 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3324 (|#1| |#1| |#1|)) (-15 -3324 (|#1| |#1| |#2|)) (-15 -4286 (|#1| |#1| |#1| (-566))) (-15 -4286 (|#1| |#2| |#1| (-566))) (-15 -2215 (|#1| |#1| (-1231 (-566)))) (-15 -2215 (|#1| |#1| (-566))) (-15 -3727 (|#1| (-644 |#1|))) (-15 -3727 (|#1| |#1| |#1|)) (-15 -3727 (|#1| |#2| |#1|)) (-15 -3727 (|#1| |#1| |#2|)) (-15 -2661 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1386 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2661 (|#1| |#2| |#1|)) (-15 -4133 (|#1| |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2518 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) 8)) (-3916 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4415)))) (-2556 (($ (-1 (-112) |#1|) $) 86)) (-1386 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-4060 (($ $) 84 (|has| |#1| (-1099)))) (-4133 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1450 (($ (-1 (-112) |#1|) $) 90) (($ |#1| $) 85 (|has| |#1| (-1099)))) (-2661 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 52)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-4278 (($ (-771) |#1|) 70)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 44 (|has| (-566) (-850)))) (-2761 (($ (-1 (-112) |#1| |#1|) $ $) 87) (($ $ $) 83 (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 45 (|has| (-566) (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2903 (($ |#1| $ (-566)) 89) (($ $ $ (-566)) 88)) (-4286 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-2140 (((-644 (-566)) $) 47)) (-3935 (((-112) (-566) $) 48)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4101 ((|#1| $) 43 (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3750 (($ $ |#1|) 42 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-3798 (($ $ (-566)) 92) (($ $ (-1231 (-566))) 91)) (-2215 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 71)) (-3324 (($ $ |#1|) 94) (($ $ $) 93)) (-3727 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-283 |#1|) (-140) (-1214)) (T -283))
-((-1498 (*1 *1 *1 *2) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)))) (-1498 (*1 *1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)))) (-1424 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-1424 (*1 *1 *1 *2) (-12 (-5 *2 (-1231 (-566))) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-3066 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-4265 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-283 *2)) (-4 *2 (-1214)))) (-4265 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-1865 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-3586 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-3066 (*1 *1 *2 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-1099)))) (-4130 (*1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-1099)))) (-1865 (*1 *1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-850)))))
-(-13 (-651 |t#1|) (-10 -8 (-6 -4418) (-15 -1498 ($ $ |t#1|)) (-15 -1498 ($ $ $)) (-15 -1424 ($ $ (-566))) (-15 -1424 ($ $ (-1231 (-566)))) (-15 -3066 ($ (-1 (-112) |t#1|) $)) (-15 -4265 ($ |t#1| $ (-566))) (-15 -4265 ($ $ $ (-566))) (-15 -1865 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3586 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1099)) (PROGN (-15 -3066 ($ |t#1| $)) (-15 -4130 ($ $))) |%noBranch|) (IF (|has| |t#1| (-850)) (-15 -1865 ($ $ $)) |%noBranch|)))
+((-3324 (*1 *1 *1 *2) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)))) (-3324 (*1 *1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)))) (-3798 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-3798 (*1 *1 *1 *2) (-12 (-5 *2 (-1231 (-566))) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-1450 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-2903 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-283 *2)) (-4 *2 (-1214)))) (-2903 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-2761 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-2556 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))) (-1450 (*1 *1 *2 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-1099)))) (-4060 (*1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-1099)))) (-2761 (*1 *1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-850)))))
+(-13 (-651 |t#1|) (-10 -8 (-6 -4415) (-15 -3324 ($ $ |t#1|)) (-15 -3324 ($ $ $)) (-15 -3798 ($ $ (-566))) (-15 -3798 ($ $ (-1231 (-566)))) (-15 -1450 ($ (-1 (-112) |t#1|) $)) (-15 -2903 ($ |t#1| $ (-566))) (-15 -2903 ($ $ $ (-566))) (-15 -2761 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -2556 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1099)) (PROGN (-15 -1450 ($ |t#1| $)) (-15 -4060 ($ $))) |%noBranch|) (IF (|has| |t#1| (-850)) (-15 -2761 ($ $ $)) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-287 #0=(-566) |#1|) . T) ((-289 #0# |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-604 #0# |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-651 |#1|) . T) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
((** (($ $ $) 10)))
(((-284 |#1|) (-10 -8 (-15 ** (|#1| |#1| |#1|))) (-285)) (T -284))
NIL
(-10 -8 (-15 ** (|#1| |#1| |#1|)))
-((-3668 (($ $) 6)) (-3613 (($ $) 7)) (** (($ $ $) 8)))
+((-3671 (($ $) 6)) (-4337 (($ $) 7)) (** (($ $ $) 8)))
(((-285) (-140)) (T -285))
-((** (*1 *1 *1 *1) (-4 *1 (-285))) (-3613 (*1 *1 *1) (-4 *1 (-285))) (-3668 (*1 *1 *1) (-4 *1 (-285))))
-(-13 (-10 -8 (-15 -3668 ($ $)) (-15 -3613 ($ $)) (-15 ** ($ $ $))))
-((-3655 (((-644 (-1155 |#1|)) (-1155 |#1|) |#1|) 35)) (-4057 ((|#2| |#2| |#1|) 39)) (-1338 ((|#2| |#2| |#1|) 41)) (-3865 ((|#2| |#2| |#1|) 40)))
-(((-286 |#1| |#2|) (-10 -7 (-15 -4057 (|#2| |#2| |#1|)) (-15 -3865 (|#2| |#2| |#1|)) (-15 -1338 (|#2| |#2| |#1|)) (-15 -3655 ((-644 (-1155 |#1|)) (-1155 |#1|) |#1|))) (-365) (-1255 |#1|)) (T -286))
-((-3655 (*1 *2 *3 *4) (-12 (-4 *4 (-365)) (-5 *2 (-644 (-1155 *4))) (-5 *1 (-286 *4 *5)) (-5 *3 (-1155 *4)) (-4 *5 (-1255 *4)))) (-1338 (*1 *2 *2 *3) (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))) (-3865 (*1 *2 *2 *3) (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))) (-4057 (*1 *2 *2 *3) (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))))
-(-10 -7 (-15 -4057 (|#2| |#2| |#1|)) (-15 -3865 (|#2| |#2| |#1|)) (-15 -1338 (|#2| |#2| |#1|)) (-15 -3655 ((-644 (-1155 |#1|)) (-1155 |#1|) |#1|)))
-((-4386 ((|#2| $ |#1|) 6)))
+((** (*1 *1 *1 *1) (-4 *1 (-285))) (-4337 (*1 *1 *1) (-4 *1 (-285))) (-3671 (*1 *1 *1) (-4 *1 (-285))))
+(-13 (-10 -8 (-15 -3671 ($ $)) (-15 -4337 ($ $)) (-15 ** ($ $ $))))
+((-1979 (((-644 (-1155 |#1|)) (-1155 |#1|) |#1|) 35)) (-2293 ((|#2| |#2| |#1|) 39)) (-3241 ((|#2| |#2| |#1|) 41)) (-1544 ((|#2| |#2| |#1|) 40)))
+(((-286 |#1| |#2|) (-10 -7 (-15 -2293 (|#2| |#2| |#1|)) (-15 -1544 (|#2| |#2| |#1|)) (-15 -3241 (|#2| |#2| |#1|)) (-15 -1979 ((-644 (-1155 |#1|)) (-1155 |#1|) |#1|))) (-365) (-1255 |#1|)) (T -286))
+((-1979 (*1 *2 *3 *4) (-12 (-4 *4 (-365)) (-5 *2 (-644 (-1155 *4))) (-5 *1 (-286 *4 *5)) (-5 *3 (-1155 *4)) (-4 *5 (-1255 *4)))) (-3241 (*1 *2 *2 *3) (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))) (-1544 (*1 *2 *2 *3) (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))) (-2293 (*1 *2 *2 *3) (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))))
+(-10 -7 (-15 -2293 (|#2| |#2| |#1|)) (-15 -1544 (|#2| |#2| |#1|)) (-15 -3241 (|#2| |#2| |#1|)) (-15 -1979 ((-644 (-1155 |#1|)) (-1155 |#1|) |#1|)))
+((-4393 ((|#2| $ |#1|) 6)))
(((-287 |#1| |#2|) (-140) (-1099) (-1214)) (T -287))
-((-4386 (*1 *2 *1 *3) (-12 (-4 *1 (-287 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))))
-(-13 (-10 -8 (-15 -4386 (|t#2| $ |t#1|))))
-((-1332 ((|#3| $ |#2| |#3|) 12)) (-3137 ((|#3| $ |#2|) 10)))
-(((-288 |#1| |#2| |#3|) (-10 -8 (-15 -1332 (|#3| |#1| |#2| |#3|)) (-15 -3137 (|#3| |#1| |#2|))) (-289 |#2| |#3|) (-1099) (-1214)) (T -288))
+((-4393 (*1 *2 *1 *3) (-12 (-4 *1 (-287 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))))
+(-13 (-10 -8 (-15 -4393 (|t#2| $ |t#1|))))
+((-3128 ((|#3| $ |#2| |#3|) 12)) (-3059 ((|#3| $ |#2|) 10)))
+(((-288 |#1| |#2| |#3|) (-10 -8 (-15 -3128 (|#3| |#1| |#2| |#3|)) (-15 -3059 (|#3| |#1| |#2|))) (-289 |#2| |#3|) (-1099) (-1214)) (T -288))
NIL
-(-10 -8 (-15 -1332 (|#3| |#1| |#2| |#3|)) (-15 -3137 (|#3| |#1| |#2|)))
-((-3874 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4418)))) (-1332 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) 11)) (-4386 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
+(-10 -8 (-15 -3128 (|#3| |#1| |#2| |#3|)) (-15 -3059 (|#3| |#1| |#2|)))
+((-3916 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4415)))) (-3128 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) 11)) (-4393 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
(((-289 |#1| |#2|) (-140) (-1099) (-1214)) (T -289))
-((-4386 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-289 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))) (-3137 (*1 *2 *1 *3) (-12 (-4 *1 (-289 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))) (-3874 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-289 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))) (-1332 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-289 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))))
-(-13 (-287 |t#1| |t#2|) (-10 -8 (-15 -4386 (|t#2| $ |t#1| |t#2|)) (-15 -3137 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4418)) (PROGN (-15 -3874 (|t#2| $ |t#1| |t#2|)) (-15 -1332 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
+((-4393 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-289 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))) (-3059 (*1 *2 *1 *3) (-12 (-4 *1 (-289 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))) (-3916 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-289 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))) (-3128 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-289 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))))
+(-13 (-287 |t#1| |t#2|) (-10 -8 (-15 -4393 (|t#2| $ |t#1| |t#2|)) (-15 -3059 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4415)) (PROGN (-15 -3916 (|t#2| $ |t#1| |t#2|)) (-15 -3128 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
(((-287 |#1| |#2|) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 37)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 44)) (-3653 (($ $) 41)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-1561 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-2926 (($ $ $) 35)) (-4362 (($ |#2| |#3|) 18)) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2741 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-4030 ((|#3| $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 19)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-4147 (((-3 $ "failed") $ $) NIL)) (-1813 (((-771) $) 36)) (-4386 ((|#2| $ |#2|) 46)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 23)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-2485 (($) 31 T CONST)) (-2495 (($) 39 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 40)))
-(((-290 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-308) (-10 -8 (-15 -4030 (|#3| $)) (-15 -2512 (|#2| $)) (-15 -4362 ($ |#2| |#3|)) (-15 -4147 ((-3 $ "failed") $ $)) (-15 -1579 ((-3 $ "failed") $)) (-15 -2626 ($ $)) (-15 -4386 (|#2| $ |#2|)))) (-172) (-1240 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -290))
-((-1579 (*1 *1 *1) (|partial| -12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1240 *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)))) (-4030 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-23)) (-5 *1 (-290 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1240 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-2512 (*1 *2 *1) (-12 (-4 *2 (-1240 *3)) (-5 *1 (-290 *3 *2 *4 *5 *6 *7)) (-4 *3 (-172)) (-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)))) (-4362 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-290 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1240 *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)))) (-4147 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1240 *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)))) (-2626 (*1 *1 *1) (-12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1240 *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)))) (-4386 (*1 *2 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-290 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1240 *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 (-308) (-10 -8 (-15 -4030 (|#3| $)) (-15 -2512 (|#2| $)) (-15 -4362 ($ |#2| |#3|)) (-15 -4147 ((-3 $ "failed") $ $)) (-15 -1579 ((-3 $ "failed") $)) (-15 -2626 ($ $)) (-15 -4386 (|#2| $ |#2|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 37)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 44)) (-1968 (($ $) 41)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2738 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-2949 (($ $ $) 35)) (-1580 (($ |#2| |#3|) 18)) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-3466 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2468 ((|#3| $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 19)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-4214 (((-3 $ "failed") $ $) NIL)) (-3470 (((-771) $) 36)) (-4393 ((|#2| $ |#2|) 46)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 23)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-2493 (($) 31 T CONST)) (-4333 (($) 39 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 40)))
+(((-290 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-308) (-10 -8 (-15 -2468 (|#3| $)) (-15 -3780 (|#2| $)) (-15 -1580 ($ |#2| |#3|)) (-15 -4214 ((-3 $ "failed") $ $)) (-15 -2928 ((-3 $ "failed") $)) (-15 -3584 ($ $)) (-15 -4393 (|#2| $ |#2|)))) (-172) (-1240 |#1|) (-23) (-1 |#2| |#2| |#3|) (-1 (-3 |#3| "failed") |#3| |#3|) (-1 (-3 |#2| "failed") |#2| |#2| |#3|)) (T -290))
+((-2928 (*1 *1 *1) (|partial| -12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1240 *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)))) (-2468 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-23)) (-5 *1 (-290 *3 *4 *2 *5 *6 *7)) (-4 *4 (-1240 *3)) (-14 *5 (-1 *4 *4 *2)) (-14 *6 (-1 (-3 *2 "failed") *2 *2)) (-14 *7 (-1 (-3 *4 "failed") *4 *4 *2)))) (-3780 (*1 *2 *1) (-12 (-4 *2 (-1240 *3)) (-5 *1 (-290 *3 *2 *4 *5 *6 *7)) (-4 *3 (-172)) (-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)))) (-1580 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-290 *4 *2 *3 *5 *6 *7)) (-4 *2 (-1240 *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)))) (-4214 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1240 *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)))) (-3584 (*1 *1 *1) (-12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7)) (-4 *3 (-1240 *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)))) (-4393 (*1 *2 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-290 *3 *2 *4 *5 *6 *7)) (-4 *2 (-1240 *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 (-308) (-10 -8 (-15 -2468 (|#3| $)) (-15 -3780 (|#2| $)) (-15 -1580 ($ |#2| |#3|)) (-15 -4214 ((-3 $ "failed") $ $)) (-15 -2928 ((-3 $ "failed") $)) (-15 -3584 ($ $)) (-15 -4393 (|#2| $ |#2|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-291) (-140)) (T -291))
NIL
-(-13 (-1049) (-111 $ $) (-10 -7 (-6 -4410)))
+(-13 (-1049) (-111 $ $) (-10 -7 (-6 -4407)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-726) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-3813 (($ (-508) (-508) (-1103) $) 19)) (-2002 (($ (-508) (-644 (-965)) $) 23)) (-4267 (((-644 (-1084)) $) 10)) (-2707 (($) 25)) (-3299 (((-691 (-1103)) (-508) (-508) $) 18)) (-2957 (((-644 (-965)) (-508) $) 22)) (-2954 (($) 7)) (-3148 (($) 24)) (-2512 (((-862) $) 29)) (-4041 (($) 26)))
-(((-292) (-13 (-613 (-862)) (-10 -8 (-15 -2954 ($)) (-15 -4267 ((-644 (-1084)) $)) (-15 -3299 ((-691 (-1103)) (-508) (-508) $)) (-15 -3813 ($ (-508) (-508) (-1103) $)) (-15 -2957 ((-644 (-965)) (-508) $)) (-15 -2002 ($ (-508) (-644 (-965)) $)) (-15 -3148 ($)) (-15 -2707 ($)) (-15 -4041 ($))))) (T -292))
-((-2954 (*1 *1) (-5 *1 (-292))) (-4267 (*1 *2 *1) (-12 (-5 *2 (-644 (-1084))) (-5 *1 (-292)))) (-3299 (*1 *2 *3 *3 *1) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-1103))) (-5 *1 (-292)))) (-3813 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-508)) (-5 *3 (-1103)) (-5 *1 (-292)))) (-2957 (*1 *2 *3 *1) (-12 (-5 *3 (-508)) (-5 *2 (-644 (-965))) (-5 *1 (-292)))) (-2002 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-508)) (-5 *3 (-644 (-965))) (-5 *1 (-292)))) (-3148 (*1 *1) (-5 *1 (-292))) (-2707 (*1 *1) (-5 *1 (-292))) (-4041 (*1 *1) (-5 *1 (-292))))
-(-13 (-613 (-862)) (-10 -8 (-15 -2954 ($)) (-15 -4267 ((-644 (-1084)) $)) (-15 -3299 ((-691 (-1103)) (-508) (-508) $)) (-15 -3813 ($ (-508) (-508) (-1103) $)) (-15 -2957 ((-644 (-965)) (-508) $)) (-15 -2002 ($ (-508) (-644 (-965)) $)) (-15 -3148 ($)) (-15 -2707 ($)) (-15 -4041 ($))))
-((-3052 (((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |geneigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|)))) 105)) (-3638 (((-644 (-689 (-409 (-952 |#1|)))) (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|)))))) (-689 (-409 (-952 |#1|)))) 100) (((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|))) (-771) (-771)) 41)) (-2532 (((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|)))) 102)) (-4081 (((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|)))) 77)) (-1747 (((-644 (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (-689 (-409 (-952 |#1|)))) 76)) (-1963 (((-952 |#1|) (-689 (-409 (-952 |#1|)))) 57) (((-952 |#1|) (-689 (-409 (-952 |#1|))) (-1175)) 58)))
-(((-293 |#1|) (-10 -7 (-15 -1963 ((-952 |#1|) (-689 (-409 (-952 |#1|))) (-1175))) (-15 -1963 ((-952 |#1|) (-689 (-409 (-952 |#1|))))) (-15 -1747 ((-644 (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (-689 (-409 (-952 |#1|))))) (-15 -4081 ((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|))))) (-15 -3638 ((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|))) (-771) (-771))) (-15 -3638 ((-644 (-689 (-409 (-952 |#1|)))) (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|)))))) (-689 (-409 (-952 |#1|))))) (-15 -3052 ((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |geneigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|))))) (-15 -2532 ((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|)))))) (-454)) (T -293))
-((-2532 (*1 *2 *3) (-12 (-4 *4 (-454)) (-5 *2 (-644 (-2 (|:| |eigval| (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 *4)))))))) (-5 *1 (-293 *4)) (-5 *3 (-689 (-409 (-952 *4)))))) (-3052 (*1 *2 *3) (-12 (-4 *4 (-454)) (-5 *2 (-644 (-2 (|:| |eigval| (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4)))) (|:| |geneigvec| (-644 (-689 (-409 (-952 *4)))))))) (-5 *1 (-293 *4)) (-5 *3 (-689 (-409 (-952 *4)))))) (-3638 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-409 (-952 *5)) (-1164 (-1175) (-952 *5)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 *4)))) (-4 *5 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *5))))) (-5 *1 (-293 *5)) (-5 *4 (-689 (-409 (-952 *5)))))) (-3638 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-409 (-952 *6)) (-1164 (-1175) (-952 *6)))) (-5 *5 (-771)) (-4 *6 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *6))))) (-5 *1 (-293 *6)) (-5 *4 (-689 (-409 (-952 *6)))))) (-4081 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-409 (-952 *5)) (-1164 (-1175) (-952 *5)))) (-4 *5 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *5))))) (-5 *1 (-293 *5)) (-5 *4 (-689 (-409 (-952 *5)))))) (-1747 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-952 *4)))) (-4 *4 (-454)) (-5 *2 (-644 (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4))))) (-5 *1 (-293 *4)))) (-1963 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-952 *4)))) (-5 *2 (-952 *4)) (-5 *1 (-293 *4)) (-4 *4 (-454)))) (-1963 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-409 (-952 *5)))) (-5 *4 (-1175)) (-5 *2 (-952 *5)) (-5 *1 (-293 *5)) (-4 *5 (-454)))))
-(-10 -7 (-15 -1963 ((-952 |#1|) (-689 (-409 (-952 |#1|))) (-1175))) (-15 -1963 ((-952 |#1|) (-689 (-409 (-952 |#1|))))) (-15 -1747 ((-644 (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (-689 (-409 (-952 |#1|))))) (-15 -4081 ((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|))))) (-15 -3638 ((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|))) (-771) (-771))) (-15 -3638 ((-644 (-689 (-409 (-952 |#1|)))) (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|)))))) (-689 (-409 (-952 |#1|))))) (-15 -3052 ((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |geneigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|))))) (-15 -2532 ((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|))))))
-((-3077 (((-295 |#2|) (-1 |#2| |#1|) (-295 |#1|)) 14)))
-(((-294 |#1| |#2|) (-10 -7 (-15 -3077 ((-295 |#2|) (-1 |#2| |#1|) (-295 |#1|)))) (-1214) (-1214)) (T -294))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-295 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-295 *6)) (-5 *1 (-294 *5 *6)))))
-(-10 -7 (-15 -3077 ((-295 |#2|) (-1 |#2| |#1|) (-295 |#1|))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3958 (((-112) $) NIL (|has| |#1| (-21)))) (-1513 (($ $) 12)) (-4126 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3226 (($ $ $) 95 (|has| |#1| (-303)))) (-2342 (($) NIL (-2805 (|has| |#1| (-21)) (|has| |#1| (-726))) CONST)) (-3828 (($ $) 51 (|has| |#1| (-21)))) (-2629 (((-3 $ "failed") $) 62 (|has| |#1| (-726)))) (-3336 ((|#1| $) 11)) (-1579 (((-3 $ "failed") $) 60 (|has| |#1| (-726)))) (-2741 (((-112) $) NIL (|has| |#1| (-726)))) (-3077 (($ (-1 |#1| |#1|) $) 14)) (-3324 ((|#1| $) 10)) (-2456 (($ $) 50 (|has| |#1| (-21)))) (-2309 (((-3 $ "failed") $) 61 (|has| |#1| (-726)))) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2626 (($ $) 64 (-2805 (|has| |#1| (-365)) (|has| |#1| (-475))))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2054 (((-644 $) $) 85 (|has| |#1| (-558)))) (-2070 (($ $ $) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 $)) 28 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-1175) |#1|) 17 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 21 (|has| |#1| (-516 (-1175) |#1|)))) (-2077 (($ |#1| |#1|) 9)) (-1909 (((-134)) 90 (|has| |#1| (-365)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) 87 (|has| |#1| (-900 (-1175))))) (-2032 (($ $ $) NIL (|has| |#1| (-475)))) (-3755 (($ $ $) NIL (|has| |#1| (-475)))) (-2512 (($ (-566)) NIL (|has| |#1| (-1049))) (((-112) $) 37 (|has| |#1| (-1099))) (((-862) $) 36 (|has| |#1| (-1099)))) (-3795 (((-771)) 67 (|has| |#1| (-1049)) CONST)) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2485 (($) 47 (|has| |#1| (-21)) CONST)) (-2495 (($) 57 (|has| |#1| (-726)) CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175))))) (-2940 (($ |#1| |#1|) 8) (((-112) $ $) 32 (|has| |#1| (-1099)))) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) 92 (-2805 (|has| |#1| (-365)) (|has| |#1| (-475))))) (-3047 (($ |#1| $) 45 (|has| |#1| (-21))) (($ $ |#1|) 46 (|has| |#1| (-21))) (($ $ $) 44 (|has| |#1| (-21))) (($ $) 43 (|has| |#1| (-21)))) (-3034 (($ |#1| $) 40 (|has| |#1| (-25))) (($ $ |#1|) 41 (|has| |#1| (-25))) (($ $ $) 39 (|has| |#1| (-25)))) (** (($ $ (-566)) NIL (|has| |#1| (-475))) (($ $ (-771)) NIL (|has| |#1| (-726))) (($ $ (-921)) NIL (|has| |#1| (-1111)))) (* (($ $ |#1|) 55 (|has| |#1| (-1111))) (($ |#1| $) 54 (|has| |#1| (-1111))) (($ $ $) 53 (|has| |#1| (-1111))) (($ (-566) $) 70 (|has| |#1| (-21))) (($ (-771) $) NIL (|has| |#1| (-21))) (($ (-921) $) NIL (|has| |#1| (-25)))))
-(((-295 |#1|) (-13 (-1214) (-10 -8 (-15 -2940 ($ |#1| |#1|)) (-15 -2077 ($ |#1| |#1|)) (-15 -1513 ($ $)) (-15 -3324 (|#1| $)) (-15 -3336 (|#1| $)) (-15 -3077 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-516 (-1175) |#1|)) (-6 (-516 (-1175) |#1|)) |%noBranch|) (IF (|has| |#1| (-1099)) (PROGN (-6 (-1099)) (-6 (-613 (-112))) (IF (|has| |#1| (-310 |#1|)) (PROGN (-15 -2070 ($ $ $)) (-15 -2070 ($ $ (-644 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -3034 ($ |#1| $)) (-15 -3034 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2456 ($ $)) (-15 -3828 ($ $)) (-15 -3047 ($ |#1| $)) (-15 -3047 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1111)) (PROGN (-6 (-1111)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-726)) (PROGN (-6 (-726)) (-15 -2309 ((-3 $ "failed") $)) (-15 -2629 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-475)) (PROGN (-6 (-475)) (-15 -2309 ((-3 $ "failed") $)) (-15 -2629 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-6 (-1049)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-717 |#1|)) |%noBranch|) (IF (|has| |#1| (-558)) (-15 -2054 ((-644 $) $)) |%noBranch|) (IF (|has| |#1| (-900 (-1175))) (-6 (-900 (-1175))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-6 (-1271 |#1|)) (-15 -3061 ($ $ $)) (-15 -2626 ($ $))) |%noBranch|) (IF (|has| |#1| (-303)) (-15 -3226 ($ $ $)) |%noBranch|))) (-1214)) (T -295))
-((-2940 (*1 *1 *2 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))) (-2077 (*1 *1 *2 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))) (-1513 (*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))) (-3324 (*1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))) (-3336 (*1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))) (-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-295 *3)))) (-2070 (*1 *1 *1 *1) (-12 (-4 *2 (-310 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)) (-5 *1 (-295 *2)))) (-2070 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-295 *3))) (-4 *3 (-310 *3)) (-4 *3 (-1099)) (-4 *3 (-1214)) (-5 *1 (-295 *3)))) (-3034 (*1 *1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-25)) (-4 *2 (-1214)))) (-3034 (*1 *1 *1 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-25)) (-4 *2 (-1214)))) (-2456 (*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))) (-3828 (*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))) (-3047 (*1 *1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))) (-3047 (*1 *1 *1 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))) (-2309 (*1 *1 *1) (|partial| -12 (-5 *1 (-295 *2)) (-4 *2 (-726)) (-4 *2 (-1214)))) (-2629 (*1 *1 *1) (|partial| -12 (-5 *1 (-295 *2)) (-4 *2 (-726)) (-4 *2 (-1214)))) (-2054 (*1 *2 *1) (-12 (-5 *2 (-644 (-295 *3))) (-5 *1 (-295 *3)) (-4 *3 (-558)) (-4 *3 (-1214)))) (-3226 (*1 *1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-303)) (-4 *2 (-1214)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1111)) (-4 *2 (-1214)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1111)) (-4 *2 (-1214)))) (-3061 (*1 *1 *1 *1) (-2805 (-12 (-5 *1 (-295 *2)) (-4 *2 (-365)) (-4 *2 (-1214))) (-12 (-5 *1 (-295 *2)) (-4 *2 (-475)) (-4 *2 (-1214))))) (-2626 (*1 *1 *1) (-2805 (-12 (-5 *1 (-295 *2)) (-4 *2 (-365)) (-4 *2 (-1214))) (-12 (-5 *1 (-295 *2)) (-4 *2 (-475)) (-4 *2 (-1214))))))
-(-13 (-1214) (-10 -8 (-15 -2940 ($ |#1| |#1|)) (-15 -2077 ($ |#1| |#1|)) (-15 -1513 ($ $)) (-15 -3324 (|#1| $)) (-15 -3336 (|#1| $)) (-15 -3077 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-516 (-1175) |#1|)) (-6 (-516 (-1175) |#1|)) |%noBranch|) (IF (|has| |#1| (-1099)) (PROGN (-6 (-1099)) (-6 (-613 (-112))) (IF (|has| |#1| (-310 |#1|)) (PROGN (-15 -2070 ($ $ $)) (-15 -2070 ($ $ (-644 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -3034 ($ |#1| $)) (-15 -3034 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2456 ($ $)) (-15 -3828 ($ $)) (-15 -3047 ($ |#1| $)) (-15 -3047 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1111)) (PROGN (-6 (-1111)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-726)) (PROGN (-6 (-726)) (-15 -2309 ((-3 $ "failed") $)) (-15 -2629 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-475)) (PROGN (-6 (-475)) (-15 -2309 ((-3 $ "failed") $)) (-15 -2629 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-6 (-1049)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-717 |#1|)) |%noBranch|) (IF (|has| |#1| (-558)) (-15 -2054 ((-644 $) $)) |%noBranch|) (IF (|has| |#1| (-900 (-1175))) (-6 (-900 (-1175))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-6 (-1271 |#1|)) (-15 -3061 ($ $ $)) (-15 -2626 ($ $))) |%noBranch|) (IF (|has| |#1| (-303)) (-15 -3226 ($ $ $)) |%noBranch|)))
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-1537 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#2| $ |#1| |#2|) NIL)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-2414 (((-3 |#2| "failed") |#1| $) NIL)) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-3066 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-3 |#2| "failed") |#1| $) NIL)) (-2651 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) NIL)) (-3372 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 ((|#1| $) NIL (|has| |#1| (-850)))) (-2404 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-1544 ((|#1| $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4418))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3949 (((-644 |#1|) $) NIL)) (-3221 (((-112) |#1| $) NIL)) (-3119 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-4265 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-1922 (((-644 |#1|) $) NIL)) (-2040 (((-112) |#1| $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4062 ((|#2| $) NIL (|has| |#1| (-850)))) (-2126 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL)) (-1720 (($ $ |#2|) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3879 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-2512 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3122 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-296 |#1| |#2|) (-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4417))) (-1099) (-1099)) (T -296))
-NIL
-(-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4417)))
-((-1457 (((-313) (-1157) (-644 (-1157))) 17) (((-313) (-1157) (-1157)) 16) (((-313) (-644 (-1157))) 15) (((-313) (-1157)) 14)))
-(((-297) (-10 -7 (-15 -1457 ((-313) (-1157))) (-15 -1457 ((-313) (-644 (-1157)))) (-15 -1457 ((-313) (-1157) (-1157))) (-15 -1457 ((-313) (-1157) (-644 (-1157)))))) (T -297))
-((-1457 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-1157))) (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-297)))) (-1457 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-297)))) (-1457 (*1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-313)) (-5 *1 (-297)))) (-1457 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-297)))))
-(-10 -7 (-15 -1457 ((-313) (-1157))) (-15 -1457 ((-313) (-644 (-1157)))) (-15 -1457 ((-313) (-1157) (-1157))) (-15 -1457 ((-313) (-1157) (-644 (-1157)))))
-((-3077 ((|#2| (-1 |#2| |#1|) (-1157) (-612 |#1|)) 18)))
-(((-298 |#1| |#2|) (-10 -7 (-15 -3077 (|#2| (-1 |#2| |#1|) (-1157) (-612 |#1|)))) (-303) (-1214)) (T -298))
-((-3077 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1157)) (-5 *5 (-612 *6)) (-4 *6 (-303)) (-4 *2 (-1214)) (-5 *1 (-298 *6 *2)))))
-(-10 -7 (-15 -3077 (|#2| (-1 |#2| |#1|) (-1157) (-612 |#1|))))
-((-3077 ((|#2| (-1 |#2| |#1|) (-612 |#1|)) 17)))
-(((-299 |#1| |#2|) (-10 -7 (-15 -3077 (|#2| (-1 |#2| |#1|) (-612 |#1|)))) (-303) (-303)) (T -299))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-612 *5)) (-4 *5 (-303)) (-4 *2 (-303)) (-5 *1 (-299 *5 *2)))))
-(-10 -7 (-15 -3077 (|#2| (-1 |#2| |#1|) (-612 |#1|))))
-((-4243 (((-112) (-225)) 12)))
-(((-300 |#1| |#2|) (-10 -7 (-15 -4243 ((-112) (-225)))) (-225) (-225)) (T -300))
-((-4243 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-300 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-10 -7 (-15 -4243 ((-112) (-225))))
-((-1515 (((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225)))) 118)) (-1542 (((-1155 (-225)) (-1264 (-317 (-225))) (-644 (-1175)) (-1093 (-843 (-225)))) 135) (((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225)))) 72)) (-1987 (((-644 (-1157)) (-1155 (-225))) NIL)) (-1431 (((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225)))) 69)) (-2333 (((-644 (-225)) (-952 (-409 (-566))) (-1175) (-1093 (-843 (-225)))) 59)) (-2433 (((-644 (-1157)) (-644 (-225))) NIL)) (-3582 (((-225) (-1093 (-843 (-225)))) 29)) (-3478 (((-225) (-1093 (-843 (-225)))) 30)) (-4316 (((-112) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 64)) (-2789 (((-1157) (-225)) NIL)))
-(((-301) (-10 -7 (-15 -3582 ((-225) (-1093 (-843 (-225))))) (-15 -3478 ((-225) (-1093 (-843 (-225))))) (-15 -4316 ((-112) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1431 ((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225))))) (-15 -1515 ((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -1542 ((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -1542 ((-1155 (-225)) (-1264 (-317 (-225))) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -2333 ((-644 (-225)) (-952 (-409 (-566))) (-1175) (-1093 (-843 (-225))))) (-15 -2789 ((-1157) (-225))) (-15 -2433 ((-644 (-1157)) (-644 (-225)))) (-15 -1987 ((-644 (-1157)) (-1155 (-225)))))) (T -301))
-((-1987 (*1 *2 *3) (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-301)))) (-2433 (*1 *2 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-301)))) (-2789 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1157)) (-5 *1 (-301)))) (-2333 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *4 (-1175)) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-301)))) (-1542 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *4 (-644 (-1175))) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301)))) (-1542 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-225))) (-5 *4 (-644 (-1175))) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301)))) (-1515 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-225))) (-5 *4 (-644 (-1175))) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301)))) (-1431 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-225))) (-5 *4 (-1175)) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-301)))) (-4316 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-112)) (-5 *1 (-301)))) (-3478 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-301)))) (-3582 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-301)))))
-(-10 -7 (-15 -3582 ((-225) (-1093 (-843 (-225))))) (-15 -3478 ((-225) (-1093 (-843 (-225))))) (-15 -4316 ((-112) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1431 ((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225))))) (-15 -1515 ((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -1542 ((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -1542 ((-1155 (-225)) (-1264 (-317 (-225))) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -2333 ((-644 (-225)) (-952 (-409 (-566))) (-1175) (-1093 (-843 (-225))))) (-15 -2789 ((-1157) (-225))) (-15 -2433 ((-644 (-1157)) (-644 (-225)))) (-15 -1987 ((-644 (-1157)) (-1155 (-225)))))
-((-2248 (((-644 (-612 $)) $) 27)) (-3226 (($ $ (-295 $)) 78) (($ $ (-644 (-295 $))) 139) (($ $ (-644 (-612 $)) (-644 $)) NIL)) (-2977 (((-3 (-612 $) "failed") $) 127)) (-1756 (((-612 $) $) 126)) (-4334 (($ $) 17) (($ (-644 $)) 54)) (-3674 (((-644 (-114)) $) 35)) (-2336 (((-114) (-114)) 88)) (-2884 (((-112) $) 150)) (-3077 (($ (-1 $ $) (-612 $)) 86)) (-2230 (((-3 (-612 $) "failed") $) 94)) (-3083 (($ (-114) $) 59) (($ (-114) (-644 $)) 110)) (-2181 (((-112) $ (-114)) 132) (((-112) $ (-1175)) 131)) (-3173 (((-771) $) 44)) (-1981 (((-112) $ $) 57) (((-112) $ (-1175)) 49)) (-1693 (((-112) $) 148)) (-2070 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL) (($ $ (-644 (-295 $))) 137) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) 81) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-1175) (-1 $ (-644 $))) 67) (($ $ (-1175) (-1 $ $)) 72) (($ $ (-644 (-114)) (-644 (-1 $ $))) 80) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) 82) (($ $ (-114) (-1 $ (-644 $))) 68) (($ $ (-114) (-1 $ $)) 74)) (-4386 (($ (-114) $) 60) (($ (-114) $ $) 61) (($ (-114) $ $ $) 62) (($ (-114) $ $ $ $) 63) (($ (-114) (-644 $)) 123)) (-2811 (($ $) 51) (($ $ $) 135)) (-3236 (($ $) 15) (($ (-644 $)) 53)) (-2306 (((-112) (-114)) 21)))
-(((-302 |#1|) (-10 -8 (-15 -2884 ((-112) |#1|)) (-15 -1693 ((-112) |#1|)) (-15 -2070 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2070 (|#1| |#1| (-114) (-1 |#1| (-644 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2070 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| |#1|)))) (-15 -2070 (|#1| |#1| (-1175) (-1 |#1| |#1|))) (-15 -2070 (|#1| |#1| (-1175) (-1 |#1| (-644 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| |#1|)))) (-15 -1981 ((-112) |#1| (-1175))) (-15 -1981 ((-112) |#1| |#1|)) (-15 -3077 (|#1| (-1 |#1| |#1|) (-612 |#1|))) (-15 -3083 (|#1| (-114) (-644 |#1|))) (-15 -3083 (|#1| (-114) |#1|)) (-15 -2181 ((-112) |#1| (-1175))) (-15 -2181 ((-112) |#1| (-114))) (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 -3674 ((-644 (-114)) |#1|)) (-15 -2248 ((-644 (-612 |#1|)) |#1|)) (-15 -2230 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -3173 ((-771) |#1|)) (-15 -2811 (|#1| |#1| |#1|)) (-15 -2811 (|#1| |#1|)) (-15 -4334 (|#1| (-644 |#1|))) (-15 -4334 (|#1| |#1|)) (-15 -3236 (|#1| (-644 |#1|))) (-15 -3236 (|#1| |#1|)) (-15 -3226 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -3226 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -3226 (|#1| |#1| (-295 |#1|))) (-15 -4386 (|#1| (-114) (-644 |#1|))) (-15 -4386 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1| |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1|)) (-15 -2070 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#1| |#1|)) (-15 -2070 (|#1| |#1| (-295 |#1|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2070 (|#1| |#1| (-612 |#1|) |#1|)) (-15 -2977 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -1756 ((-612 |#1|) |#1|))) (-303)) (T -302))
-((-2336 (*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-302 *3)) (-4 *3 (-303)))) (-2306 (*1 *2 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-302 *4)) (-4 *4 (-303)))))
-(-10 -8 (-15 -2884 ((-112) |#1|)) (-15 -1693 ((-112) |#1|)) (-15 -2070 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2070 (|#1| |#1| (-114) (-1 |#1| (-644 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2070 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| |#1|)))) (-15 -2070 (|#1| |#1| (-1175) (-1 |#1| |#1|))) (-15 -2070 (|#1| |#1| (-1175) (-1 |#1| (-644 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| |#1|)))) (-15 -1981 ((-112) |#1| (-1175))) (-15 -1981 ((-112) |#1| |#1|)) (-15 -3077 (|#1| (-1 |#1| |#1|) (-612 |#1|))) (-15 -3083 (|#1| (-114) (-644 |#1|))) (-15 -3083 (|#1| (-114) |#1|)) (-15 -2181 ((-112) |#1| (-1175))) (-15 -2181 ((-112) |#1| (-114))) (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 -3674 ((-644 (-114)) |#1|)) (-15 -2248 ((-644 (-612 |#1|)) |#1|)) (-15 -2230 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -3173 ((-771) |#1|)) (-15 -2811 (|#1| |#1| |#1|)) (-15 -2811 (|#1| |#1|)) (-15 -4334 (|#1| (-644 |#1|))) (-15 -4334 (|#1| |#1|)) (-15 -3236 (|#1| (-644 |#1|))) (-15 -3236 (|#1| |#1|)) (-15 -3226 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -3226 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -3226 (|#1| |#1| (-295 |#1|))) (-15 -4386 (|#1| (-114) (-644 |#1|))) (-15 -4386 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1| |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1|)) (-15 -2070 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#1| |#1|)) (-15 -2070 (|#1| |#1| (-295 |#1|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2070 (|#1| |#1| (-612 |#1|) |#1|)) (-15 -2977 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -1756 ((-612 |#1|) |#1|)))
-((-2985 (((-112) $ $) 7)) (-2248 (((-644 (-612 $)) $) 39)) (-3226 (($ $ (-295 $)) 51) (($ $ (-644 (-295 $))) 50) (($ $ (-644 (-612 $)) (-644 $)) 49)) (-2977 (((-3 (-612 $) "failed") $) 64)) (-1756 (((-612 $) $) 65)) (-4334 (($ $) 46) (($ (-644 $)) 45)) (-3674 (((-644 (-114)) $) 38)) (-2336 (((-114) (-114)) 37)) (-2884 (((-112) $) 17 (|has| $ (-1038 (-566))))) (-2734 (((-1171 $) (-612 $)) 20 (|has| $ (-1049)))) (-3077 (($ (-1 $ $) (-612 $)) 31)) (-2230 (((-3 (-612 $) "failed") $) 41)) (-2878 (((-1157) $) 10)) (-2322 (((-644 (-612 $)) $) 40)) (-3083 (($ (-114) $) 33) (($ (-114) (-644 $)) 32)) (-2181 (((-112) $ (-114)) 35) (((-112) $ (-1175)) 34)) (-3173 (((-771) $) 42)) (-4033 (((-1119) $) 11)) (-1981 (((-112) $ $) 30) (((-112) $ (-1175)) 29)) (-1693 (((-112) $) 18 (|has| $ (-1038 (-566))))) (-2070 (($ $ (-612 $) $) 62) (($ $ (-644 (-612 $)) (-644 $)) 61) (($ $ (-644 (-295 $))) 60) (($ $ (-295 $)) 59) (($ $ $ $) 58) (($ $ (-644 $) (-644 $)) 57) (($ $ (-644 (-1175)) (-644 (-1 $ $))) 28) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) 27) (($ $ (-1175) (-1 $ (-644 $))) 26) (($ $ (-1175) (-1 $ $)) 25) (($ $ (-644 (-114)) (-644 (-1 $ $))) 24) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) 23) (($ $ (-114) (-1 $ (-644 $))) 22) (($ $ (-114) (-1 $ $)) 21)) (-4386 (($ (-114) $) 56) (($ (-114) $ $) 55) (($ (-114) $ $ $) 54) (($ (-114) $ $ $ $) 53) (($ (-114) (-644 $)) 52)) (-2811 (($ $) 44) (($ $ $) 43)) (-2127 (($ $) 19 (|has| $ (-1049)))) (-2512 (((-862) $) 12) (($ (-612 $)) 63)) (-3236 (($ $) 48) (($ (-644 $)) 47)) (-2306 (((-112) (-114)) 36)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-4163 (($ (-508) (-508) (-1103) $) 19)) (-1708 (($ (-508) (-644 (-965)) $) 23)) (-2925 (((-644 (-1084)) $) 10)) (-3143 (($) 25)) (-2850 (((-691 (-1103)) (-508) (-508) $) 18)) (-1825 (((-644 (-965)) (-508) $) 22)) (-1793 (($) 7)) (-3490 (($) 24)) (-3780 (((-862) $) 29)) (-1316 (($) 26)))
+(((-292) (-13 (-613 (-862)) (-10 -8 (-15 -1793 ($)) (-15 -2925 ((-644 (-1084)) $)) (-15 -2850 ((-691 (-1103)) (-508) (-508) $)) (-15 -4163 ($ (-508) (-508) (-1103) $)) (-15 -1825 ((-644 (-965)) (-508) $)) (-15 -1708 ($ (-508) (-644 (-965)) $)) (-15 -3490 ($)) (-15 -3143 ($)) (-15 -1316 ($))))) (T -292))
+((-1793 (*1 *1) (-5 *1 (-292))) (-2925 (*1 *2 *1) (-12 (-5 *2 (-644 (-1084))) (-5 *1 (-292)))) (-2850 (*1 *2 *3 *3 *1) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-1103))) (-5 *1 (-292)))) (-4163 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-508)) (-5 *3 (-1103)) (-5 *1 (-292)))) (-1825 (*1 *2 *3 *1) (-12 (-5 *3 (-508)) (-5 *2 (-644 (-965))) (-5 *1 (-292)))) (-1708 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-508)) (-5 *3 (-644 (-965))) (-5 *1 (-292)))) (-3490 (*1 *1) (-5 *1 (-292))) (-3143 (*1 *1) (-5 *1 (-292))) (-1316 (*1 *1) (-5 *1 (-292))))
+(-13 (-613 (-862)) (-10 -8 (-15 -1793 ($)) (-15 -2925 ((-644 (-1084)) $)) (-15 -2850 ((-691 (-1103)) (-508) (-508) $)) (-15 -4163 ($ (-508) (-508) (-1103) $)) (-15 -1825 ((-644 (-965)) (-508) $)) (-15 -1708 ($ (-508) (-644 (-965)) $)) (-15 -3490 ($)) (-15 -3143 ($)) (-15 -1316 ($))))
+((-1341 (((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |geneigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|)))) 105)) (-3037 (((-644 (-689 (-409 (-952 |#1|)))) (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|)))))) (-689 (-409 (-952 |#1|)))) 100) (((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|))) (-771) (-771)) 41)) (-2002 (((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|)))) 102)) (-1696 (((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|)))) 77)) (-4034 (((-644 (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (-689 (-409 (-952 |#1|)))) 76)) (-4370 (((-952 |#1|) (-689 (-409 (-952 |#1|)))) 57) (((-952 |#1|) (-689 (-409 (-952 |#1|))) (-1175)) 58)))
+(((-293 |#1|) (-10 -7 (-15 -4370 ((-952 |#1|) (-689 (-409 (-952 |#1|))) (-1175))) (-15 -4370 ((-952 |#1|) (-689 (-409 (-952 |#1|))))) (-15 -4034 ((-644 (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (-689 (-409 (-952 |#1|))))) (-15 -1696 ((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|))))) (-15 -3037 ((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|))) (-771) (-771))) (-15 -3037 ((-644 (-689 (-409 (-952 |#1|)))) (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|)))))) (-689 (-409 (-952 |#1|))))) (-15 -1341 ((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |geneigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|))))) (-15 -2002 ((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|)))))) (-454)) (T -293))
+((-2002 (*1 *2 *3) (-12 (-4 *4 (-454)) (-5 *2 (-644 (-2 (|:| |eigval| (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 *4)))))))) (-5 *1 (-293 *4)) (-5 *3 (-689 (-409 (-952 *4)))))) (-1341 (*1 *2 *3) (-12 (-4 *4 (-454)) (-5 *2 (-644 (-2 (|:| |eigval| (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4)))) (|:| |geneigvec| (-644 (-689 (-409 (-952 *4)))))))) (-5 *1 (-293 *4)) (-5 *3 (-689 (-409 (-952 *4)))))) (-3037 (*1 *2 *3 *4) (-12 (-5 *3 (-2 (|:| |eigval| (-3 (-409 (-952 *5)) (-1164 (-1175) (-952 *5)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 *4)))) (-4 *5 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *5))))) (-5 *1 (-293 *5)) (-5 *4 (-689 (-409 (-952 *5)))))) (-3037 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-3 (-409 (-952 *6)) (-1164 (-1175) (-952 *6)))) (-5 *5 (-771)) (-4 *6 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *6))))) (-5 *1 (-293 *6)) (-5 *4 (-689 (-409 (-952 *6)))))) (-1696 (*1 *2 *3 *4) (-12 (-5 *3 (-3 (-409 (-952 *5)) (-1164 (-1175) (-952 *5)))) (-4 *5 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *5))))) (-5 *1 (-293 *5)) (-5 *4 (-689 (-409 (-952 *5)))))) (-4034 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-952 *4)))) (-4 *4 (-454)) (-5 *2 (-644 (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4))))) (-5 *1 (-293 *4)))) (-4370 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-952 *4)))) (-5 *2 (-952 *4)) (-5 *1 (-293 *4)) (-4 *4 (-454)))) (-4370 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-409 (-952 *5)))) (-5 *4 (-1175)) (-5 *2 (-952 *5)) (-5 *1 (-293 *5)) (-4 *5 (-454)))))
+(-10 -7 (-15 -4370 ((-952 |#1|) (-689 (-409 (-952 |#1|))) (-1175))) (-15 -4370 ((-952 |#1|) (-689 (-409 (-952 |#1|))))) (-15 -4034 ((-644 (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (-689 (-409 (-952 |#1|))))) (-15 -1696 ((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|))))) (-15 -3037 ((-644 (-689 (-409 (-952 |#1|)))) (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|))) (-689 (-409 (-952 |#1|))) (-771) (-771))) (-15 -3037 ((-644 (-689 (-409 (-952 |#1|)))) (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|)))))) (-689 (-409 (-952 |#1|))))) (-15 -1341 ((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |geneigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|))))) (-15 -2002 ((-644 (-2 (|:| |eigval| (-3 (-409 (-952 |#1|)) (-1164 (-1175) (-952 |#1|)))) (|:| |eigmult| (-771)) (|:| |eigvec| (-644 (-689 (-409 (-952 |#1|))))))) (-689 (-409 (-952 |#1|))))))
+((-3152 (((-295 |#2|) (-1 |#2| |#1|) (-295 |#1|)) 14)))
+(((-294 |#1| |#2|) (-10 -7 (-15 -3152 ((-295 |#2|) (-1 |#2| |#1|) (-295 |#1|)))) (-1214) (-1214)) (T -294))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-295 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-295 *6)) (-5 *1 (-294 *5 *6)))))
+(-10 -7 (-15 -3152 ((-295 |#2|) (-1 |#2| |#1|) (-295 |#1|))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3015 (((-112) $) NIL (|has| |#1| (-21)))) (-3484 (($ $) 12)) (-4014 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2463 (($ $ $) 95 (|has| |#1| (-303)))) (-3877 (($) NIL (-2805 (|has| |#1| (-21)) (|has| |#1| (-726))) CONST)) (-4281 (($ $) 51 (|has| |#1| (-21)))) (-1709 (((-3 $ "failed") $) 62 (|has| |#1| (-726)))) (-3361 ((|#1| $) 11)) (-2928 (((-3 $ "failed") $) 60 (|has| |#1| (-726)))) (-3466 (((-112) $) NIL (|has| |#1| (-726)))) (-3152 (($ (-1 |#1| |#1|) $) 14)) (-3349 ((|#1| $) 10)) (-2525 (($ $) 50 (|has| |#1| (-21)))) (-1681 (((-3 $ "failed") $) 61 (|has| |#1| (-726)))) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3584 (($ $) 64 (-2805 (|has| |#1| (-365)) (|has| |#1| (-475))))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4063 (((-644 $) $) 85 (|has| |#1| (-558)))) (-2095 (($ $ $) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 $)) 28 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-1175) |#1|) 17 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 21 (|has| |#1| (-516 (-1175) |#1|)))) (-2175 (($ |#1| |#1|) 9)) (-2012 (((-134)) 90 (|has| |#1| (-365)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) 87 (|has| |#1| (-900 (-1175))))) (-3850 (($ $ $) NIL (|has| |#1| (-475)))) (-1783 (($ $ $) NIL (|has| |#1| (-475)))) (-3780 (($ (-566)) NIL (|has| |#1| (-1049))) (((-112) $) 37 (|has| |#1| (-1099))) (((-862) $) 36 (|has| |#1| (-1099)))) (-3996 (((-771)) 67 (|has| |#1| (-1049)) CONST)) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2493 (($) 47 (|has| |#1| (-21)) CONST)) (-4333 (($) 57 (|has| |#1| (-726)) CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175))))) (-2950 (($ |#1| |#1|) 8) (((-112) $ $) 32 (|has| |#1| (-1099)))) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) 92 (-2805 (|has| |#1| (-365)) (|has| |#1| (-475))))) (-3051 (($ |#1| $) 45 (|has| |#1| (-21))) (($ $ |#1|) 46 (|has| |#1| (-21))) (($ $ $) 44 (|has| |#1| (-21))) (($ $) 43 (|has| |#1| (-21)))) (-3040 (($ |#1| $) 40 (|has| |#1| (-25))) (($ $ |#1|) 41 (|has| |#1| (-25))) (($ $ $) 39 (|has| |#1| (-25)))) (** (($ $ (-566)) NIL (|has| |#1| (-475))) (($ $ (-771)) NIL (|has| |#1| (-726))) (($ $ (-921)) NIL (|has| |#1| (-1111)))) (* (($ $ |#1|) 55 (|has| |#1| (-1111))) (($ |#1| $) 54 (|has| |#1| (-1111))) (($ $ $) 53 (|has| |#1| (-1111))) (($ (-566) $) 70 (|has| |#1| (-21))) (($ (-771) $) NIL (|has| |#1| (-21))) (($ (-921) $) NIL (|has| |#1| (-25)))))
+(((-295 |#1|) (-13 (-1214) (-10 -8 (-15 -2950 ($ |#1| |#1|)) (-15 -2175 ($ |#1| |#1|)) (-15 -3484 ($ $)) (-15 -3349 (|#1| $)) (-15 -3361 (|#1| $)) (-15 -3152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-516 (-1175) |#1|)) (-6 (-516 (-1175) |#1|)) |%noBranch|) (IF (|has| |#1| (-1099)) (PROGN (-6 (-1099)) (-6 (-613 (-112))) (IF (|has| |#1| (-310 |#1|)) (PROGN (-15 -2095 ($ $ $)) (-15 -2095 ($ $ (-644 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -3040 ($ |#1| $)) (-15 -3040 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2525 ($ $)) (-15 -4281 ($ $)) (-15 -3051 ($ |#1| $)) (-15 -3051 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1111)) (PROGN (-6 (-1111)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-726)) (PROGN (-6 (-726)) (-15 -1681 ((-3 $ "failed") $)) (-15 -1709 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-475)) (PROGN (-6 (-475)) (-15 -1681 ((-3 $ "failed") $)) (-15 -1709 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-6 (-1049)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-717 |#1|)) |%noBranch|) (IF (|has| |#1| (-558)) (-15 -4063 ((-644 $) $)) |%noBranch|) (IF (|has| |#1| (-900 (-1175))) (-6 (-900 (-1175))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-6 (-1271 |#1|)) (-15 -3062 ($ $ $)) (-15 -3584 ($ $))) |%noBranch|) (IF (|has| |#1| (-303)) (-15 -2463 ($ $ $)) |%noBranch|))) (-1214)) (T -295))
+((-2950 (*1 *1 *2 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))) (-2175 (*1 *1 *2 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))) (-3484 (*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))) (-3349 (*1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))) (-3361 (*1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))) (-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-295 *3)))) (-2095 (*1 *1 *1 *1) (-12 (-4 *2 (-310 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)) (-5 *1 (-295 *2)))) (-2095 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-295 *3))) (-4 *3 (-310 *3)) (-4 *3 (-1099)) (-4 *3 (-1214)) (-5 *1 (-295 *3)))) (-3040 (*1 *1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-25)) (-4 *2 (-1214)))) (-3040 (*1 *1 *1 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-25)) (-4 *2 (-1214)))) (-2525 (*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))) (-4281 (*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))) (-3051 (*1 *1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))) (-3051 (*1 *1 *1 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))) (-1681 (*1 *1 *1) (|partial| -12 (-5 *1 (-295 *2)) (-4 *2 (-726)) (-4 *2 (-1214)))) (-1709 (*1 *1 *1) (|partial| -12 (-5 *1 (-295 *2)) (-4 *2 (-726)) (-4 *2 (-1214)))) (-4063 (*1 *2 *1) (-12 (-5 *2 (-644 (-295 *3))) (-5 *1 (-295 *3)) (-4 *3 (-558)) (-4 *3 (-1214)))) (-2463 (*1 *1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-303)) (-4 *2 (-1214)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1111)) (-4 *2 (-1214)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1111)) (-4 *2 (-1214)))) (-3062 (*1 *1 *1 *1) (-2805 (-12 (-5 *1 (-295 *2)) (-4 *2 (-365)) (-4 *2 (-1214))) (-12 (-5 *1 (-295 *2)) (-4 *2 (-475)) (-4 *2 (-1214))))) (-3584 (*1 *1 *1) (-2805 (-12 (-5 *1 (-295 *2)) (-4 *2 (-365)) (-4 *2 (-1214))) (-12 (-5 *1 (-295 *2)) (-4 *2 (-475)) (-4 *2 (-1214))))))
+(-13 (-1214) (-10 -8 (-15 -2950 ($ |#1| |#1|)) (-15 -2175 ($ |#1| |#1|)) (-15 -3484 ($ $)) (-15 -3349 (|#1| $)) (-15 -3361 (|#1| $)) (-15 -3152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-516 (-1175) |#1|)) (-6 (-516 (-1175) |#1|)) |%noBranch|) (IF (|has| |#1| (-1099)) (PROGN (-6 (-1099)) (-6 (-613 (-112))) (IF (|has| |#1| (-310 |#1|)) (PROGN (-15 -2095 ($ $ $)) (-15 -2095 ($ $ (-644 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -3040 ($ |#1| $)) (-15 -3040 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2525 ($ $)) (-15 -4281 ($ $)) (-15 -3051 ($ |#1| $)) (-15 -3051 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1111)) (PROGN (-6 (-1111)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-726)) (PROGN (-6 (-726)) (-15 -1681 ((-3 $ "failed") $)) (-15 -1709 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-475)) (PROGN (-6 (-475)) (-15 -1681 ((-3 $ "failed") $)) (-15 -1709 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-6 (-1049)) (-6 (-111 |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-717 |#1|)) |%noBranch|) (IF (|has| |#1| (-558)) (-15 -4063 ((-644 $) $)) |%noBranch|) (IF (|has| |#1| (-900 (-1175))) (-6 (-900 (-1175))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-6 (-1271 |#1|)) (-15 -3062 ($ $ $)) (-15 -3584 ($ $))) |%noBranch|) (IF (|has| |#1| (-303)) (-15 -2463 ($ $ $)) |%noBranch|)))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-2518 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#2| $ |#1| |#2|) NIL)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2450 (((-3 |#2| "failed") |#1| $) NIL)) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-1450 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-3 |#2| "failed") |#1| $) NIL)) (-2661 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) NIL)) (-3799 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 ((|#1| $) NIL (|has| |#1| (-850)))) (-3276 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2579 ((|#1| $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4415))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4314 (((-644 |#1|) $) NIL)) (-3422 (((-112) |#1| $) NIL)) (-3765 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2903 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2140 (((-644 |#1|) $) NIL)) (-3935 (((-112) |#1| $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4101 ((|#2| $) NIL (|has| |#1| (-850)))) (-3591 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL)) (-3750 (($ $ |#2|) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3551 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-3780 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3801 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-296 |#1| |#2|) (-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4414))) (-1099) (-1099)) (T -296))
+NIL
+(-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4414)))
+((-1499 (((-313) (-1157) (-644 (-1157))) 17) (((-313) (-1157) (-1157)) 16) (((-313) (-644 (-1157))) 15) (((-313) (-1157)) 14)))
+(((-297) (-10 -7 (-15 -1499 ((-313) (-1157))) (-15 -1499 ((-313) (-644 (-1157)))) (-15 -1499 ((-313) (-1157) (-1157))) (-15 -1499 ((-313) (-1157) (-644 (-1157)))))) (T -297))
+((-1499 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-1157))) (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-297)))) (-1499 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-297)))) (-1499 (*1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-313)) (-5 *1 (-297)))) (-1499 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-297)))))
+(-10 -7 (-15 -1499 ((-313) (-1157))) (-15 -1499 ((-313) (-644 (-1157)))) (-15 -1499 ((-313) (-1157) (-1157))) (-15 -1499 ((-313) (-1157) (-644 (-1157)))))
+((-3152 ((|#2| (-1 |#2| |#1|) (-1157) (-612 |#1|)) 18)))
+(((-298 |#1| |#2|) (-10 -7 (-15 -3152 (|#2| (-1 |#2| |#1|) (-1157) (-612 |#1|)))) (-303) (-1214)) (T -298))
+((-3152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1157)) (-5 *5 (-612 *6)) (-4 *6 (-303)) (-4 *2 (-1214)) (-5 *1 (-298 *6 *2)))))
+(-10 -7 (-15 -3152 (|#2| (-1 |#2| |#1|) (-1157) (-612 |#1|))))
+((-3152 ((|#2| (-1 |#2| |#1|) (-612 |#1|)) 17)))
+(((-299 |#1| |#2|) (-10 -7 (-15 -3152 (|#2| (-1 |#2| |#1|) (-612 |#1|)))) (-303) (-303)) (T -299))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5)) (-5 *4 (-612 *5)) (-4 *5 (-303)) (-4 *2 (-303)) (-5 *1 (-299 *5 *2)))))
+(-10 -7 (-15 -3152 (|#2| (-1 |#2| |#1|) (-612 |#1|))))
+((-2727 (((-112) (-225)) 12)))
+(((-300 |#1| |#2|) (-10 -7 (-15 -2727 ((-112) (-225)))) (-225) (-225)) (T -300))
+((-2727 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-300 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-10 -7 (-15 -2727 ((-112) (-225))))
+((-3508 (((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225)))) 118)) (-2559 (((-1155 (-225)) (-1264 (-317 (-225))) (-644 (-1175)) (-1093 (-843 (-225)))) 135) (((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225)))) 72)) (-1539 (((-644 (-1157)) (-1155 (-225))) NIL)) (-3868 (((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225)))) 69)) (-3794 (((-644 (-225)) (-952 (-409 (-566))) (-1175) (-1093 (-843 (-225)))) 59)) (-3516 (((-644 (-1157)) (-644 (-225))) NIL)) (-2514 (((-225) (-1093 (-843 (-225)))) 29)) (-3979 (((-225) (-1093 (-843 (-225)))) 30)) (-2196 (((-112) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 64)) (-2732 (((-1157) (-225)) NIL)))
+(((-301) (-10 -7 (-15 -2514 ((-225) (-1093 (-843 (-225))))) (-15 -3979 ((-225) (-1093 (-843 (-225))))) (-15 -2196 ((-112) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3868 ((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225))))) (-15 -3508 ((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -2559 ((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -2559 ((-1155 (-225)) (-1264 (-317 (-225))) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -3794 ((-644 (-225)) (-952 (-409 (-566))) (-1175) (-1093 (-843 (-225))))) (-15 -2732 ((-1157) (-225))) (-15 -3516 ((-644 (-1157)) (-644 (-225)))) (-15 -1539 ((-644 (-1157)) (-1155 (-225)))))) (T -301))
+((-1539 (*1 *2 *3) (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-301)))) (-3516 (*1 *2 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-301)))) (-2732 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1157)) (-5 *1 (-301)))) (-3794 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *4 (-1175)) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-301)))) (-2559 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *4 (-644 (-1175))) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301)))) (-2559 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-225))) (-5 *4 (-644 (-1175))) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301)))) (-3508 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-225))) (-5 *4 (-644 (-1175))) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301)))) (-3868 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-225))) (-5 *4 (-1175)) (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-301)))) (-2196 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-112)) (-5 *1 (-301)))) (-3979 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-301)))) (-2514 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-301)))))
+(-10 -7 (-15 -2514 ((-225) (-1093 (-843 (-225))))) (-15 -3979 ((-225) (-1093 (-843 (-225))))) (-15 -2196 ((-112) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3868 ((-644 (-225)) (-317 (-225)) (-1175) (-1093 (-843 (-225))))) (-15 -3508 ((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -2559 ((-1155 (-225)) (-317 (-225)) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -2559 ((-1155 (-225)) (-1264 (-317 (-225))) (-644 (-1175)) (-1093 (-843 (-225))))) (-15 -3794 ((-644 (-225)) (-952 (-409 (-566))) (-1175) (-1093 (-843 (-225))))) (-15 -2732 ((-1157) (-225))) (-15 -3516 ((-644 (-1157)) (-644 (-225)))) (-15 -1539 ((-644 (-1157)) (-1155 (-225)))))
+((-2327 (((-644 (-612 $)) $) 27)) (-2463 (($ $ (-295 $)) 78) (($ $ (-644 (-295 $))) 139) (($ $ (-644 (-612 $)) (-644 $)) NIL)) (-3066 (((-3 (-612 $) "failed") $) 127)) (-1867 (((-612 $) $) 126)) (-2388 (($ $) 17) (($ (-644 $)) 54)) (-2162 (((-644 (-114)) $) 35)) (-2415 (((-114) (-114)) 88)) (-2469 (((-112) $) 150)) (-3152 (($ (-1 $ $) (-612 $)) 86)) (-2116 (((-3 (-612 $) "failed") $) 94)) (-3159 (($ (-114) $) 59) (($ (-114) (-644 $)) 110)) (-2885 (((-112) $ (-114)) 132) (((-112) $ (-1175)) 131)) (-3906 (((-771) $) 44)) (-1471 (((-112) $ $) 57) (((-112) $ (-1175)) 49)) (-1630 (((-112) $) 148)) (-2095 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL) (($ $ (-644 (-295 $))) 137) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) 81) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-1175) (-1 $ (-644 $))) 67) (($ $ (-1175) (-1 $ $)) 72) (($ $ (-644 (-114)) (-644 (-1 $ $))) 80) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) 82) (($ $ (-114) (-1 $ (-644 $))) 68) (($ $ (-114) (-1 $ $)) 74)) (-4393 (($ (-114) $) 60) (($ (-114) $ $) 61) (($ (-114) $ $ $) 62) (($ (-114) $ $ $ $) 63) (($ (-114) (-644 $)) 123)) (-2940 (($ $) 51) (($ $ $) 135)) (-1442 (($ $) 15) (($ (-644 $)) 53)) (-1643 (((-112) (-114)) 21)))
+(((-302 |#1|) (-10 -8 (-15 -2469 ((-112) |#1|)) (-15 -1630 ((-112) |#1|)) (-15 -2095 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2095 (|#1| |#1| (-114) (-1 |#1| (-644 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2095 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| |#1|)))) (-15 -2095 (|#1| |#1| (-1175) (-1 |#1| |#1|))) (-15 -2095 (|#1| |#1| (-1175) (-1 |#1| (-644 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| |#1|)))) (-15 -1471 ((-112) |#1| (-1175))) (-15 -1471 ((-112) |#1| |#1|)) (-15 -3152 (|#1| (-1 |#1| |#1|) (-612 |#1|))) (-15 -3159 (|#1| (-114) (-644 |#1|))) (-15 -3159 (|#1| (-114) |#1|)) (-15 -2885 ((-112) |#1| (-1175))) (-15 -2885 ((-112) |#1| (-114))) (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 -2162 ((-644 (-114)) |#1|)) (-15 -2327 ((-644 (-612 |#1|)) |#1|)) (-15 -2116 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -3906 ((-771) |#1|)) (-15 -2940 (|#1| |#1| |#1|)) (-15 -2940 (|#1| |#1|)) (-15 -2388 (|#1| (-644 |#1|))) (-15 -2388 (|#1| |#1|)) (-15 -1442 (|#1| (-644 |#1|))) (-15 -1442 (|#1| |#1|)) (-15 -2463 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2463 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2463 (|#1| |#1| (-295 |#1|))) (-15 -4393 (|#1| (-114) (-644 |#1|))) (-15 -4393 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1| |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1|)) (-15 -2095 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| (-295 |#1|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2095 (|#1| |#1| (-612 |#1|) |#1|)) (-15 -3066 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -1867 ((-612 |#1|) |#1|))) (-303)) (T -302))
+((-2415 (*1 *2 *2) (-12 (-5 *2 (-114)) (-5 *1 (-302 *3)) (-4 *3 (-303)))) (-1643 (*1 *2 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-302 *4)) (-4 *4 (-303)))))
+(-10 -8 (-15 -2469 ((-112) |#1|)) (-15 -1630 ((-112) |#1|)) (-15 -2095 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2095 (|#1| |#1| (-114) (-1 |#1| (-644 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2095 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| |#1|)))) (-15 -2095 (|#1| |#1| (-1175) (-1 |#1| |#1|))) (-15 -2095 (|#1| |#1| (-1175) (-1 |#1| (-644 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| |#1|)))) (-15 -1471 ((-112) |#1| (-1175))) (-15 -1471 ((-112) |#1| |#1|)) (-15 -3152 (|#1| (-1 |#1| |#1|) (-612 |#1|))) (-15 -3159 (|#1| (-114) (-644 |#1|))) (-15 -3159 (|#1| (-114) |#1|)) (-15 -2885 ((-112) |#1| (-1175))) (-15 -2885 ((-112) |#1| (-114))) (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 -2162 ((-644 (-114)) |#1|)) (-15 -2327 ((-644 (-612 |#1|)) |#1|)) (-15 -2116 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -3906 ((-771) |#1|)) (-15 -2940 (|#1| |#1| |#1|)) (-15 -2940 (|#1| |#1|)) (-15 -2388 (|#1| (-644 |#1|))) (-15 -2388 (|#1| |#1|)) (-15 -1442 (|#1| (-644 |#1|))) (-15 -1442 (|#1| |#1|)) (-15 -2463 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2463 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2463 (|#1| |#1| (-295 |#1|))) (-15 -4393 (|#1| (-114) (-644 |#1|))) (-15 -4393 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1| |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1|)) (-15 -2095 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| (-295 |#1|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2095 (|#1| |#1| (-612 |#1|) |#1|)) (-15 -3066 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -1867 ((-612 |#1|) |#1|)))
+((-3009 (((-112) $ $) 7)) (-2327 (((-644 (-612 $)) $) 39)) (-2463 (($ $ (-295 $)) 51) (($ $ (-644 (-295 $))) 50) (($ $ (-644 (-612 $)) (-644 $)) 49)) (-3066 (((-3 (-612 $) "failed") $) 64)) (-1867 (((-612 $) $) 65)) (-2388 (($ $) 46) (($ (-644 $)) 45)) (-2162 (((-644 (-114)) $) 38)) (-2415 (((-114) (-114)) 37)) (-2469 (((-112) $) 17 (|has| $ (-1038 (-566))))) (-3392 (((-1171 $) (-612 $)) 20 (|has| $ (-1049)))) (-3152 (($ (-1 $ $) (-612 $)) 31)) (-2116 (((-3 (-612 $) "failed") $) 41)) (-2402 (((-1157) $) 10)) (-2404 (((-644 (-612 $)) $) 40)) (-3159 (($ (-114) $) 33) (($ (-114) (-644 $)) 32)) (-2885 (((-112) $ (-114)) 35) (((-112) $ (-1175)) 34)) (-3906 (((-771) $) 42)) (-4056 (((-1119) $) 11)) (-1471 (((-112) $ $) 30) (((-112) $ (-1175)) 29)) (-1630 (((-112) $) 18 (|has| $ (-1038 (-566))))) (-2095 (($ $ (-612 $) $) 62) (($ $ (-644 (-612 $)) (-644 $)) 61) (($ $ (-644 (-295 $))) 60) (($ $ (-295 $)) 59) (($ $ $ $) 58) (($ $ (-644 $) (-644 $)) 57) (($ $ (-644 (-1175)) (-644 (-1 $ $))) 28) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) 27) (($ $ (-1175) (-1 $ (-644 $))) 26) (($ $ (-1175) (-1 $ $)) 25) (($ $ (-644 (-114)) (-644 (-1 $ $))) 24) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) 23) (($ $ (-114) (-1 $ (-644 $))) 22) (($ $ (-114) (-1 $ $)) 21)) (-4393 (($ (-114) $) 56) (($ (-114) $ $) 55) (($ (-114) $ $ $) 54) (($ (-114) $ $ $ $) 53) (($ (-114) (-644 $)) 52)) (-2940 (($ $) 44) (($ $ $) 43)) (-3601 (($ $) 19 (|has| $ (-1049)))) (-3780 (((-862) $) 12) (($ (-612 $)) 63)) (-1442 (($ $) 48) (($ (-644 $)) 47)) (-1643 (((-112) (-114)) 36)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-303) (-140)) (T -303))
-((-4386 (*1 *1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-4386 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-4386 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-4386 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-4386 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-644 *1)) (-4 *1 (-303)))) (-3226 (*1 *1 *1 *2) (-12 (-5 *2 (-295 *1)) (-4 *1 (-303)))) (-3226 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-295 *1))) (-4 *1 (-303)))) (-3226 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-612 *1))) (-5 *3 (-644 *1)) (-4 *1 (-303)))) (-3236 (*1 *1 *1) (-4 *1 (-303))) (-3236 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-303)))) (-4334 (*1 *1 *1) (-4 *1 (-303))) (-4334 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-303)))) (-2811 (*1 *1 *1) (-4 *1 (-303))) (-2811 (*1 *1 *1 *1) (-4 *1 (-303))) (-3173 (*1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-771)))) (-2230 (*1 *2 *1) (|partial| -12 (-5 *2 (-612 *1)) (-4 *1 (-303)))) (-2322 (*1 *2 *1) (-12 (-5 *2 (-644 (-612 *1))) (-4 *1 (-303)))) (-2248 (*1 *2 *1) (-12 (-5 *2 (-644 (-612 *1))) (-4 *1 (-303)))) (-3674 (*1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-644 (-114))))) (-2336 (*1 *2 *2) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-2306 (*1 *2 *3) (-12 (-4 *1 (-303)) (-5 *3 (-114)) (-5 *2 (-112)))) (-2181 (*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-114)) (-5 *2 (-112)))) (-2181 (*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-1175)) (-5 *2 (-112)))) (-3083 (*1 *1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-3083 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-644 *1)) (-4 *1 (-303)))) (-3077 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-612 *1)) (-4 *1 (-303)))) (-1981 (*1 *2 *1 *1) (-12 (-4 *1 (-303)) (-5 *2 (-112)))) (-1981 (*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-1175)) (-5 *2 (-112)))) (-2070 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-644 (-1 *1 *1))) (-4 *1 (-303)))) (-2070 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-644 (-1 *1 (-644 *1)))) (-4 *1 (-303)))) (-2070 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1 *1 (-644 *1))) (-4 *1 (-303)))) (-2070 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1 *1 *1)) (-4 *1 (-303)))) (-2070 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-114))) (-5 *3 (-644 (-1 *1 *1))) (-4 *1 (-303)))) (-2070 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-114))) (-5 *3 (-644 (-1 *1 (-644 *1)))) (-4 *1 (-303)))) (-2070 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 (-644 *1))) (-4 *1 (-303)))) (-2070 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 *1)) (-4 *1 (-303)))) (-2734 (*1 *2 *3) (-12 (-5 *3 (-612 *1)) (-4 *1 (-1049)) (-4 *1 (-303)) (-5 *2 (-1171 *1)))) (-2127 (*1 *1 *1) (-12 (-4 *1 (-1049)) (-4 *1 (-303)))) (-1693 (*1 *2 *1) (-12 (-4 *1 (-1038 (-566))) (-4 *1 (-303)) (-5 *2 (-112)))) (-2884 (*1 *2 *1) (-12 (-4 *1 (-1038 (-566))) (-4 *1 (-303)) (-5 *2 (-112)))))
-(-13 (-1099) (-1038 (-612 $)) (-516 (-612 $) $) (-310 $) (-10 -8 (-15 -4386 ($ (-114) $)) (-15 -4386 ($ (-114) $ $)) (-15 -4386 ($ (-114) $ $ $)) (-15 -4386 ($ (-114) $ $ $ $)) (-15 -4386 ($ (-114) (-644 $))) (-15 -3226 ($ $ (-295 $))) (-15 -3226 ($ $ (-644 (-295 $)))) (-15 -3226 ($ $ (-644 (-612 $)) (-644 $))) (-15 -3236 ($ $)) (-15 -3236 ($ (-644 $))) (-15 -4334 ($ $)) (-15 -4334 ($ (-644 $))) (-15 -2811 ($ $)) (-15 -2811 ($ $ $)) (-15 -3173 ((-771) $)) (-15 -2230 ((-3 (-612 $) "failed") $)) (-15 -2322 ((-644 (-612 $)) $)) (-15 -2248 ((-644 (-612 $)) $)) (-15 -3674 ((-644 (-114)) $)) (-15 -2336 ((-114) (-114))) (-15 -2306 ((-112) (-114))) (-15 -2181 ((-112) $ (-114))) (-15 -2181 ((-112) $ (-1175))) (-15 -3083 ($ (-114) $)) (-15 -3083 ($ (-114) (-644 $))) (-15 -3077 ($ (-1 $ $) (-612 $))) (-15 -1981 ((-112) $ $)) (-15 -1981 ((-112) $ (-1175))) (-15 -2070 ($ $ (-644 (-1175)) (-644 (-1 $ $)))) (-15 -2070 ($ $ (-644 (-1175)) (-644 (-1 $ (-644 $))))) (-15 -2070 ($ $ (-1175) (-1 $ (-644 $)))) (-15 -2070 ($ $ (-1175) (-1 $ $))) (-15 -2070 ($ $ (-644 (-114)) (-644 (-1 $ $)))) (-15 -2070 ($ $ (-644 (-114)) (-644 (-1 $ (-644 $))))) (-15 -2070 ($ $ (-114) (-1 $ (-644 $)))) (-15 -2070 ($ $ (-114) (-1 $ $))) (IF (|has| $ (-1049)) (PROGN (-15 -2734 ((-1171 $) (-612 $))) (-15 -2127 ($ $))) |%noBranch|) (IF (|has| $ (-1038 (-566))) (PROGN (-15 -1693 ((-112) $)) (-15 -2884 ((-112) $))) |%noBranch|)))
+((-4393 (*1 *1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-4393 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-4393 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-4393 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-4393 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-644 *1)) (-4 *1 (-303)))) (-2463 (*1 *1 *1 *2) (-12 (-5 *2 (-295 *1)) (-4 *1 (-303)))) (-2463 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-295 *1))) (-4 *1 (-303)))) (-2463 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-612 *1))) (-5 *3 (-644 *1)) (-4 *1 (-303)))) (-1442 (*1 *1 *1) (-4 *1 (-303))) (-1442 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-303)))) (-2388 (*1 *1 *1) (-4 *1 (-303))) (-2388 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-303)))) (-2940 (*1 *1 *1) (-4 *1 (-303))) (-2940 (*1 *1 *1 *1) (-4 *1 (-303))) (-3906 (*1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-771)))) (-2116 (*1 *2 *1) (|partial| -12 (-5 *2 (-612 *1)) (-4 *1 (-303)))) (-2404 (*1 *2 *1) (-12 (-5 *2 (-644 (-612 *1))) (-4 *1 (-303)))) (-2327 (*1 *2 *1) (-12 (-5 *2 (-644 (-612 *1))) (-4 *1 (-303)))) (-2162 (*1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-644 (-114))))) (-2415 (*1 *2 *2) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-1643 (*1 *2 *3) (-12 (-4 *1 (-303)) (-5 *3 (-114)) (-5 *2 (-112)))) (-2885 (*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-114)) (-5 *2 (-112)))) (-2885 (*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-1175)) (-5 *2 (-112)))) (-3159 (*1 *1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114)))) (-3159 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-644 *1)) (-4 *1 (-303)))) (-3152 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-612 *1)) (-4 *1 (-303)))) (-1471 (*1 *2 *1 *1) (-12 (-4 *1 (-303)) (-5 *2 (-112)))) (-1471 (*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-1175)) (-5 *2 (-112)))) (-2095 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-644 (-1 *1 *1))) (-4 *1 (-303)))) (-2095 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-644 (-1 *1 (-644 *1)))) (-4 *1 (-303)))) (-2095 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1 *1 (-644 *1))) (-4 *1 (-303)))) (-2095 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1 *1 *1)) (-4 *1 (-303)))) (-2095 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-114))) (-5 *3 (-644 (-1 *1 *1))) (-4 *1 (-303)))) (-2095 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-114))) (-5 *3 (-644 (-1 *1 (-644 *1)))) (-4 *1 (-303)))) (-2095 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 (-644 *1))) (-4 *1 (-303)))) (-2095 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1 *1 *1)) (-4 *1 (-303)))) (-3392 (*1 *2 *3) (-12 (-5 *3 (-612 *1)) (-4 *1 (-1049)) (-4 *1 (-303)) (-5 *2 (-1171 *1)))) (-3601 (*1 *1 *1) (-12 (-4 *1 (-1049)) (-4 *1 (-303)))) (-1630 (*1 *2 *1) (-12 (-4 *1 (-1038 (-566))) (-4 *1 (-303)) (-5 *2 (-112)))) (-2469 (*1 *2 *1) (-12 (-4 *1 (-1038 (-566))) (-4 *1 (-303)) (-5 *2 (-112)))))
+(-13 (-1099) (-1038 (-612 $)) (-516 (-612 $) $) (-310 $) (-10 -8 (-15 -4393 ($ (-114) $)) (-15 -4393 ($ (-114) $ $)) (-15 -4393 ($ (-114) $ $ $)) (-15 -4393 ($ (-114) $ $ $ $)) (-15 -4393 ($ (-114) (-644 $))) (-15 -2463 ($ $ (-295 $))) (-15 -2463 ($ $ (-644 (-295 $)))) (-15 -2463 ($ $ (-644 (-612 $)) (-644 $))) (-15 -1442 ($ $)) (-15 -1442 ($ (-644 $))) (-15 -2388 ($ $)) (-15 -2388 ($ (-644 $))) (-15 -2940 ($ $)) (-15 -2940 ($ $ $)) (-15 -3906 ((-771) $)) (-15 -2116 ((-3 (-612 $) "failed") $)) (-15 -2404 ((-644 (-612 $)) $)) (-15 -2327 ((-644 (-612 $)) $)) (-15 -2162 ((-644 (-114)) $)) (-15 -2415 ((-114) (-114))) (-15 -1643 ((-112) (-114))) (-15 -2885 ((-112) $ (-114))) (-15 -2885 ((-112) $ (-1175))) (-15 -3159 ($ (-114) $)) (-15 -3159 ($ (-114) (-644 $))) (-15 -3152 ($ (-1 $ $) (-612 $))) (-15 -1471 ((-112) $ $)) (-15 -1471 ((-112) $ (-1175))) (-15 -2095 ($ $ (-644 (-1175)) (-644 (-1 $ $)))) (-15 -2095 ($ $ (-644 (-1175)) (-644 (-1 $ (-644 $))))) (-15 -2095 ($ $ (-1175) (-1 $ (-644 $)))) (-15 -2095 ($ $ (-1175) (-1 $ $))) (-15 -2095 ($ $ (-644 (-114)) (-644 (-1 $ $)))) (-15 -2095 ($ $ (-644 (-114)) (-644 (-1 $ (-644 $))))) (-15 -2095 ($ $ (-114) (-1 $ (-644 $)))) (-15 -2095 ($ $ (-114) (-1 $ $))) (IF (|has| $ (-1049)) (PROGN (-15 -3392 ((-1171 $) (-612 $))) (-15 -3601 ($ $))) |%noBranch|) (IF (|has| $ (-1038 (-566))) (PROGN (-15 -1630 ((-112) $)) (-15 -2469 ((-112) $))) |%noBranch|)))
(((-102) . T) ((-616 #0=(-612 $)) . T) ((-613 (-862)) . T) ((-310 $) . T) ((-516 (-612 $) $) . T) ((-516 $ $) . T) ((-1038 #0#) . T) ((-1099) . T))
-((-3283 (((-644 |#1|) (-644 |#1|)) 10)))
-(((-304 |#1|) (-10 -7 (-15 -3283 ((-644 |#1|) (-644 |#1|)))) (-848)) (T -304))
-((-3283 (*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-848)) (-5 *1 (-304 *3)))))
-(-10 -7 (-15 -3283 ((-644 |#1|) (-644 |#1|))))
-((-3077 (((-689 |#2|) (-1 |#2| |#1|) (-689 |#1|)) 17)))
-(((-305 |#1| |#2|) (-10 -7 (-15 -3077 ((-689 |#2|) (-1 |#2| |#1|) (-689 |#1|)))) (-1049) (-1049)) (T -305))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-689 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-5 *2 (-689 *6)) (-5 *1 (-305 *5 *6)))))
-(-10 -7 (-15 -3077 ((-689 |#2|) (-1 |#2| |#1|) (-689 |#1|))))
-((-3892 (((-1264 (-317 (-381))) (-1264 (-317 (-225)))) 112)) (-2581 (((-1093 (-843 (-225))) (-1093 (-843 (-381)))) 45)) (-1987 (((-644 (-1157)) (-1155 (-225))) 94)) (-2846 (((-317 (-381)) (-952 (-225))) 55)) (-3153 (((-225) (-952 (-225))) 51)) (-3404 (((-1157) (-381)) 197)) (-4261 (((-843 (-225)) (-843 (-381))) 39)) (-2750 (((-2 (|:| |additions| (-566)) (|:| |multiplications| (-566)) (|:| |exponentiations| (-566)) (|:| |functionCalls| (-566))) (-1264 (-317 (-225)))) 165)) (-3349 (((-1035) (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035)))) 209) (((-1035) (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))))) 207)) (-1380 (((-689 (-225)) (-644 (-225)) (-771)) 21)) (-3213 (((-1264 (-699)) (-644 (-225))) 101)) (-2433 (((-644 (-1157)) (-644 (-225))) 81)) (-3113 (((-3 (-317 (-225)) "failed") (-317 (-225))) 130)) (-4243 (((-112) (-225) (-1093 (-843 (-225)))) 119)) (-2316 (((-1035) (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))) 226)) (-3582 (((-225) (-1093 (-843 (-225)))) 114)) (-3478 (((-225) (-1093 (-843 (-225)))) 115)) (-3095 (((-225) (-409 (-566))) 33)) (-2910 (((-1157) (-381)) 79)) (-3319 (((-225) (-381)) 24)) (-1396 (((-381) (-1264 (-317 (-225)))) 179)) (-3337 (((-317 (-225)) (-317 (-381))) 30)) (-4206 (((-409 (-566)) (-317 (-225))) 58)) (-4143 (((-317 (-409 (-566))) (-317 (-225))) 75)) (-2285 (((-317 (-381)) (-317 (-225))) 105)) (-2321 (((-225) (-317 (-225))) 59)) (-1487 (((-644 (-225)) (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) 70)) (-4222 (((-1093 (-843 (-225))) (-1093 (-843 (-225)))) 67)) (-2789 (((-1157) (-225)) 78)) (-1732 (((-699) (-225)) 97)) (-1808 (((-409 (-566)) (-225)) 60)) (-2622 (((-317 (-381)) (-225)) 54)) (-3134 (((-644 (-1093 (-843 (-225)))) (-644 (-1093 (-843 (-381))))) 48)) (-3704 (((-1035) (-644 (-1035))) 193) (((-1035) (-1035) (-1035)) 187)) (-2777 (((-1035) (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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"))))) 223)))
-(((-306) (-10 -7 (-15 -3319 ((-225) (-381))) (-15 -3337 ((-317 (-225)) (-317 (-381)))) (-15 -4261 ((-843 (-225)) (-843 (-381)))) (-15 -2581 ((-1093 (-843 (-225))) (-1093 (-843 (-381))))) (-15 -3134 ((-644 (-1093 (-843 (-225)))) (-644 (-1093 (-843 (-381)))))) (-15 -1808 ((-409 (-566)) (-225))) (-15 -4206 ((-409 (-566)) (-317 (-225)))) (-15 -2321 ((-225) (-317 (-225)))) (-15 -3113 ((-3 (-317 (-225)) "failed") (-317 (-225)))) (-15 -1396 ((-381) (-1264 (-317 (-225))))) (-15 -2750 ((-2 (|:| |additions| (-566)) (|:| |multiplications| (-566)) (|:| |exponentiations| (-566)) (|:| |functionCalls| (-566))) (-1264 (-317 (-225))))) (-15 -4143 ((-317 (-409 (-566))) (-317 (-225)))) (-15 -4222 ((-1093 (-843 (-225))) (-1093 (-843 (-225))))) (-15 -1487 ((-644 (-225)) (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))) (-15 -1732 ((-699) (-225))) (-15 -3213 ((-1264 (-699)) (-644 (-225)))) (-15 -2285 ((-317 (-381)) (-317 (-225)))) (-15 -3892 ((-1264 (-317 (-381))) (-1264 (-317 (-225))))) (-15 -4243 ((-112) (-225) (-1093 (-843 (-225))))) (-15 -2789 ((-1157) (-225))) (-15 -2910 ((-1157) (-381))) (-15 -2433 ((-644 (-1157)) (-644 (-225)))) (-15 -1987 ((-644 (-1157)) (-1155 (-225)))) (-15 -3582 ((-225) (-1093 (-843 (-225))))) (-15 -3478 ((-225) (-1093 (-843 (-225))))) (-15 -3704 ((-1035) (-1035) (-1035))) (-15 -3704 ((-1035) (-644 (-1035)))) (-15 -3404 ((-1157) (-381))) (-15 -3349 ((-1035) (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))))) (-15 -3349 ((-1035) (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))))) (-15 -2777 ((-1035) (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 -2316 ((-1035) (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))) (-15 -2846 ((-317 (-381)) (-952 (-225)))) (-15 -3153 ((-225) (-952 (-225)))) (-15 -2622 ((-317 (-381)) (-225))) (-15 -3095 ((-225) (-409 (-566)))) (-15 -1380 ((-689 (-225)) (-644 (-225)) (-771))))) (T -306))
-((-1380 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-225))) (-5 *4 (-771)) (-5 *2 (-689 (-225))) (-5 *1 (-306)))) (-3095 (*1 *2 *3) (-12 (-5 *3 (-409 (-566))) (-5 *2 (-225)) (-5 *1 (-306)))) (-2622 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-317 (-381))) (-5 *1 (-306)))) (-3153 (*1 *2 *3) (-12 (-5 *3 (-952 (-225))) (-5 *2 (-225)) (-5 *1 (-306)))) (-2846 (*1 *2 *3) (-12 (-5 *3 (-952 (-225))) (-5 *2 (-317 (-381))) (-5 *1 (-306)))) (-2316 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))) (-5 *2 (-1035)) (-5 *1 (-306)))) (-2777 (*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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 (-1035)) (-5 *1 (-306)))) (-3349 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035)))) (-5 *2 (-1035)) (-5 *1 (-306)))) (-3349 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *2 (-1035)) (-5 *1 (-306)))) (-3404 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1157)) (-5 *1 (-306)))) (-3704 (*1 *2 *3) (-12 (-5 *3 (-644 (-1035))) (-5 *2 (-1035)) (-5 *1 (-306)))) (-3704 (*1 *2 *2 *2) (-12 (-5 *2 (-1035)) (-5 *1 (-306)))) (-3478 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-306)))) (-3582 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-306)))) (-1987 (*1 *2 *3) (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-306)))) (-2433 (*1 *2 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-306)))) (-2910 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1157)) (-5 *1 (-306)))) (-2789 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1157)) (-5 *1 (-306)))) (-4243 (*1 *2 *3 *4) (-12 (-5 *4 (-1093 (-843 (-225)))) (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-306)))) (-3892 (*1 *2 *3) (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *2 (-1264 (-317 (-381)))) (-5 *1 (-306)))) (-2285 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-317 (-381))) (-5 *1 (-306)))) (-3213 (*1 *2 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-1264 (-699))) (-5 *1 (-306)))) (-1732 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-699)) (-5 *1 (-306)))) (-1487 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-5 *2 (-644 (-225))) (-5 *1 (-306)))) (-4222 (*1 *2 *2) (-12 (-5 *2 (-1093 (-843 (-225)))) (-5 *1 (-306)))) (-4143 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-317 (-409 (-566)))) (-5 *1 (-306)))) (-2750 (*1 *2 *3) (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *2 (-2 (|:| |additions| (-566)) (|:| |multiplications| (-566)) (|:| |exponentiations| (-566)) (|:| |functionCalls| (-566)))) (-5 *1 (-306)))) (-1396 (*1 *2 *3) (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *2 (-381)) (-5 *1 (-306)))) (-3113 (*1 *2 *2) (|partial| -12 (-5 *2 (-317 (-225))) (-5 *1 (-306)))) (-2321 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-225)) (-5 *1 (-306)))) (-4206 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-409 (-566))) (-5 *1 (-306)))) (-1808 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-409 (-566))) (-5 *1 (-306)))) (-3134 (*1 *2 *3) (-12 (-5 *3 (-644 (-1093 (-843 (-381))))) (-5 *2 (-644 (-1093 (-843 (-225))))) (-5 *1 (-306)))) (-2581 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-381)))) (-5 *2 (-1093 (-843 (-225)))) (-5 *1 (-306)))) (-4261 (*1 *2 *3) (-12 (-5 *3 (-843 (-381))) (-5 *2 (-843 (-225))) (-5 *1 (-306)))) (-3337 (*1 *2 *3) (-12 (-5 *3 (-317 (-381))) (-5 *2 (-317 (-225))) (-5 *1 (-306)))) (-3319 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-225)) (-5 *1 (-306)))))
-(-10 -7 (-15 -3319 ((-225) (-381))) (-15 -3337 ((-317 (-225)) (-317 (-381)))) (-15 -4261 ((-843 (-225)) (-843 (-381)))) (-15 -2581 ((-1093 (-843 (-225))) (-1093 (-843 (-381))))) (-15 -3134 ((-644 (-1093 (-843 (-225)))) (-644 (-1093 (-843 (-381)))))) (-15 -1808 ((-409 (-566)) (-225))) (-15 -4206 ((-409 (-566)) (-317 (-225)))) (-15 -2321 ((-225) (-317 (-225)))) (-15 -3113 ((-3 (-317 (-225)) "failed") (-317 (-225)))) (-15 -1396 ((-381) (-1264 (-317 (-225))))) (-15 -2750 ((-2 (|:| |additions| (-566)) (|:| |multiplications| (-566)) (|:| |exponentiations| (-566)) (|:| |functionCalls| (-566))) (-1264 (-317 (-225))))) (-15 -4143 ((-317 (-409 (-566))) (-317 (-225)))) (-15 -4222 ((-1093 (-843 (-225))) (-1093 (-843 (-225))))) (-15 -1487 ((-644 (-225)) (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))) (-15 -1732 ((-699) (-225))) (-15 -3213 ((-1264 (-699)) (-644 (-225)))) (-15 -2285 ((-317 (-381)) (-317 (-225)))) (-15 -3892 ((-1264 (-317 (-381))) (-1264 (-317 (-225))))) (-15 -4243 ((-112) (-225) (-1093 (-843 (-225))))) (-15 -2789 ((-1157) (-225))) (-15 -2910 ((-1157) (-381))) (-15 -2433 ((-644 (-1157)) (-644 (-225)))) (-15 -1987 ((-644 (-1157)) (-1155 (-225)))) (-15 -3582 ((-225) (-1093 (-843 (-225))))) (-15 -3478 ((-225) (-1093 (-843 (-225))))) (-15 -3704 ((-1035) (-1035) (-1035))) (-15 -3704 ((-1035) (-644 (-1035)))) (-15 -3404 ((-1157) (-381))) (-15 -3349 ((-1035) (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))))) (-15 -3349 ((-1035) (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))))) (-15 -2777 ((-1035) (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 -2316 ((-1035) (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))) (-15 -2846 ((-317 (-381)) (-952 (-225)))) (-15 -3153 ((-225) (-952 (-225)))) (-15 -2622 ((-317 (-381)) (-225))) (-15 -3095 ((-225) (-409 (-566)))) (-15 -1380 ((-689 (-225)) (-644 (-225)) (-771))))
-((-1561 (((-112) $ $) 14)) (-2926 (($ $ $) 18)) (-2938 (($ $ $) 17)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 50)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 65)) (-2222 (($ $ $) 25) (($ (-644 $)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 35) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 40)) (-2972 (((-3 $ "failed") $ $) 21)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 53)))
-(((-307 |#1|) (-10 -8 (-15 -3651 ((-3 (-644 |#1|) "failed") (-644 |#1|) |#1|)) (-15 -1665 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1665 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4067 |#1|)) |#1| |#1|)) (-15 -2926 (|#1| |#1| |#1|)) (-15 -2938 (|#1| |#1| |#1|)) (-15 -1561 ((-112) |#1| |#1|)) (-15 -3819 ((-3 (-644 |#1|) "failed") (-644 |#1|) |#1|)) (-15 -1470 ((-2 (|:| -3157 (-644 |#1|)) (|:| -4067 |#1|)) (-644 |#1|))) (-15 -2222 (|#1| (-644 |#1|))) (-15 -2222 (|#1| |#1| |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#1|))) (-308)) (T -307))
-NIL
-(-10 -8 (-15 -3651 ((-3 (-644 |#1|) "failed") (-644 |#1|) |#1|)) (-15 -1665 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1665 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4067 |#1|)) |#1| |#1|)) (-15 -2926 (|#1| |#1| |#1|)) (-15 -2938 (|#1| |#1| |#1|)) (-15 -1561 ((-112) |#1| |#1|)) (-15 -3819 ((-3 (-644 |#1|) "failed") (-644 |#1|) |#1|)) (-15 -1470 ((-2 (|:| -3157 (-644 |#1|)) (|:| -4067 |#1|)) (-644 |#1|))) (-15 -2222 (|#1| (-644 |#1|))) (-15 -2222 (|#1| |#1| |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-1561 (((-112) $ $) 65)) (-2342 (($) 18 T CONST)) (-2926 (($ $ $) 61)) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-2741 (((-112) $) 35)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1813 (((-771) $) 64)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-2739 (((-644 |#1|) (-644 |#1|)) 10)))
+(((-304 |#1|) (-10 -7 (-15 -2739 ((-644 |#1|) (-644 |#1|)))) (-848)) (T -304))
+((-2739 (*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-848)) (-5 *1 (-304 *3)))))
+(-10 -7 (-15 -2739 ((-644 |#1|) (-644 |#1|))))
+((-3152 (((-689 |#2|) (-1 |#2| |#1|) (-689 |#1|)) 17)))
+(((-305 |#1| |#2|) (-10 -7 (-15 -3152 ((-689 |#2|) (-1 |#2| |#1|) (-689 |#1|)))) (-1049) (-1049)) (T -305))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-689 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-5 *2 (-689 *6)) (-5 *1 (-305 *5 *6)))))
+(-10 -7 (-15 -3152 ((-689 |#2|) (-1 |#2| |#1|) (-689 |#1|))))
+((-3666 (((-1264 (-317 (-381))) (-1264 (-317 (-225)))) 112)) (-4327 (((-1093 (-843 (-225))) (-1093 (-843 (-381)))) 45)) (-1539 (((-644 (-1157)) (-1155 (-225))) 94)) (-2075 (((-317 (-381)) (-952 (-225))) 55)) (-4042 (((-225) (-952 (-225))) 51)) (-1336 (((-1157) (-381)) 197)) (-2859 (((-843 (-225)) (-843 (-381))) 39)) (-3560 (((-2 (|:| |additions| (-566)) (|:| |multiplications| (-566)) (|:| |exponentiations| (-566)) (|:| |functionCalls| (-566))) (-1264 (-317 (-225)))) 165)) (-2063 (((-1035) (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035)))) 209) (((-1035) (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))))) 207)) (-4193 (((-689 (-225)) (-644 (-225)) (-771)) 21)) (-3346 (((-1264 (-699)) (-644 (-225))) 101)) (-3516 (((-644 (-1157)) (-644 (-225))) 81)) (-3855 (((-3 (-317 (-225)) "failed") (-317 (-225))) 130)) (-2727 (((-112) (-225) (-1093 (-843 (-225)))) 119)) (-1766 (((-1035) (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))) 226)) (-2514 (((-225) (-1093 (-843 (-225)))) 114)) (-3979 (((-225) (-1093 (-843 (-225)))) 115)) (-1697 (((-225) (-409 (-566))) 33)) (-1479 (((-1157) (-381)) 79)) (-1832 (((-225) (-381)) 24)) (-3491 (((-381) (-1264 (-317 (-225)))) 179)) (-1962 (((-317 (-225)) (-317 (-381))) 30)) (-3576 (((-409 (-566)) (-317 (-225))) 58)) (-4177 (((-317 (-409 (-566))) (-317 (-225))) 75)) (-1418 (((-317 (-381)) (-317 (-225))) 105)) (-3687 (((-225) (-317 (-225))) 59)) (-3213 (((-644 (-225)) (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) 70)) (-2548 (((-1093 (-843 (-225))) (-1093 (-843 (-225)))) 67)) (-2732 (((-1157) (-225)) 78)) (-3864 (((-699) (-225)) 97)) (-3426 (((-409 (-566)) (-225)) 60)) (-1648 (((-317 (-381)) (-225)) 54)) (-3204 (((-644 (-1093 (-843 (-225)))) (-644 (-1093 (-843 (-381))))) 48)) (-3727 (((-1035) (-644 (-1035))) 193) (((-1035) (-1035) (-1035)) 187)) (-2612 (((-1035) (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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"))))) 223)))
+(((-306) (-10 -7 (-15 -1832 ((-225) (-381))) (-15 -1962 ((-317 (-225)) (-317 (-381)))) (-15 -2859 ((-843 (-225)) (-843 (-381)))) (-15 -4327 ((-1093 (-843 (-225))) (-1093 (-843 (-381))))) (-15 -3204 ((-644 (-1093 (-843 (-225)))) (-644 (-1093 (-843 (-381)))))) (-15 -3426 ((-409 (-566)) (-225))) (-15 -3576 ((-409 (-566)) (-317 (-225)))) (-15 -3687 ((-225) (-317 (-225)))) (-15 -3855 ((-3 (-317 (-225)) "failed") (-317 (-225)))) (-15 -3491 ((-381) (-1264 (-317 (-225))))) (-15 -3560 ((-2 (|:| |additions| (-566)) (|:| |multiplications| (-566)) (|:| |exponentiations| (-566)) (|:| |functionCalls| (-566))) (-1264 (-317 (-225))))) (-15 -4177 ((-317 (-409 (-566))) (-317 (-225)))) (-15 -2548 ((-1093 (-843 (-225))) (-1093 (-843 (-225))))) (-15 -3213 ((-644 (-225)) (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))) (-15 -3864 ((-699) (-225))) (-15 -3346 ((-1264 (-699)) (-644 (-225)))) (-15 -1418 ((-317 (-381)) (-317 (-225)))) (-15 -3666 ((-1264 (-317 (-381))) (-1264 (-317 (-225))))) (-15 -2727 ((-112) (-225) (-1093 (-843 (-225))))) (-15 -2732 ((-1157) (-225))) (-15 -1479 ((-1157) (-381))) (-15 -3516 ((-644 (-1157)) (-644 (-225)))) (-15 -1539 ((-644 (-1157)) (-1155 (-225)))) (-15 -2514 ((-225) (-1093 (-843 (-225))))) (-15 -3979 ((-225) (-1093 (-843 (-225))))) (-15 -3727 ((-1035) (-1035) (-1035))) (-15 -3727 ((-1035) (-644 (-1035)))) (-15 -1336 ((-1157) (-381))) (-15 -2063 ((-1035) (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))))) (-15 -2063 ((-1035) (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))))) (-15 -2612 ((-1035) (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 -1766 ((-1035) (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))) (-15 -2075 ((-317 (-381)) (-952 (-225)))) (-15 -4042 ((-225) (-952 (-225)))) (-15 -1648 ((-317 (-381)) (-225))) (-15 -1697 ((-225) (-409 (-566)))) (-15 -4193 ((-689 (-225)) (-644 (-225)) (-771))))) (T -306))
+((-4193 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-225))) (-5 *4 (-771)) (-5 *2 (-689 (-225))) (-5 *1 (-306)))) (-1697 (*1 *2 *3) (-12 (-5 *3 (-409 (-566))) (-5 *2 (-225)) (-5 *1 (-306)))) (-1648 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-317 (-381))) (-5 *1 (-306)))) (-4042 (*1 *2 *3) (-12 (-5 *3 (-952 (-225))) (-5 *2 (-225)) (-5 *1 (-306)))) (-2075 (*1 *2 *3) (-12 (-5 *3 (-952 (-225))) (-5 *2 (-317 (-381))) (-5 *1 (-306)))) (-1766 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))) (-5 *2 (-1035)) (-5 *1 (-306)))) (-2612 (*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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 (-1035)) (-5 *1 (-306)))) (-2063 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035)))) (-5 *2 (-1035)) (-5 *1 (-306)))) (-2063 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *2 (-1035)) (-5 *1 (-306)))) (-1336 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1157)) (-5 *1 (-306)))) (-3727 (*1 *2 *3) (-12 (-5 *3 (-644 (-1035))) (-5 *2 (-1035)) (-5 *1 (-306)))) (-3727 (*1 *2 *2 *2) (-12 (-5 *2 (-1035)) (-5 *1 (-306)))) (-3979 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-306)))) (-2514 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-306)))) (-1539 (*1 *2 *3) (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-306)))) (-3516 (*1 *2 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-306)))) (-1479 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1157)) (-5 *1 (-306)))) (-2732 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1157)) (-5 *1 (-306)))) (-2727 (*1 *2 *3 *4) (-12 (-5 *4 (-1093 (-843 (-225)))) (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-306)))) (-3666 (*1 *2 *3) (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *2 (-1264 (-317 (-381)))) (-5 *1 (-306)))) (-1418 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-317 (-381))) (-5 *1 (-306)))) (-3346 (*1 *2 *3) (-12 (-5 *3 (-644 (-225))) (-5 *2 (-1264 (-699))) (-5 *1 (-306)))) (-3864 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-699)) (-5 *1 (-306)))) (-3213 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-5 *2 (-644 (-225))) (-5 *1 (-306)))) (-2548 (*1 *2 *2) (-12 (-5 *2 (-1093 (-843 (-225)))) (-5 *1 (-306)))) (-4177 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-317 (-409 (-566)))) (-5 *1 (-306)))) (-3560 (*1 *2 *3) (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *2 (-2 (|:| |additions| (-566)) (|:| |multiplications| (-566)) (|:| |exponentiations| (-566)) (|:| |functionCalls| (-566)))) (-5 *1 (-306)))) (-3491 (*1 *2 *3) (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *2 (-381)) (-5 *1 (-306)))) (-3855 (*1 *2 *2) (|partial| -12 (-5 *2 (-317 (-225))) (-5 *1 (-306)))) (-3687 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-225)) (-5 *1 (-306)))) (-3576 (*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-409 (-566))) (-5 *1 (-306)))) (-3426 (*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-409 (-566))) (-5 *1 (-306)))) (-3204 (*1 *2 *3) (-12 (-5 *3 (-644 (-1093 (-843 (-381))))) (-5 *2 (-644 (-1093 (-843 (-225))))) (-5 *1 (-306)))) (-4327 (*1 *2 *3) (-12 (-5 *3 (-1093 (-843 (-381)))) (-5 *2 (-1093 (-843 (-225)))) (-5 *1 (-306)))) (-2859 (*1 *2 *3) (-12 (-5 *3 (-843 (-381))) (-5 *2 (-843 (-225))) (-5 *1 (-306)))) (-1962 (*1 *2 *3) (-12 (-5 *3 (-317 (-381))) (-5 *2 (-317 (-225))) (-5 *1 (-306)))) (-1832 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-225)) (-5 *1 (-306)))))
+(-10 -7 (-15 -1832 ((-225) (-381))) (-15 -1962 ((-317 (-225)) (-317 (-381)))) (-15 -2859 ((-843 (-225)) (-843 (-381)))) (-15 -4327 ((-1093 (-843 (-225))) (-1093 (-843 (-381))))) (-15 -3204 ((-644 (-1093 (-843 (-225)))) (-644 (-1093 (-843 (-381)))))) (-15 -3426 ((-409 (-566)) (-225))) (-15 -3576 ((-409 (-566)) (-317 (-225)))) (-15 -3687 ((-225) (-317 (-225)))) (-15 -3855 ((-3 (-317 (-225)) "failed") (-317 (-225)))) (-15 -3491 ((-381) (-1264 (-317 (-225))))) (-15 -3560 ((-2 (|:| |additions| (-566)) (|:| |multiplications| (-566)) (|:| |exponentiations| (-566)) (|:| |functionCalls| (-566))) (-1264 (-317 (-225))))) (-15 -4177 ((-317 (-409 (-566))) (-317 (-225)))) (-15 -2548 ((-1093 (-843 (-225))) (-1093 (-843 (-225))))) (-15 -3213 ((-644 (-225)) (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))) (-15 -3864 ((-699) (-225))) (-15 -3346 ((-1264 (-699)) (-644 (-225)))) (-15 -1418 ((-317 (-381)) (-317 (-225)))) (-15 -3666 ((-1264 (-317 (-381))) (-1264 (-317 (-225))))) (-15 -2727 ((-112) (-225) (-1093 (-843 (-225))))) (-15 -2732 ((-1157) (-225))) (-15 -1479 ((-1157) (-381))) (-15 -3516 ((-644 (-1157)) (-644 (-225)))) (-15 -1539 ((-644 (-1157)) (-1155 (-225)))) (-15 -2514 ((-225) (-1093 (-843 (-225))))) (-15 -3979 ((-225) (-1093 (-843 (-225))))) (-15 -3727 ((-1035) (-1035) (-1035))) (-15 -3727 ((-1035) (-644 (-1035)))) (-15 -1336 ((-1157) (-381))) (-15 -2063 ((-1035) (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))))) (-15 -2063 ((-1035) (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))))) (-15 -2612 ((-1035) (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 -1766 ((-1035) (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))) (-15 -2075 ((-317 (-381)) (-952 (-225)))) (-15 -4042 ((-225) (-952 (-225)))) (-15 -1648 ((-317 (-381)) (-225))) (-15 -1697 ((-225) (-409 (-566)))) (-15 -4193 ((-689 (-225)) (-644 (-225)) (-771))))
+((-2738 (((-112) $ $) 14)) (-2949 (($ $ $) 18)) (-2960 (($ $ $) 17)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 50)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 65)) (-2235 (($ $ $) 25) (($ (-644 $)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 35) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 40)) (-2997 (((-3 $ "failed") $ $) 21)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 53)))
+(((-307 |#1|) (-10 -8 (-15 -1947 ((-3 (-644 |#1|) "failed") (-644 |#1|) |#1|)) (-15 -1325 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1325 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4152 |#1|)) |#1| |#1|)) (-15 -2949 (|#1| |#1| |#1|)) (-15 -2960 (|#1| |#1| |#1|)) (-15 -2738 ((-112) |#1| |#1|)) (-15 -4208 ((-3 (-644 |#1|) "failed") (-644 |#1|) |#1|)) (-15 -3041 ((-2 (|:| -3223 (-644 |#1|)) (|:| -4152 |#1|)) (-644 |#1|))) (-15 -2235 (|#1| (-644 |#1|))) (-15 -2235 (|#1| |#1| |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#1|))) (-308)) (T -307))
+NIL
+(-10 -8 (-15 -1947 ((-3 (-644 |#1|) "failed") (-644 |#1|) |#1|)) (-15 -1325 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1325 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4152 |#1|)) |#1| |#1|)) (-15 -2949 (|#1| |#1| |#1|)) (-15 -2960 (|#1| |#1| |#1|)) (-15 -2738 ((-112) |#1| |#1|)) (-15 -4208 ((-3 (-644 |#1|) "failed") (-644 |#1|) |#1|)) (-15 -3041 ((-2 (|:| -3223 (-644 |#1|)) (|:| -4152 |#1|)) (-644 |#1|))) (-15 -2235 (|#1| (-644 |#1|))) (-15 -2235 (|#1| |#1| |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-2738 (((-112) $ $) 65)) (-3877 (($) 18 T CONST)) (-2949 (($ $ $) 61)) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-3466 (((-112) $) 35)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3470 (((-771) $) 64)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-308) (-140)) (T -308))
-((-1561 (*1 *2 *1 *1) (-12 (-4 *1 (-308)) (-5 *2 (-112)))) (-1813 (*1 *2 *1) (-12 (-4 *1 (-308)) (-5 *2 (-771)))) (-2347 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-308)))) (-2938 (*1 *1 *1 *1) (-4 *1 (-308))) (-2926 (*1 *1 *1 *1) (-4 *1 (-308))) (-1665 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4067 *1))) (-4 *1 (-308)))) (-1665 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-308)))) (-3651 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-644 *1)) (-4 *1 (-308)))))
-(-13 (-920) (-10 -8 (-15 -1561 ((-112) $ $)) (-15 -1813 ((-771) $)) (-15 -2347 ((-2 (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -2938 ($ $ $)) (-15 -2926 ($ $ $)) (-15 -1665 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $)) (-15 -1665 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -3651 ((-3 (-644 $) "failed") (-644 $) $))))
+((-2738 (*1 *2 *1 *1) (-12 (-4 *1 (-308)) (-5 *2 (-112)))) (-3470 (*1 *2 *1) (-12 (-4 *1 (-308)) (-5 *2 (-771)))) (-3919 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-308)))) (-2960 (*1 *1 *1 *1) (-4 *1 (-308))) (-2949 (*1 *1 *1 *1) (-4 *1 (-308))) (-1325 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4152 *1))) (-4 *1 (-308)))) (-1325 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-308)))) (-1947 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-644 *1)) (-4 *1 (-308)))))
+(-13 (-920) (-10 -8 (-15 -2738 ((-112) $ $)) (-15 -3470 ((-771) $)) (-15 -3919 ((-2 (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -2960 ($ $ $)) (-15 -2949 ($ $ $)) (-15 -1325 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $)) (-15 -1325 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -1947 ((-3 (-644 $) "failed") (-644 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-291) . T) ((-454) . T) ((-558) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-717 $) . T) ((-726) . T) ((-920) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2070 (($ $ (-644 |#2|) (-644 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-295 |#2|)) 11) (($ $ (-644 (-295 |#2|))) NIL)))
-(((-309 |#1| |#2|) (-10 -8 (-15 -2070 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -2070 (|#1| |#1| (-295 |#2|))) (-15 -2070 (|#1| |#1| |#2| |#2|)) (-15 -2070 (|#1| |#1| (-644 |#2|) (-644 |#2|)))) (-310 |#2|) (-1099)) (T -309))
+((-2095 (($ $ (-644 |#2|) (-644 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-295 |#2|)) 11) (($ $ (-644 (-295 |#2|))) NIL)))
+(((-309 |#1| |#2|) (-10 -8 (-15 -2095 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -2095 (|#1| |#1| (-295 |#2|))) (-15 -2095 (|#1| |#1| |#2| |#2|)) (-15 -2095 (|#1| |#1| (-644 |#2|) (-644 |#2|)))) (-310 |#2|) (-1099)) (T -309))
NIL
-(-10 -8 (-15 -2070 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -2070 (|#1| |#1| (-295 |#2|))) (-15 -2070 (|#1| |#1| |#2| |#2|)) (-15 -2070 (|#1| |#1| (-644 |#2|) (-644 |#2|))))
-((-2070 (($ $ (-644 |#1|) (-644 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-295 |#1|)) 11) (($ $ (-644 (-295 |#1|))) 10)))
+(-10 -8 (-15 -2095 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -2095 (|#1| |#1| (-295 |#2|))) (-15 -2095 (|#1| |#1| |#2| |#2|)) (-15 -2095 (|#1| |#1| (-644 |#2|) (-644 |#2|))))
+((-2095 (($ $ (-644 |#1|) (-644 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-295 |#1|)) 11) (($ $ (-644 (-295 |#1|))) 10)))
(((-310 |#1|) (-140) (-1099)) (T -310))
-((-2070 (*1 *1 *1 *2) (-12 (-5 *2 (-295 *3)) (-4 *1 (-310 *3)) (-4 *3 (-1099)))) (-2070 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-295 *3))) (-4 *1 (-310 *3)) (-4 *3 (-1099)))))
-(-13 (-516 |t#1| |t#1|) (-10 -8 (-15 -2070 ($ $ (-295 |t#1|))) (-15 -2070 ($ $ (-644 (-295 |t#1|))))))
+((-2095 (*1 *1 *1 *2) (-12 (-5 *2 (-295 *3)) (-4 *1 (-310 *3)) (-4 *3 (-1099)))) (-2095 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-295 *3))) (-4 *1 (-310 *3)) (-4 *3 (-1099)))))
+(-13 (-516 |t#1| |t#1|) (-10 -8 (-15 -2095 ($ $ (-295 |t#1|))) (-15 -2095 ($ $ (-644 (-295 |t#1|))))))
(((-516 |#1| |#1|) . T))
-((-2070 ((|#1| (-1 |#1| (-566)) (-1177 (-409 (-566)))) 25)))
-(((-311 |#1|) (-10 -7 (-15 -2070 (|#1| (-1 |#1| (-566)) (-1177 (-409 (-566)))))) (-38 (-409 (-566)))) (T -311))
-((-2070 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-566))) (-5 *4 (-1177 (-409 (-566)))) (-5 *1 (-311 *2)) (-4 *2 (-38 (-409 (-566)))))))
-(-10 -7 (-15 -2070 (|#1| (-1 |#1| (-566)) (-1177 (-409 (-566))))))
-((-2985 (((-112) $ $) NIL)) (-4155 (((-566) $) 12)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1374 (((-1134) $) 9)) (-2512 (((-862) $) 19) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-312) (-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $)) (-15 -4155 ((-566) $))))) (T -312))
-((-1374 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-312)))) (-4155 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-312)))))
-(-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $)) (-15 -4155 ((-566) $))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 7)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 9)))
+((-2095 ((|#1| (-1 |#1| (-566)) (-1177 (-409 (-566)))) 25)))
+(((-311 |#1|) (-10 -7 (-15 -2095 (|#1| (-1 |#1| (-566)) (-1177 (-409 (-566)))))) (-38 (-409 (-566)))) (T -311))
+((-2095 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-566))) (-5 *4 (-1177 (-409 (-566)))) (-5 *1 (-311 *2)) (-4 *2 (-38 (-409 (-566)))))))
+(-10 -7 (-15 -2095 (|#1| (-1 |#1| (-566)) (-1177 (-409 (-566))))))
+((-3009 (((-112) $ $) NIL)) (-1845 (((-566) $) 12)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1424 (((-1134) $) 9)) (-3780 (((-862) $) 19) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-312) (-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $)) (-15 -1845 ((-566) $))))) (T -312))
+((-1424 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-312)))) (-1845 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-312)))))
+(-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $)) (-15 -1845 ((-566) $))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 7)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 9)))
(((-313) (-1099)) (T -313))
NIL
(-1099)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 60)) (-2452 (((-1250 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-308)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-909)))) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-909)))) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-820)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-1250 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-566)))) (((-3 (-1249 |#2| |#3| |#4|) "failed") $) 26)) (-1756 (((-1250 |#1| |#2| |#3| |#4|) $) NIL) (((-1175) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-566)))) (((-566) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-566)))) (((-1249 |#2| |#3| |#4|) $) NIL)) (-2926 (($ $ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-1250 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1264 (-1250 |#1| |#2| |#3| |#4|)))) (-689 $) (-1264 $)) NIL) (((-689 (-1250 |#1| |#2| |#3| |#4|)) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-547)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-1684 (((-112) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-820)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-886 (-381))))) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL)) (-3001 (((-1250 |#1| |#2| |#3| |#4|) $) 22)) (-2546 (((-3 $ "failed") $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1150)))) (-1578 (((-112) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-820)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-3059 (($ $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-3077 (($ (-1 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|)) $) NIL)) (-3869 (((-3 (-843 |#2|) "failed") $) 80)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-308)))) (-4317 (((-1250 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-547)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-909)))) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2070 (($ $ (-644 (-1250 |#1| |#2| |#3| |#4|)) (-644 (-1250 |#1| |#2| |#3| |#4|))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-310 (-1250 |#1| |#2| |#3| |#4|)))) (($ $ (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-310 (-1250 |#1| |#2| |#3| |#4|)))) (($ $ (-295 (-1250 |#1| |#2| |#3| |#4|))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-310 (-1250 |#1| |#2| |#3| |#4|)))) (($ $ (-644 (-295 (-1250 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-310 (-1250 |#1| |#2| |#3| |#4|)))) (($ $ (-644 (-1175)) (-644 (-1250 |#1| |#2| |#3| |#4|))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-516 (-1175) (-1250 |#1| |#2| |#3| |#4|)))) (($ $ (-1175) (-1250 |#1| |#2| |#3| |#4|)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-516 (-1175) (-1250 |#1| |#2| |#3| |#4|))))) (-1813 (((-771) $) NIL)) (-4386 (($ $ (-1250 |#1| |#2| |#3| |#4|)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-287 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-771)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-1175)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-1 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|)) (-771)) NIL) (($ $ (-1 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|))) NIL)) (-3413 (($ $) NIL)) (-3013 (((-1250 |#1| |#2| |#3| |#4|) $) 19)) (-3134 (((-892 (-566)) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-614 (-538)))) (((-381) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1022))) (((-225) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1022)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-1250 |#1| |#2| |#3| |#4|) (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-1250 |#1| |#2| |#3| |#4|)) 30) (($ (-1175)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-1175)))) (($ (-1249 |#2| |#3| |#4|)) 37)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-1250 |#1| |#2| |#3| |#4|) (-909))) (|has| (-1250 |#1| |#2| |#3| |#4|) (-145))))) (-3795 (((-771)) NIL T CONST)) (-1604 (((-1250 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-547)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-1346 (($ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-820)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-771)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-1175)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-1 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|)) (-771)) NIL) (($ $ (-1 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|))) NIL)) (-2998 (((-112) $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-2962 (((-112) $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-3061 (($ $ $) 35) (($ (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|)) 32)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-1250 |#1| |#2| |#3| |#4|) $) 31) (($ $ (-1250 |#1| |#2| |#3| |#4|)) NIL)))
-(((-314 |#1| |#2| |#3| |#4|) (-13 (-992 (-1250 |#1| |#2| |#3| |#4|)) (-1038 (-1249 |#2| |#3| |#4|)) (-10 -8 (-15 -3869 ((-3 (-843 |#2|) "failed") $)) (-15 -2512 ($ (-1249 |#2| |#3| |#4|))))) (-13 (-1038 (-566)) (-639 (-566)) (-454)) (-13 (-27) (-1199) (-432 |#1|)) (-1175) |#2|) (T -314))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1249 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175)) (-14 *6 *4) (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454))) (-5 *1 (-314 *3 *4 *5 *6)))) (-3869 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454))) (-5 *2 (-843 *4)) (-5 *1 (-314 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175)) (-14 *6 *4))))
-(-13 (-992 (-1250 |#1| |#2| |#3| |#4|)) (-1038 (-1249 |#2| |#3| |#4|)) (-10 -8 (-15 -3869 ((-3 (-843 |#2|) "failed") $)) (-15 -2512 ($ (-1249 |#2| |#3| |#4|)))))
-((-3077 (((-317 |#2|) (-1 |#2| |#1|) (-317 |#1|)) 13)))
-(((-315 |#1| |#2|) (-10 -7 (-15 -3077 ((-317 |#2|) (-1 |#2| |#1|) (-317 |#1|)))) (-1099) (-1099)) (T -315))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-317 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-317 *6)) (-5 *1 (-315 *5 *6)))))
-(-10 -7 (-15 -3077 ((-317 |#2|) (-1 |#2| |#1|) (-317 |#1|))))
-((-2590 (((-52) |#2| (-295 |#2|) (-771)) 40) (((-52) |#2| (-295 |#2|)) 32) (((-52) |#2| (-771)) 35) (((-52) |#2|) 33) (((-52) (-1175)) 26)) (-1401 (((-52) |#2| (-295 |#2|) (-409 (-566))) 59) (((-52) |#2| (-295 |#2|)) 56) (((-52) |#2| (-409 (-566))) 58) (((-52) |#2|) 57) (((-52) (-1175)) 55)) (-2610 (((-52) |#2| (-295 |#2|) (-409 (-566))) 54) (((-52) |#2| (-295 |#2|)) 51) (((-52) |#2| (-409 (-566))) 53) (((-52) |#2|) 52) (((-52) (-1175)) 50)) (-2599 (((-52) |#2| (-295 |#2|) (-566)) 47) (((-52) |#2| (-295 |#2|)) 44) (((-52) |#2| (-566)) 46) (((-52) |#2|) 45) (((-52) (-1175)) 43)))
-(((-316 |#1| |#2|) (-10 -7 (-15 -2590 ((-52) (-1175))) (-15 -2590 ((-52) |#2|)) (-15 -2590 ((-52) |#2| (-771))) (-15 -2590 ((-52) |#2| (-295 |#2|))) (-15 -2590 ((-52) |#2| (-295 |#2|) (-771))) (-15 -2599 ((-52) (-1175))) (-15 -2599 ((-52) |#2|)) (-15 -2599 ((-52) |#2| (-566))) (-15 -2599 ((-52) |#2| (-295 |#2|))) (-15 -2599 ((-52) |#2| (-295 |#2|) (-566))) (-15 -2610 ((-52) (-1175))) (-15 -2610 ((-52) |#2|)) (-15 -2610 ((-52) |#2| (-409 (-566)))) (-15 -2610 ((-52) |#2| (-295 |#2|))) (-15 -2610 ((-52) |#2| (-295 |#2|) (-409 (-566)))) (-15 -1401 ((-52) (-1175))) (-15 -1401 ((-52) |#2|)) (-15 -1401 ((-52) |#2| (-409 (-566)))) (-15 -1401 ((-52) |#2| (-295 |#2|))) (-15 -1401 ((-52) |#2| (-295 |#2|) (-409 (-566))))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -316))
-((-1401 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-295 *3)) (-5 *5 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-1401 (*1 *2 *3 *4) (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)))) (-1401 (*1 *2 *3 *4) (-12 (-5 *4 (-409 (-566))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-1401 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-1401 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4))))) (-2610 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-295 *3)) (-5 *5 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-2610 (*1 *2 *3 *4) (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)))) (-2610 (*1 *2 *3 *4) (-12 (-5 *4 (-409 (-566))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-2610 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-2610 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4))))) (-2599 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-1038 *5) (-639 *5))) (-5 *5 (-566)) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-2599 (*1 *2 *3 *4) (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)))) (-2599 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-4 *5 (-13 (-454) (-1038 *4) (-639 *4))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-2599 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-2599 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4))))) (-2590 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-295 *3)) (-5 *5 (-771)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-2590 (*1 *2 *3 *4) (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)))) (-2590 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-2590 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-2590 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4))))))
-(-10 -7 (-15 -2590 ((-52) (-1175))) (-15 -2590 ((-52) |#2|)) (-15 -2590 ((-52) |#2| (-771))) (-15 -2590 ((-52) |#2| (-295 |#2|))) (-15 -2590 ((-52) |#2| (-295 |#2|) (-771))) (-15 -2599 ((-52) (-1175))) (-15 -2599 ((-52) |#2|)) (-15 -2599 ((-52) |#2| (-566))) (-15 -2599 ((-52) |#2| (-295 |#2|))) (-15 -2599 ((-52) |#2| (-295 |#2|) (-566))) (-15 -2610 ((-52) (-1175))) (-15 -2610 ((-52) |#2|)) (-15 -2610 ((-52) |#2| (-409 (-566)))) (-15 -2610 ((-52) |#2| (-295 |#2|))) (-15 -2610 ((-52) |#2| (-295 |#2|) (-409 (-566)))) (-15 -1401 ((-52) (-1175))) (-15 -1401 ((-52) |#2|)) (-15 -1401 ((-52) |#2| (-409 (-566)))) (-15 -1401 ((-52) |#2| (-295 |#2|))) (-15 -1401 ((-52) |#2| (-295 |#2|) (-409 (-566)))))
-((-2985 (((-112) $ $) NIL)) (-1515 (((-644 $) $ (-1175)) NIL (|has| |#1| (-558))) (((-644 $) $) NIL (|has| |#1| (-558))) (((-644 $) (-1171 $) (-1175)) NIL (|has| |#1| (-558))) (((-644 $) (-1171 $)) NIL (|has| |#1| (-558))) (((-644 $) (-952 $)) NIL (|has| |#1| (-558)))) (-3265 (($ $ (-1175)) NIL (|has| |#1| (-558))) (($ $) NIL (|has| |#1| (-558))) (($ (-1171 $) (-1175)) NIL (|has| |#1| (-558))) (($ (-1171 $)) NIL (|has| |#1| (-558))) (($ (-952 $)) NIL (|has| |#1| (-558)))) (-3958 (((-112) $) 27 (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))) (-2540 (((-644 (-1175)) $) 368)) (-2358 (((-409 (-1171 $)) $ (-612 $)) NIL (|has| |#1| (-558)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-2248 (((-644 (-612 $)) $) NIL)) (-3235 (($ $) 171 (|has| |#1| (-558)))) (-3102 (($ $) 147 (|has| |#1| (-558)))) (-3991 (($ $ (-1091 $)) 232 (|has| |#1| (-558))) (($ $ (-1175)) 228 (|has| |#1| (-558)))) (-4126 (((-3 $ "failed") $ $) NIL (-2805 (|has| |#1| (-21)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))) (-3226 (($ $ (-295 $)) NIL) (($ $ (-644 (-295 $))) 386) (($ $ (-644 (-612 $)) (-644 $)) 430)) (-2055 (((-420 (-1171 $)) (-1171 $)) 308 (-12 (|has| |#1| (-454)) (|has| |#1| (-558))))) (-2857 (($ $) NIL (|has| |#1| (-558)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-558)))) (-2402 (($ $) NIL (|has| |#1| (-558)))) (-1561 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3215 (($ $) 167 (|has| |#1| (-558)))) (-3076 (($ $) 143 (|has| |#1| (-558)))) (-4012 (($ $ (-566)) 73 (|has| |#1| (-558)))) (-3259 (($ $) 175 (|has| |#1| (-558)))) (-3123 (($ $) 151 (|has| |#1| (-558)))) (-2342 (($) NIL (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111))) CONST)) (-3844 (((-644 $) $ (-1175)) NIL (|has| |#1| (-558))) (((-644 $) $) NIL (|has| |#1| (-558))) (((-644 $) (-1171 $) (-1175)) NIL (|has| |#1| (-558))) (((-644 $) (-1171 $)) NIL (|has| |#1| (-558))) (((-644 $) (-952 $)) NIL (|has| |#1| (-558)))) (-2170 (($ $ (-1175)) NIL (|has| |#1| (-558))) (($ $) NIL (|has| |#1| (-558))) (($ (-1171 $) (-1175)) 134 (|has| |#1| (-558))) (($ (-1171 $)) NIL (|has| |#1| (-558))) (($ (-952 $)) NIL (|has| |#1| (-558)))) (-2977 (((-3 (-612 $) "failed") $) 18) (((-3 (-1175) "failed") $) NIL) (((-3 |#1| "failed") $) 441) (((-3 (-48) "failed") $) 336 (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-952 |#1|)) "failed") $) NIL (|has| |#1| (-558))) (((-3 (-952 |#1|) "failed") $) NIL (|has| |#1| (-1049))) (((-3 (-409 (-566)) "failed") $) 46 (-2805 (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-1756 (((-612 $) $) 12) (((-1175) $) NIL) ((|#1| $) 421) (((-48) $) NIL (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-952 |#1|)) $) NIL (|has| |#1| (-558))) (((-952 |#1|) $) NIL (|has| |#1| (-1049))) (((-409 (-566)) $) 319 (-2805 (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-2926 (($ $ $) NIL (|has| |#1| (-558)))) (-1628 (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 125 (|has| |#1| (-1049))) (((-689 |#1|) (-689 $)) 115 (|has| |#1| (-1049))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))))) (-4362 (($ $) 96 (|has| |#1| (-558)))) (-1579 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111))))) (-2938 (($ $ $) NIL (|has| |#1| (-558)))) (-2754 (($ $ (-1091 $)) 236 (|has| |#1| (-558))) (($ $ (-1175)) 234 (|has| |#1| (-558)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-558)))) (-2635 (((-112) $) NIL (|has| |#1| (-558)))) (-3019 (($ $ $) 202 (|has| |#1| (-558)))) (-3035 (($) 137 (|has| |#1| (-558)))) (-3870 (($ $ $) 222 (|has| |#1| (-558)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 392 (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 399 (|has| |#1| (-886 (-381))))) (-4334 (($ $) NIL) (($ (-644 $)) NIL)) (-3674 (((-644 (-114)) $) NIL)) (-2336 (((-114) (-114)) 276)) (-2741 (((-112) $) 25 (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111))))) (-2884 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2861 (($ $) 72 (|has| |#1| (-1049)))) (-3001 (((-1124 |#1| (-612 $)) $) 91 (|has| |#1| (-1049)))) (-2682 (((-112) $) 62 (|has| |#1| (-558)))) (-3979 (($ $ (-566)) NIL (|has| |#1| (-558)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-558)))) (-2734 (((-1171 $) (-612 $)) 277 (|has| $ (-1049)))) (-3077 (($ (-1 $ $) (-612 $)) 426)) (-2230 (((-3 (-612 $) "failed") $) NIL)) (-3668 (($ $) 141 (|has| |#1| (-558)))) (-3396 (($ $) 247 (|has| |#1| (-558)))) (-2184 (($ (-644 $)) NIL (|has| |#1| (-558))) (($ $ $) NIL (|has| |#1| (-558)))) (-2878 (((-1157) $) NIL)) (-2322 (((-644 (-612 $)) $) 49)) (-3083 (($ (-114) $) NIL) (($ (-114) (-644 $)) 431)) (-2692 (((-3 (-644 $) "failed") $) NIL (|has| |#1| (-1111)))) (-3658 (((-3 (-2 (|:| |val| $) (|:| -3250 (-566))) "failed") $) NIL (|has| |#1| (-1049)))) (-1853 (((-3 (-644 $) "failed") $) 436 (|has| |#1| (-25)))) (-2113 (((-3 (-2 (|:| -3157 (-566)) (|:| |var| (-612 $))) "failed") $) 440 (|has| |#1| (-25)))) (-3285 (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $) NIL (|has| |#1| (-1111))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $ (-114)) NIL (|has| |#1| (-1049))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $ (-1175)) NIL (|has| |#1| (-1049)))) (-2181 (((-112) $ (-114)) NIL) (((-112) $ (-1175)) 51)) (-2626 (($ $) NIL (-2805 (|has| |#1| (-475)) (|has| |#1| (-558))))) (-2669 (($ $ (-1175)) 251 (|has| |#1| (-558))) (($ $ (-1091 $)) 253 (|has| |#1| (-558)))) (-3173 (((-771) $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) 43)) (-3531 ((|#1| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 301 (|has| |#1| (-558)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-558))) (($ $ $) NIL (|has| |#1| (-558)))) (-1981 (((-112) $ $) NIL) (((-112) $ (-1175)) NIL)) (-2515 (($ $ (-1175)) 226 (|has| |#1| (-558))) (($ $) 224 (|has| |#1| (-558)))) (-3280 (($ $) 218 (|has| |#1| (-558)))) (-4138 (((-420 (-1171 $)) (-1171 $)) 306 (-12 (|has| |#1| (-454)) (|has| |#1| (-558))))) (-2391 (((-420 $) $) NIL (|has| |#1| (-558)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-558))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-558)))) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-558)))) (-3613 (($ $) 139 (|has| |#1| (-558)))) (-1693 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2070 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) 425) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-1175) (-1 $ (-644 $))) NIL) (($ $ (-1175) (-1 $ $)) NIL) (($ $ (-644 (-114)) (-644 (-1 $ $))) 379) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-114) (-1 $ (-644 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1175)) NIL (|has| |#1| (-614 (-538)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-614 (-538)))) (($ $) NIL (|has| |#1| (-614 (-538)))) (($ $ (-114) $ (-1175)) 366 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-114)) (-644 $) (-1175)) 365 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ $))) NIL (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ (-644 $)))) NIL (|has| |#1| (-1049))) (($ $ (-1175) (-771) (-1 $ (-644 $))) NIL (|has| |#1| (-1049))) (($ $ (-1175) (-771) (-1 $ $)) NIL (|has| |#1| (-1049)))) (-1813 (((-771) $) NIL (|has| |#1| (-558)))) (-3026 (($ $) 239 (|has| |#1| (-558)))) (-4386 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-644 $)) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-558)))) (-2811 (($ $) NIL) (($ $ $) NIL)) (-3064 (($ $) 249 (|has| |#1| (-558)))) (-1748 (($ $) 200 (|has| |#1| (-558)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-1049))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-1049))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-1049))) (($ $ (-1175)) NIL (|has| |#1| (-1049)))) (-3413 (($ $) 74 (|has| |#1| (-558)))) (-3013 (((-1124 |#1| (-612 $)) $) 93 (|has| |#1| (-558)))) (-2127 (($ $) 317 (|has| $ (-1049)))) (-3267 (($ $) 177 (|has| |#1| (-558)))) (-3133 (($ $) 153 (|has| |#1| (-558)))) (-3248 (($ $) 173 (|has| |#1| (-558)))) (-3112 (($ $) 149 (|has| |#1| (-558)))) (-3223 (($ $) 169 (|has| |#1| (-558)))) (-3089 (($ $) 145 (|has| |#1| (-558)))) (-3134 (((-892 (-566)) $) NIL (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| |#1| (-614 (-892 (-381))))) (($ (-420 $)) NIL (|has| |#1| (-558))) (((-538) $) 363 (|has| |#1| (-614 (-538))))) (-2032 (($ $ $) NIL (|has| |#1| (-475)))) (-3755 (($ $ $) NIL (|has| |#1| (-475)))) (-2512 (((-862) $) 424) (($ (-612 $)) 415) (($ (-1175)) 381) (($ |#1|) 337) (($ $) NIL (|has| |#1| (-558))) (($ (-48)) 312 (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566))))) (($ (-1124 |#1| (-612 $))) 95 (|has| |#1| (-1049))) (($ (-409 |#1|)) NIL (|has| |#1| (-558))) (($ (-952 (-409 |#1|))) NIL (|has| |#1| (-558))) (($ (-409 (-952 (-409 |#1|)))) NIL (|has| |#1| (-558))) (($ (-409 (-952 |#1|))) NIL (|has| |#1| (-558))) (($ (-952 |#1|)) NIL (|has| |#1| (-1049))) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-558)) (|has| |#1| (-1038 (-409 (-566)))))) (($ (-566)) 34 (-2805 (|has| |#1| (-1038 (-566))) (|has| |#1| (-1049))))) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL (|has| |#1| (-1049)) CONST)) (-3236 (($ $) NIL) (($ (-644 $)) NIL)) (-1523 (($ $ $) 220 (|has| |#1| (-558)))) (-3151 (($ $ $) 206 (|has| |#1| (-558)))) (-4347 (($ $ $) 210 (|has| |#1| (-558)))) (-2649 (($ $ $) 204 (|has| |#1| (-558)))) (-2075 (($ $ $) 208 (|has| |#1| (-558)))) (-2306 (((-112) (-114)) 10)) (-3122 (((-112) $ $) 86)) (-3302 (($ $) 183 (|has| |#1| (-558)))) (-3172 (($ $) 159 (|has| |#1| (-558)))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) 179 (|has| |#1| (-558)))) (-3146 (($ $) 155 (|has| |#1| (-558)))) (-3323 (($ $) 187 (|has| |#1| (-558)))) (-3194 (($ $) 163 (|has| |#1| (-558)))) (-3357 (($ (-1175) $) NIL) (($ (-1175) $ $) NIL) (($ (-1175) $ $ $) NIL) (($ (-1175) $ $ $ $) NIL) (($ (-1175) (-644 $)) NIL)) (-2223 (($ $) 214 (|has| |#1| (-558)))) (-2134 (($ $) 212 (|has| |#1| (-558)))) (-1382 (($ $) 189 (|has| |#1| (-558)))) (-3205 (($ $) 165 (|has| |#1| (-558)))) (-3313 (($ $) 185 (|has| |#1| (-558)))) (-3185 (($ $) 161 (|has| |#1| (-558)))) (-3291 (($ $) 181 (|has| |#1| (-558)))) (-3160 (($ $) 157 (|has| |#1| (-558)))) (-1346 (($ $) 192 (|has| |#1| (-558)))) (-2485 (($) 21 (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))) CONST)) (-3564 (($ $) 243 (|has| |#1| (-558)))) (-2495 (($) 23 (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111))) CONST)) (-3090 (($ $) 194 (|has| |#1| (-558))) (($ $ $) 196 (|has| |#1| (-558)))) (-3120 (($ $) 241 (|has| |#1| (-558)))) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-1049))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-1049))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-1049))) (($ $ (-1175)) NIL (|has| |#1| (-1049)))) (-2895 (($ $) 245 (|has| |#1| (-558)))) (-3193 (($ $ $) 198 (|has| |#1| (-558)))) (-2940 (((-112) $ $) 88)) (-3061 (($ (-1124 |#1| (-612 $)) (-1124 |#1| (-612 $))) 106 (|has| |#1| (-558))) (($ $ $) 42 (-2805 (|has| |#1| (-475)) (|has| |#1| (-558))))) (-3047 (($ $ $) 40 (-2805 (|has| |#1| (-21)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))))) (($ $) 29 (-2805 (|has| |#1| (-21)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))) (-3034 (($ $ $) 38 (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))) (** (($ $ $) 64 (|has| |#1| (-558))) (($ $ (-409 (-566))) 314 (|has| |#1| (-558))) (($ $ (-566)) 80 (-2805 (|has| |#1| (-475)) (|has| |#1| (-558)))) (($ $ (-771)) 75 (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111)))) (($ $ (-921)) 84 (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111))))) (* (($ (-409 (-566)) $) NIL (|has| |#1| (-558))) (($ $ (-409 (-566))) NIL (|has| |#1| (-558))) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172))) (($ $ $) 36 (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111)))) (($ (-566) $) 32 (-2805 (|has| |#1| (-21)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))))) (($ (-771) $) NIL (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))))) (($ (-921) $) NIL (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))))
-(((-317 |#1|) (-13 (-432 |#1|) (-10 -8 (IF (|has| |#1| (-558)) (PROGN (-6 (-29 |#1|)) (-6 (-1199)) (-6 (-160)) (-6 (-629)) (-6 (-1138)) (-15 -4362 ($ $)) (-15 -2682 ((-112) $)) (-15 -4012 ($ $ (-566))) (IF (|has| |#1| (-454)) (PROGN (-15 -4138 ((-420 (-1171 $)) (-1171 $))) (-15 -2055 ((-420 (-1171 $)) (-1171 $)))) |%noBranch|) (IF (|has| |#1| (-1038 (-566))) (-6 (-1038 (-48))) |%noBranch|)) |%noBranch|))) (-1099)) (T -317))
-((-4362 (*1 *1 *1) (-12 (-5 *1 (-317 *2)) (-4 *2 (-558)) (-4 *2 (-1099)))) (-2682 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-317 *3)) (-4 *3 (-558)) (-4 *3 (-1099)))) (-4012 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-317 *3)) (-4 *3 (-558)) (-4 *3 (-1099)))) (-4138 (*1 *2 *3) (-12 (-5 *2 (-420 (-1171 *1))) (-5 *1 (-317 *4)) (-5 *3 (-1171 *1)) (-4 *4 (-454)) (-4 *4 (-558)) (-4 *4 (-1099)))) (-2055 (*1 *2 *3) (-12 (-5 *2 (-420 (-1171 *1))) (-5 *1 (-317 *4)) (-5 *3 (-1171 *1)) (-4 *4 (-454)) (-4 *4 (-558)) (-4 *4 (-1099)))))
-(-13 (-432 |#1|) (-10 -8 (IF (|has| |#1| (-558)) (PROGN (-6 (-29 |#1|)) (-6 (-1199)) (-6 (-160)) (-6 (-629)) (-6 (-1138)) (-15 -4362 ($ $)) (-15 -2682 ((-112) $)) (-15 -4012 ($ $ (-566))) (IF (|has| |#1| (-454)) (PROGN (-15 -4138 ((-420 (-1171 $)) (-1171 $))) (-15 -2055 ((-420 (-1171 $)) (-1171 $)))) |%noBranch|) (IF (|has| |#1| (-1038 (-566))) (-6 (-1038 (-48))) |%noBranch|)) |%noBranch|)))
-((-2797 (((-52) |#2| (-114) (-295 |#2|) (-644 |#2|)) 89) (((-52) |#2| (-114) (-295 |#2|) (-295 |#2|)) 85) (((-52) |#2| (-114) (-295 |#2|) |#2|) 87) (((-52) (-295 |#2|) (-114) (-295 |#2|) |#2|) 88) (((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|))) 81) (((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 |#2|)) 83) (((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 |#2|)) 84) (((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|))) 82) (((-52) (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|)) 90) (((-52) (-295 |#2|) (-114) (-295 |#2|) (-295 |#2|)) 86)))
-(((-318 |#1| |#2|) (-10 -7 (-15 -2797 ((-52) (-295 |#2|) (-114) (-295 |#2|) (-295 |#2|))) (-15 -2797 ((-52) (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|))) (-15 -2797 ((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|)))) (-15 -2797 ((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 |#2|))) (-15 -2797 ((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 |#2|))) (-15 -2797 ((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|)))) (-15 -2797 ((-52) (-295 |#2|) (-114) (-295 |#2|) |#2|)) (-15 -2797 ((-52) |#2| (-114) (-295 |#2|) |#2|)) (-15 -2797 ((-52) |#2| (-114) (-295 |#2|) (-295 |#2|))) (-15 -2797 ((-52) |#2| (-114) (-295 |#2|) (-644 |#2|)))) (-13 (-558) (-614 (-538))) (-432 |#1|)) (T -318))
-((-2797 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-114)) (-5 *5 (-295 *3)) (-5 *6 (-644 *3)) (-4 *3 (-432 *7)) (-4 *7 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *7 *3)))) (-2797 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-114)) (-5 *5 (-295 *3)) (-4 *3 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *3)))) (-2797 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-114)) (-5 *5 (-295 *3)) (-4 *3 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *3)))) (-2797 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-295 *5)) (-5 *4 (-114)) (-4 *5 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *5)))) (-2797 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 (-114))) (-5 *6 (-644 (-295 *8))) (-4 *8 (-432 *7)) (-5 *5 (-295 *8)) (-4 *7 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *7 *8)))) (-2797 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-644 *7)) (-5 *4 (-644 (-114))) (-5 *5 (-295 *7)) (-4 *7 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *7)))) (-2797 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-644 (-295 *8))) (-5 *4 (-644 (-114))) (-5 *5 (-295 *8)) (-5 *6 (-644 *8)) (-4 *8 (-432 *7)) (-4 *7 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *7 *8)))) (-2797 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-644 (-295 *7))) (-5 *4 (-644 (-114))) (-5 *5 (-295 *7)) (-4 *7 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *7)))) (-2797 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-295 *7)) (-5 *4 (-114)) (-5 *5 (-644 *7)) (-4 *7 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *7)))) (-2797 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-295 *6)) (-5 *4 (-114)) (-4 *6 (-432 *5)) (-4 *5 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *5 *6)))))
-(-10 -7 (-15 -2797 ((-52) (-295 |#2|) (-114) (-295 |#2|) (-295 |#2|))) (-15 -2797 ((-52) (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|))) (-15 -2797 ((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|)))) (-15 -2797 ((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 |#2|))) (-15 -2797 ((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 |#2|))) (-15 -2797 ((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|)))) (-15 -2797 ((-52) (-295 |#2|) (-114) (-295 |#2|) |#2|)) (-15 -2797 ((-52) |#2| (-114) (-295 |#2|) |#2|)) (-15 -2797 ((-52) |#2| (-114) (-295 |#2|) (-295 |#2|))) (-15 -2797 ((-52) |#2| (-114) (-295 |#2|) (-644 |#2|))))
-((-4273 (((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566) (-1157)) 67) (((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566)) 68) (((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566) (-1157)) 64) (((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566)) 65)) (-1826 (((-1 (-225) (-225)) (-225)) 66)))
-(((-319) (-10 -7 (-15 -1826 ((-1 (-225) (-225)) (-225))) (-15 -4273 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566))) (-15 -4273 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566) (-1157))) (-15 -4273 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566))) (-15 -4273 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566) (-1157))))) (T -319))
-((-4273 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1093 (-225))) (-5 *6 (-225)) (-5 *7 (-566)) (-5 *8 (-1157)) (-5 *2 (-1209 (-926))) (-5 *1 (-319)))) (-4273 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1093 (-225))) (-5 *6 (-225)) (-5 *7 (-566)) (-5 *2 (-1209 (-926))) (-5 *1 (-319)))) (-4273 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1093 (-225))) (-5 *6 (-566)) (-5 *7 (-1157)) (-5 *2 (-1209 (-926))) (-5 *1 (-319)))) (-4273 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1093 (-225))) (-5 *6 (-566)) (-5 *2 (-1209 (-926))) (-5 *1 (-319)))) (-1826 (*1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-319)) (-5 *3 (-225)))))
-(-10 -7 (-15 -1826 ((-1 (-225) (-225)) (-225))) (-15 -4273 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566))) (-15 -4273 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566) (-1157))) (-15 -4273 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566))) (-15 -4273 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566) (-1157))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 26)) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-1881 (($ $ (-409 (-566))) NIL) (($ $ (-409 (-566)) (-409 (-566))) NIL)) (-1530 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) 20)) (-3235 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL (|has| |#1| (-365)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-3215 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) NIL)) (-3259 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) 36)) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2635 (((-112) $) NIL (|has| |#1| (-365)))) (-4039 (((-112) $) NIL)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-409 (-566)) $) NIL) (((-409 (-566)) $ (-409 (-566))) 16)) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3432 (($ $ (-921)) NIL) (($ $ (-409 (-566))) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-409 (-566))) NIL) (($ $ (-1081) (-409 (-566))) NIL) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3668 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| |#1| (-365)))) (-4117 (($ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199)))))) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-1938 (($ $ (-409 (-566))) NIL)) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3797 (((-409 (-566)) $) 17)) (-1887 (($ (-1249 |#1| |#2| |#3|)) 11)) (-3250 (((-1249 |#1| |#2| |#3|) $) 12)) (-3613 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ (-409 (-566))) NIL) (($ $ $) NIL (|has| (-409 (-566)) (-1111)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-3992 (((-409 (-566)) $) NIL)) (-3267 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) 10)) (-2512 (((-862) $) 42) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-2022 ((|#1| $ (-409 (-566))) 34)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-2420 ((|#1| $) NIL)) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-409 (-566))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 28)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 37)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-320 |#1| |#2| |#3|) (-13 (-1245 |#1|) (-792) (-10 -8 (-15 -1887 ($ (-1249 |#1| |#2| |#3|))) (-15 -3250 ((-1249 |#1| |#2| |#3|) $)) (-15 -3797 ((-409 (-566)) $)))) (-365) (-1175) |#1|) (T -320))
-((-1887 (*1 *1 *2) (-12 (-5 *2 (-1249 *3 *4 *5)) (-4 *3 (-365)) (-14 *4 (-1175)) (-14 *5 *3) (-5 *1 (-320 *3 *4 *5)))) (-3250 (*1 *2 *1) (-12 (-5 *2 (-1249 *3 *4 *5)) (-5 *1 (-320 *3 *4 *5)) (-4 *3 (-365)) (-14 *4 (-1175)) (-14 *5 *3))) (-3797 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-320 *3 *4 *5)) (-4 *3 (-365)) (-14 *4 (-1175)) (-14 *5 *3))))
-(-13 (-1245 |#1|) (-792) (-10 -8 (-15 -1887 ($ (-1249 |#1| |#2| |#3|))) (-15 -3250 ((-1249 |#1| |#2| |#3|) $)) (-15 -3797 ((-409 (-566)) $))))
-((-3979 (((-2 (|:| -3250 (-771)) (|:| -3157 |#1|) (|:| |radicand| (-644 |#1|))) (-420 |#1|) (-771)) 35)) (-3668 (((-644 (-2 (|:| -3157 (-771)) (|:| |logand| |#1|))) (-420 |#1|)) 40)))
-(((-321 |#1|) (-10 -7 (-15 -3979 ((-2 (|:| -3250 (-771)) (|:| -3157 |#1|) (|:| |radicand| (-644 |#1|))) (-420 |#1|) (-771))) (-15 -3668 ((-644 (-2 (|:| -3157 (-771)) (|:| |logand| |#1|))) (-420 |#1|)))) (-558)) (T -321))
-((-3668 (*1 *2 *3) (-12 (-5 *3 (-420 *4)) (-4 *4 (-558)) (-5 *2 (-644 (-2 (|:| -3157 (-771)) (|:| |logand| *4)))) (-5 *1 (-321 *4)))) (-3979 (*1 *2 *3 *4) (-12 (-5 *3 (-420 *5)) (-4 *5 (-558)) (-5 *2 (-2 (|:| -3250 (-771)) (|:| -3157 *5) (|:| |radicand| (-644 *5)))) (-5 *1 (-321 *5)) (-5 *4 (-771)))))
-(-10 -7 (-15 -3979 ((-2 (|:| -3250 (-771)) (|:| -3157 |#1|) (|:| |radicand| (-644 |#1|))) (-420 |#1|) (-771))) (-15 -3668 ((-644 (-2 (|:| -3157 (-771)) (|:| |logand| |#1|))) (-420 |#1|))))
-((-2540 (((-644 |#2|) (-1171 |#4|)) 44)) (-4029 ((|#3| (-566)) 47)) (-3743 (((-1171 |#4|) (-1171 |#3|)) 30)) (-3721 (((-1171 |#4|) (-1171 |#4|) (-566)) 66)) (-2765 (((-1171 |#3|) (-1171 |#4|)) 21)) (-3992 (((-644 (-771)) (-1171 |#4|) (-644 |#2|)) 41)) (-2643 (((-1171 |#3|) (-1171 |#4|) (-644 |#2|) (-644 |#3|)) 35)))
-(((-322 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2643 ((-1171 |#3|) (-1171 |#4|) (-644 |#2|) (-644 |#3|))) (-15 -3992 ((-644 (-771)) (-1171 |#4|) (-644 |#2|))) (-15 -2540 ((-644 |#2|) (-1171 |#4|))) (-15 -2765 ((-1171 |#3|) (-1171 |#4|))) (-15 -3743 ((-1171 |#4|) (-1171 |#3|))) (-15 -3721 ((-1171 |#4|) (-1171 |#4|) (-566))) (-15 -4029 (|#3| (-566)))) (-793) (-850) (-1049) (-949 |#3| |#1| |#2|)) (T -322))
-((-4029 (*1 *2 *3) (-12 (-5 *3 (-566)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1049)) (-5 *1 (-322 *4 *5 *2 *6)) (-4 *6 (-949 *2 *4 *5)))) (-3721 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 *7)) (-5 *3 (-566)) (-4 *7 (-949 *6 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-5 *1 (-322 *4 *5 *6 *7)))) (-3743 (*1 *2 *3) (-12 (-5 *3 (-1171 *6)) (-4 *6 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-1171 *7)) (-5 *1 (-322 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))) (-2765 (*1 *2 *3) (-12 (-5 *3 (-1171 *7)) (-4 *7 (-949 *6 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-5 *2 (-1171 *6)) (-5 *1 (-322 *4 *5 *6 *7)))) (-2540 (*1 *2 *3) (-12 (-5 *3 (-1171 *7)) (-4 *7 (-949 *6 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-5 *2 (-644 *5)) (-5 *1 (-322 *4 *5 *6 *7)))) (-3992 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *8)) (-5 *4 (-644 *6)) (-4 *6 (-850)) (-4 *8 (-949 *7 *5 *6)) (-4 *5 (-793)) (-4 *7 (-1049)) (-5 *2 (-644 (-771))) (-5 *1 (-322 *5 *6 *7 *8)))) (-2643 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-5 *5 (-644 *8)) (-4 *7 (-850)) (-4 *8 (-1049)) (-4 *9 (-949 *8 *6 *7)) (-4 *6 (-793)) (-5 *2 (-1171 *8)) (-5 *1 (-322 *6 *7 *8 *9)))))
-(-10 -7 (-15 -2643 ((-1171 |#3|) (-1171 |#4|) (-644 |#2|) (-644 |#3|))) (-15 -3992 ((-644 (-771)) (-1171 |#4|) (-644 |#2|))) (-15 -2540 ((-644 |#2|) (-1171 |#4|))) (-15 -2765 ((-1171 |#3|) (-1171 |#4|))) (-15 -3743 ((-1171 |#4|) (-1171 |#3|))) (-15 -3721 ((-1171 |#4|) (-1171 |#4|) (-566))) (-15 -4029 (|#3| (-566))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 19)) (-1530 (((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-566)))) $) 21)) (-4126 (((-3 $ "failed") $ $) NIL)) (-4025 (((-771) $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-2647 ((|#1| $ (-566)) NIL)) (-1860 (((-566) $ (-566)) NIL)) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-4105 (($ (-1 |#1| |#1|) $) NIL)) (-4364 (($ (-1 (-566) (-566)) $) 11)) (-2878 (((-1157) $) NIL)) (-3054 (($ $ $) NIL (|has| (-566) (-792)))) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL) (($ |#1|) NIL)) (-2022 (((-566) |#1| $) NIL)) (-3122 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) 29 (|has| |#1| (-850)))) (-3047 (($ $) 12) (($ $ $) 28)) (-3034 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ (-566)) NIL) (($ (-566) |#1|) 27)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 60)) (-2486 (((-1250 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-308)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-909)))) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-909)))) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-820)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-1250 |#1| |#2| |#3| |#4|) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-566)))) (((-3 (-1249 |#2| |#3| |#4|) "failed") $) 26)) (-1867 (((-1250 |#1| |#2| |#3| |#4|) $) NIL) (((-1175) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-566)))) (((-566) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-566)))) (((-1249 |#2| |#3| |#4|) $) NIL)) (-2949 (($ $ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-1250 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1264 (-1250 |#1| |#2| |#3| |#4|)))) (-689 $) (-1264 $)) NIL) (((-689 (-1250 |#1| |#2| |#3| |#4|)) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-547)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1533 (((-112) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-820)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-886 (-381))))) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL)) (-3088 (((-1250 |#1| |#2| |#3| |#4|) $) 22)) (-2133 (((-3 $ "failed") $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1150)))) (-2917 (((-112) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-820)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-2709 (($ $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-3152 (($ (-1 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|)) $) NIL)) (-3467 (((-3 (-843 |#2|) "failed") $) 80)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-308)))) (-2209 (((-1250 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-547)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-909)))) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2095 (($ $ (-644 (-1250 |#1| |#2| |#3| |#4|)) (-644 (-1250 |#1| |#2| |#3| |#4|))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-310 (-1250 |#1| |#2| |#3| |#4|)))) (($ $ (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-310 (-1250 |#1| |#2| |#3| |#4|)))) (($ $ (-295 (-1250 |#1| |#2| |#3| |#4|))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-310 (-1250 |#1| |#2| |#3| |#4|)))) (($ $ (-644 (-295 (-1250 |#1| |#2| |#3| |#4|)))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-310 (-1250 |#1| |#2| |#3| |#4|)))) (($ $ (-644 (-1175)) (-644 (-1250 |#1| |#2| |#3| |#4|))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-516 (-1175) (-1250 |#1| |#2| |#3| |#4|)))) (($ $ (-1175) (-1250 |#1| |#2| |#3| |#4|)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-516 (-1175) (-1250 |#1| |#2| |#3| |#4|))))) (-3470 (((-771) $) NIL)) (-4393 (($ $ (-1250 |#1| |#2| |#3| |#4|)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-287 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-771)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-1175)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-1 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|)) (-771)) NIL) (($ $ (-1 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|))) NIL)) (-1431 (($ $) NIL)) (-3100 (((-1250 |#1| |#2| |#3| |#4|) $) 19)) (-3204 (((-892 (-566)) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-614 (-538)))) (((-381) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1022))) (((-225) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1022)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-1250 |#1| |#2| |#3| |#4|) (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-1250 |#1| |#2| |#3| |#4|)) 30) (($ (-1175)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-1038 (-1175)))) (($ (-1249 |#2| |#3| |#4|)) 37)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-1250 |#1| |#2| |#3| |#4|) (-909))) (|has| (-1250 |#1| |#2| |#3| |#4|) (-145))))) (-3996 (((-771)) NIL T CONST)) (-1982 (((-1250 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-547)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3333 (($ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-820)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-771)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-233))) (($ $ (-1175)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-900 (-1175)))) (($ $ (-1 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|)) (-771)) NIL) (($ $ (-1 (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|))) NIL)) (-3010 (((-112) $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-2972 (((-112) $ $) NIL (|has| (-1250 |#1| |#2| |#3| |#4|) (-850)))) (-3062 (($ $ $) 35) (($ (-1250 |#1| |#2| |#3| |#4|) (-1250 |#1| |#2| |#3| |#4|)) 32)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-1250 |#1| |#2| |#3| |#4|) $) 31) (($ $ (-1250 |#1| |#2| |#3| |#4|)) NIL)))
+(((-314 |#1| |#2| |#3| |#4|) (-13 (-992 (-1250 |#1| |#2| |#3| |#4|)) (-1038 (-1249 |#2| |#3| |#4|)) (-10 -8 (-15 -3467 ((-3 (-843 |#2|) "failed") $)) (-15 -3780 ($ (-1249 |#2| |#3| |#4|))))) (-13 (-1038 (-566)) (-639 (-566)) (-454)) (-13 (-27) (-1199) (-432 |#1|)) (-1175) |#2|) (T -314))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1249 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175)) (-14 *6 *4) (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454))) (-5 *1 (-314 *3 *4 *5 *6)))) (-3467 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454))) (-5 *2 (-843 *4)) (-5 *1 (-314 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175)) (-14 *6 *4))))
+(-13 (-992 (-1250 |#1| |#2| |#3| |#4|)) (-1038 (-1249 |#2| |#3| |#4|)) (-10 -8 (-15 -3467 ((-3 (-843 |#2|) "failed") $)) (-15 -3780 ($ (-1249 |#2| |#3| |#4|)))))
+((-3152 (((-317 |#2|) (-1 |#2| |#1|) (-317 |#1|)) 13)))
+(((-315 |#1| |#2|) (-10 -7 (-15 -3152 ((-317 |#2|) (-1 |#2| |#1|) (-317 |#1|)))) (-1099) (-1099)) (T -315))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-317 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-317 *6)) (-5 *1 (-315 *5 *6)))))
+(-10 -7 (-15 -3152 ((-317 |#2|) (-1 |#2| |#1|) (-317 |#1|))))
+((-3543 (((-52) |#2| (-295 |#2|) (-771)) 40) (((-52) |#2| (-295 |#2|)) 32) (((-52) |#2| (-771)) 35) (((-52) |#2|) 33) (((-52) (-1175)) 26)) (-1903 (((-52) |#2| (-295 |#2|) (-409 (-566))) 59) (((-52) |#2| (-295 |#2|)) 56) (((-52) |#2| (-409 (-566))) 58) (((-52) |#2|) 57) (((-52) (-1175)) 55)) (-3562 (((-52) |#2| (-295 |#2|) (-409 (-566))) 54) (((-52) |#2| (-295 |#2|)) 51) (((-52) |#2| (-409 (-566))) 53) (((-52) |#2|) 52) (((-52) (-1175)) 50)) (-3553 (((-52) |#2| (-295 |#2|) (-566)) 47) (((-52) |#2| (-295 |#2|)) 44) (((-52) |#2| (-566)) 46) (((-52) |#2|) 45) (((-52) (-1175)) 43)))
+(((-316 |#1| |#2|) (-10 -7 (-15 -3543 ((-52) (-1175))) (-15 -3543 ((-52) |#2|)) (-15 -3543 ((-52) |#2| (-771))) (-15 -3543 ((-52) |#2| (-295 |#2|))) (-15 -3543 ((-52) |#2| (-295 |#2|) (-771))) (-15 -3553 ((-52) (-1175))) (-15 -3553 ((-52) |#2|)) (-15 -3553 ((-52) |#2| (-566))) (-15 -3553 ((-52) |#2| (-295 |#2|))) (-15 -3553 ((-52) |#2| (-295 |#2|) (-566))) (-15 -3562 ((-52) (-1175))) (-15 -3562 ((-52) |#2|)) (-15 -3562 ((-52) |#2| (-409 (-566)))) (-15 -3562 ((-52) |#2| (-295 |#2|))) (-15 -3562 ((-52) |#2| (-295 |#2|) (-409 (-566)))) (-15 -1903 ((-52) (-1175))) (-15 -1903 ((-52) |#2|)) (-15 -1903 ((-52) |#2| (-409 (-566)))) (-15 -1903 ((-52) |#2| (-295 |#2|))) (-15 -1903 ((-52) |#2| (-295 |#2|) (-409 (-566))))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -316))
+((-1903 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-295 *3)) (-5 *5 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-1903 (*1 *2 *3 *4) (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)))) (-1903 (*1 *2 *3 *4) (-12 (-5 *4 (-409 (-566))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-1903 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-1903 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4))))) (-3562 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-295 *3)) (-5 *5 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-3562 (*1 *2 *3 *4) (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)))) (-3562 (*1 *2 *3 *4) (-12 (-5 *4 (-409 (-566))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-3562 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-3562 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4))))) (-3553 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-1038 *5) (-639 *5))) (-5 *5 (-566)) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-3553 (*1 *2 *3 *4) (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)))) (-3553 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-4 *5 (-13 (-454) (-1038 *4) (-639 *4))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-3553 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-3553 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4))))) (-3543 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-295 *3)) (-5 *5 (-771)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *6 *3)))) (-3543 (*1 *2 *3 *4) (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)))) (-3543 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-3543 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-3543 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4))))))
+(-10 -7 (-15 -3543 ((-52) (-1175))) (-15 -3543 ((-52) |#2|)) (-15 -3543 ((-52) |#2| (-771))) (-15 -3543 ((-52) |#2| (-295 |#2|))) (-15 -3543 ((-52) |#2| (-295 |#2|) (-771))) (-15 -3553 ((-52) (-1175))) (-15 -3553 ((-52) |#2|)) (-15 -3553 ((-52) |#2| (-566))) (-15 -3553 ((-52) |#2| (-295 |#2|))) (-15 -3553 ((-52) |#2| (-295 |#2|) (-566))) (-15 -3562 ((-52) (-1175))) (-15 -3562 ((-52) |#2|)) (-15 -3562 ((-52) |#2| (-409 (-566)))) (-15 -3562 ((-52) |#2| (-295 |#2|))) (-15 -3562 ((-52) |#2| (-295 |#2|) (-409 (-566)))) (-15 -1903 ((-52) (-1175))) (-15 -1903 ((-52) |#2|)) (-15 -1903 ((-52) |#2| (-409 (-566)))) (-15 -1903 ((-52) |#2| (-295 |#2|))) (-15 -1903 ((-52) |#2| (-295 |#2|) (-409 (-566)))))
+((-3009 (((-112) $ $) NIL)) (-3508 (((-644 $) $ (-1175)) NIL (|has| |#1| (-558))) (((-644 $) $) NIL (|has| |#1| (-558))) (((-644 $) (-1171 $) (-1175)) NIL (|has| |#1| (-558))) (((-644 $) (-1171 $)) NIL (|has| |#1| (-558))) (((-644 $) (-952 $)) NIL (|has| |#1| (-558)))) (-2601 (($ $ (-1175)) NIL (|has| |#1| (-558))) (($ $) NIL (|has| |#1| (-558))) (($ (-1171 $) (-1175)) NIL (|has| |#1| (-558))) (($ (-1171 $)) NIL (|has| |#1| (-558))) (($ (-952 $)) NIL (|has| |#1| (-558)))) (-3015 (((-112) $) 27 (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))) (-2608 (((-644 (-1175)) $) 368)) (-2438 (((-409 (-1171 $)) $ (-612 $)) NIL (|has| |#1| (-558)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2327 (((-644 (-612 $)) $) NIL)) (-2865 (($ $) 171 (|has| |#1| (-558)))) (-3939 (($ $) 147 (|has| |#1| (-558)))) (-2098 (($ $ (-1091 $)) 232 (|has| |#1| (-558))) (($ $ (-1175)) 228 (|has| |#1| (-558)))) (-4014 (((-3 $ "failed") $ $) NIL (-2805 (|has| |#1| (-21)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))) (-2463 (($ $ (-295 $)) NIL) (($ $ (-644 (-295 $))) 386) (($ $ (-644 (-612 $)) (-644 $)) 430)) (-4077 (((-420 (-1171 $)) (-1171 $)) 308 (-12 (|has| |#1| (-454)) (|has| |#1| (-558))))) (-2179 (($ $) NIL (|has| |#1| (-558)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-558)))) (-2484 (($ $) NIL (|has| |#1| (-558)))) (-2738 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2843 (($ $) 167 (|has| |#1| (-558)))) (-3915 (($ $) 143 (|has| |#1| (-558)))) (-2291 (($ $ (-566)) 73 (|has| |#1| (-558)))) (-2888 (($ $) 175 (|has| |#1| (-558)))) (-3964 (($ $) 151 (|has| |#1| (-558)))) (-3877 (($) NIL (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111))) CONST)) (-3246 (((-644 $) $ (-1175)) NIL (|has| |#1| (-558))) (((-644 $) $) NIL (|has| |#1| (-558))) (((-644 $) (-1171 $) (-1175)) NIL (|has| |#1| (-558))) (((-644 $) (-1171 $)) NIL (|has| |#1| (-558))) (((-644 $) (-952 $)) NIL (|has| |#1| (-558)))) (-2778 (($ $ (-1175)) NIL (|has| |#1| (-558))) (($ $) NIL (|has| |#1| (-558))) (($ (-1171 $) (-1175)) 134 (|has| |#1| (-558))) (($ (-1171 $)) NIL (|has| |#1| (-558))) (($ (-952 $)) NIL (|has| |#1| (-558)))) (-3066 (((-3 (-612 $) "failed") $) 18) (((-3 (-1175) "failed") $) NIL) (((-3 |#1| "failed") $) 441) (((-3 (-48) "failed") $) 336 (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-952 |#1|)) "failed") $) NIL (|has| |#1| (-558))) (((-3 (-952 |#1|) "failed") $) NIL (|has| |#1| (-1049))) (((-3 (-409 (-566)) "failed") $) 46 (-2805 (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-1867 (((-612 $) $) 12) (((-1175) $) NIL) ((|#1| $) 421) (((-48) $) NIL (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-952 |#1|)) $) NIL (|has| |#1| (-558))) (((-952 |#1|) $) NIL (|has| |#1| (-1049))) (((-409 (-566)) $) 319 (-2805 (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-2949 (($ $ $) NIL (|has| |#1| (-558)))) (-2210 (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 125 (|has| |#1| (-1049))) (((-689 |#1|) (-689 $)) 115 (|has| |#1| (-1049))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))))) (-1580 (($ $) 96 (|has| |#1| (-558)))) (-2928 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111))))) (-2960 (($ $ $) NIL (|has| |#1| (-558)))) (-3594 (($ $ (-1091 $)) 236 (|has| |#1| (-558))) (($ $ (-1175)) 234 (|has| |#1| (-558)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-558)))) (-1784 (((-112) $) NIL (|has| |#1| (-558)))) (-2306 (($ $ $) 202 (|has| |#1| (-558)))) (-3120 (($) 137 (|has| |#1| (-558)))) (-3477 (($ $ $) 222 (|has| |#1| (-558)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 392 (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 399 (|has| |#1| (-886 (-381))))) (-2388 (($ $) NIL) (($ (-644 $)) NIL)) (-2162 (((-644 (-114)) $) NIL)) (-2415 (((-114) (-114)) 276)) (-3466 (((-112) $) 25 (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111))))) (-2469 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2227 (($ $) 72 (|has| |#1| (-1049)))) (-3088 (((-1124 |#1| (-612 $)) $) 91 (|has| |#1| (-1049)))) (-4098 (((-112) $) 62 (|has| |#1| (-558)))) (-1986 (($ $ (-566)) NIL (|has| |#1| (-558)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-558)))) (-3392 (((-1171 $) (-612 $)) 277 (|has| $ (-1049)))) (-3152 (($ (-1 $ $) (-612 $)) 426)) (-2116 (((-3 (-612 $) "failed") $) NIL)) (-3671 (($ $) 141 (|has| |#1| (-558)))) (-4140 (($ $) 247 (|has| |#1| (-558)))) (-2197 (($ (-644 $)) NIL (|has| |#1| (-558))) (($ $ $) NIL (|has| |#1| (-558)))) (-2402 (((-1157) $) NIL)) (-2404 (((-644 (-612 $)) $) 49)) (-3159 (($ (-114) $) NIL) (($ (-114) (-644 $)) 431)) (-4201 (((-3 (-644 $) "failed") $) NIL (|has| |#1| (-1111)))) (-2014 (((-3 (-2 (|:| |val| $) (|:| -2456 (-566))) "failed") $) NIL (|has| |#1| (-1049)))) (-2657 (((-3 (-644 $) "failed") $) 436 (|has| |#1| (-25)))) (-3462 (((-3 (-2 (|:| -3223 (-566)) (|:| |var| (-612 $))) "failed") $) 440 (|has| |#1| (-25)))) (-2749 (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $) NIL (|has| |#1| (-1111))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $ (-114)) NIL (|has| |#1| (-1049))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $ (-1175)) NIL (|has| |#1| (-1049)))) (-2885 (((-112) $ (-114)) NIL) (((-112) $ (-1175)) 51)) (-3584 (($ $) NIL (-2805 (|has| |#1| (-475)) (|has| |#1| (-558))))) (-3973 (($ $ (-1175)) 251 (|has| |#1| (-558))) (($ $ (-1091 $)) 253 (|has| |#1| (-558)))) (-3906 (((-771) $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) 43)) (-3604 ((|#1| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 301 (|has| |#1| (-558)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-558))) (($ $ $) NIL (|has| |#1| (-558)))) (-1471 (((-112) $ $) NIL) (((-112) $ (-1175)) NIL)) (-1856 (($ $ (-1175)) 226 (|has| |#1| (-558))) (($ $) 224 (|has| |#1| (-558)))) (-2711 (($ $) 218 (|has| |#1| (-558)))) (-4137 (((-420 (-1171 $)) (-1171 $)) 306 (-12 (|has| |#1| (-454)) (|has| |#1| (-558))))) (-2473 (((-420 $) $) NIL (|has| |#1| (-558)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-558))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-558)))) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-558)))) (-4337 (($ $) 139 (|has| |#1| (-558)))) (-1630 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2095 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) 425) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-1175) (-1 $ (-644 $))) NIL) (($ $ (-1175) (-1 $ $)) NIL) (($ $ (-644 (-114)) (-644 (-1 $ $))) 379) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-114) (-1 $ (-644 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1175)) NIL (|has| |#1| (-614 (-538)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-614 (-538)))) (($ $) NIL (|has| |#1| (-614 (-538)))) (($ $ (-114) $ (-1175)) 366 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-114)) (-644 $) (-1175)) 365 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ $))) NIL (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ (-644 $)))) NIL (|has| |#1| (-1049))) (($ $ (-1175) (-771) (-1 $ (-644 $))) NIL (|has| |#1| (-1049))) (($ $ (-1175) (-771) (-1 $ $)) NIL (|has| |#1| (-1049)))) (-3470 (((-771) $) NIL (|has| |#1| (-558)))) (-3874 (($ $) 239 (|has| |#1| (-558)))) (-4393 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-644 $)) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-558)))) (-2940 (($ $) NIL) (($ $ $) NIL)) (-3904 (($ $) 249 (|has| |#1| (-558)))) (-4047 (($ $) 200 (|has| |#1| (-558)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-1049))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-1049))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-1049))) (($ $ (-1175)) NIL (|has| |#1| (-1049)))) (-1431 (($ $) 74 (|has| |#1| (-558)))) (-3100 (((-1124 |#1| (-612 $)) $) 93 (|has| |#1| (-558)))) (-3601 (($ $) 317 (|has| $ (-1049)))) (-2897 (($ $) 177 (|has| |#1| (-558)))) (-3974 (($ $) 153 (|has| |#1| (-558)))) (-2877 (($ $) 173 (|has| |#1| (-558)))) (-3951 (($ $) 149 (|has| |#1| (-558)))) (-2853 (($ $) 169 (|has| |#1| (-558)))) (-3927 (($ $) 145 (|has| |#1| (-558)))) (-3204 (((-892 (-566)) $) NIL (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| |#1| (-614 (-892 (-381))))) (($ (-420 $)) NIL (|has| |#1| (-558))) (((-538) $) 363 (|has| |#1| (-614 (-538))))) (-3850 (($ $ $) NIL (|has| |#1| (-475)))) (-1783 (($ $ $) NIL (|has| |#1| (-475)))) (-3780 (((-862) $) 424) (($ (-612 $)) 415) (($ (-1175)) 381) (($ |#1|) 337) (($ $) NIL (|has| |#1| (-558))) (($ (-48)) 312 (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566))))) (($ (-1124 |#1| (-612 $))) 95 (|has| |#1| (-1049))) (($ (-409 |#1|)) NIL (|has| |#1| (-558))) (($ (-952 (-409 |#1|))) NIL (|has| |#1| (-558))) (($ (-409 (-952 (-409 |#1|)))) NIL (|has| |#1| (-558))) (($ (-409 (-952 |#1|))) NIL (|has| |#1| (-558))) (($ (-952 |#1|)) NIL (|has| |#1| (-1049))) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-558)) (|has| |#1| (-1038 (-409 (-566)))))) (($ (-566)) 34 (-2805 (|has| |#1| (-1038 (-566))) (|has| |#1| (-1049))))) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL (|has| |#1| (-1049)) CONST)) (-1442 (($ $) NIL) (($ (-644 $)) NIL)) (-2378 (($ $ $) 220 (|has| |#1| (-558)))) (-4018 (($ $ $) 206 (|has| |#1| (-558)))) (-2528 (($ $ $) 210 (|has| |#1| (-558)))) (-3768 (($ $ $) 204 (|has| |#1| (-558)))) (-3078 (($ $ $) 208 (|has| |#1| (-558)))) (-1643 (((-112) (-114)) 10)) (-3801 (((-112) $ $) 86)) (-2931 (($ $) 183 (|has| |#1| (-558)))) (-4009 (($ $) 159 (|has| |#1| (-558)))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) 179 (|has| |#1| (-558)))) (-3986 (($ $) 155 (|has| |#1| (-558)))) (-2954 (($ $) 187 (|has| |#1| (-558)))) (-4033 (($ $) 163 (|has| |#1| (-558)))) (-2986 (($ (-1175) $) NIL) (($ (-1175) $ $) NIL) (($ (-1175) $ $ $) NIL) (($ (-1175) $ $ $ $) NIL) (($ (-1175) (-644 $)) NIL)) (-2038 (($ $) 214 (|has| |#1| (-558)))) (-2467 (($ $) 212 (|has| |#1| (-558)))) (-3181 (($ $) 189 (|has| |#1| (-558)))) (-2834 (($ $) 165 (|has| |#1| (-558)))) (-2943 (($ $) 185 (|has| |#1| (-558)))) (-4021 (($ $) 161 (|has| |#1| (-558)))) (-2920 (($ $) 181 (|has| |#1| (-558)))) (-3997 (($ $) 157 (|has| |#1| (-558)))) (-3333 (($ $) 192 (|has| |#1| (-558)))) (-2493 (($) 21 (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))) CONST)) (-3545 (($ $) 243 (|has| |#1| (-558)))) (-4333 (($) 23 (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111))) CONST)) (-1650 (($ $) 194 (|has| |#1| (-558))) (($ $ $) 196 (|has| |#1| (-558)))) (-3776 (($ $) 241 (|has| |#1| (-558)))) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-1049))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-1049))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-1049))) (($ $ (-1175)) NIL (|has| |#1| (-1049)))) (-1317 (($ $) 245 (|has| |#1| (-558)))) (-3162 (($ $ $) 198 (|has| |#1| (-558)))) (-2950 (((-112) $ $) 88)) (-3062 (($ (-1124 |#1| (-612 $)) (-1124 |#1| (-612 $))) 106 (|has| |#1| (-558))) (($ $ $) 42 (-2805 (|has| |#1| (-475)) (|has| |#1| (-558))))) (-3051 (($ $ $) 40 (-2805 (|has| |#1| (-21)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))))) (($ $) 29 (-2805 (|has| |#1| (-21)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))) (-3040 (($ $ $) 38 (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))) (** (($ $ $) 64 (|has| |#1| (-558))) (($ $ (-409 (-566))) 314 (|has| |#1| (-558))) (($ $ (-566)) 80 (-2805 (|has| |#1| (-475)) (|has| |#1| (-558)))) (($ $ (-771)) 75 (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111)))) (($ $ (-921)) 84 (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111))))) (* (($ (-409 (-566)) $) NIL (|has| |#1| (-558))) (($ $ (-409 (-566))) NIL (|has| |#1| (-558))) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172))) (($ $ $) 36 (-2805 (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) (|has| |#1| (-1111)))) (($ (-566) $) 32 (-2805 (|has| |#1| (-21)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))))) (($ (-771) $) NIL (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))))) (($ (-921) $) NIL (-2805 (|has| |#1| (-25)) (-12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))))))
+(((-317 |#1|) (-13 (-432 |#1|) (-10 -8 (IF (|has| |#1| (-558)) (PROGN (-6 (-29 |#1|)) (-6 (-1199)) (-6 (-160)) (-6 (-629)) (-6 (-1138)) (-15 -1580 ($ $)) (-15 -4098 ((-112) $)) (-15 -2291 ($ $ (-566))) (IF (|has| |#1| (-454)) (PROGN (-15 -4137 ((-420 (-1171 $)) (-1171 $))) (-15 -4077 ((-420 (-1171 $)) (-1171 $)))) |%noBranch|) (IF (|has| |#1| (-1038 (-566))) (-6 (-1038 (-48))) |%noBranch|)) |%noBranch|))) (-1099)) (T -317))
+((-1580 (*1 *1 *1) (-12 (-5 *1 (-317 *2)) (-4 *2 (-558)) (-4 *2 (-1099)))) (-4098 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-317 *3)) (-4 *3 (-558)) (-4 *3 (-1099)))) (-2291 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-317 *3)) (-4 *3 (-558)) (-4 *3 (-1099)))) (-4137 (*1 *2 *3) (-12 (-5 *2 (-420 (-1171 *1))) (-5 *1 (-317 *4)) (-5 *3 (-1171 *1)) (-4 *4 (-454)) (-4 *4 (-558)) (-4 *4 (-1099)))) (-4077 (*1 *2 *3) (-12 (-5 *2 (-420 (-1171 *1))) (-5 *1 (-317 *4)) (-5 *3 (-1171 *1)) (-4 *4 (-454)) (-4 *4 (-558)) (-4 *4 (-1099)))))
+(-13 (-432 |#1|) (-10 -8 (IF (|has| |#1| (-558)) (PROGN (-6 (-29 |#1|)) (-6 (-1199)) (-6 (-160)) (-6 (-629)) (-6 (-1138)) (-15 -1580 ($ $)) (-15 -4098 ((-112) $)) (-15 -2291 ($ $ (-566))) (IF (|has| |#1| (-454)) (PROGN (-15 -4137 ((-420 (-1171 $)) (-1171 $))) (-15 -4077 ((-420 (-1171 $)) (-1171 $)))) |%noBranch|) (IF (|has| |#1| (-1038 (-566))) (-6 (-1038 (-48))) |%noBranch|)) |%noBranch|)))
+((-2800 (((-52) |#2| (-114) (-295 |#2|) (-644 |#2|)) 89) (((-52) |#2| (-114) (-295 |#2|) (-295 |#2|)) 85) (((-52) |#2| (-114) (-295 |#2|) |#2|) 87) (((-52) (-295 |#2|) (-114) (-295 |#2|) |#2|) 88) (((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|))) 81) (((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 |#2|)) 83) (((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 |#2|)) 84) (((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|))) 82) (((-52) (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|)) 90) (((-52) (-295 |#2|) (-114) (-295 |#2|) (-295 |#2|)) 86)))
+(((-318 |#1| |#2|) (-10 -7 (-15 -2800 ((-52) (-295 |#2|) (-114) (-295 |#2|) (-295 |#2|))) (-15 -2800 ((-52) (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|))) (-15 -2800 ((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|)))) (-15 -2800 ((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 |#2|))) (-15 -2800 ((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 |#2|))) (-15 -2800 ((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|)))) (-15 -2800 ((-52) (-295 |#2|) (-114) (-295 |#2|) |#2|)) (-15 -2800 ((-52) |#2| (-114) (-295 |#2|) |#2|)) (-15 -2800 ((-52) |#2| (-114) (-295 |#2|) (-295 |#2|))) (-15 -2800 ((-52) |#2| (-114) (-295 |#2|) (-644 |#2|)))) (-13 (-558) (-614 (-538))) (-432 |#1|)) (T -318))
+((-2800 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-114)) (-5 *5 (-295 *3)) (-5 *6 (-644 *3)) (-4 *3 (-432 *7)) (-4 *7 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *7 *3)))) (-2800 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-114)) (-5 *5 (-295 *3)) (-4 *3 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *3)))) (-2800 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-114)) (-5 *5 (-295 *3)) (-4 *3 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *3)))) (-2800 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-295 *5)) (-5 *4 (-114)) (-4 *5 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *5)))) (-2800 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 (-114))) (-5 *6 (-644 (-295 *8))) (-4 *8 (-432 *7)) (-5 *5 (-295 *8)) (-4 *7 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *7 *8)))) (-2800 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-644 *7)) (-5 *4 (-644 (-114))) (-5 *5 (-295 *7)) (-4 *7 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *7)))) (-2800 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-644 (-295 *8))) (-5 *4 (-644 (-114))) (-5 *5 (-295 *8)) (-5 *6 (-644 *8)) (-4 *8 (-432 *7)) (-4 *7 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *7 *8)))) (-2800 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-644 (-295 *7))) (-5 *4 (-644 (-114))) (-5 *5 (-295 *7)) (-4 *7 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *7)))) (-2800 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-295 *7)) (-5 *4 (-114)) (-5 *5 (-644 *7)) (-4 *7 (-432 *6)) (-4 *6 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *6 *7)))) (-2800 (*1 *2 *3 *4 *3 *3) (-12 (-5 *3 (-295 *6)) (-5 *4 (-114)) (-4 *6 (-432 *5)) (-4 *5 (-13 (-558) (-614 (-538)))) (-5 *2 (-52)) (-5 *1 (-318 *5 *6)))))
+(-10 -7 (-15 -2800 ((-52) (-295 |#2|) (-114) (-295 |#2|) (-295 |#2|))) (-15 -2800 ((-52) (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|))) (-15 -2800 ((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|)))) (-15 -2800 ((-52) (-644 (-295 |#2|)) (-644 (-114)) (-295 |#2|) (-644 |#2|))) (-15 -2800 ((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 |#2|))) (-15 -2800 ((-52) (-644 |#2|) (-644 (-114)) (-295 |#2|) (-644 (-295 |#2|)))) (-15 -2800 ((-52) (-295 |#2|) (-114) (-295 |#2|) |#2|)) (-15 -2800 ((-52) |#2| (-114) (-295 |#2|) |#2|)) (-15 -2800 ((-52) |#2| (-114) (-295 |#2|) (-295 |#2|))) (-15 -2800 ((-52) |#2| (-114) (-295 |#2|) (-644 |#2|))))
+((-2982 (((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566) (-1157)) 67) (((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566)) 68) (((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566) (-1157)) 64) (((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566)) 65)) (-3585 (((-1 (-225) (-225)) (-225)) 66)))
+(((-319) (-10 -7 (-15 -3585 ((-1 (-225) (-225)) (-225))) (-15 -2982 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566))) (-15 -2982 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566) (-1157))) (-15 -2982 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566))) (-15 -2982 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566) (-1157))))) (T -319))
+((-2982 (*1 *2 *3 *3 *3 *4 *5 *6 *7 *8) (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1093 (-225))) (-5 *6 (-225)) (-5 *7 (-566)) (-5 *8 (-1157)) (-5 *2 (-1209 (-926))) (-5 *1 (-319)))) (-2982 (*1 *2 *3 *3 *3 *4 *5 *6 *7) (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1093 (-225))) (-5 *6 (-225)) (-5 *7 (-566)) (-5 *2 (-1209 (-926))) (-5 *1 (-319)))) (-2982 (*1 *2 *3 *3 *3 *4 *5 *4 *6 *7) (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1093 (-225))) (-5 *6 (-566)) (-5 *7 (-1157)) (-5 *2 (-1209 (-926))) (-5 *1 (-319)))) (-2982 (*1 *2 *3 *3 *3 *4 *5 *4 *6) (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1093 (-225))) (-5 *6 (-566)) (-5 *2 (-1209 (-926))) (-5 *1 (-319)))) (-3585 (*1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-319)) (-5 *3 (-225)))))
+(-10 -7 (-15 -3585 ((-1 (-225) (-225)) (-225))) (-15 -2982 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566))) (-15 -2982 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-1 (-225) (-225)) (-566) (-1157))) (-15 -2982 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566))) (-15 -2982 ((-1209 (-926)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-225) (-566) (-1157))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 26)) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2922 (($ $ (-409 (-566))) NIL) (($ $ (-409 (-566)) (-409 (-566))) NIL)) (-2455 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) 20)) (-2865 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL (|has| |#1| (-365)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2843 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) NIL)) (-2888 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) 36)) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-1784 (((-112) $) NIL (|has| |#1| (-365)))) (-4392 (((-112) $) NIL)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-409 (-566)) $) NIL) (((-409 (-566)) $ (-409 (-566))) 16)) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1644 (($ $ (-921)) NIL) (($ $ (-409 (-566))) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-409 (-566))) NIL) (($ $ (-1081) (-409 (-566))) NIL) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3671 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-365)))) (-3921 (($ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199)))))) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2295 (($ $ (-409 (-566))) NIL)) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4007 (((-409 (-566)) $) 17)) (-1792 (($ (-1249 |#1| |#2| |#3|)) 11)) (-2456 (((-1249 |#1| |#2| |#3|) $) 12)) (-4337 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ (-409 (-566))) NIL) (($ $ $) NIL (|has| (-409 (-566)) (-1111)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2108 (((-409 (-566)) $) NIL)) (-2897 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) 10)) (-3780 (((-862) $) 42) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-3756 ((|#1| $ (-409 (-566))) 34)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3174 ((|#1| $) NIL)) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-409 (-566))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 28)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 37)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-320 |#1| |#2| |#3|) (-13 (-1245 |#1|) (-792) (-10 -8 (-15 -1792 ($ (-1249 |#1| |#2| |#3|))) (-15 -2456 ((-1249 |#1| |#2| |#3|) $)) (-15 -4007 ((-409 (-566)) $)))) (-365) (-1175) |#1|) (T -320))
+((-1792 (*1 *1 *2) (-12 (-5 *2 (-1249 *3 *4 *5)) (-4 *3 (-365)) (-14 *4 (-1175)) (-14 *5 *3) (-5 *1 (-320 *3 *4 *5)))) (-2456 (*1 *2 *1) (-12 (-5 *2 (-1249 *3 *4 *5)) (-5 *1 (-320 *3 *4 *5)) (-4 *3 (-365)) (-14 *4 (-1175)) (-14 *5 *3))) (-4007 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-320 *3 *4 *5)) (-4 *3 (-365)) (-14 *4 (-1175)) (-14 *5 *3))))
+(-13 (-1245 |#1|) (-792) (-10 -8 (-15 -1792 ($ (-1249 |#1| |#2| |#3|))) (-15 -2456 ((-1249 |#1| |#2| |#3|) $)) (-15 -4007 ((-409 (-566)) $))))
+((-1986 (((-2 (|:| -2456 (-771)) (|:| -3223 |#1|) (|:| |radicand| (-644 |#1|))) (-420 |#1|) (-771)) 35)) (-3671 (((-644 (-2 (|:| -3223 (-771)) (|:| |logand| |#1|))) (-420 |#1|)) 40)))
+(((-321 |#1|) (-10 -7 (-15 -1986 ((-2 (|:| -2456 (-771)) (|:| -3223 |#1|) (|:| |radicand| (-644 |#1|))) (-420 |#1|) (-771))) (-15 -3671 ((-644 (-2 (|:| -3223 (-771)) (|:| |logand| |#1|))) (-420 |#1|)))) (-558)) (T -321))
+((-3671 (*1 *2 *3) (-12 (-5 *3 (-420 *4)) (-4 *4 (-558)) (-5 *2 (-644 (-2 (|:| -3223 (-771)) (|:| |logand| *4)))) (-5 *1 (-321 *4)))) (-1986 (*1 *2 *3 *4) (-12 (-5 *3 (-420 *5)) (-4 *5 (-558)) (-5 *2 (-2 (|:| -2456 (-771)) (|:| -3223 *5) (|:| |radicand| (-644 *5)))) (-5 *1 (-321 *5)) (-5 *4 (-771)))))
+(-10 -7 (-15 -1986 ((-2 (|:| -2456 (-771)) (|:| -3223 |#1|) (|:| |radicand| (-644 |#1|))) (-420 |#1|) (-771))) (-15 -3671 ((-644 (-2 (|:| -3223 (-771)) (|:| |logand| |#1|))) (-420 |#1|))))
+((-2608 (((-644 |#2|) (-1171 |#4|)) 44)) (-2458 ((|#3| (-566)) 47)) (-1651 (((-1171 |#4|) (-1171 |#3|)) 30)) (-1397 (((-1171 |#4|) (-1171 |#4|) (-566)) 66)) (-3684 (((-1171 |#3|) (-1171 |#4|)) 21)) (-2108 (((-644 (-771)) (-1171 |#4|) (-644 |#2|)) 41)) (-3709 (((-1171 |#3|) (-1171 |#4|) (-644 |#2|) (-644 |#3|)) 35)))
+(((-322 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3709 ((-1171 |#3|) (-1171 |#4|) (-644 |#2|) (-644 |#3|))) (-15 -2108 ((-644 (-771)) (-1171 |#4|) (-644 |#2|))) (-15 -2608 ((-644 |#2|) (-1171 |#4|))) (-15 -3684 ((-1171 |#3|) (-1171 |#4|))) (-15 -1651 ((-1171 |#4|) (-1171 |#3|))) (-15 -1397 ((-1171 |#4|) (-1171 |#4|) (-566))) (-15 -2458 (|#3| (-566)))) (-793) (-850) (-1049) (-949 |#3| |#1| |#2|)) (T -322))
+((-2458 (*1 *2 *3) (-12 (-5 *3 (-566)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1049)) (-5 *1 (-322 *4 *5 *2 *6)) (-4 *6 (-949 *2 *4 *5)))) (-1397 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 *7)) (-5 *3 (-566)) (-4 *7 (-949 *6 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-5 *1 (-322 *4 *5 *6 *7)))) (-1651 (*1 *2 *3) (-12 (-5 *3 (-1171 *6)) (-4 *6 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-1171 *7)) (-5 *1 (-322 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))) (-3684 (*1 *2 *3) (-12 (-5 *3 (-1171 *7)) (-4 *7 (-949 *6 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-5 *2 (-1171 *6)) (-5 *1 (-322 *4 *5 *6 *7)))) (-2608 (*1 *2 *3) (-12 (-5 *3 (-1171 *7)) (-4 *7 (-949 *6 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-5 *2 (-644 *5)) (-5 *1 (-322 *4 *5 *6 *7)))) (-2108 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *8)) (-5 *4 (-644 *6)) (-4 *6 (-850)) (-4 *8 (-949 *7 *5 *6)) (-4 *5 (-793)) (-4 *7 (-1049)) (-5 *2 (-644 (-771))) (-5 *1 (-322 *5 *6 *7 *8)))) (-3709 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-5 *5 (-644 *8)) (-4 *7 (-850)) (-4 *8 (-1049)) (-4 *9 (-949 *8 *6 *7)) (-4 *6 (-793)) (-5 *2 (-1171 *8)) (-5 *1 (-322 *6 *7 *8 *9)))))
+(-10 -7 (-15 -3709 ((-1171 |#3|) (-1171 |#4|) (-644 |#2|) (-644 |#3|))) (-15 -2108 ((-644 (-771)) (-1171 |#4|) (-644 |#2|))) (-15 -2608 ((-644 |#2|) (-1171 |#4|))) (-15 -3684 ((-1171 |#3|) (-1171 |#4|))) (-15 -1651 ((-1171 |#4|) (-1171 |#3|))) (-15 -1397 ((-1171 |#4|) (-1171 |#4|) (-566))) (-15 -2458 (|#3| (-566))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 19)) (-2455 (((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-566)))) $) 21)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4070 (((-771) $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-3749 ((|#1| $ (-566)) NIL)) (-2724 (((-566) $ (-566)) NIL)) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3796 (($ (-1 |#1| |#1|) $) NIL)) (-1416 (($ (-1 (-566) (-566)) $) 11)) (-2402 (((-1157) $) NIL)) (-1364 (($ $ $) NIL (|has| (-566) (-792)))) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL) (($ |#1|) NIL)) (-3756 (((-566) |#1| $) NIL)) (-3801 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) 29 (|has| |#1| (-850)))) (-3051 (($ $) 12) (($ $ $) 28)) (-3040 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ (-566)) NIL) (($ (-566) |#1|) 27)))
(((-323 |#1|) (-13 (-21) (-717 (-566)) (-324 |#1| (-566)) (-10 -7 (IF (|has| |#1| (-850)) (-6 (-850)) |%noBranch|))) (-1099)) (T -323))
NIL
(-13 (-21) (-717 (-566)) (-324 |#1| (-566)) (-10 -7 (IF (|has| |#1| (-850)) (-6 (-850)) |%noBranch|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-1530 (((-644 (-2 (|:| |gen| |#1|) (|:| -3613 |#2|))) $) 28)) (-4126 (((-3 $ "failed") $ $) 20)) (-4025 (((-771) $) 29)) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#1| "failed") $) 33)) (-1756 ((|#1| $) 34)) (-2647 ((|#1| $ (-566)) 26)) (-1860 ((|#2| $ (-566)) 27)) (-4105 (($ (-1 |#1| |#1|) $) 23)) (-4364 (($ (-1 |#2| |#2|) $) 24)) (-2878 (((-1157) $) 10)) (-3054 (($ $ $) 22 (|has| |#2| (-792)))) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ |#1|) 32)) (-2022 ((|#2| |#1| $) 25)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3034 (($ $ $) 15) (($ |#1| $) 31)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ |#2| |#1|) 30)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2455 (((-644 (-2 (|:| |gen| |#1|) (|:| -4337 |#2|))) $) 28)) (-4014 (((-3 $ "failed") $ $) 20)) (-4070 (((-771) $) 29)) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#1| "failed") $) 33)) (-1867 ((|#1| $) 34)) (-3749 ((|#1| $ (-566)) 26)) (-2724 ((|#2| $ (-566)) 27)) (-3796 (($ (-1 |#1| |#1|) $) 23)) (-1416 (($ (-1 |#2| |#2|) $) 24)) (-2402 (((-1157) $) 10)) (-1364 (($ $ $) 22 (|has| |#2| (-792)))) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ |#1|) 32)) (-3756 ((|#2| |#1| $) 25)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3040 (($ $ $) 15) (($ |#1| $) 31)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ |#2| |#1|) 30)))
(((-324 |#1| |#2|) (-140) (-1099) (-131)) (T -324))
-((-3034 (*1 *1 *2 *1) (-12 (-4 *1 (-324 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-131)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-324 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-131)))) (-4025 (*1 *2 *1) (-12 (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131)) (-5 *2 (-771)))) (-1530 (*1 *2 *1) (-12 (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131)) (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 *4)))))) (-1860 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-324 *4 *2)) (-4 *4 (-1099)) (-4 *2 (-131)))) (-2647 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-324 *2 *4)) (-4 *4 (-131)) (-4 *2 (-1099)))) (-2022 (*1 *2 *3 *1) (-12 (-4 *1 (-324 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-131)))) (-4364 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131)))) (-4105 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131)))) (-3054 (*1 *1 *1 *1) (-12 (-4 *1 (-324 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-131)) (-4 *3 (-792)))))
-(-13 (-131) (-1038 |t#1|) (-10 -8 (-15 -3034 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -4025 ((-771) $)) (-15 -1530 ((-644 (-2 (|:| |gen| |t#1|) (|:| -3613 |t#2|))) $)) (-15 -1860 (|t#2| $ (-566))) (-15 -2647 (|t#1| $ (-566))) (-15 -2022 (|t#2| |t#1| $)) (-15 -4364 ($ (-1 |t#2| |t#2|) $)) (-15 -4105 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-792)) (-15 -3054 ($ $ $)) |%noBranch|)))
+((-3040 (*1 *1 *2 *1) (-12 (-4 *1 (-324 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-131)))) (* (*1 *1 *2 *3) (-12 (-4 *1 (-324 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-131)))) (-4070 (*1 *2 *1) (-12 (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131)) (-5 *2 (-771)))) (-2455 (*1 *2 *1) (-12 (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131)) (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 *4)))))) (-2724 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-324 *4 *2)) (-4 *4 (-1099)) (-4 *2 (-131)))) (-3749 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-324 *2 *4)) (-4 *4 (-131)) (-4 *2 (-1099)))) (-3756 (*1 *2 *3 *1) (-12 (-4 *1 (-324 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-131)))) (-1416 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131)))) (-3796 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131)))) (-1364 (*1 *1 *1 *1) (-12 (-4 *1 (-324 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-131)) (-4 *3 (-792)))))
+(-13 (-131) (-1038 |t#1|) (-10 -8 (-15 -3040 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -4070 ((-771) $)) (-15 -2455 ((-644 (-2 (|:| |gen| |t#1|) (|:| -4337 |t#2|))) $)) (-15 -2724 (|t#2| $ (-566))) (-15 -3749 (|t#1| $ (-566))) (-15 -3756 (|t#2| |t#1| $)) (-15 -1416 ($ (-1 |t#2| |t#2|) $)) (-15 -3796 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-792)) (-15 -1364 ($ $ $)) |%noBranch|)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-1038 |#1|) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-1530 (((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-771)))) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-4025 (((-771) $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-2647 ((|#1| $ (-566)) NIL)) (-1860 (((-771) $ (-566)) NIL)) (-4105 (($ (-1 |#1| |#1|) $) NIL)) (-4364 (($ (-1 (-771) (-771)) $) NIL)) (-2878 (((-1157) $) NIL)) (-3054 (($ $ $) NIL (|has| (-771) (-792)))) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL) (($ |#1|) NIL)) (-2022 (((-771) |#1| $) NIL)) (-3122 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3034 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-771) |#1|) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2455 (((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-771)))) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4070 (((-771) $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-3749 ((|#1| $ (-566)) NIL)) (-2724 (((-771) $ (-566)) NIL)) (-3796 (($ (-1 |#1| |#1|) $) NIL)) (-1416 (($ (-1 (-771) (-771)) $) NIL)) (-2402 (((-1157) $) NIL)) (-1364 (($ $ $) NIL (|has| (-771) (-792)))) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL) (($ |#1|) NIL)) (-3756 (((-771) |#1| $) NIL)) (-3801 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3040 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-771) |#1|) NIL)))
(((-325 |#1|) (-324 |#1| (-771)) (-1099)) (T -325))
NIL
(-324 |#1| (-771))
-((-4248 (($ $) 72)) (-2804 (($ $ |#2| |#3| $) 14)) (-2132 (($ (-1 |#3| |#3|) $) 51)) (-2636 (((-112) $) 42)) (-3531 ((|#2| $) 44)) (-2972 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 64)) (-3181 ((|#2| $) 68)) (-3868 (((-644 |#2|) $) 56)) (-2468 (($ $ $ (-771)) 37)) (-3061 (($ $ |#2|) 60)))
-(((-326 |#1| |#2| |#3|) (-10 -8 (-15 -4248 (|#1| |#1|)) (-15 -3181 (|#2| |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2468 (|#1| |#1| |#1| (-771))) (-15 -2804 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2132 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3868 ((-644 |#2|) |#1|)) (-15 -3531 (|#2| |#1|)) (-15 -2636 ((-112) |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3061 (|#1| |#1| |#2|))) (-327 |#2| |#3|) (-1049) (-792)) (T -326))
+((-2755 (($ $) 72)) (-2871 (($ $ |#2| |#3| $) 14)) (-2443 (($ (-1 |#3| |#3|) $) 51)) (-3595 (((-112) $) 42)) (-3604 ((|#2| $) 44)) (-2997 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 64)) (-3042 ((|#2| $) 68)) (-3456 (((-644 |#2|) $) 56)) (-2629 (($ $ $ (-771)) 37)) (-3062 (($ $ |#2|) 60)))
+(((-326 |#1| |#2| |#3|) (-10 -8 (-15 -2755 (|#1| |#1|)) (-15 -3042 (|#2| |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2629 (|#1| |#1| |#1| (-771))) (-15 -2871 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2443 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3456 ((-644 |#2|) |#1|)) (-15 -3604 (|#2| |#1|)) (-15 -3595 ((-112) |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3062 (|#1| |#1| |#2|))) (-327 |#2| |#3|) (-1049) (-792)) (T -326))
NIL
-(-10 -8 (-15 -4248 (|#1| |#1|)) (-15 -3181 (|#2| |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2468 (|#1| |#1| |#1| (-771))) (-15 -2804 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2132 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3868 ((-644 |#2|) |#1|)) (-15 -3531 (|#2| |#1|)) (-15 -2636 ((-112) |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3061 (|#1| |#1| |#2|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-3653 (($ $) 64 (|has| |#1| (-558)))) (-2152 (((-112) $) 66 (|has| |#1| (-558)))) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2977 (((-3 (-566) "failed") $) 100 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 98 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 95)) (-1756 (((-566) $) 99 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 97 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 96)) (-3577 (($ $) 72)) (-1579 (((-3 $ "failed") $) 37)) (-4248 (($ $) 84 (|has| |#1| (-454)))) (-2804 (($ $ |#1| |#2| $) 88)) (-2741 (((-112) $) 35)) (-3505 (((-771) $) 91)) (-4367 (((-112) $) 74)) (-2519 (($ |#1| |#2|) 73)) (-3251 ((|#2| $) 90)) (-2132 (($ (-1 |#2| |#2|) $) 89)) (-3077 (($ (-1 |#1| |#1|) $) 75)) (-3545 (($ $) 77)) (-3557 ((|#1| $) 78)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2636 (((-112) $) 94)) (-3531 ((|#1| $) 93)) (-2972 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558))) (((-3 $ "failed") $ |#1|) 86 (|has| |#1| (-558)))) (-3992 ((|#2| $) 76)) (-3181 ((|#1| $) 85 (|has| |#1| (-454)))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 61 (|has| |#1| (-558))) (($ |#1|) 59) (($ (-409 (-566))) 69 (-2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566))))))) (-3868 (((-644 |#1|) $) 92)) (-2022 ((|#1| $ |#2|) 71)) (-3842 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-2468 (($ $ $ (-771)) 87 (|has| |#1| (-172)))) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 70 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
+(-10 -8 (-15 -2755 (|#1| |#1|)) (-15 -3042 (|#2| |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2629 (|#1| |#1| |#1| (-771))) (-15 -2871 (|#1| |#1| |#2| |#3| |#1|)) (-15 -2443 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3456 ((-644 |#2|) |#1|)) (-15 -3604 (|#2| |#1|)) (-15 -3595 ((-112) |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3062 (|#1| |#1| |#2|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-1968 (($ $) 64 (|has| |#1| (-558)))) (-2644 (((-112) $) 66 (|has| |#1| (-558)))) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-3066 (((-3 (-566) "failed") $) 100 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 98 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 95)) (-1867 (((-566) $) 99 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 97 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 96)) (-3645 (($ $) 72)) (-2928 (((-3 $ "failed") $) 37)) (-2755 (($ $) 84 (|has| |#1| (-454)))) (-2871 (($ $ |#1| |#2| $) 88)) (-3466 (((-112) $) 35)) (-4230 (((-771) $) 91)) (-1453 (((-112) $) 74)) (-2585 (($ |#1| |#2|) 73)) (-2466 ((|#2| $) 90)) (-2443 (($ (-1 |#2| |#2|) $) 89)) (-3152 (($ (-1 |#1| |#1|) $) 75)) (-3614 (($ $) 77)) (-3626 ((|#1| $) 78)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3595 (((-112) $) 94)) (-3604 ((|#1| $) 93)) (-2997 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558))) (((-3 $ "failed") $ |#1|) 86 (|has| |#1| (-558)))) (-2108 ((|#2| $) 76)) (-3042 ((|#1| $) 85 (|has| |#1| (-454)))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 61 (|has| |#1| (-558))) (($ |#1|) 59) (($ (-409 (-566))) 69 (-2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566))))))) (-3456 (((-644 |#1|) $) 92)) (-3756 ((|#1| $ |#2|) 71)) (-3226 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-2629 (($ $ $ (-771)) 87 (|has| |#1| (-172)))) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 70 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
(((-327 |#1| |#2|) (-140) (-1049) (-792)) (T -327))
-((-2636 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-112)))) (-3531 (*1 *2 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))) (-3868 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-644 *3)))) (-3505 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-771)))) (-3251 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-2132 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)))) (-2804 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)))) (-2468 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-4 *3 (-172)))) (-2972 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)) (-4 *2 (-558)))) (-3181 (*1 *2 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)) (-4 *2 (-454)))) (-4248 (*1 *1 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)) (-4 *2 (-454)))))
-(-13 (-47 |t#1| |t#2|) (-413 |t#1|) (-10 -8 (-15 -2636 ((-112) $)) (-15 -3531 (|t#1| $)) (-15 -3868 ((-644 |t#1|) $)) (-15 -3505 ((-771) $)) (-15 -3251 (|t#2| $)) (-15 -2132 ($ (-1 |t#2| |t#2|) $)) (-15 -2804 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-172)) (-15 -2468 ($ $ $ (-771))) |%noBranch|) (IF (|has| |t#1| (-558)) (-15 -2972 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-454)) (PROGN (-15 -3181 (|t#1| $)) (-15 -4248 ($ $))) |%noBranch|)))
+((-3595 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-112)))) (-3604 (*1 *2 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))) (-3456 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-644 *3)))) (-4230 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-771)))) (-2466 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-2443 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)))) (-2871 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)))) (-2629 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-4 *3 (-172)))) (-2997 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)) (-4 *2 (-558)))) (-3042 (*1 *2 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)) (-4 *2 (-454)))) (-2755 (*1 *1 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)) (-4 *2 (-454)))))
+(-13 (-47 |t#1| |t#2|) (-413 |t#1|) (-10 -8 (-15 -3595 ((-112) $)) (-15 -3604 (|t#1| $)) (-15 -3456 ((-644 |t#1|) $)) (-15 -4230 ((-771) $)) (-15 -2466 (|t#2| $)) (-15 -2443 ($ (-1 |t#2| |t#2|) $)) (-15 -2871 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-172)) (-15 -2629 ($ $ $ (-771))) |%noBranch|) (IF (|has| |t#1| (-558)) (-15 -2997 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-454)) (PROGN (-15 -3042 (|t#1| $)) (-15 -2755 ($ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-558)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-409 (-566)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) -2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566))))) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-616 $) |has| |#1| (-558)) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-291) |has| |#1| (-558)) ((-413 |#1|) . T) ((-558) |has| |#1| (-558)) ((-646 #0#) |has| |#1| (-38 (-409 (-566)))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) |has| |#1| (-38 (-409 (-566)))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) |has| |#1| (-38 (-409 (-566)))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) |has| |#1| (-558)) ((-717 #0#) |has| |#1| (-38 (-409 (-566)))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) |has| |#1| (-558)) ((-726) . T) ((-1038 (-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T) ((-1051 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1056 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-1347 (((-112) (-112)) NIL)) (-3874 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418)))) (-3586 (($ (-1 (-112) |#1|) $) NIL)) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4130 (($ $) NIL (|has| |#1| (-1099)))) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3066 (($ |#1| $) NIL (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) NIL)) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) NIL)) (-3968 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-4211 (($ $ (-566)) NIL)) (-3583 (((-771) $) NIL)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-4257 (($ (-771) |#1|) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-1865 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4265 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-4268 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3386 (($ (-644 |#1|)) NIL)) (-4062 ((|#1| $) NIL (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-1424 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) NIL)) (-1498 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3704 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-328 |#1|) (-13 (-19 |#1|) (-283 |#1|) (-10 -8 (-15 -3386 ($ (-644 |#1|))) (-15 -3583 ((-771) $)) (-15 -4211 ($ $ (-566))) (-15 -1347 ((-112) (-112))))) (-1214)) (T -328))
-((-3386 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-328 *3)))) (-3583 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-328 *3)) (-4 *3 (-1214)))) (-4211 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-328 *3)) (-4 *3 (-1214)))) (-1347 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-328 *3)) (-4 *3 (-1214)))))
-(-13 (-19 |#1|) (-283 |#1|) (-10 -8 (-15 -3386 ($ (-644 |#1|))) (-15 -3583 ((-771) $)) (-15 -4211 ($ $ (-566))) (-15 -1347 ((-112) (-112)))))
-((-3417 (((-112) $) 50)) (-3258 (((-771)) 26)) (-3817 ((|#2| $) 54) (($ $ (-921)) 124)) (-4025 (((-771)) 125)) (-1547 (($ (-1264 |#2|)) 23)) (-3754 (((-112) $) 138)) (-1559 ((|#2| $) 56) (($ $ (-921)) 121)) (-3929 (((-1171 |#2|) $) NIL) (((-1171 $) $ (-921)) 112)) (-1907 (((-1171 |#2|) $) 98)) (-3866 (((-1171 |#2|) $) 94) (((-3 (-1171 |#2|) "failed") $ $) 91)) (-1900 (($ $ (-1171 |#2|)) 62)) (-2003 (((-833 (-921))) 33) (((-921)) 51)) (-1909 (((-134)) 30)) (-3992 (((-833 (-921)) $) 35) (((-921) $) 141)) (-2873 (($) 131)) (-2770 (((-1264 |#2|) $) NIL) (((-689 |#2|) (-1264 $)) 45)) (-3842 (($ $) NIL) (((-3 $ "failed") $) 101)) (-1369 (((-112) $) 48)))
-(((-329 |#1| |#2|) (-10 -8 (-15 -3842 ((-3 |#1| "failed") |#1|)) (-15 -4025 ((-771))) (-15 -3842 (|#1| |#1|)) (-15 -3866 ((-3 (-1171 |#2|) "failed") |#1| |#1|)) (-15 -3866 ((-1171 |#2|) |#1|)) (-15 -1907 ((-1171 |#2|) |#1|)) (-15 -1900 (|#1| |#1| (-1171 |#2|))) (-15 -3754 ((-112) |#1|)) (-15 -2873 (|#1|)) (-15 -3817 (|#1| |#1| (-921))) (-15 -1559 (|#1| |#1| (-921))) (-15 -3929 ((-1171 |#1|) |#1| (-921))) (-15 -3817 (|#2| |#1|)) (-15 -1559 (|#2| |#1|)) (-15 -3992 ((-921) |#1|)) (-15 -2003 ((-921))) (-15 -3929 ((-1171 |#2|) |#1|)) (-15 -1547 (|#1| (-1264 |#2|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1|)) (-15 -3258 ((-771))) (-15 -2003 ((-833 (-921)))) (-15 -3992 ((-833 (-921)) |#1|)) (-15 -3417 ((-112) |#1|)) (-15 -1369 ((-112) |#1|)) (-15 -1909 ((-134)))) (-330 |#2|) (-365)) (T -329))
-((-1909 (*1 *2) (-12 (-4 *4 (-365)) (-5 *2 (-134)) (-5 *1 (-329 *3 *4)) (-4 *3 (-330 *4)))) (-2003 (*1 *2) (-12 (-4 *4 (-365)) (-5 *2 (-833 (-921))) (-5 *1 (-329 *3 *4)) (-4 *3 (-330 *4)))) (-3258 (*1 *2) (-12 (-4 *4 (-365)) (-5 *2 (-771)) (-5 *1 (-329 *3 *4)) (-4 *3 (-330 *4)))) (-2003 (*1 *2) (-12 (-4 *4 (-365)) (-5 *2 (-921)) (-5 *1 (-329 *3 *4)) (-4 *3 (-330 *4)))) (-4025 (*1 *2) (-12 (-4 *4 (-365)) (-5 *2 (-771)) (-5 *1 (-329 *3 *4)) (-4 *3 (-330 *4)))))
-(-10 -8 (-15 -3842 ((-3 |#1| "failed") |#1|)) (-15 -4025 ((-771))) (-15 -3842 (|#1| |#1|)) (-15 -3866 ((-3 (-1171 |#2|) "failed") |#1| |#1|)) (-15 -3866 ((-1171 |#2|) |#1|)) (-15 -1907 ((-1171 |#2|) |#1|)) (-15 -1900 (|#1| |#1| (-1171 |#2|))) (-15 -3754 ((-112) |#1|)) (-15 -2873 (|#1|)) (-15 -3817 (|#1| |#1| (-921))) (-15 -1559 (|#1| |#1| (-921))) (-15 -3929 ((-1171 |#1|) |#1| (-921))) (-15 -3817 (|#2| |#1|)) (-15 -1559 (|#2| |#1|)) (-15 -3992 ((-921) |#1|)) (-15 -2003 ((-921))) (-15 -3929 ((-1171 |#2|) |#1|)) (-15 -1547 (|#1| (-1264 |#2|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1|)) (-15 -3258 ((-771))) (-15 -2003 ((-833 (-921)))) (-15 -3992 ((-833 (-921)) |#1|)) (-15 -3417 ((-112) |#1|)) (-15 -1369 ((-112) |#1|)) (-15 -1909 ((-134))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-3417 (((-112) $) 104)) (-3258 (((-771)) 100)) (-3817 ((|#1| $) 150) (($ $ (-921)) 147 (|has| |#1| (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) 132 (|has| |#1| (-370)))) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 81)) (-1370 (((-420 $) $) 80)) (-1561 (((-112) $ $) 65)) (-4025 (((-771)) 122 (|has| |#1| (-370)))) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#1| "failed") $) 111)) (-1756 ((|#1| $) 112)) (-1547 (($ (-1264 |#1|)) 156)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) 138 (|has| |#1| (-370)))) (-2926 (($ $ $) 61)) (-1579 (((-3 $ "failed") $) 37)) (-3335 (($) 119 (|has| |#1| (-370)))) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-3092 (($) 134 (|has| |#1| (-370)))) (-3449 (((-112) $) 135 (|has| |#1| (-370)))) (-3626 (($ $ (-771)) 97 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) 96 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2635 (((-112) $) 79)) (-2716 (((-921) $) 137 (|has| |#1| (-370))) (((-833 (-921)) $) 94 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2741 (((-112) $) 35)) (-2061 (($) 145 (|has| |#1| (-370)))) (-3754 (((-112) $) 144 (|has| |#1| (-370)))) (-1559 ((|#1| $) 151) (($ $ (-921)) 148 (|has| |#1| (-370)))) (-2546 (((-3 $ "failed") $) 123 (|has| |#1| (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-3929 (((-1171 |#1|) $) 155) (((-1171 $) $ (-921)) 149 (|has| |#1| (-370)))) (-3712 (((-921) $) 120 (|has| |#1| (-370)))) (-1907 (((-1171 |#1|) $) 141 (|has| |#1| (-370)))) (-3866 (((-1171 |#1|) $) 140 (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) 139 (|has| |#1| (-370)))) (-1900 (($ $ (-1171 |#1|)) 142 (|has| |#1| (-370)))) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 78)) (-2759 (($) 124 (|has| |#1| (-370)) CONST)) (-2168 (($ (-921)) 121 (|has| |#1| (-370)))) (-3751 (((-112) $) 103)) (-4033 (((-1119) $) 11)) (-4067 (($) 143 (|has| |#1| (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) 131 (|has| |#1| (-370)))) (-2391 (((-420 $) $) 82)) (-2003 (((-833 (-921))) 101) (((-921)) 153)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1813 (((-771) $) 64)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-3379 (((-771) $) 136 (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) 95 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1909 (((-134)) 109)) (-2862 (($ $) 128 (|has| |#1| (-370))) (($ $ (-771)) 126 (|has| |#1| (-370)))) (-3992 (((-833 (-921)) $) 102) (((-921) $) 152)) (-2127 (((-1171 |#1|)) 154)) (-1536 (($) 133 (|has| |#1| (-370)))) (-2873 (($) 146 (|has| |#1| (-370)))) (-2770 (((-1264 |#1|) $) 158) (((-689 |#1|) (-1264 $)) 157)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 130 (|has| |#1| (-370)))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ |#1|) 110)) (-3842 (($ $) 129 (|has| |#1| (-370))) (((-3 $ "failed") $) 93 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1990 (((-1264 $)) 160) (((-1264 $) (-921)) 159)) (-1634 (((-112) $ $) 45)) (-1369 (((-112) $) 105)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2752 (($ $) 99 (|has| |#1| (-370))) (($ $ (-771)) 98 (|has| |#1| (-370)))) (-2840 (($ $) 127 (|has| |#1| (-370))) (($ $ (-771)) 125 (|has| |#1| (-370)))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 73) (($ $ |#1|) 108)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75) (($ $ |#1|) 107) (($ |#1| $) 106)))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3343 (((-112) (-112)) NIL)) (-3916 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415)))) (-2556 (($ (-1 (-112) |#1|) $) NIL)) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4060 (($ $) NIL (|has| |#1| (-1099)))) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1450 (($ |#1| $) NIL (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) NIL)) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) NIL)) (-4015 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3631 (($ $ (-566)) NIL)) (-2526 (((-771) $) NIL)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-4278 (($ (-771) |#1|) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-2761 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2903 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-4286 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4264 (($ (-644 |#1|)) NIL)) (-4101 ((|#1| $) NIL (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-3798 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) NIL)) (-3324 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3727 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-328 |#1|) (-13 (-19 |#1|) (-283 |#1|) (-10 -8 (-15 -4264 ($ (-644 |#1|))) (-15 -2526 ((-771) $)) (-15 -3631 ($ $ (-566))) (-15 -3343 ((-112) (-112))))) (-1214)) (T -328))
+((-4264 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-328 *3)))) (-2526 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-328 *3)) (-4 *3 (-1214)))) (-3631 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-328 *3)) (-4 *3 (-1214)))) (-3343 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-328 *3)) (-4 *3 (-1214)))))
+(-13 (-19 |#1|) (-283 |#1|) (-10 -8 (-15 -4264 ($ (-644 |#1|))) (-15 -2526 ((-771) $)) (-15 -3631 ($ $ (-566))) (-15 -3343 ((-112) (-112)))))
+((-1478 (((-112) $) 50)) (-2541 (((-771)) 26)) (-3834 ((|#2| $) 54) (($ $ (-921)) 124)) (-4070 (((-771)) 125)) (-2613 (($ (-1264 |#2|)) 23)) (-1771 (((-112) $) 138)) (-2719 ((|#2| $) 56) (($ $ (-921)) 121)) (-2750 (((-1171 |#2|) $) NIL) (((-1171 $) $ (-921)) 112)) (-1988 (((-1171 |#2|) $) 98)) (-3433 (((-1171 |#2|) $) 94) (((-3 (-1171 |#2|) "failed") $ $) 91)) (-1923 (($ $ (-1171 |#2|)) 62)) (-1723 (((-833 (-921))) 33) (((-921)) 51)) (-2012 (((-134)) 30)) (-2108 (((-833 (-921)) $) 35) (((-921) $) 141)) (-2348 (($) 131)) (-2543 (((-1264 |#2|) $) NIL) (((-689 |#2|) (-1264 $)) 45)) (-3226 (($ $) NIL) (((-3 $ "failed") $) 101)) (-3258 (((-112) $) 48)))
+(((-329 |#1| |#2|) (-10 -8 (-15 -3226 ((-3 |#1| "failed") |#1|)) (-15 -4070 ((-771))) (-15 -3226 (|#1| |#1|)) (-15 -3433 ((-3 (-1171 |#2|) "failed") |#1| |#1|)) (-15 -3433 ((-1171 |#2|) |#1|)) (-15 -1988 ((-1171 |#2|) |#1|)) (-15 -1923 (|#1| |#1| (-1171 |#2|))) (-15 -1771 ((-112) |#1|)) (-15 -2348 (|#1|)) (-15 -3834 (|#1| |#1| (-921))) (-15 -2719 (|#1| |#1| (-921))) (-15 -2750 ((-1171 |#1|) |#1| (-921))) (-15 -3834 (|#2| |#1|)) (-15 -2719 (|#2| |#1|)) (-15 -2108 ((-921) |#1|)) (-15 -1723 ((-921))) (-15 -2750 ((-1171 |#2|) |#1|)) (-15 -2613 (|#1| (-1264 |#2|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1|)) (-15 -2541 ((-771))) (-15 -1723 ((-833 (-921)))) (-15 -2108 ((-833 (-921)) |#1|)) (-15 -1478 ((-112) |#1|)) (-15 -3258 ((-112) |#1|)) (-15 -2012 ((-134)))) (-330 |#2|) (-365)) (T -329))
+((-2012 (*1 *2) (-12 (-4 *4 (-365)) (-5 *2 (-134)) (-5 *1 (-329 *3 *4)) (-4 *3 (-330 *4)))) (-1723 (*1 *2) (-12 (-4 *4 (-365)) (-5 *2 (-833 (-921))) (-5 *1 (-329 *3 *4)) (-4 *3 (-330 *4)))) (-2541 (*1 *2) (-12 (-4 *4 (-365)) (-5 *2 (-771)) (-5 *1 (-329 *3 *4)) (-4 *3 (-330 *4)))) (-1723 (*1 *2) (-12 (-4 *4 (-365)) (-5 *2 (-921)) (-5 *1 (-329 *3 *4)) (-4 *3 (-330 *4)))) (-4070 (*1 *2) (-12 (-4 *4 (-365)) (-5 *2 (-771)) (-5 *1 (-329 *3 *4)) (-4 *3 (-330 *4)))))
+(-10 -8 (-15 -3226 ((-3 |#1| "failed") |#1|)) (-15 -4070 ((-771))) (-15 -3226 (|#1| |#1|)) (-15 -3433 ((-3 (-1171 |#2|) "failed") |#1| |#1|)) (-15 -3433 ((-1171 |#2|) |#1|)) (-15 -1988 ((-1171 |#2|) |#1|)) (-15 -1923 (|#1| |#1| (-1171 |#2|))) (-15 -1771 ((-112) |#1|)) (-15 -2348 (|#1|)) (-15 -3834 (|#1| |#1| (-921))) (-15 -2719 (|#1| |#1| (-921))) (-15 -2750 ((-1171 |#1|) |#1| (-921))) (-15 -3834 (|#2| |#1|)) (-15 -2719 (|#2| |#1|)) (-15 -2108 ((-921) |#1|)) (-15 -1723 ((-921))) (-15 -2750 ((-1171 |#2|) |#1|)) (-15 -2613 (|#1| (-1264 |#2|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1|)) (-15 -2541 ((-771))) (-15 -1723 ((-833 (-921)))) (-15 -2108 ((-833 (-921)) |#1|)) (-15 -1478 ((-112) |#1|)) (-15 -3258 ((-112) |#1|)) (-15 -2012 ((-134))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-1478 (((-112) $) 104)) (-2541 (((-771)) 100)) (-3834 ((|#1| $) 150) (($ $ (-921)) 147 (|has| |#1| (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) 132 (|has| |#1| (-370)))) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 81)) (-3271 (((-420 $) $) 80)) (-2738 (((-112) $ $) 65)) (-4070 (((-771)) 122 (|has| |#1| (-370)))) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#1| "failed") $) 111)) (-1867 ((|#1| $) 112)) (-2613 (($ (-1264 |#1|)) 156)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) 138 (|has| |#1| (-370)))) (-2949 (($ $ $) 61)) (-2928 (((-3 $ "failed") $) 37)) (-1618 (($) 119 (|has| |#1| (-370)))) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-1676 (($) 134 (|has| |#1| (-370)))) (-3698 (((-112) $) 135 (|has| |#1| (-370)))) (-2901 (($ $ (-771)) 97 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) 96 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1784 (((-112) $) 79)) (-3227 (((-921) $) 137 (|has| |#1| (-370))) (((-833 (-921)) $) 94 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3466 (((-112) $) 35)) (-4138 (($) 145 (|has| |#1| (-370)))) (-1771 (((-112) $) 144 (|has| |#1| (-370)))) (-2719 ((|#1| $) 151) (($ $ (-921)) 148 (|has| |#1| (-370)))) (-2133 (((-3 $ "failed") $) 123 (|has| |#1| (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2750 (((-1171 |#1|) $) 155) (((-1171 $) $ (-921)) 149 (|has| |#1| (-370)))) (-1299 (((-921) $) 120 (|has| |#1| (-370)))) (-1988 (((-1171 |#1|) $) 141 (|has| |#1| (-370)))) (-3433 (((-1171 |#1|) $) 140 (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) 139 (|has| |#1| (-370)))) (-1923 (($ $ (-1171 |#1|)) 142 (|has| |#1| (-370)))) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 78)) (-3625 (($) 124 (|has| |#1| (-370)) CONST)) (-2208 (($ (-921)) 121 (|has| |#1| (-370)))) (-1737 (((-112) $) 103)) (-4056 (((-1119) $) 11)) (-4152 (($) 143 (|has| |#1| (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) 131 (|has| |#1| (-370)))) (-2473 (((-420 $) $) 82)) (-1723 (((-833 (-921))) 101) (((-921)) 153)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3470 (((-771) $) 64)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-2347 (((-771) $) 136 (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) 95 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2012 (((-134)) 109)) (-2578 (($ $) 128 (|has| |#1| (-370))) (($ $ (-771)) 126 (|has| |#1| (-370)))) (-2108 (((-833 (-921)) $) 102) (((-921) $) 152)) (-3601 (((-1171 |#1|)) 154)) (-2507 (($) 133 (|has| |#1| (-370)))) (-2348 (($) 146 (|has| |#1| (-370)))) (-2543 (((-1264 |#1|) $) 158) (((-689 |#1|) (-1264 $)) 157)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 130 (|has| |#1| (-370)))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ |#1|) 110)) (-3226 (($ $) 129 (|has| |#1| (-370))) (((-3 $ "failed") $) 93 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-1575 (((-1264 $)) 160) (((-1264 $) (-921)) 159)) (-2278 (((-112) $ $) 45)) (-3258 (((-112) $) 105)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-3583 (($ $) 99 (|has| |#1| (-370))) (($ $ (-771)) 98 (|has| |#1| (-370)))) (-2876 (($ $) 127 (|has| |#1| (-370))) (($ $ (-771)) 125 (|has| |#1| (-370)))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 73) (($ $ |#1|) 108)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75) (($ $ |#1|) 107) (($ |#1| $) 106)))
(((-330 |#1|) (-140) (-365)) (T -330))
-((-1990 (*1 *2) (-12 (-4 *3 (-365)) (-5 *2 (-1264 *1)) (-4 *1 (-330 *3)))) (-1990 (*1 *2 *3) (-12 (-5 *3 (-921)) (-4 *4 (-365)) (-5 *2 (-1264 *1)) (-4 *1 (-330 *4)))) (-2770 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1264 *3)))) (-2770 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-330 *4)) (-4 *4 (-365)) (-5 *2 (-689 *4)))) (-1547 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-365)) (-4 *1 (-330 *3)))) (-3929 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1171 *3)))) (-2127 (*1 *2) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1171 *3)))) (-2003 (*1 *2) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-921)))) (-3992 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-921)))) (-1559 (*1 *2 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-365)))) (-3817 (*1 *2 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-365)))) (-3929 (*1 *2 *1 *3) (-12 (-5 *3 (-921)) (-4 *4 (-370)) (-4 *4 (-365)) (-5 *2 (-1171 *1)) (-4 *1 (-330 *4)))) (-1559 (*1 *1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)))) (-3817 (*1 *1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)))) (-2873 (*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365)))) (-2061 (*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365)))) (-3754 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)) (-5 *2 (-112)))) (-4067 (*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365)))) (-1900 (*1 *1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-370)) (-4 *1 (-330 *3)) (-4 *3 (-365)))) (-1907 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)) (-5 *2 (-1171 *3)))) (-3866 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)) (-5 *2 (-1171 *3)))) (-3866 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)) (-5 *2 (-1171 *3)))))
-(-13 (-1283 |t#1|) (-1038 |t#1|) (-10 -8 (-15 -1990 ((-1264 $))) (-15 -1990 ((-1264 $) (-921))) (-15 -2770 ((-1264 |t#1|) $)) (-15 -2770 ((-689 |t#1|) (-1264 $))) (-15 -1547 ($ (-1264 |t#1|))) (-15 -3929 ((-1171 |t#1|) $)) (-15 -2127 ((-1171 |t#1|))) (-15 -2003 ((-921))) (-15 -3992 ((-921) $)) (-15 -1559 (|t#1| $)) (-15 -3817 (|t#1| $)) (IF (|has| |t#1| (-370)) (PROGN (-6 (-351)) (-15 -3929 ((-1171 $) $ (-921))) (-15 -1559 ($ $ (-921))) (-15 -3817 ($ $ (-921))) (-15 -2873 ($)) (-15 -2061 ($)) (-15 -3754 ((-112) $)) (-15 -4067 ($)) (-15 -1900 ($ $ (-1171 |t#1|))) (-15 -1907 ((-1171 |t#1|) $)) (-15 -3866 ((-1171 |t#1|) $)) (-15 -3866 ((-3 (-1171 |t#1|) "failed") $ $))) |%noBranch|)))
+((-1575 (*1 *2) (-12 (-4 *3 (-365)) (-5 *2 (-1264 *1)) (-4 *1 (-330 *3)))) (-1575 (*1 *2 *3) (-12 (-5 *3 (-921)) (-4 *4 (-365)) (-5 *2 (-1264 *1)) (-4 *1 (-330 *4)))) (-2543 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1264 *3)))) (-2543 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-330 *4)) (-4 *4 (-365)) (-5 *2 (-689 *4)))) (-2613 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-365)) (-4 *1 (-330 *3)))) (-2750 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1171 *3)))) (-3601 (*1 *2) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1171 *3)))) (-1723 (*1 *2) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-921)))) (-2108 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-921)))) (-2719 (*1 *2 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-365)))) (-3834 (*1 *2 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-365)))) (-2750 (*1 *2 *1 *3) (-12 (-5 *3 (-921)) (-4 *4 (-370)) (-4 *4 (-365)) (-5 *2 (-1171 *1)) (-4 *1 (-330 *4)))) (-2719 (*1 *1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)))) (-3834 (*1 *1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)))) (-2348 (*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365)))) (-4138 (*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365)))) (-1771 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)) (-5 *2 (-112)))) (-4152 (*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365)))) (-1923 (*1 *1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-370)) (-4 *1 (-330 *3)) (-4 *3 (-365)))) (-1988 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)) (-5 *2 (-1171 *3)))) (-3433 (*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)) (-5 *2 (-1171 *3)))) (-3433 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)) (-5 *2 (-1171 *3)))))
+(-13 (-1283 |t#1|) (-1038 |t#1|) (-10 -8 (-15 -1575 ((-1264 $))) (-15 -1575 ((-1264 $) (-921))) (-15 -2543 ((-1264 |t#1|) $)) (-15 -2543 ((-689 |t#1|) (-1264 $))) (-15 -2613 ($ (-1264 |t#1|))) (-15 -2750 ((-1171 |t#1|) $)) (-15 -3601 ((-1171 |t#1|))) (-15 -1723 ((-921))) (-15 -2108 ((-921) $)) (-15 -2719 (|t#1| $)) (-15 -3834 (|t#1| $)) (IF (|has| |t#1| (-370)) (PROGN (-6 (-351)) (-15 -2750 ((-1171 $) $ (-921))) (-15 -2719 ($ $ (-921))) (-15 -3834 ($ $ (-921))) (-15 -2348 ($)) (-15 -4138 ($)) (-15 -1771 ((-112) $)) (-15 -4152 ($)) (-15 -1923 ($ $ (-1171 |t#1|))) (-15 -1988 ((-1171 |t#1|) $)) (-15 -3433 ((-1171 |t#1|) $)) (-15 -3433 ((-3 (-1171 |t#1|) "failed") $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -2805 (|has| |#1| (-370)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-616 #0#) . T) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-233) |has| |#1| (-370)) ((-243) . T) ((-291) . T) ((-308) . T) ((-1283 |#1|) . T) ((-365) . T) ((-404) -2805 (|has| |#1| (-370)) (|has| |#1| (-145))) ((-370) |has| |#1| (-370)) ((-351) |has| |#1| (-370)) ((-454) . T) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) . T) ((-640 |#1|) . T) ((-640 $) . T) ((-717 #0#) . T) ((-717 |#1|) . T) ((-717 $) . T) ((-726) . T) ((-920) . T) ((-1038 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 |#1|) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1150) |has| |#1| (-370)) ((-1218) . T) ((-1271 |#1|) . T))
-((-2985 (((-112) $ $) NIL)) (-4241 (($ (-1174) $) 104)) (-2129 (($) 93)) (-2116 (((-1119) (-1119)) 9)) (-4058 (($) 94)) (-3246 (($) 108) (($ (-317 (-699))) 116) (($ (-317 (-701))) 112) (($ (-317 (-694))) 120) (($ (-317 (-381))) 127) (($ (-317 (-566))) 123) (($ (-317 (-169 (-381)))) 131)) (-2937 (($ (-1174) $) 105)) (-1752 (($ (-644 (-862))) 95)) (-1679 (((-1269) $) 91)) (-4170 (((-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")) $) 35)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2773 (($ (-1119)) 60)) (-3389 (((-1103) $) 32)) (-4382 (($ (-1091 (-952 (-566))) $) 101) (($ (-1091 (-952 (-566))) (-952 (-566)) $) 102)) (-3907 (($ (-1119)) 103)) (-3154 (($ (-1174) $) 133) (($ (-1174) $ $) 134)) (-1995 (($ (-1175) (-644 (-1175))) 92)) (-1654 (($ (-1157)) 98) (($ (-644 (-1157))) 96)) (-2512 (((-862) $) 136)) (-3225 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1175)) (|:| |arrayIndex| (-644 (-952 (-566)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -1316 (-862)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1175)) (|:| |rand| (-862)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1174)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -4194 (-112)) (|:| -2212 (-2 (|:| |ints2Floats?| (-112)) (|:| -1316 (-862)))))) (|:| |blockBranch| (-644 $)) (|:| |commentBranch| (-644 (-1157))) (|:| |callBranch| (-1157)) (|:| |forBranch| (-2 (|:| -4344 (-1091 (-952 (-566)))) (|:| |span| (-952 (-566))) (|:| -2639 $))) (|:| |labelBranch| (-1119)) (|:| |loopBranch| (-2 (|:| |switch| (-1174)) (|:| -2639 $))) (|:| |commonBranch| (-2 (|:| -2628 (-1175)) (|:| |contents| (-644 (-1175))))) (|:| |printBranch| (-644 (-862)))) $) 51)) (-3488 (($ (-1157)) 205)) (-3242 (($ (-644 $)) 132)) (-3122 (((-112) $ $) NIL)) (-1879 (($ (-1175) (-1157)) 138) (($ (-1175) (-317 (-701))) 178) (($ (-1175) (-317 (-699))) 179) (($ (-1175) (-317 (-694))) 180) (($ (-1175) (-689 (-701))) 141) (($ (-1175) (-689 (-699))) 144) (($ (-1175) (-689 (-694))) 147) (($ (-1175) (-1264 (-701))) 150) (($ (-1175) (-1264 (-699))) 153) (($ (-1175) (-1264 (-694))) 156) (($ (-1175) (-689 (-317 (-701)))) 159) (($ (-1175) (-689 (-317 (-699)))) 162) (($ (-1175) (-689 (-317 (-694)))) 165) (($ (-1175) (-1264 (-317 (-701)))) 168) (($ (-1175) (-1264 (-317 (-699)))) 171) (($ (-1175) (-1264 (-317 (-694)))) 174) (($ (-1175) (-644 (-952 (-566))) (-317 (-701))) 175) (($ (-1175) (-644 (-952 (-566))) (-317 (-699))) 176) (($ (-1175) (-644 (-952 (-566))) (-317 (-694))) 177) (($ (-1175) (-317 (-566))) 202) (($ (-1175) (-317 (-381))) 203) (($ (-1175) (-317 (-169 (-381)))) 204) (($ (-1175) (-689 (-317 (-566)))) 183) (($ (-1175) (-689 (-317 (-381)))) 186) (($ (-1175) (-689 (-317 (-169 (-381))))) 189) (($ (-1175) (-1264 (-317 (-566)))) 192) (($ (-1175) (-1264 (-317 (-381)))) 195) (($ (-1175) (-1264 (-317 (-169 (-381))))) 198) (($ (-1175) (-644 (-952 (-566))) (-317 (-566))) 199) (($ (-1175) (-644 (-952 (-566))) (-317 (-381))) 200) (($ (-1175) (-644 (-952 (-566))) (-317 (-169 (-381)))) 201)) (-2940 (((-112) $ $) NIL)))
-(((-331) (-13 (-1099) (-10 -8 (-15 -4382 ($ (-1091 (-952 (-566))) $)) (-15 -4382 ($ (-1091 (-952 (-566))) (-952 (-566)) $)) (-15 -4241 ($ (-1174) $)) (-15 -2937 ($ (-1174) $)) (-15 -2773 ($ (-1119))) (-15 -3907 ($ (-1119))) (-15 -1654 ($ (-1157))) (-15 -1654 ($ (-644 (-1157)))) (-15 -3488 ($ (-1157))) (-15 -3246 ($)) (-15 -3246 ($ (-317 (-699)))) (-15 -3246 ($ (-317 (-701)))) (-15 -3246 ($ (-317 (-694)))) (-15 -3246 ($ (-317 (-381)))) (-15 -3246 ($ (-317 (-566)))) (-15 -3246 ($ (-317 (-169 (-381))))) (-15 -3154 ($ (-1174) $)) (-15 -3154 ($ (-1174) $ $)) (-15 -1879 ($ (-1175) (-1157))) (-15 -1879 ($ (-1175) (-317 (-701)))) (-15 -1879 ($ (-1175) (-317 (-699)))) (-15 -1879 ($ (-1175) (-317 (-694)))) (-15 -1879 ($ (-1175) (-689 (-701)))) (-15 -1879 ($ (-1175) (-689 (-699)))) (-15 -1879 ($ (-1175) (-689 (-694)))) (-15 -1879 ($ (-1175) (-1264 (-701)))) (-15 -1879 ($ (-1175) (-1264 (-699)))) (-15 -1879 ($ (-1175) (-1264 (-694)))) (-15 -1879 ($ (-1175) (-689 (-317 (-701))))) (-15 -1879 ($ (-1175) (-689 (-317 (-699))))) (-15 -1879 ($ (-1175) (-689 (-317 (-694))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-701))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-699))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-694))))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-701)))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-699)))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-694)))) (-15 -1879 ($ (-1175) (-317 (-566)))) (-15 -1879 ($ (-1175) (-317 (-381)))) (-15 -1879 ($ (-1175) (-317 (-169 (-381))))) (-15 -1879 ($ (-1175) (-689 (-317 (-566))))) (-15 -1879 ($ (-1175) (-689 (-317 (-381))))) (-15 -1879 ($ (-1175) (-689 (-317 (-169 (-381)))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-566))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-381))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-169 (-381)))))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-566)))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-381)))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-169 (-381))))) (-15 -3242 ($ (-644 $))) (-15 -2129 ($)) (-15 -4058 ($)) (-15 -1752 ($ (-644 (-862)))) (-15 -1995 ($ (-1175) (-644 (-1175)))) (-15 -4170 ((-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 -3225 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1175)) (|:| |arrayIndex| (-644 (-952 (-566)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -1316 (-862)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1175)) (|:| |rand| (-862)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1174)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -4194 (-112)) (|:| -2212 (-2 (|:| |ints2Floats?| (-112)) (|:| -1316 (-862)))))) (|:| |blockBranch| (-644 $)) (|:| |commentBranch| (-644 (-1157))) (|:| |callBranch| (-1157)) (|:| |forBranch| (-2 (|:| -4344 (-1091 (-952 (-566)))) (|:| |span| (-952 (-566))) (|:| -2639 $))) (|:| |labelBranch| (-1119)) (|:| |loopBranch| (-2 (|:| |switch| (-1174)) (|:| -2639 $))) (|:| |commonBranch| (-2 (|:| -2628 (-1175)) (|:| |contents| (-644 (-1175))))) (|:| |printBranch| (-644 (-862)))) $)) (-15 -1679 ((-1269) $)) (-15 -3389 ((-1103) $)) (-15 -2116 ((-1119) (-1119)))))) (T -331))
-((-4382 (*1 *1 *2 *1) (-12 (-5 *2 (-1091 (-952 (-566)))) (-5 *1 (-331)))) (-4382 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1091 (-952 (-566)))) (-5 *3 (-952 (-566))) (-5 *1 (-331)))) (-4241 (*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))) (-2937 (*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))) (-2773 (*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))) (-3907 (*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))) (-1654 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-331)))) (-1654 (*1 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-331)))) (-3488 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-331)))) (-3246 (*1 *1) (-5 *1 (-331))) (-3246 (*1 *1 *2) (-12 (-5 *2 (-317 (-699))) (-5 *1 (-331)))) (-3246 (*1 *1 *2) (-12 (-5 *2 (-317 (-701))) (-5 *1 (-331)))) (-3246 (*1 *1 *2) (-12 (-5 *2 (-317 (-694))) (-5 *1 (-331)))) (-3246 (*1 *1 *2) (-12 (-5 *2 (-317 (-381))) (-5 *1 (-331)))) (-3246 (*1 *1 *2) (-12 (-5 *2 (-317 (-566))) (-5 *1 (-331)))) (-3246 (*1 *1 *2) (-12 (-5 *2 (-317 (-169 (-381)))) (-5 *1 (-331)))) (-3154 (*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))) (-3154 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1157)) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-701))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-699))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-694))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-701))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-699))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-694))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-701))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-699))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-694))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-701)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-699)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-694)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-701)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-699)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-694)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-701))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-699))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-694))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-566))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-381))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-169 (-381)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-566)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-381)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-169 (-381))))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-566)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-381)))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-169 (-381))))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-566))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-381))) (-5 *1 (-331)))) (-1879 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-169 (-381)))) (-5 *1 (-331)))) (-3242 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-5 *1 (-331)))) (-2129 (*1 *1) (-5 *1 (-331))) (-4058 (*1 *1) (-5 *1 (-331))) (-1752 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-331)))) (-1995 (*1 *1 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1175)) (-5 *1 (-331)))) (-4170 (*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 (-331)))) (-3225 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1175)) (|:| |arrayIndex| (-644 (-952 (-566)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -1316 (-862)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1175)) (|:| |rand| (-862)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1174)) (|:| |thenClause| (-331)) (|:| |elseClause| (-331)))) (|:| |returnBranch| (-2 (|:| -4194 (-112)) (|:| -2212 (-2 (|:| |ints2Floats?| (-112)) (|:| -1316 (-862)))))) (|:| |blockBranch| (-644 (-331))) (|:| |commentBranch| (-644 (-1157))) (|:| |callBranch| (-1157)) (|:| |forBranch| (-2 (|:| -4344 (-1091 (-952 (-566)))) (|:| |span| (-952 (-566))) (|:| -2639 (-331)))) (|:| |labelBranch| (-1119)) (|:| |loopBranch| (-2 (|:| |switch| (-1174)) (|:| -2639 (-331)))) (|:| |commonBranch| (-2 (|:| -2628 (-1175)) (|:| |contents| (-644 (-1175))))) (|:| |printBranch| (-644 (-862))))) (-5 *1 (-331)))) (-1679 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-331)))) (-3389 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-331)))) (-2116 (*1 *2 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))))
-(-13 (-1099) (-10 -8 (-15 -4382 ($ (-1091 (-952 (-566))) $)) (-15 -4382 ($ (-1091 (-952 (-566))) (-952 (-566)) $)) (-15 -4241 ($ (-1174) $)) (-15 -2937 ($ (-1174) $)) (-15 -2773 ($ (-1119))) (-15 -3907 ($ (-1119))) (-15 -1654 ($ (-1157))) (-15 -1654 ($ (-644 (-1157)))) (-15 -3488 ($ (-1157))) (-15 -3246 ($)) (-15 -3246 ($ (-317 (-699)))) (-15 -3246 ($ (-317 (-701)))) (-15 -3246 ($ (-317 (-694)))) (-15 -3246 ($ (-317 (-381)))) (-15 -3246 ($ (-317 (-566)))) (-15 -3246 ($ (-317 (-169 (-381))))) (-15 -3154 ($ (-1174) $)) (-15 -3154 ($ (-1174) $ $)) (-15 -1879 ($ (-1175) (-1157))) (-15 -1879 ($ (-1175) (-317 (-701)))) (-15 -1879 ($ (-1175) (-317 (-699)))) (-15 -1879 ($ (-1175) (-317 (-694)))) (-15 -1879 ($ (-1175) (-689 (-701)))) (-15 -1879 ($ (-1175) (-689 (-699)))) (-15 -1879 ($ (-1175) (-689 (-694)))) (-15 -1879 ($ (-1175) (-1264 (-701)))) (-15 -1879 ($ (-1175) (-1264 (-699)))) (-15 -1879 ($ (-1175) (-1264 (-694)))) (-15 -1879 ($ (-1175) (-689 (-317 (-701))))) (-15 -1879 ($ (-1175) (-689 (-317 (-699))))) (-15 -1879 ($ (-1175) (-689 (-317 (-694))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-701))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-699))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-694))))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-701)))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-699)))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-694)))) (-15 -1879 ($ (-1175) (-317 (-566)))) (-15 -1879 ($ (-1175) (-317 (-381)))) (-15 -1879 ($ (-1175) (-317 (-169 (-381))))) (-15 -1879 ($ (-1175) (-689 (-317 (-566))))) (-15 -1879 ($ (-1175) (-689 (-317 (-381))))) (-15 -1879 ($ (-1175) (-689 (-317 (-169 (-381)))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-566))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-381))))) (-15 -1879 ($ (-1175) (-1264 (-317 (-169 (-381)))))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-566)))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-381)))) (-15 -1879 ($ (-1175) (-644 (-952 (-566))) (-317 (-169 (-381))))) (-15 -3242 ($ (-644 $))) (-15 -2129 ($)) (-15 -4058 ($)) (-15 -1752 ($ (-644 (-862)))) (-15 -1995 ($ (-1175) (-644 (-1175)))) (-15 -4170 ((-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 -3225 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1175)) (|:| |arrayIndex| (-644 (-952 (-566)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -1316 (-862)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1175)) (|:| |rand| (-862)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1174)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -4194 (-112)) (|:| -2212 (-2 (|:| |ints2Floats?| (-112)) (|:| -1316 (-862)))))) (|:| |blockBranch| (-644 $)) (|:| |commentBranch| (-644 (-1157))) (|:| |callBranch| (-1157)) (|:| |forBranch| (-2 (|:| -4344 (-1091 (-952 (-566)))) (|:| |span| (-952 (-566))) (|:| -2639 $))) (|:| |labelBranch| (-1119)) (|:| |loopBranch| (-2 (|:| |switch| (-1174)) (|:| -2639 $))) (|:| |commonBranch| (-2 (|:| -2628 (-1175)) (|:| |contents| (-644 (-1175))))) (|:| |printBranch| (-644 (-862)))) $)) (-15 -1679 ((-1269) $)) (-15 -3389 ((-1103) $)) (-15 -2116 ((-1119) (-1119)))))
-((-2985 (((-112) $ $) NIL)) (-3350 (((-112) $) 13)) (-3076 (($ |#1|) 10)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3089 (($ |#1|) 12)) (-2512 (((-862) $) 19)) (-3122 (((-112) $ $) NIL)) (-2241 ((|#1| $) 14)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 21)))
-(((-332 |#1|) (-13 (-850) (-10 -8 (-15 -3076 ($ |#1|)) (-15 -3089 ($ |#1|)) (-15 -3350 ((-112) $)) (-15 -2241 (|#1| $)))) (-850)) (T -332))
-((-3076 (*1 *1 *2) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850)))) (-3089 (*1 *1 *2) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850)))) (-3350 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-332 *3)) (-4 *3 (-850)))) (-2241 (*1 *2 *1) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850)))))
-(-13 (-850) (-10 -8 (-15 -3076 ($ |#1|)) (-15 -3089 ($ |#1|)) (-15 -3350 ((-112) $)) (-15 -2241 (|#1| $))))
-((-2305 (((-331) (-1175) (-952 (-566))) 23)) (-3805 (((-331) (-1175) (-952 (-566))) 27)) (-4305 (((-331) (-1175) (-1091 (-952 (-566))) (-1091 (-952 (-566)))) 26) (((-331) (-1175) (-952 (-566)) (-952 (-566))) 24)) (-2199 (((-331) (-1175) (-952 (-566))) 31)))
-(((-333) (-10 -7 (-15 -2305 ((-331) (-1175) (-952 (-566)))) (-15 -4305 ((-331) (-1175) (-952 (-566)) (-952 (-566)))) (-15 -4305 ((-331) (-1175) (-1091 (-952 (-566))) (-1091 (-952 (-566))))) (-15 -3805 ((-331) (-1175) (-952 (-566)))) (-15 -2199 ((-331) (-1175) (-952 (-566)))))) (T -333))
-((-2199 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331)) (-5 *1 (-333)))) (-3805 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331)) (-5 *1 (-333)))) (-4305 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-1091 (-952 (-566)))) (-5 *2 (-331)) (-5 *1 (-333)))) (-4305 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331)) (-5 *1 (-333)))) (-2305 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331)) (-5 *1 (-333)))))
-(-10 -7 (-15 -2305 ((-331) (-1175) (-952 (-566)))) (-15 -4305 ((-331) (-1175) (-952 (-566)) (-952 (-566)))) (-15 -4305 ((-331) (-1175) (-1091 (-952 (-566))) (-1091 (-952 (-566))))) (-15 -3805 ((-331) (-1175) (-952 (-566)))) (-15 -2199 ((-331) (-1175) (-952 (-566)))))
-((-2985 (((-112) $ $) NIL)) (-2771 (((-508) $) 19)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3080 (((-958 (-771)) $) 17)) (-2889 (((-250) $) 7)) (-2512 (((-862) $) 25)) (-4239 (((-958 (-183)) $) 15)) (-3122 (((-112) $ $) NIL)) (-1491 (((-644 (-873 (-1180) (-771))) $) 12)) (-2940 (((-112) $ $) 21)))
-(((-334) (-13 (-1099) (-10 -8 (-15 -2889 ((-250) $)) (-15 -1491 ((-644 (-873 (-1180) (-771))) $)) (-15 -3080 ((-958 (-771)) $)) (-15 -4239 ((-958 (-183)) $)) (-15 -2771 ((-508) $))))) (T -334))
-((-2889 (*1 *2 *1) (-12 (-5 *2 (-250)) (-5 *1 (-334)))) (-1491 (*1 *2 *1) (-12 (-5 *2 (-644 (-873 (-1180) (-771)))) (-5 *1 (-334)))) (-3080 (*1 *2 *1) (-12 (-5 *2 (-958 (-771))) (-5 *1 (-334)))) (-4239 (*1 *2 *1) (-12 (-5 *2 (-958 (-183))) (-5 *1 (-334)))) (-2771 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-334)))))
-(-13 (-1099) (-10 -8 (-15 -2889 ((-250) $)) (-15 -1491 ((-644 (-873 (-1180) (-771))) $)) (-15 -3080 ((-958 (-771)) $)) (-15 -4239 ((-958 (-183)) $)) (-15 -2771 ((-508) $))))
-((-3077 (((-338 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-338 |#1| |#2| |#3| |#4|)) 33)))
-(((-335 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3077 ((-338 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-338 |#1| |#2| |#3| |#4|)))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|) (-365) (-1240 |#5|) (-1240 (-409 |#6|)) (-344 |#5| |#6| |#7|)) (T -335))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-338 *5 *6 *7 *8)) (-4 *5 (-365)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-4 *8 (-344 *5 *6 *7)) (-4 *9 (-365)) (-4 *10 (-1240 *9)) (-4 *11 (-1240 (-409 *10))) (-5 *2 (-338 *9 *10 *11 *12)) (-5 *1 (-335 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-344 *9 *10 *11)))))
-(-10 -7 (-15 -3077 ((-338 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-338 |#1| |#2| |#3| |#4|))))
-((-2011 (((-112) $) 14)))
-(((-336 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2011 ((-112) |#1|))) (-337 |#2| |#3| |#4| |#5|) (-365) (-1240 |#2|) (-1240 (-409 |#3|)) (-344 |#2| |#3| |#4|)) (T -336))
-NIL
-(-10 -8 (-15 -2011 ((-112) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-4362 (($ $) 29)) (-2011 (((-112) $) 28)) (-2878 (((-1157) $) 10)) (-4024 (((-415 |#2| (-409 |#2|) |#3| |#4|) $) 35)) (-4033 (((-1119) $) 11)) (-4067 (((-3 |#4| "failed") $) 27)) (-4330 (($ (-415 |#2| (-409 |#2|) |#3| |#4|)) 34) (($ |#4|) 33) (($ |#1| |#1|) 32) (($ |#1| |#1| (-566)) 31) (($ |#4| |#2| |#2| |#2| |#1|) 26)) (-3282 (((-2 (|:| -4224 (-415 |#2| (-409 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 30)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24)))
+((-3009 (((-112) $ $) NIL)) (-2708 (($ (-1174) $) 104)) (-2993 (($) 93)) (-3498 (((-1119) (-1119)) 9)) (-1753 (($) 94)) (-3621 (($) 108) (($ (-317 (-699))) 116) (($ (-317 (-701))) 112) (($ (-317 (-694))) 120) (($ (-317 (-381))) 127) (($ (-317 (-566))) 123) (($ (-317 (-169 (-381)))) 131)) (-1743 (($ (-1174) $) 105)) (-4091 (($ (-644 (-862))) 95)) (-1476 (((-1269) $) 91)) (-2471 (((-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")) $) 35)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2572 (($ (-1119)) 60)) (-4292 (((-1103) $) 32)) (-1615 (($ (-1091 (-952 (-566))) $) 101) (($ (-1091 (-952 (-566))) (-952 (-566)) $) 102)) (-3952 (($ (-1119)) 103)) (-3182 (($ (-1174) $) 133) (($ (-1174) $ $) 134)) (-2077 (($ (-1175) (-644 (-1175))) 92)) (-2554 (($ (-1157)) 98) (($ (-644 (-1157))) 96)) (-3780 (((-862) $) 136)) (-3248 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1175)) (|:| |arrayIndex| (-644 (-952 (-566)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -1355 (-862)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1175)) (|:| |rand| (-862)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1174)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3461 (-112)) (|:| -2252 (-2 (|:| |ints2Floats?| (-112)) (|:| -1355 (-862)))))) (|:| |blockBranch| (-644 $)) (|:| |commentBranch| (-644 (-1157))) (|:| |callBranch| (-1157)) (|:| |forBranch| (-2 (|:| -2498 (-1091 (-952 (-566)))) (|:| |span| (-952 (-566))) (|:| -1398 $))) (|:| |labelBranch| (-1119)) (|:| |loopBranch| (-2 (|:| |switch| (-1174)) (|:| -1398 $))) (|:| |commonBranch| (-2 (|:| -2639 (-1175)) (|:| |contents| (-644 (-1175))))) (|:| |printBranch| (-644 (-862)))) $) 51)) (-3520 (($ (-1157)) 205)) (-3580 (($ (-644 $)) 132)) (-3801 (((-112) $ $) NIL)) (-2900 (($ (-1175) (-1157)) 138) (($ (-1175) (-317 (-701))) 178) (($ (-1175) (-317 (-699))) 179) (($ (-1175) (-317 (-694))) 180) (($ (-1175) (-689 (-701))) 141) (($ (-1175) (-689 (-699))) 144) (($ (-1175) (-689 (-694))) 147) (($ (-1175) (-1264 (-701))) 150) (($ (-1175) (-1264 (-699))) 153) (($ (-1175) (-1264 (-694))) 156) (($ (-1175) (-689 (-317 (-701)))) 159) (($ (-1175) (-689 (-317 (-699)))) 162) (($ (-1175) (-689 (-317 (-694)))) 165) (($ (-1175) (-1264 (-317 (-701)))) 168) (($ (-1175) (-1264 (-317 (-699)))) 171) (($ (-1175) (-1264 (-317 (-694)))) 174) (($ (-1175) (-644 (-952 (-566))) (-317 (-701))) 175) (($ (-1175) (-644 (-952 (-566))) (-317 (-699))) 176) (($ (-1175) (-644 (-952 (-566))) (-317 (-694))) 177) (($ (-1175) (-317 (-566))) 202) (($ (-1175) (-317 (-381))) 203) (($ (-1175) (-317 (-169 (-381)))) 204) (($ (-1175) (-689 (-317 (-566)))) 183) (($ (-1175) (-689 (-317 (-381)))) 186) (($ (-1175) (-689 (-317 (-169 (-381))))) 189) (($ (-1175) (-1264 (-317 (-566)))) 192) (($ (-1175) (-1264 (-317 (-381)))) 195) (($ (-1175) (-1264 (-317 (-169 (-381))))) 198) (($ (-1175) (-644 (-952 (-566))) (-317 (-566))) 199) (($ (-1175) (-644 (-952 (-566))) (-317 (-381))) 200) (($ (-1175) (-644 (-952 (-566))) (-317 (-169 (-381)))) 201)) (-2950 (((-112) $ $) NIL)))
+(((-331) (-13 (-1099) (-10 -8 (-15 -1615 ($ (-1091 (-952 (-566))) $)) (-15 -1615 ($ (-1091 (-952 (-566))) (-952 (-566)) $)) (-15 -2708 ($ (-1174) $)) (-15 -1743 ($ (-1174) $)) (-15 -2572 ($ (-1119))) (-15 -3952 ($ (-1119))) (-15 -2554 ($ (-1157))) (-15 -2554 ($ (-644 (-1157)))) (-15 -3520 ($ (-1157))) (-15 -3621 ($)) (-15 -3621 ($ (-317 (-699)))) (-15 -3621 ($ (-317 (-701)))) (-15 -3621 ($ (-317 (-694)))) (-15 -3621 ($ (-317 (-381)))) (-15 -3621 ($ (-317 (-566)))) (-15 -3621 ($ (-317 (-169 (-381))))) (-15 -3182 ($ (-1174) $)) (-15 -3182 ($ (-1174) $ $)) (-15 -2900 ($ (-1175) (-1157))) (-15 -2900 ($ (-1175) (-317 (-701)))) (-15 -2900 ($ (-1175) (-317 (-699)))) (-15 -2900 ($ (-1175) (-317 (-694)))) (-15 -2900 ($ (-1175) (-689 (-701)))) (-15 -2900 ($ (-1175) (-689 (-699)))) (-15 -2900 ($ (-1175) (-689 (-694)))) (-15 -2900 ($ (-1175) (-1264 (-701)))) (-15 -2900 ($ (-1175) (-1264 (-699)))) (-15 -2900 ($ (-1175) (-1264 (-694)))) (-15 -2900 ($ (-1175) (-689 (-317 (-701))))) (-15 -2900 ($ (-1175) (-689 (-317 (-699))))) (-15 -2900 ($ (-1175) (-689 (-317 (-694))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-701))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-699))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-694))))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-701)))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-699)))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-694)))) (-15 -2900 ($ (-1175) (-317 (-566)))) (-15 -2900 ($ (-1175) (-317 (-381)))) (-15 -2900 ($ (-1175) (-317 (-169 (-381))))) (-15 -2900 ($ (-1175) (-689 (-317 (-566))))) (-15 -2900 ($ (-1175) (-689 (-317 (-381))))) (-15 -2900 ($ (-1175) (-689 (-317 (-169 (-381)))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-566))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-381))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-169 (-381)))))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-566)))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-381)))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-169 (-381))))) (-15 -3580 ($ (-644 $))) (-15 -2993 ($)) (-15 -1753 ($)) (-15 -4091 ($ (-644 (-862)))) (-15 -2077 ($ (-1175) (-644 (-1175)))) (-15 -2471 ((-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 -3248 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1175)) (|:| |arrayIndex| (-644 (-952 (-566)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -1355 (-862)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1175)) (|:| |rand| (-862)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1174)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3461 (-112)) (|:| -2252 (-2 (|:| |ints2Floats?| (-112)) (|:| -1355 (-862)))))) (|:| |blockBranch| (-644 $)) (|:| |commentBranch| (-644 (-1157))) (|:| |callBranch| (-1157)) (|:| |forBranch| (-2 (|:| -2498 (-1091 (-952 (-566)))) (|:| |span| (-952 (-566))) (|:| -1398 $))) (|:| |labelBranch| (-1119)) (|:| |loopBranch| (-2 (|:| |switch| (-1174)) (|:| -1398 $))) (|:| |commonBranch| (-2 (|:| -2639 (-1175)) (|:| |contents| (-644 (-1175))))) (|:| |printBranch| (-644 (-862)))) $)) (-15 -1476 ((-1269) $)) (-15 -4292 ((-1103) $)) (-15 -3498 ((-1119) (-1119)))))) (T -331))
+((-1615 (*1 *1 *2 *1) (-12 (-5 *2 (-1091 (-952 (-566)))) (-5 *1 (-331)))) (-1615 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1091 (-952 (-566)))) (-5 *3 (-952 (-566))) (-5 *1 (-331)))) (-2708 (*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))) (-1743 (*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))) (-2572 (*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))) (-3952 (*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))) (-2554 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-331)))) (-2554 (*1 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-331)))) (-3520 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-331)))) (-3621 (*1 *1) (-5 *1 (-331))) (-3621 (*1 *1 *2) (-12 (-5 *2 (-317 (-699))) (-5 *1 (-331)))) (-3621 (*1 *1 *2) (-12 (-5 *2 (-317 (-701))) (-5 *1 (-331)))) (-3621 (*1 *1 *2) (-12 (-5 *2 (-317 (-694))) (-5 *1 (-331)))) (-3621 (*1 *1 *2) (-12 (-5 *2 (-317 (-381))) (-5 *1 (-331)))) (-3621 (*1 *1 *2) (-12 (-5 *2 (-317 (-566))) (-5 *1 (-331)))) (-3621 (*1 *1 *2) (-12 (-5 *2 (-317 (-169 (-381)))) (-5 *1 (-331)))) (-3182 (*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))) (-3182 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1157)) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-701))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-699))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-694))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-701))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-699))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-694))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-701))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-699))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-694))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-701)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-699)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-694)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-701)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-699)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-694)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-701))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-699))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-694))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-566))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-381))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-169 (-381)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-566)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-381)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-169 (-381))))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-566)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-381)))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-169 (-381))))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-566))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-381))) (-5 *1 (-331)))) (-2900 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-317 (-169 (-381)))) (-5 *1 (-331)))) (-3580 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-5 *1 (-331)))) (-2993 (*1 *1) (-5 *1 (-331))) (-1753 (*1 *1) (-5 *1 (-331))) (-4091 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-331)))) (-2077 (*1 *1 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1175)) (-5 *1 (-331)))) (-2471 (*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 (-331)))) (-3248 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1175)) (|:| |arrayIndex| (-644 (-952 (-566)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -1355 (-862)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1175)) (|:| |rand| (-862)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1174)) (|:| |thenClause| (-331)) (|:| |elseClause| (-331)))) (|:| |returnBranch| (-2 (|:| -3461 (-112)) (|:| -2252 (-2 (|:| |ints2Floats?| (-112)) (|:| -1355 (-862)))))) (|:| |blockBranch| (-644 (-331))) (|:| |commentBranch| (-644 (-1157))) (|:| |callBranch| (-1157)) (|:| |forBranch| (-2 (|:| -2498 (-1091 (-952 (-566)))) (|:| |span| (-952 (-566))) (|:| -1398 (-331)))) (|:| |labelBranch| (-1119)) (|:| |loopBranch| (-2 (|:| |switch| (-1174)) (|:| -1398 (-331)))) (|:| |commonBranch| (-2 (|:| -2639 (-1175)) (|:| |contents| (-644 (-1175))))) (|:| |printBranch| (-644 (-862))))) (-5 *1 (-331)))) (-1476 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-331)))) (-4292 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-331)))) (-3498 (*1 *2 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))))
+(-13 (-1099) (-10 -8 (-15 -1615 ($ (-1091 (-952 (-566))) $)) (-15 -1615 ($ (-1091 (-952 (-566))) (-952 (-566)) $)) (-15 -2708 ($ (-1174) $)) (-15 -1743 ($ (-1174) $)) (-15 -2572 ($ (-1119))) (-15 -3952 ($ (-1119))) (-15 -2554 ($ (-1157))) (-15 -2554 ($ (-644 (-1157)))) (-15 -3520 ($ (-1157))) (-15 -3621 ($)) (-15 -3621 ($ (-317 (-699)))) (-15 -3621 ($ (-317 (-701)))) (-15 -3621 ($ (-317 (-694)))) (-15 -3621 ($ (-317 (-381)))) (-15 -3621 ($ (-317 (-566)))) (-15 -3621 ($ (-317 (-169 (-381))))) (-15 -3182 ($ (-1174) $)) (-15 -3182 ($ (-1174) $ $)) (-15 -2900 ($ (-1175) (-1157))) (-15 -2900 ($ (-1175) (-317 (-701)))) (-15 -2900 ($ (-1175) (-317 (-699)))) (-15 -2900 ($ (-1175) (-317 (-694)))) (-15 -2900 ($ (-1175) (-689 (-701)))) (-15 -2900 ($ (-1175) (-689 (-699)))) (-15 -2900 ($ (-1175) (-689 (-694)))) (-15 -2900 ($ (-1175) (-1264 (-701)))) (-15 -2900 ($ (-1175) (-1264 (-699)))) (-15 -2900 ($ (-1175) (-1264 (-694)))) (-15 -2900 ($ (-1175) (-689 (-317 (-701))))) (-15 -2900 ($ (-1175) (-689 (-317 (-699))))) (-15 -2900 ($ (-1175) (-689 (-317 (-694))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-701))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-699))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-694))))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-701)))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-699)))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-694)))) (-15 -2900 ($ (-1175) (-317 (-566)))) (-15 -2900 ($ (-1175) (-317 (-381)))) (-15 -2900 ($ (-1175) (-317 (-169 (-381))))) (-15 -2900 ($ (-1175) (-689 (-317 (-566))))) (-15 -2900 ($ (-1175) (-689 (-317 (-381))))) (-15 -2900 ($ (-1175) (-689 (-317 (-169 (-381)))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-566))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-381))))) (-15 -2900 ($ (-1175) (-1264 (-317 (-169 (-381)))))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-566)))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-381)))) (-15 -2900 ($ (-1175) (-644 (-952 (-566))) (-317 (-169 (-381))))) (-15 -3580 ($ (-644 $))) (-15 -2993 ($)) (-15 -1753 ($)) (-15 -4091 ($ (-644 (-862)))) (-15 -2077 ($ (-1175) (-644 (-1175)))) (-15 -2471 ((-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 -3248 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1175)) (|:| |arrayIndex| (-644 (-952 (-566)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -1355 (-862)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1175)) (|:| |rand| (-862)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1174)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -3461 (-112)) (|:| -2252 (-2 (|:| |ints2Floats?| (-112)) (|:| -1355 (-862)))))) (|:| |blockBranch| (-644 $)) (|:| |commentBranch| (-644 (-1157))) (|:| |callBranch| (-1157)) (|:| |forBranch| (-2 (|:| -2498 (-1091 (-952 (-566)))) (|:| |span| (-952 (-566))) (|:| -1398 $))) (|:| |labelBranch| (-1119)) (|:| |loopBranch| (-2 (|:| |switch| (-1174)) (|:| -1398 $))) (|:| |commonBranch| (-2 (|:| -2639 (-1175)) (|:| |contents| (-644 (-1175))))) (|:| |printBranch| (-644 (-862)))) $)) (-15 -1476 ((-1269) $)) (-15 -4292 ((-1103) $)) (-15 -3498 ((-1119) (-1119)))))
+((-3009 (((-112) $ $) NIL)) (-2073 (((-112) $) 13)) (-3915 (($ |#1|) 10)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3927 (($ |#1|) 12)) (-3780 (((-862) $) 19)) (-3801 (((-112) $ $) NIL)) (-2224 ((|#1| $) 14)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 21)))
+(((-332 |#1|) (-13 (-850) (-10 -8 (-15 -3915 ($ |#1|)) (-15 -3927 ($ |#1|)) (-15 -2073 ((-112) $)) (-15 -2224 (|#1| $)))) (-850)) (T -332))
+((-3915 (*1 *1 *2) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850)))) (-3927 (*1 *1 *2) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850)))) (-2073 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-332 *3)) (-4 *3 (-850)))) (-2224 (*1 *2 *1) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850)))))
+(-13 (-850) (-10 -8 (-15 -3915 ($ |#1|)) (-15 -3927 ($ |#1|)) (-15 -2073 ((-112) $)) (-15 -2224 (|#1| $))))
+((-1631 (((-331) (-1175) (-952 (-566))) 23)) (-4089 (((-331) (-1175) (-952 (-566))) 27)) (-2092 (((-331) (-1175) (-1091 (-952 (-566))) (-1091 (-952 (-566)))) 26) (((-331) (-1175) (-952 (-566)) (-952 (-566))) 24)) (-1841 (((-331) (-1175) (-952 (-566))) 31)))
+(((-333) (-10 -7 (-15 -1631 ((-331) (-1175) (-952 (-566)))) (-15 -2092 ((-331) (-1175) (-952 (-566)) (-952 (-566)))) (-15 -2092 ((-331) (-1175) (-1091 (-952 (-566))) (-1091 (-952 (-566))))) (-15 -4089 ((-331) (-1175) (-952 (-566)))) (-15 -1841 ((-331) (-1175) (-952 (-566)))))) (T -333))
+((-1841 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331)) (-5 *1 (-333)))) (-4089 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331)) (-5 *1 (-333)))) (-2092 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-1091 (-952 (-566)))) (-5 *2 (-331)) (-5 *1 (-333)))) (-2092 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331)) (-5 *1 (-333)))) (-1631 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331)) (-5 *1 (-333)))))
+(-10 -7 (-15 -1631 ((-331) (-1175) (-952 (-566)))) (-15 -2092 ((-331) (-1175) (-952 (-566)) (-952 (-566)))) (-15 -2092 ((-331) (-1175) (-1091 (-952 (-566))) (-1091 (-952 (-566))))) (-15 -4089 ((-331) (-1175) (-952 (-566)))) (-15 -1841 ((-331) (-1175) (-952 (-566)))))
+((-3009 (((-112) $ $) NIL)) (-2552 (((-508) $) 19)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1563 (((-958 (-771)) $) 17)) (-4355 (((-250) $) 7)) (-3780 (((-862) $) 25)) (-1928 (((-958 (-183)) $) 15)) (-3801 (((-112) $ $) NIL)) (-3256 (((-644 (-873 (-1180) (-771))) $) 12)) (-2950 (((-112) $ $) 21)))
+(((-334) (-13 (-1099) (-10 -8 (-15 -4355 ((-250) $)) (-15 -3256 ((-644 (-873 (-1180) (-771))) $)) (-15 -1563 ((-958 (-771)) $)) (-15 -1928 ((-958 (-183)) $)) (-15 -2552 ((-508) $))))) (T -334))
+((-4355 (*1 *2 *1) (-12 (-5 *2 (-250)) (-5 *1 (-334)))) (-3256 (*1 *2 *1) (-12 (-5 *2 (-644 (-873 (-1180) (-771)))) (-5 *1 (-334)))) (-1563 (*1 *2 *1) (-12 (-5 *2 (-958 (-771))) (-5 *1 (-334)))) (-1928 (*1 *2 *1) (-12 (-5 *2 (-958 (-183))) (-5 *1 (-334)))) (-2552 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-334)))))
+(-13 (-1099) (-10 -8 (-15 -4355 ((-250) $)) (-15 -3256 ((-644 (-873 (-1180) (-771))) $)) (-15 -1563 ((-958 (-771)) $)) (-15 -1928 ((-958 (-183)) $)) (-15 -2552 ((-508) $))))
+((-3152 (((-338 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-338 |#1| |#2| |#3| |#4|)) 33)))
+(((-335 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3152 ((-338 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-338 |#1| |#2| |#3| |#4|)))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|) (-365) (-1240 |#5|) (-1240 (-409 |#6|)) (-344 |#5| |#6| |#7|)) (T -335))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-338 *5 *6 *7 *8)) (-4 *5 (-365)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-4 *8 (-344 *5 *6 *7)) (-4 *9 (-365)) (-4 *10 (-1240 *9)) (-4 *11 (-1240 (-409 *10))) (-5 *2 (-338 *9 *10 *11 *12)) (-5 *1 (-335 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-344 *9 *10 *11)))))
+(-10 -7 (-15 -3152 ((-338 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-338 |#1| |#2| |#3| |#4|))))
+((-3664 (((-112) $) 14)))
+(((-336 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3664 ((-112) |#1|))) (-337 |#2| |#3| |#4| |#5|) (-365) (-1240 |#2|) (-1240 (-409 |#3|)) (-344 |#2| |#3| |#4|)) (T -336))
+NIL
+(-10 -8 (-15 -3664 ((-112) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-1580 (($ $) 29)) (-3664 (((-112) $) 28)) (-2402 (((-1157) $) 10)) (-2412 (((-415 |#2| (-409 |#2|) |#3| |#4|) $) 35)) (-4056 (((-1119) $) 11)) (-4152 (((-3 |#4| "failed") $) 27)) (-2345 (($ (-415 |#2| (-409 |#2|) |#3| |#4|)) 34) (($ |#4|) 33) (($ |#1| |#1|) 32) (($ |#1| |#1| (-566)) 31) (($ |#4| |#2| |#2| |#2| |#1|) 26)) (-2731 (((-2 (|:| -4249 (-415 |#2| (-409 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 30)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24)))
(((-337 |#1| |#2| |#3| |#4|) (-140) (-365) (-1240 |t#1|) (-1240 (-409 |t#2|)) (-344 |t#1| |t#2| |t#3|)) (T -337))
-((-4024 (*1 *2 *1) (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-5 *2 (-415 *4 (-409 *4) *5 *6)))) (-4330 (*1 *1 *2) (-12 (-5 *2 (-415 *4 (-409 *4) *5 *6)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-4 *3 (-365)) (-4 *1 (-337 *3 *4 *5 *6)))) (-4330 (*1 *1 *2) (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *1 (-337 *3 *4 *5 *2)) (-4 *2 (-344 *3 *4 *5)))) (-4330 (*1 *1 *2 *2) (-12 (-4 *2 (-365)) (-4 *3 (-1240 *2)) (-4 *4 (-1240 (-409 *3))) (-4 *1 (-337 *2 *3 *4 *5)) (-4 *5 (-344 *2 *3 *4)))) (-4330 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-566)) (-4 *2 (-365)) (-4 *4 (-1240 *2)) (-4 *5 (-1240 (-409 *4))) (-4 *1 (-337 *2 *4 *5 *6)) (-4 *6 (-344 *2 *4 *5)))) (-3282 (*1 *2 *1) (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-5 *2 (-2 (|:| -4224 (-415 *4 (-409 *4) *5 *6)) (|:| |principalPart| *6))))) (-4362 (*1 *1 *1) (-12 (-4 *1 (-337 *2 *3 *4 *5)) (-4 *2 (-365)) (-4 *3 (-1240 *2)) (-4 *4 (-1240 (-409 *3))) (-4 *5 (-344 *2 *3 *4)))) (-2011 (*1 *2 *1) (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-5 *2 (-112)))) (-4067 (*1 *2 *1) (|partial| -12 (-4 *1 (-337 *3 *4 *5 *2)) (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *2 (-344 *3 *4 *5)))) (-4330 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-365)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3))) (-4 *1 (-337 *4 *3 *5 *2)) (-4 *2 (-344 *4 *3 *5)))))
-(-13 (-21) (-10 -8 (-15 -4024 ((-415 |t#2| (-409 |t#2|) |t#3| |t#4|) $)) (-15 -4330 ($ (-415 |t#2| (-409 |t#2|) |t#3| |t#4|))) (-15 -4330 ($ |t#4|)) (-15 -4330 ($ |t#1| |t#1|)) (-15 -4330 ($ |t#1| |t#1| (-566))) (-15 -3282 ((-2 (|:| -4224 (-415 |t#2| (-409 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -4362 ($ $)) (-15 -2011 ((-112) $)) (-15 -4067 ((-3 |t#4| "failed") $)) (-15 -4330 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
+((-2412 (*1 *2 *1) (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-5 *2 (-415 *4 (-409 *4) *5 *6)))) (-2345 (*1 *1 *2) (-12 (-5 *2 (-415 *4 (-409 *4) *5 *6)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-4 *3 (-365)) (-4 *1 (-337 *3 *4 *5 *6)))) (-2345 (*1 *1 *2) (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *1 (-337 *3 *4 *5 *2)) (-4 *2 (-344 *3 *4 *5)))) (-2345 (*1 *1 *2 *2) (-12 (-4 *2 (-365)) (-4 *3 (-1240 *2)) (-4 *4 (-1240 (-409 *3))) (-4 *1 (-337 *2 *3 *4 *5)) (-4 *5 (-344 *2 *3 *4)))) (-2345 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-566)) (-4 *2 (-365)) (-4 *4 (-1240 *2)) (-4 *5 (-1240 (-409 *4))) (-4 *1 (-337 *2 *4 *5 *6)) (-4 *6 (-344 *2 *4 *5)))) (-2731 (*1 *2 *1) (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-5 *2 (-2 (|:| -4249 (-415 *4 (-409 *4) *5 *6)) (|:| |principalPart| *6))))) (-1580 (*1 *1 *1) (-12 (-4 *1 (-337 *2 *3 *4 *5)) (-4 *2 (-365)) (-4 *3 (-1240 *2)) (-4 *4 (-1240 (-409 *3))) (-4 *5 (-344 *2 *3 *4)))) (-3664 (*1 *2 *1) (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-5 *2 (-112)))) (-4152 (*1 *2 *1) (|partial| -12 (-4 *1 (-337 *3 *4 *5 *2)) (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *2 (-344 *3 *4 *5)))) (-2345 (*1 *1 *2 *3 *3 *3 *4) (-12 (-4 *4 (-365)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3))) (-4 *1 (-337 *4 *3 *5 *2)) (-4 *2 (-344 *4 *3 *5)))))
+(-13 (-21) (-10 -8 (-15 -2412 ((-415 |t#2| (-409 |t#2|) |t#3| |t#4|) $)) (-15 -2345 ($ (-415 |t#2| (-409 |t#2|) |t#3| |t#4|))) (-15 -2345 ($ |t#4|)) (-15 -2345 ($ |t#1| |t#1|)) (-15 -2345 ($ |t#1| |t#1| (-566))) (-15 -2731 ((-2 (|:| -4249 (-415 |t#2| (-409 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -1580 ($ $)) (-15 -3664 ((-112) $)) (-15 -4152 ((-3 |t#4| "failed") $)) (-15 -2345 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-4362 (($ $) 33)) (-2011 (((-112) $) NIL)) (-2878 (((-1157) $) NIL)) (-4115 (((-1264 |#4|) $) 135)) (-4024 (((-415 |#2| (-409 |#2|) |#3| |#4|) $) 31)) (-4033 (((-1119) $) NIL)) (-4067 (((-3 |#4| "failed") $) 36)) (-2688 (((-1264 |#4|) $) 127)) (-4330 (($ (-415 |#2| (-409 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-566)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-3282 (((-2 (|:| -4224 (-415 |#2| (-409 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-2512 (((-862) $) 17)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 14 T CONST)) (-2940 (((-112) $ $) 20)) (-3047 (($ $) 27) (($ $ $) NIL)) (-3034 (($ $ $) 25)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 23)))
-(((-338 |#1| |#2| |#3| |#4|) (-13 (-337 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2688 ((-1264 |#4|) $)) (-15 -4115 ((-1264 |#4|) $)))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -338))
-((-2688 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-1264 *6)) (-5 *1 (-338 *3 *4 *5 *6)) (-4 *6 (-344 *3 *4 *5)))) (-4115 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-1264 *6)) (-5 *1 (-338 *3 *4 *5 *6)) (-4 *6 (-344 *3 *4 *5)))))
-(-13 (-337 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2688 ((-1264 |#4|) $)) (-15 -4115 ((-1264 |#4|) $))))
-((-2070 (($ $ (-1175) |#2|) NIL) (($ $ (-644 (-1175)) (-644 |#2|)) 20) (($ $ (-644 (-295 |#2|))) 15) (($ $ (-295 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-644 |#2|) (-644 |#2|)) NIL)) (-4386 (($ $ |#2|) 11)))
-(((-339 |#1| |#2|) (-10 -8 (-15 -4386 (|#1| |#1| |#2|)) (-15 -2070 (|#1| |#1| (-644 |#2|) (-644 |#2|))) (-15 -2070 (|#1| |#1| |#2| |#2|)) (-15 -2070 (|#1| |#1| (-295 |#2|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 |#2|))) (-15 -2070 (|#1| |#1| (-1175) |#2|))) (-340 |#2|) (-1099)) (T -339))
-NIL
-(-10 -8 (-15 -4386 (|#1| |#1| |#2|)) (-15 -2070 (|#1| |#1| (-644 |#2|) (-644 |#2|))) (-15 -2070 (|#1| |#1| |#2| |#2|)) (-15 -2070 (|#1| |#1| (-295 |#2|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 |#2|))) (-15 -2070 (|#1| |#1| (-1175) |#2|)))
-((-3077 (($ (-1 |#1| |#1|) $) 6)) (-2070 (($ $ (-1175) |#1|) 17 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 16 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-644 (-295 |#1|))) 15 (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) 14 (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-310 |#1|))) (($ $ (-644 |#1|) (-644 |#1|)) 12 (|has| |#1| (-310 |#1|)))) (-4386 (($ $ |#1|) 11 (|has| |#1| (-287 |#1| |#1|)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-1580 (($ $) 33)) (-3664 (((-112) $) NIL)) (-2402 (((-1157) $) NIL)) (-3897 (((-1264 |#4|) $) 135)) (-2412 (((-415 |#2| (-409 |#2|) |#3| |#4|) $) 31)) (-4056 (((-1119) $) NIL)) (-4152 (((-3 |#4| "failed") $) 36)) (-4164 (((-1264 |#4|) $) 127)) (-2345 (($ (-415 |#2| (-409 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-566)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-2731 (((-2 (|:| -4249 (-415 |#2| (-409 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-3780 (((-862) $) 17)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 14 T CONST)) (-2950 (((-112) $ $) 20)) (-3051 (($ $) 27) (($ $ $) NIL)) (-3040 (($ $ $) 25)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 23)))
+(((-338 |#1| |#2| |#3| |#4|) (-13 (-337 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4164 ((-1264 |#4|) $)) (-15 -3897 ((-1264 |#4|) $)))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -338))
+((-4164 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-1264 *6)) (-5 *1 (-338 *3 *4 *5 *6)) (-4 *6 (-344 *3 *4 *5)))) (-3897 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-1264 *6)) (-5 *1 (-338 *3 *4 *5 *6)) (-4 *6 (-344 *3 *4 *5)))))
+(-13 (-337 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4164 ((-1264 |#4|) $)) (-15 -3897 ((-1264 |#4|) $))))
+((-2095 (($ $ (-1175) |#2|) NIL) (($ $ (-644 (-1175)) (-644 |#2|)) 20) (($ $ (-644 (-295 |#2|))) 15) (($ $ (-295 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-644 |#2|) (-644 |#2|)) NIL)) (-4393 (($ $ |#2|) 11)))
+(((-339 |#1| |#2|) (-10 -8 (-15 -4393 (|#1| |#1| |#2|)) (-15 -2095 (|#1| |#1| (-644 |#2|) (-644 |#2|))) (-15 -2095 (|#1| |#1| |#2| |#2|)) (-15 -2095 (|#1| |#1| (-295 |#2|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 |#2|))) (-15 -2095 (|#1| |#1| (-1175) |#2|))) (-340 |#2|) (-1099)) (T -339))
+NIL
+(-10 -8 (-15 -4393 (|#1| |#1| |#2|)) (-15 -2095 (|#1| |#1| (-644 |#2|) (-644 |#2|))) (-15 -2095 (|#1| |#1| |#2| |#2|)) (-15 -2095 (|#1| |#1| (-295 |#2|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 |#2|))) (-15 -2095 (|#1| |#1| (-1175) |#2|)))
+((-3152 (($ (-1 |#1| |#1|) $) 6)) (-2095 (($ $ (-1175) |#1|) 17 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 16 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-644 (-295 |#1|))) 15 (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) 14 (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) 13 (|has| |#1| (-310 |#1|))) (($ $ (-644 |#1|) (-644 |#1|)) 12 (|has| |#1| (-310 |#1|)))) (-4393 (($ $ |#1|) 11 (|has| |#1| (-287 |#1| |#1|)))))
(((-340 |#1|) (-140) (-1099)) (T -340))
-((-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-340 *3)) (-4 *3 (-1099)))))
-(-13 (-10 -8 (-15 -3077 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-287 |t#1| |t#1|)) (-6 (-287 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-310 |t#1|)) (-6 (-310 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-516 (-1175) |t#1|)) (-6 (-516 (-1175) |t#1|)) |%noBranch|)))
+((-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-340 *3)) (-4 *3 (-1099)))))
+(-13 (-10 -8 (-15 -3152 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-287 |t#1| |t#1|)) (-6 (-287 |t#1| $)) |%noBranch|) (IF (|has| |t#1| (-310 |t#1|)) (-6 (-310 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-516 (-1175) |t#1|)) (-6 (-516 (-1175) |t#1|)) |%noBranch|)))
(((-287 |#1| $) |has| |#1| (-287 |#1| |#1|)) ((-310 |#1|) |has| |#1| (-310 |#1|)) ((-516 (-1175) |#1|) |has| |#1| (-516 (-1175) |#1|)) ((-516 |#1| |#1|) |has| |#1| (-310 |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-1175)) $) NIL)) (-1786 (((-112)) 99) (((-112) (-112)) 100)) (-2248 (((-644 (-612 $)) $) NIL)) (-3235 (($ $) NIL)) (-3102 (($ $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-3226 (($ $ (-295 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL)) (-2402 (($ $) NIL)) (-3215 (($ $) NIL)) (-3076 (($ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-612 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-317 |#3|)) 79) (((-3 $ "failed") (-1175)) 105) (((-3 $ "failed") (-317 (-566))) 67 (|has| |#3| (-1038 (-566)))) (((-3 $ "failed") (-409 (-952 (-566)))) 73 (|has| |#3| (-1038 (-566)))) (((-3 $ "failed") (-952 (-566))) 68 (|has| |#3| (-1038 (-566)))) (((-3 $ "failed") (-317 (-381))) 97 (|has| |#3| (-1038 (-381)))) (((-3 $ "failed") (-409 (-952 (-381)))) 91 (|has| |#3| (-1038 (-381)))) (((-3 $ "failed") (-952 (-381))) 86 (|has| |#3| (-1038 (-381))))) (-1756 (((-612 $) $) NIL) ((|#3| $) NIL) (($ (-317 |#3|)) 80) (($ (-1175)) 106) (($ (-317 (-566))) 69 (|has| |#3| (-1038 (-566)))) (($ (-409 (-952 (-566)))) 74 (|has| |#3| (-1038 (-566)))) (($ (-952 (-566))) 70 (|has| |#3| (-1038 (-566)))) (($ (-317 (-381))) 98 (|has| |#3| (-1038 (-381)))) (($ (-409 (-952 (-381)))) 92 (|has| |#3| (-1038 (-381)))) (($ (-952 (-381))) 88 (|has| |#3| (-1038 (-381))))) (-1579 (((-3 $ "failed") $) NIL)) (-3035 (($) 10)) (-4334 (($ $) NIL) (($ (-644 $)) NIL)) (-3674 (((-644 (-114)) $) NIL)) (-2336 (((-114) (-114)) NIL)) (-2741 (((-112) $) NIL)) (-2884 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2734 (((-1171 $) (-612 $)) NIL (|has| $ (-1049)))) (-3077 (($ (-1 $ $) (-612 $)) NIL)) (-2230 (((-3 (-612 $) "failed") $) NIL)) (-2346 (($ $) 102)) (-3668 (($ $) NIL)) (-2878 (((-1157) $) NIL)) (-2322 (((-644 (-612 $)) $) NIL)) (-3083 (($ (-114) $) 101) (($ (-114) (-644 $)) NIL)) (-2181 (((-112) $ (-114)) NIL) (((-112) $ (-1175)) NIL)) (-3173 (((-771) $) NIL)) (-4033 (((-1119) $) NIL)) (-1981 (((-112) $ $) NIL) (((-112) $ (-1175)) NIL)) (-3613 (($ $) NIL)) (-1693 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2070 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-1175) (-1 $ (-644 $))) NIL) (($ $ (-1175) (-1 $ $)) NIL) (($ $ (-644 (-114)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-114) (-1 $ (-644 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-4386 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-644 $)) NIL)) (-2811 (($ $) NIL) (($ $ $) NIL)) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL)) (-2127 (($ $) NIL (|has| $ (-1049)))) (-3223 (($ $) NIL)) (-3089 (($ $) NIL)) (-2512 (((-862) $) NIL) (($ (-612 $)) NIL) (($ |#3|) NIL) (($ (-566)) NIL) (((-317 |#3|) $) 104)) (-3795 (((-771)) NIL T CONST)) (-3236 (($ $) NIL) (($ (-644 $)) NIL)) (-2306 (((-112) (-114)) NIL)) (-3122 (((-112) $ $) NIL)) (-3172 (($ $) NIL)) (-3146 (($ $) NIL)) (-3160 (($ $) NIL)) (-1346 (($ $) NIL)) (-2485 (($) 103 T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $ $) NIL) (($ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL)))
-(((-341 |#1| |#2| |#3|) (-13 (-303) (-38 |#3|) (-1038 |#3|) (-900 (-1175)) (-10 -8 (-15 -1756 ($ (-317 |#3|))) (-15 -2977 ((-3 $ "failed") (-317 |#3|))) (-15 -1756 ($ (-1175))) (-15 -2977 ((-3 $ "failed") (-1175))) (-15 -2512 ((-317 |#3|) $)) (IF (|has| |#3| (-1038 (-566))) (PROGN (-15 -1756 ($ (-317 (-566)))) (-15 -2977 ((-3 $ "failed") (-317 (-566)))) (-15 -1756 ($ (-409 (-952 (-566))))) (-15 -2977 ((-3 $ "failed") (-409 (-952 (-566))))) (-15 -1756 ($ (-952 (-566)))) (-15 -2977 ((-3 $ "failed") (-952 (-566))))) |%noBranch|) (IF (|has| |#3| (-1038 (-381))) (PROGN (-15 -1756 ($ (-317 (-381)))) (-15 -2977 ((-3 $ "failed") (-317 (-381)))) (-15 -1756 ($ (-409 (-952 (-381))))) (-15 -2977 ((-3 $ "failed") (-409 (-952 (-381))))) (-15 -1756 ($ (-952 (-381)))) (-15 -2977 ((-3 $ "failed") (-952 (-381))))) |%noBranch|) (-15 -1346 ($ $)) (-15 -2402 ($ $)) (-15 -3613 ($ $)) (-15 -3668 ($ $)) (-15 -2346 ($ $)) (-15 -3076 ($ $)) (-15 -3089 ($ $)) (-15 -3102 ($ $)) (-15 -3146 ($ $)) (-15 -3160 ($ $)) (-15 -3172 ($ $)) (-15 -3215 ($ $)) (-15 -3223 ($ $)) (-15 -3235 ($ $)) (-15 -3035 ($)) (-15 -2540 ((-644 (-1175)) $)) (-15 -1786 ((-112))) (-15 -1786 ((-112) (-112))))) (-644 (-1175)) (-644 (-1175)) (-389)) (T -341))
-((-1756 (*1 *1 *2) (-12 (-5 *2 (-317 *5)) (-4 *5 (-389)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-317 *5)) (-4 *5 (-389)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 *2)) (-14 *4 (-644 *2)) (-4 *5 (-389)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-1175)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 *2)) (-14 *4 (-644 *2)) (-4 *5 (-389)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-317 *5)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-317 (-566))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-317 (-566))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-409 (-952 (-566)))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-409 (-952 (-566)))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-952 (-566))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-952 (-566))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-317 (-381))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-317 (-381))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-409 (-952 (-381)))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-409 (-952 (-381)))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-952 (-381))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-952 (-381))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1346 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-2402 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3613 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3668 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-2346 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3076 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3089 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3102 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3146 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3160 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3172 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3215 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3223 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3235 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3035 (*1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-2540 (*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-341 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-389)))) (-1786 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1786 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))))
-(-13 (-303) (-38 |#3|) (-1038 |#3|) (-900 (-1175)) (-10 -8 (-15 -1756 ($ (-317 |#3|))) (-15 -2977 ((-3 $ "failed") (-317 |#3|))) (-15 -1756 ($ (-1175))) (-15 -2977 ((-3 $ "failed") (-1175))) (-15 -2512 ((-317 |#3|) $)) (IF (|has| |#3| (-1038 (-566))) (PROGN (-15 -1756 ($ (-317 (-566)))) (-15 -2977 ((-3 $ "failed") (-317 (-566)))) (-15 -1756 ($ (-409 (-952 (-566))))) (-15 -2977 ((-3 $ "failed") (-409 (-952 (-566))))) (-15 -1756 ($ (-952 (-566)))) (-15 -2977 ((-3 $ "failed") (-952 (-566))))) |%noBranch|) (IF (|has| |#3| (-1038 (-381))) (PROGN (-15 -1756 ($ (-317 (-381)))) (-15 -2977 ((-3 $ "failed") (-317 (-381)))) (-15 -1756 ($ (-409 (-952 (-381))))) (-15 -2977 ((-3 $ "failed") (-409 (-952 (-381))))) (-15 -1756 ($ (-952 (-381)))) (-15 -2977 ((-3 $ "failed") (-952 (-381))))) |%noBranch|) (-15 -1346 ($ $)) (-15 -2402 ($ $)) (-15 -3613 ($ $)) (-15 -3668 ($ $)) (-15 -2346 ($ $)) (-15 -3076 ($ $)) (-15 -3089 ($ $)) (-15 -3102 ($ $)) (-15 -3146 ($ $)) (-15 -3160 ($ $)) (-15 -3172 ($ $)) (-15 -3215 ($ $)) (-15 -3223 ($ $)) (-15 -3235 ($ $)) (-15 -3035 ($)) (-15 -2540 ((-644 (-1175)) $)) (-15 -1786 ((-112))) (-15 -1786 ((-112) (-112)))))
-((-3077 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
-(((-342 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3077 (|#8| (-1 |#5| |#1|) |#4|))) (-1218) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|) (-1218) (-1240 |#5|) (-1240 (-409 |#6|)) (-344 |#5| |#6| |#7|)) (T -342))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1218)) (-4 *8 (-1218)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-4 *9 (-1240 *8)) (-4 *2 (-344 *8 *9 *10)) (-5 *1 (-342 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-344 *5 *6 *7)) (-4 *10 (-1240 (-409 *9))))))
-(-10 -7 (-15 -3077 (|#8| (-1 |#5| |#1|) |#4|)))
-((-3461 (((-2 (|:| |num| (-1264 |#3|)) (|:| |den| |#3|)) $) 40)) (-1547 (($ (-1264 (-409 |#3|)) (-1264 $)) NIL) (($ (-1264 (-409 |#3|))) NIL) (($ (-1264 |#3|) |#3|) 177)) (-2507 (((-1264 $) (-1264 $)) 161)) (-2674 (((-644 (-644 |#2|))) 130)) (-3038 (((-112) |#2| |#2|) 77)) (-4248 (($ $) 152)) (-4302 (((-771)) 33)) (-3628 (((-1264 $) (-1264 $)) 222)) (-1928 (((-644 (-952 |#2|)) (-1175)) 119)) (-2936 (((-112) $) 174)) (-1477 (((-112) $) 27) (((-112) $ |#2|) 31) (((-112) $ |#3|) 226)) (-3901 (((-3 |#3| "failed")) 53)) (-4127 (((-771)) 188)) (-4386 ((|#2| $ |#2| |#2|) 144)) (-3611 (((-3 |#3| "failed")) 72)) (-2862 (($ $ (-1 (-409 |#3|) (-409 |#3|)) (-771)) NIL) (($ $ (-1 (-409 |#3|) (-409 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 230) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)) (-3720 (((-1264 $) (-1264 $)) 167)) (-1832 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 69)) (-1574 (((-112)) 35)))
-(((-343 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2674 ((-644 (-644 |#2|)))) (-15 -1928 ((-644 (-952 |#2|)) (-1175))) (-15 -1832 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3901 ((-3 |#3| "failed"))) (-15 -3611 ((-3 |#3| "failed"))) (-15 -4386 (|#2| |#1| |#2| |#2|)) (-15 -4248 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1477 ((-112) |#1| |#3|)) (-15 -1477 ((-112) |#1| |#2|)) (-15 -1547 (|#1| (-1264 |#3|) |#3|)) (-15 -3461 ((-2 (|:| |num| (-1264 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2507 ((-1264 |#1|) (-1264 |#1|))) (-15 -3628 ((-1264 |#1|) (-1264 |#1|))) (-15 -3720 ((-1264 |#1|) (-1264 |#1|))) (-15 -1477 ((-112) |#1|)) (-15 -2936 ((-112) |#1|)) (-15 -3038 ((-112) |#2| |#2|)) (-15 -1574 ((-112))) (-15 -4127 ((-771))) (-15 -4302 ((-771))) (-15 -2862 (|#1| |#1| (-1 (-409 |#3|) (-409 |#3|)))) (-15 -2862 (|#1| |#1| (-1 (-409 |#3|) (-409 |#3|)) (-771))) (-15 -1547 (|#1| (-1264 (-409 |#3|)))) (-15 -1547 (|#1| (-1264 (-409 |#3|)) (-1264 |#1|)))) (-344 |#2| |#3| |#4|) (-1218) (-1240 |#2|) (-1240 (-409 |#3|))) (T -343))
-((-4302 (*1 *2) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-771)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6)))) (-4127 (*1 *2) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-771)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6)))) (-1574 (*1 *2) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-112)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6)))) (-3038 (*1 *2 *3 *3) (-12 (-4 *3 (-1218)) (-4 *5 (-1240 *3)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-112)) (-5 *1 (-343 *4 *3 *5 *6)) (-4 *4 (-344 *3 *5 *6)))) (-3611 (*1 *2) (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 (-409 *2))) (-4 *2 (-1240 *4)) (-5 *1 (-343 *3 *4 *2 *5)) (-4 *3 (-344 *4 *2 *5)))) (-3901 (*1 *2) (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 (-409 *2))) (-4 *2 (-1240 *4)) (-5 *1 (-343 *3 *4 *2 *5)) (-4 *3 (-344 *4 *2 *5)))) (-1928 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *5 (-1218)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-5 *2 (-644 (-952 *5))) (-5 *1 (-343 *4 *5 *6 *7)) (-4 *4 (-344 *5 *6 *7)))) (-2674 (*1 *2) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-644 (-644 *4))) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6)))))
-(-10 -8 (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2674 ((-644 (-644 |#2|)))) (-15 -1928 ((-644 (-952 |#2|)) (-1175))) (-15 -1832 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -3901 ((-3 |#3| "failed"))) (-15 -3611 ((-3 |#3| "failed"))) (-15 -4386 (|#2| |#1| |#2| |#2|)) (-15 -4248 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-1 |#3| |#3|))) (-15 -1477 ((-112) |#1| |#3|)) (-15 -1477 ((-112) |#1| |#2|)) (-15 -1547 (|#1| (-1264 |#3|) |#3|)) (-15 -3461 ((-2 (|:| |num| (-1264 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2507 ((-1264 |#1|) (-1264 |#1|))) (-15 -3628 ((-1264 |#1|) (-1264 |#1|))) (-15 -3720 ((-1264 |#1|) (-1264 |#1|))) (-15 -1477 ((-112) |#1|)) (-15 -2936 ((-112) |#1|)) (-15 -3038 ((-112) |#2| |#2|)) (-15 -1574 ((-112))) (-15 -4127 ((-771))) (-15 -4302 ((-771))) (-15 -2862 (|#1| |#1| (-1 (-409 |#3|) (-409 |#3|)))) (-15 -2862 (|#1| |#1| (-1 (-409 |#3|) (-409 |#3|)) (-771))) (-15 -1547 (|#1| (-1264 (-409 |#3|)))) (-15 -1547 (|#1| (-1264 (-409 |#3|)) (-1264 |#1|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-3461 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) 204)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 102 (|has| (-409 |#2|) (-365)))) (-3653 (($ $) 103 (|has| (-409 |#2|) (-365)))) (-2152 (((-112) $) 105 (|has| (-409 |#2|) (-365)))) (-3953 (((-689 (-409 |#2|)) (-1264 $)) 53) (((-689 (-409 |#2|))) 68)) (-3817 (((-409 |#2|) $) 59)) (-4324 (((-1187 (-921) (-771)) (-566)) 155 (|has| (-409 |#2|) (-351)))) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 122 (|has| (-409 |#2|) (-365)))) (-1370 (((-420 $) $) 123 (|has| (-409 |#2|) (-365)))) (-1561 (((-112) $ $) 113 (|has| (-409 |#2|) (-365)))) (-4025 (((-771)) 96 (|has| (-409 |#2|) (-370)))) (-4051 (((-112)) 221)) (-4146 (((-112) |#1|) 220) (((-112) |#2|) 219)) (-2342 (($) 18 T CONST)) (-2977 (((-3 (-566) "failed") $) 178 (|has| (-409 |#2|) (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 176 (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-3 (-409 |#2|) "failed") $) 173)) (-1756 (((-566) $) 177 (|has| (-409 |#2|) (-1038 (-566)))) (((-409 (-566)) $) 175 (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-409 |#2|) $) 174)) (-1547 (($ (-1264 (-409 |#2|)) (-1264 $)) 55) (($ (-1264 (-409 |#2|))) 71) (($ (-1264 |#2|) |#2|) 203)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| (-409 |#2|) (-351)))) (-2926 (($ $ $) 117 (|has| (-409 |#2|) (-365)))) (-1929 (((-689 (-409 |#2|)) $ (-1264 $)) 60) (((-689 (-409 |#2|)) $) 66)) (-1628 (((-689 (-566)) (-689 $)) 172 (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 171 (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-409 |#2|))) (|:| |vec| (-1264 (-409 |#2|)))) (-689 $) (-1264 $)) 170) (((-689 (-409 |#2|)) (-689 $)) 169)) (-2507 (((-1264 $) (-1264 $)) 209)) (-4362 (($ |#3|) 166) (((-3 $ "failed") (-409 |#3|)) 163 (|has| (-409 |#2|) (-365)))) (-1579 (((-3 $ "failed") $) 37)) (-2674 (((-644 (-644 |#1|))) 190 (|has| |#1| (-370)))) (-3038 (((-112) |#1| |#1|) 225)) (-1821 (((-921)) 61)) (-3335 (($) 99 (|has| (-409 |#2|) (-370)))) (-3554 (((-112)) 218)) (-4036 (((-112) |#1|) 217) (((-112) |#2|) 216)) (-2938 (($ $ $) 116 (|has| (-409 |#2|) (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 111 (|has| (-409 |#2|) (-365)))) (-4248 (($ $) 196)) (-3092 (($) 157 (|has| (-409 |#2|) (-351)))) (-3449 (((-112) $) 158 (|has| (-409 |#2|) (-351)))) (-3626 (($ $ (-771)) 149 (|has| (-409 |#2|) (-351))) (($ $) 148 (|has| (-409 |#2|) (-351)))) (-2635 (((-112) $) 124 (|has| (-409 |#2|) (-365)))) (-2716 (((-921) $) 160 (|has| (-409 |#2|) (-351))) (((-833 (-921)) $) 146 (|has| (-409 |#2|) (-351)))) (-2741 (((-112) $) 35)) (-4302 (((-771)) 228)) (-3628 (((-1264 $) (-1264 $)) 210)) (-1559 (((-409 |#2|) $) 58)) (-1928 (((-644 (-952 |#1|)) (-1175)) 191 (|has| |#1| (-365)))) (-2546 (((-3 $ "failed") $) 150 (|has| (-409 |#2|) (-351)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 120 (|has| (-409 |#2|) (-365)))) (-3929 ((|#3| $) 51 (|has| (-409 |#2|) (-365)))) (-3712 (((-921) $) 98 (|has| (-409 |#2|) (-370)))) (-4350 ((|#3| $) 164)) (-2184 (($ (-644 $)) 109 (|has| (-409 |#2|) (-365))) (($ $ $) 108 (|has| (-409 |#2|) (-365)))) (-2878 (((-1157) $) 10)) (-3056 (((-689 (-409 |#2|))) 205)) (-2730 (((-689 (-409 |#2|))) 207)) (-2626 (($ $) 125 (|has| (-409 |#2|) (-365)))) (-3931 (($ (-1264 |#2|) |#2|) 201)) (-2775 (((-689 (-409 |#2|))) 206)) (-2064 (((-689 (-409 |#2|))) 208)) (-2825 (((-2 (|:| |num| (-689 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 200)) (-2057 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) 202)) (-1641 (((-1264 $)) 214)) (-1925 (((-1264 $)) 215)) (-2936 (((-112) $) 213)) (-1477 (((-112) $) 212) (((-112) $ |#1|) 199) (((-112) $ |#2|) 198)) (-2759 (($) 151 (|has| (-409 |#2|) (-351)) CONST)) (-2168 (($ (-921)) 97 (|has| (-409 |#2|) (-370)))) (-3901 (((-3 |#2| "failed")) 193)) (-4033 (((-1119) $) 11)) (-4127 (((-771)) 227)) (-4067 (($) 168)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 110 (|has| (-409 |#2|) (-365)))) (-2222 (($ (-644 $)) 107 (|has| (-409 |#2|) (-365))) (($ $ $) 106 (|has| (-409 |#2|) (-365)))) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) 154 (|has| (-409 |#2|) (-351)))) (-2391 (((-420 $) $) 121 (|has| (-409 |#2|) (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| (-409 |#2|) (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 118 (|has| (-409 |#2|) (-365)))) (-2972 (((-3 $ "failed") $ $) 101 (|has| (-409 |#2|) (-365)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 112 (|has| (-409 |#2|) (-365)))) (-1813 (((-771) $) 114 (|has| (-409 |#2|) (-365)))) (-4386 ((|#1| $ |#1| |#1|) 195)) (-3611 (((-3 |#2| "failed")) 194)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 115 (|has| (-409 |#2|) (-365)))) (-2408 (((-409 |#2|) (-1264 $)) 54) (((-409 |#2|)) 67)) (-3379 (((-771) $) 159 (|has| (-409 |#2|) (-351))) (((-3 (-771) "failed") $ $) 147 (|has| (-409 |#2|) (-351)))) (-2862 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) 131 (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) 130 (|has| (-409 |#2|) (-365))) (($ $ (-1 |#2| |#2|)) 197) (($ $ (-644 (-1175)) (-644 (-771))) 138 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2438 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-1175) (-771)) 139 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2438 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-644 (-1175))) 140 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2438 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-1175)) 141 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2438 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-771)) 143 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-233))) (-2438 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) 145 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-233))) (-2438 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-3042 (((-689 (-409 |#2|)) (-1264 $) (-1 (-409 |#2|) (-409 |#2|))) 162 (|has| (-409 |#2|) (-365)))) (-2127 ((|#3|) 167)) (-1536 (($) 156 (|has| (-409 |#2|) (-351)))) (-2770 (((-1264 (-409 |#2|)) $ (-1264 $)) 57) (((-689 (-409 |#2|)) (-1264 $) (-1264 $)) 56) (((-1264 (-409 |#2|)) $) 73) (((-689 (-409 |#2|)) (-1264 $)) 72)) (-3134 (((-1264 (-409 |#2|)) $) 70) (($ (-1264 (-409 |#2|))) 69) ((|#3| $) 179) (($ |#3|) 165)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 153 (|has| (-409 |#2|) (-351)))) (-3720 (((-1264 $) (-1264 $)) 211)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ (-409 |#2|)) 44) (($ (-409 (-566))) 95 (-2805 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-1038 (-409 (-566)))))) (($ $) 100 (|has| (-409 |#2|) (-365)))) (-3842 (($ $) 152 (|has| (-409 |#2|) (-351))) (((-3 $ "failed") $) 50 (|has| (-409 |#2|) (-145)))) (-1963 ((|#3| $) 52)) (-3795 (((-771)) 32 T CONST)) (-2462 (((-112)) 224)) (-4038 (((-112) |#1|) 223) (((-112) |#2|) 222)) (-3122 (((-112) $ $) 9)) (-1990 (((-1264 $)) 74)) (-1634 (((-112) $ $) 104 (|has| (-409 |#2|) (-365)))) (-1832 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 192)) (-1574 (((-112)) 226)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) 133 (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) 132 (|has| (-409 |#2|) (-365))) (($ $ (-644 (-1175)) (-644 (-771))) 134 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2438 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-1175) (-771)) 135 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2438 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-644 (-1175))) 136 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2438 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-1175)) 137 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2438 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-771)) 142 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-233))) (-2438 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) 144 (-2805 (-2438 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-233))) (-2438 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 129 (|has| (-409 |#2|) (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 126 (|has| (-409 |#2|) (-365)))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 |#2|)) 46) (($ (-409 |#2|) $) 45) (($ (-409 (-566)) $) 128 (|has| (-409 |#2|) (-365))) (($ $ (-409 (-566))) 127 (|has| (-409 |#2|) (-365)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-1175)) $) NIL)) (-3198 (((-112)) 99) (((-112) (-112)) 100)) (-2327 (((-644 (-612 $)) $) NIL)) (-2865 (($ $) NIL)) (-3939 (($ $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2463 (($ $ (-295 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL)) (-2484 (($ $) NIL)) (-2843 (($ $) NIL)) (-3915 (($ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-612 $) "failed") $) NIL) (((-3 |#3| "failed") $) NIL) (((-3 $ "failed") (-317 |#3|)) 79) (((-3 $ "failed") (-1175)) 105) (((-3 $ "failed") (-317 (-566))) 67 (|has| |#3| (-1038 (-566)))) (((-3 $ "failed") (-409 (-952 (-566)))) 73 (|has| |#3| (-1038 (-566)))) (((-3 $ "failed") (-952 (-566))) 68 (|has| |#3| (-1038 (-566)))) (((-3 $ "failed") (-317 (-381))) 97 (|has| |#3| (-1038 (-381)))) (((-3 $ "failed") (-409 (-952 (-381)))) 91 (|has| |#3| (-1038 (-381)))) (((-3 $ "failed") (-952 (-381))) 86 (|has| |#3| (-1038 (-381))))) (-1867 (((-612 $) $) NIL) ((|#3| $) NIL) (($ (-317 |#3|)) 80) (($ (-1175)) 106) (($ (-317 (-566))) 69 (|has| |#3| (-1038 (-566)))) (($ (-409 (-952 (-566)))) 74 (|has| |#3| (-1038 (-566)))) (($ (-952 (-566))) 70 (|has| |#3| (-1038 (-566)))) (($ (-317 (-381))) 98 (|has| |#3| (-1038 (-381)))) (($ (-409 (-952 (-381)))) 92 (|has| |#3| (-1038 (-381)))) (($ (-952 (-381))) 88 (|has| |#3| (-1038 (-381))))) (-2928 (((-3 $ "failed") $) NIL)) (-3120 (($) 10)) (-2388 (($ $) NIL) (($ (-644 $)) NIL)) (-2162 (((-644 (-114)) $) NIL)) (-2415 (((-114) (-114)) NIL)) (-3466 (((-112) $) NIL)) (-2469 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-3392 (((-1171 $) (-612 $)) NIL (|has| $ (-1049)))) (-3152 (($ (-1 $ $) (-612 $)) NIL)) (-2116 (((-3 (-612 $) "failed") $) NIL)) (-2361 (($ $) 102)) (-3671 (($ $) NIL)) (-2402 (((-1157) $) NIL)) (-2404 (((-644 (-612 $)) $) NIL)) (-3159 (($ (-114) $) 101) (($ (-114) (-644 $)) NIL)) (-2885 (((-112) $ (-114)) NIL) (((-112) $ (-1175)) NIL)) (-3906 (((-771) $) NIL)) (-4056 (((-1119) $) NIL)) (-1471 (((-112) $ $) NIL) (((-112) $ (-1175)) NIL)) (-4337 (($ $) NIL)) (-1630 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2095 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-1175) (-1 $ (-644 $))) NIL) (($ $ (-1175) (-1 $ $)) NIL) (($ $ (-644 (-114)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-114) (-1 $ (-644 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-4393 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-644 $)) NIL)) (-2940 (($ $) NIL) (($ $ $) NIL)) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL)) (-3601 (($ $) NIL (|has| $ (-1049)))) (-2853 (($ $) NIL)) (-3927 (($ $) NIL)) (-3780 (((-862) $) NIL) (($ (-612 $)) NIL) (($ |#3|) NIL) (($ (-566)) NIL) (((-317 |#3|) $) 104)) (-3996 (((-771)) NIL T CONST)) (-1442 (($ $) NIL) (($ (-644 $)) NIL)) (-1643 (((-112) (-114)) NIL)) (-3801 (((-112) $ $) NIL)) (-4009 (($ $) NIL)) (-3986 (($ $) NIL)) (-3997 (($ $) NIL)) (-3333 (($ $) NIL)) (-2493 (($) 103 T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $ $) NIL) (($ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ |#3| $) NIL) (($ $ |#3|) NIL) (($ $ $) NIL) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL)))
+(((-341 |#1| |#2| |#3|) (-13 (-303) (-38 |#3|) (-1038 |#3|) (-900 (-1175)) (-10 -8 (-15 -1867 ($ (-317 |#3|))) (-15 -3066 ((-3 $ "failed") (-317 |#3|))) (-15 -1867 ($ (-1175))) (-15 -3066 ((-3 $ "failed") (-1175))) (-15 -3780 ((-317 |#3|) $)) (IF (|has| |#3| (-1038 (-566))) (PROGN (-15 -1867 ($ (-317 (-566)))) (-15 -3066 ((-3 $ "failed") (-317 (-566)))) (-15 -1867 ($ (-409 (-952 (-566))))) (-15 -3066 ((-3 $ "failed") (-409 (-952 (-566))))) (-15 -1867 ($ (-952 (-566)))) (-15 -3066 ((-3 $ "failed") (-952 (-566))))) |%noBranch|) (IF (|has| |#3| (-1038 (-381))) (PROGN (-15 -1867 ($ (-317 (-381)))) (-15 -3066 ((-3 $ "failed") (-317 (-381)))) (-15 -1867 ($ (-409 (-952 (-381))))) (-15 -3066 ((-3 $ "failed") (-409 (-952 (-381))))) (-15 -1867 ($ (-952 (-381)))) (-15 -3066 ((-3 $ "failed") (-952 (-381))))) |%noBranch|) (-15 -3333 ($ $)) (-15 -2484 ($ $)) (-15 -4337 ($ $)) (-15 -3671 ($ $)) (-15 -2361 ($ $)) (-15 -3915 ($ $)) (-15 -3927 ($ $)) (-15 -3939 ($ $)) (-15 -3986 ($ $)) (-15 -3997 ($ $)) (-15 -4009 ($ $)) (-15 -2843 ($ $)) (-15 -2853 ($ $)) (-15 -2865 ($ $)) (-15 -3120 ($)) (-15 -2608 ((-644 (-1175)) $)) (-15 -3198 ((-112))) (-15 -3198 ((-112) (-112))))) (-644 (-1175)) (-644 (-1175)) (-389)) (T -341))
+((-1867 (*1 *1 *2) (-12 (-5 *2 (-317 *5)) (-4 *5 (-389)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-317 *5)) (-4 *5 (-389)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 *2)) (-14 *4 (-644 *2)) (-4 *5 (-389)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-1175)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 *2)) (-14 *4 (-644 *2)) (-4 *5 (-389)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-317 *5)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-317 (-566))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-317 (-566))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-409 (-952 (-566)))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-409 (-952 (-566)))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-952 (-566))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-952 (-566))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-566))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-317 (-381))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-317 (-381))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-409 (-952 (-381)))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-409 (-952 (-381)))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-952 (-381))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-952 (-381))) (-5 *1 (-341 *3 *4 *5)) (-4 *5 (-1038 (-381))) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-3333 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-2484 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-4337 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3671 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-2361 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3915 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3927 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3939 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3986 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3997 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-4009 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-2843 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-2853 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-2865 (*1 *1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-3120 (*1 *1) (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175))) (-14 *3 (-644 (-1175))) (-4 *4 (-389)))) (-2608 (*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-341 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-389)))) (-3198 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))) (-3198 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389)))))
+(-13 (-303) (-38 |#3|) (-1038 |#3|) (-900 (-1175)) (-10 -8 (-15 -1867 ($ (-317 |#3|))) (-15 -3066 ((-3 $ "failed") (-317 |#3|))) (-15 -1867 ($ (-1175))) (-15 -3066 ((-3 $ "failed") (-1175))) (-15 -3780 ((-317 |#3|) $)) (IF (|has| |#3| (-1038 (-566))) (PROGN (-15 -1867 ($ (-317 (-566)))) (-15 -3066 ((-3 $ "failed") (-317 (-566)))) (-15 -1867 ($ (-409 (-952 (-566))))) (-15 -3066 ((-3 $ "failed") (-409 (-952 (-566))))) (-15 -1867 ($ (-952 (-566)))) (-15 -3066 ((-3 $ "failed") (-952 (-566))))) |%noBranch|) (IF (|has| |#3| (-1038 (-381))) (PROGN (-15 -1867 ($ (-317 (-381)))) (-15 -3066 ((-3 $ "failed") (-317 (-381)))) (-15 -1867 ($ (-409 (-952 (-381))))) (-15 -3066 ((-3 $ "failed") (-409 (-952 (-381))))) (-15 -1867 ($ (-952 (-381)))) (-15 -3066 ((-3 $ "failed") (-952 (-381))))) |%noBranch|) (-15 -3333 ($ $)) (-15 -2484 ($ $)) (-15 -4337 ($ $)) (-15 -3671 ($ $)) (-15 -2361 ($ $)) (-15 -3915 ($ $)) (-15 -3927 ($ $)) (-15 -3939 ($ $)) (-15 -3986 ($ $)) (-15 -3997 ($ $)) (-15 -4009 ($ $)) (-15 -2843 ($ $)) (-15 -2853 ($ $)) (-15 -2865 ($ $)) (-15 -3120 ($)) (-15 -2608 ((-644 (-1175)) $)) (-15 -3198 ((-112))) (-15 -3198 ((-112) (-112)))))
+((-3152 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
+(((-342 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3152 (|#8| (-1 |#5| |#1|) |#4|))) (-1218) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|) (-1218) (-1240 |#5|) (-1240 (-409 |#6|)) (-344 |#5| |#6| |#7|)) (T -342))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1218)) (-4 *8 (-1218)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-4 *9 (-1240 *8)) (-4 *2 (-344 *8 *9 *10)) (-5 *1 (-342 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-344 *5 *6 *7)) (-4 *10 (-1240 (-409 *9))))))
+(-10 -7 (-15 -3152 (|#8| (-1 |#5| |#1|) |#4|)))
+((-3815 (((-2 (|:| |num| (-1264 |#3|)) (|:| |den| |#3|)) $) 40)) (-2613 (($ (-1264 (-409 |#3|)) (-1264 $)) NIL) (($ (-1264 (-409 |#3|))) NIL) (($ (-1264 |#3|) |#3|) 177)) (-2994 (((-1264 $) (-1264 $)) 161)) (-4019 (((-644 (-644 |#2|))) 130)) (-4317 (((-112) |#2| |#2|) 77)) (-2755 (($ $) 152)) (-2060 (((-771)) 33)) (-2923 (((-1264 $) (-1264 $)) 222)) (-2192 (((-644 (-952 |#2|)) (-1175)) 119)) (-1729 (((-112) $) 174)) (-3108 (((-112) $) 27) (((-112) $ |#2|) 31) (((-112) $ |#3|) 226)) (-2542 (((-3 |#3| "failed")) 53)) (-4026 (((-771)) 188)) (-4393 ((|#2| $ |#2| |#2|) 144)) (-2772 (((-3 |#3| "failed")) 72)) (-2578 (($ $ (-1 (-409 |#3|) (-409 |#3|)) (-771)) NIL) (($ $ (-1 (-409 |#3|) (-409 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 230) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)) (-1389 (((-1264 $) (-1264 $)) 167)) (-2437 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 69)) (-2872 (((-112)) 35)))
+(((-343 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -4019 ((-644 (-644 |#2|)))) (-15 -2192 ((-644 (-952 |#2|)) (-1175))) (-15 -2437 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2542 ((-3 |#3| "failed"))) (-15 -2772 ((-3 |#3| "failed"))) (-15 -4393 (|#2| |#1| |#2| |#2|)) (-15 -2755 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3108 ((-112) |#1| |#3|)) (-15 -3108 ((-112) |#1| |#2|)) (-15 -2613 (|#1| (-1264 |#3|) |#3|)) (-15 -3815 ((-2 (|:| |num| (-1264 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2994 ((-1264 |#1|) (-1264 |#1|))) (-15 -2923 ((-1264 |#1|) (-1264 |#1|))) (-15 -1389 ((-1264 |#1|) (-1264 |#1|))) (-15 -3108 ((-112) |#1|)) (-15 -1729 ((-112) |#1|)) (-15 -4317 ((-112) |#2| |#2|)) (-15 -2872 ((-112))) (-15 -4026 ((-771))) (-15 -2060 ((-771))) (-15 -2578 (|#1| |#1| (-1 (-409 |#3|) (-409 |#3|)))) (-15 -2578 (|#1| |#1| (-1 (-409 |#3|) (-409 |#3|)) (-771))) (-15 -2613 (|#1| (-1264 (-409 |#3|)))) (-15 -2613 (|#1| (-1264 (-409 |#3|)) (-1264 |#1|)))) (-344 |#2| |#3| |#4|) (-1218) (-1240 |#2|) (-1240 (-409 |#3|))) (T -343))
+((-2060 (*1 *2) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-771)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6)))) (-4026 (*1 *2) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-771)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6)))) (-2872 (*1 *2) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-112)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6)))) (-4317 (*1 *2 *3 *3) (-12 (-4 *3 (-1218)) (-4 *5 (-1240 *3)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-112)) (-5 *1 (-343 *4 *3 *5 *6)) (-4 *4 (-344 *3 *5 *6)))) (-2772 (*1 *2) (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 (-409 *2))) (-4 *2 (-1240 *4)) (-5 *1 (-343 *3 *4 *2 *5)) (-4 *3 (-344 *4 *2 *5)))) (-2542 (*1 *2) (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 (-409 *2))) (-4 *2 (-1240 *4)) (-5 *1 (-343 *3 *4 *2 *5)) (-4 *3 (-344 *4 *2 *5)))) (-2192 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *5 (-1218)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-5 *2 (-644 (-952 *5))) (-5 *1 (-343 *4 *5 *6 *7)) (-4 *4 (-344 *5 *6 *7)))) (-4019 (*1 *2) (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-644 (-644 *4))) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6)))))
+(-10 -8 (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -4019 ((-644 (-644 |#2|)))) (-15 -2192 ((-644 (-952 |#2|)) (-1175))) (-15 -2437 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2542 ((-3 |#3| "failed"))) (-15 -2772 ((-3 |#3| "failed"))) (-15 -4393 (|#2| |#1| |#2| |#2|)) (-15 -2755 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3108 ((-112) |#1| |#3|)) (-15 -3108 ((-112) |#1| |#2|)) (-15 -2613 (|#1| (-1264 |#3|) |#3|)) (-15 -3815 ((-2 (|:| |num| (-1264 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -2994 ((-1264 |#1|) (-1264 |#1|))) (-15 -2923 ((-1264 |#1|) (-1264 |#1|))) (-15 -1389 ((-1264 |#1|) (-1264 |#1|))) (-15 -3108 ((-112) |#1|)) (-15 -1729 ((-112) |#1|)) (-15 -4317 ((-112) |#2| |#2|)) (-15 -2872 ((-112))) (-15 -4026 ((-771))) (-15 -2060 ((-771))) (-15 -2578 (|#1| |#1| (-1 (-409 |#3|) (-409 |#3|)))) (-15 -2578 (|#1| |#1| (-1 (-409 |#3|) (-409 |#3|)) (-771))) (-15 -2613 (|#1| (-1264 (-409 |#3|)))) (-15 -2613 (|#1| (-1264 (-409 |#3|)) (-1264 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3815 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) 204)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 102 (|has| (-409 |#2|) (-365)))) (-1968 (($ $) 103 (|has| (-409 |#2|) (-365)))) (-2644 (((-112) $) 105 (|has| (-409 |#2|) (-365)))) (-2965 (((-689 (-409 |#2|)) (-1264 $)) 53) (((-689 (-409 |#2|))) 68)) (-3834 (((-409 |#2|) $) 59)) (-2277 (((-1187 (-921) (-771)) (-566)) 155 (|has| (-409 |#2|) (-351)))) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 122 (|has| (-409 |#2|) (-365)))) (-3271 (((-420 $) $) 123 (|has| (-409 |#2|) (-365)))) (-2738 (((-112) $ $) 113 (|has| (-409 |#2|) (-365)))) (-4070 (((-771)) 96 (|has| (-409 |#2|) (-370)))) (-1395 (((-112)) 221)) (-4205 (((-112) |#1|) 220) (((-112) |#2|) 219)) (-3877 (($) 18 T CONST)) (-3066 (((-3 (-566) "failed") $) 178 (|has| (-409 |#2|) (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 176 (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-3 (-409 |#2|) "failed") $) 173)) (-1867 (((-566) $) 177 (|has| (-409 |#2|) (-1038 (-566)))) (((-409 (-566)) $) 175 (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-409 |#2|) $) 174)) (-2613 (($ (-1264 (-409 |#2|)) (-1264 $)) 55) (($ (-1264 (-409 |#2|))) 71) (($ (-1264 |#2|) |#2|) 203)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| (-409 |#2|) (-351)))) (-2949 (($ $ $) 117 (|has| (-409 |#2|) (-365)))) (-2205 (((-689 (-409 |#2|)) $ (-1264 $)) 60) (((-689 (-409 |#2|)) $) 66)) (-2210 (((-689 (-566)) (-689 $)) 172 (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 171 (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-409 |#2|))) (|:| |vec| (-1264 (-409 |#2|)))) (-689 $) (-1264 $)) 170) (((-689 (-409 |#2|)) (-689 $)) 169)) (-2994 (((-1264 $) (-1264 $)) 209)) (-1580 (($ |#3|) 166) (((-3 $ "failed") (-409 |#3|)) 163 (|has| (-409 |#2|) (-365)))) (-2928 (((-3 $ "failed") $) 37)) (-4019 (((-644 (-644 |#1|))) 190 (|has| |#1| (-370)))) (-4317 (((-112) |#1| |#1|) 225)) (-4157 (((-921)) 61)) (-1618 (($) 99 (|has| (-409 |#2|) (-370)))) (-3459 (((-112)) 218)) (-4356 (((-112) |#1|) 217) (((-112) |#2|) 216)) (-2960 (($ $ $) 116 (|has| (-409 |#2|) (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 111 (|has| (-409 |#2|) (-365)))) (-2755 (($ $) 196)) (-1676 (($) 157 (|has| (-409 |#2|) (-351)))) (-3698 (((-112) $) 158 (|has| (-409 |#2|) (-351)))) (-2901 (($ $ (-771)) 149 (|has| (-409 |#2|) (-351))) (($ $) 148 (|has| (-409 |#2|) (-351)))) (-1784 (((-112) $) 124 (|has| (-409 |#2|) (-365)))) (-3227 (((-921) $) 160 (|has| (-409 |#2|) (-351))) (((-833 (-921)) $) 146 (|has| (-409 |#2|) (-351)))) (-3466 (((-112) $) 35)) (-2060 (((-771)) 228)) (-2923 (((-1264 $) (-1264 $)) 210)) (-2719 (((-409 |#2|) $) 58)) (-2192 (((-644 (-952 |#1|)) (-1175)) 191 (|has| |#1| (-365)))) (-2133 (((-3 $ "failed") $) 150 (|has| (-409 |#2|) (-351)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 120 (|has| (-409 |#2|) (-365)))) (-2750 ((|#3| $) 51 (|has| (-409 |#2|) (-365)))) (-1299 (((-921) $) 98 (|has| (-409 |#2|) (-370)))) (-1567 ((|#3| $) 164)) (-2197 (($ (-644 $)) 109 (|has| (-409 |#2|) (-365))) (($ $ $) 108 (|has| (-409 |#2|) (-365)))) (-2402 (((-1157) $) 10)) (-1387 (((-689 (-409 |#2|))) 205)) (-3355 (((-689 (-409 |#2|))) 207)) (-3584 (($ $) 125 (|has| (-409 |#2|) (-365)))) (-2769 (($ (-1264 |#2|) |#2|) 201)) (-2594 (((-689 (-409 |#2|))) 206)) (-4170 (((-689 (-409 |#2|))) 208)) (-3080 (((-2 (|:| |num| (-689 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 200)) (-4096 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) 202)) (-4202 (((-1264 $)) 214)) (-2161 (((-1264 $)) 215)) (-1729 (((-112) $) 213)) (-3108 (((-112) $) 212) (((-112) $ |#1|) 199) (((-112) $ |#2|) 198)) (-3625 (($) 151 (|has| (-409 |#2|) (-351)) CONST)) (-2208 (($ (-921)) 97 (|has| (-409 |#2|) (-370)))) (-2542 (((-3 |#2| "failed")) 193)) (-4056 (((-1119) $) 11)) (-4026 (((-771)) 227)) (-4152 (($) 168)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 110 (|has| (-409 |#2|) (-365)))) (-2235 (($ (-644 $)) 107 (|has| (-409 |#2|) (-365))) (($ $ $) 106 (|has| (-409 |#2|) (-365)))) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) 154 (|has| (-409 |#2|) (-351)))) (-2473 (((-420 $) $) 121 (|has| (-409 |#2|) (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| (-409 |#2|) (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 118 (|has| (-409 |#2|) (-365)))) (-2997 (((-3 $ "failed") $ $) 101 (|has| (-409 |#2|) (-365)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 112 (|has| (-409 |#2|) (-365)))) (-3470 (((-771) $) 114 (|has| (-409 |#2|) (-365)))) (-4393 ((|#1| $ |#1| |#1|) 195)) (-2772 (((-3 |#2| "failed")) 194)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 115 (|has| (-409 |#2|) (-365)))) (-3309 (((-409 |#2|) (-1264 $)) 54) (((-409 |#2|)) 67)) (-2347 (((-771) $) 159 (|has| (-409 |#2|) (-351))) (((-3 (-771) "failed") $ $) 147 (|has| (-409 |#2|) (-351)))) (-2578 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) 131 (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) 130 (|has| (-409 |#2|) (-365))) (($ $ (-1 |#2| |#2|)) 197) (($ $ (-644 (-1175)) (-644 (-771))) 138 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2447 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-1175) (-771)) 139 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2447 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-644 (-1175))) 140 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2447 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-1175)) 141 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2447 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-771)) 143 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-233))) (-2447 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) 145 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-233))) (-2447 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-4359 (((-689 (-409 |#2|)) (-1264 $) (-1 (-409 |#2|) (-409 |#2|))) 162 (|has| (-409 |#2|) (-365)))) (-3601 ((|#3|) 167)) (-2507 (($) 156 (|has| (-409 |#2|) (-351)))) (-2543 (((-1264 (-409 |#2|)) $ (-1264 $)) 57) (((-689 (-409 |#2|)) (-1264 $) (-1264 $)) 56) (((-1264 (-409 |#2|)) $) 73) (((-689 (-409 |#2|)) (-1264 $)) 72)) (-3204 (((-1264 (-409 |#2|)) $) 70) (($ (-1264 (-409 |#2|))) 69) ((|#3| $) 179) (($ |#3|) 165)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 153 (|has| (-409 |#2|) (-351)))) (-1389 (((-1264 $) (-1264 $)) 211)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ (-409 |#2|)) 44) (($ (-409 (-566))) 95 (-2805 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-1038 (-409 (-566)))))) (($ $) 100 (|has| (-409 |#2|) (-365)))) (-3226 (($ $) 152 (|has| (-409 |#2|) (-351))) (((-3 $ "failed") $) 50 (|has| (-409 |#2|) (-145)))) (-4370 ((|#3| $) 52)) (-3996 (((-771)) 32 T CONST)) (-2575 (((-112)) 224)) (-4379 (((-112) |#1|) 223) (((-112) |#2|) 222)) (-3801 (((-112) $ $) 9)) (-1575 (((-1264 $)) 74)) (-2278 (((-112) $ $) 104 (|has| (-409 |#2|) (-365)))) (-2437 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 192)) (-2872 (((-112)) 226)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) 133 (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) 132 (|has| (-409 |#2|) (-365))) (($ $ (-644 (-1175)) (-644 (-771))) 134 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2447 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-1175) (-771)) 135 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2447 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-644 (-1175))) 136 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2447 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-1175)) 137 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) (-2447 (|has| (-409 |#2|) (-900 (-1175))) (|has| (-409 |#2|) (-365))))) (($ $ (-771)) 142 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-233))) (-2447 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) 144 (-2805 (-2447 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-233))) (-2447 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 129 (|has| (-409 |#2|) (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 126 (|has| (-409 |#2|) (-365)))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 |#2|)) 46) (($ (-409 |#2|) $) 45) (($ (-409 (-566)) $) 128 (|has| (-409 |#2|) (-365))) (($ $ (-409 (-566))) 127 (|has| (-409 |#2|) (-365)))))
(((-344 |#1| |#2| |#3|) (-140) (-1218) (-1240 |t#1|) (-1240 (-409 |t#2|))) (T -344))
-((-4302 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-771)))) (-4127 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-771)))) (-1574 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-3038 (*1 *2 *3 *3) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-2462 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4038 (*1 *2 *3) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4038 (*1 *2 *3) (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112)))) (-4051 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4146 (*1 *2 *3) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4146 (*1 *2 *3) (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112)))) (-3554 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4036 (*1 *2 *3) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4036 (*1 *2 *3) (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112)))) (-1925 (*1 *2) (-12 (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)))) (-1641 (*1 *2) (-12 (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)))) (-2936 (*1 *2 *1) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-1477 (*1 *2 *1) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-3720 (*1 *2 *2) (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))) (-3628 (*1 *2 *2) (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))) (-2507 (*1 *2 *2) (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))) (-2064 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))) (-2730 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))) (-2775 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))) (-3056 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))) (-3461 (*1 *2 *1) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-2 (|:| |num| (-1264 *4)) (|:| |den| *4))))) (-1547 (*1 *1 *2 *3) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1240 *4)) (-4 *4 (-1218)) (-4 *1 (-344 *4 *3 *5)) (-4 *5 (-1240 (-409 *3))))) (-2057 (*1 *2 *1) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-2 (|:| |num| (-1264 *4)) (|:| |den| *4))))) (-3931 (*1 *1 *2 *3) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1240 *4)) (-4 *4 (-1218)) (-4 *1 (-344 *4 *3 *5)) (-4 *5 (-1240 (-409 *3))))) (-2825 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-344 *4 *5 *6)) (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-2 (|:| |num| (-689 *5)) (|:| |den| *5))))) (-1477 (*1 *2 *1 *3) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-1477 (*1 *2 *1 *3) (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112)))) (-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))) (-4248 (*1 *1 *1) (-12 (-4 *1 (-344 *2 *3 *4)) (-4 *2 (-1218)) (-4 *3 (-1240 *2)) (-4 *4 (-1240 (-409 *3))))) (-4386 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-344 *2 *3 *4)) (-4 *2 (-1218)) (-4 *3 (-1240 *2)) (-4 *4 (-1240 (-409 *3))))) (-3611 (*1 *2) (|partial| -12 (-4 *1 (-344 *3 *2 *4)) (-4 *3 (-1218)) (-4 *4 (-1240 (-409 *2))) (-4 *2 (-1240 *3)))) (-3901 (*1 *2) (|partial| -12 (-4 *1 (-344 *3 *2 *4)) (-4 *3 (-1218)) (-4 *4 (-1240 (-409 *2))) (-4 *2 (-1240 *3)))) (-1832 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-1218)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-344 *4 *5 *6)))) (-1928 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *1 (-344 *4 *5 *6)) (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-4 *4 (-365)) (-5 *2 (-644 (-952 *4))))) (-2674 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *3 (-370)) (-5 *2 (-644 (-644 *3))))))
-(-13 (-724 (-409 |t#2|) |t#3|) (-10 -8 (-15 -4302 ((-771))) (-15 -4127 ((-771))) (-15 -1574 ((-112))) (-15 -3038 ((-112) |t#1| |t#1|)) (-15 -2462 ((-112))) (-15 -4038 ((-112) |t#1|)) (-15 -4038 ((-112) |t#2|)) (-15 -4051 ((-112))) (-15 -4146 ((-112) |t#1|)) (-15 -4146 ((-112) |t#2|)) (-15 -3554 ((-112))) (-15 -4036 ((-112) |t#1|)) (-15 -4036 ((-112) |t#2|)) (-15 -1925 ((-1264 $))) (-15 -1641 ((-1264 $))) (-15 -2936 ((-112) $)) (-15 -1477 ((-112) $)) (-15 -3720 ((-1264 $) (-1264 $))) (-15 -3628 ((-1264 $) (-1264 $))) (-15 -2507 ((-1264 $) (-1264 $))) (-15 -2064 ((-689 (-409 |t#2|)))) (-15 -2730 ((-689 (-409 |t#2|)))) (-15 -2775 ((-689 (-409 |t#2|)))) (-15 -3056 ((-689 (-409 |t#2|)))) (-15 -3461 ((-2 (|:| |num| (-1264 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -1547 ($ (-1264 |t#2|) |t#2|)) (-15 -2057 ((-2 (|:| |num| (-1264 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3931 ($ (-1264 |t#2|) |t#2|)) (-15 -2825 ((-2 (|:| |num| (-689 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -1477 ((-112) $ |t#1|)) (-15 -1477 ((-112) $ |t#2|)) (-15 -2862 ($ $ (-1 |t#2| |t#2|))) (-15 -4248 ($ $)) (-15 -4386 (|t#1| $ |t#1| |t#1|)) (-15 -3611 ((-3 |t#2| "failed"))) (-15 -3901 ((-3 |t#2| "failed"))) (-15 -1832 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-365)) (-15 -1928 ((-644 (-952 |t#1|)) (-1175))) |%noBranch|) (IF (|has| |t#1| (-370)) (-15 -2674 ((-644 (-644 |t#1|)))) |%noBranch|)))
+((-2060 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-771)))) (-4026 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-771)))) (-2872 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4317 (*1 *2 *3 *3) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-2575 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4379 (*1 *2 *3) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4379 (*1 *2 *3) (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112)))) (-1395 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4205 (*1 *2 *3) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4205 (*1 *2 *3) (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112)))) (-3459 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4356 (*1 *2 *3) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-4356 (*1 *2 *3) (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112)))) (-2161 (*1 *2) (-12 (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)))) (-4202 (*1 *2) (-12 (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)))) (-1729 (*1 *2 *1) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-3108 (*1 *2 *1) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-1389 (*1 *2 *2) (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))) (-2923 (*1 *2 *2) (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))) (-2994 (*1 *2 *2) (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))) (-4170 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))) (-3355 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))) (-2594 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))) (-1387 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))) (-3815 (*1 *2 *1) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-2 (|:| |num| (-1264 *4)) (|:| |den| *4))))) (-2613 (*1 *1 *2 *3) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1240 *4)) (-4 *4 (-1218)) (-4 *1 (-344 *4 *3 *5)) (-4 *5 (-1240 (-409 *3))))) (-4096 (*1 *2 *1) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-2 (|:| |num| (-1264 *4)) (|:| |den| *4))))) (-2769 (*1 *1 *2 *3) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1240 *4)) (-4 *4 (-1218)) (-4 *1 (-344 *4 *3 *5)) (-4 *5 (-1240 (-409 *3))))) (-3080 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-344 *4 *5 *6)) (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-2 (|:| |num| (-689 *5)) (|:| |den| *5))))) (-3108 (*1 *2 *1 *3) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))) (-3108 (*1 *2 *1 *3) (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112)))) (-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))) (-2755 (*1 *1 *1) (-12 (-4 *1 (-344 *2 *3 *4)) (-4 *2 (-1218)) (-4 *3 (-1240 *2)) (-4 *4 (-1240 (-409 *3))))) (-4393 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-344 *2 *3 *4)) (-4 *2 (-1218)) (-4 *3 (-1240 *2)) (-4 *4 (-1240 (-409 *3))))) (-2772 (*1 *2) (|partial| -12 (-4 *1 (-344 *3 *2 *4)) (-4 *3 (-1218)) (-4 *4 (-1240 (-409 *2))) (-4 *2 (-1240 *3)))) (-2542 (*1 *2) (|partial| -12 (-4 *1 (-344 *3 *2 *4)) (-4 *3 (-1218)) (-4 *4 (-1240 (-409 *2))) (-4 *2 (-1240 *3)))) (-2437 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-1218)) (-4 *6 (-1240 (-409 *5))) (-5 *2 (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5) (|:| |gd| *5))) (-4 *1 (-344 *4 *5 *6)))) (-2192 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *1 (-344 *4 *5 *6)) (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-4 *4 (-365)) (-5 *2 (-644 (-952 *4))))) (-4019 (*1 *2) (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))) (-4 *3 (-370)) (-5 *2 (-644 (-644 *3))))))
+(-13 (-724 (-409 |t#2|) |t#3|) (-10 -8 (-15 -2060 ((-771))) (-15 -4026 ((-771))) (-15 -2872 ((-112))) (-15 -4317 ((-112) |t#1| |t#1|)) (-15 -2575 ((-112))) (-15 -4379 ((-112) |t#1|)) (-15 -4379 ((-112) |t#2|)) (-15 -1395 ((-112))) (-15 -4205 ((-112) |t#1|)) (-15 -4205 ((-112) |t#2|)) (-15 -3459 ((-112))) (-15 -4356 ((-112) |t#1|)) (-15 -4356 ((-112) |t#2|)) (-15 -2161 ((-1264 $))) (-15 -4202 ((-1264 $))) (-15 -1729 ((-112) $)) (-15 -3108 ((-112) $)) (-15 -1389 ((-1264 $) (-1264 $))) (-15 -2923 ((-1264 $) (-1264 $))) (-15 -2994 ((-1264 $) (-1264 $))) (-15 -4170 ((-689 (-409 |t#2|)))) (-15 -3355 ((-689 (-409 |t#2|)))) (-15 -2594 ((-689 (-409 |t#2|)))) (-15 -1387 ((-689 (-409 |t#2|)))) (-15 -3815 ((-2 (|:| |num| (-1264 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2613 ($ (-1264 |t#2|) |t#2|)) (-15 -4096 ((-2 (|:| |num| (-1264 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2769 ($ (-1264 |t#2|) |t#2|)) (-15 -3080 ((-2 (|:| |num| (-689 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -3108 ((-112) $ |t#1|)) (-15 -3108 ((-112) $ |t#2|)) (-15 -2578 ($ $ (-1 |t#2| |t#2|))) (-15 -2755 ($ $)) (-15 -4393 (|t#1| $ |t#1| |t#1|)) (-15 -2772 ((-3 |t#2| "failed"))) (-15 -2542 ((-3 |t#2| "failed"))) (-15 -2437 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-365)) (-15 -2192 ((-644 (-952 |t#1|)) (-1175))) |%noBranch|) (IF (|has| |t#1| (-370)) (-15 -4019 ((-644 (-644 |t#1|)))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-38 #1=(-409 |#2|)) . T) ((-38 $) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-102) . T) ((-111 #0# #0#) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-145))) ((-147) |has| (-409 |#2|) (-147)) ((-616 #0#) -2805 (|has| (-409 |#2|) (-1038 (-409 (-566)))) (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-616 #1#) . T) ((-616 (-566)) . T) ((-616 $) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-613 (-862)) . T) ((-172) . T) ((-614 |#3|) . T) ((-231 #1#) |has| (-409 |#2|) (-365)) ((-233) -2805 (|has| (-409 |#2|) (-351)) (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365)))) ((-243) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-291) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-308) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-365) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-404) |has| (-409 |#2|) (-351)) ((-370) -2805 (|has| (-409 |#2|) (-370)) (|has| (-409 |#2|) (-351))) ((-351) |has| (-409 |#2|) (-351)) ((-372 #1# |#3|) . T) ((-411 #1# |#3|) . T) ((-379 #1#) . T) ((-413 #1#) . T) ((-454) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-558) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-646 #0#) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-646 #1#) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 #0#) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-648 #1#) . T) ((-648 $) . T) ((-640 #0#) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-640 #1#) . T) ((-640 $) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-639 #1#) . T) ((-639 (-566)) |has| (-409 |#2|) (-639 (-566))) ((-717 #0#) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-717 #1#) . T) ((-717 $) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-724 #1# |#3|) . T) ((-726) . T) ((-900 (-1175)) -12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175)))) ((-920) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-1038 (-409 (-566))) |has| (-409 |#2|) (-1038 (-409 (-566)))) ((-1038 #1#) . T) ((-1038 (-566)) |has| (-409 |#2|) (-1038 (-566))) ((-1051 #0#) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-1051 #1#) . T) ((-1051 $) . T) ((-1056 #0#) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))) ((-1056 #1#) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1150) |has| (-409 |#2|) (-351)) ((-1218) -2805 (|has| (-409 |#2|) (-351)) (|has| (-409 |#2|) (-365))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-910 |#1|) (-370)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) NIL (|has| (-910 |#1|) (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-910 |#1|) "failed") $) NIL)) (-1756 (((-910 |#1|) $) NIL)) (-1547 (($ (-1264 (-910 |#1|))) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-910 |#1|) (-370)))) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-910 |#1|) (-370)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) NIL (|has| (-910 |#1|) (-370)))) (-3449 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-3626 (($ $ (-771)) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370)))) (($ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-2635 (((-112) $) NIL)) (-2716 (((-921) $) NIL (|has| (-910 |#1|) (-370))) (((-833 (-921)) $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-2741 (((-112) $) NIL)) (-2061 (($) NIL (|has| (-910 |#1|) (-370)))) (-3754 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-1559 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-2546 (((-3 $ "failed") $) NIL (|has| (-910 |#1|) (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 (-910 |#1|)) $) NIL) (((-1171 $) $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-3712 (((-921) $) NIL (|has| (-910 |#1|) (-370)))) (-1907 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370)))) (-3866 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-1171 (-910 |#1|)) "failed") $ $) NIL (|has| (-910 |#1|) (-370)))) (-1900 (($ $ (-1171 (-910 |#1|))) NIL (|has| (-910 |#1|) (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-910 |#1|) (-370)) CONST)) (-2168 (($ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-3751 (((-112) $) NIL)) (-4033 (((-1119) $) NIL)) (-3271 (((-958 (-1119))) NIL)) (-4067 (($) NIL (|has| (-910 |#1|) (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| (-910 |#1|) (-370)))) (-2391 (((-420 $) $) NIL)) (-2003 (((-833 (-921))) NIL) (((-921)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-771) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-1909 (((-134)) NIL)) (-2862 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-3992 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-2127 (((-1171 (-910 |#1|))) NIL)) (-1536 (($) NIL (|has| (-910 |#1|) (-370)))) (-2873 (($) NIL (|has| (-910 |#1|) (-370)))) (-2770 (((-1264 (-910 |#1|)) $) NIL) (((-689 (-910 |#1|)) (-1264 $)) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-910 |#1|) (-370)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-910 |#1|)) NIL)) (-3842 (($ $) NIL (|has| (-910 |#1|) (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2752 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2840 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL) (($ $ (-910 |#1|)) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-910 |#1|)) NIL) (($ (-910 |#1|) $) NIL)))
-(((-345 |#1| |#2|) (-13 (-330 (-910 |#1|)) (-10 -7 (-15 -3271 ((-958 (-1119)))))) (-921) (-921)) (T -345))
-((-3271 (*1 *2) (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-345 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))))
-(-13 (-330 (-910 |#1|)) (-10 -7 (-15 -3271 ((-958 (-1119))))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 58)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) 56 (|has| |#1| (-370)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) NIL (|has| |#1| (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) 144)) (-1756 ((|#1| $) 115)) (-1547 (($ (-1264 |#1|)) 132)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) 123 (|has| |#1| (-370)))) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) 126 (|has| |#1| (-370)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) 162 (|has| |#1| (-370)))) (-3449 (((-112) $) 66 (|has| |#1| (-370)))) (-3626 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2635 (((-112) $) NIL)) (-2716 (((-921) $) 60 (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2741 (((-112) $) 62)) (-2061 (($) 164 (|has| |#1| (-370)))) (-3754 (((-112) $) NIL (|has| |#1| (-370)))) (-1559 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 |#1|) $) 119) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-3712 (((-921) $) 173 (|has| |#1| (-370)))) (-1907 (((-1171 |#1|) $) NIL (|has| |#1| (-370)))) (-3866 (((-1171 |#1|) $) NIL (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) NIL (|has| |#1| (-370)))) (-1900 (($ $ (-1171 |#1|)) NIL (|has| |#1| (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 180)) (-2759 (($) NIL (|has| |#1| (-370)) CONST)) (-2168 (($ (-921)) 98 (|has| |#1| (-370)))) (-3751 (((-112) $) 149)) (-4033 (((-1119) $) NIL)) (-3271 (((-958 (-1119))) 57)) (-4067 (($) 160 (|has| |#1| (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) 121 (|has| |#1| (-370)))) (-2391 (((-420 $) $) NIL)) (-2003 (((-833 (-921))) 92) (((-921)) 93)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-771) $) 163 (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) 156 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1909 (((-134)) NIL)) (-2862 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-3992 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-2127 (((-1171 |#1|)) 124)) (-1536 (($) 161 (|has| |#1| (-370)))) (-2873 (($) 169 (|has| |#1| (-370)))) (-2770 (((-1264 |#1|) $) 77) (((-689 |#1|) (-1264 $)) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-2512 (((-862) $) 176) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 102)) (-3842 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3795 (((-771)) 157 T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) 146) (((-1264 $) (-921)) 100)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) 67 T CONST)) (-2495 (($) 105 T CONST)) (-2752 (($ $) 109 (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2840 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2940 (((-112) $ $) 65)) (-3061 (($ $ $) 178) (($ $ |#1|) 179)) (-3047 (($ $) 159) (($ $ $) NIL)) (-3034 (($ $ $) 86)) (** (($ $ (-921)) 182) (($ $ (-771)) 183) (($ $ (-566)) 181)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 104) (($ $ $) 103) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 177)))
-(((-346 |#1| |#2|) (-13 (-330 |#1|) (-10 -7 (-15 -3271 ((-958 (-1119)))))) (-351) (-1171 |#1|)) (T -346))
-((-3271 (*1 *2) (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-346 *3 *4)) (-4 *3 (-351)) (-14 *4 (-1171 *3)))))
-(-13 (-330 |#1|) (-10 -7 (-15 -3271 ((-958 (-1119))))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| |#1| (-370)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) NIL (|has| |#1| (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-1547 (($ (-1264 |#1|)) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-370)))) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| |#1| (-370)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) NIL (|has| |#1| (-370)))) (-3449 (((-112) $) NIL (|has| |#1| (-370)))) (-3626 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2635 (((-112) $) NIL)) (-2716 (((-921) $) NIL (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2741 (((-112) $) NIL)) (-2061 (($) NIL (|has| |#1| (-370)))) (-3754 (((-112) $) NIL (|has| |#1| (-370)))) (-1559 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 |#1|) $) NIL) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-3712 (((-921) $) NIL (|has| |#1| (-370)))) (-1907 (((-1171 |#1|) $) NIL (|has| |#1| (-370)))) (-3866 (((-1171 |#1|) $) NIL (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) NIL (|has| |#1| (-370)))) (-1900 (($ $ (-1171 |#1|)) NIL (|has| |#1| (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| |#1| (-370)) CONST)) (-2168 (($ (-921)) NIL (|has| |#1| (-370)))) (-3751 (((-112) $) NIL)) (-4033 (((-1119) $) NIL)) (-3271 (((-958 (-1119))) NIL)) (-4067 (($) NIL (|has| |#1| (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| |#1| (-370)))) (-2391 (((-420 $) $) NIL)) (-2003 (((-833 (-921))) NIL) (((-921)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-771) $) NIL (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1909 (((-134)) NIL)) (-2862 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-3992 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-2127 (((-1171 |#1|)) NIL)) (-1536 (($) NIL (|has| |#1| (-370)))) (-2873 (($) NIL (|has| |#1| (-370)))) (-2770 (((-1264 |#1|) $) NIL) (((-689 |#1|) (-1264 $)) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) NIL)) (-3842 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2752 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2840 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-347 |#1| |#2|) (-13 (-330 |#1|) (-10 -7 (-15 -3271 ((-958 (-1119)))))) (-351) (-921)) (T -347))
-((-3271 (*1 *2) (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-347 *3 *4)) (-4 *3 (-351)) (-14 *4 (-921)))))
-(-13 (-330 |#1|) (-10 -7 (-15 -3271 ((-958 (-1119))))))
-((-2904 (((-771) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119)))))) 61)) (-3536 (((-958 (-1119)) (-1171 |#1|)) 113)) (-2066 (((-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))) (-1171 |#1|)) 105)) (-3057 (((-689 |#1|) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119)))))) 115)) (-2928 (((-3 (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))) "failed") (-921)) 13)) (-1962 (((-3 (-1171 |#1|) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119)))))) (-921)) 18)))
-(((-348 |#1|) (-10 -7 (-15 -3536 ((-958 (-1119)) (-1171 |#1|))) (-15 -2066 ((-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))) (-1171 |#1|))) (-15 -3057 ((-689 |#1|) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))))) (-15 -2904 ((-771) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))))) (-15 -2928 ((-3 (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))) "failed") (-921))) (-15 -1962 ((-3 (-1171 |#1|) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119)))))) (-921)))) (-351)) (T -348))
-((-1962 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-3 (-1171 *4) (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119))))))) (-5 *1 (-348 *4)) (-4 *4 (-351)))) (-2928 (*1 *2 *3) (|partial| -12 (-5 *3 (-921)) (-5 *2 (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119)))))) (-5 *1 (-348 *4)) (-4 *4 (-351)))) (-2904 (*1 *2 *3) (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119)))))) (-4 *4 (-351)) (-5 *2 (-771)) (-5 *1 (-348 *4)))) (-3057 (*1 *2 *3) (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119)))))) (-4 *4 (-351)) (-5 *2 (-689 *4)) (-5 *1 (-348 *4)))) (-2066 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119)))))) (-5 *1 (-348 *4)))) (-3536 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-958 (-1119))) (-5 *1 (-348 *4)))))
-(-10 -7 (-15 -3536 ((-958 (-1119)) (-1171 |#1|))) (-15 -2066 ((-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))) (-1171 |#1|))) (-15 -3057 ((-689 |#1|) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))))) (-15 -2904 ((-771) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))))) (-15 -2928 ((-3 (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))) "failed") (-921))) (-15 -1962 ((-3 (-1171 |#1|) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119)))))) (-921))))
-((-2512 ((|#1| |#3|) 108) ((|#3| |#1|) 91)))
-(((-349 |#1| |#2| |#3|) (-10 -7 (-15 -2512 (|#3| |#1|)) (-15 -2512 (|#1| |#3|))) (-330 |#2|) (-351) (-330 |#2|)) (T -349))
-((-2512 (*1 *2 *3) (-12 (-4 *4 (-351)) (-4 *2 (-330 *4)) (-5 *1 (-349 *2 *4 *3)) (-4 *3 (-330 *4)))) (-2512 (*1 *2 *3) (-12 (-4 *4 (-351)) (-4 *2 (-330 *4)) (-5 *1 (-349 *3 *4 *2)) (-4 *3 (-330 *4)))))
-(-10 -7 (-15 -2512 (|#3| |#1|)) (-15 -2512 (|#1| |#3|)))
-((-3449 (((-112) $) 60)) (-2716 (((-833 (-921)) $) 23) (((-921) $) 66)) (-2546 (((-3 $ "failed") $) 18)) (-2759 (($) 9)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 116)) (-3379 (((-3 (-771) "failed") $ $) 94) (((-771) $) 81)) (-2862 (($ $ (-771)) NIL) (($ $) 8)) (-1536 (($) 53)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 38)) (-3842 (((-3 $ "failed") $) 45) (($ $) 44)))
-(((-350 |#1|) (-10 -8 (-15 -2716 ((-921) |#1|)) (-15 -3379 ((-771) |#1|)) (-15 -3449 ((-112) |#1|)) (-15 -1536 (|#1|)) (-15 -3273 ((-3 (-1264 |#1|) "failed") (-689 |#1|))) (-15 -3842 (|#1| |#1|)) (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2759 (|#1|)) (-15 -2546 ((-3 |#1| "failed") |#1|)) (-15 -3379 ((-3 (-771) "failed") |#1| |#1|)) (-15 -2716 ((-833 (-921)) |#1|)) (-15 -3842 ((-3 |#1| "failed") |#1|)) (-15 -4319 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|)))) (-351)) (T -350))
-NIL
-(-10 -8 (-15 -2716 ((-921) |#1|)) (-15 -3379 ((-771) |#1|)) (-15 -3449 ((-112) |#1|)) (-15 -1536 (|#1|)) (-15 -3273 ((-3 (-1264 |#1|) "failed") (-689 |#1|))) (-15 -3842 (|#1| |#1|)) (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2759 (|#1|)) (-15 -2546 ((-3 |#1| "failed") |#1|)) (-15 -3379 ((-3 (-771) "failed") |#1| |#1|)) (-15 -2716 ((-833 (-921)) |#1|)) (-15 -3842 ((-3 |#1| "failed") |#1|)) (-15 -4319 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4324 (((-1187 (-921) (-771)) (-566)) 101)) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 81)) (-1370 (((-420 $) $) 80)) (-1561 (((-112) $ $) 65)) (-4025 (((-771)) 111)) (-2342 (($) 18 T CONST)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) 95)) (-2926 (($ $ $) 61)) (-1579 (((-3 $ "failed") $) 37)) (-3335 (($) 114)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-3092 (($) 99)) (-3449 (((-112) $) 98)) (-3626 (($ $) 87) (($ $ (-771)) 86)) (-2635 (((-112) $) 79)) (-2716 (((-833 (-921)) $) 89) (((-921) $) 96)) (-2741 (((-112) $) 35)) (-2546 (((-3 $ "failed") $) 110)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-3712 (((-921) $) 113)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 78)) (-2759 (($) 109 T CONST)) (-2168 (($ (-921)) 112)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) 102)) (-2391 (((-420 $) $) 82)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1813 (((-771) $) 64)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-3379 (((-3 (-771) "failed") $ $) 88) (((-771) $) 97)) (-2862 (($ $ (-771)) 107) (($ $) 105)) (-1536 (($) 100)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 103)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74)) (-3842 (((-3 $ "failed") $) 90) (($ $) 104)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-771)) 108) (($ $) 106)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 73)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-910 |#1|) (-370)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) NIL (|has| (-910 |#1|) (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-910 |#1|) "failed") $) NIL)) (-1867 (((-910 |#1|) $) NIL)) (-2613 (($ (-1264 (-910 |#1|))) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-910 |#1|) (-370)))) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-910 |#1|) (-370)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) NIL (|has| (-910 |#1|) (-370)))) (-3698 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-2901 (($ $ (-771)) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370)))) (($ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-1784 (((-112) $) NIL)) (-3227 (((-921) $) NIL (|has| (-910 |#1|) (-370))) (((-833 (-921)) $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-3466 (((-112) $) NIL)) (-4138 (($) NIL (|has| (-910 |#1|) (-370)))) (-1771 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-2719 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-2133 (((-3 $ "failed") $) NIL (|has| (-910 |#1|) (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 (-910 |#1|)) $) NIL) (((-1171 $) $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-1299 (((-921) $) NIL (|has| (-910 |#1|) (-370)))) (-1988 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370)))) (-3433 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-1171 (-910 |#1|)) "failed") $ $) NIL (|has| (-910 |#1|) (-370)))) (-1923 (($ $ (-1171 (-910 |#1|))) NIL (|has| (-910 |#1|) (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-910 |#1|) (-370)) CONST)) (-2208 (($ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-1737 (((-112) $) NIL)) (-4056 (((-1119) $) NIL)) (-2653 (((-958 (-1119))) NIL)) (-4152 (($) NIL (|has| (-910 |#1|) (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| (-910 |#1|) (-370)))) (-2473 (((-420 $) $) NIL)) (-1723 (((-833 (-921))) NIL) (((-921)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-771) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-2012 (((-134)) NIL)) (-2578 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2108 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-3601 (((-1171 (-910 |#1|))) NIL)) (-2507 (($) NIL (|has| (-910 |#1|) (-370)))) (-2348 (($) NIL (|has| (-910 |#1|) (-370)))) (-2543 (((-1264 (-910 |#1|)) $) NIL) (((-689 (-910 |#1|)) (-1264 $)) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-910 |#1|) (-370)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-910 |#1|)) NIL)) (-3226 (($ $) NIL (|has| (-910 |#1|) (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-3583 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2876 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL) (($ $ (-910 |#1|)) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-910 |#1|)) NIL) (($ (-910 |#1|) $) NIL)))
+(((-345 |#1| |#2|) (-13 (-330 (-910 |#1|)) (-10 -7 (-15 -2653 ((-958 (-1119)))))) (-921) (-921)) (T -345))
+((-2653 (*1 *2) (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-345 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))))
+(-13 (-330 (-910 |#1|)) (-10 -7 (-15 -2653 ((-958 (-1119))))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 58)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) 56 (|has| |#1| (-370)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) NIL (|has| |#1| (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) 144)) (-1867 ((|#1| $) 115)) (-2613 (($ (-1264 |#1|)) 132)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) 123 (|has| |#1| (-370)))) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) 126 (|has| |#1| (-370)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) 162 (|has| |#1| (-370)))) (-3698 (((-112) $) 66 (|has| |#1| (-370)))) (-2901 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1784 (((-112) $) NIL)) (-3227 (((-921) $) 60 (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3466 (((-112) $) 62)) (-4138 (($) 164 (|has| |#1| (-370)))) (-1771 (((-112) $) NIL (|has| |#1| (-370)))) (-2719 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 |#1|) $) 119) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-1299 (((-921) $) 173 (|has| |#1| (-370)))) (-1988 (((-1171 |#1|) $) NIL (|has| |#1| (-370)))) (-3433 (((-1171 |#1|) $) NIL (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) NIL (|has| |#1| (-370)))) (-1923 (($ $ (-1171 |#1|)) NIL (|has| |#1| (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 180)) (-3625 (($) NIL (|has| |#1| (-370)) CONST)) (-2208 (($ (-921)) 98 (|has| |#1| (-370)))) (-1737 (((-112) $) 149)) (-4056 (((-1119) $) NIL)) (-2653 (((-958 (-1119))) 57)) (-4152 (($) 160 (|has| |#1| (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) 121 (|has| |#1| (-370)))) (-2473 (((-420 $) $) NIL)) (-1723 (((-833 (-921))) 92) (((-921)) 93)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-771) $) 163 (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) 156 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2012 (((-134)) NIL)) (-2578 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2108 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-3601 (((-1171 |#1|)) 124)) (-2507 (($) 161 (|has| |#1| (-370)))) (-2348 (($) 169 (|has| |#1| (-370)))) (-2543 (((-1264 |#1|) $) 77) (((-689 |#1|) (-1264 $)) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-3780 (((-862) $) 176) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 102)) (-3226 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3996 (((-771)) 157 T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) 146) (((-1264 $) (-921)) 100)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) 67 T CONST)) (-4333 (($) 105 T CONST)) (-3583 (($ $) 109 (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2876 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2950 (((-112) $ $) 65)) (-3062 (($ $ $) 178) (($ $ |#1|) 179)) (-3051 (($ $) 159) (($ $ $) NIL)) (-3040 (($ $ $) 86)) (** (($ $ (-921)) 182) (($ $ (-771)) 183) (($ $ (-566)) 181)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 104) (($ $ $) 103) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 177)))
+(((-346 |#1| |#2|) (-13 (-330 |#1|) (-10 -7 (-15 -2653 ((-958 (-1119)))))) (-351) (-1171 |#1|)) (T -346))
+((-2653 (*1 *2) (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-346 *3 *4)) (-4 *3 (-351)) (-14 *4 (-1171 *3)))))
+(-13 (-330 |#1|) (-10 -7 (-15 -2653 ((-958 (-1119))))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| |#1| (-370)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) NIL (|has| |#1| (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-2613 (($ (-1264 |#1|)) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-370)))) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| |#1| (-370)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) NIL (|has| |#1| (-370)))) (-3698 (((-112) $) NIL (|has| |#1| (-370)))) (-2901 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1784 (((-112) $) NIL)) (-3227 (((-921) $) NIL (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3466 (((-112) $) NIL)) (-4138 (($) NIL (|has| |#1| (-370)))) (-1771 (((-112) $) NIL (|has| |#1| (-370)))) (-2719 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 |#1|) $) NIL) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-1299 (((-921) $) NIL (|has| |#1| (-370)))) (-1988 (((-1171 |#1|) $) NIL (|has| |#1| (-370)))) (-3433 (((-1171 |#1|) $) NIL (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) NIL (|has| |#1| (-370)))) (-1923 (($ $ (-1171 |#1|)) NIL (|has| |#1| (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| |#1| (-370)) CONST)) (-2208 (($ (-921)) NIL (|has| |#1| (-370)))) (-1737 (((-112) $) NIL)) (-4056 (((-1119) $) NIL)) (-2653 (((-958 (-1119))) NIL)) (-4152 (($) NIL (|has| |#1| (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| |#1| (-370)))) (-2473 (((-420 $) $) NIL)) (-1723 (((-833 (-921))) NIL) (((-921)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-771) $) NIL (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2012 (((-134)) NIL)) (-2578 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2108 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-3601 (((-1171 |#1|)) NIL)) (-2507 (($) NIL (|has| |#1| (-370)))) (-2348 (($) NIL (|has| |#1| (-370)))) (-2543 (((-1264 |#1|) $) NIL) (((-689 |#1|) (-1264 $)) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) NIL)) (-3226 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-3583 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2876 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-347 |#1| |#2|) (-13 (-330 |#1|) (-10 -7 (-15 -2653 ((-958 (-1119)))))) (-351) (-921)) (T -347))
+((-2653 (*1 *2) (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-347 *3 *4)) (-4 *3 (-351)) (-14 *4 (-921)))))
+(-13 (-330 |#1|) (-10 -7 (-15 -2653 ((-958 (-1119))))))
+((-1422 (((-771) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119)))))) 61)) (-3320 (((-958 (-1119)) (-1171 |#1|)) 113)) (-4188 (((-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))) (-1171 |#1|)) 105)) (-1399 (((-689 |#1|) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119)))))) 115)) (-1645 (((-3 (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))) "failed") (-921)) 13)) (-4357 (((-3 (-1171 |#1|) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119)))))) (-921)) 18)))
+(((-348 |#1|) (-10 -7 (-15 -3320 ((-958 (-1119)) (-1171 |#1|))) (-15 -4188 ((-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))) (-1171 |#1|))) (-15 -1399 ((-689 |#1|) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))))) (-15 -1422 ((-771) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))))) (-15 -1645 ((-3 (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))) "failed") (-921))) (-15 -4357 ((-3 (-1171 |#1|) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119)))))) (-921)))) (-351)) (T -348))
+((-4357 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-3 (-1171 *4) (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119))))))) (-5 *1 (-348 *4)) (-4 *4 (-351)))) (-1645 (*1 *2 *3) (|partial| -12 (-5 *3 (-921)) (-5 *2 (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119)))))) (-5 *1 (-348 *4)) (-4 *4 (-351)))) (-1422 (*1 *2 *3) (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119)))))) (-4 *4 (-351)) (-5 *2 (-771)) (-5 *1 (-348 *4)))) (-1399 (*1 *2 *3) (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119)))))) (-4 *4 (-351)) (-5 *2 (-689 *4)) (-5 *1 (-348 *4)))) (-4188 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119)))))) (-5 *1 (-348 *4)))) (-3320 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-958 (-1119))) (-5 *1 (-348 *4)))))
+(-10 -7 (-15 -3320 ((-958 (-1119)) (-1171 |#1|))) (-15 -4188 ((-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))) (-1171 |#1|))) (-15 -1399 ((-689 |#1|) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))))) (-15 -1422 ((-771) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))))) (-15 -1645 ((-3 (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))) "failed") (-921))) (-15 -4357 ((-3 (-1171 |#1|) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119)))))) (-921))))
+((-3780 ((|#1| |#3|) 108) ((|#3| |#1|) 91)))
+(((-349 |#1| |#2| |#3|) (-10 -7 (-15 -3780 (|#3| |#1|)) (-15 -3780 (|#1| |#3|))) (-330 |#2|) (-351) (-330 |#2|)) (T -349))
+((-3780 (*1 *2 *3) (-12 (-4 *4 (-351)) (-4 *2 (-330 *4)) (-5 *1 (-349 *2 *4 *3)) (-4 *3 (-330 *4)))) (-3780 (*1 *2 *3) (-12 (-4 *4 (-351)) (-4 *2 (-330 *4)) (-5 *1 (-349 *3 *4 *2)) (-4 *3 (-330 *4)))))
+(-10 -7 (-15 -3780 (|#3| |#1|)) (-15 -3780 (|#1| |#3|)))
+((-3698 (((-112) $) 60)) (-3227 (((-833 (-921)) $) 23) (((-921) $) 66)) (-2133 (((-3 $ "failed") $) 18)) (-3625 (($) 9)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 116)) (-2347 (((-3 (-771) "failed") $ $) 94) (((-771) $) 81)) (-2578 (($ $ (-771)) NIL) (($ $) 8)) (-2507 (($) 53)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 38)) (-3226 (((-3 $ "failed") $) 45) (($ $) 44)))
+(((-350 |#1|) (-10 -8 (-15 -3227 ((-921) |#1|)) (-15 -2347 ((-771) |#1|)) (-15 -3698 ((-112) |#1|)) (-15 -2507 (|#1|)) (-15 -2664 ((-3 (-1264 |#1|) "failed") (-689 |#1|))) (-15 -3226 (|#1| |#1|)) (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -3625 (|#1|)) (-15 -2133 ((-3 |#1| "failed") |#1|)) (-15 -2347 ((-3 (-771) "failed") |#1| |#1|)) (-15 -3227 ((-833 (-921)) |#1|)) (-15 -3226 ((-3 |#1| "failed") |#1|)) (-15 -2221 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|)))) (-351)) (T -350))
+NIL
+(-10 -8 (-15 -3227 ((-921) |#1|)) (-15 -2347 ((-771) |#1|)) (-15 -3698 ((-112) |#1|)) (-15 -2507 (|#1|)) (-15 -2664 ((-3 (-1264 |#1|) "failed") (-689 |#1|))) (-15 -3226 (|#1| |#1|)) (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -3625 (|#1|)) (-15 -2133 ((-3 |#1| "failed") |#1|)) (-15 -2347 ((-3 (-771) "failed") |#1| |#1|)) (-15 -3227 ((-833 (-921)) |#1|)) (-15 -3226 ((-3 |#1| "failed") |#1|)) (-15 -2221 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-2277 (((-1187 (-921) (-771)) (-566)) 101)) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 81)) (-3271 (((-420 $) $) 80)) (-2738 (((-112) $ $) 65)) (-4070 (((-771)) 111)) (-3877 (($) 18 T CONST)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) 95)) (-2949 (($ $ $) 61)) (-2928 (((-3 $ "failed") $) 37)) (-1618 (($) 114)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-1676 (($) 99)) (-3698 (((-112) $) 98)) (-2901 (($ $) 87) (($ $ (-771)) 86)) (-1784 (((-112) $) 79)) (-3227 (((-833 (-921)) $) 89) (((-921) $) 96)) (-3466 (((-112) $) 35)) (-2133 (((-3 $ "failed") $) 110)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-1299 (((-921) $) 113)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 78)) (-3625 (($) 109 T CONST)) (-2208 (($ (-921)) 112)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) 102)) (-2473 (((-420 $) $) 82)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3470 (((-771) $) 64)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-2347 (((-3 (-771) "failed") $ $) 88) (((-771) $) 97)) (-2578 (($ $ (-771)) 107) (($ $) 105)) (-2507 (($) 100)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 103)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74)) (-3226 (((-3 $ "failed") $) 90) (($ $) 104)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-771)) 108) (($ $) 106)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 73)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
(((-351) (-140)) (T -351))
-((-3842 (*1 *1 *1) (-4 *1 (-351))) (-3273 (*1 *2 *3) (|partial| -12 (-5 *3 (-689 *1)) (-4 *1 (-351)) (-5 *2 (-1264 *1)))) (-3263 (*1 *2) (-12 (-4 *1 (-351)) (-5 *2 (-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))))) (-4324 (*1 *2 *3) (-12 (-4 *1 (-351)) (-5 *3 (-566)) (-5 *2 (-1187 (-921) (-771))))) (-1536 (*1 *1) (-4 *1 (-351))) (-3092 (*1 *1) (-4 *1 (-351))) (-3449 (*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-112)))) (-3379 (*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-771)))) (-2716 (*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-921)))) (-3890 (*1 *2) (-12 (-4 *1 (-351)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(-13 (-404) (-370) (-1150) (-233) (-10 -8 (-15 -3842 ($ $)) (-15 -3273 ((-3 (-1264 $) "failed") (-689 $))) (-15 -3263 ((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566)))))) (-15 -4324 ((-1187 (-921) (-771)) (-566))) (-15 -1536 ($)) (-15 -3092 ($)) (-15 -3449 ((-112) $)) (-15 -3379 ((-771) $)) (-15 -2716 ((-921) $)) (-15 -3890 ((-3 "prime" "polynomial" "normal" "cyclic")))))
+((-3226 (*1 *1 *1) (-4 *1 (-351))) (-2664 (*1 *2 *3) (|partial| -12 (-5 *3 (-689 *1)) (-4 *1 (-351)) (-5 *2 (-1264 *1)))) (-2580 (*1 *2) (-12 (-4 *1 (-351)) (-5 *2 (-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))))) (-2277 (*1 *2 *3) (-12 (-4 *1 (-351)) (-5 *3 (-566)) (-5 *2 (-1187 (-921) (-771))))) (-2507 (*1 *1) (-4 *1 (-351))) (-1676 (*1 *1) (-4 *1 (-351))) (-3698 (*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-112)))) (-2347 (*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-771)))) (-3227 (*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-921)))) (-3655 (*1 *2) (-12 (-4 *1 (-351)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(-13 (-404) (-370) (-1150) (-233) (-10 -8 (-15 -3226 ($ $)) (-15 -2664 ((-3 (-1264 $) "failed") (-689 $))) (-15 -2580 ((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566)))))) (-15 -2277 ((-1187 (-921) (-771)) (-566))) (-15 -2507 ($)) (-15 -1676 ($)) (-15 -3698 ((-112) $)) (-15 -2347 ((-771) $)) (-15 -3227 ((-921) $)) (-15 -3655 ((-3 "prime" "polynomial" "normal" "cyclic")))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-145) . T) ((-616 #0#) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-233) . T) ((-243) . T) ((-291) . T) ((-308) . T) ((-365) . T) ((-404) . T) ((-370) . T) ((-454) . T) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 $) . T) ((-640 #0#) . T) ((-640 $) . T) ((-717 #0#) . T) ((-717 $) . T) ((-726) . T) ((-920) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1150) . T) ((-1218) . T))
-((-2147 (((-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) |#1|) 55)) (-1925 (((-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|)))) 53)))
-(((-352 |#1| |#2| |#3|) (-10 -7 (-15 -1925 ((-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))))) (-15 -2147 ((-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) |#1|))) (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))) (-1240 |#1|) (-411 |#1| |#2|)) (T -352))
-((-2147 (*1 *2 *3) (-12 (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *2 (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-5 *1 (-352 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-1925 (*1 *2) (-12 (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *2 (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-5 *1 (-352 *3 *4 *5)) (-4 *5 (-411 *3 *4)))))
-(-10 -7 (-15 -1925 ((-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))))) (-15 -2147 ((-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-910 |#1|) (-370)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-2904 (((-771)) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) NIL (|has| (-910 |#1|) (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-910 |#1|) "failed") $) NIL)) (-1756 (((-910 |#1|) $) NIL)) (-1547 (($ (-1264 (-910 |#1|))) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-910 |#1|) (-370)))) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-910 |#1|) (-370)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) NIL (|has| (-910 |#1|) (-370)))) (-3449 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-3626 (($ $ (-771)) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370)))) (($ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-2635 (((-112) $) NIL)) (-2716 (((-921) $) NIL (|has| (-910 |#1|) (-370))) (((-833 (-921)) $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-2741 (((-112) $) NIL)) (-2061 (($) NIL (|has| (-910 |#1|) (-370)))) (-3754 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-1559 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-2546 (((-3 $ "failed") $) NIL (|has| (-910 |#1|) (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 (-910 |#1|)) $) NIL) (((-1171 $) $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-3712 (((-921) $) NIL (|has| (-910 |#1|) (-370)))) (-1907 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370)))) (-3866 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-1171 (-910 |#1|)) "failed") $ $) NIL (|has| (-910 |#1|) (-370)))) (-1900 (($ $ (-1171 (-910 |#1|))) NIL (|has| (-910 |#1|) (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-910 |#1|) (-370)) CONST)) (-2168 (($ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-3751 (((-112) $) NIL)) (-4033 (((-1119) $) NIL)) (-4366 (((-1264 (-644 (-2 (|:| -2212 (-910 |#1|)) (|:| -2168 (-1119)))))) NIL)) (-4071 (((-689 (-910 |#1|))) NIL)) (-4067 (($) NIL (|has| (-910 |#1|) (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| (-910 |#1|) (-370)))) (-2391 (((-420 $) $) NIL)) (-2003 (((-833 (-921))) NIL) (((-921)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-771) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-1909 (((-134)) NIL)) (-2862 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-3992 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-2127 (((-1171 (-910 |#1|))) NIL)) (-1536 (($) NIL (|has| (-910 |#1|) (-370)))) (-2873 (($) NIL (|has| (-910 |#1|) (-370)))) (-2770 (((-1264 (-910 |#1|)) $) NIL) (((-689 (-910 |#1|)) (-1264 $)) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-910 |#1|) (-370)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-910 |#1|)) NIL)) (-3842 (($ $) NIL (|has| (-910 |#1|) (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2752 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2840 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL) (($ $ (-910 |#1|)) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-910 |#1|)) NIL) (($ (-910 |#1|) $) NIL)))
-(((-353 |#1| |#2|) (-13 (-330 (-910 |#1|)) (-10 -7 (-15 -4366 ((-1264 (-644 (-2 (|:| -2212 (-910 |#1|)) (|:| -2168 (-1119))))))) (-15 -4071 ((-689 (-910 |#1|)))) (-15 -2904 ((-771))))) (-921) (-921)) (T -353))
-((-4366 (*1 *2) (-12 (-5 *2 (-1264 (-644 (-2 (|:| -2212 (-910 *3)) (|:| -2168 (-1119)))))) (-5 *1 (-353 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))) (-4071 (*1 *2) (-12 (-5 *2 (-689 (-910 *3))) (-5 *1 (-353 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))) (-2904 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-353 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))))
-(-13 (-330 (-910 |#1|)) (-10 -7 (-15 -4366 ((-1264 (-644 (-2 (|:| -2212 (-910 |#1|)) (|:| -2168 (-1119))))))) (-15 -4071 ((-689 (-910 |#1|)))) (-15 -2904 ((-771)))))
-((-2985 (((-112) $ $) 76)) (-3958 (((-112) $) 90)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 ((|#1| $) 108) (($ $ (-921)) 106 (|has| |#1| (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) 177 (|has| |#1| (-370)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-2904 (((-771)) 105)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) 193 (|has| |#1| (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) 130)) (-1756 ((|#1| $) 107)) (-1547 (($ (-1264 |#1|)) 74)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) 219 (|has| |#1| (-370)))) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) 189 (|has| |#1| (-370)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) 178 (|has| |#1| (-370)))) (-3449 (((-112) $) NIL (|has| |#1| (-370)))) (-3626 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2635 (((-112) $) NIL)) (-2716 (((-921) $) NIL (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2741 (((-112) $) NIL)) (-2061 (($) 116 (|has| |#1| (-370)))) (-3754 (((-112) $) 206 (|has| |#1| (-370)))) (-1559 ((|#1| $) 110) (($ $ (-921)) 109 (|has| |#1| (-370)))) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 |#1|) $) 220) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-3712 (((-921) $) 154 (|has| |#1| (-370)))) (-1907 (((-1171 |#1|) $) 89 (|has| |#1| (-370)))) (-3866 (((-1171 |#1|) $) 86 (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) 98 (|has| |#1| (-370)))) (-1900 (($ $ (-1171 |#1|)) 85 (|has| |#1| (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 224)) (-2759 (($) NIL (|has| |#1| (-370)) CONST)) (-2168 (($ (-921)) 157 (|has| |#1| (-370)))) (-3751 (((-112) $) 126)) (-4033 (((-1119) $) NIL)) (-4366 (((-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119)))))) 99)) (-4071 (((-689 |#1|)) 103)) (-4067 (($) 112 (|has| |#1| (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) 180 (|has| |#1| (-370)))) (-2391 (((-420 $) $) NIL)) (-2003 (((-833 (-921))) NIL) (((-921)) 181)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-771) $) NIL (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1909 (((-134)) NIL)) (-2862 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-3992 (((-833 (-921)) $) NIL) (((-921) $) 78)) (-2127 (((-1171 |#1|)) 182)) (-1536 (($) 153 (|has| |#1| (-370)))) (-2873 (($) NIL (|has| |#1| (-370)))) (-2770 (((-1264 |#1|) $) 124) (((-689 |#1|) (-1264 $)) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-2512 (((-862) $) 146) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 73)) (-3842 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3795 (((-771)) 187 T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) 203) (((-1264 $) (-921)) 119)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) 140 T CONST)) (-2495 (($) 44 T CONST)) (-2752 (($ $) 125 (|has| |#1| (-370))) (($ $ (-771)) 117 (|has| |#1| (-370)))) (-2840 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2940 (((-112) $ $) 214)) (-3061 (($ $ $) 122) (($ $ |#1|) 123)) (-3047 (($ $) 208) (($ $ $) 212)) (-3034 (($ $ $) 210)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 159)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 217) (($ $ $) 171) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 121)))
-(((-354 |#1| |#2|) (-13 (-330 |#1|) (-10 -7 (-15 -4366 ((-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))))) (-15 -4071 ((-689 |#1|))) (-15 -2904 ((-771))))) (-351) (-3 (-1171 |#1|) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))))) (T -354))
-((-4366 (*1 *2) (-12 (-5 *2 (-1264 (-644 (-2 (|:| -2212 *3) (|:| -2168 (-1119)))))) (-5 *1 (-354 *3 *4)) (-4 *3 (-351)) (-14 *4 (-3 (-1171 *3) *2)))) (-4071 (*1 *2) (-12 (-5 *2 (-689 *3)) (-5 *1 (-354 *3 *4)) (-4 *3 (-351)) (-14 *4 (-3 (-1171 *3) (-1264 (-644 (-2 (|:| -2212 *3) (|:| -2168 (-1119))))))))) (-2904 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-354 *3 *4)) (-4 *3 (-351)) (-14 *4 (-3 (-1171 *3) (-1264 (-644 (-2 (|:| -2212 *3) (|:| -2168 (-1119))))))))))
-(-13 (-330 |#1|) (-10 -7 (-15 -4366 ((-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))))) (-15 -4071 ((-689 |#1|))) (-15 -2904 ((-771)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| |#1| (-370)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-2904 (((-771)) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) NIL (|has| |#1| (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-1547 (($ (-1264 |#1|)) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-370)))) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| |#1| (-370)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) NIL (|has| |#1| (-370)))) (-3449 (((-112) $) NIL (|has| |#1| (-370)))) (-3626 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2635 (((-112) $) NIL)) (-2716 (((-921) $) NIL (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2741 (((-112) $) NIL)) (-2061 (($) NIL (|has| |#1| (-370)))) (-3754 (((-112) $) NIL (|has| |#1| (-370)))) (-1559 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 |#1|) $) NIL) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-3712 (((-921) $) NIL (|has| |#1| (-370)))) (-1907 (((-1171 |#1|) $) NIL (|has| |#1| (-370)))) (-3866 (((-1171 |#1|) $) NIL (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) NIL (|has| |#1| (-370)))) (-1900 (($ $ (-1171 |#1|)) NIL (|has| |#1| (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| |#1| (-370)) CONST)) (-2168 (($ (-921)) NIL (|has| |#1| (-370)))) (-3751 (((-112) $) NIL)) (-4033 (((-1119) $) NIL)) (-4366 (((-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119)))))) NIL)) (-4071 (((-689 |#1|)) NIL)) (-4067 (($) NIL (|has| |#1| (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| |#1| (-370)))) (-2391 (((-420 $) $) NIL)) (-2003 (((-833 (-921))) NIL) (((-921)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-771) $) NIL (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1909 (((-134)) NIL)) (-2862 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-3992 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-2127 (((-1171 |#1|)) NIL)) (-1536 (($) NIL (|has| |#1| (-370)))) (-2873 (($) NIL (|has| |#1| (-370)))) (-2770 (((-1264 |#1|) $) NIL) (((-689 |#1|) (-1264 $)) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) NIL)) (-3842 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2752 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2840 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-355 |#1| |#2|) (-13 (-330 |#1|) (-10 -7 (-15 -4366 ((-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))))) (-15 -4071 ((-689 |#1|))) (-15 -2904 ((-771))))) (-351) (-921)) (T -355))
-((-4366 (*1 *2) (-12 (-5 *2 (-1264 (-644 (-2 (|:| -2212 *3) (|:| -2168 (-1119)))))) (-5 *1 (-355 *3 *4)) (-4 *3 (-351)) (-14 *4 (-921)))) (-4071 (*1 *2) (-12 (-5 *2 (-689 *3)) (-5 *1 (-355 *3 *4)) (-4 *3 (-351)) (-14 *4 (-921)))) (-2904 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-355 *3 *4)) (-4 *3 (-351)) (-14 *4 (-921)))))
-(-13 (-330 |#1|) (-10 -7 (-15 -4366 ((-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))))) (-15 -4071 ((-689 |#1|))) (-15 -2904 ((-771)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-910 |#1|) (-370)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) NIL (|has| (-910 |#1|) (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-910 |#1|) "failed") $) NIL)) (-1756 (((-910 |#1|) $) NIL)) (-1547 (($ (-1264 (-910 |#1|))) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-910 |#1|) (-370)))) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-910 |#1|) (-370)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) NIL (|has| (-910 |#1|) (-370)))) (-3449 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-3626 (($ $ (-771)) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370)))) (($ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-2635 (((-112) $) NIL)) (-2716 (((-921) $) NIL (|has| (-910 |#1|) (-370))) (((-833 (-921)) $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-2741 (((-112) $) NIL)) (-2061 (($) NIL (|has| (-910 |#1|) (-370)))) (-3754 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-1559 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-2546 (((-3 $ "failed") $) NIL (|has| (-910 |#1|) (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 (-910 |#1|)) $) NIL) (((-1171 $) $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-3712 (((-921) $) NIL (|has| (-910 |#1|) (-370)))) (-1907 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370)))) (-3866 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-1171 (-910 |#1|)) "failed") $ $) NIL (|has| (-910 |#1|) (-370)))) (-1900 (($ $ (-1171 (-910 |#1|))) NIL (|has| (-910 |#1|) (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-910 |#1|) (-370)) CONST)) (-2168 (($ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-3751 (((-112) $) NIL)) (-4033 (((-1119) $) NIL)) (-4067 (($) NIL (|has| (-910 |#1|) (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| (-910 |#1|) (-370)))) (-2391 (((-420 $) $) NIL)) (-2003 (((-833 (-921))) NIL) (((-921)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-771) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-1909 (((-134)) NIL)) (-2862 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-3992 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-2127 (((-1171 (-910 |#1|))) NIL)) (-1536 (($) NIL (|has| (-910 |#1|) (-370)))) (-2873 (($) NIL (|has| (-910 |#1|) (-370)))) (-2770 (((-1264 (-910 |#1|)) $) NIL) (((-689 (-910 |#1|)) (-1264 $)) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-910 |#1|) (-370)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-910 |#1|)) NIL)) (-3842 (($ $) NIL (|has| (-910 |#1|) (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2752 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2840 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL) (($ $ (-910 |#1|)) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-910 |#1|)) NIL) (($ (-910 |#1|) $) NIL)))
+((-2593 (((-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) |#1|) 55)) (-2161 (((-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|)))) 53)))
+(((-352 |#1| |#2| |#3|) (-10 -7 (-15 -2161 ((-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))))) (-15 -2593 ((-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) |#1|))) (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))) (-1240 |#1|) (-411 |#1| |#2|)) (T -352))
+((-2593 (*1 *2 *3) (-12 (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *2 (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-5 *1 (-352 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-2161 (*1 *2) (-12 (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *2 (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-5 *1 (-352 *3 *4 *5)) (-4 *5 (-411 *3 *4)))))
+(-10 -7 (-15 -2161 ((-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))))) (-15 -2593 ((-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-910 |#1|) (-370)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-1422 (((-771)) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) NIL (|has| (-910 |#1|) (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-910 |#1|) "failed") $) NIL)) (-1867 (((-910 |#1|) $) NIL)) (-2613 (($ (-1264 (-910 |#1|))) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-910 |#1|) (-370)))) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-910 |#1|) (-370)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) NIL (|has| (-910 |#1|) (-370)))) (-3698 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-2901 (($ $ (-771)) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370)))) (($ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-1784 (((-112) $) NIL)) (-3227 (((-921) $) NIL (|has| (-910 |#1|) (-370))) (((-833 (-921)) $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-3466 (((-112) $) NIL)) (-4138 (($) NIL (|has| (-910 |#1|) (-370)))) (-1771 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-2719 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-2133 (((-3 $ "failed") $) NIL (|has| (-910 |#1|) (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 (-910 |#1|)) $) NIL) (((-1171 $) $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-1299 (((-921) $) NIL (|has| (-910 |#1|) (-370)))) (-1988 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370)))) (-3433 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-1171 (-910 |#1|)) "failed") $ $) NIL (|has| (-910 |#1|) (-370)))) (-1923 (($ $ (-1171 (-910 |#1|))) NIL (|has| (-910 |#1|) (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-910 |#1|) (-370)) CONST)) (-2208 (($ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-1737 (((-112) $) NIL)) (-4056 (((-1119) $) NIL)) (-1440 (((-1264 (-644 (-2 (|:| -2252 (-910 |#1|)) (|:| -2208 (-1119)))))) NIL)) (-1584 (((-689 (-910 |#1|))) NIL)) (-4152 (($) NIL (|has| (-910 |#1|) (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| (-910 |#1|) (-370)))) (-2473 (((-420 $) $) NIL)) (-1723 (((-833 (-921))) NIL) (((-921)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-771) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-2012 (((-134)) NIL)) (-2578 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2108 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-3601 (((-1171 (-910 |#1|))) NIL)) (-2507 (($) NIL (|has| (-910 |#1|) (-370)))) (-2348 (($) NIL (|has| (-910 |#1|) (-370)))) (-2543 (((-1264 (-910 |#1|)) $) NIL) (((-689 (-910 |#1|)) (-1264 $)) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-910 |#1|) (-370)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-910 |#1|)) NIL)) (-3226 (($ $) NIL (|has| (-910 |#1|) (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-3583 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2876 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL) (($ $ (-910 |#1|)) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-910 |#1|)) NIL) (($ (-910 |#1|) $) NIL)))
+(((-353 |#1| |#2|) (-13 (-330 (-910 |#1|)) (-10 -7 (-15 -1440 ((-1264 (-644 (-2 (|:| -2252 (-910 |#1|)) (|:| -2208 (-1119))))))) (-15 -1584 ((-689 (-910 |#1|)))) (-15 -1422 ((-771))))) (-921) (-921)) (T -353))
+((-1440 (*1 *2) (-12 (-5 *2 (-1264 (-644 (-2 (|:| -2252 (-910 *3)) (|:| -2208 (-1119)))))) (-5 *1 (-353 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))) (-1584 (*1 *2) (-12 (-5 *2 (-689 (-910 *3))) (-5 *1 (-353 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))) (-1422 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-353 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))))
+(-13 (-330 (-910 |#1|)) (-10 -7 (-15 -1440 ((-1264 (-644 (-2 (|:| -2252 (-910 |#1|)) (|:| -2208 (-1119))))))) (-15 -1584 ((-689 (-910 |#1|)))) (-15 -1422 ((-771)))))
+((-3009 (((-112) $ $) 76)) (-3015 (((-112) $) 90)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 ((|#1| $) 108) (($ $ (-921)) 106 (|has| |#1| (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) 177 (|has| |#1| (-370)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-1422 (((-771)) 105)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) 193 (|has| |#1| (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) 130)) (-1867 ((|#1| $) 107)) (-2613 (($ (-1264 |#1|)) 74)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) 219 (|has| |#1| (-370)))) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) 189 (|has| |#1| (-370)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) 178 (|has| |#1| (-370)))) (-3698 (((-112) $) NIL (|has| |#1| (-370)))) (-2901 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1784 (((-112) $) NIL)) (-3227 (((-921) $) NIL (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3466 (((-112) $) NIL)) (-4138 (($) 116 (|has| |#1| (-370)))) (-1771 (((-112) $) 206 (|has| |#1| (-370)))) (-2719 ((|#1| $) 110) (($ $ (-921)) 109 (|has| |#1| (-370)))) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 |#1|) $) 220) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-1299 (((-921) $) 154 (|has| |#1| (-370)))) (-1988 (((-1171 |#1|) $) 89 (|has| |#1| (-370)))) (-3433 (((-1171 |#1|) $) 86 (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) 98 (|has| |#1| (-370)))) (-1923 (($ $ (-1171 |#1|)) 85 (|has| |#1| (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 224)) (-3625 (($) NIL (|has| |#1| (-370)) CONST)) (-2208 (($ (-921)) 157 (|has| |#1| (-370)))) (-1737 (((-112) $) 126)) (-4056 (((-1119) $) NIL)) (-1440 (((-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119)))))) 99)) (-1584 (((-689 |#1|)) 103)) (-4152 (($) 112 (|has| |#1| (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) 180 (|has| |#1| (-370)))) (-2473 (((-420 $) $) NIL)) (-1723 (((-833 (-921))) NIL) (((-921)) 181)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-771) $) NIL (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2012 (((-134)) NIL)) (-2578 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2108 (((-833 (-921)) $) NIL) (((-921) $) 78)) (-3601 (((-1171 |#1|)) 182)) (-2507 (($) 153 (|has| |#1| (-370)))) (-2348 (($) NIL (|has| |#1| (-370)))) (-2543 (((-1264 |#1|) $) 124) (((-689 |#1|) (-1264 $)) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-3780 (((-862) $) 146) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 73)) (-3226 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3996 (((-771)) 187 T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) 203) (((-1264 $) (-921)) 119)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) 140 T CONST)) (-4333 (($) 44 T CONST)) (-3583 (($ $) 125 (|has| |#1| (-370))) (($ $ (-771)) 117 (|has| |#1| (-370)))) (-2876 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2950 (((-112) $ $) 214)) (-3062 (($ $ $) 122) (($ $ |#1|) 123)) (-3051 (($ $) 208) (($ $ $) 212)) (-3040 (($ $ $) 210)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 159)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 217) (($ $ $) 171) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 121)))
+(((-354 |#1| |#2|) (-13 (-330 |#1|) (-10 -7 (-15 -1440 ((-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))))) (-15 -1584 ((-689 |#1|))) (-15 -1422 ((-771))))) (-351) (-3 (-1171 |#1|) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))))) (T -354))
+((-1440 (*1 *2) (-12 (-5 *2 (-1264 (-644 (-2 (|:| -2252 *3) (|:| -2208 (-1119)))))) (-5 *1 (-354 *3 *4)) (-4 *3 (-351)) (-14 *4 (-3 (-1171 *3) *2)))) (-1584 (*1 *2) (-12 (-5 *2 (-689 *3)) (-5 *1 (-354 *3 *4)) (-4 *3 (-351)) (-14 *4 (-3 (-1171 *3) (-1264 (-644 (-2 (|:| -2252 *3) (|:| -2208 (-1119))))))))) (-1422 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-354 *3 *4)) (-4 *3 (-351)) (-14 *4 (-3 (-1171 *3) (-1264 (-644 (-2 (|:| -2252 *3) (|:| -2208 (-1119))))))))))
+(-13 (-330 |#1|) (-10 -7 (-15 -1440 ((-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))))) (-15 -1584 ((-689 |#1|))) (-15 -1422 ((-771)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| |#1| (-370)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-1422 (((-771)) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) NIL (|has| |#1| (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-2613 (($ (-1264 |#1|)) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-370)))) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| |#1| (-370)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) NIL (|has| |#1| (-370)))) (-3698 (((-112) $) NIL (|has| |#1| (-370)))) (-2901 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1784 (((-112) $) NIL)) (-3227 (((-921) $) NIL (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3466 (((-112) $) NIL)) (-4138 (($) NIL (|has| |#1| (-370)))) (-1771 (((-112) $) NIL (|has| |#1| (-370)))) (-2719 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 |#1|) $) NIL) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-1299 (((-921) $) NIL (|has| |#1| (-370)))) (-1988 (((-1171 |#1|) $) NIL (|has| |#1| (-370)))) (-3433 (((-1171 |#1|) $) NIL (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) NIL (|has| |#1| (-370)))) (-1923 (($ $ (-1171 |#1|)) NIL (|has| |#1| (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| |#1| (-370)) CONST)) (-2208 (($ (-921)) NIL (|has| |#1| (-370)))) (-1737 (((-112) $) NIL)) (-4056 (((-1119) $) NIL)) (-1440 (((-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119)))))) NIL)) (-1584 (((-689 |#1|)) NIL)) (-4152 (($) NIL (|has| |#1| (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| |#1| (-370)))) (-2473 (((-420 $) $) NIL)) (-1723 (((-833 (-921))) NIL) (((-921)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-771) $) NIL (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2012 (((-134)) NIL)) (-2578 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2108 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-3601 (((-1171 |#1|)) NIL)) (-2507 (($) NIL (|has| |#1| (-370)))) (-2348 (($) NIL (|has| |#1| (-370)))) (-2543 (((-1264 |#1|) $) NIL) (((-689 |#1|) (-1264 $)) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) NIL)) (-3226 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-3583 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2876 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-355 |#1| |#2|) (-13 (-330 |#1|) (-10 -7 (-15 -1440 ((-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))))) (-15 -1584 ((-689 |#1|))) (-15 -1422 ((-771))))) (-351) (-921)) (T -355))
+((-1440 (*1 *2) (-12 (-5 *2 (-1264 (-644 (-2 (|:| -2252 *3) (|:| -2208 (-1119)))))) (-5 *1 (-355 *3 *4)) (-4 *3 (-351)) (-14 *4 (-921)))) (-1584 (*1 *2) (-12 (-5 *2 (-689 *3)) (-5 *1 (-355 *3 *4)) (-4 *3 (-351)) (-14 *4 (-921)))) (-1422 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-355 *3 *4)) (-4 *3 (-351)) (-14 *4 (-921)))))
+(-13 (-330 |#1|) (-10 -7 (-15 -1440 ((-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))))) (-15 -1584 ((-689 |#1|))) (-15 -1422 ((-771)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-910 |#1|) (-370)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) NIL (|has| (-910 |#1|) (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-910 |#1|) "failed") $) NIL)) (-1867 (((-910 |#1|) $) NIL)) (-2613 (($ (-1264 (-910 |#1|))) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-910 |#1|) (-370)))) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-910 |#1|) (-370)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) NIL (|has| (-910 |#1|) (-370)))) (-3698 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-2901 (($ $ (-771)) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370)))) (($ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-1784 (((-112) $) NIL)) (-3227 (((-921) $) NIL (|has| (-910 |#1|) (-370))) (((-833 (-921)) $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-3466 (((-112) $) NIL)) (-4138 (($) NIL (|has| (-910 |#1|) (-370)))) (-1771 (((-112) $) NIL (|has| (-910 |#1|) (-370)))) (-2719 (((-910 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-2133 (((-3 $ "failed") $) NIL (|has| (-910 |#1|) (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 (-910 |#1|)) $) NIL) (((-1171 $) $ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-1299 (((-921) $) NIL (|has| (-910 |#1|) (-370)))) (-1988 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370)))) (-3433 (((-1171 (-910 |#1|)) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-1171 (-910 |#1|)) "failed") $ $) NIL (|has| (-910 |#1|) (-370)))) (-1923 (($ $ (-1171 (-910 |#1|))) NIL (|has| (-910 |#1|) (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-910 |#1|) (-370)) CONST)) (-2208 (($ (-921)) NIL (|has| (-910 |#1|) (-370)))) (-1737 (((-112) $) NIL)) (-4056 (((-1119) $) NIL)) (-4152 (($) NIL (|has| (-910 |#1|) (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| (-910 |#1|) (-370)))) (-2473 (((-420 $) $) NIL)) (-1723 (((-833 (-921))) NIL) (((-921)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-771) $) NIL (|has| (-910 |#1|) (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-2012 (((-134)) NIL)) (-2578 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2108 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-3601 (((-1171 (-910 |#1|))) NIL)) (-2507 (($) NIL (|has| (-910 |#1|) (-370)))) (-2348 (($) NIL (|has| (-910 |#1|) (-370)))) (-2543 (((-1264 (-910 |#1|)) $) NIL) (((-689 (-910 |#1|)) (-1264 $)) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-910 |#1|) (-370)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-910 |#1|)) NIL)) (-3226 (($ $) NIL (|has| (-910 |#1|) (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| (-910 |#1|) (-145)) (|has| (-910 |#1|) (-370))))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-3583 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2876 (($ $) NIL (|has| (-910 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-910 |#1|) (-370)))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL) (($ $ (-910 |#1|)) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-910 |#1|)) NIL) (($ (-910 |#1|) $) NIL)))
(((-356 |#1| |#2|) (-330 (-910 |#1|)) (-921) (-921)) (T -356))
NIL
(-330 (-910 |#1|))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) 135 (|has| |#1| (-370)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) 165 (|has| |#1| (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) 109)) (-1756 ((|#1| $) 106)) (-1547 (($ (-1264 |#1|)) 101)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) 132 (|has| |#1| (-370)))) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) 98 (|has| |#1| (-370)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) 51 (|has| |#1| (-370)))) (-3449 (((-112) $) NIL (|has| |#1| (-370)))) (-3626 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2635 (((-112) $) NIL)) (-2716 (((-921) $) NIL (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2741 (((-112) $) NIL)) (-2061 (($) 136 (|has| |#1| (-370)))) (-3754 (((-112) $) 90 (|has| |#1| (-370)))) (-1559 ((|#1| $) 47) (($ $ (-921)) 52 (|has| |#1| (-370)))) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 |#1|) $) 79) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-3712 (((-921) $) 113 (|has| |#1| (-370)))) (-1907 (((-1171 |#1|) $) NIL (|has| |#1| (-370)))) (-3866 (((-1171 |#1|) $) NIL (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) NIL (|has| |#1| (-370)))) (-1900 (($ $ (-1171 |#1|)) NIL (|has| |#1| (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| |#1| (-370)) CONST)) (-2168 (($ (-921)) 111 (|has| |#1| (-370)))) (-3751 (((-112) $) 167)) (-4033 (((-1119) $) NIL)) (-4067 (($) 44 (|has| |#1| (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) 130 (|has| |#1| (-370)))) (-2391 (((-420 $) $) NIL)) (-2003 (((-833 (-921))) NIL) (((-921)) 164)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-771) $) NIL (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1909 (((-134)) NIL)) (-2862 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-3992 (((-833 (-921)) $) NIL) (((-921) $) 71)) (-2127 (((-1171 |#1|)) 104)) (-1536 (($) 141 (|has| |#1| (-370)))) (-2873 (($) NIL (|has| |#1| (-370)))) (-2770 (((-1264 |#1|) $) 66) (((-689 |#1|) (-1264 $)) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-2512 (((-862) $) 163) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 103)) (-3842 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3795 (((-771)) 169 T CONST)) (-3122 (((-112) $ $) 171)) (-1990 (((-1264 $)) 125) (((-1264 $) (-921)) 60)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) 127 T CONST)) (-2495 (($) 40 T CONST)) (-2752 (($ $) 82 (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2840 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2940 (((-112) $ $) 123)) (-3061 (($ $ $) 115) (($ $ |#1|) 116)) (-3047 (($ $) 96) (($ $ $) 121)) (-3034 (($ $ $) 119)) (** (($ $ (-921)) NIL) (($ $ (-771)) 55) (($ $ (-566)) 146)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 94) (($ $ $) 68) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 92)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) 135 (|has| |#1| (-370)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) 165 (|has| |#1| (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) 109)) (-1867 ((|#1| $) 106)) (-2613 (($ (-1264 |#1|)) 101)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) 132 (|has| |#1| (-370)))) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) 98 (|has| |#1| (-370)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) 51 (|has| |#1| (-370)))) (-3698 (((-112) $) NIL (|has| |#1| (-370)))) (-2901 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1784 (((-112) $) NIL)) (-3227 (((-921) $) NIL (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3466 (((-112) $) NIL)) (-4138 (($) 136 (|has| |#1| (-370)))) (-1771 (((-112) $) 90 (|has| |#1| (-370)))) (-2719 ((|#1| $) 47) (($ $ (-921)) 52 (|has| |#1| (-370)))) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 |#1|) $) 79) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-1299 (((-921) $) 113 (|has| |#1| (-370)))) (-1988 (((-1171 |#1|) $) NIL (|has| |#1| (-370)))) (-3433 (((-1171 |#1|) $) NIL (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) NIL (|has| |#1| (-370)))) (-1923 (($ $ (-1171 |#1|)) NIL (|has| |#1| (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| |#1| (-370)) CONST)) (-2208 (($ (-921)) 111 (|has| |#1| (-370)))) (-1737 (((-112) $) 167)) (-4056 (((-1119) $) NIL)) (-4152 (($) 44 (|has| |#1| (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) 130 (|has| |#1| (-370)))) (-2473 (((-420 $) $) NIL)) (-1723 (((-833 (-921))) NIL) (((-921)) 164)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-771) $) NIL (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2012 (((-134)) NIL)) (-2578 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2108 (((-833 (-921)) $) NIL) (((-921) $) 71)) (-3601 (((-1171 |#1|)) 104)) (-2507 (($) 141 (|has| |#1| (-370)))) (-2348 (($) NIL (|has| |#1| (-370)))) (-2543 (((-1264 |#1|) $) 66) (((-689 |#1|) (-1264 $)) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-3780 (((-862) $) 163) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 103)) (-3226 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3996 (((-771)) 169 T CONST)) (-3801 (((-112) $ $) 171)) (-1575 (((-1264 $)) 125) (((-1264 $) (-921)) 60)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) 127 T CONST)) (-4333 (($) 40 T CONST)) (-3583 (($ $) 82 (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2876 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2950 (((-112) $ $) 123)) (-3062 (($ $ $) 115) (($ $ |#1|) 116)) (-3051 (($ $) 96) (($ $ $) 121)) (-3040 (($ $ $) 119)) (** (($ $ (-921)) NIL) (($ $ (-771)) 55) (($ $ (-566)) 146)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 94) (($ $ $) 68) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 92)))
(((-357 |#1| |#2|) (-330 |#1|) (-351) (-1171 |#1|)) (T -357))
NIL
(-330 |#1|)
-((-4311 ((|#1| (-1171 |#2|)) 63)))
-(((-358 |#1| |#2|) (-10 -7 (-15 -4311 (|#1| (-1171 |#2|)))) (-13 (-404) (-10 -7 (-15 -2512 (|#1| |#2|)) (-15 -3712 ((-921) |#1|)) (-15 -1990 ((-1264 |#1|) (-921))) (-15 -2752 (|#1| |#1|)))) (-351)) (T -358))
-((-4311 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-4 *2 (-13 (-404) (-10 -7 (-15 -2512 (*2 *4)) (-15 -3712 ((-921) *2)) (-15 -1990 ((-1264 *2) (-921))) (-15 -2752 (*2 *2))))) (-5 *1 (-358 *2 *4)))))
-(-10 -7 (-15 -4311 (|#1| (-1171 |#2|))))
-((-2908 (((-958 (-1171 |#1|)) (-1171 |#1|)) 53)) (-3335 (((-1171 |#1|) (-921) (-921)) 168) (((-1171 |#1|) (-921)) 164)) (-3449 (((-112) (-1171 |#1|)) 120)) (-1649 (((-921) (-921)) 98)) (-3216 (((-921) (-921)) 105)) (-3921 (((-921) (-921)) 96)) (-3754 (((-112) (-1171 |#1|)) 124)) (-1375 (((-3 (-1171 |#1|) "failed") (-1171 |#1|)) 149)) (-1320 (((-3 (-1171 |#1|) "failed") (-1171 |#1|)) 154)) (-4092 (((-3 (-1171 |#1|) "failed") (-1171 |#1|)) 153)) (-4159 (((-3 (-1171 |#1|) "failed") (-1171 |#1|)) 152)) (-1618 (((-3 (-1171 |#1|) "failed") (-1171 |#1|)) 144)) (-2491 (((-1171 |#1|) (-1171 |#1|)) 84)) (-1529 (((-1171 |#1|) (-921)) 159)) (-3938 (((-1171 |#1|) (-921)) 162)) (-3690 (((-1171 |#1|) (-921)) 161)) (-3403 (((-1171 |#1|) (-921)) 160)) (-1939 (((-1171 |#1|) (-921)) 157)))
-(((-359 |#1|) (-10 -7 (-15 -3449 ((-112) (-1171 |#1|))) (-15 -3754 ((-112) (-1171 |#1|))) (-15 -3921 ((-921) (-921))) (-15 -1649 ((-921) (-921))) (-15 -3216 ((-921) (-921))) (-15 -1939 ((-1171 |#1|) (-921))) (-15 -1529 ((-1171 |#1|) (-921))) (-15 -3403 ((-1171 |#1|) (-921))) (-15 -3690 ((-1171 |#1|) (-921))) (-15 -3938 ((-1171 |#1|) (-921))) (-15 -1618 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -1375 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -4159 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -4092 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -1320 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -3335 ((-1171 |#1|) (-921))) (-15 -3335 ((-1171 |#1|) (-921) (-921))) (-15 -2491 ((-1171 |#1|) (-1171 |#1|))) (-15 -2908 ((-958 (-1171 |#1|)) (-1171 |#1|)))) (-351)) (T -359))
-((-2908 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-958 (-1171 *4))) (-5 *1 (-359 *4)) (-5 *3 (-1171 *4)))) (-2491 (*1 *2 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-3335 (*1 *2 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-3335 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-1320 (*1 *2 *2) (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-4092 (*1 *2 *2) (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-4159 (*1 *2 *2) (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-1375 (*1 *2 *2) (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-1618 (*1 *2 *2) (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-3938 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-3690 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-3403 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-1529 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-1939 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-3216 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))) (-1649 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))) (-3921 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))) (-3754 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-112)) (-5 *1 (-359 *4)))) (-3449 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-112)) (-5 *1 (-359 *4)))))
-(-10 -7 (-15 -3449 ((-112) (-1171 |#1|))) (-15 -3754 ((-112) (-1171 |#1|))) (-15 -3921 ((-921) (-921))) (-15 -1649 ((-921) (-921))) (-15 -3216 ((-921) (-921))) (-15 -1939 ((-1171 |#1|) (-921))) (-15 -1529 ((-1171 |#1|) (-921))) (-15 -3403 ((-1171 |#1|) (-921))) (-15 -3690 ((-1171 |#1|) (-921))) (-15 -3938 ((-1171 |#1|) (-921))) (-15 -1618 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -1375 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -4159 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -4092 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -1320 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -3335 ((-1171 |#1|) (-921))) (-15 -3335 ((-1171 |#1|) (-921) (-921))) (-15 -2491 ((-1171 |#1|) (-1171 |#1|))) (-15 -2908 ((-958 (-1171 |#1|)) (-1171 |#1|))))
-((-1348 (((-3 (-644 |#3|) "failed") (-644 |#3|) |#3|) 38)))
-(((-360 |#1| |#2| |#3|) (-10 -7 (-15 -1348 ((-3 (-644 |#3|) "failed") (-644 |#3|) |#3|))) (-351) (-1240 |#1|) (-1240 |#2|)) (T -360))
-((-1348 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-351)) (-5 *1 (-360 *4 *5 *3)))))
-(-10 -7 (-15 -1348 ((-3 (-644 |#3|) "failed") (-644 |#3|) |#3|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| |#1| (-370)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) NIL (|has| |#1| (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-1547 (($ (-1264 |#1|)) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-370)))) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| |#1| (-370)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) NIL (|has| |#1| (-370)))) (-3449 (((-112) $) NIL (|has| |#1| (-370)))) (-3626 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2635 (((-112) $) NIL)) (-2716 (((-921) $) NIL (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2741 (((-112) $) NIL)) (-2061 (($) NIL (|has| |#1| (-370)))) (-3754 (((-112) $) NIL (|has| |#1| (-370)))) (-1559 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 |#1|) $) NIL) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-3712 (((-921) $) NIL (|has| |#1| (-370)))) (-1907 (((-1171 |#1|) $) NIL (|has| |#1| (-370)))) (-3866 (((-1171 |#1|) $) NIL (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) NIL (|has| |#1| (-370)))) (-1900 (($ $ (-1171 |#1|)) NIL (|has| |#1| (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| |#1| (-370)) CONST)) (-2168 (($ (-921)) NIL (|has| |#1| (-370)))) (-3751 (((-112) $) NIL)) (-4033 (((-1119) $) NIL)) (-4067 (($) NIL (|has| |#1| (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| |#1| (-370)))) (-2391 (((-420 $) $) NIL)) (-2003 (((-833 (-921))) NIL) (((-921)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-771) $) NIL (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1909 (((-134)) NIL)) (-2862 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-3992 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-2127 (((-1171 |#1|)) NIL)) (-1536 (($) NIL (|has| |#1| (-370)))) (-2873 (($) NIL (|has| |#1| (-370)))) (-2770 (((-1264 |#1|) $) NIL) (((-689 |#1|) (-1264 $)) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) NIL)) (-3842 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2752 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2840 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-2144 ((|#1| (-1171 |#2|)) 63)))
+(((-358 |#1| |#2|) (-10 -7 (-15 -2144 (|#1| (-1171 |#2|)))) (-13 (-404) (-10 -7 (-15 -3780 (|#1| |#2|)) (-15 -1299 ((-921) |#1|)) (-15 -1575 ((-1264 |#1|) (-921))) (-15 -3583 (|#1| |#1|)))) (-351)) (T -358))
+((-2144 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-4 *2 (-13 (-404) (-10 -7 (-15 -3780 (*2 *4)) (-15 -1299 ((-921) *2)) (-15 -1575 ((-1264 *2) (-921))) (-15 -3583 (*2 *2))))) (-5 *1 (-358 *2 *4)))))
+(-10 -7 (-15 -2144 (|#1| (-1171 |#2|))))
+((-1457 (((-958 (-1171 |#1|)) (-1171 |#1|)) 53)) (-1618 (((-1171 |#1|) (-921) (-921)) 168) (((-1171 |#1|) (-921)) 164)) (-3698 (((-112) (-1171 |#1|)) 120)) (-4274 (((-921) (-921)) 98)) (-3369 (((-921) (-921)) 105)) (-2694 (((-921) (-921)) 96)) (-1771 (((-112) (-1171 |#1|)) 124)) (-4169 (((-3 (-1171 |#1|) "failed") (-1171 |#1|)) 149)) (-1710 (((-3 (-1171 |#1|) "failed") (-1171 |#1|)) 154)) (-1811 (((-3 (-1171 |#1|) "failed") (-1171 |#1|)) 153)) (-4305 (((-3 (-1171 |#1|) "failed") (-1171 |#1|)) 152)) (-2115 (((-3 (-1171 |#1|) "failed") (-1171 |#1|)) 144)) (-2824 (((-1171 |#1|) (-1171 |#1|)) 84)) (-2444 (((-1171 |#1|) (-921)) 159)) (-2822 (((-1171 |#1|) (-921)) 162)) (-2343 (((-1171 |#1|) (-921)) 161)) (-1326 (((-1171 |#1|) (-921)) 160)) (-2304 (((-1171 |#1|) (-921)) 157)))
+(((-359 |#1|) (-10 -7 (-15 -3698 ((-112) (-1171 |#1|))) (-15 -1771 ((-112) (-1171 |#1|))) (-15 -2694 ((-921) (-921))) (-15 -4274 ((-921) (-921))) (-15 -3369 ((-921) (-921))) (-15 -2304 ((-1171 |#1|) (-921))) (-15 -2444 ((-1171 |#1|) (-921))) (-15 -1326 ((-1171 |#1|) (-921))) (-15 -2343 ((-1171 |#1|) (-921))) (-15 -2822 ((-1171 |#1|) (-921))) (-15 -2115 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -4169 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -4305 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -1811 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -1710 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -1618 ((-1171 |#1|) (-921))) (-15 -1618 ((-1171 |#1|) (-921) (-921))) (-15 -2824 ((-1171 |#1|) (-1171 |#1|))) (-15 -1457 ((-958 (-1171 |#1|)) (-1171 |#1|)))) (-351)) (T -359))
+((-1457 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-958 (-1171 *4))) (-5 *1 (-359 *4)) (-5 *3 (-1171 *4)))) (-2824 (*1 *2 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-1618 (*1 *2 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-1618 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-1710 (*1 *2 *2) (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-1811 (*1 *2 *2) (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-4305 (*1 *2 *2) (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-4169 (*1 *2 *2) (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-2115 (*1 *2 *2) (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))) (-2822 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-2343 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-1326 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-2444 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-2304 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4)) (-4 *4 (-351)))) (-3369 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))) (-4274 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))) (-2694 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))) (-1771 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-112)) (-5 *1 (-359 *4)))) (-3698 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-112)) (-5 *1 (-359 *4)))))
+(-10 -7 (-15 -3698 ((-112) (-1171 |#1|))) (-15 -1771 ((-112) (-1171 |#1|))) (-15 -2694 ((-921) (-921))) (-15 -4274 ((-921) (-921))) (-15 -3369 ((-921) (-921))) (-15 -2304 ((-1171 |#1|) (-921))) (-15 -2444 ((-1171 |#1|) (-921))) (-15 -1326 ((-1171 |#1|) (-921))) (-15 -2343 ((-1171 |#1|) (-921))) (-15 -2822 ((-1171 |#1|) (-921))) (-15 -2115 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -4169 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -4305 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -1811 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -1710 ((-3 (-1171 |#1|) "failed") (-1171 |#1|))) (-15 -1618 ((-1171 |#1|) (-921))) (-15 -1618 ((-1171 |#1|) (-921) (-921))) (-15 -2824 ((-1171 |#1|) (-1171 |#1|))) (-15 -1457 ((-958 (-1171 |#1|)) (-1171 |#1|))))
+((-3354 (((-3 (-644 |#3|) "failed") (-644 |#3|) |#3|) 38)))
+(((-360 |#1| |#2| |#3|) (-10 -7 (-15 -3354 ((-3 (-644 |#3|) "failed") (-644 |#3|) |#3|))) (-351) (-1240 |#1|) (-1240 |#2|)) (T -360))
+((-3354 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-351)) (-5 *1 (-360 *4 *5 *3)))))
+(-10 -7 (-15 -3354 ((-3 (-644 |#3|) "failed") (-644 |#3|) |#3|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| |#1| (-370)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) NIL (|has| |#1| (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-2613 (($ (-1264 |#1|)) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-370)))) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| |#1| (-370)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) NIL (|has| |#1| (-370)))) (-3698 (((-112) $) NIL (|has| |#1| (-370)))) (-2901 (($ $ (-771)) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1784 (((-112) $) NIL)) (-3227 (((-921) $) NIL (|has| |#1| (-370))) (((-833 (-921)) $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3466 (((-112) $) NIL)) (-4138 (($) NIL (|has| |#1| (-370)))) (-1771 (((-112) $) NIL (|has| |#1| (-370)))) (-2719 ((|#1| $) NIL) (($ $ (-921)) NIL (|has| |#1| (-370)))) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 |#1|) $) NIL) (((-1171 $) $ (-921)) NIL (|has| |#1| (-370)))) (-1299 (((-921) $) NIL (|has| |#1| (-370)))) (-1988 (((-1171 |#1|) $) NIL (|has| |#1| (-370)))) (-3433 (((-1171 |#1|) $) NIL (|has| |#1| (-370))) (((-3 (-1171 |#1|) "failed") $ $) NIL (|has| |#1| (-370)))) (-1923 (($ $ (-1171 |#1|)) NIL (|has| |#1| (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| |#1| (-370)) CONST)) (-2208 (($ (-921)) NIL (|has| |#1| (-370)))) (-1737 (((-112) $) NIL)) (-4056 (((-1119) $) NIL)) (-4152 (($) NIL (|has| |#1| (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| |#1| (-370)))) (-2473 (((-420 $) $) NIL)) (-1723 (((-833 (-921))) NIL) (((-921)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-771) $) NIL (|has| |#1| (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2012 (((-134)) NIL)) (-2578 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2108 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-3601 (((-1171 |#1|)) NIL)) (-2507 (($) NIL (|has| |#1| (-370)))) (-2348 (($) NIL (|has| |#1| (-370)))) (-2543 (((-1264 |#1|) $) NIL) (((-689 |#1|) (-1264 $)) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-370)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) NIL)) (-3226 (($ $) NIL (|has| |#1| (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-3583 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2876 (($ $) NIL (|has| |#1| (-370))) (($ $ (-771)) NIL (|has| |#1| (-370)))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-361 |#1| |#2|) (-330 |#1|) (-351) (-921)) (T -361))
NIL
(-330 |#1|)
-((-2881 (((-112) (-644 (-952 |#1|))) 41)) (-4375 (((-644 (-952 |#1|)) (-644 (-952 |#1|))) 53)) (-4276 (((-3 (-644 (-952 |#1|)) "failed") (-644 (-952 |#1|))) 48)))
-(((-362 |#1| |#2|) (-10 -7 (-15 -2881 ((-112) (-644 (-952 |#1|)))) (-15 -4276 ((-3 (-644 (-952 |#1|)) "failed") (-644 (-952 |#1|)))) (-15 -4375 ((-644 (-952 |#1|)) (-644 (-952 |#1|))))) (-454) (-644 (-1175))) (T -362))
-((-4375 (*1 *2 *2) (-12 (-5 *2 (-644 (-952 *3))) (-4 *3 (-454)) (-5 *1 (-362 *3 *4)) (-14 *4 (-644 (-1175))))) (-4276 (*1 *2 *2) (|partial| -12 (-5 *2 (-644 (-952 *3))) (-4 *3 (-454)) (-5 *1 (-362 *3 *4)) (-14 *4 (-644 (-1175))))) (-2881 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-454)) (-5 *2 (-112)) (-5 *1 (-362 *4 *5)) (-14 *5 (-644 (-1175))))))
-(-10 -7 (-15 -2881 ((-112) (-644 (-952 |#1|)))) (-15 -4276 ((-3 (-644 (-952 |#1|)) "failed") (-644 (-952 |#1|)))) (-15 -4375 ((-644 (-952 |#1|)) (-644 (-952 |#1|)))))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771) $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) 17)) (-2647 ((|#1| $ (-566)) NIL)) (-1571 (((-566) $ (-566)) NIL)) (-4105 (($ (-1 |#1| |#1|) $) 34)) (-2855 (($ (-1 (-566) (-566)) $) 26)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 28)) (-4033 (((-1119) $) NIL)) (-4236 (((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-566)))) $) 30)) (-2032 (($ $ $) NIL)) (-3755 (($ $ $) NIL)) (-2512 (((-862) $) 40) (($ |#1|) NIL)) (-3122 (((-112) $ $) NIL)) (-2495 (($) 11 T CONST)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL) (($ |#1| (-566)) 19)) (* (($ $ $) 53) (($ |#1| $) 23) (($ $ |#1|) 21)))
-(((-363 |#1|) (-13 (-475) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-566))) (-15 -4025 ((-771) $)) (-15 -1571 ((-566) $ (-566))) (-15 -2647 (|#1| $ (-566))) (-15 -2855 ($ (-1 (-566) (-566)) $)) (-15 -4105 ($ (-1 |#1| |#1|) $)) (-15 -4236 ((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-566)))) $)))) (-1099)) (T -363))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-363 *2)) (-4 *2 (-1099)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-363 *2)) (-4 *2 (-1099)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-363 *2)) (-4 *2 (-1099)))) (-4025 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-363 *3)) (-4 *3 (-1099)))) (-1571 (*1 *2 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-363 *3)) (-4 *3 (-1099)))) (-2647 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-363 *2)) (-4 *2 (-1099)))) (-2855 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-566) (-566))) (-5 *1 (-363 *3)) (-4 *3 (-1099)))) (-4105 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-363 *3)))) (-4236 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 (-566))))) (-5 *1 (-363 *3)) (-4 *3 (-1099)))))
-(-13 (-475) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-566))) (-15 -4025 ((-771) $)) (-15 -1571 ((-566) $ (-566))) (-15 -2647 (|#1| $ (-566))) (-15 -2855 ($ (-1 (-566) (-566)) $)) (-15 -4105 ($ (-1 |#1| |#1|) $)) (-15 -4236 ((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-566)))) $))))
-((-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 13)) (-3653 (($ $) 14)) (-1370 (((-420 $) $) 34)) (-2635 (((-112) $) 30)) (-2626 (($ $) 19)) (-2222 (($ $ $) 25) (($ (-644 $)) NIL)) (-2391 (((-420 $) $) 35)) (-2972 (((-3 $ "failed") $ $) 24)) (-1813 (((-771) $) 28)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 39)) (-1634 (((-112) $ $) 16)) (-3061 (($ $ $) 37)))
-(((-364 |#1|) (-10 -8 (-15 -3061 (|#1| |#1| |#1|)) (-15 -2626 (|#1| |#1|)) (-15 -2635 ((-112) |#1|)) (-15 -1370 ((-420 |#1|) |#1|)) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -2347 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -1813 ((-771) |#1|)) (-15 -2222 (|#1| (-644 |#1|))) (-15 -2222 (|#1| |#1| |#1|)) (-15 -1634 ((-112) |#1| |#1|)) (-15 -3653 (|#1| |#1|)) (-15 -2330 ((-2 (|:| -3803 |#1|) (|:| -4404 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#1|))) (-365)) (T -364))
-NIL
-(-10 -8 (-15 -3061 (|#1| |#1| |#1|)) (-15 -2626 (|#1| |#1|)) (-15 -2635 ((-112) |#1|)) (-15 -1370 ((-420 |#1|) |#1|)) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -2347 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -1813 ((-771) |#1|)) (-15 -2222 (|#1| (-644 |#1|))) (-15 -2222 (|#1| |#1| |#1|)) (-15 -1634 ((-112) |#1| |#1|)) (-15 -3653 (|#1| |#1|)) (-15 -2330 ((-2 (|:| -3803 |#1|) (|:| -4404 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 81)) (-1370 (((-420 $) $) 80)) (-1561 (((-112) $ $) 65)) (-2342 (($) 18 T CONST)) (-2926 (($ $ $) 61)) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-2635 (((-112) $) 79)) (-2741 (((-112) $) 35)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 78)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-2391 (((-420 $) $) 82)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1813 (((-771) $) 64)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 73)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
+((-2435 (((-112) (-644 (-952 |#1|))) 41)) (-1532 (((-644 (-952 |#1|)) (-644 (-952 |#1|))) 53)) (-3019 (((-3 (-644 (-952 |#1|)) "failed") (-644 (-952 |#1|))) 48)))
+(((-362 |#1| |#2|) (-10 -7 (-15 -2435 ((-112) (-644 (-952 |#1|)))) (-15 -3019 ((-3 (-644 (-952 |#1|)) "failed") (-644 (-952 |#1|)))) (-15 -1532 ((-644 (-952 |#1|)) (-644 (-952 |#1|))))) (-454) (-644 (-1175))) (T -362))
+((-1532 (*1 *2 *2) (-12 (-5 *2 (-644 (-952 *3))) (-4 *3 (-454)) (-5 *1 (-362 *3 *4)) (-14 *4 (-644 (-1175))))) (-3019 (*1 *2 *2) (|partial| -12 (-5 *2 (-644 (-952 *3))) (-4 *3 (-454)) (-5 *1 (-362 *3 *4)) (-14 *4 (-644 (-1175))))) (-2435 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-454)) (-5 *2 (-112)) (-5 *1 (-362 *4 *5)) (-14 *5 (-644 (-1175))))))
+(-10 -7 (-15 -2435 ((-112) (-644 (-952 |#1|)))) (-15 -3019 ((-3 (-644 (-952 |#1|)) "failed") (-644 (-952 |#1|)))) (-15 -1532 ((-644 (-952 |#1|)) (-644 (-952 |#1|)))))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771) $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) 17)) (-3749 ((|#1| $ (-566)) NIL)) (-2840 (((-566) $ (-566)) NIL)) (-3796 (($ (-1 |#1| |#1|) $) 34)) (-2158 (($ (-1 (-566) (-566)) $) 26)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 28)) (-4056 (((-1119) $) NIL)) (-2670 (((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-566)))) $) 30)) (-3850 (($ $ $) NIL)) (-1783 (($ $ $) NIL)) (-3780 (((-862) $) 40) (($ |#1|) NIL)) (-3801 (((-112) $ $) NIL)) (-4333 (($) 11 T CONST)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL) (($ |#1| (-566)) 19)) (* (($ $ $) 53) (($ |#1| $) 23) (($ $ |#1|) 21)))
+(((-363 |#1|) (-13 (-475) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-566))) (-15 -4070 ((-771) $)) (-15 -2840 ((-566) $ (-566))) (-15 -3749 (|#1| $ (-566))) (-15 -2158 ($ (-1 (-566) (-566)) $)) (-15 -3796 ($ (-1 |#1| |#1|) $)) (-15 -2670 ((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-566)))) $)))) (-1099)) (T -363))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-363 *2)) (-4 *2 (-1099)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-363 *2)) (-4 *2 (-1099)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-363 *2)) (-4 *2 (-1099)))) (-4070 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-363 *3)) (-4 *3 (-1099)))) (-2840 (*1 *2 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-363 *3)) (-4 *3 (-1099)))) (-3749 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-363 *2)) (-4 *2 (-1099)))) (-2158 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-566) (-566))) (-5 *1 (-363 *3)) (-4 *3 (-1099)))) (-3796 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-363 *3)))) (-2670 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 (-566))))) (-5 *1 (-363 *3)) (-4 *3 (-1099)))))
+(-13 (-475) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-566))) (-15 -4070 ((-771) $)) (-15 -2840 ((-566) $ (-566))) (-15 -3749 (|#1| $ (-566))) (-15 -2158 ($ (-1 (-566) (-566)) $)) (-15 -3796 ($ (-1 |#1| |#1|) $)) (-15 -2670 ((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-566)))) $))))
+((-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 13)) (-1968 (($ $) 14)) (-3271 (((-420 $) $) 34)) (-1784 (((-112) $) 30)) (-3584 (($ $) 19)) (-2235 (($ $ $) 25) (($ (-644 $)) NIL)) (-2473 (((-420 $) $) 35)) (-2997 (((-3 $ "failed") $ $) 24)) (-3470 (((-771) $) 28)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 39)) (-2278 (((-112) $ $) 16)) (-3062 (($ $ $) 37)))
+(((-364 |#1|) (-10 -8 (-15 -3062 (|#1| |#1| |#1|)) (-15 -3584 (|#1| |#1|)) (-15 -1784 ((-112) |#1|)) (-15 -3271 ((-420 |#1|) |#1|)) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3919 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -3470 ((-771) |#1|)) (-15 -2235 (|#1| (-644 |#1|))) (-15 -2235 (|#1| |#1| |#1|)) (-15 -2278 ((-112) |#1| |#1|)) (-15 -1968 (|#1| |#1|)) (-15 -3761 ((-2 (|:| -4065 |#1|) (|:| -4401 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#1|))) (-365)) (T -364))
+NIL
+(-10 -8 (-15 -3062 (|#1| |#1| |#1|)) (-15 -3584 (|#1| |#1|)) (-15 -1784 ((-112) |#1|)) (-15 -3271 ((-420 |#1|) |#1|)) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3919 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -3470 ((-771) |#1|)) (-15 -2235 (|#1| (-644 |#1|))) (-15 -2235 (|#1| |#1| |#1|)) (-15 -2278 ((-112) |#1| |#1|)) (-15 -1968 (|#1| |#1|)) (-15 -3761 ((-2 (|:| -4065 |#1|) (|:| -4401 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 81)) (-3271 (((-420 $) $) 80)) (-2738 (((-112) $ $) 65)) (-3877 (($) 18 T CONST)) (-2949 (($ $ $) 61)) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-1784 (((-112) $) 79)) (-3466 (((-112) $) 35)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 78)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2473 (((-420 $) $) 82)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3470 (((-771) $) 64)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 73)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
(((-365) (-140)) (T -365))
-((-3061 (*1 *1 *1 *1) (-4 *1 (-365))))
-(-13 (-308) (-1218) (-243) (-10 -8 (-15 -3061 ($ $ $)) (-6 -4415) (-6 -4409)))
+((-3062 (*1 *1 *1 *1) (-4 *1 (-365))))
+(-13 (-308) (-1218) (-243) (-10 -8 (-15 -3062 ($ $ $)) (-6 -4412) (-6 -4406)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-616 #0#) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-243) . T) ((-291) . T) ((-308) . T) ((-454) . T) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 $) . T) ((-640 #0#) . T) ((-640 $) . T) ((-717 #0#) . T) ((-717 $) . T) ((-726) . T) ((-920) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) . T))
-((-2985 (((-112) $ $) 7)) (-3897 ((|#2| $ |#2|) 14)) (-3416 (($ $ (-1157)) 19)) (-2534 ((|#2| $) 15)) (-3509 (($ |#1|) 21) (($ |#1| (-1157)) 20)) (-2628 ((|#1| $) 17)) (-2878 (((-1157) $) 10)) (-1563 (((-1157) $) 16)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-1459 (($ $) 18)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-3009 (((-112) $ $) 7)) (-3696 ((|#2| $ |#2|) 14)) (-1466 (($ $ (-1157)) 19)) (-2023 ((|#2| $) 15)) (-3537 (($ |#1|) 21) (($ |#1| (-1157)) 20)) (-2639 ((|#1| $) 17)) (-2402 (((-1157) $) 10)) (-2756 (((-1157) $) 16)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-4127 (($ $) 18)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-366 |#1| |#2|) (-140) (-1099) (-1099)) (T -366))
-((-3509 (*1 *1 *2) (-12 (-4 *1 (-366 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-3509 (*1 *1 *2 *3) (-12 (-5 *3 (-1157)) (-4 *1 (-366 *2 *4)) (-4 *2 (-1099)) (-4 *4 (-1099)))) (-3416 (*1 *1 *1 *2) (-12 (-5 *2 (-1157)) (-4 *1 (-366 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-1459 (*1 *1 *1) (-12 (-4 *1 (-366 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-2628 (*1 *2 *1) (-12 (-4 *1 (-366 *2 *3)) (-4 *3 (-1099)) (-4 *2 (-1099)))) (-1563 (*1 *2 *1) (-12 (-4 *1 (-366 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-5 *2 (-1157)))) (-2534 (*1 *2 *1) (-12 (-4 *1 (-366 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))) (-3897 (*1 *2 *1 *2) (-12 (-4 *1 (-366 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
-(-13 (-1099) (-10 -8 (-15 -3509 ($ |t#1|)) (-15 -3509 ($ |t#1| (-1157))) (-15 -3416 ($ $ (-1157))) (-15 -1459 ($ $)) (-15 -2628 (|t#1| $)) (-15 -1563 ((-1157) $)) (-15 -2534 (|t#2| $)) (-15 -3897 (|t#2| $ |t#2|))))
+((-3537 (*1 *1 *2) (-12 (-4 *1 (-366 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-3537 (*1 *1 *2 *3) (-12 (-5 *3 (-1157)) (-4 *1 (-366 *2 *4)) (-4 *2 (-1099)) (-4 *4 (-1099)))) (-1466 (*1 *1 *1 *2) (-12 (-5 *2 (-1157)) (-4 *1 (-366 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-4127 (*1 *1 *1) (-12 (-4 *1 (-366 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-2639 (*1 *2 *1) (-12 (-4 *1 (-366 *2 *3)) (-4 *3 (-1099)) (-4 *2 (-1099)))) (-2756 (*1 *2 *1) (-12 (-4 *1 (-366 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-5 *2 (-1157)))) (-2023 (*1 *2 *1) (-12 (-4 *1 (-366 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))) (-3696 (*1 *2 *1 *2) (-12 (-4 *1 (-366 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
+(-13 (-1099) (-10 -8 (-15 -3537 ($ |t#1|)) (-15 -3537 ($ |t#1| (-1157))) (-15 -1466 ($ $ (-1157))) (-15 -4127 ($ $)) (-15 -2639 (|t#1| $)) (-15 -2756 ((-1157) $)) (-15 -2023 (|t#2| $)) (-15 -3696 (|t#2| $ |t#2|))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3897 ((|#1| $ |#1|) 31)) (-3416 (($ $ (-1157)) 23)) (-4281 (((-3 |#1| "failed") $) 30)) (-2534 ((|#1| $) 28)) (-3509 (($ (-390)) 22) (($ (-390) (-1157)) 21)) (-2628 (((-390) $) 25)) (-2878 (((-1157) $) NIL)) (-1563 (((-1157) $) 26)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 20)) (-1459 (($ $) 24)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 19)))
-(((-367 |#1|) (-13 (-366 (-390) |#1|) (-10 -8 (-15 -4281 ((-3 |#1| "failed") $)))) (-1099)) (T -367))
-((-4281 (*1 *2 *1) (|partial| -12 (-5 *1 (-367 *2)) (-4 *2 (-1099)))))
-(-13 (-366 (-390) |#1|) (-10 -8 (-15 -4281 ((-3 |#1| "failed") $))))
-((-3950 (((-1264 (-689 |#2|)) (-1264 $)) 70)) (-2327 (((-689 |#2|) (-1264 $)) 141)) (-2080 ((|#2| $) 39)) (-1481 (((-689 |#2|) $ (-1264 $)) 144)) (-3152 (((-3 $ "failed") $) 91)) (-2798 ((|#2| $) 42)) (-3584 (((-1171 |#2|) $) 99)) (-3435 ((|#2| (-1264 $)) 124)) (-3815 (((-1171 |#2|) $) 34)) (-2982 (((-112)) 118)) (-1547 (($ (-1264 |#2|) (-1264 $)) 134)) (-1579 (((-3 $ "failed") $) 95)) (-1605 (((-112)) 112)) (-3199 (((-112)) 107)) (-2592 (((-112)) 61)) (-1297 (((-689 |#2|) (-1264 $)) 139)) (-2516 ((|#2| $) 38)) (-4333 (((-689 |#2|) $ (-1264 $)) 143)) (-2318 (((-3 $ "failed") $) 89)) (-3595 ((|#2| $) 41)) (-3984 (((-1171 |#2|) $) 98)) (-2835 ((|#2| (-1264 $)) 122)) (-1846 (((-1171 |#2|) $) 32)) (-3880 (((-112)) 117)) (-2817 (((-112)) 109)) (-1642 (((-112)) 59)) (-4331 (((-112)) 104)) (-3017 (((-112)) 119)) (-2770 (((-1264 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) (-1264 $) (-1264 $)) 130)) (-2110 (((-112)) 115)) (-3578 (((-644 (-1264 |#2|))) 103)) (-4018 (((-112)) 116)) (-1546 (((-112)) 113)) (-2498 (((-112)) 54)) (-2686 (((-112)) 120)))
-(((-368 |#1| |#2|) (-10 -8 (-15 -3584 ((-1171 |#2|) |#1|)) (-15 -3984 ((-1171 |#2|) |#1|)) (-15 -3578 ((-644 (-1264 |#2|)))) (-15 -3152 ((-3 |#1| "failed") |#1|)) (-15 -2318 ((-3 |#1| "failed") |#1|)) (-15 -1579 ((-3 |#1| "failed") |#1|)) (-15 -3199 ((-112))) (-15 -2817 ((-112))) (-15 -1605 ((-112))) (-15 -1642 ((-112))) (-15 -2592 ((-112))) (-15 -4331 ((-112))) (-15 -2686 ((-112))) (-15 -3017 ((-112))) (-15 -2982 ((-112))) (-15 -3880 ((-112))) (-15 -2498 ((-112))) (-15 -4018 ((-112))) (-15 -1546 ((-112))) (-15 -2110 ((-112))) (-15 -3815 ((-1171 |#2|) |#1|)) (-15 -1846 ((-1171 |#2|) |#1|)) (-15 -2327 ((-689 |#2|) (-1264 |#1|))) (-15 -1297 ((-689 |#2|) (-1264 |#1|))) (-15 -3435 (|#2| (-1264 |#1|))) (-15 -2835 (|#2| (-1264 |#1|))) (-15 -1547 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -2798 (|#2| |#1|)) (-15 -3595 (|#2| |#1|)) (-15 -2080 (|#2| |#1|)) (-15 -2516 (|#2| |#1|)) (-15 -1481 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -4333 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -3950 ((-1264 (-689 |#2|)) (-1264 |#1|)))) (-369 |#2|) (-172)) (T -368))
-((-2110 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-1546 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-4018 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2498 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-3880 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2982 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-3017 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2686 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-4331 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2592 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-1642 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-1605 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2817 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-3199 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-3578 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-644 (-1264 *4))) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))))
-(-10 -8 (-15 -3584 ((-1171 |#2|) |#1|)) (-15 -3984 ((-1171 |#2|) |#1|)) (-15 -3578 ((-644 (-1264 |#2|)))) (-15 -3152 ((-3 |#1| "failed") |#1|)) (-15 -2318 ((-3 |#1| "failed") |#1|)) (-15 -1579 ((-3 |#1| "failed") |#1|)) (-15 -3199 ((-112))) (-15 -2817 ((-112))) (-15 -1605 ((-112))) (-15 -1642 ((-112))) (-15 -2592 ((-112))) (-15 -4331 ((-112))) (-15 -2686 ((-112))) (-15 -3017 ((-112))) (-15 -2982 ((-112))) (-15 -3880 ((-112))) (-15 -2498 ((-112))) (-15 -4018 ((-112))) (-15 -1546 ((-112))) (-15 -2110 ((-112))) (-15 -3815 ((-1171 |#2|) |#1|)) (-15 -1846 ((-1171 |#2|) |#1|)) (-15 -2327 ((-689 |#2|) (-1264 |#1|))) (-15 -1297 ((-689 |#2|) (-1264 |#1|))) (-15 -3435 (|#2| (-1264 |#1|))) (-15 -2835 (|#2| (-1264 |#1|))) (-15 -1547 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -2798 (|#2| |#1|)) (-15 -3595 (|#2| |#1|)) (-15 -2080 (|#2| |#1|)) (-15 -2516 (|#2| |#1|)) (-15 -1481 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -4333 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -3950 ((-1264 (-689 |#2|)) (-1264 |#1|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-3803 (((-3 $ "failed")) 42 (|has| |#1| (-558)))) (-4126 (((-3 $ "failed") $ $) 20)) (-3950 (((-1264 (-689 |#1|)) (-1264 $)) 83)) (-1378 (((-1264 $)) 86)) (-2342 (($) 18 T CONST)) (-1503 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) 45 (|has| |#1| (-558)))) (-2301 (((-3 $ "failed")) 43 (|has| |#1| (-558)))) (-2327 (((-689 |#1|) (-1264 $)) 70)) (-2080 ((|#1| $) 79)) (-1481 (((-689 |#1|) $ (-1264 $)) 81)) (-3152 (((-3 $ "failed") $) 50 (|has| |#1| (-558)))) (-2258 (($ $ (-921)) 31)) (-2798 ((|#1| $) 77)) (-3584 (((-1171 |#1|) $) 47 (|has| |#1| (-558)))) (-3435 ((|#1| (-1264 $)) 72)) (-3815 (((-1171 |#1|) $) 68)) (-2982 (((-112)) 62)) (-1547 (($ (-1264 |#1|) (-1264 $)) 74)) (-1579 (((-3 $ "failed") $) 52 (|has| |#1| (-558)))) (-1821 (((-921)) 85)) (-2631 (((-112)) 59)) (-2995 (($ $ (-921)) 38)) (-1605 (((-112)) 55)) (-3199 (((-112)) 53)) (-2592 (((-112)) 57)) (-3881 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) 46 (|has| |#1| (-558)))) (-2060 (((-3 $ "failed")) 44 (|has| |#1| (-558)))) (-1297 (((-689 |#1|) (-1264 $)) 71)) (-2516 ((|#1| $) 80)) (-4333 (((-689 |#1|) $ (-1264 $)) 82)) (-2318 (((-3 $ "failed") $) 51 (|has| |#1| (-558)))) (-4171 (($ $ (-921)) 32)) (-3595 ((|#1| $) 78)) (-3984 (((-1171 |#1|) $) 48 (|has| |#1| (-558)))) (-2835 ((|#1| (-1264 $)) 73)) (-1846 (((-1171 |#1|) $) 69)) (-3880 (((-112)) 63)) (-2878 (((-1157) $) 10)) (-2817 (((-112)) 54)) (-1642 (((-112)) 56)) (-4331 (((-112)) 58)) (-4033 (((-1119) $) 11)) (-3017 (((-112)) 61)) (-2770 (((-1264 |#1|) $ (-1264 $)) 76) (((-689 |#1|) (-1264 $) (-1264 $)) 75)) (-2232 (((-644 (-952 |#1|)) (-1264 $)) 84)) (-3755 (($ $ $) 28)) (-2110 (((-112)) 67)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-3578 (((-644 (-1264 |#1|))) 49 (|has| |#1| (-558)))) (-3551 (($ $ $ $) 29)) (-4018 (((-112)) 65)) (-2821 (($ $ $) 27)) (-1546 (((-112)) 66)) (-2498 (((-112)) 64)) (-2686 (((-112)) 60)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 33)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-3009 (((-112) $ $) NIL)) (-3696 ((|#1| $ |#1|) 31)) (-1466 (($ $ (-1157)) 23)) (-3075 (((-3 |#1| "failed") $) 30)) (-2023 ((|#1| $) 28)) (-3537 (($ (-390)) 22) (($ (-390) (-1157)) 21)) (-2639 (((-390) $) 25)) (-2402 (((-1157) $) NIL)) (-2756 (((-1157) $) 26)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 20)) (-4127 (($ $) 24)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 19)))
+(((-367 |#1|) (-13 (-366 (-390) |#1|) (-10 -8 (-15 -3075 ((-3 |#1| "failed") $)))) (-1099)) (T -367))
+((-3075 (*1 *2 *1) (|partial| -12 (-5 *1 (-367 *2)) (-4 *2 (-1099)))))
+(-13 (-366 (-390) |#1|) (-10 -8 (-15 -3075 ((-3 |#1| "failed") $))))
+((-2932 (((-1264 (-689 |#2|)) (-1264 $)) 70)) (-3735 (((-689 |#2|) (-1264 $)) 141)) (-3121 ((|#2| $) 39)) (-3150 (((-689 |#2|) $ (-1264 $)) 144)) (-4029 (((-3 $ "failed") $) 91)) (-2811 ((|#2| $) 42)) (-2536 (((-1171 |#2|) $) 99)) (-1682 ((|#2| (-1264 $)) 124)) (-4181 (((-1171 |#2|) $) 34)) (-2011 (((-112)) 118)) (-2613 (($ (-1264 |#2|) (-1264 $)) 134)) (-2928 (((-3 $ "failed") $) 95)) (-1993 (((-112)) 112)) (-3202 (((-112)) 107)) (-1321 (((-112)) 61)) (-4105 (((-689 |#2|) (-1264 $)) 139)) (-1863 ((|#2| $) 38)) (-2377 (((-689 |#2|) $ (-1264 $)) 143)) (-1787 (((-3 $ "failed") $) 89)) (-2630 ((|#2| $) 41)) (-2041 (((-1171 |#2|) $) 98)) (-1964 ((|#2| (-1264 $)) 122)) (-2584 (((-1171 |#2|) $) 32)) (-3561 (((-112)) 117)) (-3002 (((-112)) 109)) (-4211 (((-112)) 59)) (-2355 (((-112)) 104)) (-2283 (((-112)) 119)) (-2543 (((-1264 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) (-1264 $) (-1264 $)) 130)) (-3431 (((-112)) 115)) (-2474 (((-644 (-1264 |#2|))) 103)) (-2359 (((-112)) 116)) (-2602 (((-112)) 113)) (-2891 (((-112)) 54)) (-4142 (((-112)) 120)))
+(((-368 |#1| |#2|) (-10 -8 (-15 -2536 ((-1171 |#2|) |#1|)) (-15 -2041 ((-1171 |#2|) |#1|)) (-15 -2474 ((-644 (-1264 |#2|)))) (-15 -4029 ((-3 |#1| "failed") |#1|)) (-15 -1787 ((-3 |#1| "failed") |#1|)) (-15 -2928 ((-3 |#1| "failed") |#1|)) (-15 -3202 ((-112))) (-15 -3002 ((-112))) (-15 -1993 ((-112))) (-15 -4211 ((-112))) (-15 -1321 ((-112))) (-15 -2355 ((-112))) (-15 -4142 ((-112))) (-15 -2283 ((-112))) (-15 -2011 ((-112))) (-15 -3561 ((-112))) (-15 -2891 ((-112))) (-15 -2359 ((-112))) (-15 -2602 ((-112))) (-15 -3431 ((-112))) (-15 -4181 ((-1171 |#2|) |#1|)) (-15 -2584 ((-1171 |#2|) |#1|)) (-15 -3735 ((-689 |#2|) (-1264 |#1|))) (-15 -4105 ((-689 |#2|) (-1264 |#1|))) (-15 -1682 (|#2| (-1264 |#1|))) (-15 -1964 (|#2| (-1264 |#1|))) (-15 -2613 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -2811 (|#2| |#1|)) (-15 -2630 (|#2| |#1|)) (-15 -3121 (|#2| |#1|)) (-15 -1863 (|#2| |#1|)) (-15 -3150 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -2377 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -2932 ((-1264 (-689 |#2|)) (-1264 |#1|)))) (-369 |#2|) (-172)) (T -368))
+((-3431 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2602 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2359 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2891 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-3561 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2011 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2283 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-4142 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2355 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-1321 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-4211 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-1993 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-3002 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-3202 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))) (-2474 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-644 (-1264 *4))) (-5 *1 (-368 *3 *4)) (-4 *3 (-369 *4)))))
+(-10 -8 (-15 -2536 ((-1171 |#2|) |#1|)) (-15 -2041 ((-1171 |#2|) |#1|)) (-15 -2474 ((-644 (-1264 |#2|)))) (-15 -4029 ((-3 |#1| "failed") |#1|)) (-15 -1787 ((-3 |#1| "failed") |#1|)) (-15 -2928 ((-3 |#1| "failed") |#1|)) (-15 -3202 ((-112))) (-15 -3002 ((-112))) (-15 -1993 ((-112))) (-15 -4211 ((-112))) (-15 -1321 ((-112))) (-15 -2355 ((-112))) (-15 -4142 ((-112))) (-15 -2283 ((-112))) (-15 -2011 ((-112))) (-15 -3561 ((-112))) (-15 -2891 ((-112))) (-15 -2359 ((-112))) (-15 -2602 ((-112))) (-15 -3431 ((-112))) (-15 -4181 ((-1171 |#2|) |#1|)) (-15 -2584 ((-1171 |#2|) |#1|)) (-15 -3735 ((-689 |#2|) (-1264 |#1|))) (-15 -4105 ((-689 |#2|) (-1264 |#1|))) (-15 -1682 (|#2| (-1264 |#1|))) (-15 -1964 (|#2| (-1264 |#1|))) (-15 -2613 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -2811 (|#2| |#1|)) (-15 -2630 (|#2| |#1|)) (-15 -3121 (|#2| |#1|)) (-15 -1863 (|#2| |#1|)) (-15 -3150 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -2377 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -2932 ((-1264 (-689 |#2|)) (-1264 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4065 (((-3 $ "failed")) 42 (|has| |#1| (-558)))) (-4014 (((-3 $ "failed") $ $) 20)) (-2932 (((-1264 (-689 |#1|)) (-1264 $)) 83)) (-4132 (((-1264 $)) 86)) (-3877 (($) 18 T CONST)) (-3379 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) 45 (|has| |#1| (-558)))) (-1594 (((-3 $ "failed")) 43 (|has| |#1| (-558)))) (-3735 (((-689 |#1|) (-1264 $)) 70)) (-3121 ((|#1| $) 79)) (-3150 (((-689 |#1|) $ (-1264 $)) 81)) (-4029 (((-3 $ "failed") $) 50 (|has| |#1| (-558)))) (-2400 (($ $ (-921)) 31)) (-2811 ((|#1| $) 77)) (-2536 (((-1171 |#1|) $) 47 (|has| |#1| (-558)))) (-1682 ((|#1| (-1264 $)) 72)) (-4181 (((-1171 |#1|) $) 68)) (-2011 (((-112)) 62)) (-2613 (($ (-1264 |#1|) (-1264 $)) 74)) (-2928 (((-3 $ "failed") $) 52 (|has| |#1| (-558)))) (-4157 (((-921)) 85)) (-1732 (((-112)) 59)) (-2120 (($ $ (-921)) 38)) (-1993 (((-112)) 55)) (-3202 (((-112)) 53)) (-1321 (((-112)) 57)) (-3571 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) 46 (|has| |#1| (-558)))) (-4128 (((-3 $ "failed")) 44 (|has| |#1| (-558)))) (-4105 (((-689 |#1|) (-1264 $)) 71)) (-1863 ((|#1| $) 80)) (-2377 (((-689 |#1|) $ (-1264 $)) 82)) (-1787 (((-3 $ "failed") $) 51 (|has| |#1| (-558)))) (-3231 (($ $ (-921)) 32)) (-2630 ((|#1| $) 78)) (-2041 (((-1171 |#1|) $) 48 (|has| |#1| (-558)))) (-1964 ((|#1| (-1264 $)) 73)) (-2584 (((-1171 |#1|) $) 69)) (-3561 (((-112)) 63)) (-2402 (((-1157) $) 10)) (-3002 (((-112)) 54)) (-4211 (((-112)) 56)) (-2355 (((-112)) 58)) (-4056 (((-1119) $) 11)) (-2283 (((-112)) 61)) (-2543 (((-1264 |#1|) $ (-1264 $)) 76) (((-689 |#1|) (-1264 $) (-1264 $)) 75)) (-2136 (((-644 (-952 |#1|)) (-1264 $)) 84)) (-1783 (($ $ $) 28)) (-3431 (((-112)) 67)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2474 (((-644 (-1264 |#1|))) 49 (|has| |#1| (-558)))) (-3428 (($ $ $ $) 29)) (-2359 (((-112)) 65)) (-3035 (($ $ $) 27)) (-2602 (((-112)) 66)) (-2891 (((-112)) 64)) (-4142 (((-112)) 60)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 33)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-369 |#1|) (-140) (-172)) (T -369))
-((-1378 (*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1264 *1)) (-4 *1 (-369 *3)))) (-1821 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-921)))) (-2232 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-644 (-952 *4))))) (-3950 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-1264 (-689 *4))))) (-4333 (*1 *2 *1 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-1481 (*1 *2 *1 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-2516 (*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-2080 (*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-3595 (*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-2798 (*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-2770 (*1 *2 *1 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-1264 *4)))) (-2770 (*1 *2 *3 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-1547 (*1 *1 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-1264 *1)) (-4 *4 (-172)) (-4 *1 (-369 *4)))) (-2835 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-3435 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-1297 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-2327 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-1846 (*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-1171 *3)))) (-3815 (*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-1171 *3)))) (-2110 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-1546 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-4018 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2498 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3880 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2982 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3017 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2686 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2631 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-4331 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2592 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-1642 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-1605 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2817 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3199 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-1579 (*1 *1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558)))) (-2318 (*1 *1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558)))) (-3152 (*1 *1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558)))) (-3578 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558)) (-5 *2 (-644 (-1264 *3))))) (-3984 (*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558)) (-5 *2 (-1171 *3)))) (-3584 (*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558)) (-5 *2 (-1171 *3)))) (-3881 (*1 *2) (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172)) (-5 *2 (-2 (|:| |particular| *1) (|:| -1990 (-644 *1)))) (-4 *1 (-369 *3)))) (-1503 (*1 *2) (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172)) (-5 *2 (-2 (|:| |particular| *1) (|:| -1990 (-644 *1)))) (-4 *1 (-369 *3)))) (-2060 (*1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172)))) (-2301 (*1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172)))) (-3803 (*1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172)))))
-(-13 (-744 |t#1|) (-10 -8 (-15 -1378 ((-1264 $))) (-15 -1821 ((-921))) (-15 -2232 ((-644 (-952 |t#1|)) (-1264 $))) (-15 -3950 ((-1264 (-689 |t#1|)) (-1264 $))) (-15 -4333 ((-689 |t#1|) $ (-1264 $))) (-15 -1481 ((-689 |t#1|) $ (-1264 $))) (-15 -2516 (|t#1| $)) (-15 -2080 (|t#1| $)) (-15 -3595 (|t#1| $)) (-15 -2798 (|t#1| $)) (-15 -2770 ((-1264 |t#1|) $ (-1264 $))) (-15 -2770 ((-689 |t#1|) (-1264 $) (-1264 $))) (-15 -1547 ($ (-1264 |t#1|) (-1264 $))) (-15 -2835 (|t#1| (-1264 $))) (-15 -3435 (|t#1| (-1264 $))) (-15 -1297 ((-689 |t#1|) (-1264 $))) (-15 -2327 ((-689 |t#1|) (-1264 $))) (-15 -1846 ((-1171 |t#1|) $)) (-15 -3815 ((-1171 |t#1|) $)) (-15 -2110 ((-112))) (-15 -1546 ((-112))) (-15 -4018 ((-112))) (-15 -2498 ((-112))) (-15 -3880 ((-112))) (-15 -2982 ((-112))) (-15 -3017 ((-112))) (-15 -2686 ((-112))) (-15 -2631 ((-112))) (-15 -4331 ((-112))) (-15 -2592 ((-112))) (-15 -1642 ((-112))) (-15 -1605 ((-112))) (-15 -2817 ((-112))) (-15 -3199 ((-112))) (IF (|has| |t#1| (-558)) (PROGN (-15 -1579 ((-3 $ "failed") $)) (-15 -2318 ((-3 $ "failed") $)) (-15 -3152 ((-3 $ "failed") $)) (-15 -3578 ((-644 (-1264 |t#1|)))) (-15 -3984 ((-1171 |t#1|) $)) (-15 -3584 ((-1171 |t#1|) $)) (-15 -3881 ((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed"))) (-15 -1503 ((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed"))) (-15 -2060 ((-3 $ "failed"))) (-15 -2301 ((-3 $ "failed"))) (-15 -3803 ((-3 $ "failed"))) (-6 -4414)) |%noBranch|)))
+((-4132 (*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1264 *1)) (-4 *1 (-369 *3)))) (-4157 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-921)))) (-2136 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-644 (-952 *4))))) (-2932 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-1264 (-689 *4))))) (-2377 (*1 *2 *1 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-3150 (*1 *2 *1 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-1863 (*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-3121 (*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-2630 (*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-2811 (*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-2543 (*1 *2 *1 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-1264 *4)))) (-2543 (*1 *2 *3 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-2613 (*1 *1 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-1264 *1)) (-4 *4 (-172)) (-4 *1 (-369 *4)))) (-1964 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-1682 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *2)) (-4 *2 (-172)))) (-4105 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-3735 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-2584 (*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-1171 *3)))) (-4181 (*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-1171 *3)))) (-3431 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2602 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2359 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2891 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3561 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2011 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2283 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-4142 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-1732 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2355 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-1321 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-4211 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-1993 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3002 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-3202 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))) (-2928 (*1 *1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558)))) (-1787 (*1 *1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558)))) (-4029 (*1 *1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558)))) (-2474 (*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558)) (-5 *2 (-644 (-1264 *3))))) (-2041 (*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558)) (-5 *2 (-1171 *3)))) (-2536 (*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558)) (-5 *2 (-1171 *3)))) (-3571 (*1 *2) (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172)) (-5 *2 (-2 (|:| |particular| *1) (|:| -1575 (-644 *1)))) (-4 *1 (-369 *3)))) (-3379 (*1 *2) (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172)) (-5 *2 (-2 (|:| |particular| *1) (|:| -1575 (-644 *1)))) (-4 *1 (-369 *3)))) (-4128 (*1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172)))) (-1594 (*1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172)))) (-4065 (*1 *1) (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172)))))
+(-13 (-744 |t#1|) (-10 -8 (-15 -4132 ((-1264 $))) (-15 -4157 ((-921))) (-15 -2136 ((-644 (-952 |t#1|)) (-1264 $))) (-15 -2932 ((-1264 (-689 |t#1|)) (-1264 $))) (-15 -2377 ((-689 |t#1|) $ (-1264 $))) (-15 -3150 ((-689 |t#1|) $ (-1264 $))) (-15 -1863 (|t#1| $)) (-15 -3121 (|t#1| $)) (-15 -2630 (|t#1| $)) (-15 -2811 (|t#1| $)) (-15 -2543 ((-1264 |t#1|) $ (-1264 $))) (-15 -2543 ((-689 |t#1|) (-1264 $) (-1264 $))) (-15 -2613 ($ (-1264 |t#1|) (-1264 $))) (-15 -1964 (|t#1| (-1264 $))) (-15 -1682 (|t#1| (-1264 $))) (-15 -4105 ((-689 |t#1|) (-1264 $))) (-15 -3735 ((-689 |t#1|) (-1264 $))) (-15 -2584 ((-1171 |t#1|) $)) (-15 -4181 ((-1171 |t#1|) $)) (-15 -3431 ((-112))) (-15 -2602 ((-112))) (-15 -2359 ((-112))) (-15 -2891 ((-112))) (-15 -3561 ((-112))) (-15 -2011 ((-112))) (-15 -2283 ((-112))) (-15 -4142 ((-112))) (-15 -1732 ((-112))) (-15 -2355 ((-112))) (-15 -1321 ((-112))) (-15 -4211 ((-112))) (-15 -1993 ((-112))) (-15 -3002 ((-112))) (-15 -3202 ((-112))) (IF (|has| |t#1| (-558)) (PROGN (-15 -2928 ((-3 $ "failed") $)) (-15 -1787 ((-3 $ "failed") $)) (-15 -4029 ((-3 $ "failed") $)) (-15 -2474 ((-644 (-1264 |t#1|)))) (-15 -2041 ((-1171 |t#1|) $)) (-15 -2536 ((-1171 |t#1|) $)) (-15 -3571 ((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed"))) (-15 -3379 ((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed"))) (-15 -4128 ((-3 $ "failed"))) (-15 -1594 ((-3 $ "failed"))) (-15 -4065 ((-3 $ "failed"))) (-6 -4411)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-648 |#1|) . T) ((-640 |#1|) . T) ((-717 |#1|) . T) ((-720) . T) ((-744 |#1|) . T) ((-761) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 7)) (-4025 (((-771)) 17)) (-3335 (($) 14)) (-3712 (((-921) $) 15)) (-2878 (((-1157) $) 10)) (-2168 (($ (-921)) 16)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-3009 (((-112) $ $) 7)) (-4070 (((-771)) 17)) (-1618 (($) 14)) (-1299 (((-921) $) 15)) (-2402 (((-1157) $) 10)) (-2208 (($ (-921)) 16)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-370) (-140)) (T -370))
-((-4025 (*1 *2) (-12 (-4 *1 (-370)) (-5 *2 (-771)))) (-2168 (*1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-370)))) (-3712 (*1 *2 *1) (-12 (-4 *1 (-370)) (-5 *2 (-921)))) (-3335 (*1 *1) (-4 *1 (-370))))
-(-13 (-1099) (-10 -8 (-15 -4025 ((-771))) (-15 -2168 ($ (-921))) (-15 -3712 ((-921) $)) (-15 -3335 ($))))
+((-4070 (*1 *2) (-12 (-4 *1 (-370)) (-5 *2 (-771)))) (-2208 (*1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-370)))) (-1299 (*1 *2 *1) (-12 (-4 *1 (-370)) (-5 *2 (-921)))) (-1618 (*1 *1) (-4 *1 (-370))))
+(-13 (-1099) (-10 -8 (-15 -4070 ((-771))) (-15 -2208 ($ (-921))) (-15 -1299 ((-921) $)) (-15 -1618 ($))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-3953 (((-689 |#2|) (-1264 $)) 47)) (-1547 (($ (-1264 |#2|) (-1264 $)) 41)) (-1929 (((-689 |#2|) $ (-1264 $)) 49)) (-2408 ((|#2| (-1264 $)) 13)) (-2770 (((-1264 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) (-1264 $) (-1264 $)) 27)))
-(((-371 |#1| |#2| |#3|) (-10 -8 (-15 -3953 ((-689 |#2|) (-1264 |#1|))) (-15 -2408 (|#2| (-1264 |#1|))) (-15 -1547 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -1929 ((-689 |#2|) |#1| (-1264 |#1|)))) (-372 |#2| |#3|) (-172) (-1240 |#2|)) (T -371))
+((-2965 (((-689 |#2|) (-1264 $)) 47)) (-2613 (($ (-1264 |#2|) (-1264 $)) 41)) (-2205 (((-689 |#2|) $ (-1264 $)) 49)) (-3309 ((|#2| (-1264 $)) 13)) (-2543 (((-1264 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) (-1264 $) (-1264 $)) 27)))
+(((-371 |#1| |#2| |#3|) (-10 -8 (-15 -2965 ((-689 |#2|) (-1264 |#1|))) (-15 -3309 (|#2| (-1264 |#1|))) (-15 -2613 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -2205 ((-689 |#2|) |#1| (-1264 |#1|)))) (-372 |#2| |#3|) (-172) (-1240 |#2|)) (T -371))
NIL
-(-10 -8 (-15 -3953 ((-689 |#2|) (-1264 |#1|))) (-15 -2408 (|#2| (-1264 |#1|))) (-15 -1547 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -1929 ((-689 |#2|) |#1| (-1264 |#1|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-3953 (((-689 |#1|) (-1264 $)) 53)) (-3817 ((|#1| $) 59)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1547 (($ (-1264 |#1|) (-1264 $)) 55)) (-1929 (((-689 |#1|) $ (-1264 $)) 60)) (-1579 (((-3 $ "failed") $) 37)) (-1821 (((-921)) 61)) (-2741 (((-112) $) 35)) (-1559 ((|#1| $) 58)) (-3929 ((|#2| $) 51 (|has| |#1| (-365)))) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2408 ((|#1| (-1264 $)) 54)) (-2770 (((-1264 |#1|) $ (-1264 $)) 57) (((-689 |#1|) (-1264 $) (-1264 $)) 56)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44)) (-3842 (((-3 $ "failed") $) 50 (|has| |#1| (-145)))) (-1963 ((|#2| $) 52)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+(-10 -8 (-15 -2965 ((-689 |#2|) (-1264 |#1|))) (-15 -3309 (|#2| (-1264 |#1|))) (-15 -2613 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -2205 ((-689 |#2|) |#1| (-1264 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2965 (((-689 |#1|) (-1264 $)) 53)) (-3834 ((|#1| $) 59)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2613 (($ (-1264 |#1|) (-1264 $)) 55)) (-2205 (((-689 |#1|) $ (-1264 $)) 60)) (-2928 (((-3 $ "failed") $) 37)) (-4157 (((-921)) 61)) (-3466 (((-112) $) 35)) (-2719 ((|#1| $) 58)) (-2750 ((|#2| $) 51 (|has| |#1| (-365)))) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3309 ((|#1| (-1264 $)) 54)) (-2543 (((-1264 |#1|) $ (-1264 $)) 57) (((-689 |#1|) (-1264 $) (-1264 $)) 56)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44)) (-3226 (((-3 $ "failed") $) 50 (|has| |#1| (-145)))) (-4370 ((|#2| $) 52)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
(((-372 |#1| |#2|) (-140) (-172) (-1240 |t#1|)) (T -372))
-((-1821 (*1 *2) (-12 (-4 *1 (-372 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-921)))) (-1929 (*1 *2 *1 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4)))) (-3817 (*1 *2 *1) (-12 (-4 *1 (-372 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172)))) (-1559 (*1 *2 *1) (-12 (-4 *1 (-372 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172)))) (-2770 (*1 *2 *1 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-1264 *4)))) (-2770 (*1 *2 *3 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4)))) (-1547 (*1 *1 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-1264 *1)) (-4 *4 (-172)) (-4 *1 (-372 *4 *5)) (-4 *5 (-1240 *4)))) (-2408 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *2 *4)) (-4 *4 (-1240 *2)) (-4 *2 (-172)))) (-3953 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4)))) (-1963 (*1 *2 *1) (-12 (-4 *1 (-372 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3)))) (-3929 (*1 *2 *1) (-12 (-4 *1 (-372 *3 *2)) (-4 *3 (-172)) (-4 *3 (-365)) (-4 *2 (-1240 *3)))))
-(-13 (-38 |t#1|) (-10 -8 (-15 -1821 ((-921))) (-15 -1929 ((-689 |t#1|) $ (-1264 $))) (-15 -3817 (|t#1| $)) (-15 -1559 (|t#1| $)) (-15 -2770 ((-1264 |t#1|) $ (-1264 $))) (-15 -2770 ((-689 |t#1|) (-1264 $) (-1264 $))) (-15 -1547 ($ (-1264 |t#1|) (-1264 $))) (-15 -2408 (|t#1| (-1264 $))) (-15 -3953 ((-689 |t#1|) (-1264 $))) (-15 -1963 (|t#2| $)) (IF (|has| |t#1| (-365)) (-15 -3929 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|)))
+((-4157 (*1 *2) (-12 (-4 *1 (-372 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-921)))) (-2205 (*1 *2 *1 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4)))) (-3834 (*1 *2 *1) (-12 (-4 *1 (-372 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172)))) (-2719 (*1 *2 *1) (-12 (-4 *1 (-372 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172)))) (-2543 (*1 *2 *1 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-1264 *4)))) (-2543 (*1 *2 *3 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4)))) (-2613 (*1 *1 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-1264 *1)) (-4 *4 (-172)) (-4 *1 (-372 *4 *5)) (-4 *5 (-1240 *4)))) (-3309 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *2 *4)) (-4 *4 (-1240 *2)) (-4 *2 (-172)))) (-2965 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4)))) (-4370 (*1 *2 *1) (-12 (-4 *1 (-372 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3)))) (-2750 (*1 *2 *1) (-12 (-4 *1 (-372 *3 *2)) (-4 *3 (-172)) (-4 *3 (-365)) (-4 *2 (-1240 *3)))))
+(-13 (-38 |t#1|) (-10 -8 (-15 -4157 ((-921))) (-15 -2205 ((-689 |t#1|) $ (-1264 $))) (-15 -3834 (|t#1| $)) (-15 -2719 (|t#1| $)) (-15 -2543 ((-1264 |t#1|) $ (-1264 $))) (-15 -2543 ((-689 |t#1|) (-1264 $) (-1264 $))) (-15 -2613 ($ (-1264 |t#1|) (-1264 $))) (-15 -3309 (|t#1| (-1264 $))) (-15 -2965 ((-689 |t#1|) (-1264 $))) (-15 -4370 (|t#2| $)) (IF (|has| |t#1| (-365)) (-15 -2750 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 |#1|) . T) ((-717 |#1|) . T) ((-726) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2403 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 25)) (-4362 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 17)) (-3077 ((|#4| (-1 |#3| |#1|) |#2|) 23)))
-(((-373 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3077 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -4362 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2403 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1214) (-375 |#1|) (-1214) (-375 |#3|)) (T -373))
-((-2403 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1214)) (-4 *5 (-1214)) (-4 *2 (-375 *5)) (-5 *1 (-373 *6 *4 *5 *2)) (-4 *4 (-375 *6)))) (-4362 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-373 *5 *4 *2 *6)) (-4 *4 (-375 *5)) (-4 *6 (-375 *2)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-4 *2 (-375 *6)) (-5 *1 (-373 *5 *4 *6 *2)) (-4 *4 (-375 *5)))))
-(-10 -7 (-15 -3077 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -4362 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2403 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-2383 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-3426 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-3290 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-3852 (($ $) 25)) (-3968 (((-566) (-1 (-112) |#2|) $) NIL) (((-566) |#2| $) 11) (((-566) |#2| $ (-566)) NIL)) (-3132 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
-(((-374 |#1| |#2|) (-10 -8 (-15 -3426 (|#1| |#1|)) (-15 -3426 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2383 ((-112) |#1|)) (-15 -3290 (|#1| |#1|)) (-15 -3132 (|#1| |#1| |#1|)) (-15 -3968 ((-566) |#2| |#1| (-566))) (-15 -3968 ((-566) |#2| |#1|)) (-15 -3968 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -2383 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3290 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3852 (|#1| |#1|)) (-15 -3132 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-375 |#2|) (-1214)) (T -374))
-NIL
-(-10 -8 (-15 -3426 (|#1| |#1|)) (-15 -3426 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2383 ((-112) |#1|)) (-15 -3290 (|#1| |#1|)) (-15 -3132 (|#1| |#1| |#1|)) (-15 -3968 ((-566) |#2| |#1| (-566))) (-15 -3968 ((-566) |#2| |#1|)) (-15 -3968 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -2383 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3290 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3852 (|#1| |#1|)) (-15 -3132 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1537 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4418))) (($ $) 89 (-12 (|has| |#1| (-850)) (|has| $ (-6 -4418))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) 8)) (-3874 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-2736 (($ $) 91 (|has| $ (-6 -4418)))) (-3852 (($ $) 101)) (-4093 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 52)) (-3968 (((-566) (-1 (-112) |#1|) $) 98) (((-566) |#1| $) 97 (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) 96 (|has| |#1| (-1099)))) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-4257 (($ (-771) |#1|) 70)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 44 (|has| (-566) (-850)))) (-1439 (($ $ $) 88 (|has| |#1| (-850)))) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 45 (|has| (-566) (-850)))) (-3059 (($ $ $) 87 (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-1922 (((-644 (-566)) $) 47)) (-2040 (((-112) (-566) $) 48)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4062 ((|#1| $) 43 (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1720 (($ $ |#1|) 42 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-2201 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3245 (($ $ $ (-566)) 92 (|has| $ (-6 -4418)))) (-3895 (($ $) 13)) (-3134 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 71)) (-3704 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) 85 (|has| |#1| (-850)))) (-2974 (((-112) $ $) 84 (|has| |#1| (-850)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2987 (((-112) $ $) 86 (|has| |#1| (-850)))) (-2962 (((-112) $ $) 83 (|has| |#1| (-850)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3264 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 25)) (-1580 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 17)) (-3152 ((|#4| (-1 |#3| |#1|) |#2|) 23)))
+(((-373 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1580 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3264 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1214) (-375 |#1|) (-1214) (-375 |#3|)) (T -373))
+((-3264 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1214)) (-4 *5 (-1214)) (-4 *2 (-375 *5)) (-5 *1 (-373 *6 *4 *5 *2)) (-4 *4 (-375 *6)))) (-1580 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-373 *5 *4 *2 *6)) (-4 *4 (-375 *5)) (-4 *6 (-375 *2)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-4 *2 (-375 *6)) (-5 *1 (-373 *5 *4 *6 *2)) (-4 *4 (-375 *5)))))
+(-10 -7 (-15 -3152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1580 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3264 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-3070 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-1570 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-1568 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-3507 (($ $) 25)) (-4015 (((-566) (-1 (-112) |#2|) $) NIL) (((-566) |#2| $) 11) (((-566) |#2| $ (-566)) NIL)) (-3891 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
+(((-374 |#1| |#2|) (-10 -8 (-15 -1570 (|#1| |#1|)) (-15 -1570 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3070 ((-112) |#1|)) (-15 -1568 (|#1| |#1|)) (-15 -3891 (|#1| |#1| |#1|)) (-15 -4015 ((-566) |#2| |#1| (-566))) (-15 -4015 ((-566) |#2| |#1|)) (-15 -4015 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -3070 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1568 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3507 (|#1| |#1|)) (-15 -3891 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-375 |#2|) (-1214)) (T -374))
+NIL
+(-10 -8 (-15 -1570 (|#1| |#1|)) (-15 -1570 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3070 ((-112) |#1|)) (-15 -1568 (|#1| |#1|)) (-15 -3891 (|#1| |#1| |#1|)) (-15 -4015 ((-566) |#2| |#1| (-566))) (-15 -4015 ((-566) |#2| |#1|)) (-15 -4015 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -3070 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -1568 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3507 (|#1| |#1|)) (-15 -3891 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2518 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4415))) (($ $) 89 (-12 (|has| |#1| (-850)) (|has| $ (-6 -4415))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) 8)) (-3916 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-3416 (($ $) 91 (|has| $ (-6 -4415)))) (-3507 (($ $) 101)) (-4133 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 52)) (-4015 (((-566) (-1 (-112) |#1|) $) 98) (((-566) |#1| $) 97 (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) 96 (|has| |#1| (-1099)))) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-4278 (($ (-771) |#1|) 70)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 44 (|has| (-566) (-850)))) (-1945 (($ $ $) 88 (|has| |#1| (-850)))) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 45 (|has| (-566) (-850)))) (-2709 (($ $ $) 87 (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-2140 (((-644 (-566)) $) 47)) (-3935 (((-112) (-566) $) 48)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4101 ((|#1| $) 43 (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3750 (($ $ |#1|) 42 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-2215 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3610 (($ $ $ (-566)) 92 (|has| $ (-6 -4415)))) (-3940 (($ $) 13)) (-3204 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 71)) (-3727 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) 85 (|has| |#1| (-850)))) (-2984 (((-112) $ $) 84 (|has| |#1| (-850)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2999 (((-112) $ $) 86 (|has| |#1| (-850)))) (-2972 (((-112) $ $) 83 (|has| |#1| (-850)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-375 |#1|) (-140) (-1214)) (T -375))
-((-3132 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-375 *3)) (-4 *3 (-1214)))) (-3852 (*1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214)))) (-3290 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-375 *3)) (-4 *3 (-1214)))) (-2383 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-375 *4)) (-4 *4 (-1214)) (-5 *2 (-112)))) (-3968 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-375 *4)) (-4 *4 (-1214)) (-5 *2 (-566)))) (-3968 (*1 *2 *3 *1) (-12 (-4 *1 (-375 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-566)))) (-3968 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-375 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)))) (-3132 (*1 *1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214)) (-4 *2 (-850)))) (-3290 (*1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214)) (-4 *2 (-850)))) (-2383 (*1 *2 *1) (-12 (-4 *1 (-375 *3)) (-4 *3 (-1214)) (-4 *3 (-850)) (-5 *2 (-112)))) (-3245 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-566)) (|has| *1 (-6 -4418)) (-4 *1 (-375 *3)) (-4 *3 (-1214)))) (-2736 (*1 *1 *1) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-375 *2)) (-4 *2 (-1214)))) (-3426 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4418)) (-4 *1 (-375 *3)) (-4 *3 (-1214)))) (-3426 (*1 *1 *1) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-375 *2)) (-4 *2 (-1214)) (-4 *2 (-850)))))
-(-13 (-651 |t#1|) (-10 -8 (-6 -4417) (-15 -3132 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3852 ($ $)) (-15 -3290 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -2383 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -3968 ((-566) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1099)) (PROGN (-15 -3968 ((-566) |t#1| $)) (-15 -3968 ((-566) |t#1| $ (-566)))) |%noBranch|) (IF (|has| |t#1| (-850)) (PROGN (-6 (-850)) (-15 -3132 ($ $ $)) (-15 -3290 ($ $)) (-15 -2383 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4418)) (PROGN (-15 -3245 ($ $ $ (-566))) (-15 -2736 ($ $)) (-15 -3426 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-850)) (-15 -3426 ($ $)) |%noBranch|)) |%noBranch|)))
+((-3891 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-375 *3)) (-4 *3 (-1214)))) (-3507 (*1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214)))) (-1568 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-375 *3)) (-4 *3 (-1214)))) (-3070 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-375 *4)) (-4 *4 (-1214)) (-5 *2 (-112)))) (-4015 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-375 *4)) (-4 *4 (-1214)) (-5 *2 (-566)))) (-4015 (*1 *2 *3 *1) (-12 (-4 *1 (-375 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-566)))) (-4015 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-375 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)))) (-3891 (*1 *1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214)) (-4 *2 (-850)))) (-1568 (*1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214)) (-4 *2 (-850)))) (-3070 (*1 *2 *1) (-12 (-4 *1 (-375 *3)) (-4 *3 (-1214)) (-4 *3 (-850)) (-5 *2 (-112)))) (-3610 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-566)) (|has| *1 (-6 -4415)) (-4 *1 (-375 *3)) (-4 *3 (-1214)))) (-3416 (*1 *1 *1) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-375 *2)) (-4 *2 (-1214)))) (-1570 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4415)) (-4 *1 (-375 *3)) (-4 *3 (-1214)))) (-1570 (*1 *1 *1) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-375 *2)) (-4 *2 (-1214)) (-4 *2 (-850)))))
+(-13 (-651 |t#1|) (-10 -8 (-6 -4414) (-15 -3891 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3507 ($ $)) (-15 -1568 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -3070 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -4015 ((-566) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1099)) (PROGN (-15 -4015 ((-566) |t#1| $)) (-15 -4015 ((-566) |t#1| $ (-566)))) |%noBranch|) (IF (|has| |t#1| (-850)) (PROGN (-6 (-850)) (-15 -3891 ($ $ $)) (-15 -1568 ($ $)) (-15 -3070 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4415)) (PROGN (-15 -3610 ($ $ $ (-566))) (-15 -3416 ($ $)) (-15 -1570 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-850)) (-15 -1570 ($ $)) |%noBranch|)) |%noBranch|)))
(((-34) . T) ((-102) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850))) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-287 #0=(-566) |#1|) . T) ((-289 #0# |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-604 #0# |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-651 |#1|) . T) ((-850) |has| |#1| (-850)) ((-1099) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850))) ((-1214) . T))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-1719 (((-644 |#1|) $) 37)) (-1844 (($ $ (-771)) 38)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2847 (((-1288 |#1| |#2|) (-1288 |#1| |#2|) $) 41)) (-1867 (($ $) 39)) (-1388 (((-1288 |#1| |#2|) (-1288 |#1| |#2|) $) 42)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2070 (($ $ |#1| $) 36) (($ $ (-644 |#1|) (-644 $)) 35)) (-3992 (((-771) $) 43)) (-2523 (($ $ $) 34)) (-2512 (((-862) $) 12) (($ |#1|) 46) (((-1279 |#1| |#2|) $) 45) (((-1288 |#1| |#2|) $) 44)) (-3157 ((|#2| (-1288 |#1| |#2|) $) 47)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-1804 (($ (-672 |#1|)) 40)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#2|) 33 (|has| |#2| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#2| $) 27) (($ $ |#2|) 31)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-1824 (((-644 |#1|) $) 37)) (-2564 (($ $ (-771)) 38)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2087 (((-1288 |#1| |#2|) (-1288 |#1| |#2|) $) 41)) (-2781 (($ $) 39)) (-1987 (((-1288 |#1| |#2|) (-1288 |#1| |#2|) $) 42)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2095 (($ $ |#1| $) 36) (($ $ (-644 |#1|) (-644 $)) 35)) (-2108 (((-771) $) 43)) (-3791 (($ $ $) 34)) (-3780 (((-862) $) 12) (($ |#1|) 46) (((-1279 |#1| |#2|) $) 45) (((-1288 |#1| |#2|) $) 44)) (-3223 ((|#2| (-1288 |#1| |#2|) $) 47)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-3384 (($ (-672 |#1|)) 40)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#2|) 33 (|has| |#2| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#2| $) 27) (($ $ |#2|) 31)))
(((-376 |#1| |#2|) (-140) (-850) (-172)) (T -376))
-((-3157 (*1 *2 *3 *1) (-12 (-5 *3 (-1288 *4 *2)) (-4 *1 (-376 *4 *2)) (-4 *4 (-850)) (-4 *2 (-172)))) (-2512 (*1 *1 *2) (-12 (-4 *1 (-376 *2 *3)) (-4 *2 (-850)) (-4 *3 (-172)))) (-2512 (*1 *2 *1) (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *2 (-1279 *3 *4)))) (-2512 (*1 *2 *1) (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *2 (-1288 *3 *4)))) (-3992 (*1 *2 *1) (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *2 (-771)))) (-1388 (*1 *2 *2 *1) (-12 (-5 *2 (-1288 *3 *4)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-2847 (*1 *2 *2 *1) (-12 (-5 *2 (-1288 *3 *4)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-1804 (*1 *1 *2) (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-4 *1 (-376 *3 *4)) (-4 *4 (-172)))) (-1867 (*1 *1 *1) (-12 (-4 *1 (-376 *2 *3)) (-4 *2 (-850)) (-4 *3 (-172)))) (-1844 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-1719 (*1 *2 *1) (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *2 (-644 *3)))) (-2070 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-376 *2 *3)) (-4 *2 (-850)) (-4 *3 (-172)))) (-2070 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *4)) (-5 *3 (-644 *1)) (-4 *1 (-376 *4 *5)) (-4 *4 (-850)) (-4 *5 (-172)))))
-(-13 (-634 |t#2|) (-10 -8 (-15 -3157 (|t#2| (-1288 |t#1| |t#2|) $)) (-15 -2512 ($ |t#1|)) (-15 -2512 ((-1279 |t#1| |t#2|) $)) (-15 -2512 ((-1288 |t#1| |t#2|) $)) (-15 -3992 ((-771) $)) (-15 -1388 ((-1288 |t#1| |t#2|) (-1288 |t#1| |t#2|) $)) (-15 -2847 ((-1288 |t#1| |t#2|) (-1288 |t#1| |t#2|) $)) (-15 -1804 ($ (-672 |t#1|))) (-15 -1867 ($ $)) (-15 -1844 ($ $ (-771))) (-15 -1719 ((-644 |t#1|) $)) (-15 -2070 ($ $ |t#1| $)) (-15 -2070 ($ $ (-644 |t#1|) (-644 $)))))
+((-3223 (*1 *2 *3 *1) (-12 (-5 *3 (-1288 *4 *2)) (-4 *1 (-376 *4 *2)) (-4 *4 (-850)) (-4 *2 (-172)))) (-3780 (*1 *1 *2) (-12 (-4 *1 (-376 *2 *3)) (-4 *2 (-850)) (-4 *3 (-172)))) (-3780 (*1 *2 *1) (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *2 (-1279 *3 *4)))) (-3780 (*1 *2 *1) (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *2 (-1288 *3 *4)))) (-2108 (*1 *2 *1) (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *2 (-771)))) (-1987 (*1 *2 *2 *1) (-12 (-5 *2 (-1288 *3 *4)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-2087 (*1 *2 *2 *1) (-12 (-5 *2 (-1288 *3 *4)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-3384 (*1 *1 *2) (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-4 *1 (-376 *3 *4)) (-4 *4 (-172)))) (-2781 (*1 *1 *1) (-12 (-4 *1 (-376 *2 *3)) (-4 *2 (-850)) (-4 *3 (-172)))) (-2564 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-1824 (*1 *2 *1) (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *2 (-644 *3)))) (-2095 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-376 *2 *3)) (-4 *2 (-850)) (-4 *3 (-172)))) (-2095 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *4)) (-5 *3 (-644 *1)) (-4 *1 (-376 *4 *5)) (-4 *4 (-850)) (-4 *5 (-172)))))
+(-13 (-634 |t#2|) (-10 -8 (-15 -3223 (|t#2| (-1288 |t#1| |t#2|) $)) (-15 -3780 ($ |t#1|)) (-15 -3780 ((-1279 |t#1| |t#2|) $)) (-15 -3780 ((-1288 |t#1| |t#2|) $)) (-15 -2108 ((-771) $)) (-15 -1987 ((-1288 |t#1| |t#2|) (-1288 |t#1| |t#2|) $)) (-15 -2087 ((-1288 |t#1| |t#2|) (-1288 |t#1| |t#2|) $)) (-15 -3384 ($ (-672 |t#1|))) (-15 -2781 ($ $)) (-15 -2564 ($ $ (-771))) (-15 -1824 ((-644 |t#1|) $)) (-15 -2095 ($ $ |t#1| $)) (-15 -2095 ($ $ (-644 |t#1|) (-644 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#2| |#2|) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#2|) . T) ((-648 |#2|) . T) ((-634 |#2|) . T) ((-640 |#2|) . T) ((-717 |#2|) . T) ((-1051 |#2|) . T) ((-1056 |#2|) . T) ((-1099) . T))
-((-1302 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 44)) (-2883 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-1468 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 35)))
-(((-377 |#1| |#2|) (-10 -7 (-15 -2883 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1468 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1302 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1214) (-13 (-375 |#1|) (-10 -7 (-6 -4418)))) (T -377))
-((-1302 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2)) (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4418)))))) (-1468 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2)) (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4418)))))) (-2883 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2)) (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4418)))))))
-(-10 -7 (-15 -2883 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1468 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1302 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
-((-1628 (((-689 |#2|) (-689 $)) NIL) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 22) (((-689 (-566)) (-689 $)) 14)))
-(((-378 |#1| |#2|) (-10 -8 (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-689 |#2|) (-689 |#1|)))) (-379 |#2|) (-1049)) (T -378))
-NIL
-(-10 -8 (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-689 |#2|) (-689 |#1|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1628 (((-689 |#1|) (-689 $)) 40) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 39) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 47 (|has| |#1| (-639 (-566)))) (((-689 (-566)) (-689 $)) 46 (|has| |#1| (-639 (-566))))) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-2319 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 44)) (-2459 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-3021 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 35)))
+(((-377 |#1| |#2|) (-10 -7 (-15 -2459 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3021 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -2319 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1214) (-13 (-375 |#1|) (-10 -7 (-6 -4415)))) (T -377))
+((-2319 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2)) (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4415)))))) (-3021 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2)) (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4415)))))) (-2459 (*1 *2 *3 *2) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2)) (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4415)))))))
+(-10 -7 (-15 -2459 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3021 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -2319 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
+((-2210 (((-689 |#2|) (-689 $)) NIL) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 22) (((-689 (-566)) (-689 $)) 14)))
+(((-378 |#1| |#2|) (-10 -8 (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-689 |#2|) (-689 |#1|)))) (-379 |#2|) (-1049)) (T -378))
+NIL
+(-10 -8 (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-689 |#2|) (-689 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2210 (((-689 |#1|) (-689 $)) 40) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 39) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 47 (|has| |#1| (-639 (-566)))) (((-689 (-566)) (-689 $)) 46 (|has| |#1| (-639 (-566))))) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-379 |#1|) (-140) (-1049)) (T -379))
NIL
(-13 (-639 |t#1|) (-10 -7 (IF (|has| |t#1| (-639 (-566))) (-6 (-639 (-566))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-639 (-566)) |has| |#1| (-639 (-566))) ((-639 |#1|) . T) ((-726) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-1430 (((-644 (-295 (-952 (-169 |#1|)))) (-295 (-409 (-952 (-169 (-566))))) |#1|) 51) (((-644 (-295 (-952 (-169 |#1|)))) (-409 (-952 (-169 (-566)))) |#1|) 50) (((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-295 (-409 (-952 (-169 (-566)))))) |#1|) 47) (((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-409 (-952 (-169 (-566))))) |#1|) 41)) (-4137 (((-644 (-644 (-169 |#1|))) (-644 (-409 (-952 (-169 (-566))))) (-644 (-1175)) |#1|) 30) (((-644 (-169 |#1|)) (-409 (-952 (-169 (-566)))) |#1|) 18)))
-(((-380 |#1|) (-10 -7 (-15 -1430 ((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-409 (-952 (-169 (-566))))) |#1|)) (-15 -1430 ((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-295 (-409 (-952 (-169 (-566)))))) |#1|)) (-15 -1430 ((-644 (-295 (-952 (-169 |#1|)))) (-409 (-952 (-169 (-566)))) |#1|)) (-15 -1430 ((-644 (-295 (-952 (-169 |#1|)))) (-295 (-409 (-952 (-169 (-566))))) |#1|)) (-15 -4137 ((-644 (-169 |#1|)) (-409 (-952 (-169 (-566)))) |#1|)) (-15 -4137 ((-644 (-644 (-169 |#1|))) (-644 (-409 (-952 (-169 (-566))))) (-644 (-1175)) |#1|))) (-13 (-365) (-848))) (T -380))
-((-4137 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-409 (-952 (-169 (-566)))))) (-5 *4 (-644 (-1175))) (-5 *2 (-644 (-644 (-169 *5)))) (-5 *1 (-380 *5)) (-4 *5 (-13 (-365) (-848))))) (-4137 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 (-169 (-566))))) (-5 *2 (-644 (-169 *4))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848))))) (-1430 (*1 *2 *3 *4) (-12 (-5 *3 (-295 (-409 (-952 (-169 (-566)))))) (-5 *2 (-644 (-295 (-952 (-169 *4))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848))))) (-1430 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 (-169 (-566))))) (-5 *2 (-644 (-295 (-952 (-169 *4))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848))))) (-1430 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-295 (-409 (-952 (-169 (-566))))))) (-5 *2 (-644 (-644 (-295 (-952 (-169 *4)))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848))))) (-1430 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 (-169 (-566)))))) (-5 *2 (-644 (-644 (-295 (-952 (-169 *4)))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848))))))
-(-10 -7 (-15 -1430 ((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-409 (-952 (-169 (-566))))) |#1|)) (-15 -1430 ((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-295 (-409 (-952 (-169 (-566)))))) |#1|)) (-15 -1430 ((-644 (-295 (-952 (-169 |#1|)))) (-409 (-952 (-169 (-566)))) |#1|)) (-15 -1430 ((-644 (-295 (-952 (-169 |#1|)))) (-295 (-409 (-952 (-169 (-566))))) |#1|)) (-15 -4137 ((-644 (-169 |#1|)) (-409 (-952 (-169 (-566)))) |#1|)) (-15 -4137 ((-644 (-644 (-169 |#1|))) (-644 (-409 (-952 (-169 (-566))))) (-644 (-1175)) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 35)) (-2452 (((-566) $) 62)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-1881 (($ $) 144)) (-3235 (($ $) 107)) (-3102 (($ $) 94)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-2402 (($ $) 47)) (-1561 (((-112) $ $) NIL)) (-3215 (($ $) 105)) (-3076 (($ $) 88)) (-2807 (((-566) $) 81)) (-3096 (($ $ (-566)) 76)) (-3259 (($ $) NIL)) (-3123 (($ $) NIL)) (-2342 (($) NIL T CONST)) (-4380 (($ $) 146)) (-2977 (((-3 (-566) "failed") $) 242) (((-3 (-409 (-566)) "failed") $) 238)) (-1756 (((-566) $) 240) (((-409 (-566)) $) 236)) (-2926 (($ $ $) NIL)) (-3518 (((-566) $ $) 133)) (-1579 (((-3 $ "failed") $) 149)) (-2575 (((-409 (-566)) $ (-771)) 243) (((-409 (-566)) $ (-771) (-771)) 235)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-3524 (((-921)) 96) (((-921) (-921)) 129 (|has| $ (-6 -4408)))) (-1684 (((-112) $) 138)) (-3035 (($) 41)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL)) (-4304 (((-1269) (-771)) 201)) (-1569 (((-1269)) 206) (((-1269) (-771)) 207)) (-4162 (((-1269)) 208) (((-1269) (-771)) 209)) (-3707 (((-1269)) 204) (((-1269) (-771)) 205)) (-2716 (((-566) $) 69)) (-2741 (((-112) $) 40)) (-3979 (($ $ (-566)) NIL)) (-3873 (($ $) 51)) (-1559 (($ $) NIL)) (-1578 (((-112) $) 37)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL) (($) NIL (-12 (-2426 (|has| $ (-6 -4400))) (-2426 (|has| $ (-6 -4408)))))) (-3059 (($ $ $) NIL) (($) 130 (-12 (-2426 (|has| $ (-6 -4400))) (-2426 (|has| $ (-6 -4408)))))) (-1728 (((-566) $) 17)) (-3392 (($) 115) (($ $) 121)) (-2346 (($) 120) (($ $) 122)) (-3668 (($ $) 110)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 151)) (-2524 (((-921) (-566)) 46 (|has| $ (-6 -4408)))) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) 60)) (-4317 (($ $) 143)) (-2965 (($ (-566) (-566)) 139) (($ (-566) (-566) (-921)) 140)) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3250 (((-566) $) 19)) (-3041 (($) 123)) (-3613 (($ $) 104)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3159 (((-921)) 131) (((-921) (-921)) 132 (|has| $ (-6 -4408)))) (-2862 (($ $ (-771)) NIL) (($ $) 150)) (-1870 (((-921) (-566)) 50 (|has| $ (-6 -4408)))) (-3267 (($ $) NIL)) (-3133 (($ $) NIL)) (-3248 (($ $) NIL)) (-3112 (($ $) NIL)) (-3223 (($ $) 106)) (-3089 (($ $) 93)) (-3134 (((-381) $) 229) (((-225) $) 230) (((-892 (-381)) $) NIL) (((-1157) $) 212) (((-538) $) 227) (($ (-225)) 234)) (-2512 (((-862) $) 216) (($ (-566)) 239) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-566)) 239) (($ (-409 (-566))) NIL) (((-225) $) 231)) (-3795 (((-771)) NIL T CONST)) (-1604 (($ $) 145)) (-3082 (((-921)) 61) (((-921) (-921)) 83 (|has| $ (-6 -4408)))) (-3122 (((-112) $ $) NIL)) (-3306 (((-921)) 134)) (-3302 (($ $) 113)) (-3172 (($ $) 49) (($ $ $) 59)) (-1634 (((-112) $ $) NIL)) (-3279 (($ $) 111)) (-3146 (($ $) 39)) (-3323 (($ $) NIL)) (-3194 (($ $) NIL)) (-1382 (($ $) NIL)) (-3205 (($ $) NIL)) (-3313 (($ $) NIL)) (-3185 (($ $) NIL)) (-3291 (($ $) 112)) (-3160 (($ $) 52)) (-1346 (($ $) 58)) (-2485 (($) 36 T CONST)) (-2495 (($) 43 T CONST)) (-2178 (((-1157) $) 27) (((-1157) $ (-112)) 29) (((-1269) (-822) $) 30) (((-1269) (-822) $ (-112)) 31)) (-2840 (($ $ (-771)) NIL) (($ $) NIL)) (-2998 (((-112) $ $) 213)) (-2974 (((-112) $ $) 45)) (-2940 (((-112) $ $) 56)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 57)) (-3061 (($ $ $) 48) (($ $ (-566)) 42)) (-3047 (($ $) 38) (($ $ $) 53)) (-3034 (($ $ $) 75)) (** (($ $ (-921)) 86) (($ $ (-771)) NIL) (($ $ (-566)) 116) (($ $ (-409 (-566))) 162) (($ $ $) 153)) (* (($ (-921) $) 82) (($ (-771) $) NIL) (($ (-566) $) 87) (($ $ $) 74) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
-(((-381) (-13 (-406) (-233) (-614 (-1157)) (-828) (-613 (-225)) (-1199) (-614 (-538)) (-618 (-225)) (-10 -8 (-15 -3061 ($ $ (-566))) (-15 ** ($ $ $)) (-15 -3873 ($ $)) (-15 -3518 ((-566) $ $)) (-15 -3096 ($ $ (-566))) (-15 -2575 ((-409 (-566)) $ (-771))) (-15 -2575 ((-409 (-566)) $ (-771) (-771))) (-15 -3392 ($)) (-15 -2346 ($)) (-15 -3041 ($)) (-15 -3172 ($ $ $)) (-15 -3392 ($ $)) (-15 -2346 ($ $)) (-15 -4162 ((-1269))) (-15 -4162 ((-1269) (-771))) (-15 -3707 ((-1269))) (-15 -3707 ((-1269) (-771))) (-15 -1569 ((-1269))) (-15 -1569 ((-1269) (-771))) (-15 -4304 ((-1269) (-771))) (-6 -4408) (-6 -4400)))) (T -381))
-((** (*1 *1 *1 *1) (-5 *1 (-381))) (-3061 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-381)))) (-3873 (*1 *1 *1) (-5 *1 (-381))) (-3518 (*1 *2 *1 *1) (-12 (-5 *2 (-566)) (-5 *1 (-381)))) (-3096 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-381)))) (-2575 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-381)))) (-2575 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-381)))) (-3392 (*1 *1) (-5 *1 (-381))) (-2346 (*1 *1) (-5 *1 (-381))) (-3041 (*1 *1) (-5 *1 (-381))) (-3172 (*1 *1 *1 *1) (-5 *1 (-381))) (-3392 (*1 *1 *1) (-5 *1 (-381))) (-2346 (*1 *1 *1) (-5 *1 (-381))) (-4162 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))) (-4162 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381)))) (-3707 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))) (-3707 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381)))) (-1569 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))) (-1569 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381)))) (-4304 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381)))))
-(-13 (-406) (-233) (-614 (-1157)) (-828) (-613 (-225)) (-1199) (-614 (-538)) (-618 (-225)) (-10 -8 (-15 -3061 ($ $ (-566))) (-15 ** ($ $ $)) (-15 -3873 ($ $)) (-15 -3518 ((-566) $ $)) (-15 -3096 ($ $ (-566))) (-15 -2575 ((-409 (-566)) $ (-771))) (-15 -2575 ((-409 (-566)) $ (-771) (-771))) (-15 -3392 ($)) (-15 -2346 ($)) (-15 -3041 ($)) (-15 -3172 ($ $ $)) (-15 -3392 ($ $)) (-15 -2346 ($ $)) (-15 -4162 ((-1269))) (-15 -4162 ((-1269) (-771))) (-15 -3707 ((-1269))) (-15 -3707 ((-1269) (-771))) (-15 -1569 ((-1269))) (-15 -1569 ((-1269) (-771))) (-15 -4304 ((-1269) (-771))) (-6 -4408) (-6 -4400)))
-((-2371 (((-644 (-295 (-952 |#1|))) (-295 (-409 (-952 (-566)))) |#1|) 46) (((-644 (-295 (-952 |#1|))) (-409 (-952 (-566))) |#1|) 45) (((-644 (-644 (-295 (-952 |#1|)))) (-644 (-295 (-409 (-952 (-566))))) |#1|) 42) (((-644 (-644 (-295 (-952 |#1|)))) (-644 (-409 (-952 (-566)))) |#1|) 36)) (-1450 (((-644 |#1|) (-409 (-952 (-566))) |#1|) 20) (((-644 (-644 |#1|)) (-644 (-409 (-952 (-566)))) (-644 (-1175)) |#1|) 30)))
-(((-382 |#1|) (-10 -7 (-15 -2371 ((-644 (-644 (-295 (-952 |#1|)))) (-644 (-409 (-952 (-566)))) |#1|)) (-15 -2371 ((-644 (-644 (-295 (-952 |#1|)))) (-644 (-295 (-409 (-952 (-566))))) |#1|)) (-15 -2371 ((-644 (-295 (-952 |#1|))) (-409 (-952 (-566))) |#1|)) (-15 -2371 ((-644 (-295 (-952 |#1|))) (-295 (-409 (-952 (-566)))) |#1|)) (-15 -1450 ((-644 (-644 |#1|)) (-644 (-409 (-952 (-566)))) (-644 (-1175)) |#1|)) (-15 -1450 ((-644 |#1|) (-409 (-952 (-566))) |#1|))) (-13 (-848) (-365))) (T -382))
-((-1450 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 (-566)))) (-5 *2 (-644 *4)) (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365))))) (-1450 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-409 (-952 (-566))))) (-5 *4 (-644 (-1175))) (-5 *2 (-644 (-644 *5))) (-5 *1 (-382 *5)) (-4 *5 (-13 (-848) (-365))))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-295 (-409 (-952 (-566))))) (-5 *2 (-644 (-295 (-952 *4)))) (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365))))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 (-566)))) (-5 *2 (-644 (-295 (-952 *4)))) (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365))))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-295 (-409 (-952 (-566)))))) (-5 *2 (-644 (-644 (-295 (-952 *4))))) (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365))))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 (-566))))) (-5 *2 (-644 (-644 (-295 (-952 *4))))) (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365))))))
-(-10 -7 (-15 -2371 ((-644 (-644 (-295 (-952 |#1|)))) (-644 (-409 (-952 (-566)))) |#1|)) (-15 -2371 ((-644 (-644 (-295 (-952 |#1|)))) (-644 (-295 (-409 (-952 (-566))))) |#1|)) (-15 -2371 ((-644 (-295 (-952 |#1|))) (-409 (-952 (-566))) |#1|)) (-15 -2371 ((-644 (-295 (-952 |#1|))) (-295 (-409 (-952 (-566)))) |#1|)) (-15 -1450 ((-644 (-644 |#1|)) (-644 (-409 (-952 (-566)))) (-644 (-1175)) |#1|)) (-15 -1450 ((-644 |#1|) (-409 (-952 (-566))) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) 30)) (-1756 ((|#2| $) 32)) (-3577 (($ $) NIL)) (-3505 (((-771) $) 11)) (-1363 (((-644 $) $) 23)) (-4367 (((-112) $) NIL)) (-1966 (($ |#2| |#1|) 21)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3127 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 17)) (-3545 ((|#2| $) 18)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 51) (($ |#2|) 31)) (-3868 (((-644 |#1|) $) 20)) (-2022 ((|#1| $ |#2|) 55)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 33 T CONST)) (-1521 (((-644 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 14)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#1| $) 36) (($ $ |#1|) 37) (($ |#1| |#2|) 39) (($ |#2| |#1|) 40)))
+((-3859 (((-644 (-295 (-952 (-169 |#1|)))) (-295 (-409 (-952 (-169 (-566))))) |#1|) 51) (((-644 (-295 (-952 (-169 |#1|)))) (-409 (-952 (-169 (-566)))) |#1|) 50) (((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-295 (-409 (-952 (-169 (-566)))))) |#1|) 47) (((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-409 (-952 (-169 (-566))))) |#1|) 41)) (-4126 (((-644 (-644 (-169 |#1|))) (-644 (-409 (-952 (-169 (-566))))) (-644 (-1175)) |#1|) 30) (((-644 (-169 |#1|)) (-409 (-952 (-169 (-566)))) |#1|) 18)))
+(((-380 |#1|) (-10 -7 (-15 -3859 ((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-409 (-952 (-169 (-566))))) |#1|)) (-15 -3859 ((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-295 (-409 (-952 (-169 (-566)))))) |#1|)) (-15 -3859 ((-644 (-295 (-952 (-169 |#1|)))) (-409 (-952 (-169 (-566)))) |#1|)) (-15 -3859 ((-644 (-295 (-952 (-169 |#1|)))) (-295 (-409 (-952 (-169 (-566))))) |#1|)) (-15 -4126 ((-644 (-169 |#1|)) (-409 (-952 (-169 (-566)))) |#1|)) (-15 -4126 ((-644 (-644 (-169 |#1|))) (-644 (-409 (-952 (-169 (-566))))) (-644 (-1175)) |#1|))) (-13 (-365) (-848))) (T -380))
+((-4126 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-409 (-952 (-169 (-566)))))) (-5 *4 (-644 (-1175))) (-5 *2 (-644 (-644 (-169 *5)))) (-5 *1 (-380 *5)) (-4 *5 (-13 (-365) (-848))))) (-4126 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 (-169 (-566))))) (-5 *2 (-644 (-169 *4))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848))))) (-3859 (*1 *2 *3 *4) (-12 (-5 *3 (-295 (-409 (-952 (-169 (-566)))))) (-5 *2 (-644 (-295 (-952 (-169 *4))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848))))) (-3859 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 (-169 (-566))))) (-5 *2 (-644 (-295 (-952 (-169 *4))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848))))) (-3859 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-295 (-409 (-952 (-169 (-566))))))) (-5 *2 (-644 (-644 (-295 (-952 (-169 *4)))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848))))) (-3859 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 (-169 (-566)))))) (-5 *2 (-644 (-644 (-295 (-952 (-169 *4)))))) (-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848))))))
+(-10 -7 (-15 -3859 ((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-409 (-952 (-169 (-566))))) |#1|)) (-15 -3859 ((-644 (-644 (-295 (-952 (-169 |#1|))))) (-644 (-295 (-409 (-952 (-169 (-566)))))) |#1|)) (-15 -3859 ((-644 (-295 (-952 (-169 |#1|)))) (-409 (-952 (-169 (-566)))) |#1|)) (-15 -3859 ((-644 (-295 (-952 (-169 |#1|)))) (-295 (-409 (-952 (-169 (-566))))) |#1|)) (-15 -4126 ((-644 (-169 |#1|)) (-409 (-952 (-169 (-566)))) |#1|)) (-15 -4126 ((-644 (-644 (-169 |#1|))) (-644 (-409 (-952 (-169 (-566))))) (-644 (-1175)) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 35)) (-2486 (((-566) $) 62)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-2922 (($ $) 144)) (-2865 (($ $) 107)) (-3939 (($ $) 94)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2484 (($ $) 47)) (-2738 (((-112) $ $) NIL)) (-2843 (($ $) 105)) (-3915 (($ $) 88)) (-2899 (((-566) $) 81)) (-3129 (($ $ (-566)) 76)) (-2888 (($ $) NIL)) (-3964 (($ $) NIL)) (-3877 (($) NIL T CONST)) (-1591 (($ $) 146)) (-3066 (((-3 (-566) "failed") $) 242) (((-3 (-409 (-566)) "failed") $) 238)) (-1867 (((-566) $) 240) (((-409 (-566)) $) 236)) (-2949 (($ $ $) NIL)) (-3156 (((-566) $ $) 133)) (-2928 (((-3 $ "failed") $) 149)) (-2426 (((-409 (-566)) $ (-771)) 243) (((-409 (-566)) $ (-771) (-771)) 235)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1769 (((-921)) 96) (((-921) (-921)) 129 (|has| $ (-6 -4405)))) (-1533 (((-112) $) 138)) (-3120 (($) 41)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL)) (-2082 (((-1269) (-771)) 201)) (-2819 (((-1269)) 206) (((-1269) (-771)) 207)) (-3158 (((-1269)) 208) (((-1269) (-771)) 209)) (-4340 (((-1269)) 204) (((-1269) (-771)) 205)) (-3227 (((-566) $) 69)) (-3466 (((-112) $) 40)) (-1986 (($ $ (-566)) NIL)) (-3512 (($ $) 51)) (-2719 (($ $) NIL)) (-2917 (((-112) $) 37)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL) (($) NIL (-12 (-2436 (|has| $ (-6 -4397))) (-2436 (|has| $ (-6 -4405)))))) (-2709 (($ $ $) NIL) (($) 130 (-12 (-2436 (|has| $ (-6 -4397))) (-2436 (|has| $ (-6 -4405)))))) (-1791 (((-566) $) 17)) (-4323 (($) 115) (($ $) 121)) (-2361 (($) 120) (($ $) 122)) (-3671 (($ $) 110)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 151)) (-1924 (((-921) (-566)) 46 (|has| $ (-6 -4405)))) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) 60)) (-2209 (($ $) 143)) (-2987 (($ (-566) (-566)) 139) (($ (-566) (-566) (-921)) 140)) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2456 (((-566) $) 19)) (-4347 (($) 123)) (-4337 (($ $) 104)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-4085 (((-921)) 131) (((-921) (-921)) 132 (|has| $ (-6 -4405)))) (-2578 (($ $ (-771)) NIL) (($ $) 150)) (-2813 (((-921) (-566)) 50 (|has| $ (-6 -4405)))) (-2897 (($ $) NIL)) (-3974 (($ $) NIL)) (-2877 (($ $) NIL)) (-3951 (($ $) NIL)) (-2853 (($ $) 106)) (-3927 (($ $) 93)) (-3204 (((-381) $) 229) (((-225) $) 230) (((-892 (-381)) $) NIL) (((-1157) $) 212) (((-538) $) 227) (($ (-225)) 234)) (-3780 (((-862) $) 216) (($ (-566)) 239) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-566)) 239) (($ (-409 (-566))) NIL) (((-225) $) 231)) (-3996 (((-771)) NIL T CONST)) (-1982 (($ $) 145)) (-1586 (((-921)) 61) (((-921) (-921)) 83 (|has| $ (-6 -4405)))) (-3801 (((-112) $ $) NIL)) (-3819 (((-921)) 134)) (-2931 (($ $) 113)) (-4009 (($ $) 49) (($ $ $) 59)) (-2278 (((-112) $ $) NIL)) (-2907 (($ $) 111)) (-3986 (($ $) 39)) (-2954 (($ $) NIL)) (-4033 (($ $) NIL)) (-3181 (($ $) NIL)) (-2834 (($ $) NIL)) (-2943 (($ $) NIL)) (-4021 (($ $) NIL)) (-2920 (($ $) 112)) (-3997 (($ $) 52)) (-3333 (($ $) 58)) (-2493 (($) 36 T CONST)) (-4333 (($) 43 T CONST)) (-2852 (((-1157) $) 27) (((-1157) $ (-112)) 29) (((-1269) (-822) $) 30) (((-1269) (-822) $ (-112)) 31)) (-2876 (($ $ (-771)) NIL) (($ $) NIL)) (-3010 (((-112) $ $) 213)) (-2984 (((-112) $ $) 45)) (-2950 (((-112) $ $) 56)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 57)) (-3062 (($ $ $) 48) (($ $ (-566)) 42)) (-3051 (($ $) 38) (($ $ $) 53)) (-3040 (($ $ $) 75)) (** (($ $ (-921)) 86) (($ $ (-771)) NIL) (($ $ (-566)) 116) (($ $ (-409 (-566))) 162) (($ $ $) 153)) (* (($ (-921) $) 82) (($ (-771) $) NIL) (($ (-566) $) 87) (($ $ $) 74) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
+(((-381) (-13 (-406) (-233) (-614 (-1157)) (-828) (-613 (-225)) (-1199) (-614 (-538)) (-618 (-225)) (-10 -8 (-15 -3062 ($ $ (-566))) (-15 ** ($ $ $)) (-15 -3512 ($ $)) (-15 -3156 ((-566) $ $)) (-15 -3129 ($ $ (-566))) (-15 -2426 ((-409 (-566)) $ (-771))) (-15 -2426 ((-409 (-566)) $ (-771) (-771))) (-15 -4323 ($)) (-15 -2361 ($)) (-15 -4347 ($)) (-15 -4009 ($ $ $)) (-15 -4323 ($ $)) (-15 -2361 ($ $)) (-15 -3158 ((-1269))) (-15 -3158 ((-1269) (-771))) (-15 -4340 ((-1269))) (-15 -4340 ((-1269) (-771))) (-15 -2819 ((-1269))) (-15 -2819 ((-1269) (-771))) (-15 -2082 ((-1269) (-771))) (-6 -4405) (-6 -4397)))) (T -381))
+((** (*1 *1 *1 *1) (-5 *1 (-381))) (-3062 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-381)))) (-3512 (*1 *1 *1) (-5 *1 (-381))) (-3156 (*1 *2 *1 *1) (-12 (-5 *2 (-566)) (-5 *1 (-381)))) (-3129 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-381)))) (-2426 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-381)))) (-2426 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-381)))) (-4323 (*1 *1) (-5 *1 (-381))) (-2361 (*1 *1) (-5 *1 (-381))) (-4347 (*1 *1) (-5 *1 (-381))) (-4009 (*1 *1 *1 *1) (-5 *1 (-381))) (-4323 (*1 *1 *1) (-5 *1 (-381))) (-2361 (*1 *1 *1) (-5 *1 (-381))) (-3158 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))) (-3158 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381)))) (-4340 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))) (-4340 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381)))) (-2819 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))) (-2819 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381)))) (-2082 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381)))))
+(-13 (-406) (-233) (-614 (-1157)) (-828) (-613 (-225)) (-1199) (-614 (-538)) (-618 (-225)) (-10 -8 (-15 -3062 ($ $ (-566))) (-15 ** ($ $ $)) (-15 -3512 ($ $)) (-15 -3156 ((-566) $ $)) (-15 -3129 ($ $ (-566))) (-15 -2426 ((-409 (-566)) $ (-771))) (-15 -2426 ((-409 (-566)) $ (-771) (-771))) (-15 -4323 ($)) (-15 -2361 ($)) (-15 -4347 ($)) (-15 -4009 ($ $ $)) (-15 -4323 ($ $)) (-15 -2361 ($ $)) (-15 -3158 ((-1269))) (-15 -3158 ((-1269) (-771))) (-15 -4340 ((-1269))) (-15 -4340 ((-1269) (-771))) (-15 -2819 ((-1269))) (-15 -2819 ((-1269) (-771))) (-15 -2082 ((-1269) (-771))) (-6 -4405) (-6 -4397)))
+((-4159 (((-644 (-295 (-952 |#1|))) (-295 (-409 (-952 (-566)))) |#1|) 46) (((-644 (-295 (-952 |#1|))) (-409 (-952 (-566))) |#1|) 45) (((-644 (-644 (-295 (-952 |#1|)))) (-644 (-295 (-409 (-952 (-566))))) |#1|) 42) (((-644 (-644 (-295 (-952 |#1|)))) (-644 (-409 (-952 (-566)))) |#1|) 36)) (-4062 (((-644 |#1|) (-409 (-952 (-566))) |#1|) 20) (((-644 (-644 |#1|)) (-644 (-409 (-952 (-566)))) (-644 (-1175)) |#1|) 30)))
+(((-382 |#1|) (-10 -7 (-15 -4159 ((-644 (-644 (-295 (-952 |#1|)))) (-644 (-409 (-952 (-566)))) |#1|)) (-15 -4159 ((-644 (-644 (-295 (-952 |#1|)))) (-644 (-295 (-409 (-952 (-566))))) |#1|)) (-15 -4159 ((-644 (-295 (-952 |#1|))) (-409 (-952 (-566))) |#1|)) (-15 -4159 ((-644 (-295 (-952 |#1|))) (-295 (-409 (-952 (-566)))) |#1|)) (-15 -4062 ((-644 (-644 |#1|)) (-644 (-409 (-952 (-566)))) (-644 (-1175)) |#1|)) (-15 -4062 ((-644 |#1|) (-409 (-952 (-566))) |#1|))) (-13 (-848) (-365))) (T -382))
+((-4062 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 (-566)))) (-5 *2 (-644 *4)) (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365))))) (-4062 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-409 (-952 (-566))))) (-5 *4 (-644 (-1175))) (-5 *2 (-644 (-644 *5))) (-5 *1 (-382 *5)) (-4 *5 (-13 (-848) (-365))))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-295 (-409 (-952 (-566))))) (-5 *2 (-644 (-295 (-952 *4)))) (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365))))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 (-566)))) (-5 *2 (-644 (-295 (-952 *4)))) (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365))))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-295 (-409 (-952 (-566)))))) (-5 *2 (-644 (-644 (-295 (-952 *4))))) (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365))))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 (-566))))) (-5 *2 (-644 (-644 (-295 (-952 *4))))) (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365))))))
+(-10 -7 (-15 -4159 ((-644 (-644 (-295 (-952 |#1|)))) (-644 (-409 (-952 (-566)))) |#1|)) (-15 -4159 ((-644 (-644 (-295 (-952 |#1|)))) (-644 (-295 (-409 (-952 (-566))))) |#1|)) (-15 -4159 ((-644 (-295 (-952 |#1|))) (-409 (-952 (-566))) |#1|)) (-15 -4159 ((-644 (-295 (-952 |#1|))) (-295 (-409 (-952 (-566)))) |#1|)) (-15 -4062 ((-644 (-644 |#1|)) (-644 (-409 (-952 (-566)))) (-644 (-1175)) |#1|)) (-15 -4062 ((-644 |#1|) (-409 (-952 (-566))) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) 30)) (-1867 ((|#2| $) 32)) (-3645 (($ $) NIL)) (-4230 (((-771) $) 11)) (-2330 (((-644 $) $) 23)) (-1453 (((-112) $) NIL)) (-2044 (($ |#2| |#1|) 21)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3840 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 17)) (-3614 ((|#2| $) 18)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 51) (($ |#2|) 31)) (-3456 (((-644 |#1|) $) 20)) (-3756 ((|#1| $ |#2|) 55)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 33 T CONST)) (-2356 (((-644 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 14)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#1| $) 36) (($ $ |#1|) 37) (($ |#1| |#2|) 39) (($ |#2| |#1|) 40)))
(((-383 |#1| |#2|) (-13 (-384 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|)))) (-1049) (-850)) (T -383))
((* (*1 *1 *2 *3) (-12 (-5 *1 (-383 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-850)))))
(-13 (-384 |#1| |#2|) (-10 -8 (-15 * ($ |#2| |#1|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#2| "failed") $) 49)) (-1756 ((|#2| $) 50)) (-3577 (($ $) 35)) (-3505 (((-771) $) 39)) (-1363 (((-644 $) $) 40)) (-4367 (((-112) $) 43)) (-1966 (($ |#2| |#1|) 44)) (-3077 (($ (-1 |#1| |#1|) $) 45)) (-3127 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 36)) (-3545 ((|#2| $) 38)) (-3557 ((|#1| $) 37)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ |#2|) 48)) (-3868 (((-644 |#1|) $) 41)) (-2022 ((|#1| $ |#2|) 46)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-1521 (((-644 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 42)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31) (($ |#1| |#2|) 47)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#2| "failed") $) 49)) (-1867 ((|#2| $) 50)) (-3645 (($ $) 35)) (-4230 (((-771) $) 39)) (-2330 (((-644 $) $) 40)) (-1453 (((-112) $) 43)) (-2044 (($ |#2| |#1|) 44)) (-3152 (($ (-1 |#1| |#1|) $) 45)) (-3840 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 36)) (-3614 ((|#2| $) 38)) (-3626 ((|#1| $) 37)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ |#2|) 48)) (-3456 (((-644 |#1|) $) 41)) (-3756 ((|#1| $ |#2|) 46)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2356 (((-644 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 42)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31) (($ |#1| |#2|) 47)))
(((-384 |#1| |#2|) (-140) (-1049) (-1099)) (T -384))
-((* (*1 *1 *2 *3) (-12 (-4 *1 (-384 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-1099)))) (-2022 (*1 *2 *1 *3) (-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1099)) (-4 *2 (-1049)))) (-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)))) (-1966 (*1 *1 *2 *3) (-12 (-4 *1 (-384 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1099)))) (-4367 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-112)))) (-1521 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-644 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3868 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-644 *3)))) (-1363 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-644 *1)) (-4 *1 (-384 *3 *4)))) (-3505 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-771)))) (-3545 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1099)))) (-3557 (*1 *2 *1) (-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1099)) (-4 *2 (-1049)))) (-3127 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-3577 (*1 *1 *1) (-12 (-4 *1 (-384 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-1099)))))
-(-13 (-111 |t#1| |t#1|) (-1038 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -2022 (|t#1| $ |t#2|)) (-15 -3077 ($ (-1 |t#1| |t#1|) $)) (-15 -1966 ($ |t#2| |t#1|)) (-15 -4367 ((-112) $)) (-15 -1521 ((-644 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3868 ((-644 |t#1|) $)) (-15 -1363 ((-644 $) $)) (-15 -3505 ((-771) $)) (-15 -3545 (|t#2| $)) (-15 -3557 (|t#1| $)) (-15 -3127 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -3577 ($ $)) (IF (|has| |t#1| (-172)) (-6 (-717 |t#1|)) |%noBranch|)))
+((* (*1 *1 *2 *3) (-12 (-4 *1 (-384 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-1099)))) (-3756 (*1 *2 *1 *3) (-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1099)) (-4 *2 (-1049)))) (-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)))) (-2044 (*1 *1 *2 *3) (-12 (-4 *1 (-384 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1099)))) (-1453 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-112)))) (-2356 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-644 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-3456 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-644 *3)))) (-2330 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-644 *1)) (-4 *1 (-384 *3 *4)))) (-4230 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-771)))) (-3614 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1099)))) (-3626 (*1 *2 *1) (-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1099)) (-4 *2 (-1049)))) (-3840 (*1 *2 *1) (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-3645 (*1 *1 *1) (-12 (-4 *1 (-384 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-1099)))))
+(-13 (-111 |t#1| |t#1|) (-1038 |t#2|) (-10 -8 (-15 * ($ |t#1| |t#2|)) (-15 -3756 (|t#1| $ |t#2|)) (-15 -3152 ($ (-1 |t#1| |t#1|) $)) (-15 -2044 ($ |t#2| |t#1|)) (-15 -1453 ((-112) $)) (-15 -2356 ((-644 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -3456 ((-644 |t#1|) $)) (-15 -2330 ((-644 $) $)) (-15 -4230 ((-771) $)) (-15 -3614 (|t#2| $)) (-15 -3626 (|t#1| $)) (-15 -3840 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -3645 ($ $)) (IF (|has| |t#1| (-172)) (-6 (-717 |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-616 |#2|) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-648 |#1|) . T) ((-640 |#1|) |has| |#1| (-172)) ((-717 |#1|) |has| |#1| (-172)) ((-1038 |#2|) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1099) . T))
-((-2733 (((-1269) $) 7)) (-2512 (((-862) $) 8) (($ (-689 (-699))) 14) (($ (-644 (-331))) 13) (($ (-331)) 12) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 11)))
+((-2440 (((-1269) $) 7)) (-3780 (((-862) $) 8) (($ (-689 (-699))) 14) (($ (-644 (-331))) 13) (($ (-331)) 12) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 11)))
(((-385) (-140)) (T -385))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-689 (-699))) (-4 *1 (-385)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-385)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-385)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) (-4 *1 (-385)))))
-(-13 (-397) (-10 -8 (-15 -2512 ($ (-689 (-699)))) (-15 -2512 ($ (-644 (-331)))) (-15 -2512 ($ (-331))) (-15 -2512 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))))))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-689 (-699))) (-4 *1 (-385)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-385)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-385)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) (-4 *1 (-385)))))
+(-13 (-397) (-10 -8 (-15 -3780 ($ (-689 (-699)))) (-15 -3780 ($ (-644 (-331)))) (-15 -3780 ($ (-331))) (-15 -3780 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))))))
(((-613 (-862)) . T) ((-397) . T) ((-1214) . T))
-((-2977 (((-3 $ "failed") (-689 (-317 (-381)))) 21) (((-3 $ "failed") (-689 (-317 (-566)))) 19) (((-3 $ "failed") (-689 (-952 (-381)))) 17) (((-3 $ "failed") (-689 (-952 (-566)))) 15) (((-3 $ "failed") (-689 (-409 (-952 (-381))))) 13) (((-3 $ "failed") (-689 (-409 (-952 (-566))))) 11)) (-1756 (($ (-689 (-317 (-381)))) 22) (($ (-689 (-317 (-566)))) 20) (($ (-689 (-952 (-381)))) 18) (($ (-689 (-952 (-566)))) 16) (($ (-689 (-409 (-952 (-381))))) 14) (($ (-689 (-409 (-952 (-566))))) 12)) (-2733 (((-1269) $) 7)) (-2512 (((-862) $) 8) (($ (-644 (-331))) 25) (($ (-331)) 24) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 23)))
+((-3066 (((-3 $ "failed") (-689 (-317 (-381)))) 21) (((-3 $ "failed") (-689 (-317 (-566)))) 19) (((-3 $ "failed") (-689 (-952 (-381)))) 17) (((-3 $ "failed") (-689 (-952 (-566)))) 15) (((-3 $ "failed") (-689 (-409 (-952 (-381))))) 13) (((-3 $ "failed") (-689 (-409 (-952 (-566))))) 11)) (-1867 (($ (-689 (-317 (-381)))) 22) (($ (-689 (-317 (-566)))) 20) (($ (-689 (-952 (-381)))) 18) (($ (-689 (-952 (-566)))) 16) (($ (-689 (-409 (-952 (-381))))) 14) (($ (-689 (-409 (-952 (-566))))) 12)) (-2440 (((-1269) $) 7)) (-3780 (((-862) $) 8) (($ (-644 (-331))) 25) (($ (-331)) 24) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 23)))
(((-386) (-140)) (T -386))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-386)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-386)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) (-4 *1 (-386)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-689 (-317 (-381)))) (-4 *1 (-386)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-317 (-381)))) (-4 *1 (-386)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-689 (-317 (-566)))) (-4 *1 (-386)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-317 (-566)))) (-4 *1 (-386)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-689 (-952 (-381)))) (-4 *1 (-386)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-952 (-381)))) (-4 *1 (-386)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-689 (-952 (-566)))) (-4 *1 (-386)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-952 (-566)))) (-4 *1 (-386)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-689 (-409 (-952 (-381))))) (-4 *1 (-386)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-409 (-952 (-381))))) (-4 *1 (-386)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-689 (-409 (-952 (-566))))) (-4 *1 (-386)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-409 (-952 (-566))))) (-4 *1 (-386)))))
-(-13 (-397) (-10 -8 (-15 -2512 ($ (-644 (-331)))) (-15 -2512 ($ (-331))) (-15 -2512 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))) (-15 -1756 ($ (-689 (-317 (-381))))) (-15 -2977 ((-3 $ "failed") (-689 (-317 (-381))))) (-15 -1756 ($ (-689 (-317 (-566))))) (-15 -2977 ((-3 $ "failed") (-689 (-317 (-566))))) (-15 -1756 ($ (-689 (-952 (-381))))) (-15 -2977 ((-3 $ "failed") (-689 (-952 (-381))))) (-15 -1756 ($ (-689 (-952 (-566))))) (-15 -2977 ((-3 $ "failed") (-689 (-952 (-566))))) (-15 -1756 ($ (-689 (-409 (-952 (-381)))))) (-15 -2977 ((-3 $ "failed") (-689 (-409 (-952 (-381)))))) (-15 -1756 ($ (-689 (-409 (-952 (-566)))))) (-15 -2977 ((-3 $ "failed") (-689 (-409 (-952 (-566))))))))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-386)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-386)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) (-4 *1 (-386)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-689 (-317 (-381)))) (-4 *1 (-386)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-317 (-381)))) (-4 *1 (-386)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-689 (-317 (-566)))) (-4 *1 (-386)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-317 (-566)))) (-4 *1 (-386)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-689 (-952 (-381)))) (-4 *1 (-386)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-952 (-381)))) (-4 *1 (-386)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-689 (-952 (-566)))) (-4 *1 (-386)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-952 (-566)))) (-4 *1 (-386)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-689 (-409 (-952 (-381))))) (-4 *1 (-386)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-409 (-952 (-381))))) (-4 *1 (-386)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-689 (-409 (-952 (-566))))) (-4 *1 (-386)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-689 (-409 (-952 (-566))))) (-4 *1 (-386)))))
+(-13 (-397) (-10 -8 (-15 -3780 ($ (-644 (-331)))) (-15 -3780 ($ (-331))) (-15 -3780 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))) (-15 -1867 ($ (-689 (-317 (-381))))) (-15 -3066 ((-3 $ "failed") (-689 (-317 (-381))))) (-15 -1867 ($ (-689 (-317 (-566))))) (-15 -3066 ((-3 $ "failed") (-689 (-317 (-566))))) (-15 -1867 ($ (-689 (-952 (-381))))) (-15 -3066 ((-3 $ "failed") (-689 (-952 (-381))))) (-15 -1867 ($ (-689 (-952 (-566))))) (-15 -3066 ((-3 $ "failed") (-689 (-952 (-566))))) (-15 -1867 ($ (-689 (-409 (-952 (-381)))))) (-15 -3066 ((-3 $ "failed") (-689 (-409 (-952 (-381)))))) (-15 -1867 ($ (-689 (-409 (-952 (-566)))))) (-15 -3066 ((-3 $ "failed") (-689 (-409 (-952 (-566))))))))
(((-613 (-862)) . T) ((-397) . T) ((-1214) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3577 (($ $) NIL)) (-2519 (($ |#1| |#2|) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-2896 ((|#2| $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 34)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 12 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#1| $) 15) (($ $ |#1|) 18)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3645 (($ $) NIL)) (-2585 (($ |#1| |#2|) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1328 ((|#2| $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 34)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 12 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#1| $) 15) (($ $ |#1|) 18)))
(((-387 |#1| |#2|) (-13 (-111 |#1| |#1|) (-511 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-172)) (-6 (-717 |#1|)) |%noBranch|))) (-1049) (-850)) (T -387))
NIL
(-13 (-111 |#1| |#1|) (-511 |#1| |#2|) (-10 -7 (IF (|has| |#1| (-172)) (-6 (-717 |#1|)) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771) $) 74)) (-2342 (($) NIL T CONST)) (-2847 (((-3 $ "failed") $ $) 77)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3093 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 64)) (-2741 (((-112) $) 17)) (-2647 ((|#1| $ (-566)) NIL)) (-1571 (((-771) $ (-566)) NIL)) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-4105 (($ (-1 |#1| |#1|) $) 40)) (-2855 (($ (-1 (-771) (-771)) $) 37)) (-1388 (((-3 $ "failed") $ $) 60)) (-2878 (((-1157) $) NIL)) (-2009 (($ $ $) 28)) (-1997 (($ $ $) 26)) (-4033 (((-1119) $) NIL)) (-4236 (((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-771)))) $) 34)) (-2347 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 70)) (-2512 (((-862) $) 24) (($ |#1|) NIL)) (-3122 (((-112) $ $) NIL)) (-2495 (($) 11 T CONST)) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) 84 (|has| |#1| (-850)))) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ |#1| (-771)) 42)) (* (($ $ $) 52) (($ |#1| $) 32) (($ $ |#1|) 30)))
-(((-388 |#1|) (-13 (-726) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-771))) (-15 -1997 ($ $ $)) (-15 -2009 ($ $ $)) (-15 -1388 ((-3 $ "failed") $ $)) (-15 -2847 ((-3 $ "failed") $ $)) (-15 -2347 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3093 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -4025 ((-771) $)) (-15 -4236 ((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-771)))) $)) (-15 -1571 ((-771) $ (-566))) (-15 -2647 (|#1| $ (-566))) (-15 -2855 ($ (-1 (-771) (-771)) $)) (-15 -4105 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-850)) (-6 (-850)) |%noBranch|))) (-1099)) (T -388))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-1997 (*1 *1 *1 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-2009 (*1 *1 *1 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-1388 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-2847 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-2347 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-388 *3)) (|:| |rm| (-388 *3)))) (-5 *1 (-388 *3)) (-4 *3 (-1099)))) (-3093 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-388 *3)) (|:| |mm| (-388 *3)) (|:| |rm| (-388 *3)))) (-5 *1 (-388 *3)) (-4 *3 (-1099)))) (-4025 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-388 *3)) (-4 *3 (-1099)))) (-4236 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 (-771))))) (-5 *1 (-388 *3)) (-4 *3 (-1099)))) (-1571 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-771)) (-5 *1 (-388 *4)) (-4 *4 (-1099)))) (-2647 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-2855 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-771) (-771))) (-5 *1 (-388 *3)) (-4 *3 (-1099)))) (-4105 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-388 *3)))))
-(-13 (-726) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-771))) (-15 -1997 ($ $ $)) (-15 -2009 ($ $ $)) (-15 -1388 ((-3 $ "failed") $ $)) (-15 -2847 ((-3 $ "failed") $ $)) (-15 -2347 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3093 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -4025 ((-771) $)) (-15 -4236 ((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-771)))) $)) (-15 -1571 ((-771) $ (-566))) (-15 -2647 (|#1| $ (-566))) (-15 -2855 ($ (-1 (-771) (-771)) $)) (-15 -4105 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-850)) (-6 (-850)) |%noBranch|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2977 (((-3 (-566) "failed") $) 53)) (-1756 (((-566) $) 54)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-1439 (($ $ $) 60)) (-3059 (($ $ $) 59)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2972 (((-3 $ "failed") $ $) 48)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-566)) 52)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2998 (((-112) $ $) 57)) (-2974 (((-112) $ $) 56)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 58)) (-2962 (((-112) $ $) 55)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771) $) 74)) (-3877 (($) NIL T CONST)) (-2087 (((-3 $ "failed") $ $) 77)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1687 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 64)) (-3466 (((-112) $) 17)) (-3749 ((|#1| $ (-566)) NIL)) (-2840 (((-771) $ (-566)) NIL)) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3796 (($ (-1 |#1| |#1|) $) 40)) (-2158 (($ (-1 (-771) (-771)) $) 37)) (-1987 (((-3 $ "failed") $ $) 60)) (-2402 (((-1157) $) NIL)) (-3654 (($ $ $) 28)) (-1649 (($ $ $) 26)) (-4056 (((-1119) $) NIL)) (-2670 (((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-771)))) $) 34)) (-3919 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 70)) (-3780 (((-862) $) 24) (($ |#1|) NIL)) (-3801 (((-112) $ $) NIL)) (-4333 (($) 11 T CONST)) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) 84 (|has| |#1| (-850)))) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ |#1| (-771)) 42)) (* (($ $ $) 52) (($ |#1| $) 32) (($ $ |#1|) 30)))
+(((-388 |#1|) (-13 (-726) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-771))) (-15 -1649 ($ $ $)) (-15 -3654 ($ $ $)) (-15 -1987 ((-3 $ "failed") $ $)) (-15 -2087 ((-3 $ "failed") $ $)) (-15 -3919 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1687 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -4070 ((-771) $)) (-15 -2670 ((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-771)))) $)) (-15 -2840 ((-771) $ (-566))) (-15 -3749 (|#1| $ (-566))) (-15 -2158 ($ (-1 (-771) (-771)) $)) (-15 -3796 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-850)) (-6 (-850)) |%noBranch|))) (-1099)) (T -388))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-1649 (*1 *1 *1 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-3654 (*1 *1 *1 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-1987 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-2087 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-3919 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-388 *3)) (|:| |rm| (-388 *3)))) (-5 *1 (-388 *3)) (-4 *3 (-1099)))) (-1687 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-388 *3)) (|:| |mm| (-388 *3)) (|:| |rm| (-388 *3)))) (-5 *1 (-388 *3)) (-4 *3 (-1099)))) (-4070 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-388 *3)) (-4 *3 (-1099)))) (-2670 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 (-771))))) (-5 *1 (-388 *3)) (-4 *3 (-1099)))) (-2840 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-771)) (-5 *1 (-388 *4)) (-4 *4 (-1099)))) (-3749 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-388 *2)) (-4 *2 (-1099)))) (-2158 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-771) (-771))) (-5 *1 (-388 *3)) (-4 *3 (-1099)))) (-3796 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-388 *3)))))
+(-13 (-726) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-771))) (-15 -1649 ($ $ $)) (-15 -3654 ($ $ $)) (-15 -1987 ((-3 $ "failed") $ $)) (-15 -2087 ((-3 $ "failed") $ $)) (-15 -3919 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1687 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -4070 ((-771) $)) (-15 -2670 ((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-771)))) $)) (-15 -2840 ((-771) $ (-566))) (-15 -3749 (|#1| $ (-566))) (-15 -2158 ($ (-1 (-771) (-771)) $)) (-15 -3796 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-850)) (-6 (-850)) |%noBranch|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-3066 (((-3 (-566) "failed") $) 53)) (-1867 (((-566) $) 54)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-1945 (($ $ $) 60)) (-2709 (($ $ $) 59)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2997 (((-3 $ "failed") $ $) 48)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-566)) 52)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-3010 (((-112) $ $) 57)) (-2984 (((-112) $ $) 56)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 58)) (-2972 (((-112) $ $) 55)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-389) (-140)) (T -389))
NIL
(-13 (-558) (-850) (-1038 (-566)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-291) . T) ((-558) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-717 $) . T) ((-726) . T) ((-850) . T) ((-1038 (-566)) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-1969 (((-112) $) 25)) (-3944 (((-112) $) 22)) (-4257 (($ (-1157) (-1157) (-1157)) 26)) (-2628 (((-1157) $) 16)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2028 (($ (-1157) (-1157) (-1157)) 14)) (-2138 (((-1157) $) 17)) (-3830 (((-112) $) 18)) (-3462 (((-1157) $) 15)) (-2512 (((-862) $) 12) (($ (-1157)) 13) (((-1157) $) 9)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 7)))
+((-3009 (((-112) $ $) NIL)) (-1331 (((-112) $) 25)) (-2873 (((-112) $) 22)) (-4278 (($ (-1157) (-1157) (-1157)) 26)) (-2639 (((-1157) $) 16)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2070 (($ (-1157) (-1157) (-1157)) 14)) (-2508 (((-1157) $) 17)) (-3123 (((-112) $) 18)) (-4321 (((-1157) $) 15)) (-3780 (((-862) $) 12) (($ (-1157)) 13) (((-1157) $) 9)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 7)))
(((-390) (-391)) (T -390))
NIL
(-391)
-((-2985 (((-112) $ $) 7)) (-1969 (((-112) $) 17)) (-3944 (((-112) $) 18)) (-4257 (($ (-1157) (-1157) (-1157)) 16)) (-2628 (((-1157) $) 21)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2028 (($ (-1157) (-1157) (-1157)) 23)) (-2138 (((-1157) $) 20)) (-3830 (((-112) $) 19)) (-3462 (((-1157) $) 22)) (-2512 (((-862) $) 12) (($ (-1157)) 25) (((-1157) $) 24)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-3009 (((-112) $ $) 7)) (-1331 (((-112) $) 17)) (-2873 (((-112) $) 18)) (-4278 (($ (-1157) (-1157) (-1157)) 16)) (-2639 (((-1157) $) 21)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2070 (($ (-1157) (-1157) (-1157)) 23)) (-2508 (((-1157) $) 20)) (-3123 (((-112) $) 19)) (-4321 (((-1157) $) 22)) (-3780 (((-862) $) 12) (($ (-1157)) 25) (((-1157) $) 24)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-391) (-140)) (T -391))
-((-2028 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1157)) (-4 *1 (-391)))) (-3462 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-1157)))) (-2628 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-1157)))) (-2138 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-1157)))) (-3830 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))) (-3944 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))) (-1969 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))) (-4257 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1157)) (-4 *1 (-391)))))
-(-13 (-1099) (-492 (-1157)) (-10 -8 (-15 -2028 ($ (-1157) (-1157) (-1157))) (-15 -3462 ((-1157) $)) (-15 -2628 ((-1157) $)) (-15 -2138 ((-1157) $)) (-15 -3830 ((-112) $)) (-15 -3944 ((-112) $)) (-15 -1969 ((-112) $)) (-15 -4257 ($ (-1157) (-1157) (-1157)))))
+((-2070 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1157)) (-4 *1 (-391)))) (-4321 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-1157)))) (-2639 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-1157)))) (-2508 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-1157)))) (-3123 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))) (-2873 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))) (-1331 (*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))) (-4278 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1157)) (-4 *1 (-391)))))
+(-13 (-1099) (-492 (-1157)) (-10 -8 (-15 -2070 ($ (-1157) (-1157) (-1157))) (-15 -4321 ((-1157) $)) (-15 -2639 ((-1157) $)) (-15 -2508 ((-1157) $)) (-15 -3123 ((-112) $)) (-15 -2873 ((-112) $)) (-15 -1331 ((-112) $)) (-15 -4278 ($ (-1157) (-1157) (-1157)))))
(((-102) . T) ((-616 #0=(-1157)) . T) ((-613 (-862)) . T) ((-613 #0#) . T) ((-492 #0#) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-3908 (((-862) $) 64)) (-2342 (($) NIL T CONST)) (-2258 (($ $ (-921)) NIL)) (-2995 (($ $ (-921)) NIL)) (-4171 (($ $ (-921)) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4067 (($ (-771)) 38)) (-1909 (((-771)) 18)) (-1768 (((-862) $) 66)) (-3755 (($ $ $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-3551 (($ $ $ $) NIL)) (-2821 (($ $ $) NIL)) (-2485 (($) 24 T CONST)) (-2940 (((-112) $ $) 41)) (-3047 (($ $) 48) (($ $ $) 50)) (-3034 (($ $ $) 51)) (** (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 52) (($ $ |#3|) NIL) (($ |#3| $) 47)))
-(((-392 |#1| |#2| |#3|) (-13 (-744 |#3|) (-10 -8 (-15 -1909 ((-771))) (-15 -1768 ((-862) $)) (-15 -3908 ((-862) $)) (-15 -4067 ($ (-771))))) (-771) (-771) (-172)) (T -392))
-((-1909 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-172)))) (-1768 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 (-771)) (-14 *4 (-771)) (-4 *5 (-172)))) (-3908 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 (-771)) (-14 *4 (-771)) (-4 *5 (-172)))) (-4067 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-172)))))
-(-13 (-744 |#3|) (-10 -8 (-15 -1909 ((-771))) (-15 -1768 ((-862) $)) (-15 -3908 ((-862) $)) (-15 -4067 ($ (-771)))))
-((-1884 (((-1157)) 12)) (-3902 (((-1146 (-1157))) 31)) (-2710 (((-1269) (-1157)) 28) (((-1269) (-390)) 27)) (-2719 (((-1269)) 29)) (-3142 (((-1146 (-1157))) 30)))
-(((-393) (-10 -7 (-15 -3142 ((-1146 (-1157)))) (-15 -3902 ((-1146 (-1157)))) (-15 -2719 ((-1269))) (-15 -2710 ((-1269) (-390))) (-15 -2710 ((-1269) (-1157))) (-15 -1884 ((-1157))))) (T -393))
-((-1884 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-393)))) (-2710 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-393)))) (-2710 (*1 *2 *3) (-12 (-5 *3 (-390)) (-5 *2 (-1269)) (-5 *1 (-393)))) (-2719 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-393)))) (-3902 (*1 *2) (-12 (-5 *2 (-1146 (-1157))) (-5 *1 (-393)))) (-3142 (*1 *2) (-12 (-5 *2 (-1146 (-1157))) (-5 *1 (-393)))))
-(-10 -7 (-15 -3142 ((-1146 (-1157)))) (-15 -3902 ((-1146 (-1157)))) (-15 -2719 ((-1269))) (-15 -2710 ((-1269) (-390))) (-15 -2710 ((-1269) (-1157))) (-15 -1884 ((-1157))))
-((-2716 (((-771) (-338 |#1| |#2| |#3| |#4|)) 19)))
-(((-394 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2716 ((-771) (-338 |#1| |#2| |#3| |#4|)))) (-13 (-370) (-365)) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -394))
-((-2716 (*1 *2 *3) (-12 (-5 *3 (-338 *4 *5 *6 *7)) (-4 *4 (-13 (-370) (-365))) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-4 *7 (-344 *4 *5 *6)) (-5 *2 (-771)) (-5 *1 (-394 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2716 ((-771) (-338 |#1| |#2| |#3| |#4|))))
-((-2512 (((-396) |#1|) 11)))
-(((-395 |#1|) (-10 -7 (-15 -2512 ((-396) |#1|))) (-1099)) (T -395))
-((-2512 (*1 *2 *3) (-12 (-5 *2 (-396)) (-5 *1 (-395 *3)) (-4 *3 (-1099)))))
-(-10 -7 (-15 -2512 ((-396) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3659 (((-644 (-1157)) $ (-644 (-1157))) 43)) (-1899 (((-644 (-1157)) $ (-644 (-1157))) 44)) (-3312 (((-644 (-1157)) $ (-644 (-1157))) 45)) (-3385 (((-644 (-1157)) $) 40)) (-4257 (($) 30)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2004 (((-644 (-1157)) $) 41)) (-3145 (((-644 (-1157)) $) 42)) (-1697 (((-1269) $ (-566)) 38) (((-1269) $) 39)) (-3134 (($ (-862) (-566)) 35)) (-2512 (((-862) $) 54) (($ (-862)) 32)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-396) (-13 (-1099) (-616 (-862)) (-10 -8 (-15 -3134 ($ (-862) (-566))) (-15 -1697 ((-1269) $ (-566))) (-15 -1697 ((-1269) $)) (-15 -3145 ((-644 (-1157)) $)) (-15 -2004 ((-644 (-1157)) $)) (-15 -4257 ($)) (-15 -3385 ((-644 (-1157)) $)) (-15 -3312 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -1899 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -3659 ((-644 (-1157)) $ (-644 (-1157))))))) (T -396))
-((-3134 (*1 *1 *2 *3) (-12 (-5 *2 (-862)) (-5 *3 (-566)) (-5 *1 (-396)))) (-1697 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-396)))) (-1697 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-396)))) (-3145 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))) (-2004 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))) (-4257 (*1 *1) (-5 *1 (-396))) (-3385 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))) (-3312 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))) (-1899 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))) (-3659 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))))
-(-13 (-1099) (-616 (-862)) (-10 -8 (-15 -3134 ($ (-862) (-566))) (-15 -1697 ((-1269) $ (-566))) (-15 -1697 ((-1269) $)) (-15 -3145 ((-644 (-1157)) $)) (-15 -2004 ((-644 (-1157)) $)) (-15 -4257 ($)) (-15 -3385 ((-644 (-1157)) $)) (-15 -3312 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -1899 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -3659 ((-644 (-1157)) $ (-644 (-1157))))))
-((-2733 (((-1269) $) 7)) (-2512 (((-862) $) 8)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2605 (((-862) $) 64)) (-3877 (($) NIL T CONST)) (-2400 (($ $ (-921)) NIL)) (-2120 (($ $ (-921)) NIL)) (-3231 (($ $ (-921)) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4152 (($ (-771)) 38)) (-2012 (((-771)) 18)) (-3025 (((-862) $) 66)) (-1783 (($ $ $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-3428 (($ $ $ $) NIL)) (-3035 (($ $ $) NIL)) (-2493 (($) 24 T CONST)) (-2950 (((-112) $ $) 41)) (-3051 (($ $) 48) (($ $ $) 50)) (-3040 (($ $ $) 51)) (** (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 52) (($ $ |#3|) NIL) (($ |#3| $) 47)))
+(((-392 |#1| |#2| |#3|) (-13 (-744 |#3|) (-10 -8 (-15 -2012 ((-771))) (-15 -3025 ((-862) $)) (-15 -2605 ((-862) $)) (-15 -4152 ($ (-771))))) (-771) (-771) (-172)) (T -392))
+((-2012 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-172)))) (-3025 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 (-771)) (-14 *4 (-771)) (-4 *5 (-172)))) (-2605 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 (-771)) (-14 *4 (-771)) (-4 *5 (-172)))) (-4152 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-172)))))
+(-13 (-744 |#3|) (-10 -8 (-15 -2012 ((-771))) (-15 -3025 ((-862) $)) (-15 -2605 ((-862) $)) (-15 -4152 ($ (-771)))))
+((-2957 (((-1157)) 12)) (-2553 (((-1146 (-1157))) 31)) (-2416 (((-1269) (-1157)) 28) (((-1269) (-390)) 27)) (-2427 (((-1269)) 29)) (-3947 (((-1146 (-1157))) 30)))
+(((-393) (-10 -7 (-15 -3947 ((-1146 (-1157)))) (-15 -2553 ((-1146 (-1157)))) (-15 -2427 ((-1269))) (-15 -2416 ((-1269) (-390))) (-15 -2416 ((-1269) (-1157))) (-15 -2957 ((-1157))))) (T -393))
+((-2957 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-393)))) (-2416 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-393)))) (-2416 (*1 *2 *3) (-12 (-5 *3 (-390)) (-5 *2 (-1269)) (-5 *1 (-393)))) (-2427 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-393)))) (-2553 (*1 *2) (-12 (-5 *2 (-1146 (-1157))) (-5 *1 (-393)))) (-3947 (*1 *2) (-12 (-5 *2 (-1146 (-1157))) (-5 *1 (-393)))))
+(-10 -7 (-15 -3947 ((-1146 (-1157)))) (-15 -2553 ((-1146 (-1157)))) (-15 -2427 ((-1269))) (-15 -2416 ((-1269) (-390))) (-15 -2416 ((-1269) (-1157))) (-15 -2957 ((-1157))))
+((-3227 (((-771) (-338 |#1| |#2| |#3| |#4|)) 19)))
+(((-394 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3227 ((-771) (-338 |#1| |#2| |#3| |#4|)))) (-13 (-370) (-365)) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -394))
+((-3227 (*1 *2 *3) (-12 (-5 *3 (-338 *4 *5 *6 *7)) (-4 *4 (-13 (-370) (-365))) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-4 *7 (-344 *4 *5 *6)) (-5 *2 (-771)) (-5 *1 (-394 *4 *5 *6 *7)))))
+(-10 -7 (-15 -3227 ((-771) (-338 |#1| |#2| |#3| |#4|))))
+((-3780 (((-396) |#1|) 11)))
+(((-395 |#1|) (-10 -7 (-15 -3780 ((-396) |#1|))) (-1099)) (T -395))
+((-3780 (*1 *2 *3) (-12 (-5 *2 (-396)) (-5 *1 (-395 *3)) (-4 *3 (-1099)))))
+(-10 -7 (-15 -3780 ((-396) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-2024 (((-644 (-1157)) $ (-644 (-1157))) 43)) (-1912 (((-644 (-1157)) $ (-644 (-1157))) 44)) (-2964 (((-644 (-1157)) $ (-644 (-1157))) 45)) (-2411 (((-644 (-1157)) $) 40)) (-4278 (($) 30)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4262 (((-644 (-1157)) $) 41)) (-3983 (((-644 (-1157)) $) 42)) (-1736 (((-1269) $ (-566)) 38) (((-1269) $) 39)) (-3204 (($ (-862) (-566)) 35)) (-3780 (((-862) $) 54) (($ (-862)) 32)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-396) (-13 (-1099) (-616 (-862)) (-10 -8 (-15 -3204 ($ (-862) (-566))) (-15 -1736 ((-1269) $ (-566))) (-15 -1736 ((-1269) $)) (-15 -3983 ((-644 (-1157)) $)) (-15 -4262 ((-644 (-1157)) $)) (-15 -4278 ($)) (-15 -2411 ((-644 (-1157)) $)) (-15 -2964 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -1912 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -2024 ((-644 (-1157)) $ (-644 (-1157))))))) (T -396))
+((-3204 (*1 *1 *2 *3) (-12 (-5 *2 (-862)) (-5 *3 (-566)) (-5 *1 (-396)))) (-1736 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-396)))) (-1736 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-396)))) (-3983 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))) (-4262 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))) (-4278 (*1 *1) (-5 *1 (-396))) (-2411 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))) (-2964 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))) (-1912 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))) (-2024 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))))
+(-13 (-1099) (-616 (-862)) (-10 -8 (-15 -3204 ($ (-862) (-566))) (-15 -1736 ((-1269) $ (-566))) (-15 -1736 ((-1269) $)) (-15 -3983 ((-644 (-1157)) $)) (-15 -4262 ((-644 (-1157)) $)) (-15 -4278 ($)) (-15 -2411 ((-644 (-1157)) $)) (-15 -2964 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -1912 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -2024 ((-644 (-1157)) $ (-644 (-1157))))))
+((-2440 (((-1269) $) 7)) (-3780 (((-862) $) 8)))
(((-397) (-140)) (T -397))
-((-2733 (*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-1269)))))
-(-13 (-1214) (-613 (-862)) (-10 -8 (-15 -2733 ((-1269) $))))
+((-2440 (*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-1269)))))
+(-13 (-1214) (-613 (-862)) (-10 -8 (-15 -2440 ((-1269) $))))
(((-613 (-862)) . T) ((-1214) . T))
-((-2977 (((-3 $ "failed") (-317 (-381))) 21) (((-3 $ "failed") (-317 (-566))) 19) (((-3 $ "failed") (-952 (-381))) 17) (((-3 $ "failed") (-952 (-566))) 15) (((-3 $ "failed") (-409 (-952 (-381)))) 13) (((-3 $ "failed") (-409 (-952 (-566)))) 11)) (-1756 (($ (-317 (-381))) 22) (($ (-317 (-566))) 20) (($ (-952 (-381))) 18) (($ (-952 (-566))) 16) (($ (-409 (-952 (-381)))) 14) (($ (-409 (-952 (-566)))) 12)) (-2733 (((-1269) $) 7)) (-2512 (((-862) $) 8) (($ (-644 (-331))) 25) (($ (-331)) 24) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 23)))
+((-3066 (((-3 $ "failed") (-317 (-381))) 21) (((-3 $ "failed") (-317 (-566))) 19) (((-3 $ "failed") (-952 (-381))) 17) (((-3 $ "failed") (-952 (-566))) 15) (((-3 $ "failed") (-409 (-952 (-381)))) 13) (((-3 $ "failed") (-409 (-952 (-566)))) 11)) (-1867 (($ (-317 (-381))) 22) (($ (-317 (-566))) 20) (($ (-952 (-381))) 18) (($ (-952 (-566))) 16) (($ (-409 (-952 (-381)))) 14) (($ (-409 (-952 (-566)))) 12)) (-2440 (((-1269) $) 7)) (-3780 (((-862) $) 8) (($ (-644 (-331))) 25) (($ (-331)) 24) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 23)))
(((-398) (-140)) (T -398))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-398)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-398)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) (-4 *1 (-398)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-317 (-381))) (-4 *1 (-398)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-317 (-381))) (-4 *1 (-398)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-317 (-566))) (-4 *1 (-398)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-317 (-566))) (-4 *1 (-398)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-952 (-381))) (-4 *1 (-398)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-952 (-381))) (-4 *1 (-398)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-952 (-566))) (-4 *1 (-398)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-952 (-566))) (-4 *1 (-398)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-409 (-952 (-381)))) (-4 *1 (-398)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-409 (-952 (-381)))) (-4 *1 (-398)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-409 (-952 (-566)))) (-4 *1 (-398)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-409 (-952 (-566)))) (-4 *1 (-398)))))
-(-13 (-397) (-10 -8 (-15 -2512 ($ (-644 (-331)))) (-15 -2512 ($ (-331))) (-15 -2512 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))) (-15 -1756 ($ (-317 (-381)))) (-15 -2977 ((-3 $ "failed") (-317 (-381)))) (-15 -1756 ($ (-317 (-566)))) (-15 -2977 ((-3 $ "failed") (-317 (-566)))) (-15 -1756 ($ (-952 (-381)))) (-15 -2977 ((-3 $ "failed") (-952 (-381)))) (-15 -1756 ($ (-952 (-566)))) (-15 -2977 ((-3 $ "failed") (-952 (-566)))) (-15 -1756 ($ (-409 (-952 (-381))))) (-15 -2977 ((-3 $ "failed") (-409 (-952 (-381))))) (-15 -1756 ($ (-409 (-952 (-566))))) (-15 -2977 ((-3 $ "failed") (-409 (-952 (-566)))))))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-398)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-398)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) (-4 *1 (-398)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-317 (-381))) (-4 *1 (-398)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-317 (-381))) (-4 *1 (-398)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-317 (-566))) (-4 *1 (-398)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-317 (-566))) (-4 *1 (-398)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-952 (-381))) (-4 *1 (-398)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-952 (-381))) (-4 *1 (-398)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-952 (-566))) (-4 *1 (-398)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-952 (-566))) (-4 *1 (-398)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-409 (-952 (-381)))) (-4 *1 (-398)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-409 (-952 (-381)))) (-4 *1 (-398)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-409 (-952 (-566)))) (-4 *1 (-398)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-409 (-952 (-566)))) (-4 *1 (-398)))))
+(-13 (-397) (-10 -8 (-15 -3780 ($ (-644 (-331)))) (-15 -3780 ($ (-331))) (-15 -3780 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))) (-15 -1867 ($ (-317 (-381)))) (-15 -3066 ((-3 $ "failed") (-317 (-381)))) (-15 -1867 ($ (-317 (-566)))) (-15 -3066 ((-3 $ "failed") (-317 (-566)))) (-15 -1867 ($ (-952 (-381)))) (-15 -3066 ((-3 $ "failed") (-952 (-381)))) (-15 -1867 ($ (-952 (-566)))) (-15 -3066 ((-3 $ "failed") (-952 (-566)))) (-15 -1867 ($ (-409 (-952 (-381))))) (-15 -3066 ((-3 $ "failed") (-409 (-952 (-381))))) (-15 -1867 ($ (-409 (-952 (-566))))) (-15 -3066 ((-3 $ "failed") (-409 (-952 (-566)))))))
(((-613 (-862)) . T) ((-397) . T) ((-1214) . T))
-((-2319 (((-644 (-1157)) (-644 (-1157))) 9)) (-2733 (((-1269) (-390)) 27)) (-2493 (((-1103) (-1175) (-644 (-1175)) (-1178) (-644 (-1175))) 60) (((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175)) (-1175)) 35) (((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175))) 34)))
-(((-399) (-10 -7 (-15 -2493 ((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175)))) (-15 -2493 ((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175)) (-1175))) (-15 -2493 ((-1103) (-1175) (-644 (-1175)) (-1178) (-644 (-1175)))) (-15 -2733 ((-1269) (-390))) (-15 -2319 ((-644 (-1157)) (-644 (-1157)))))) (T -399))
-((-2319 (*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-399)))) (-2733 (*1 *2 *3) (-12 (-5 *3 (-390)) (-5 *2 (-1269)) (-5 *1 (-399)))) (-2493 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-644 (-1175))) (-5 *5 (-1178)) (-5 *3 (-1175)) (-5 *2 (-1103)) (-5 *1 (-399)))) (-2493 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-644 (-644 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-644 (-3 (|:| |array| (-644 *3)) (|:| |scalar| (-1175))))) (-5 *6 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1103)) (-5 *1 (-399)))) (-2493 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-644 (-644 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-644 (-3 (|:| |array| (-644 *3)) (|:| |scalar| (-1175))))) (-5 *6 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1103)) (-5 *1 (-399)))))
-(-10 -7 (-15 -2493 ((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175)))) (-15 -2493 ((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175)) (-1175))) (-15 -2493 ((-1103) (-1175) (-644 (-1175)) (-1178) (-644 (-1175)))) (-15 -2733 ((-1269) (-390))) (-15 -2319 ((-644 (-1157)) (-644 (-1157)))))
-((-2733 (((-1269) $) 36)) (-2512 (((-862) $) 98) (($ (-331)) 100) (($ (-644 (-331))) 99) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 97) (($ (-317 (-701))) 53) (($ (-317 (-699))) 73) (($ (-317 (-694))) 86) (($ (-295 (-317 (-701)))) 68) (($ (-295 (-317 (-699)))) 81) (($ (-295 (-317 (-694)))) 94) (($ (-317 (-566))) 105) (($ (-317 (-381))) 118) (($ (-317 (-169 (-381)))) 131) (($ (-295 (-317 (-566)))) 113) (($ (-295 (-317 (-381)))) 126) (($ (-295 (-317 (-169 (-381))))) 139)))
-(((-400 |#1| |#2| |#3| |#4|) (-13 (-397) (-10 -8 (-15 -2512 ($ (-331))) (-15 -2512 ($ (-644 (-331)))) (-15 -2512 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))) (-15 -2512 ($ (-317 (-701)))) (-15 -2512 ($ (-317 (-699)))) (-15 -2512 ($ (-317 (-694)))) (-15 -2512 ($ (-295 (-317 (-701))))) (-15 -2512 ($ (-295 (-317 (-699))))) (-15 -2512 ($ (-295 (-317 (-694))))) (-15 -2512 ($ (-317 (-566)))) (-15 -2512 ($ (-317 (-381)))) (-15 -2512 ($ (-317 (-169 (-381))))) (-15 -2512 ($ (-295 (-317 (-566))))) (-15 -2512 ($ (-295 (-317 (-381))))) (-15 -2512 ($ (-295 (-317 (-169 (-381)))))))) (-1175) (-3 (|:| |fst| (-436)) (|:| -4354 "void")) (-644 (-1175)) (-1179)) (T -400))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-331)) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-317 (-701))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-317 (-699))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-317 (-694))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-701)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-699)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-694)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-317 (-566))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-317 (-381))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-317 (-169 (-381)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-566)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-381)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-169 (-381))))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))))
-(-13 (-397) (-10 -8 (-15 -2512 ($ (-331))) (-15 -2512 ($ (-644 (-331)))) (-15 -2512 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))) (-15 -2512 ($ (-317 (-701)))) (-15 -2512 ($ (-317 (-699)))) (-15 -2512 ($ (-317 (-694)))) (-15 -2512 ($ (-295 (-317 (-701))))) (-15 -2512 ($ (-295 (-317 (-699))))) (-15 -2512 ($ (-295 (-317 (-694))))) (-15 -2512 ($ (-317 (-566)))) (-15 -2512 ($ (-317 (-381)))) (-15 -2512 ($ (-317 (-169 (-381))))) (-15 -2512 ($ (-295 (-317 (-566))))) (-15 -2512 ($ (-295 (-317 (-381))))) (-15 -2512 ($ (-295 (-317 (-169 (-381))))))))
-((-2985 (((-112) $ $) NIL)) (-1908 ((|#2| $) 38)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2648 (($ (-409 |#2|)) 95)) (-3388 (((-644 (-2 (|:| -3250 (-771)) (|:| -2420 |#2|) (|:| |num| |#2|))) $) 39)) (-2862 (($ $) 34) (($ $ (-771)) 36)) (-3134 (((-409 |#2|) $) 51)) (-2523 (($ (-644 (-2 (|:| -3250 (-771)) (|:| -2420 |#2|) (|:| |num| |#2|)))) 33)) (-2512 (((-862) $) 132)) (-3122 (((-112) $ $) NIL)) (-2840 (($ $) 35) (($ $ (-771)) 37)) (-2940 (((-112) $ $) NIL)) (-3034 (($ |#2| $) 41)))
-(((-401 |#1| |#2|) (-13 (-1099) (-614 (-409 |#2|)) (-10 -8 (-15 -3034 ($ |#2| $)) (-15 -2648 ($ (-409 |#2|))) (-15 -1908 (|#2| $)) (-15 -3388 ((-644 (-2 (|:| -3250 (-771)) (|:| -2420 |#2|) (|:| |num| |#2|))) $)) (-15 -2523 ($ (-644 (-2 (|:| -3250 (-771)) (|:| -2420 |#2|) (|:| |num| |#2|))))) (-15 -2862 ($ $)) (-15 -2840 ($ $)) (-15 -2862 ($ $ (-771))) (-15 -2840 ($ $ (-771))))) (-13 (-365) (-147)) (-1240 |#1|)) (T -401))
-((-3034 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *2)) (-4 *2 (-1240 *3)))) (-2648 (*1 *1 *2) (-12 (-5 *2 (-409 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4)))) (-1908 (*1 *2 *1) (-12 (-4 *2 (-1240 *3)) (-5 *1 (-401 *3 *2)) (-4 *3 (-13 (-365) (-147))))) (-3388 (*1 *2 *1) (-12 (-4 *3 (-13 (-365) (-147))) (-5 *2 (-644 (-2 (|:| -3250 (-771)) (|:| -2420 *4) (|:| |num| *4)))) (-5 *1 (-401 *3 *4)) (-4 *4 (-1240 *3)))) (-2523 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -3250 (-771)) (|:| -2420 *4) (|:| |num| *4)))) (-4 *4 (-1240 *3)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4)))) (-2862 (*1 *1 *1) (-12 (-4 *2 (-13 (-365) (-147))) (-5 *1 (-401 *2 *3)) (-4 *3 (-1240 *2)))) (-2840 (*1 *1 *1) (-12 (-4 *2 (-13 (-365) (-147))) (-5 *1 (-401 *2 *3)) (-4 *3 (-1240 *2)))) (-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4)) (-4 *4 (-1240 *3)))) (-2840 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4)) (-4 *4 (-1240 *3)))))
-(-13 (-1099) (-614 (-409 |#2|)) (-10 -8 (-15 -3034 ($ |#2| $)) (-15 -2648 ($ (-409 |#2|))) (-15 -1908 (|#2| $)) (-15 -3388 ((-644 (-2 (|:| -3250 (-771)) (|:| -2420 |#2|) (|:| |num| |#2|))) $)) (-15 -2523 ($ (-644 (-2 (|:| -3250 (-771)) (|:| -2420 |#2|) (|:| |num| |#2|))))) (-15 -2862 ($ $)) (-15 -2840 ($ $)) (-15 -2862 ($ $ (-771))) (-15 -2840 ($ $ (-771)))))
-((-2985 (((-112) $ $) 9 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 16 (|has| |#1| (-886 (-381)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 15 (|has| |#1| (-886 (-566))))) (-2878 (((-1157) $) 13 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))) (-4033 (((-1119) $) 12 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))) (-2512 (((-862) $) 11 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))) (-3122 (((-112) $ $) 14 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))) (-2940 (((-112) $ $) 10 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))))
+((-1799 (((-644 (-1157)) (-644 (-1157))) 9)) (-2440 (((-1269) (-390)) 27)) (-2846 (((-1103) (-1175) (-644 (-1175)) (-1178) (-644 (-1175))) 60) (((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175)) (-1175)) 35) (((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175))) 34)))
+(((-399) (-10 -7 (-15 -2846 ((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175)))) (-15 -2846 ((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175)) (-1175))) (-15 -2846 ((-1103) (-1175) (-644 (-1175)) (-1178) (-644 (-1175)))) (-15 -2440 ((-1269) (-390))) (-15 -1799 ((-644 (-1157)) (-644 (-1157)))))) (T -399))
+((-1799 (*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-399)))) (-2440 (*1 *2 *3) (-12 (-5 *3 (-390)) (-5 *2 (-1269)) (-5 *1 (-399)))) (-2846 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-644 (-1175))) (-5 *5 (-1178)) (-5 *3 (-1175)) (-5 *2 (-1103)) (-5 *1 (-399)))) (-2846 (*1 *2 *3 *4 *5 *6 *3) (-12 (-5 *5 (-644 (-644 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-644 (-3 (|:| |array| (-644 *3)) (|:| |scalar| (-1175))))) (-5 *6 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1103)) (-5 *1 (-399)))) (-2846 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-644 (-644 (-3 (|:| |array| *6) (|:| |scalar| *3))))) (-5 *4 (-644 (-3 (|:| |array| (-644 *3)) (|:| |scalar| (-1175))))) (-5 *6 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1103)) (-5 *1 (-399)))))
+(-10 -7 (-15 -2846 ((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175)))) (-15 -2846 ((-1103) (-1175) (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175)))) (-644 (-644 (-3 (|:| |array| (-644 (-1175))) (|:| |scalar| (-1175))))) (-644 (-1175)) (-1175))) (-15 -2846 ((-1103) (-1175) (-644 (-1175)) (-1178) (-644 (-1175)))) (-15 -2440 ((-1269) (-390))) (-15 -1799 ((-644 (-1157)) (-644 (-1157)))))
+((-2440 (((-1269) $) 36)) (-3780 (((-862) $) 98) (($ (-331)) 100) (($ (-644 (-331))) 99) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 97) (($ (-317 (-701))) 53) (($ (-317 (-699))) 73) (($ (-317 (-694))) 86) (($ (-295 (-317 (-701)))) 68) (($ (-295 (-317 (-699)))) 81) (($ (-295 (-317 (-694)))) 94) (($ (-317 (-566))) 105) (($ (-317 (-381))) 118) (($ (-317 (-169 (-381)))) 131) (($ (-295 (-317 (-566)))) 113) (($ (-295 (-317 (-381)))) 126) (($ (-295 (-317 (-169 (-381))))) 139)))
+(((-400 |#1| |#2| |#3| |#4|) (-13 (-397) (-10 -8 (-15 -3780 ($ (-331))) (-15 -3780 ($ (-644 (-331)))) (-15 -3780 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))) (-15 -3780 ($ (-317 (-701)))) (-15 -3780 ($ (-317 (-699)))) (-15 -3780 ($ (-317 (-694)))) (-15 -3780 ($ (-295 (-317 (-701))))) (-15 -3780 ($ (-295 (-317 (-699))))) (-15 -3780 ($ (-295 (-317 (-694))))) (-15 -3780 ($ (-317 (-566)))) (-15 -3780 ($ (-317 (-381)))) (-15 -3780 ($ (-317 (-169 (-381))))) (-15 -3780 ($ (-295 (-317 (-566))))) (-15 -3780 ($ (-295 (-317 (-381))))) (-15 -3780 ($ (-295 (-317 (-169 (-381)))))))) (-1175) (-3 (|:| |fst| (-436)) (|:| -1616 "void")) (-644 (-1175)) (-1179)) (T -400))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-331)) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-317 (-701))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-317 (-699))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-317 (-694))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-701)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-699)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-694)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-317 (-566))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-317 (-381))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-317 (-169 (-381)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-566)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-381)))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-295 (-317 (-169 (-381))))) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-14 *5 (-644 (-1175))) (-14 *6 (-1179)))))
+(-13 (-397) (-10 -8 (-15 -3780 ($ (-331))) (-15 -3780 ($ (-644 (-331)))) (-15 -3780 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))) (-15 -3780 ($ (-317 (-701)))) (-15 -3780 ($ (-317 (-699)))) (-15 -3780 ($ (-317 (-694)))) (-15 -3780 ($ (-295 (-317 (-701))))) (-15 -3780 ($ (-295 (-317 (-699))))) (-15 -3780 ($ (-295 (-317 (-694))))) (-15 -3780 ($ (-317 (-566)))) (-15 -3780 ($ (-317 (-381)))) (-15 -3780 ($ (-317 (-169 (-381))))) (-15 -3780 ($ (-295 (-317 (-566))))) (-15 -3780 ($ (-295 (-317 (-381))))) (-15 -3780 ($ (-295 (-317 (-169 (-381))))))))
+((-3009 (((-112) $ $) NIL)) (-2000 ((|#2| $) 38)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3758 (($ (-409 |#2|)) 95)) (-4284 (((-644 (-2 (|:| -2456 (-771)) (|:| -3174 |#2|) (|:| |num| |#2|))) $) 39)) (-2578 (($ $) 34) (($ $ (-771)) 36)) (-3204 (((-409 |#2|) $) 51)) (-3791 (($ (-644 (-2 (|:| -2456 (-771)) (|:| -3174 |#2|) (|:| |num| |#2|)))) 33)) (-3780 (((-862) $) 132)) (-3801 (((-112) $ $) NIL)) (-2876 (($ $) 35) (($ $ (-771)) 37)) (-2950 (((-112) $ $) NIL)) (-3040 (($ |#2| $) 41)))
+(((-401 |#1| |#2|) (-13 (-1099) (-614 (-409 |#2|)) (-10 -8 (-15 -3040 ($ |#2| $)) (-15 -3758 ($ (-409 |#2|))) (-15 -2000 (|#2| $)) (-15 -4284 ((-644 (-2 (|:| -2456 (-771)) (|:| -3174 |#2|) (|:| |num| |#2|))) $)) (-15 -3791 ($ (-644 (-2 (|:| -2456 (-771)) (|:| -3174 |#2|) (|:| |num| |#2|))))) (-15 -2578 ($ $)) (-15 -2876 ($ $)) (-15 -2578 ($ $ (-771))) (-15 -2876 ($ $ (-771))))) (-13 (-365) (-147)) (-1240 |#1|)) (T -401))
+((-3040 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *2)) (-4 *2 (-1240 *3)))) (-3758 (*1 *1 *2) (-12 (-5 *2 (-409 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4)))) (-2000 (*1 *2 *1) (-12 (-4 *2 (-1240 *3)) (-5 *1 (-401 *3 *2)) (-4 *3 (-13 (-365) (-147))))) (-4284 (*1 *2 *1) (-12 (-4 *3 (-13 (-365) (-147))) (-5 *2 (-644 (-2 (|:| -2456 (-771)) (|:| -3174 *4) (|:| |num| *4)))) (-5 *1 (-401 *3 *4)) (-4 *4 (-1240 *3)))) (-3791 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2456 (-771)) (|:| -3174 *4) (|:| |num| *4)))) (-4 *4 (-1240 *3)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4)))) (-2578 (*1 *1 *1) (-12 (-4 *2 (-13 (-365) (-147))) (-5 *1 (-401 *2 *3)) (-4 *3 (-1240 *2)))) (-2876 (*1 *1 *1) (-12 (-4 *2 (-13 (-365) (-147))) (-5 *1 (-401 *2 *3)) (-4 *3 (-1240 *2)))) (-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4)) (-4 *4 (-1240 *3)))) (-2876 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4)) (-4 *4 (-1240 *3)))))
+(-13 (-1099) (-614 (-409 |#2|)) (-10 -8 (-15 -3040 ($ |#2| $)) (-15 -3758 ($ (-409 |#2|))) (-15 -2000 (|#2| $)) (-15 -4284 ((-644 (-2 (|:| -2456 (-771)) (|:| -3174 |#2|) (|:| |num| |#2|))) $)) (-15 -3791 ($ (-644 (-2 (|:| -2456 (-771)) (|:| -3174 |#2|) (|:| |num| |#2|))))) (-15 -2578 ($ $)) (-15 -2876 ($ $)) (-15 -2578 ($ $ (-771))) (-15 -2876 ($ $ (-771)))))
+((-3009 (((-112) $ $) 9 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 16 (|has| |#1| (-886 (-381)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 15 (|has| |#1| (-886 (-566))))) (-2402 (((-1157) $) 13 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))) (-4056 (((-1119) $) 12 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))) (-3780 (((-862) $) 11 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))) (-3801 (((-112) $ $) 14 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))) (-2950 (((-112) $ $) 10 (-2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))))))
(((-402 |#1|) (-140) (-1214)) (T -402))
NIL
(-13 (-1214) (-10 -7 (IF (|has| |t#1| (-886 (-566))) (-6 (-886 (-566))) |%noBranch|) (IF (|has| |t#1| (-886 (-381))) (-6 (-886 (-381))) |%noBranch|)))
(((-102) -2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))) ((-613 (-862)) -2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))) ((-886 (-381)) |has| |#1| (-886 (-381))) ((-886 (-566)) |has| |#1| (-886 (-566))) ((-1099) -2805 (|has| |#1| (-886 (-566))) (|has| |#1| (-886 (-381)))) ((-1214) . T))
-((-3626 (($ $) 10) (($ $ (-771)) 12)))
-(((-403 |#1|) (-10 -8 (-15 -3626 (|#1| |#1| (-771))) (-15 -3626 (|#1| |#1|))) (-404)) (T -403))
+((-2901 (($ $) 10) (($ $ (-771)) 12)))
+(((-403 |#1|) (-10 -8 (-15 -2901 (|#1| |#1| (-771))) (-15 -2901 (|#1| |#1|))) (-404)) (T -403))
NIL
-(-10 -8 (-15 -3626 (|#1| |#1| (-771))) (-15 -3626 (|#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 81)) (-1370 (((-420 $) $) 80)) (-1561 (((-112) $ $) 65)) (-2342 (($) 18 T CONST)) (-2926 (($ $ $) 61)) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-3626 (($ $) 87) (($ $ (-771)) 86)) (-2635 (((-112) $) 79)) (-2716 (((-833 (-921)) $) 89)) (-2741 (((-112) $) 35)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 78)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-2391 (((-420 $) $) 82)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1813 (((-771) $) 64)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-3379 (((-3 (-771) "failed") $ $) 88)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74)) (-3842 (((-3 $ "failed") $) 90)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 73)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
+(-10 -8 (-15 -2901 (|#1| |#1| (-771))) (-15 -2901 (|#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 81)) (-3271 (((-420 $) $) 80)) (-2738 (((-112) $ $) 65)) (-3877 (($) 18 T CONST)) (-2949 (($ $ $) 61)) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-2901 (($ $) 87) (($ $ (-771)) 86)) (-1784 (((-112) $) 79)) (-3227 (((-833 (-921)) $) 89)) (-3466 (((-112) $) 35)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 78)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2473 (((-420 $) $) 82)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3470 (((-771) $) 64)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-2347 (((-3 (-771) "failed") $ $) 88)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74)) (-3226 (((-3 $ "failed") $) 90)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 73)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
(((-404) (-140)) (T -404))
-((-2716 (*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-833 (-921))))) (-3379 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-404)) (-5 *2 (-771)))) (-3626 (*1 *1 *1) (-4 *1 (-404))) (-3626 (*1 *1 *1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-771)))))
-(-13 (-365) (-145) (-10 -8 (-15 -2716 ((-833 (-921)) $)) (-15 -3379 ((-3 (-771) "failed") $ $)) (-15 -3626 ($ $)) (-15 -3626 ($ $ (-771)))))
+((-3227 (*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-833 (-921))))) (-2347 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-404)) (-5 *2 (-771)))) (-2901 (*1 *1 *1) (-4 *1 (-404))) (-2901 (*1 *1 *1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-771)))))
+(-13 (-365) (-145) (-10 -8 (-15 -3227 ((-833 (-921)) $)) (-15 -2347 ((-3 (-771) "failed") $ $)) (-15 -2901 ($ $)) (-15 -2901 ($ $ (-771)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-145) . T) ((-616 #0#) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-243) . T) ((-291) . T) ((-308) . T) ((-365) . T) ((-454) . T) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 $) . T) ((-640 #0#) . T) ((-640 $) . T) ((-717 #0#) . T) ((-717 $) . T) ((-726) . T) ((-920) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) . T))
-((-2965 (($ (-566) (-566)) 11) (($ (-566) (-566) (-921)) NIL)) (-3159 (((-921)) 20) (((-921) (-921)) NIL)))
-(((-405 |#1|) (-10 -8 (-15 -3159 ((-921) (-921))) (-15 -3159 ((-921))) (-15 -2965 (|#1| (-566) (-566) (-921))) (-15 -2965 (|#1| (-566) (-566)))) (-406)) (T -405))
-((-3159 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-405 *3)) (-4 *3 (-406)))) (-3159 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-405 *3)) (-4 *3 (-406)))))
-(-10 -8 (-15 -3159 ((-921) (-921))) (-15 -3159 ((-921))) (-15 -2965 (|#1| (-566) (-566) (-921))) (-15 -2965 (|#1| (-566) (-566))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2452 (((-566) $) 97)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-1881 (($ $) 95)) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 81)) (-1370 (((-420 $) $) 80)) (-2402 (($ $) 105)) (-1561 (((-112) $ $) 65)) (-2807 (((-566) $) 122)) (-2342 (($) 18 T CONST)) (-4380 (($ $) 94)) (-2977 (((-3 (-566) "failed") $) 110) (((-3 (-409 (-566)) "failed") $) 107)) (-1756 (((-566) $) 111) (((-409 (-566)) $) 108)) (-2926 (($ $ $) 61)) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-2635 (((-112) $) 79)) (-3524 (((-921)) 138) (((-921) (-921)) 135 (|has| $ (-6 -4408)))) (-1684 (((-112) $) 120)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 101)) (-2716 (((-566) $) 144)) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 104)) (-1559 (($ $) 100)) (-1578 (((-112) $) 121)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-1439 (($ $ $) 119) (($) 132 (-12 (-2426 (|has| $ (-6 -4408))) (-2426 (|has| $ (-6 -4400)))))) (-3059 (($ $ $) 118) (($) 131 (-12 (-2426 (|has| $ (-6 -4408))) (-2426 (|has| $ (-6 -4400)))))) (-1728 (((-566) $) 141)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 78)) (-2524 (((-921) (-566)) 134 (|has| $ (-6 -4408)))) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-1539 (($ $) 96)) (-4317 (($ $) 98)) (-2965 (($ (-566) (-566)) 146) (($ (-566) (-566) (-921)) 145)) (-2391 (((-420 $) $) 82)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3250 (((-566) $) 142)) (-1813 (((-771) $) 64)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-3159 (((-921)) 139) (((-921) (-921)) 136 (|has| $ (-6 -4408)))) (-1870 (((-921) (-566)) 133 (|has| $ (-6 -4408)))) (-3134 (((-381) $) 113) (((-225) $) 112) (((-892 (-381)) $) 102)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ (-566)) 109) (($ (-409 (-566))) 106)) (-3795 (((-771)) 32 T CONST)) (-1604 (($ $) 99)) (-3082 (((-921)) 140) (((-921) (-921)) 137 (|has| $ (-6 -4408)))) (-3122 (((-112) $ $) 9)) (-3306 (((-921)) 143)) (-1634 (((-112) $ $) 45)) (-1346 (($ $) 123)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2998 (((-112) $ $) 116)) (-2974 (((-112) $ $) 115)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 117)) (-2962 (((-112) $ $) 114)) (-3061 (($ $ $) 73)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77) (($ $ (-409 (-566))) 103)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
+((-2987 (($ (-566) (-566)) 11) (($ (-566) (-566) (-921)) NIL)) (-4085 (((-921)) 20) (((-921) (-921)) NIL)))
+(((-405 |#1|) (-10 -8 (-15 -4085 ((-921) (-921))) (-15 -4085 ((-921))) (-15 -2987 (|#1| (-566) (-566) (-921))) (-15 -2987 (|#1| (-566) (-566)))) (-406)) (T -405))
+((-4085 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-405 *3)) (-4 *3 (-406)))) (-4085 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-405 *3)) (-4 *3 (-406)))))
+(-10 -8 (-15 -4085 ((-921) (-921))) (-15 -4085 ((-921))) (-15 -2987 (|#1| (-566) (-566) (-921))) (-15 -2987 (|#1| (-566) (-566))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2486 (((-566) $) 97)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-2922 (($ $) 95)) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 81)) (-3271 (((-420 $) $) 80)) (-2484 (($ $) 105)) (-2738 (((-112) $ $) 65)) (-2899 (((-566) $) 122)) (-3877 (($) 18 T CONST)) (-1591 (($ $) 94)) (-3066 (((-3 (-566) "failed") $) 110) (((-3 (-409 (-566)) "failed") $) 107)) (-1867 (((-566) $) 111) (((-409 (-566)) $) 108)) (-2949 (($ $ $) 61)) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-1784 (((-112) $) 79)) (-1769 (((-921)) 138) (((-921) (-921)) 135 (|has| $ (-6 -4405)))) (-1533 (((-112) $) 120)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 101)) (-3227 (((-566) $) 144)) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 104)) (-2719 (($ $) 100)) (-2917 (((-112) $) 121)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-1945 (($ $ $) 119) (($) 132 (-12 (-2436 (|has| $ (-6 -4405))) (-2436 (|has| $ (-6 -4397)))))) (-2709 (($ $ $) 118) (($) 131 (-12 (-2436 (|has| $ (-6 -4405))) (-2436 (|has| $ (-6 -4397)))))) (-1791 (((-566) $) 141)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 78)) (-1924 (((-921) (-566)) 134 (|has| $ (-6 -4405)))) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2539 (($ $) 96)) (-2209 (($ $) 98)) (-2987 (($ (-566) (-566)) 146) (($ (-566) (-566) (-921)) 145)) (-2473 (((-420 $) $) 82)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-2456 (((-566) $) 142)) (-3470 (((-771) $) 64)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-4085 (((-921)) 139) (((-921) (-921)) 136 (|has| $ (-6 -4405)))) (-2813 (((-921) (-566)) 133 (|has| $ (-6 -4405)))) (-3204 (((-381) $) 113) (((-225) $) 112) (((-892 (-381)) $) 102)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ (-566)) 109) (($ (-409 (-566))) 106)) (-3996 (((-771)) 32 T CONST)) (-1982 (($ $) 99)) (-1586 (((-921)) 140) (((-921) (-921)) 137 (|has| $ (-6 -4405)))) (-3801 (((-112) $ $) 9)) (-3819 (((-921)) 143)) (-2278 (((-112) $ $) 45)) (-3333 (($ $) 123)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-3010 (((-112) $ $) 116)) (-2984 (((-112) $ $) 115)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 117)) (-2972 (((-112) $ $) 114)) (-3062 (($ $ $) 73)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77) (($ $ (-409 (-566))) 103)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
(((-406) (-140)) (T -406))
-((-2965 (*1 *1 *2 *2) (-12 (-5 *2 (-566)) (-4 *1 (-406)))) (-2965 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-921)) (-4 *1 (-406)))) (-2716 (*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566)))) (-3306 (*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))) (-3250 (*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566)))) (-1728 (*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566)))) (-3082 (*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))) (-3159 (*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))) (-3524 (*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))) (-3082 (*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4408)) (-4 *1 (-406)))) (-3159 (*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4408)) (-4 *1 (-406)))) (-3524 (*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4408)) (-4 *1 (-406)))) (-2524 (*1 *2 *3) (-12 (-5 *3 (-566)) (|has| *1 (-6 -4408)) (-4 *1 (-406)) (-5 *2 (-921)))) (-1870 (*1 *2 *3) (-12 (-5 *3 (-566)) (|has| *1 (-6 -4408)) (-4 *1 (-406)) (-5 *2 (-921)))) (-1439 (*1 *1) (-12 (-4 *1 (-406)) (-2426 (|has| *1 (-6 -4408))) (-2426 (|has| *1 (-6 -4400))))) (-3059 (*1 *1) (-12 (-4 *1 (-406)) (-2426 (|has| *1 (-6 -4408))) (-2426 (|has| *1 (-6 -4400))))))
-(-13 (-1059) (-10 -8 (-6 -3645) (-15 -2965 ($ (-566) (-566))) (-15 -2965 ($ (-566) (-566) (-921))) (-15 -2716 ((-566) $)) (-15 -3306 ((-921))) (-15 -3250 ((-566) $)) (-15 -1728 ((-566) $)) (-15 -3082 ((-921))) (-15 -3159 ((-921))) (-15 -3524 ((-921))) (IF (|has| $ (-6 -4408)) (PROGN (-15 -3082 ((-921) (-921))) (-15 -3159 ((-921) (-921))) (-15 -3524 ((-921) (-921))) (-15 -2524 ((-921) (-566))) (-15 -1870 ((-921) (-566)))) |%noBranch|) (IF (|has| $ (-6 -4400)) |%noBranch| (IF (|has| $ (-6 -4408)) |%noBranch| (PROGN (-15 -1439 ($)) (-15 -3059 ($)))))))
+((-2987 (*1 *1 *2 *2) (-12 (-5 *2 (-566)) (-4 *1 (-406)))) (-2987 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-921)) (-4 *1 (-406)))) (-3227 (*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566)))) (-3819 (*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))) (-2456 (*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566)))) (-1791 (*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566)))) (-1586 (*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))) (-4085 (*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))) (-1769 (*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))) (-1586 (*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4405)) (-4 *1 (-406)))) (-4085 (*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4405)) (-4 *1 (-406)))) (-1769 (*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4405)) (-4 *1 (-406)))) (-1924 (*1 *2 *3) (-12 (-5 *3 (-566)) (|has| *1 (-6 -4405)) (-4 *1 (-406)) (-5 *2 (-921)))) (-2813 (*1 *2 *3) (-12 (-5 *3 (-566)) (|has| *1 (-6 -4405)) (-4 *1 (-406)) (-5 *2 (-921)))) (-1945 (*1 *1) (-12 (-4 *1 (-406)) (-2436 (|has| *1 (-6 -4405))) (-2436 (|has| *1 (-6 -4397))))) (-2709 (*1 *1) (-12 (-4 *1 (-406)) (-2436 (|has| *1 (-6 -4405))) (-2436 (|has| *1 (-6 -4397))))))
+(-13 (-1059) (-10 -8 (-6 -3651) (-15 -2987 ($ (-566) (-566))) (-15 -2987 ($ (-566) (-566) (-921))) (-15 -3227 ((-566) $)) (-15 -3819 ((-921))) (-15 -2456 ((-566) $)) (-15 -1791 ((-566) $)) (-15 -1586 ((-921))) (-15 -4085 ((-921))) (-15 -1769 ((-921))) (IF (|has| $ (-6 -4405)) (PROGN (-15 -1586 ((-921) (-921))) (-15 -4085 ((-921) (-921))) (-15 -1769 ((-921) (-921))) (-15 -1924 ((-921) (-566))) (-15 -2813 ((-921) (-566)))) |%noBranch|) (IF (|has| $ (-6 -4397)) |%noBranch| (IF (|has| $ (-6 -4405)) |%noBranch| (PROGN (-15 -1945 ($)) (-15 -2709 ($)))))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-147) . T) ((-616 #0#) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-614 (-225)) . T) ((-614 (-381)) . T) ((-614 (-892 (-381))) . T) ((-243) . T) ((-291) . T) ((-308) . T) ((-365) . T) ((-454) . T) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 $) . T) ((-640 #0#) . T) ((-640 $) . T) ((-717 #0#) . T) ((-717 $) . T) ((-726) . T) ((-791) . T) ((-792) . T) ((-794) . T) ((-795) . T) ((-848) . T) ((-850) . T) ((-886 (-381)) . T) ((-920) . T) ((-1002) . T) ((-1022) . T) ((-1059) . T) ((-1038 (-409 (-566))) . T) ((-1038 (-566)) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) . T))
-((-3077 (((-420 |#2|) (-1 |#2| |#1|) (-420 |#1|)) 20)))
-(((-407 |#1| |#2|) (-10 -7 (-15 -3077 ((-420 |#2|) (-1 |#2| |#1|) (-420 |#1|)))) (-558) (-558)) (T -407))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-420 *5)) (-4 *5 (-558)) (-4 *6 (-558)) (-5 *2 (-420 *6)) (-5 *1 (-407 *5 *6)))))
-(-10 -7 (-15 -3077 ((-420 |#2|) (-1 |#2| |#1|) (-420 |#1|))))
-((-3077 (((-409 |#2|) (-1 |#2| |#1|) (-409 |#1|)) 13)))
-(((-408 |#1| |#2|) (-10 -7 (-15 -3077 ((-409 |#2|) (-1 |#2| |#1|) (-409 |#1|)))) (-558) (-558)) (T -408))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-409 *5)) (-4 *5 (-558)) (-4 *6 (-558)) (-5 *2 (-409 *6)) (-5 *1 (-408 *5 *6)))))
-(-10 -7 (-15 -3077 ((-409 |#2|) (-1 |#2| |#1|) (-409 |#1|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 13)) (-2452 ((|#1| $) 21 (|has| |#1| (-308)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL (|has| |#1| (-820)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) 17) (((-3 (-1175) "failed") $) NIL (|has| |#1| (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) 72 (|has| |#1| (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566))))) (-1756 ((|#1| $) 15) (((-1175) $) NIL (|has| |#1| (-1038 (-1175)))) (((-409 (-566)) $) 69 (|has| |#1| (-1038 (-566)))) (((-566) $) NIL (|has| |#1| (-1038 (-566))))) (-2926 (($ $ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) 51)) (-3335 (($) NIL (|has| |#1| (-547)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-1684 (((-112) $) NIL (|has| |#1| (-820)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| |#1| (-886 (-381))))) (-2741 (((-112) $) 57)) (-2861 (($ $) NIL)) (-3001 ((|#1| $) 73)) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-1150)))) (-1578 (((-112) $) NIL (|has| |#1| (-820)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| |#1| (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 100)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL (|has| |#1| (-308)))) (-4317 ((|#1| $) 28 (|has| |#1| (-547)))) (-1647 (((-420 (-1171 $)) (-1171 $)) 148 (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) 141 (|has| |#1| (-909)))) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2070 (($ $ (-644 |#1|) (-644 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-516 (-1175) |#1|)))) (-1813 (((-771) $) NIL)) (-4386 (($ $ |#1|) NIL (|has| |#1| (-287 |#1| |#1|)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) 64)) (-3413 (($ $) NIL)) (-3013 ((|#1| $) 75)) (-3134 (((-892 (-566)) $) NIL (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| |#1| (-614 (-892 (-381))))) (((-538) $) NIL (|has| |#1| (-614 (-538)))) (((-381) $) NIL (|has| |#1| (-1022))) (((-225) $) NIL (|has| |#1| (-1022)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 125 (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 10) (($ (-1175)) NIL (|has| |#1| (-1038 (-1175))))) (-3842 (((-3 $ "failed") $) 102 (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) 103 T CONST)) (-1604 ((|#1| $) 26 (|has| |#1| (-547)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-1346 (($ $) NIL (|has| |#1| (-820)))) (-2485 (($) 22 T CONST)) (-2495 (($) 8 T CONST)) (-2178 (((-1157) $) 44 (-12 (|has| |#1| (-547)) (|has| |#1| (-828)))) (((-1157) $ (-112)) 45 (-12 (|has| |#1| (-547)) (|has| |#1| (-828)))) (((-1269) (-822) $) 46 (-12 (|has| |#1| (-547)) (|has| |#1| (-828)))) (((-1269) (-822) $ (-112)) 47 (-12 (|has| |#1| (-547)) (|has| |#1| (-828))))) (-2840 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) 66)) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) 24 (|has| |#1| (-850)))) (-3061 (($ $ $) 136) (($ |#1| |#1|) 53)) (-3047 (($ $) 25) (($ $ $) 56)) (-3034 (($ $ $) 54)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 135)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 61) (($ $ $) 58) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ |#1| $) 62) (($ $ |#1|) 88)))
-(((-409 |#1|) (-13 (-992 |#1|) (-10 -7 (IF (|has| |#1| (-547)) (IF (|has| |#1| (-828)) (-6 (-828)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4404)) (IF (|has| |#1| (-454)) (IF (|has| |#1| (-6 -4415)) (-6 -4404) |%noBranch|) |%noBranch|) |%noBranch|))) (-558)) (T -409))
-NIL
-(-13 (-992 |#1|) (-10 -7 (IF (|has| |#1| (-547)) (IF (|has| |#1| (-828)) (-6 (-828)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4404)) (IF (|has| |#1| (-454)) (IF (|has| |#1| (-6 -4415)) (-6 -4404) |%noBranch|) |%noBranch|) |%noBranch|)))
-((-3953 (((-689 |#2|) (-1264 $)) NIL) (((-689 |#2|)) 18)) (-1547 (($ (-1264 |#2|) (-1264 $)) NIL) (($ (-1264 |#2|)) 24)) (-1929 (((-689 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) $) 40)) (-3929 ((|#3| $) 73)) (-2408 ((|#2| (-1264 $)) NIL) ((|#2|) 20)) (-2770 (((-1264 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) (-1264 $) (-1264 $)) NIL) (((-1264 |#2|) $) 22) (((-689 |#2|) (-1264 $)) 38)) (-3134 (((-1264 |#2|) $) 11) (($ (-1264 |#2|)) 13)) (-1963 ((|#3| $) 55)))
-(((-410 |#1| |#2| |#3|) (-10 -8 (-15 -1929 ((-689 |#2|) |#1|)) (-15 -2408 (|#2|)) (-15 -3953 ((-689 |#2|))) (-15 -3134 (|#1| (-1264 |#2|))) (-15 -3134 ((-1264 |#2|) |#1|)) (-15 -1547 (|#1| (-1264 |#2|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1|)) (-15 -3929 (|#3| |#1|)) (-15 -1963 (|#3| |#1|)) (-15 -3953 ((-689 |#2|) (-1264 |#1|))) (-15 -2408 (|#2| (-1264 |#1|))) (-15 -1547 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -1929 ((-689 |#2|) |#1| (-1264 |#1|)))) (-411 |#2| |#3|) (-172) (-1240 |#2|)) (T -410))
-((-3953 (*1 *2) (-12 (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4)) (-5 *1 (-410 *3 *4 *5)) (-4 *3 (-411 *4 *5)))) (-2408 (*1 *2) (-12 (-4 *4 (-1240 *2)) (-4 *2 (-172)) (-5 *1 (-410 *3 *2 *4)) (-4 *3 (-411 *2 *4)))))
-(-10 -8 (-15 -1929 ((-689 |#2|) |#1|)) (-15 -2408 (|#2|)) (-15 -3953 ((-689 |#2|))) (-15 -3134 (|#1| (-1264 |#2|))) (-15 -3134 ((-1264 |#2|) |#1|)) (-15 -1547 (|#1| (-1264 |#2|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1|)) (-15 -3929 (|#3| |#1|)) (-15 -1963 (|#3| |#1|)) (-15 -3953 ((-689 |#2|) (-1264 |#1|))) (-15 -2408 (|#2| (-1264 |#1|))) (-15 -1547 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -1929 ((-689 |#2|) |#1| (-1264 |#1|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-3953 (((-689 |#1|) (-1264 $)) 53) (((-689 |#1|)) 68)) (-3817 ((|#1| $) 59)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1547 (($ (-1264 |#1|) (-1264 $)) 55) (($ (-1264 |#1|)) 71)) (-1929 (((-689 |#1|) $ (-1264 $)) 60) (((-689 |#1|) $) 66)) (-1579 (((-3 $ "failed") $) 37)) (-1821 (((-921)) 61)) (-2741 (((-112) $) 35)) (-1559 ((|#1| $) 58)) (-3929 ((|#2| $) 51 (|has| |#1| (-365)))) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2408 ((|#1| (-1264 $)) 54) ((|#1|) 67)) (-2770 (((-1264 |#1|) $ (-1264 $)) 57) (((-689 |#1|) (-1264 $) (-1264 $)) 56) (((-1264 |#1|) $) 73) (((-689 |#1|) (-1264 $)) 72)) (-3134 (((-1264 |#1|) $) 70) (($ (-1264 |#1|)) 69)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44)) (-3842 (((-3 $ "failed") $) 50 (|has| |#1| (-145)))) (-1963 ((|#2| $) 52)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1990 (((-1264 $)) 74)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+((-3152 (((-420 |#2|) (-1 |#2| |#1|) (-420 |#1|)) 20)))
+(((-407 |#1| |#2|) (-10 -7 (-15 -3152 ((-420 |#2|) (-1 |#2| |#1|) (-420 |#1|)))) (-558) (-558)) (T -407))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-420 *5)) (-4 *5 (-558)) (-4 *6 (-558)) (-5 *2 (-420 *6)) (-5 *1 (-407 *5 *6)))))
+(-10 -7 (-15 -3152 ((-420 |#2|) (-1 |#2| |#1|) (-420 |#1|))))
+((-3152 (((-409 |#2|) (-1 |#2| |#1|) (-409 |#1|)) 13)))
+(((-408 |#1| |#2|) (-10 -7 (-15 -3152 ((-409 |#2|) (-1 |#2| |#1|) (-409 |#1|)))) (-558) (-558)) (T -408))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-409 *5)) (-4 *5 (-558)) (-4 *6 (-558)) (-5 *2 (-409 *6)) (-5 *1 (-408 *5 *6)))))
+(-10 -7 (-15 -3152 ((-409 |#2|) (-1 |#2| |#1|) (-409 |#1|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 13)) (-2486 ((|#1| $) 21 (|has| |#1| (-308)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL (|has| |#1| (-820)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) 17) (((-3 (-1175) "failed") $) NIL (|has| |#1| (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) 72 (|has| |#1| (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566))))) (-1867 ((|#1| $) 15) (((-1175) $) NIL (|has| |#1| (-1038 (-1175)))) (((-409 (-566)) $) 69 (|has| |#1| (-1038 (-566)))) (((-566) $) NIL (|has| |#1| (-1038 (-566))))) (-2949 (($ $ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) 51)) (-1618 (($) NIL (|has| |#1| (-547)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1533 (((-112) $) NIL (|has| |#1| (-820)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| |#1| (-886 (-381))))) (-3466 (((-112) $) 57)) (-2227 (($ $) NIL)) (-3088 ((|#1| $) 73)) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-1150)))) (-2917 (((-112) $) NIL (|has| |#1| (-820)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| |#1| (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 100)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL (|has| |#1| (-308)))) (-2209 ((|#1| $) 28 (|has| |#1| (-547)))) (-4255 (((-420 (-1171 $)) (-1171 $)) 148 (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) 141 (|has| |#1| (-909)))) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2095 (($ $ (-644 |#1|) (-644 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-516 (-1175) |#1|)))) (-3470 (((-771) $) NIL)) (-4393 (($ $ |#1|) NIL (|has| |#1| (-287 |#1| |#1|)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) 64)) (-1431 (($ $) NIL)) (-3100 ((|#1| $) 75)) (-3204 (((-892 (-566)) $) NIL (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| |#1| (-614 (-892 (-381))))) (((-538) $) NIL (|has| |#1| (-614 (-538)))) (((-381) $) NIL (|has| |#1| (-1022))) (((-225) $) NIL (|has| |#1| (-1022)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 125 (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 10) (($ (-1175)) NIL (|has| |#1| (-1038 (-1175))))) (-3226 (((-3 $ "failed") $) 102 (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) 103 T CONST)) (-1982 ((|#1| $) 26 (|has| |#1| (-547)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3333 (($ $) NIL (|has| |#1| (-820)))) (-2493 (($) 22 T CONST)) (-4333 (($) 8 T CONST)) (-2852 (((-1157) $) 44 (-12 (|has| |#1| (-547)) (|has| |#1| (-828)))) (((-1157) $ (-112)) 45 (-12 (|has| |#1| (-547)) (|has| |#1| (-828)))) (((-1269) (-822) $) 46 (-12 (|has| |#1| (-547)) (|has| |#1| (-828)))) (((-1269) (-822) $ (-112)) 47 (-12 (|has| |#1| (-547)) (|has| |#1| (-828))))) (-2876 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) 66)) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) 24 (|has| |#1| (-850)))) (-3062 (($ $ $) 136) (($ |#1| |#1|) 53)) (-3051 (($ $) 25) (($ $ $) 56)) (-3040 (($ $ $) 54)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 135)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 61) (($ $ $) 58) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ |#1| $) 62) (($ $ |#1|) 88)))
+(((-409 |#1|) (-13 (-992 |#1|) (-10 -7 (IF (|has| |#1| (-547)) (IF (|has| |#1| (-828)) (-6 (-828)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4401)) (IF (|has| |#1| (-454)) (IF (|has| |#1| (-6 -4412)) (-6 -4401) |%noBranch|) |%noBranch|) |%noBranch|))) (-558)) (T -409))
+NIL
+(-13 (-992 |#1|) (-10 -7 (IF (|has| |#1| (-547)) (IF (|has| |#1| (-828)) (-6 (-828)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4401)) (IF (|has| |#1| (-454)) (IF (|has| |#1| (-6 -4412)) (-6 -4401) |%noBranch|) |%noBranch|) |%noBranch|)))
+((-2965 (((-689 |#2|) (-1264 $)) NIL) (((-689 |#2|)) 18)) (-2613 (($ (-1264 |#2|) (-1264 $)) NIL) (($ (-1264 |#2|)) 24)) (-2205 (((-689 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) $) 40)) (-2750 ((|#3| $) 73)) (-3309 ((|#2| (-1264 $)) NIL) ((|#2|) 20)) (-2543 (((-1264 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) (-1264 $) (-1264 $)) NIL) (((-1264 |#2|) $) 22) (((-689 |#2|) (-1264 $)) 38)) (-3204 (((-1264 |#2|) $) 11) (($ (-1264 |#2|)) 13)) (-4370 ((|#3| $) 55)))
+(((-410 |#1| |#2| |#3|) (-10 -8 (-15 -2205 ((-689 |#2|) |#1|)) (-15 -3309 (|#2|)) (-15 -2965 ((-689 |#2|))) (-15 -3204 (|#1| (-1264 |#2|))) (-15 -3204 ((-1264 |#2|) |#1|)) (-15 -2613 (|#1| (-1264 |#2|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1|)) (-15 -2750 (|#3| |#1|)) (-15 -4370 (|#3| |#1|)) (-15 -2965 ((-689 |#2|) (-1264 |#1|))) (-15 -3309 (|#2| (-1264 |#1|))) (-15 -2613 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -2205 ((-689 |#2|) |#1| (-1264 |#1|)))) (-411 |#2| |#3|) (-172) (-1240 |#2|)) (T -410))
+((-2965 (*1 *2) (-12 (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4)) (-5 *1 (-410 *3 *4 *5)) (-4 *3 (-411 *4 *5)))) (-3309 (*1 *2) (-12 (-4 *4 (-1240 *2)) (-4 *2 (-172)) (-5 *1 (-410 *3 *2 *4)) (-4 *3 (-411 *2 *4)))))
+(-10 -8 (-15 -2205 ((-689 |#2|) |#1|)) (-15 -3309 (|#2|)) (-15 -2965 ((-689 |#2|))) (-15 -3204 (|#1| (-1264 |#2|))) (-15 -3204 ((-1264 |#2|) |#1|)) (-15 -2613 (|#1| (-1264 |#2|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1|)) (-15 -2750 (|#3| |#1|)) (-15 -4370 (|#3| |#1|)) (-15 -2965 ((-689 |#2|) (-1264 |#1|))) (-15 -3309 (|#2| (-1264 |#1|))) (-15 -2613 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -2205 ((-689 |#2|) |#1| (-1264 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2965 (((-689 |#1|) (-1264 $)) 53) (((-689 |#1|)) 68)) (-3834 ((|#1| $) 59)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2613 (($ (-1264 |#1|) (-1264 $)) 55) (($ (-1264 |#1|)) 71)) (-2205 (((-689 |#1|) $ (-1264 $)) 60) (((-689 |#1|) $) 66)) (-2928 (((-3 $ "failed") $) 37)) (-4157 (((-921)) 61)) (-3466 (((-112) $) 35)) (-2719 ((|#1| $) 58)) (-2750 ((|#2| $) 51 (|has| |#1| (-365)))) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3309 ((|#1| (-1264 $)) 54) ((|#1|) 67)) (-2543 (((-1264 |#1|) $ (-1264 $)) 57) (((-689 |#1|) (-1264 $) (-1264 $)) 56) (((-1264 |#1|) $) 73) (((-689 |#1|) (-1264 $)) 72)) (-3204 (((-1264 |#1|) $) 70) (($ (-1264 |#1|)) 69)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44)) (-3226 (((-3 $ "failed") $) 50 (|has| |#1| (-145)))) (-4370 ((|#2| $) 52)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-1575 (((-1264 $)) 74)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
(((-411 |#1| |#2|) (-140) (-172) (-1240 |t#1|)) (T -411))
-((-1990 (*1 *2) (-12 (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-1264 *1)) (-4 *1 (-411 *3 *4)))) (-2770 (*1 *2 *1) (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-1264 *3)))) (-2770 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-411 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4)))) (-1547 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-411 *3 *4)) (-4 *4 (-1240 *3)))) (-3134 (*1 *2 *1) (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-1264 *3)))) (-3134 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-411 *3 *4)) (-4 *4 (-1240 *3)))) (-3953 (*1 *2) (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-689 *3)))) (-2408 (*1 *2) (-12 (-4 *1 (-411 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172)))) (-1929 (*1 *2 *1) (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-689 *3)))))
-(-13 (-372 |t#1| |t#2|) (-10 -8 (-15 -1990 ((-1264 $))) (-15 -2770 ((-1264 |t#1|) $)) (-15 -2770 ((-689 |t#1|) (-1264 $))) (-15 -1547 ($ (-1264 |t#1|))) (-15 -3134 ((-1264 |t#1|) $)) (-15 -3134 ($ (-1264 |t#1|))) (-15 -3953 ((-689 |t#1|))) (-15 -2408 (|t#1|)) (-15 -1929 ((-689 |t#1|) $))))
+((-1575 (*1 *2) (-12 (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-1264 *1)) (-4 *1 (-411 *3 *4)))) (-2543 (*1 *2 *1) (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-1264 *3)))) (-2543 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-411 *4 *5)) (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4)))) (-2613 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-411 *3 *4)) (-4 *4 (-1240 *3)))) (-3204 (*1 *2 *1) (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-1264 *3)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-411 *3 *4)) (-4 *4 (-1240 *3)))) (-2965 (*1 *2) (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-689 *3)))) (-3309 (*1 *2) (-12 (-4 *1 (-411 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172)))) (-2205 (*1 *2 *1) (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-689 *3)))))
+(-13 (-372 |t#1| |t#2|) (-10 -8 (-15 -1575 ((-1264 $))) (-15 -2543 ((-1264 |t#1|) $)) (-15 -2543 ((-689 |t#1|) (-1264 $))) (-15 -2613 ($ (-1264 |t#1|))) (-15 -3204 ((-1264 |t#1|) $)) (-15 -3204 ($ (-1264 |t#1|))) (-15 -2965 ((-689 |t#1|))) (-15 -3309 (|t#1|)) (-15 -2205 ((-689 |t#1|) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-372 |#1| |#2|) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 |#1|) . T) ((-717 |#1|) . T) ((-726) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2977 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) 27) (((-3 (-566) "failed") $) 19)) (-1756 ((|#2| $) NIL) (((-409 (-566)) $) 24) (((-566) $) 14)) (-2512 (($ |#2|) NIL) (($ (-409 (-566))) 22) (($ (-566)) 11)))
-(((-412 |#1| |#2|) (-10 -8 (-15 -2512 (|#1| (-566))) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -2512 (|#1| |#2|))) (-413 |#2|) (-1214)) (T -412))
+((-3066 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) 27) (((-3 (-566) "failed") $) 19)) (-1867 ((|#2| $) NIL) (((-409 (-566)) $) 24) (((-566) $) 14)) (-3780 (($ |#2|) NIL) (($ (-409 (-566))) 22) (($ (-566)) 11)))
+(((-412 |#1| |#2|) (-10 -8 (-15 -3780 (|#1| (-566))) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3780 (|#1| |#2|))) (-413 |#2|) (-1214)) (T -412))
NIL
-(-10 -8 (-15 -2512 (|#1| (-566))) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -2512 (|#1| |#2|)))
-((-2977 (((-3 |#1| "failed") $) 9) (((-3 (-409 (-566)) "failed") $) 16 (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) 13 (|has| |#1| (-1038 (-566))))) (-1756 ((|#1| $) 8) (((-409 (-566)) $) 17 (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) 14 (|has| |#1| (-1038 (-566))))) (-2512 (($ |#1|) 6) (($ (-409 (-566))) 15 (|has| |#1| (-1038 (-409 (-566))))) (($ (-566)) 12 (|has| |#1| (-1038 (-566))))))
+(-10 -8 (-15 -3780 (|#1| (-566))) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3780 (|#1| |#2|)))
+((-3066 (((-3 |#1| "failed") $) 9) (((-3 (-409 (-566)) "failed") $) 16 (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) 13 (|has| |#1| (-1038 (-566))))) (-1867 ((|#1| $) 8) (((-409 (-566)) $) 17 (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) 14 (|has| |#1| (-1038 (-566))))) (-3780 (($ |#1|) 6) (($ (-409 (-566))) 15 (|has| |#1| (-1038 (-409 (-566))))) (($ (-566)) 12 (|has| |#1| (-1038 (-566))))))
(((-413 |#1|) (-140) (-1214)) (T -413))
NIL
(-13 (-1038 |t#1|) (-10 -7 (IF (|has| |t#1| (-1038 (-566))) (-6 (-1038 (-566))) |%noBranch|) (IF (|has| |t#1| (-1038 (-409 (-566)))) (-6 (-1038 (-409 (-566)))) |%noBranch|)))
(((-616 #0=(-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-616 #1=(-566)) |has| |#1| (-1038 (-566))) ((-616 |#1|) . T) ((-1038 #0#) |has| |#1| (-1038 (-409 (-566)))) ((-1038 #1#) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T))
-((-3077 (((-415 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-415 |#1| |#2| |#3| |#4|)) 35)))
-(((-414 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3077 ((-415 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-415 |#1| |#2| |#3| |#4|)))) (-308) (-992 |#1|) (-1240 |#2|) (-13 (-411 |#2| |#3|) (-1038 |#2|)) (-308) (-992 |#5|) (-1240 |#6|) (-13 (-411 |#6| |#7|) (-1038 |#6|))) (T -414))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-415 *5 *6 *7 *8)) (-4 *5 (-308)) (-4 *6 (-992 *5)) (-4 *7 (-1240 *6)) (-4 *8 (-13 (-411 *6 *7) (-1038 *6))) (-4 *9 (-308)) (-4 *10 (-992 *9)) (-4 *11 (-1240 *10)) (-5 *2 (-415 *9 *10 *11 *12)) (-5 *1 (-414 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-411 *10 *11) (-1038 *10))))))
-(-10 -7 (-15 -3077 ((-415 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-415 |#1| |#2| |#3| |#4|))))
-((-2985 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL)) (-1652 ((|#4| (-771) (-1264 |#4|)) 60)) (-2741 (((-112) $) NIL)) (-3001 (((-1264 |#4|) $) 17)) (-1559 ((|#2| $) 55)) (-2958 (($ $) 163)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 108)) (-4024 (($ (-1264 |#4|)) 107)) (-4033 (((-1119) $) NIL)) (-3013 ((|#1| $) 18)) (-2032 (($ $ $) NIL)) (-3755 (($ $ $) NIL)) (-2512 (((-862) $) 153)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 |#4|) $) 146)) (-2495 (($) 11 T CONST)) (-2940 (((-112) $ $) 41)) (-3061 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 139)) (* (($ $ $) 135)))
-(((-415 |#1| |#2| |#3| |#4|) (-13 (-475) (-10 -8 (-15 -4024 ($ (-1264 |#4|))) (-15 -1990 ((-1264 |#4|) $)) (-15 -1559 (|#2| $)) (-15 -3001 ((-1264 |#4|) $)) (-15 -3013 (|#1| $)) (-15 -2958 ($ $)) (-15 -1652 (|#4| (-771) (-1264 |#4|))))) (-308) (-992 |#1|) (-1240 |#2|) (-13 (-411 |#2| |#3|) (-1038 |#2|))) (T -415))
-((-4024 (*1 *1 *2) (-12 (-5 *2 (-1264 *6)) (-4 *6 (-13 (-411 *4 *5) (-1038 *4))) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-4 *3 (-308)) (-5 *1 (-415 *3 *4 *5 *6)))) (-1990 (*1 *2 *1) (-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-5 *2 (-1264 *6)) (-5 *1 (-415 *3 *4 *5 *6)) (-4 *6 (-13 (-411 *4 *5) (-1038 *4))))) (-1559 (*1 *2 *1) (-12 (-4 *4 (-1240 *2)) (-4 *2 (-992 *3)) (-5 *1 (-415 *3 *2 *4 *5)) (-4 *3 (-308)) (-4 *5 (-13 (-411 *2 *4) (-1038 *2))))) (-3001 (*1 *2 *1) (-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-5 *2 (-1264 *6)) (-5 *1 (-415 *3 *4 *5 *6)) (-4 *6 (-13 (-411 *4 *5) (-1038 *4))))) (-3013 (*1 *2 *1) (-12 (-4 *3 (-992 *2)) (-4 *4 (-1240 *3)) (-4 *2 (-308)) (-5 *1 (-415 *2 *3 *4 *5)) (-4 *5 (-13 (-411 *3 *4) (-1038 *3))))) (-2958 (*1 *1 *1) (-12 (-4 *2 (-308)) (-4 *3 (-992 *2)) (-4 *4 (-1240 *3)) (-5 *1 (-415 *2 *3 *4 *5)) (-4 *5 (-13 (-411 *3 *4) (-1038 *3))))) (-1652 (*1 *2 *3 *4) (-12 (-5 *3 (-771)) (-5 *4 (-1264 *2)) (-4 *5 (-308)) (-4 *6 (-992 *5)) (-4 *2 (-13 (-411 *6 *7) (-1038 *6))) (-5 *1 (-415 *5 *6 *7 *2)) (-4 *7 (-1240 *6)))))
-(-13 (-475) (-10 -8 (-15 -4024 ($ (-1264 |#4|))) (-15 -1990 ((-1264 |#4|) $)) (-15 -1559 (|#2| $)) (-15 -3001 ((-1264 |#4|) $)) (-15 -3013 (|#1| $)) (-15 -2958 ($ $)) (-15 -1652 (|#4| (-771) (-1264 |#4|)))))
-((-2985 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-1559 ((|#2| $) 71)) (-1309 (($ (-1264 |#4|)) 27) (($ (-415 |#1| |#2| |#3| |#4|)) 86 (|has| |#4| (-1038 |#2|)))) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 37)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 |#4|) $) 28)) (-2495 (($) 25 T CONST)) (-2940 (((-112) $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ $ $) 82)))
-(((-416 |#1| |#2| |#3| |#4| |#5|) (-13 (-726) (-10 -8 (-15 -1990 ((-1264 |#4|) $)) (-15 -1559 (|#2| $)) (-15 -1309 ($ (-1264 |#4|))) (IF (|has| |#4| (-1038 |#2|)) (-15 -1309 ($ (-415 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-308) (-992 |#1|) (-1240 |#2|) (-411 |#2| |#3|) (-1264 |#4|)) (T -416))
-((-1990 (*1 *2 *1) (-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-5 *2 (-1264 *6)) (-5 *1 (-416 *3 *4 *5 *6 *7)) (-4 *6 (-411 *4 *5)) (-14 *7 *2))) (-1559 (*1 *2 *1) (-12 (-4 *4 (-1240 *2)) (-4 *2 (-992 *3)) (-5 *1 (-416 *3 *2 *4 *5 *6)) (-4 *3 (-308)) (-4 *5 (-411 *2 *4)) (-14 *6 (-1264 *5)))) (-1309 (*1 *1 *2) (-12 (-5 *2 (-1264 *6)) (-4 *6 (-411 *4 *5)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-4 *3 (-308)) (-5 *1 (-416 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-1309 (*1 *1 *2) (-12 (-5 *2 (-415 *3 *4 *5 *6)) (-4 *6 (-1038 *4)) (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-4 *6 (-411 *4 *5)) (-14 *7 (-1264 *6)) (-5 *1 (-416 *3 *4 *5 *6 *7)))))
-(-13 (-726) (-10 -8 (-15 -1990 ((-1264 |#4|) $)) (-15 -1559 (|#2| $)) (-15 -1309 ($ (-1264 |#4|))) (IF (|has| |#4| (-1038 |#2|)) (-15 -1309 ($ (-415 |#1| |#2| |#3| |#4|))) |%noBranch|)))
-((-3077 ((|#3| (-1 |#4| |#2|) |#1|) 32)))
-(((-417 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3077 (|#3| (-1 |#4| |#2|) |#1|))) (-419 |#2|) (-172) (-419 |#4|) (-172)) (T -417))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-419 *6)) (-5 *1 (-417 *4 *5 *2 *6)) (-4 *4 (-419 *5)))))
-(-10 -7 (-15 -3077 (|#3| (-1 |#4| |#2|) |#1|)))
-((-3803 (((-3 $ "failed")) 99)) (-3950 (((-1264 (-689 |#2|)) (-1264 $)) NIL) (((-1264 (-689 |#2|))) 104)) (-1503 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) 97)) (-2301 (((-3 $ "failed")) 96)) (-2327 (((-689 |#2|) (-1264 $)) NIL) (((-689 |#2|)) 115)) (-1481 (((-689 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) $) 123)) (-3207 (((-1171 (-952 |#2|))) 65)) (-3435 ((|#2| (-1264 $)) NIL) ((|#2|) 119)) (-1547 (($ (-1264 |#2|) (-1264 $)) NIL) (($ (-1264 |#2|)) 125)) (-3881 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) 95)) (-2060 (((-3 $ "failed")) 87)) (-1297 (((-689 |#2|) (-1264 $)) NIL) (((-689 |#2|)) 113)) (-4333 (((-689 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) $) 121)) (-2593 (((-1171 (-952 |#2|))) 64)) (-2835 ((|#2| (-1264 $)) NIL) ((|#2|) 117)) (-2770 (((-1264 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) (-1264 $) (-1264 $)) NIL) (((-1264 |#2|) $) 124) (((-689 |#2|) (-1264 $)) 133)) (-3134 (((-1264 |#2|) $) 109) (($ (-1264 |#2|)) 111)) (-2232 (((-644 (-952 |#2|)) (-1264 $)) NIL) (((-644 (-952 |#2|))) 107)) (-4002 (($ (-689 |#2|) $) 103)))
-(((-418 |#1| |#2|) (-10 -8 (-15 -4002 (|#1| (-689 |#2|) |#1|)) (-15 -3207 ((-1171 (-952 |#2|)))) (-15 -2593 ((-1171 (-952 |#2|)))) (-15 -1481 ((-689 |#2|) |#1|)) (-15 -4333 ((-689 |#2|) |#1|)) (-15 -2327 ((-689 |#2|))) (-15 -1297 ((-689 |#2|))) (-15 -3435 (|#2|)) (-15 -2835 (|#2|)) (-15 -3134 (|#1| (-1264 |#2|))) (-15 -3134 ((-1264 |#2|) |#1|)) (-15 -1547 (|#1| (-1264 |#2|))) (-15 -2232 ((-644 (-952 |#2|)))) (-15 -3950 ((-1264 (-689 |#2|)))) (-15 -2770 ((-689 |#2|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1|)) (-15 -3803 ((-3 |#1| "failed"))) (-15 -2301 ((-3 |#1| "failed"))) (-15 -2060 ((-3 |#1| "failed"))) (-15 -1503 ((-3 (-2 (|:| |particular| |#1|) (|:| -1990 (-644 |#1|))) "failed"))) (-15 -3881 ((-3 (-2 (|:| |particular| |#1|) (|:| -1990 (-644 |#1|))) "failed"))) (-15 -2327 ((-689 |#2|) (-1264 |#1|))) (-15 -1297 ((-689 |#2|) (-1264 |#1|))) (-15 -3435 (|#2| (-1264 |#1|))) (-15 -2835 (|#2| (-1264 |#1|))) (-15 -1547 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -1481 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -4333 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -3950 ((-1264 (-689 |#2|)) (-1264 |#1|))) (-15 -2232 ((-644 (-952 |#2|)) (-1264 |#1|)))) (-419 |#2|) (-172)) (T -418))
-((-3950 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1264 (-689 *4))) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))) (-2232 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-644 (-952 *4))) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))) (-2835 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-418 *3 *2)) (-4 *3 (-419 *2)))) (-3435 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-418 *3 *2)) (-4 *3 (-419 *2)))) (-1297 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-689 *4)) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))) (-2327 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-689 *4)) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))) (-2593 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1171 (-952 *4))) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))) (-3207 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1171 (-952 *4))) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))))
-(-10 -8 (-15 -4002 (|#1| (-689 |#2|) |#1|)) (-15 -3207 ((-1171 (-952 |#2|)))) (-15 -2593 ((-1171 (-952 |#2|)))) (-15 -1481 ((-689 |#2|) |#1|)) (-15 -4333 ((-689 |#2|) |#1|)) (-15 -2327 ((-689 |#2|))) (-15 -1297 ((-689 |#2|))) (-15 -3435 (|#2|)) (-15 -2835 (|#2|)) (-15 -3134 (|#1| (-1264 |#2|))) (-15 -3134 ((-1264 |#2|) |#1|)) (-15 -1547 (|#1| (-1264 |#2|))) (-15 -2232 ((-644 (-952 |#2|)))) (-15 -3950 ((-1264 (-689 |#2|)))) (-15 -2770 ((-689 |#2|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1|)) (-15 -3803 ((-3 |#1| "failed"))) (-15 -2301 ((-3 |#1| "failed"))) (-15 -2060 ((-3 |#1| "failed"))) (-15 -1503 ((-3 (-2 (|:| |particular| |#1|) (|:| -1990 (-644 |#1|))) "failed"))) (-15 -3881 ((-3 (-2 (|:| |particular| |#1|) (|:| -1990 (-644 |#1|))) "failed"))) (-15 -2327 ((-689 |#2|) (-1264 |#1|))) (-15 -1297 ((-689 |#2|) (-1264 |#1|))) (-15 -3435 (|#2| (-1264 |#1|))) (-15 -2835 (|#2| (-1264 |#1|))) (-15 -1547 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2770 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2770 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -1481 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -4333 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -3950 ((-1264 (-689 |#2|)) (-1264 |#1|))) (-15 -2232 ((-644 (-952 |#2|)) (-1264 |#1|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-3803 (((-3 $ "failed")) 42 (|has| |#1| (-558)))) (-4126 (((-3 $ "failed") $ $) 20)) (-3950 (((-1264 (-689 |#1|)) (-1264 $)) 83) (((-1264 (-689 |#1|))) 105)) (-1378 (((-1264 $)) 86)) (-2342 (($) 18 T CONST)) (-1503 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) 45 (|has| |#1| (-558)))) (-2301 (((-3 $ "failed")) 43 (|has| |#1| (-558)))) (-2327 (((-689 |#1|) (-1264 $)) 70) (((-689 |#1|)) 97)) (-2080 ((|#1| $) 79)) (-1481 (((-689 |#1|) $ (-1264 $)) 81) (((-689 |#1|) $) 95)) (-3152 (((-3 $ "failed") $) 50 (|has| |#1| (-558)))) (-3207 (((-1171 (-952 |#1|))) 93 (|has| |#1| (-365)))) (-2258 (($ $ (-921)) 31)) (-2798 ((|#1| $) 77)) (-3584 (((-1171 |#1|) $) 47 (|has| |#1| (-558)))) (-3435 ((|#1| (-1264 $)) 72) ((|#1|) 99)) (-3815 (((-1171 |#1|) $) 68)) (-2982 (((-112)) 62)) (-1547 (($ (-1264 |#1|) (-1264 $)) 74) (($ (-1264 |#1|)) 103)) (-1579 (((-3 $ "failed") $) 52 (|has| |#1| (-558)))) (-1821 (((-921)) 85)) (-2631 (((-112)) 59)) (-2995 (($ $ (-921)) 38)) (-1605 (((-112)) 55)) (-3199 (((-112)) 53)) (-2592 (((-112)) 57)) (-3881 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) 46 (|has| |#1| (-558)))) (-2060 (((-3 $ "failed")) 44 (|has| |#1| (-558)))) (-1297 (((-689 |#1|) (-1264 $)) 71) (((-689 |#1|)) 98)) (-2516 ((|#1| $) 80)) (-4333 (((-689 |#1|) $ (-1264 $)) 82) (((-689 |#1|) $) 96)) (-2318 (((-3 $ "failed") $) 51 (|has| |#1| (-558)))) (-2593 (((-1171 (-952 |#1|))) 94 (|has| |#1| (-365)))) (-4171 (($ $ (-921)) 32)) (-3595 ((|#1| $) 78)) (-3984 (((-1171 |#1|) $) 48 (|has| |#1| (-558)))) (-2835 ((|#1| (-1264 $)) 73) ((|#1|) 100)) (-1846 (((-1171 |#1|) $) 69)) (-3880 (((-112)) 63)) (-2878 (((-1157) $) 10)) (-2817 (((-112)) 54)) (-1642 (((-112)) 56)) (-4331 (((-112)) 58)) (-4033 (((-1119) $) 11)) (-3017 (((-112)) 61)) (-4386 ((|#1| $ (-566)) 106)) (-2770 (((-1264 |#1|) $ (-1264 $)) 76) (((-689 |#1|) (-1264 $) (-1264 $)) 75) (((-1264 |#1|) $) 108) (((-689 |#1|) (-1264 $)) 107)) (-3134 (((-1264 |#1|) $) 102) (($ (-1264 |#1|)) 101)) (-2232 (((-644 (-952 |#1|)) (-1264 $)) 84) (((-644 (-952 |#1|))) 104)) (-3755 (($ $ $) 28)) (-2110 (((-112)) 67)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-1990 (((-1264 $)) 109)) (-3578 (((-644 (-1264 |#1|))) 49 (|has| |#1| (-558)))) (-3551 (($ $ $ $) 29)) (-4018 (((-112)) 65)) (-4002 (($ (-689 |#1|) $) 92)) (-2821 (($ $ $) 27)) (-1546 (((-112)) 66)) (-2498 (((-112)) 64)) (-2686 (((-112)) 60)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 33)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-3152 (((-415 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-415 |#1| |#2| |#3| |#4|)) 35)))
+(((-414 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3152 ((-415 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-415 |#1| |#2| |#3| |#4|)))) (-308) (-992 |#1|) (-1240 |#2|) (-13 (-411 |#2| |#3|) (-1038 |#2|)) (-308) (-992 |#5|) (-1240 |#6|) (-13 (-411 |#6| |#7|) (-1038 |#6|))) (T -414))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *5)) (-5 *4 (-415 *5 *6 *7 *8)) (-4 *5 (-308)) (-4 *6 (-992 *5)) (-4 *7 (-1240 *6)) (-4 *8 (-13 (-411 *6 *7) (-1038 *6))) (-4 *9 (-308)) (-4 *10 (-992 *9)) (-4 *11 (-1240 *10)) (-5 *2 (-415 *9 *10 *11 *12)) (-5 *1 (-414 *5 *6 *7 *8 *9 *10 *11 *12)) (-4 *12 (-13 (-411 *10 *11) (-1038 *10))))))
+(-10 -7 (-15 -3152 ((-415 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-415 |#1| |#2| |#3| |#4|))))
+((-3009 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL)) (-4300 ((|#4| (-771) (-1264 |#4|)) 60)) (-3466 (((-112) $) NIL)) (-3088 (((-1264 |#4|) $) 17)) (-2719 ((|#2| $) 55)) (-1835 (($ $) 163)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 108)) (-2412 (($ (-1264 |#4|)) 107)) (-4056 (((-1119) $) NIL)) (-3100 ((|#1| $) 18)) (-3850 (($ $ $) NIL)) (-1783 (($ $ $) NIL)) (-3780 (((-862) $) 153)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 |#4|) $) 146)) (-4333 (($) 11 T CONST)) (-2950 (((-112) $ $) 41)) (-3062 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 139)) (* (($ $ $) 135)))
+(((-415 |#1| |#2| |#3| |#4|) (-13 (-475) (-10 -8 (-15 -2412 ($ (-1264 |#4|))) (-15 -1575 ((-1264 |#4|) $)) (-15 -2719 (|#2| $)) (-15 -3088 ((-1264 |#4|) $)) (-15 -3100 (|#1| $)) (-15 -1835 ($ $)) (-15 -4300 (|#4| (-771) (-1264 |#4|))))) (-308) (-992 |#1|) (-1240 |#2|) (-13 (-411 |#2| |#3|) (-1038 |#2|))) (T -415))
+((-2412 (*1 *1 *2) (-12 (-5 *2 (-1264 *6)) (-4 *6 (-13 (-411 *4 *5) (-1038 *4))) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-4 *3 (-308)) (-5 *1 (-415 *3 *4 *5 *6)))) (-1575 (*1 *2 *1) (-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-5 *2 (-1264 *6)) (-5 *1 (-415 *3 *4 *5 *6)) (-4 *6 (-13 (-411 *4 *5) (-1038 *4))))) (-2719 (*1 *2 *1) (-12 (-4 *4 (-1240 *2)) (-4 *2 (-992 *3)) (-5 *1 (-415 *3 *2 *4 *5)) (-4 *3 (-308)) (-4 *5 (-13 (-411 *2 *4) (-1038 *2))))) (-3088 (*1 *2 *1) (-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-5 *2 (-1264 *6)) (-5 *1 (-415 *3 *4 *5 *6)) (-4 *6 (-13 (-411 *4 *5) (-1038 *4))))) (-3100 (*1 *2 *1) (-12 (-4 *3 (-992 *2)) (-4 *4 (-1240 *3)) (-4 *2 (-308)) (-5 *1 (-415 *2 *3 *4 *5)) (-4 *5 (-13 (-411 *3 *4) (-1038 *3))))) (-1835 (*1 *1 *1) (-12 (-4 *2 (-308)) (-4 *3 (-992 *2)) (-4 *4 (-1240 *3)) (-5 *1 (-415 *2 *3 *4 *5)) (-4 *5 (-13 (-411 *3 *4) (-1038 *3))))) (-4300 (*1 *2 *3 *4) (-12 (-5 *3 (-771)) (-5 *4 (-1264 *2)) (-4 *5 (-308)) (-4 *6 (-992 *5)) (-4 *2 (-13 (-411 *6 *7) (-1038 *6))) (-5 *1 (-415 *5 *6 *7 *2)) (-4 *7 (-1240 *6)))))
+(-13 (-475) (-10 -8 (-15 -2412 ($ (-1264 |#4|))) (-15 -1575 ((-1264 |#4|) $)) (-15 -2719 (|#2| $)) (-15 -3088 ((-1264 |#4|) $)) (-15 -3100 (|#1| $)) (-15 -1835 ($ $)) (-15 -4300 (|#4| (-771) (-1264 |#4|)))))
+((-3009 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-2719 ((|#2| $) 71)) (-1598 (($ (-1264 |#4|)) 27) (($ (-415 |#1| |#2| |#3| |#4|)) 86 (|has| |#4| (-1038 |#2|)))) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 37)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 |#4|) $) 28)) (-4333 (($) 25 T CONST)) (-2950 (((-112) $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ $ $) 82)))
+(((-416 |#1| |#2| |#3| |#4| |#5|) (-13 (-726) (-10 -8 (-15 -1575 ((-1264 |#4|) $)) (-15 -2719 (|#2| $)) (-15 -1598 ($ (-1264 |#4|))) (IF (|has| |#4| (-1038 |#2|)) (-15 -1598 ($ (-415 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-308) (-992 |#1|) (-1240 |#2|) (-411 |#2| |#3|) (-1264 |#4|)) (T -416))
+((-1575 (*1 *2 *1) (-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-5 *2 (-1264 *6)) (-5 *1 (-416 *3 *4 *5 *6 *7)) (-4 *6 (-411 *4 *5)) (-14 *7 *2))) (-2719 (*1 *2 *1) (-12 (-4 *4 (-1240 *2)) (-4 *2 (-992 *3)) (-5 *1 (-416 *3 *2 *4 *5 *6)) (-4 *3 (-308)) (-4 *5 (-411 *2 *4)) (-14 *6 (-1264 *5)))) (-1598 (*1 *1 *2) (-12 (-5 *2 (-1264 *6)) (-4 *6 (-411 *4 *5)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-4 *3 (-308)) (-5 *1 (-416 *3 *4 *5 *6 *7)) (-14 *7 *2))) (-1598 (*1 *1 *2) (-12 (-5 *2 (-415 *3 *4 *5 *6)) (-4 *6 (-1038 *4)) (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-4 *6 (-411 *4 *5)) (-14 *7 (-1264 *6)) (-5 *1 (-416 *3 *4 *5 *6 *7)))))
+(-13 (-726) (-10 -8 (-15 -1575 ((-1264 |#4|) $)) (-15 -2719 (|#2| $)) (-15 -1598 ($ (-1264 |#4|))) (IF (|has| |#4| (-1038 |#2|)) (-15 -1598 ($ (-415 |#1| |#2| |#3| |#4|))) |%noBranch|)))
+((-3152 ((|#3| (-1 |#4| |#2|) |#1|) 32)))
+(((-417 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3152 (|#3| (-1 |#4| |#2|) |#1|))) (-419 |#2|) (-172) (-419 |#4|) (-172)) (T -417))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-419 *6)) (-5 *1 (-417 *4 *5 *2 *6)) (-4 *4 (-419 *5)))))
+(-10 -7 (-15 -3152 (|#3| (-1 |#4| |#2|) |#1|)))
+((-4065 (((-3 $ "failed")) 99)) (-2932 (((-1264 (-689 |#2|)) (-1264 $)) NIL) (((-1264 (-689 |#2|))) 104)) (-3379 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) 97)) (-1594 (((-3 $ "failed")) 96)) (-3735 (((-689 |#2|) (-1264 $)) NIL) (((-689 |#2|)) 115)) (-3150 (((-689 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) $) 123)) (-3280 (((-1171 (-952 |#2|))) 65)) (-1682 ((|#2| (-1264 $)) NIL) ((|#2|) 119)) (-2613 (($ (-1264 |#2|) (-1264 $)) NIL) (($ (-1264 |#2|)) 125)) (-3571 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) 95)) (-4128 (((-3 $ "failed")) 87)) (-4105 (((-689 |#2|) (-1264 $)) NIL) (((-689 |#2|)) 113)) (-2377 (((-689 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) $) 121)) (-1332 (((-1171 (-952 |#2|))) 64)) (-1964 ((|#2| (-1264 $)) NIL) ((|#2|) 117)) (-2543 (((-1264 |#2|) $ (-1264 $)) NIL) (((-689 |#2|) (-1264 $) (-1264 $)) NIL) (((-1264 |#2|) $) 124) (((-689 |#2|) (-1264 $)) 133)) (-3204 (((-1264 |#2|) $) 109) (($ (-1264 |#2|)) 111)) (-2136 (((-644 (-952 |#2|)) (-1264 $)) NIL) (((-644 (-952 |#2|))) 107)) (-4046 (($ (-689 |#2|) $) 103)))
+(((-418 |#1| |#2|) (-10 -8 (-15 -4046 (|#1| (-689 |#2|) |#1|)) (-15 -3280 ((-1171 (-952 |#2|)))) (-15 -1332 ((-1171 (-952 |#2|)))) (-15 -3150 ((-689 |#2|) |#1|)) (-15 -2377 ((-689 |#2|) |#1|)) (-15 -3735 ((-689 |#2|))) (-15 -4105 ((-689 |#2|))) (-15 -1682 (|#2|)) (-15 -1964 (|#2|)) (-15 -3204 (|#1| (-1264 |#2|))) (-15 -3204 ((-1264 |#2|) |#1|)) (-15 -2613 (|#1| (-1264 |#2|))) (-15 -2136 ((-644 (-952 |#2|)))) (-15 -2932 ((-1264 (-689 |#2|)))) (-15 -2543 ((-689 |#2|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1|)) (-15 -4065 ((-3 |#1| "failed"))) (-15 -1594 ((-3 |#1| "failed"))) (-15 -4128 ((-3 |#1| "failed"))) (-15 -3379 ((-3 (-2 (|:| |particular| |#1|) (|:| -1575 (-644 |#1|))) "failed"))) (-15 -3571 ((-3 (-2 (|:| |particular| |#1|) (|:| -1575 (-644 |#1|))) "failed"))) (-15 -3735 ((-689 |#2|) (-1264 |#1|))) (-15 -4105 ((-689 |#2|) (-1264 |#1|))) (-15 -1682 (|#2| (-1264 |#1|))) (-15 -1964 (|#2| (-1264 |#1|))) (-15 -2613 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -3150 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -2377 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -2932 ((-1264 (-689 |#2|)) (-1264 |#1|))) (-15 -2136 ((-644 (-952 |#2|)) (-1264 |#1|)))) (-419 |#2|) (-172)) (T -418))
+((-2932 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1264 (-689 *4))) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))) (-2136 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-644 (-952 *4))) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))) (-1964 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-418 *3 *2)) (-4 *3 (-419 *2)))) (-1682 (*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-418 *3 *2)) (-4 *3 (-419 *2)))) (-4105 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-689 *4)) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))) (-3735 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-689 *4)) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))) (-1332 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1171 (-952 *4))) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))) (-3280 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-1171 (-952 *4))) (-5 *1 (-418 *3 *4)) (-4 *3 (-419 *4)))))
+(-10 -8 (-15 -4046 (|#1| (-689 |#2|) |#1|)) (-15 -3280 ((-1171 (-952 |#2|)))) (-15 -1332 ((-1171 (-952 |#2|)))) (-15 -3150 ((-689 |#2|) |#1|)) (-15 -2377 ((-689 |#2|) |#1|)) (-15 -3735 ((-689 |#2|))) (-15 -4105 ((-689 |#2|))) (-15 -1682 (|#2|)) (-15 -1964 (|#2|)) (-15 -3204 (|#1| (-1264 |#2|))) (-15 -3204 ((-1264 |#2|) |#1|)) (-15 -2613 (|#1| (-1264 |#2|))) (-15 -2136 ((-644 (-952 |#2|)))) (-15 -2932 ((-1264 (-689 |#2|)))) (-15 -2543 ((-689 |#2|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1|)) (-15 -4065 ((-3 |#1| "failed"))) (-15 -1594 ((-3 |#1| "failed"))) (-15 -4128 ((-3 |#1| "failed"))) (-15 -3379 ((-3 (-2 (|:| |particular| |#1|) (|:| -1575 (-644 |#1|))) "failed"))) (-15 -3571 ((-3 (-2 (|:| |particular| |#1|) (|:| -1575 (-644 |#1|))) "failed"))) (-15 -3735 ((-689 |#2|) (-1264 |#1|))) (-15 -4105 ((-689 |#2|) (-1264 |#1|))) (-15 -1682 (|#2| (-1264 |#1|))) (-15 -1964 (|#2| (-1264 |#1|))) (-15 -2613 (|#1| (-1264 |#2|) (-1264 |#1|))) (-15 -2543 ((-689 |#2|) (-1264 |#1|) (-1264 |#1|))) (-15 -2543 ((-1264 |#2|) |#1| (-1264 |#1|))) (-15 -3150 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -2377 ((-689 |#2|) |#1| (-1264 |#1|))) (-15 -2932 ((-1264 (-689 |#2|)) (-1264 |#1|))) (-15 -2136 ((-644 (-952 |#2|)) (-1264 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4065 (((-3 $ "failed")) 42 (|has| |#1| (-558)))) (-4014 (((-3 $ "failed") $ $) 20)) (-2932 (((-1264 (-689 |#1|)) (-1264 $)) 83) (((-1264 (-689 |#1|))) 105)) (-4132 (((-1264 $)) 86)) (-3877 (($) 18 T CONST)) (-3379 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) 45 (|has| |#1| (-558)))) (-1594 (((-3 $ "failed")) 43 (|has| |#1| (-558)))) (-3735 (((-689 |#1|) (-1264 $)) 70) (((-689 |#1|)) 97)) (-3121 ((|#1| $) 79)) (-3150 (((-689 |#1|) $ (-1264 $)) 81) (((-689 |#1|) $) 95)) (-4029 (((-3 $ "failed") $) 50 (|has| |#1| (-558)))) (-3280 (((-1171 (-952 |#1|))) 93 (|has| |#1| (-365)))) (-2400 (($ $ (-921)) 31)) (-2811 ((|#1| $) 77)) (-2536 (((-1171 |#1|) $) 47 (|has| |#1| (-558)))) (-1682 ((|#1| (-1264 $)) 72) ((|#1|) 99)) (-4181 (((-1171 |#1|) $) 68)) (-2011 (((-112)) 62)) (-2613 (($ (-1264 |#1|) (-1264 $)) 74) (($ (-1264 |#1|)) 103)) (-2928 (((-3 $ "failed") $) 52 (|has| |#1| (-558)))) (-4157 (((-921)) 85)) (-1732 (((-112)) 59)) (-2120 (($ $ (-921)) 38)) (-1993 (((-112)) 55)) (-3202 (((-112)) 53)) (-1321 (((-112)) 57)) (-3571 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) 46 (|has| |#1| (-558)))) (-4128 (((-3 $ "failed")) 44 (|has| |#1| (-558)))) (-4105 (((-689 |#1|) (-1264 $)) 71) (((-689 |#1|)) 98)) (-1863 ((|#1| $) 80)) (-2377 (((-689 |#1|) $ (-1264 $)) 82) (((-689 |#1|) $) 96)) (-1787 (((-3 $ "failed") $) 51 (|has| |#1| (-558)))) (-1332 (((-1171 (-952 |#1|))) 94 (|has| |#1| (-365)))) (-3231 (($ $ (-921)) 32)) (-2630 ((|#1| $) 78)) (-2041 (((-1171 |#1|) $) 48 (|has| |#1| (-558)))) (-1964 ((|#1| (-1264 $)) 73) ((|#1|) 100)) (-2584 (((-1171 |#1|) $) 69)) (-3561 (((-112)) 63)) (-2402 (((-1157) $) 10)) (-3002 (((-112)) 54)) (-4211 (((-112)) 56)) (-2355 (((-112)) 58)) (-4056 (((-1119) $) 11)) (-2283 (((-112)) 61)) (-4393 ((|#1| $ (-566)) 106)) (-2543 (((-1264 |#1|) $ (-1264 $)) 76) (((-689 |#1|) (-1264 $) (-1264 $)) 75) (((-1264 |#1|) $) 108) (((-689 |#1|) (-1264 $)) 107)) (-3204 (((-1264 |#1|) $) 102) (($ (-1264 |#1|)) 101)) (-2136 (((-644 (-952 |#1|)) (-1264 $)) 84) (((-644 (-952 |#1|))) 104)) (-1783 (($ $ $) 28)) (-3431 (((-112)) 67)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-1575 (((-1264 $)) 109)) (-2474 (((-644 (-1264 |#1|))) 49 (|has| |#1| (-558)))) (-3428 (($ $ $ $) 29)) (-2359 (((-112)) 65)) (-4046 (($ (-689 |#1|) $) 92)) (-3035 (($ $ $) 27)) (-2602 (((-112)) 66)) (-2891 (((-112)) 64)) (-4142 (((-112)) 60)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 33)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-419 |#1|) (-140) (-172)) (T -419))
-((-1990 (*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1264 *1)) (-4 *1 (-419 *3)))) (-2770 (*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-1264 *3)))) (-2770 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-419 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-419 *2)) (-4 *2 (-172)))) (-3950 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-1264 (-689 *3))))) (-2232 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-644 (-952 *3))))) (-1547 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-419 *3)))) (-3134 (*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-1264 *3)))) (-3134 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-419 *3)))) (-2835 (*1 *2) (-12 (-4 *1 (-419 *2)) (-4 *2 (-172)))) (-3435 (*1 *2) (-12 (-4 *1 (-419 *2)) (-4 *2 (-172)))) (-1297 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))) (-2327 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))) (-4333 (*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))) (-1481 (*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))) (-2593 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-4 *3 (-365)) (-5 *2 (-1171 (-952 *3))))) (-3207 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-4 *3 (-365)) (-5 *2 (-1171 (-952 *3))))) (-4002 (*1 *1 *2 *1) (-12 (-5 *2 (-689 *3)) (-4 *1 (-419 *3)) (-4 *3 (-172)))))
-(-13 (-369 |t#1|) (-10 -8 (-15 -1990 ((-1264 $))) (-15 -2770 ((-1264 |t#1|) $)) (-15 -2770 ((-689 |t#1|) (-1264 $))) (-15 -4386 (|t#1| $ (-566))) (-15 -3950 ((-1264 (-689 |t#1|)))) (-15 -2232 ((-644 (-952 |t#1|)))) (-15 -1547 ($ (-1264 |t#1|))) (-15 -3134 ((-1264 |t#1|) $)) (-15 -3134 ($ (-1264 |t#1|))) (-15 -2835 (|t#1|)) (-15 -3435 (|t#1|)) (-15 -1297 ((-689 |t#1|))) (-15 -2327 ((-689 |t#1|))) (-15 -4333 ((-689 |t#1|) $)) (-15 -1481 ((-689 |t#1|) $)) (IF (|has| |t#1| (-365)) (PROGN (-15 -2593 ((-1171 (-952 |t#1|)))) (-15 -3207 ((-1171 (-952 |t#1|))))) |%noBranch|) (-15 -4002 ($ (-689 |t#1|) $))))
+((-1575 (*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1264 *1)) (-4 *1 (-419 *3)))) (-2543 (*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-1264 *3)))) (-2543 (*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-419 *4)) (-4 *4 (-172)) (-5 *2 (-689 *4)))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-419 *2)) (-4 *2 (-172)))) (-2932 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-1264 (-689 *3))))) (-2136 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-644 (-952 *3))))) (-2613 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-419 *3)))) (-3204 (*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-1264 *3)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-419 *3)))) (-1964 (*1 *2) (-12 (-4 *1 (-419 *2)) (-4 *2 (-172)))) (-1682 (*1 *2) (-12 (-4 *1 (-419 *2)) (-4 *2 (-172)))) (-4105 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))) (-3735 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))) (-2377 (*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))) (-3150 (*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))) (-1332 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-4 *3 (-365)) (-5 *2 (-1171 (-952 *3))))) (-3280 (*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-4 *3 (-365)) (-5 *2 (-1171 (-952 *3))))) (-4046 (*1 *1 *2 *1) (-12 (-5 *2 (-689 *3)) (-4 *1 (-419 *3)) (-4 *3 (-172)))))
+(-13 (-369 |t#1|) (-10 -8 (-15 -1575 ((-1264 $))) (-15 -2543 ((-1264 |t#1|) $)) (-15 -2543 ((-689 |t#1|) (-1264 $))) (-15 -4393 (|t#1| $ (-566))) (-15 -2932 ((-1264 (-689 |t#1|)))) (-15 -2136 ((-644 (-952 |t#1|)))) (-15 -2613 ($ (-1264 |t#1|))) (-15 -3204 ((-1264 |t#1|) $)) (-15 -3204 ($ (-1264 |t#1|))) (-15 -1964 (|t#1|)) (-15 -1682 (|t#1|)) (-15 -4105 ((-689 |t#1|))) (-15 -3735 ((-689 |t#1|))) (-15 -2377 ((-689 |t#1|) $)) (-15 -3150 ((-689 |t#1|) $)) (IF (|has| |t#1| (-365)) (PROGN (-15 -1332 ((-1171 (-952 |t#1|)))) (-15 -3280 ((-1171 (-952 |t#1|))))) |%noBranch|) (-15 -4046 ($ (-689 |t#1|) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 (-862)) . T) ((-369 |#1|) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-648 |#1|) . T) ((-640 |#1|) . T) ((-717 |#1|) . T) ((-720) . T) ((-744 |#1|) . T) ((-761) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 60)) (-3469 (($ $) 78)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 191)) (-3653 (($ $) NIL)) (-2152 (((-112) $) 48)) (-3803 ((|#1| $) 16)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL (|has| |#1| (-1218)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-1218)))) (-1345 (($ |#1| (-566)) 42)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 148)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 74)) (-1579 (((-3 $ "failed") $) 164)) (-3800 (((-3 (-409 (-566)) "failed") $) 84 (|has| |#1| (-547)))) (-3717 (((-112) $) 80 (|has| |#1| (-547)))) (-3370 (((-409 (-566)) $) 91 (|has| |#1| (-547)))) (-3893 (($ |#1| (-566)) 44)) (-2635 (((-112) $) 213 (|has| |#1| (-1218)))) (-2741 (((-112) $) 62)) (-1314 (((-771) $) 51)) (-3497 (((-3 "nil" "sqfr" "irred" "prime") $ (-566)) 175)) (-2647 ((|#1| $ (-566)) 174)) (-1349 (((-566) $ (-566)) 173)) (-2871 (($ |#1| (-566)) 41)) (-3077 (($ (-1 |#1| |#1|) $) 183)) (-1458 (($ |#1| (-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566))))) 79)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2878 (((-1157) $) NIL)) (-2400 (($ |#1| (-566)) 43)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) 192 (|has| |#1| (-454)))) (-1857 (($ |#1| (-566) (-3 "nil" "sqfr" "irred" "prime")) 40)) (-4236 (((-644 (-2 (|:| -2391 |#1|) (|:| -3250 (-566)))) $) 73)) (-3560 (((-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566)))) $) 12)) (-2391 (((-420 $) $) NIL (|has| |#1| (-1218)))) (-2972 (((-3 $ "failed") $ $) 176)) (-3250 (((-566) $) 167)) (-4154 ((|#1| $) 75)) (-2070 (($ $ (-644 |#1|) (-644 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) 100 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 106 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) $) NIL (|has| |#1| (-516 (-1175) $))) (($ $ (-644 (-1175)) (-644 $)) 107 (|has| |#1| (-516 (-1175) $))) (($ $ (-644 (-295 $))) 103 (|has| |#1| (-310 $))) (($ $ (-295 $)) NIL (|has| |#1| (-310 $))) (($ $ $ $) NIL (|has| |#1| (-310 $))) (($ $ (-644 $) (-644 $)) NIL (|has| |#1| (-310 $)))) (-4386 (($ $ |#1|) 92 (|has| |#1| (-287 |#1| |#1|))) (($ $ $) 93 (|has| |#1| (-287 $ $)))) (-2862 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) 182)) (-3134 (((-538) $) 39 (|has| |#1| (-614 (-538)))) (((-381) $) 113 (|has| |#1| (-1022))) (((-225) $) 119 (|has| |#1| (-1022)))) (-2512 (((-862) $) 146) (($ (-566)) 65) (($ $) NIL) (($ |#1|) 64) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566)))))) (-3795 (((-771)) 67 T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-2485 (($) 53 T CONST)) (-2495 (($) 52 T CONST)) (-2840 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2940 (((-112) $ $) 159)) (-3047 (($ $) 161) (($ $ $) NIL)) (-3034 (($ $ $) 180)) (** (($ $ (-921)) NIL) (($ $ (-771)) 125)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 69) (($ $ $) 68) (($ |#1| $) 70) (($ $ |#1|) NIL)))
-(((-420 |#1|) (-13 (-558) (-231 |#1|) (-38 |#1|) (-340 |#1|) (-413 |#1|) (-10 -8 (-15 -4154 (|#1| $)) (-15 -3250 ((-566) $)) (-15 -1458 ($ |#1| (-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566)))))) (-15 -3560 ((-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566)))) $)) (-15 -2871 ($ |#1| (-566))) (-15 -4236 ((-644 (-2 (|:| -2391 |#1|) (|:| -3250 (-566)))) $)) (-15 -2400 ($ |#1| (-566))) (-15 -1349 ((-566) $ (-566))) (-15 -2647 (|#1| $ (-566))) (-15 -3497 ((-3 "nil" "sqfr" "irred" "prime") $ (-566))) (-15 -1314 ((-771) $)) (-15 -3893 ($ |#1| (-566))) (-15 -1345 ($ |#1| (-566))) (-15 -1857 ($ |#1| (-566) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3803 (|#1| $)) (-15 -3469 ($ $)) (-15 -3077 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-454)) (-6 (-454)) |%noBranch|) (IF (|has| |#1| (-1022)) (-6 (-1022)) |%noBranch|) (IF (|has| |#1| (-1218)) (-6 (-1218)) |%noBranch|) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -3717 ((-112) $)) (-15 -3370 ((-409 (-566)) $)) (-15 -3800 ((-3 (-409 (-566)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-287 $ $)) (-6 (-287 $ $)) |%noBranch|) (IF (|has| |#1| (-310 $)) (-6 (-310 $)) |%noBranch|) (IF (|has| |#1| (-516 (-1175) $)) (-6 (-516 (-1175) $)) |%noBranch|))) (-558)) (T -420))
-((-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-558)) (-5 *1 (-420 *3)))) (-4154 (*1 *2 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-3250 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-420 *3)) (-4 *3 (-558)))) (-1458 (*1 *1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-566))))) (-4 *2 (-558)) (-5 *1 (-420 *2)))) (-3560 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-566))))) (-5 *1 (-420 *3)) (-4 *3 (-558)))) (-2871 (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-4236 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| -2391 *3) (|:| -3250 (-566))))) (-5 *1 (-420 *3)) (-4 *3 (-558)))) (-2400 (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-1349 (*1 *2 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-420 *3)) (-4 *3 (-558)))) (-2647 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-3497 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-420 *4)) (-4 *4 (-558)))) (-1314 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-420 *3)) (-4 *3 (-558)))) (-3893 (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-1345 (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-1857 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-566)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-3803 (*1 *2 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-3469 (*1 *1 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-3717 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-420 *3)) (-4 *3 (-547)) (-4 *3 (-558)))) (-3370 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-420 *3)) (-4 *3 (-547)) (-4 *3 (-558)))) (-3800 (*1 *2 *1) (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-420 *3)) (-4 *3 (-547)) (-4 *3 (-558)))))
-(-13 (-558) (-231 |#1|) (-38 |#1|) (-340 |#1|) (-413 |#1|) (-10 -8 (-15 -4154 (|#1| $)) (-15 -3250 ((-566) $)) (-15 -1458 ($ |#1| (-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566)))))) (-15 -3560 ((-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566)))) $)) (-15 -2871 ($ |#1| (-566))) (-15 -4236 ((-644 (-2 (|:| -2391 |#1|) (|:| -3250 (-566)))) $)) (-15 -2400 ($ |#1| (-566))) (-15 -1349 ((-566) $ (-566))) (-15 -2647 (|#1| $ (-566))) (-15 -3497 ((-3 "nil" "sqfr" "irred" "prime") $ (-566))) (-15 -1314 ((-771) $)) (-15 -3893 ($ |#1| (-566))) (-15 -1345 ($ |#1| (-566))) (-15 -1857 ($ |#1| (-566) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3803 (|#1| $)) (-15 -3469 ($ $)) (-15 -3077 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-454)) (-6 (-454)) |%noBranch|) (IF (|has| |#1| (-1022)) (-6 (-1022)) |%noBranch|) (IF (|has| |#1| (-1218)) (-6 (-1218)) |%noBranch|) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -3717 ((-112) $)) (-15 -3370 ((-409 (-566)) $)) (-15 -3800 ((-3 (-409 (-566)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-287 $ $)) (-6 (-287 $ $)) |%noBranch|) (IF (|has| |#1| (-310 $)) (-6 (-310 $)) |%noBranch|) (IF (|has| |#1| (-516 (-1175) $)) (-6 (-516 (-1175) $)) |%noBranch|)))
-((-1343 (((-420 |#1|) (-420 |#1|) (-1 (-420 |#1|) |#1|)) 28)) (-2778 (((-420 |#1|) (-420 |#1|) (-420 |#1|)) 17)))
-(((-421 |#1|) (-10 -7 (-15 -1343 ((-420 |#1|) (-420 |#1|) (-1 (-420 |#1|) |#1|))) (-15 -2778 ((-420 |#1|) (-420 |#1|) (-420 |#1|)))) (-558)) (T -421))
-((-2778 (*1 *2 *2 *2) (-12 (-5 *2 (-420 *3)) (-4 *3 (-558)) (-5 *1 (-421 *3)))) (-1343 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-420 *4) *4)) (-4 *4 (-558)) (-5 *2 (-420 *4)) (-5 *1 (-421 *4)))))
-(-10 -7 (-15 -1343 ((-420 |#1|) (-420 |#1|) (-1 (-420 |#1|) |#1|))) (-15 -2778 ((-420 |#1|) (-420 |#1|) (-420 |#1|))))
-((-1330 ((|#2| |#2|) 183)) (-2749 (((-3 (|:| |%expansion| (-314 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112)) 60)))
-(((-422 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2749 ((-3 (|:| |%expansion| (-314 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112))) (-15 -1330 (|#2| |#2|))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|)) (-1175) |#2|) (T -422))
-((-1330 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-422 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1199) (-432 *3))) (-14 *4 (-1175)) (-14 *5 *2))) (-2749 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |%expansion| (-314 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157)))))) (-5 *1 (-422 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-14 *6 (-1175)) (-14 *7 *3))))
-(-10 -7 (-15 -2749 ((-3 (|:| |%expansion| (-314 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112))) (-15 -1330 (|#2| |#2|)))
-((-3077 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
-(((-423 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3077 (|#4| (-1 |#3| |#1|) |#2|))) (-1049) (-432 |#1|) (-1049) (-432 |#3|)) (T -423))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-4 *2 (-432 *6)) (-5 *1 (-423 *5 *4 *6 *2)) (-4 *4 (-432 *5)))))
-(-10 -7 (-15 -3077 (|#4| (-1 |#3| |#1|) |#2|)))
-((-1330 ((|#2| |#2|) 106)) (-4077 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157)) 52)) (-3818 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157)) 171)))
-(((-424 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -4077 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157))) (-15 -3818 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157))) (-15 -1330 (|#2| |#2|))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|) (-10 -8 (-15 -2512 ($ |#3|)))) (-848) (-13 (-1242 |#2| |#3|) (-365) (-1199) (-10 -8 (-15 -2862 ($ $)) (-15 -4117 ($ $)))) (-983 |#4|) (-1175)) (T -424))
-((-1330 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-4 *2 (-13 (-27) (-1199) (-432 *3) (-10 -8 (-15 -2512 ($ *4))))) (-4 *4 (-848)) (-4 *5 (-13 (-1242 *2 *4) (-365) (-1199) (-10 -8 (-15 -2862 ($ $)) (-15 -4117 ($ $))))) (-5 *1 (-424 *3 *2 *4 *5 *6 *7)) (-4 *6 (-983 *5)) (-14 *7 (-1175)))) (-3818 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-4 *3 (-13 (-27) (-1199) (-432 *6) (-10 -8 (-15 -2512 ($ *7))))) (-4 *7 (-848)) (-4 *8 (-13 (-1242 *3 *7) (-365) (-1199) (-10 -8 (-15 -2862 ($ $)) (-15 -4117 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157)))))) (-5 *1 (-424 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1157)) (-4 *9 (-983 *8)) (-14 *10 (-1175)))) (-4077 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-4 *3 (-13 (-27) (-1199) (-432 *6) (-10 -8 (-15 -2512 ($ *7))))) (-4 *7 (-848)) (-4 *8 (-13 (-1242 *3 *7) (-365) (-1199) (-10 -8 (-15 -2862 ($ $)) (-15 -4117 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157)))))) (-5 *1 (-424 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1157)) (-4 *9 (-983 *8)) (-14 *10 (-1175)))))
-(-10 -7 (-15 -4077 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157))) (-15 -3818 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157))) (-15 -1330 (|#2| |#2|)))
-((-2403 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-4362 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-3077 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
-(((-425 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3077 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -4362 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2403 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1099) (-427 |#1|) (-1099) (-427 |#3|)) (T -425))
-((-2403 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1099)) (-4 *5 (-1099)) (-4 *2 (-427 *5)) (-5 *1 (-425 *6 *4 *5 *2)) (-4 *4 (-427 *6)))) (-4362 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1099)) (-4 *2 (-1099)) (-5 *1 (-425 *5 *4 *2 *6)) (-4 *4 (-427 *5)) (-4 *6 (-427 *2)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-427 *6)) (-5 *1 (-425 *5 *4 *6 *2)) (-4 *4 (-427 *5)))))
-(-10 -7 (-15 -3077 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -4362 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2403 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-1795 (($) 52)) (-1781 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 46)) (-1757 (($ $ $) 45)) (-2768 (((-112) $ $) 34)) (-4025 (((-771)) 56)) (-1819 (($ (-644 |#2|)) 23) (($) NIL)) (-3335 (($) 67)) (-3641 (((-112) $ $) 15)) (-1439 ((|#2| $) 78)) (-3059 ((|#2| $) 76)) (-3712 (((-921) $) 71)) (-2390 (($ $ $) 41)) (-2168 (($ (-921)) 61)) (-3209 (($ $ |#2|) NIL) (($ $ $) 44)) (-4044 (((-771) (-1 (-112) |#2|) $) NIL) (((-771) |#2| $) 31)) (-2523 (($ (-644 |#2|)) 27)) (-2718 (($ $) 54)) (-2512 (((-862) $) 39)) (-2870 (((-771) $) 24)) (-2465 (($ (-644 |#2|)) 22) (($) NIL)) (-2940 (((-112) $ $) 19)))
-(((-426 |#1| |#2|) (-10 -8 (-15 -4025 ((-771))) (-15 -2168 (|#1| (-921))) (-15 -3712 ((-921) |#1|)) (-15 -3335 (|#1|)) (-15 -1439 (|#2| |#1|)) (-15 -3059 (|#2| |#1|)) (-15 -1795 (|#1|)) (-15 -2718 (|#1| |#1|)) (-15 -2870 ((-771) |#1|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -3641 ((-112) |#1| |#1|)) (-15 -2465 (|#1|)) (-15 -2465 (|#1| (-644 |#2|))) (-15 -1819 (|#1|)) (-15 -1819 (|#1| (-644 |#2|))) (-15 -2390 (|#1| |#1| |#1|)) (-15 -3209 (|#1| |#1| |#1|)) (-15 -3209 (|#1| |#1| |#2|)) (-15 -1757 (|#1| |#1| |#1|)) (-15 -2768 ((-112) |#1| |#1|)) (-15 -1781 (|#1| |#1| |#1|)) (-15 -1781 (|#1| |#1| |#2|)) (-15 -1781 (|#1| |#2| |#1|)) (-15 -2523 (|#1| (-644 |#2|))) (-15 -4044 ((-771) |#2| |#1|)) (-15 -4044 ((-771) (-1 (-112) |#2|) |#1|))) (-427 |#2|) (-1099)) (T -426))
-((-4025 (*1 *2) (-12 (-4 *4 (-1099)) (-5 *2 (-771)) (-5 *1 (-426 *3 *4)) (-4 *3 (-427 *4)))))
-(-10 -8 (-15 -4025 ((-771))) (-15 -2168 (|#1| (-921))) (-15 -3712 ((-921) |#1|)) (-15 -3335 (|#1|)) (-15 -1439 (|#2| |#1|)) (-15 -3059 (|#2| |#1|)) (-15 -1795 (|#1|)) (-15 -2718 (|#1| |#1|)) (-15 -2870 ((-771) |#1|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -3641 ((-112) |#1| |#1|)) (-15 -2465 (|#1|)) (-15 -2465 (|#1| (-644 |#2|))) (-15 -1819 (|#1|)) (-15 -1819 (|#1| (-644 |#2|))) (-15 -2390 (|#1| |#1| |#1|)) (-15 -3209 (|#1| |#1| |#1|)) (-15 -3209 (|#1| |#1| |#2|)) (-15 -1757 (|#1| |#1| |#1|)) (-15 -2768 ((-112) |#1| |#1|)) (-15 -1781 (|#1| |#1| |#1|)) (-15 -1781 (|#1| |#1| |#2|)) (-15 -1781 (|#1| |#2| |#1|)) (-15 -2523 (|#1| (-644 |#2|))) (-15 -4044 ((-771) |#2| |#1|)) (-15 -4044 ((-771) (-1 (-112) |#2|) |#1|)))
-((-2985 (((-112) $ $) 19)) (-1795 (($) 68 (|has| |#1| (-370)))) (-1781 (($ |#1| $) 83) (($ $ |#1|) 82) (($ $ $) 81)) (-1757 (($ $ $) 79)) (-2768 (((-112) $ $) 80)) (-3081 (((-112) $ (-771)) 8)) (-4025 (((-771)) 62 (|has| |#1| (-370)))) (-1819 (($ (-644 |#1|)) 75) (($) 74)) (-3586 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-4093 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3066 (($ |#1| $) 48 (|has| $ (-6 -4417))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4417)))) (-2651 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4417)))) (-3335 (($) 65 (|has| |#1| (-370)))) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-3641 (((-112) $ $) 71)) (-2744 (((-112) $ (-771)) 9)) (-1439 ((|#1| $) 66 (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3059 ((|#1| $) 67 (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3712 (((-921) $) 64 (|has| |#1| (-370)))) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22)) (-2390 (($ $ $) 76)) (-3119 ((|#1| $) 40)) (-4265 (($ |#1| $) 41)) (-2168 (($ (-921)) 63 (|has| |#1| (-370)))) (-4033 (((-1119) $) 21)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-3209 (($ $ |#1|) 78) (($ $ $) 77)) (-3879 (($) 50) (($ (-644 |#1|)) 49)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 51)) (-2718 (($ $) 69 (|has| |#1| (-370)))) (-2512 (((-862) $) 18)) (-2870 (((-771) $) 70)) (-2465 (($ (-644 |#1|)) 73) (($) 72)) (-3122 (((-112) $ $) 23)) (-3309 (($ (-644 |#1|)) 43)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20)) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 60)) (-3876 (($ $) 78)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 191)) (-1968 (($ $) NIL)) (-2644 (((-112) $) 48)) (-4065 ((|#1| $) 16)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL (|has| |#1| (-1218)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-1218)))) (-3322 (($ |#1| (-566)) 42)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 148)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 74)) (-2928 (((-3 $ "failed") $) 164)) (-4045 (((-3 (-409 (-566)) "failed") $) 84 (|has| |#1| (-547)))) (-1356 (((-112) $) 80 (|has| |#1| (-547)))) (-2269 (((-409 (-566)) $) 91 (|has| |#1| (-547)))) (-3674 (($ |#1| (-566)) 44)) (-1784 (((-112) $) 213 (|has| |#1| (-1218)))) (-3466 (((-112) $) 62)) (-1652 (((-771) $) 51)) (-4167 (((-3 "nil" "sqfr" "irred" "prime") $ (-566)) 175)) (-3749 ((|#1| $ (-566)) 174)) (-3366 (((-566) $ (-566)) 173)) (-2324 (($ |#1| (-566)) 41)) (-3152 (($ (-1 |#1| |#1|) $) 183)) (-4116 (($ |#1| (-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566))))) 79)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2402 (((-1157) $) NIL)) (-3239 (($ |#1| (-566)) 43)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) 192 (|has| |#1| (-454)))) (-2696 (($ |#1| (-566) (-3 "nil" "sqfr" "irred" "prime")) 40)) (-2670 (((-644 (-2 (|:| -2473 |#1|) (|:| -2456 (-566)))) $) 73)) (-3504 (((-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566)))) $) 12)) (-2473 (((-420 $) $) NIL (|has| |#1| (-1218)))) (-2997 (((-3 $ "failed") $ $) 176)) (-2456 (((-566) $) 167)) (-1351 ((|#1| $) 75)) (-2095 (($ $ (-644 |#1|) (-644 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) 100 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 106 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) $) NIL (|has| |#1| (-516 (-1175) $))) (($ $ (-644 (-1175)) (-644 $)) 107 (|has| |#1| (-516 (-1175) $))) (($ $ (-644 (-295 $))) 103 (|has| |#1| (-310 $))) (($ $ (-295 $)) NIL (|has| |#1| (-310 $))) (($ $ $ $) NIL (|has| |#1| (-310 $))) (($ $ (-644 $) (-644 $)) NIL (|has| |#1| (-310 $)))) (-4393 (($ $ |#1|) 92 (|has| |#1| (-287 |#1| |#1|))) (($ $ $) 93 (|has| |#1| (-287 $ $)))) (-2578 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) 182)) (-3204 (((-538) $) 39 (|has| |#1| (-614 (-538)))) (((-381) $) 113 (|has| |#1| (-1022))) (((-225) $) 119 (|has| |#1| (-1022)))) (-3780 (((-862) $) 146) (($ (-566)) 65) (($ $) NIL) (($ |#1|) 64) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566)))))) (-3996 (((-771)) 67 T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-2493 (($) 53 T CONST)) (-4333 (($) 52 T CONST)) (-2876 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2950 (((-112) $ $) 159)) (-3051 (($ $) 161) (($ $ $) NIL)) (-3040 (($ $ $) 180)) (** (($ $ (-921)) NIL) (($ $ (-771)) 125)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 69) (($ $ $) 68) (($ |#1| $) 70) (($ $ |#1|) NIL)))
+(((-420 |#1|) (-13 (-558) (-231 |#1|) (-38 |#1|) (-340 |#1|) (-413 |#1|) (-10 -8 (-15 -1351 (|#1| $)) (-15 -2456 ((-566) $)) (-15 -4116 ($ |#1| (-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566)))))) (-15 -3504 ((-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566)))) $)) (-15 -2324 ($ |#1| (-566))) (-15 -2670 ((-644 (-2 (|:| -2473 |#1|) (|:| -2456 (-566)))) $)) (-15 -3239 ($ |#1| (-566))) (-15 -3366 ((-566) $ (-566))) (-15 -3749 (|#1| $ (-566))) (-15 -4167 ((-3 "nil" "sqfr" "irred" "prime") $ (-566))) (-15 -1652 ((-771) $)) (-15 -3674 ($ |#1| (-566))) (-15 -3322 ($ |#1| (-566))) (-15 -2696 ($ |#1| (-566) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -4065 (|#1| $)) (-15 -3876 ($ $)) (-15 -3152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-454)) (-6 (-454)) |%noBranch|) (IF (|has| |#1| (-1022)) (-6 (-1022)) |%noBranch|) (IF (|has| |#1| (-1218)) (-6 (-1218)) |%noBranch|) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -1356 ((-112) $)) (-15 -2269 ((-409 (-566)) $)) (-15 -4045 ((-3 (-409 (-566)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-287 $ $)) (-6 (-287 $ $)) |%noBranch|) (IF (|has| |#1| (-310 $)) (-6 (-310 $)) |%noBranch|) (IF (|has| |#1| (-516 (-1175) $)) (-6 (-516 (-1175) $)) |%noBranch|))) (-558)) (T -420))
+((-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-558)) (-5 *1 (-420 *3)))) (-1351 (*1 *2 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-2456 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-420 *3)) (-4 *3 (-558)))) (-4116 (*1 *1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2) (|:| |xpnt| (-566))))) (-4 *2 (-558)) (-5 *1 (-420 *2)))) (-3504 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3) (|:| |xpnt| (-566))))) (-5 *1 (-420 *3)) (-4 *3 (-558)))) (-2324 (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-2670 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| -2473 *3) (|:| -2456 (-566))))) (-5 *1 (-420 *3)) (-4 *3 (-558)))) (-3239 (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-3366 (*1 *2 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-420 *3)) (-4 *3 (-558)))) (-3749 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-4167 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-420 *4)) (-4 *4 (-558)))) (-1652 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-420 *3)) (-4 *3 (-558)))) (-3674 (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-3322 (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-2696 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-566)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-4065 (*1 *2 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-3876 (*1 *1 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558)))) (-1356 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-420 *3)) (-4 *3 (-547)) (-4 *3 (-558)))) (-2269 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-420 *3)) (-4 *3 (-547)) (-4 *3 (-558)))) (-4045 (*1 *2 *1) (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-420 *3)) (-4 *3 (-547)) (-4 *3 (-558)))))
+(-13 (-558) (-231 |#1|) (-38 |#1|) (-340 |#1|) (-413 |#1|) (-10 -8 (-15 -1351 (|#1| $)) (-15 -2456 ((-566) $)) (-15 -4116 ($ |#1| (-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566)))))) (-15 -3504 ((-644 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-566)))) $)) (-15 -2324 ($ |#1| (-566))) (-15 -2670 ((-644 (-2 (|:| -2473 |#1|) (|:| -2456 (-566)))) $)) (-15 -3239 ($ |#1| (-566))) (-15 -3366 ((-566) $ (-566))) (-15 -3749 (|#1| $ (-566))) (-15 -4167 ((-3 "nil" "sqfr" "irred" "prime") $ (-566))) (-15 -1652 ((-771) $)) (-15 -3674 ($ |#1| (-566))) (-15 -3322 ($ |#1| (-566))) (-15 -2696 ($ |#1| (-566) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -4065 (|#1| $)) (-15 -3876 ($ $)) (-15 -3152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-454)) (-6 (-454)) |%noBranch|) (IF (|has| |#1| (-1022)) (-6 (-1022)) |%noBranch|) (IF (|has| |#1| (-1218)) (-6 (-1218)) |%noBranch|) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -1356 ((-112) $)) (-15 -2269 ((-409 (-566)) $)) (-15 -4045 ((-3 (-409 (-566)) "failed") $))) |%noBranch|) (IF (|has| |#1| (-287 $ $)) (-6 (-287 $ $)) |%noBranch|) (IF (|has| |#1| (-310 $)) (-6 (-310 $)) |%noBranch|) (IF (|has| |#1| (-516 (-1175) $)) (-6 (-516 (-1175) $)) |%noBranch|)))
+((-3301 (((-420 |#1|) (-420 |#1|) (-1 (-420 |#1|) |#1|)) 28)) (-2627 (((-420 |#1|) (-420 |#1|) (-420 |#1|)) 17)))
+(((-421 |#1|) (-10 -7 (-15 -3301 ((-420 |#1|) (-420 |#1|) (-1 (-420 |#1|) |#1|))) (-15 -2627 ((-420 |#1|) (-420 |#1|) (-420 |#1|)))) (-558)) (T -421))
+((-2627 (*1 *2 *2 *2) (-12 (-5 *2 (-420 *3)) (-4 *3 (-558)) (-5 *1 (-421 *3)))) (-3301 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-420 *4) *4)) (-4 *4 (-558)) (-5 *2 (-420 *4)) (-5 *1 (-421 *4)))))
+(-10 -7 (-15 -3301 ((-420 |#1|) (-420 |#1|) (-1 (-420 |#1|) |#1|))) (-15 -2627 ((-420 |#1|) (-420 |#1|) (-420 |#1|))))
+((-1815 ((|#2| |#2|) 183)) (-3552 (((-3 (|:| |%expansion| (-314 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112)) 60)))
+(((-422 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3552 ((-3 (|:| |%expansion| (-314 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112))) (-15 -1815 (|#2| |#2|))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|)) (-1175) |#2|) (T -422))
+((-1815 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-422 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1199) (-432 *3))) (-14 *4 (-1175)) (-14 *5 *2))) (-3552 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (|:| |%expansion| (-314 *5 *3 *6 *7)) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157)))))) (-5 *1 (-422 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-14 *6 (-1175)) (-14 *7 *3))))
+(-10 -7 (-15 -3552 ((-3 (|:| |%expansion| (-314 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112))) (-15 -1815 (|#2| |#2|)))
+((-3152 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
+(((-423 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3152 (|#4| (-1 |#3| |#1|) |#2|))) (-1049) (-432 |#1|) (-1049) (-432 |#3|)) (T -423))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-4 *2 (-432 *6)) (-5 *1 (-423 *5 *4 *6 *2)) (-4 *4 (-432 *5)))))
+(-10 -7 (-15 -3152 (|#4| (-1 |#3| |#1|) |#2|)))
+((-1815 ((|#2| |#2|) 106)) (-1646 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157)) 52)) (-4200 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157)) 171)))
+(((-424 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1646 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157))) (-15 -4200 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157))) (-15 -1815 (|#2| |#2|))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|) (-10 -8 (-15 -3780 ($ |#3|)))) (-848) (-13 (-1242 |#2| |#3|) (-365) (-1199) (-10 -8 (-15 -2578 ($ $)) (-15 -3921 ($ $)))) (-983 |#4|) (-1175)) (T -424))
+((-1815 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-4 *2 (-13 (-27) (-1199) (-432 *3) (-10 -8 (-15 -3780 ($ *4))))) (-4 *4 (-848)) (-4 *5 (-13 (-1242 *2 *4) (-365) (-1199) (-10 -8 (-15 -2578 ($ $)) (-15 -3921 ($ $))))) (-5 *1 (-424 *3 *2 *4 *5 *6 *7)) (-4 *6 (-983 *5)) (-14 *7 (-1175)))) (-4200 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-4 *3 (-13 (-27) (-1199) (-432 *6) (-10 -8 (-15 -3780 ($ *7))))) (-4 *7 (-848)) (-4 *8 (-13 (-1242 *3 *7) (-365) (-1199) (-10 -8 (-15 -2578 ($ $)) (-15 -3921 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157)))))) (-5 *1 (-424 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1157)) (-4 *9 (-983 *8)) (-14 *10 (-1175)))) (-1646 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-112)) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-4 *3 (-13 (-27) (-1199) (-432 *6) (-10 -8 (-15 -3780 ($ *7))))) (-4 *7 (-848)) (-4 *8 (-13 (-1242 *3 *7) (-365) (-1199) (-10 -8 (-15 -2578 ($ $)) (-15 -3921 ($ $))))) (-5 *2 (-3 (|:| |%series| *8) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157)))))) (-5 *1 (-424 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1157)) (-4 *9 (-983 *8)) (-14 *10 (-1175)))))
+(-10 -7 (-15 -1646 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157))) (-15 -4200 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))) |#2| (-112) (-1157))) (-15 -1815 (|#2| |#2|)))
+((-3264 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-1580 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-3152 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
+(((-425 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1580 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3264 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1099) (-427 |#1|) (-1099) (-427 |#3|)) (T -425))
+((-3264 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1099)) (-4 *5 (-1099)) (-4 *2 (-427 *5)) (-5 *1 (-425 *6 *4 *5 *2)) (-4 *4 (-427 *6)))) (-1580 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1099)) (-4 *2 (-1099)) (-5 *1 (-425 *5 *4 *2 *6)) (-4 *4 (-427 *5)) (-4 *6 (-427 *2)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-427 *6)) (-5 *1 (-425 *5 *4 *6 *2)) (-4 *4 (-427 *5)))))
+(-10 -7 (-15 -3152 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -1580 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3264 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-3297 (($) 52)) (-1814 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 46)) (-4134 (($ $ $) 45)) (-2523 (((-112) $ $) 34)) (-4070 (((-771)) 56)) (-3712 (($ (-644 |#2|)) 23) (($) NIL)) (-1618 (($) 67)) (-1866 (((-112) $ $) 15)) (-1945 ((|#2| $) 78)) (-2709 ((|#2| $) 76)) (-1299 (((-921) $) 71)) (-3147 (($ $ $) 41)) (-2208 (($ (-921)) 61)) (-3304 (($ $ |#2|) NIL) (($ $ $) 44)) (-4067 (((-771) (-1 (-112) |#2|) $) NIL) (((-771) |#2| $) 31)) (-3791 (($ (-644 |#2|)) 27)) (-3247 (($ $) 54)) (-3780 (((-862) $) 39)) (-2313 (((-771) $) 24)) (-2535 (($ (-644 |#2|)) 22) (($) NIL)) (-2950 (((-112) $ $) 19)))
+(((-426 |#1| |#2|) (-10 -8 (-15 -4070 ((-771))) (-15 -2208 (|#1| (-921))) (-15 -1299 ((-921) |#1|)) (-15 -1618 (|#1|)) (-15 -1945 (|#2| |#1|)) (-15 -2709 (|#2| |#1|)) (-15 -3297 (|#1|)) (-15 -3247 (|#1| |#1|)) (-15 -2313 ((-771) |#1|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -1866 ((-112) |#1| |#1|)) (-15 -2535 (|#1|)) (-15 -2535 (|#1| (-644 |#2|))) (-15 -3712 (|#1|)) (-15 -3712 (|#1| (-644 |#2|))) (-15 -3147 (|#1| |#1| |#1|)) (-15 -3304 (|#1| |#1| |#1|)) (-15 -3304 (|#1| |#1| |#2|)) (-15 -4134 (|#1| |#1| |#1|)) (-15 -2523 ((-112) |#1| |#1|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -1814 (|#1| |#1| |#2|)) (-15 -1814 (|#1| |#2| |#1|)) (-15 -3791 (|#1| (-644 |#2|))) (-15 -4067 ((-771) |#2| |#1|)) (-15 -4067 ((-771) (-1 (-112) |#2|) |#1|))) (-427 |#2|) (-1099)) (T -426))
+((-4070 (*1 *2) (-12 (-4 *4 (-1099)) (-5 *2 (-771)) (-5 *1 (-426 *3 *4)) (-4 *3 (-427 *4)))))
+(-10 -8 (-15 -4070 ((-771))) (-15 -2208 (|#1| (-921))) (-15 -1299 ((-921) |#1|)) (-15 -1618 (|#1|)) (-15 -1945 (|#2| |#1|)) (-15 -2709 (|#2| |#1|)) (-15 -3297 (|#1|)) (-15 -3247 (|#1| |#1|)) (-15 -2313 ((-771) |#1|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -1866 ((-112) |#1| |#1|)) (-15 -2535 (|#1|)) (-15 -2535 (|#1| (-644 |#2|))) (-15 -3712 (|#1|)) (-15 -3712 (|#1| (-644 |#2|))) (-15 -3147 (|#1| |#1| |#1|)) (-15 -3304 (|#1| |#1| |#1|)) (-15 -3304 (|#1| |#1| |#2|)) (-15 -4134 (|#1| |#1| |#1|)) (-15 -2523 ((-112) |#1| |#1|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -1814 (|#1| |#1| |#2|)) (-15 -1814 (|#1| |#2| |#1|)) (-15 -3791 (|#1| (-644 |#2|))) (-15 -4067 ((-771) |#2| |#1|)) (-15 -4067 ((-771) (-1 (-112) |#2|) |#1|)))
+((-3009 (((-112) $ $) 19)) (-3297 (($) 68 (|has| |#1| (-370)))) (-1814 (($ |#1| $) 83) (($ $ |#1|) 82) (($ $ $) 81)) (-4134 (($ $ $) 79)) (-2523 (((-112) $ $) 80)) (-1574 (((-112) $ (-771)) 8)) (-4070 (((-771)) 62 (|has| |#1| (-370)))) (-3712 (($ (-644 |#1|)) 75) (($) 74)) (-2556 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-4133 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1450 (($ |#1| $) 48 (|has| $ (-6 -4414))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4414)))) (-2661 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4414)))) (-1618 (($) 65 (|has| |#1| (-370)))) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1866 (((-112) $ $) 71)) (-3501 (((-112) $ (-771)) 9)) (-1945 ((|#1| $) 66 (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2709 ((|#1| $) 67 (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-1299 (((-921) $) 64 (|has| |#1| (-370)))) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22)) (-3147 (($ $ $) 76)) (-3765 ((|#1| $) 40)) (-2903 (($ |#1| $) 41)) (-2208 (($ (-921)) 63 (|has| |#1| (-370)))) (-4056 (((-1119) $) 21)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-3304 (($ $ |#1|) 78) (($ $ $) 77)) (-3551 (($) 50) (($ (-644 |#1|)) 49)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 51)) (-3247 (($ $) 69 (|has| |#1| (-370)))) (-3780 (((-862) $) 18)) (-2313 (((-771) $) 70)) (-2535 (($ (-644 |#1|)) 73) (($) 72)) (-3801 (((-112) $ $) 23)) (-2926 (($ (-644 |#1|)) 43)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20)) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-427 |#1|) (-140) (-1099)) (T -427))
-((-2870 (*1 *2 *1) (-12 (-4 *1 (-427 *3)) (-4 *3 (-1099)) (-5 *2 (-771)))) (-2718 (*1 *1 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-370)))) (-1795 (*1 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-370)) (-4 *2 (-1099)))) (-3059 (*1 *2 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-850)))) (-1439 (*1 *2 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-850)))))
-(-13 (-229 |t#1|) (-1097 |t#1|) (-10 -8 (-6 -4417) (-15 -2870 ((-771) $)) (IF (|has| |t#1| (-370)) (PROGN (-6 (-370)) (-15 -2718 ($ $)) (-15 -1795 ($))) |%noBranch|) (IF (|has| |t#1| (-850)) (PROGN (-15 -3059 (|t#1| $)) (-15 -1439 (|t#1| $))) |%noBranch|)))
+((-2313 (*1 *2 *1) (-12 (-4 *1 (-427 *3)) (-4 *3 (-1099)) (-5 *2 (-771)))) (-3247 (*1 *1 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-370)))) (-3297 (*1 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-370)) (-4 *2 (-1099)))) (-2709 (*1 *2 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-850)))) (-1945 (*1 *2 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-850)))))
+(-13 (-229 |t#1|) (-1097 |t#1|) (-10 -8 (-6 -4414) (-15 -2313 ((-771) $)) (IF (|has| |t#1| (-370)) (PROGN (-6 (-370)) (-15 -3247 ($ $)) (-15 -3297 ($))) |%noBranch|) (IF (|has| |t#1| (-850)) (PROGN (-15 -2709 (|t#1| $)) (-15 -1945 (|t#1| $))) |%noBranch|)))
(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-613 (-862)) . T) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-229 |#1|) . T) ((-235 |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-370) |has| |#1| (-370)) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1097 |#1|) . T) ((-1099) . T) ((-1214) . T))
-((-2633 (((-587 |#2|) |#2| (-1175)) 36)) (-3811 (((-587 |#2|) |#2| (-1175)) 21)) (-3281 ((|#2| |#2| (-1175)) 26)))
-(((-428 |#1| |#2|) (-10 -7 (-15 -3811 ((-587 |#2|) |#2| (-1175))) (-15 -2633 ((-587 |#2|) |#2| (-1175))) (-15 -3281 (|#2| |#2| (-1175)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-29 |#1|))) (T -428))
-((-3281 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-428 *4 *2)) (-4 *2 (-13 (-1199) (-29 *4))))) (-2633 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-428 *5 *3)) (-4 *3 (-13 (-1199) (-29 *5))))) (-3811 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-428 *5 *3)) (-4 *3 (-13 (-1199) (-29 *5))))))
-(-10 -7 (-15 -3811 ((-587 |#2|) |#2| (-1175))) (-15 -2633 ((-587 |#2|) |#2| (-1175))) (-15 -3281 (|#2| |#2| (-1175))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-1666 (($ |#2| |#1|) 37)) (-3192 (($ |#2| |#1|) 35)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-332 |#2|)) 25)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 10 T CONST)) (-2495 (($) 16 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 36)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 39) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-429 |#1| |#2|) (-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4404)) (IF (|has| |#1| (-6 -4404)) (-6 -4404) |%noBranch|) |%noBranch|) (-15 -2512 ($ |#1|)) (-15 -2512 ($ (-332 |#2|))) (-15 -1666 ($ |#2| |#1|)) (-15 -3192 ($ |#2| |#1|)))) (-13 (-172) (-38 (-409 (-566)))) (-13 (-850) (-21))) (T -429))
-((-2512 (*1 *1 *2) (-12 (-5 *1 (-429 *2 *3)) (-4 *2 (-13 (-172) (-38 (-409 (-566))))) (-4 *3 (-13 (-850) (-21))))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-332 *4)) (-4 *4 (-13 (-850) (-21))) (-5 *1 (-429 *3 *4)) (-4 *3 (-13 (-172) (-38 (-409 (-566))))))) (-1666 (*1 *1 *2 *3) (-12 (-5 *1 (-429 *3 *2)) (-4 *3 (-13 (-172) (-38 (-409 (-566))))) (-4 *2 (-13 (-850) (-21))))) (-3192 (*1 *1 *2 *3) (-12 (-5 *1 (-429 *3 *2)) (-4 *3 (-13 (-172) (-38 (-409 (-566))))) (-4 *2 (-13 (-850) (-21))))))
-(-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4404)) (IF (|has| |#1| (-6 -4404)) (-6 -4404) |%noBranch|) |%noBranch|) (-15 -2512 ($ |#1|)) (-15 -2512 ($ (-332 |#2|))) (-15 -1666 ($ |#2| |#1|)) (-15 -3192 ($ |#2| |#1|))))
-((-4117 (((-3 |#2| (-644 |#2|)) |#2| (-1175)) 115)))
-(((-430 |#1| |#2|) (-10 -7 (-15 -4117 ((-3 |#2| (-644 |#2|)) |#2| (-1175)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-959) (-29 |#1|))) (T -430))
-((-4117 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 *3 (-644 *3))) (-5 *1 (-430 *5 *3)) (-4 *3 (-13 (-1199) (-959) (-29 *5))))))
-(-10 -7 (-15 -4117 ((-3 |#2| (-644 |#2|)) |#2| (-1175))))
-((-2540 (((-644 (-1175)) $) 81)) (-2358 (((-409 (-1171 $)) $ (-612 $)) 314)) (-3226 (($ $ (-295 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-644 (-612 $)) (-644 $)) 278)) (-2977 (((-3 (-612 $) "failed") $) NIL) (((-3 (-1175) "failed") $) 84) (((-3 (-566) "failed") $) NIL) (((-3 |#2| "failed") $) 274) (((-3 (-409 (-952 |#2|)) "failed") $) 364) (((-3 (-952 |#2|) "failed") $) 276) (((-3 (-409 (-566)) "failed") $) NIL)) (-1756 (((-612 $) $) NIL) (((-1175) $) 28) (((-566) $) NIL) ((|#2| $) 272) (((-409 (-952 |#2|)) $) 346) (((-952 |#2|) $) 273) (((-409 (-566)) $) NIL)) (-2336 (((-114) (-114)) 47)) (-2861 (($ $) 99)) (-2230 (((-3 (-612 $) "failed") $) 269)) (-2322 (((-644 (-612 $)) $) 270)) (-2692 (((-3 (-644 $) "failed") $) 288)) (-3658 (((-3 (-2 (|:| |val| $) (|:| -3250 (-566))) "failed") $) 295)) (-1853 (((-3 (-644 $) "failed") $) 286)) (-2113 (((-3 (-2 (|:| -3157 (-566)) (|:| |var| (-612 $))) "failed") $) 305)) (-3285 (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $) 292) (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $ (-114)) 256) (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $ (-1175)) 258)) (-2636 (((-112) $) 17)) (-3531 ((|#2| $) 19)) (-2070 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) 277) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) 109) (($ $ (-1175) (-1 $ (-644 $))) NIL) (($ $ (-1175) (-1 $ $)) NIL) (($ $ (-644 (-114)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-114) (-1 $ (-644 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1175)) 62) (($ $ (-644 (-1175))) 281) (($ $) 282) (($ $ (-114) $ (-1175)) 65) (($ $ (-644 (-114)) (-644 $) (-1175)) 72) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ $))) 120) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ (-644 $)))) 283) (($ $ (-1175) (-771) (-1 $ (-644 $))) 105) (($ $ (-1175) (-771) (-1 $ $)) 104)) (-4386 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-644 $)) 119)) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) 279)) (-3413 (($ $) 325)) (-3134 (((-892 (-566)) $) 298) (((-892 (-381)) $) 302) (($ (-420 $)) 360) (((-538) $) NIL)) (-2512 (((-862) $) 280) (($ (-612 $)) 93) (($ (-1175)) 24) (($ |#2|) NIL) (($ (-1124 |#2| (-612 $))) NIL) (($ (-409 |#2|)) 330) (($ (-952 (-409 |#2|))) 369) (($ (-409 (-952 (-409 |#2|)))) 342) (($ (-409 (-952 |#2|))) 336) (($ $) NIL) (($ (-952 |#2|)) 218) (($ (-409 (-566))) 374) (($ (-566)) NIL)) (-3795 (((-771)) 88)) (-2306 (((-112) (-114)) 42)) (-3357 (($ (-1175) $) 31) (($ (-1175) $ $) 32) (($ (-1175) $ $ $) 33) (($ (-1175) $ $ $ $) 34) (($ (-1175) (-644 $)) 39)) (* (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL) (($ |#2| $) 307) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL)))
-(((-431 |#1| |#2|) (-10 -8 (-15 * (|#1| (-921) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2512 (|#1| (-566))) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -2512 (|#1| (-952 |#2|))) (-15 -2977 ((-3 (-952 |#2|) "failed") |#1|)) (-15 -1756 ((-952 |#2|) |#1|)) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2512 (|#1| |#1|)) (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -2512 (|#1| (-409 (-952 |#2|)))) (-15 -2977 ((-3 (-409 (-952 |#2|)) "failed") |#1|)) (-15 -1756 ((-409 (-952 |#2|)) |#1|)) (-15 -2358 ((-409 (-1171 |#1|)) |#1| (-612 |#1|))) (-15 -2512 (|#1| (-409 (-952 (-409 |#2|))))) (-15 -2512 (|#1| (-952 (-409 |#2|)))) (-15 -2512 (|#1| (-409 |#2|))) (-15 -3413 (|#1| |#1|)) (-15 -3134 (|#1| (-420 |#1|))) (-15 -2070 (|#1| |#1| (-1175) (-771) (-1 |#1| |#1|))) (-15 -2070 (|#1| |#1| (-1175) (-771) (-1 |#1| (-644 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-771)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-771)) (-644 (-1 |#1| |#1|)))) (-15 -3658 ((-3 (-2 (|:| |val| |#1|) (|:| -3250 (-566))) "failed") |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -3250 (-566))) "failed") |#1| (-1175))) (-15 -3285 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -3250 (-566))) "failed") |#1| (-114))) (-15 -2861 (|#1| |#1|)) (-15 -2512 (|#1| (-1124 |#2| (-612 |#1|)))) (-15 -2113 ((-3 (-2 (|:| -3157 (-566)) (|:| |var| (-612 |#1|))) "failed") |#1|)) (-15 -1853 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -3250 (-566))) "failed") |#1|)) (-15 -2692 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2070 (|#1| |#1| (-644 (-114)) (-644 |#1|) (-1175))) (-15 -2070 (|#1| |#1| (-114) |#1| (-1175))) (-15 -2070 (|#1| |#1|)) (-15 -2070 (|#1| |#1| (-644 (-1175)))) (-15 -2070 (|#1| |#1| (-1175))) (-15 -3357 (|#1| (-1175) (-644 |#1|))) (-15 -3357 (|#1| (-1175) |#1| |#1| |#1| |#1|)) (-15 -3357 (|#1| (-1175) |#1| |#1| |#1|)) (-15 -3357 (|#1| (-1175) |#1| |#1|)) (-15 -3357 (|#1| (-1175) |#1|)) (-15 -2540 ((-644 (-1175)) |#1|)) (-15 -3531 (|#2| |#1|)) (-15 -2636 ((-112) |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -2512 (|#1| (-1175))) (-15 -2977 ((-3 (-1175) "failed") |#1|)) (-15 -1756 ((-1175) |#1|)) (-15 -2070 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2070 (|#1| |#1| (-114) (-1 |#1| (-644 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2070 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| |#1|)))) (-15 -2070 (|#1| |#1| (-1175) (-1 |#1| |#1|))) (-15 -2070 (|#1| |#1| (-1175) (-1 |#1| (-644 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| |#1|)))) (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 -2322 ((-644 (-612 |#1|)) |#1|)) (-15 -2230 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -3226 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -3226 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -3226 (|#1| |#1| (-295 |#1|))) (-15 -4386 (|#1| (-114) (-644 |#1|))) (-15 -4386 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1| |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1|)) (-15 -2070 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#1| |#1|)) (-15 -2070 (|#1| |#1| (-295 |#1|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2070 (|#1| |#1| (-612 |#1|) |#1|)) (-15 -2512 (|#1| (-612 |#1|))) (-15 -2977 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -1756 ((-612 |#1|) |#1|)) (-15 -2512 ((-862) |#1|))) (-432 |#2|) (-1099)) (T -431))
-((-2336 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *4 (-1099)) (-5 *1 (-431 *3 *4)) (-4 *3 (-432 *4)))) (-2306 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *5 (-1099)) (-5 *2 (-112)) (-5 *1 (-431 *4 *5)) (-4 *4 (-432 *5)))) (-3795 (*1 *2) (-12 (-4 *4 (-1099)) (-5 *2 (-771)) (-5 *1 (-431 *3 *4)) (-4 *3 (-432 *4)))))
-(-10 -8 (-15 * (|#1| (-921) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -2512 (|#1| (-566))) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -2512 (|#1| (-952 |#2|))) (-15 -2977 ((-3 (-952 |#2|) "failed") |#1|)) (-15 -1756 ((-952 |#2|) |#1|)) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2512 (|#1| |#1|)) (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -2512 (|#1| (-409 (-952 |#2|)))) (-15 -2977 ((-3 (-409 (-952 |#2|)) "failed") |#1|)) (-15 -1756 ((-409 (-952 |#2|)) |#1|)) (-15 -2358 ((-409 (-1171 |#1|)) |#1| (-612 |#1|))) (-15 -2512 (|#1| (-409 (-952 (-409 |#2|))))) (-15 -2512 (|#1| (-952 (-409 |#2|)))) (-15 -2512 (|#1| (-409 |#2|))) (-15 -3413 (|#1| |#1|)) (-15 -3134 (|#1| (-420 |#1|))) (-15 -2070 (|#1| |#1| (-1175) (-771) (-1 |#1| |#1|))) (-15 -2070 (|#1| |#1| (-1175) (-771) (-1 |#1| (-644 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-771)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-771)) (-644 (-1 |#1| |#1|)))) (-15 -3658 ((-3 (-2 (|:| |val| |#1|) (|:| -3250 (-566))) "failed") |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -3250 (-566))) "failed") |#1| (-1175))) (-15 -3285 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -3250 (-566))) "failed") |#1| (-114))) (-15 -2861 (|#1| |#1|)) (-15 -2512 (|#1| (-1124 |#2| (-612 |#1|)))) (-15 -2113 ((-3 (-2 (|:| -3157 (-566)) (|:| |var| (-612 |#1|))) "failed") |#1|)) (-15 -1853 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -3250 (-566))) "failed") |#1|)) (-15 -2692 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2070 (|#1| |#1| (-644 (-114)) (-644 |#1|) (-1175))) (-15 -2070 (|#1| |#1| (-114) |#1| (-1175))) (-15 -2070 (|#1| |#1|)) (-15 -2070 (|#1| |#1| (-644 (-1175)))) (-15 -2070 (|#1| |#1| (-1175))) (-15 -3357 (|#1| (-1175) (-644 |#1|))) (-15 -3357 (|#1| (-1175) |#1| |#1| |#1| |#1|)) (-15 -3357 (|#1| (-1175) |#1| |#1| |#1|)) (-15 -3357 (|#1| (-1175) |#1| |#1|)) (-15 -3357 (|#1| (-1175) |#1|)) (-15 -2540 ((-644 (-1175)) |#1|)) (-15 -3531 (|#2| |#1|)) (-15 -2636 ((-112) |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -2512 (|#1| (-1175))) (-15 -2977 ((-3 (-1175) "failed") |#1|)) (-15 -1756 ((-1175) |#1|)) (-15 -2070 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2070 (|#1| |#1| (-114) (-1 |#1| (-644 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2070 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| |#1|)))) (-15 -2070 (|#1| |#1| (-1175) (-1 |#1| |#1|))) (-15 -2070 (|#1| |#1| (-1175) (-1 |#1| (-644 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2070 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| |#1|)))) (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 -2322 ((-644 (-612 |#1|)) |#1|)) (-15 -2230 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -3226 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -3226 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -3226 (|#1| |#1| (-295 |#1|))) (-15 -4386 (|#1| (-114) (-644 |#1|))) (-15 -4386 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1| |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1| |#1|)) (-15 -4386 (|#1| (-114) |#1|)) (-15 -2070 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#1| |#1|)) (-15 -2070 (|#1| |#1| (-295 |#1|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2070 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2070 (|#1| |#1| (-612 |#1|) |#1|)) (-15 -2512 (|#1| (-612 |#1|))) (-15 -2977 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -1756 ((-612 |#1|) |#1|)) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 116 (|has| |#1| (-25)))) (-2540 (((-644 (-1175)) $) 203)) (-2358 (((-409 (-1171 $)) $ (-612 $)) 171 (|has| |#1| (-558)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 143 (|has| |#1| (-558)))) (-3653 (($ $) 144 (|has| |#1| (-558)))) (-2152 (((-112) $) 146 (|has| |#1| (-558)))) (-2248 (((-644 (-612 $)) $) 39)) (-4126 (((-3 $ "failed") $ $) 118 (|has| |#1| (-21)))) (-3226 (($ $ (-295 $)) 51) (($ $ (-644 (-295 $))) 50) (($ $ (-644 (-612 $)) (-644 $)) 49)) (-2857 (($ $) 163 (|has| |#1| (-558)))) (-1370 (((-420 $) $) 164 (|has| |#1| (-558)))) (-1561 (((-112) $ $) 154 (|has| |#1| (-558)))) (-2342 (($) 104 (-2805 (|has| |#1| (-1111)) (|has| |#1| (-25))) CONST)) (-2977 (((-3 (-612 $) "failed") $) 64) (((-3 (-1175) "failed") $) 216) (((-3 (-566) "failed") $) 210 (|has| |#1| (-1038 (-566)))) (((-3 |#1| "failed") $) 207) (((-3 (-409 (-952 |#1|)) "failed") $) 169 (|has| |#1| (-558))) (((-3 (-952 |#1|) "failed") $) 123 (|has| |#1| (-1049))) (((-3 (-409 (-566)) "failed") $) 98 (-2805 (-12 (|has| |#1| (-1038 (-566))) (|has| |#1| (-558))) (|has| |#1| (-1038 (-409 (-566))))))) (-1756 (((-612 $) $) 65) (((-1175) $) 217) (((-566) $) 209 (|has| |#1| (-1038 (-566)))) ((|#1| $) 208) (((-409 (-952 |#1|)) $) 170 (|has| |#1| (-558))) (((-952 |#1|) $) 124 (|has| |#1| (-1049))) (((-409 (-566)) $) 99 (-2805 (-12 (|has| |#1| (-1038 (-566))) (|has| |#1| (-558))) (|has| |#1| (-1038 (-409 (-566))))))) (-2926 (($ $ $) 158 (|has| |#1| (-558)))) (-1628 (((-689 (-566)) (-689 $)) 137 (-2438 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 136 (-2438 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 135 (|has| |#1| (-1049))) (((-689 |#1|) (-689 $)) 134 (|has| |#1| (-1049)))) (-1579 (((-3 $ "failed") $) 106 (|has| |#1| (-1111)))) (-2938 (($ $ $) 157 (|has| |#1| (-558)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 152 (|has| |#1| (-558)))) (-2635 (((-112) $) 165 (|has| |#1| (-558)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 212 (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 211 (|has| |#1| (-886 (-381))))) (-4334 (($ $) 46) (($ (-644 $)) 45)) (-3674 (((-644 (-114)) $) 38)) (-2336 (((-114) (-114)) 37)) (-2741 (((-112) $) 105 (|has| |#1| (-1111)))) (-2884 (((-112) $) 17 (|has| $ (-1038 (-566))))) (-2861 (($ $) 186 (|has| |#1| (-1049)))) (-3001 (((-1124 |#1| (-612 $)) $) 187 (|has| |#1| (-1049)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 161 (|has| |#1| (-558)))) (-2734 (((-1171 $) (-612 $)) 20 (|has| $ (-1049)))) (-3077 (($ (-1 $ $) (-612 $)) 31)) (-2230 (((-3 (-612 $) "failed") $) 41)) (-2184 (($ (-644 $)) 150 (|has| |#1| (-558))) (($ $ $) 149 (|has| |#1| (-558)))) (-2878 (((-1157) $) 10)) (-2322 (((-644 (-612 $)) $) 40)) (-3083 (($ (-114) $) 33) (($ (-114) (-644 $)) 32)) (-2692 (((-3 (-644 $) "failed") $) 192 (|has| |#1| (-1111)))) (-3658 (((-3 (-2 (|:| |val| $) (|:| -3250 (-566))) "failed") $) 183 (|has| |#1| (-1049)))) (-1853 (((-3 (-644 $) "failed") $) 190 (|has| |#1| (-25)))) (-2113 (((-3 (-2 (|:| -3157 (-566)) (|:| |var| (-612 $))) "failed") $) 189 (|has| |#1| (-25)))) (-3285 (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $) 191 (|has| |#1| (-1111))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $ (-114)) 185 (|has| |#1| (-1049))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $ (-1175)) 184 (|has| |#1| (-1049)))) (-2181 (((-112) $ (-114)) 35) (((-112) $ (-1175)) 34)) (-2626 (($ $) 108 (-2805 (|has| |#1| (-475)) (|has| |#1| (-558))))) (-3173 (((-771) $) 42)) (-4033 (((-1119) $) 11)) (-2636 (((-112) $) 205)) (-3531 ((|#1| $) 204)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 151 (|has| |#1| (-558)))) (-2222 (($ (-644 $)) 148 (|has| |#1| (-558))) (($ $ $) 147 (|has| |#1| (-558)))) (-1981 (((-112) $ $) 30) (((-112) $ (-1175)) 29)) (-2391 (((-420 $) $) 162 (|has| |#1| (-558)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 160 (|has| |#1| (-558))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 159 (|has| |#1| (-558)))) (-2972 (((-3 $ "failed") $ $) 142 (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 153 (|has| |#1| (-558)))) (-1693 (((-112) $) 18 (|has| $ (-1038 (-566))))) (-2070 (($ $ (-612 $) $) 62) (($ $ (-644 (-612 $)) (-644 $)) 61) (($ $ (-644 (-295 $))) 60) (($ $ (-295 $)) 59) (($ $ $ $) 58) (($ $ (-644 $) (-644 $)) 57) (($ $ (-644 (-1175)) (-644 (-1 $ $))) 28) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) 27) (($ $ (-1175) (-1 $ (-644 $))) 26) (($ $ (-1175) (-1 $ $)) 25) (($ $ (-644 (-114)) (-644 (-1 $ $))) 24) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) 23) (($ $ (-114) (-1 $ (-644 $))) 22) (($ $ (-114) (-1 $ $)) 21) (($ $ (-1175)) 197 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-1175))) 196 (|has| |#1| (-614 (-538)))) (($ $) 195 (|has| |#1| (-614 (-538)))) (($ $ (-114) $ (-1175)) 194 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-114)) (-644 $) (-1175)) 193 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ $))) 182 (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ (-644 $)))) 181 (|has| |#1| (-1049))) (($ $ (-1175) (-771) (-1 $ (-644 $))) 180 (|has| |#1| (-1049))) (($ $ (-1175) (-771) (-1 $ $)) 179 (|has| |#1| (-1049)))) (-1813 (((-771) $) 155 (|has| |#1| (-558)))) (-4386 (($ (-114) $) 56) (($ (-114) $ $) 55) (($ (-114) $ $ $) 54) (($ (-114) $ $ $ $) 53) (($ (-114) (-644 $)) 52)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 156 (|has| |#1| (-558)))) (-2811 (($ $) 44) (($ $ $) 43)) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) 128 (|has| |#1| (-1049))) (($ $ (-1175) (-771)) 127 (|has| |#1| (-1049))) (($ $ (-644 (-1175))) 126 (|has| |#1| (-1049))) (($ $ (-1175)) 125 (|has| |#1| (-1049)))) (-3413 (($ $) 176 (|has| |#1| (-558)))) (-3013 (((-1124 |#1| (-612 $)) $) 177 (|has| |#1| (-558)))) (-2127 (($ $) 19 (|has| $ (-1049)))) (-3134 (((-892 (-566)) $) 214 (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) 213 (|has| |#1| (-614 (-892 (-381))))) (($ (-420 $)) 178 (|has| |#1| (-558))) (((-538) $) 100 (|has| |#1| (-614 (-538))))) (-2032 (($ $ $) 111 (|has| |#1| (-475)))) (-3755 (($ $ $) 112 (|has| |#1| (-475)))) (-2512 (((-862) $) 12) (($ (-612 $)) 63) (($ (-1175)) 215) (($ |#1|) 206) (($ (-1124 |#1| (-612 $))) 188 (|has| |#1| (-1049))) (($ (-409 |#1|)) 174 (|has| |#1| (-558))) (($ (-952 (-409 |#1|))) 173 (|has| |#1| (-558))) (($ (-409 (-952 (-409 |#1|)))) 172 (|has| |#1| (-558))) (($ (-409 (-952 |#1|))) 168 (|has| |#1| (-558))) (($ $) 141 (|has| |#1| (-558))) (($ (-952 |#1|)) 122 (|has| |#1| (-1049))) (($ (-409 (-566))) 97 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-1038 (-566))) (|has| |#1| (-558))) (|has| |#1| (-1038 (-409 (-566)))))) (($ (-566)) 96 (-2805 (|has| |#1| (-1049)) (|has| |#1| (-1038 (-566)))))) (-3842 (((-3 $ "failed") $) 138 (|has| |#1| (-145)))) (-3795 (((-771)) 133 (|has| |#1| (-1049)) CONST)) (-3236 (($ $) 48) (($ (-644 $)) 47)) (-2306 (((-112) (-114)) 36)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 145 (|has| |#1| (-558)))) (-3357 (($ (-1175) $) 202) (($ (-1175) $ $) 201) (($ (-1175) $ $ $) 200) (($ (-1175) $ $ $ $) 199) (($ (-1175) (-644 $)) 198)) (-2485 (($) 115 (|has| |#1| (-25)) CONST)) (-2495 (($) 103 (|has| |#1| (-1111)) CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) 132 (|has| |#1| (-1049))) (($ $ (-1175) (-771)) 131 (|has| |#1| (-1049))) (($ $ (-644 (-1175))) 130 (|has| |#1| (-1049))) (($ $ (-1175)) 129 (|has| |#1| (-1049)))) (-2940 (((-112) $ $) 6)) (-3061 (($ (-1124 |#1| (-612 $)) (-1124 |#1| (-612 $))) 175 (|has| |#1| (-558))) (($ $ $) 109 (-2805 (|has| |#1| (-475)) (|has| |#1| (-558))))) (-3047 (($ $ $) 121 (|has| |#1| (-21))) (($ $) 120 (|has| |#1| (-21)))) (-3034 (($ $ $) 113 (|has| |#1| (-25)))) (** (($ $ (-566)) 110 (-2805 (|has| |#1| (-475)) (|has| |#1| (-558)))) (($ $ (-771)) 107 (|has| |#1| (-1111))) (($ $ (-921)) 102 (|has| |#1| (-1111)))) (* (($ (-409 (-566)) $) 167 (|has| |#1| (-558))) (($ $ (-409 (-566))) 166 (|has| |#1| (-558))) (($ |#1| $) 140 (|has| |#1| (-172))) (($ $ |#1|) 139 (|has| |#1| (-172))) (($ (-566) $) 119 (|has| |#1| (-21))) (($ (-771) $) 117 (|has| |#1| (-25))) (($ (-921) $) 114 (|has| |#1| (-25))) (($ $ $) 101 (|has| |#1| (-1111)))))
+((-1758 (((-587 |#2|) |#2| (-1175)) 36)) (-4154 (((-587 |#2|) |#2| (-1175)) 21)) (-2720 ((|#2| |#2| (-1175)) 26)))
+(((-428 |#1| |#2|) (-10 -7 (-15 -4154 ((-587 |#2|) |#2| (-1175))) (-15 -1758 ((-587 |#2|) |#2| (-1175))) (-15 -2720 (|#2| |#2| (-1175)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-29 |#1|))) (T -428))
+((-2720 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-428 *4 *2)) (-4 *2 (-13 (-1199) (-29 *4))))) (-1758 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-428 *5 *3)) (-4 *3 (-13 (-1199) (-29 *5))))) (-4154 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-428 *5 *3)) (-4 *3 (-13 (-1199) (-29 *5))))))
+(-10 -7 (-15 -4154 ((-587 |#2|) |#2| (-1175))) (-15 -1758 ((-587 |#2|) |#2| (-1175))) (-15 -2720 (|#2| |#2| (-1175))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-1335 (($ |#2| |#1|) 37)) (-3151 (($ |#2| |#1|) 35)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-332 |#2|)) 25)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 10 T CONST)) (-4333 (($) 16 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 36)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 39) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-429 |#1| |#2|) (-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4401)) (IF (|has| |#1| (-6 -4401)) (-6 -4401) |%noBranch|) |%noBranch|) (-15 -3780 ($ |#1|)) (-15 -3780 ($ (-332 |#2|))) (-15 -1335 ($ |#2| |#1|)) (-15 -3151 ($ |#2| |#1|)))) (-13 (-172) (-38 (-409 (-566)))) (-13 (-850) (-21))) (T -429))
+((-3780 (*1 *1 *2) (-12 (-5 *1 (-429 *2 *3)) (-4 *2 (-13 (-172) (-38 (-409 (-566))))) (-4 *3 (-13 (-850) (-21))))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-332 *4)) (-4 *4 (-13 (-850) (-21))) (-5 *1 (-429 *3 *4)) (-4 *3 (-13 (-172) (-38 (-409 (-566))))))) (-1335 (*1 *1 *2 *3) (-12 (-5 *1 (-429 *3 *2)) (-4 *3 (-13 (-172) (-38 (-409 (-566))))) (-4 *2 (-13 (-850) (-21))))) (-3151 (*1 *1 *2 *3) (-12 (-5 *1 (-429 *3 *2)) (-4 *3 (-13 (-172) (-38 (-409 (-566))))) (-4 *2 (-13 (-850) (-21))))))
+(-13 (-38 |#1|) (-10 -8 (IF (|has| |#2| (-6 -4401)) (IF (|has| |#1| (-6 -4401)) (-6 -4401) |%noBranch|) |%noBranch|) (-15 -3780 ($ |#1|)) (-15 -3780 ($ (-332 |#2|))) (-15 -1335 ($ |#2| |#1|)) (-15 -3151 ($ |#2| |#1|))))
+((-3921 (((-3 |#2| (-644 |#2|)) |#2| (-1175)) 115)))
+(((-430 |#1| |#2|) (-10 -7 (-15 -3921 ((-3 |#2| (-644 |#2|)) |#2| (-1175)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-959) (-29 |#1|))) (T -430))
+((-3921 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 *3 (-644 *3))) (-5 *1 (-430 *5 *3)) (-4 *3 (-13 (-1199) (-959) (-29 *5))))))
+(-10 -7 (-15 -3921 ((-3 |#2| (-644 |#2|)) |#2| (-1175))))
+((-2608 (((-644 (-1175)) $) 81)) (-2438 (((-409 (-1171 $)) $ (-612 $)) 314)) (-2463 (($ $ (-295 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-644 (-612 $)) (-644 $)) 278)) (-3066 (((-3 (-612 $) "failed") $) NIL) (((-3 (-1175) "failed") $) 84) (((-3 (-566) "failed") $) NIL) (((-3 |#2| "failed") $) 274) (((-3 (-409 (-952 |#2|)) "failed") $) 364) (((-3 (-952 |#2|) "failed") $) 276) (((-3 (-409 (-566)) "failed") $) NIL)) (-1867 (((-612 $) $) NIL) (((-1175) $) 28) (((-566) $) NIL) ((|#2| $) 272) (((-409 (-952 |#2|)) $) 346) (((-952 |#2|) $) 273) (((-409 (-566)) $) NIL)) (-2415 (((-114) (-114)) 47)) (-2227 (($ $) 99)) (-2116 (((-3 (-612 $) "failed") $) 269)) (-2404 (((-644 (-612 $)) $) 270)) (-4201 (((-3 (-644 $) "failed") $) 288)) (-2014 (((-3 (-2 (|:| |val| $) (|:| -2456 (-566))) "failed") $) 295)) (-2657 (((-3 (-644 $) "failed") $) 286)) (-3462 (((-3 (-2 (|:| -3223 (-566)) (|:| |var| (-612 $))) "failed") $) 305)) (-2749 (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $) 292) (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $ (-114)) 256) (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $ (-1175)) 258)) (-3595 (((-112) $) 17)) (-3604 ((|#2| $) 19)) (-2095 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) 277) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) 109) (($ $ (-1175) (-1 $ (-644 $))) NIL) (($ $ (-1175) (-1 $ $)) NIL) (($ $ (-644 (-114)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-114) (-1 $ (-644 $))) NIL) (($ $ (-114) (-1 $ $)) NIL) (($ $ (-1175)) 62) (($ $ (-644 (-1175))) 281) (($ $) 282) (($ $ (-114) $ (-1175)) 65) (($ $ (-644 (-114)) (-644 $) (-1175)) 72) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ $))) 120) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ (-644 $)))) 283) (($ $ (-1175) (-771) (-1 $ (-644 $))) 105) (($ $ (-1175) (-771) (-1 $ $)) 104)) (-4393 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-644 $)) 119)) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) 279)) (-1431 (($ $) 325)) (-3204 (((-892 (-566)) $) 298) (((-892 (-381)) $) 302) (($ (-420 $)) 360) (((-538) $) NIL)) (-3780 (((-862) $) 280) (($ (-612 $)) 93) (($ (-1175)) 24) (($ |#2|) NIL) (($ (-1124 |#2| (-612 $))) NIL) (($ (-409 |#2|)) 330) (($ (-952 (-409 |#2|))) 369) (($ (-409 (-952 (-409 |#2|)))) 342) (($ (-409 (-952 |#2|))) 336) (($ $) NIL) (($ (-952 |#2|)) 218) (($ (-409 (-566))) 374) (($ (-566)) NIL)) (-3996 (((-771)) 88)) (-1643 (((-112) (-114)) 42)) (-2986 (($ (-1175) $) 31) (($ (-1175) $ $) 32) (($ (-1175) $ $ $) 33) (($ (-1175) $ $ $ $) 34) (($ (-1175) (-644 $)) 39)) (* (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL) (($ |#2| $) 307) (($ $ |#2|) NIL) (($ $ $) NIL) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL)))
+(((-431 |#1| |#2|) (-10 -8 (-15 * (|#1| (-921) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3780 (|#1| (-566))) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3780 (|#1| (-952 |#2|))) (-15 -3066 ((-3 (-952 |#2|) "failed") |#1|)) (-15 -1867 ((-952 |#2|) |#1|)) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3780 (|#1| |#1|)) (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -3780 (|#1| (-409 (-952 |#2|)))) (-15 -3066 ((-3 (-409 (-952 |#2|)) "failed") |#1|)) (-15 -1867 ((-409 (-952 |#2|)) |#1|)) (-15 -2438 ((-409 (-1171 |#1|)) |#1| (-612 |#1|))) (-15 -3780 (|#1| (-409 (-952 (-409 |#2|))))) (-15 -3780 (|#1| (-952 (-409 |#2|)))) (-15 -3780 (|#1| (-409 |#2|))) (-15 -1431 (|#1| |#1|)) (-15 -3204 (|#1| (-420 |#1|))) (-15 -2095 (|#1| |#1| (-1175) (-771) (-1 |#1| |#1|))) (-15 -2095 (|#1| |#1| (-1175) (-771) (-1 |#1| (-644 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-771)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-771)) (-644 (-1 |#1| |#1|)))) (-15 -2014 ((-3 (-2 (|:| |val| |#1|) (|:| -2456 (-566))) "failed") |#1|)) (-15 -2749 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -2456 (-566))) "failed") |#1| (-1175))) (-15 -2749 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -2456 (-566))) "failed") |#1| (-114))) (-15 -2227 (|#1| |#1|)) (-15 -3780 (|#1| (-1124 |#2| (-612 |#1|)))) (-15 -3462 ((-3 (-2 (|:| -3223 (-566)) (|:| |var| (-612 |#1|))) "failed") |#1|)) (-15 -2657 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2749 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -2456 (-566))) "failed") |#1|)) (-15 -4201 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2095 (|#1| |#1| (-644 (-114)) (-644 |#1|) (-1175))) (-15 -2095 (|#1| |#1| (-114) |#1| (-1175))) (-15 -2095 (|#1| |#1|)) (-15 -2095 (|#1| |#1| (-644 (-1175)))) (-15 -2095 (|#1| |#1| (-1175))) (-15 -2986 (|#1| (-1175) (-644 |#1|))) (-15 -2986 (|#1| (-1175) |#1| |#1| |#1| |#1|)) (-15 -2986 (|#1| (-1175) |#1| |#1| |#1|)) (-15 -2986 (|#1| (-1175) |#1| |#1|)) (-15 -2986 (|#1| (-1175) |#1|)) (-15 -2608 ((-644 (-1175)) |#1|)) (-15 -3604 (|#2| |#1|)) (-15 -3595 ((-112) |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -3780 (|#1| (-1175))) (-15 -3066 ((-3 (-1175) "failed") |#1|)) (-15 -1867 ((-1175) |#1|)) (-15 -2095 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2095 (|#1| |#1| (-114) (-1 |#1| (-644 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2095 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| |#1|)))) (-15 -2095 (|#1| |#1| (-1175) (-1 |#1| |#1|))) (-15 -2095 (|#1| |#1| (-1175) (-1 |#1| (-644 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| |#1|)))) (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 -2404 ((-644 (-612 |#1|)) |#1|)) (-15 -2116 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -2463 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2463 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2463 (|#1| |#1| (-295 |#1|))) (-15 -4393 (|#1| (-114) (-644 |#1|))) (-15 -4393 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1| |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1|)) (-15 -2095 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| (-295 |#1|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2095 (|#1| |#1| (-612 |#1|) |#1|)) (-15 -3780 (|#1| (-612 |#1|))) (-15 -3066 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -1867 ((-612 |#1|) |#1|)) (-15 -3780 ((-862) |#1|))) (-432 |#2|) (-1099)) (T -431))
+((-2415 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *4 (-1099)) (-5 *1 (-431 *3 *4)) (-4 *3 (-432 *4)))) (-1643 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *5 (-1099)) (-5 *2 (-112)) (-5 *1 (-431 *4 *5)) (-4 *4 (-432 *5)))) (-3996 (*1 *2) (-12 (-4 *4 (-1099)) (-5 *2 (-771)) (-5 *1 (-431 *3 *4)) (-4 *3 (-432 *4)))))
+(-10 -8 (-15 * (|#1| (-921) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3780 (|#1| (-566))) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3780 (|#1| (-952 |#2|))) (-15 -3066 ((-3 (-952 |#2|) "failed") |#1|)) (-15 -1867 ((-952 |#2|) |#1|)) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3780 (|#1| |#1|)) (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -3780 (|#1| (-409 (-952 |#2|)))) (-15 -3066 ((-3 (-409 (-952 |#2|)) "failed") |#1|)) (-15 -1867 ((-409 (-952 |#2|)) |#1|)) (-15 -2438 ((-409 (-1171 |#1|)) |#1| (-612 |#1|))) (-15 -3780 (|#1| (-409 (-952 (-409 |#2|))))) (-15 -3780 (|#1| (-952 (-409 |#2|)))) (-15 -3780 (|#1| (-409 |#2|))) (-15 -1431 (|#1| |#1|)) (-15 -3204 (|#1| (-420 |#1|))) (-15 -2095 (|#1| |#1| (-1175) (-771) (-1 |#1| |#1|))) (-15 -2095 (|#1| |#1| (-1175) (-771) (-1 |#1| (-644 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-771)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-771)) (-644 (-1 |#1| |#1|)))) (-15 -2014 ((-3 (-2 (|:| |val| |#1|) (|:| -2456 (-566))) "failed") |#1|)) (-15 -2749 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -2456 (-566))) "failed") |#1| (-1175))) (-15 -2749 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -2456 (-566))) "failed") |#1| (-114))) (-15 -2227 (|#1| |#1|)) (-15 -3780 (|#1| (-1124 |#2| (-612 |#1|)))) (-15 -3462 ((-3 (-2 (|:| -3223 (-566)) (|:| |var| (-612 |#1|))) "failed") |#1|)) (-15 -2657 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2749 ((-3 (-2 (|:| |var| (-612 |#1|)) (|:| -2456 (-566))) "failed") |#1|)) (-15 -4201 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2095 (|#1| |#1| (-644 (-114)) (-644 |#1|) (-1175))) (-15 -2095 (|#1| |#1| (-114) |#1| (-1175))) (-15 -2095 (|#1| |#1|)) (-15 -2095 (|#1| |#1| (-644 (-1175)))) (-15 -2095 (|#1| |#1| (-1175))) (-15 -2986 (|#1| (-1175) (-644 |#1|))) (-15 -2986 (|#1| (-1175) |#1| |#1| |#1| |#1|)) (-15 -2986 (|#1| (-1175) |#1| |#1| |#1|)) (-15 -2986 (|#1| (-1175) |#1| |#1|)) (-15 -2986 (|#1| (-1175) |#1|)) (-15 -2608 ((-644 (-1175)) |#1|)) (-15 -3604 (|#2| |#1|)) (-15 -3595 ((-112) |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -3780 (|#1| (-1175))) (-15 -3066 ((-3 (-1175) "failed") |#1|)) (-15 -1867 ((-1175) |#1|)) (-15 -2095 (|#1| |#1| (-114) (-1 |#1| |#1|))) (-15 -2095 (|#1| |#1| (-114) (-1 |#1| (-644 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2095 (|#1| |#1| (-644 (-114)) (-644 (-1 |#1| |#1|)))) (-15 -2095 (|#1| |#1| (-1175) (-1 |#1| |#1|))) (-15 -2095 (|#1| |#1| (-1175) (-1 |#1| (-644 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| (-644 |#1|))))) (-15 -2095 (|#1| |#1| (-644 (-1175)) (-644 (-1 |#1| |#1|)))) (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 -2404 ((-644 (-612 |#1|)) |#1|)) (-15 -2116 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -2463 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2463 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2463 (|#1| |#1| (-295 |#1|))) (-15 -4393 (|#1| (-114) (-644 |#1|))) (-15 -4393 (|#1| (-114) |#1| |#1| |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1| |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1| |#1|)) (-15 -4393 (|#1| (-114) |#1|)) (-15 -2095 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| (-295 |#1|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2095 (|#1| |#1| (-644 (-612 |#1|)) (-644 |#1|))) (-15 -2095 (|#1| |#1| (-612 |#1|) |#1|)) (-15 -3780 (|#1| (-612 |#1|))) (-15 -3066 ((-3 (-612 |#1|) "failed") |#1|)) (-15 -1867 ((-612 |#1|) |#1|)) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 116 (|has| |#1| (-25)))) (-2608 (((-644 (-1175)) $) 203)) (-2438 (((-409 (-1171 $)) $ (-612 $)) 171 (|has| |#1| (-558)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 143 (|has| |#1| (-558)))) (-1968 (($ $) 144 (|has| |#1| (-558)))) (-2644 (((-112) $) 146 (|has| |#1| (-558)))) (-2327 (((-644 (-612 $)) $) 39)) (-4014 (((-3 $ "failed") $ $) 118 (|has| |#1| (-21)))) (-2463 (($ $ (-295 $)) 51) (($ $ (-644 (-295 $))) 50) (($ $ (-644 (-612 $)) (-644 $)) 49)) (-2179 (($ $) 163 (|has| |#1| (-558)))) (-3271 (((-420 $) $) 164 (|has| |#1| (-558)))) (-2738 (((-112) $ $) 154 (|has| |#1| (-558)))) (-3877 (($) 104 (-2805 (|has| |#1| (-1111)) (|has| |#1| (-25))) CONST)) (-3066 (((-3 (-612 $) "failed") $) 64) (((-3 (-1175) "failed") $) 216) (((-3 (-566) "failed") $) 210 (|has| |#1| (-1038 (-566)))) (((-3 |#1| "failed") $) 207) (((-3 (-409 (-952 |#1|)) "failed") $) 169 (|has| |#1| (-558))) (((-3 (-952 |#1|) "failed") $) 123 (|has| |#1| (-1049))) (((-3 (-409 (-566)) "failed") $) 98 (-2805 (-12 (|has| |#1| (-1038 (-566))) (|has| |#1| (-558))) (|has| |#1| (-1038 (-409 (-566))))))) (-1867 (((-612 $) $) 65) (((-1175) $) 217) (((-566) $) 209 (|has| |#1| (-1038 (-566)))) ((|#1| $) 208) (((-409 (-952 |#1|)) $) 170 (|has| |#1| (-558))) (((-952 |#1|) $) 124 (|has| |#1| (-1049))) (((-409 (-566)) $) 99 (-2805 (-12 (|has| |#1| (-1038 (-566))) (|has| |#1| (-558))) (|has| |#1| (-1038 (-409 (-566))))))) (-2949 (($ $ $) 158 (|has| |#1| (-558)))) (-2210 (((-689 (-566)) (-689 $)) 137 (-2447 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 136 (-2447 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 135 (|has| |#1| (-1049))) (((-689 |#1|) (-689 $)) 134 (|has| |#1| (-1049)))) (-2928 (((-3 $ "failed") $) 106 (|has| |#1| (-1111)))) (-2960 (($ $ $) 157 (|has| |#1| (-558)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 152 (|has| |#1| (-558)))) (-1784 (((-112) $) 165 (|has| |#1| (-558)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 212 (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 211 (|has| |#1| (-886 (-381))))) (-2388 (($ $) 46) (($ (-644 $)) 45)) (-2162 (((-644 (-114)) $) 38)) (-2415 (((-114) (-114)) 37)) (-3466 (((-112) $) 105 (|has| |#1| (-1111)))) (-2469 (((-112) $) 17 (|has| $ (-1038 (-566))))) (-2227 (($ $) 186 (|has| |#1| (-1049)))) (-3088 (((-1124 |#1| (-612 $)) $) 187 (|has| |#1| (-1049)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 161 (|has| |#1| (-558)))) (-3392 (((-1171 $) (-612 $)) 20 (|has| $ (-1049)))) (-3152 (($ (-1 $ $) (-612 $)) 31)) (-2116 (((-3 (-612 $) "failed") $) 41)) (-2197 (($ (-644 $)) 150 (|has| |#1| (-558))) (($ $ $) 149 (|has| |#1| (-558)))) (-2402 (((-1157) $) 10)) (-2404 (((-644 (-612 $)) $) 40)) (-3159 (($ (-114) $) 33) (($ (-114) (-644 $)) 32)) (-4201 (((-3 (-644 $) "failed") $) 192 (|has| |#1| (-1111)))) (-2014 (((-3 (-2 (|:| |val| $) (|:| -2456 (-566))) "failed") $) 183 (|has| |#1| (-1049)))) (-2657 (((-3 (-644 $) "failed") $) 190 (|has| |#1| (-25)))) (-3462 (((-3 (-2 (|:| -3223 (-566)) (|:| |var| (-612 $))) "failed") $) 189 (|has| |#1| (-25)))) (-2749 (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $) 191 (|has| |#1| (-1111))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $ (-114)) 185 (|has| |#1| (-1049))) (((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $ (-1175)) 184 (|has| |#1| (-1049)))) (-2885 (((-112) $ (-114)) 35) (((-112) $ (-1175)) 34)) (-3584 (($ $) 108 (-2805 (|has| |#1| (-475)) (|has| |#1| (-558))))) (-3906 (((-771) $) 42)) (-4056 (((-1119) $) 11)) (-3595 (((-112) $) 205)) (-3604 ((|#1| $) 204)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 151 (|has| |#1| (-558)))) (-2235 (($ (-644 $)) 148 (|has| |#1| (-558))) (($ $ $) 147 (|has| |#1| (-558)))) (-1471 (((-112) $ $) 30) (((-112) $ (-1175)) 29)) (-2473 (((-420 $) $) 162 (|has| |#1| (-558)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 160 (|has| |#1| (-558))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 159 (|has| |#1| (-558)))) (-2997 (((-3 $ "failed") $ $) 142 (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 153 (|has| |#1| (-558)))) (-1630 (((-112) $) 18 (|has| $ (-1038 (-566))))) (-2095 (($ $ (-612 $) $) 62) (($ $ (-644 (-612 $)) (-644 $)) 61) (($ $ (-644 (-295 $))) 60) (($ $ (-295 $)) 59) (($ $ $ $) 58) (($ $ (-644 $) (-644 $)) 57) (($ $ (-644 (-1175)) (-644 (-1 $ $))) 28) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) 27) (($ $ (-1175) (-1 $ (-644 $))) 26) (($ $ (-1175) (-1 $ $)) 25) (($ $ (-644 (-114)) (-644 (-1 $ $))) 24) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) 23) (($ $ (-114) (-1 $ (-644 $))) 22) (($ $ (-114) (-1 $ $)) 21) (($ $ (-1175)) 197 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-1175))) 196 (|has| |#1| (-614 (-538)))) (($ $) 195 (|has| |#1| (-614 (-538)))) (($ $ (-114) $ (-1175)) 194 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-114)) (-644 $) (-1175)) 193 (|has| |#1| (-614 (-538)))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ $))) 182 (|has| |#1| (-1049))) (($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ (-644 $)))) 181 (|has| |#1| (-1049))) (($ $ (-1175) (-771) (-1 $ (-644 $))) 180 (|has| |#1| (-1049))) (($ $ (-1175) (-771) (-1 $ $)) 179 (|has| |#1| (-1049)))) (-3470 (((-771) $) 155 (|has| |#1| (-558)))) (-4393 (($ (-114) $) 56) (($ (-114) $ $) 55) (($ (-114) $ $ $) 54) (($ (-114) $ $ $ $) 53) (($ (-114) (-644 $)) 52)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 156 (|has| |#1| (-558)))) (-2940 (($ $) 44) (($ $ $) 43)) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) 128 (|has| |#1| (-1049))) (($ $ (-1175) (-771)) 127 (|has| |#1| (-1049))) (($ $ (-644 (-1175))) 126 (|has| |#1| (-1049))) (($ $ (-1175)) 125 (|has| |#1| (-1049)))) (-1431 (($ $) 176 (|has| |#1| (-558)))) (-3100 (((-1124 |#1| (-612 $)) $) 177 (|has| |#1| (-558)))) (-3601 (($ $) 19 (|has| $ (-1049)))) (-3204 (((-892 (-566)) $) 214 (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) 213 (|has| |#1| (-614 (-892 (-381))))) (($ (-420 $)) 178 (|has| |#1| (-558))) (((-538) $) 100 (|has| |#1| (-614 (-538))))) (-3850 (($ $ $) 111 (|has| |#1| (-475)))) (-1783 (($ $ $) 112 (|has| |#1| (-475)))) (-3780 (((-862) $) 12) (($ (-612 $)) 63) (($ (-1175)) 215) (($ |#1|) 206) (($ (-1124 |#1| (-612 $))) 188 (|has| |#1| (-1049))) (($ (-409 |#1|)) 174 (|has| |#1| (-558))) (($ (-952 (-409 |#1|))) 173 (|has| |#1| (-558))) (($ (-409 (-952 (-409 |#1|)))) 172 (|has| |#1| (-558))) (($ (-409 (-952 |#1|))) 168 (|has| |#1| (-558))) (($ $) 141 (|has| |#1| (-558))) (($ (-952 |#1|)) 122 (|has| |#1| (-1049))) (($ (-409 (-566))) 97 (-2805 (|has| |#1| (-558)) (-12 (|has| |#1| (-1038 (-566))) (|has| |#1| (-558))) (|has| |#1| (-1038 (-409 (-566)))))) (($ (-566)) 96 (-2805 (|has| |#1| (-1049)) (|has| |#1| (-1038 (-566)))))) (-3226 (((-3 $ "failed") $) 138 (|has| |#1| (-145)))) (-3996 (((-771)) 133 (|has| |#1| (-1049)) CONST)) (-1442 (($ $) 48) (($ (-644 $)) 47)) (-1643 (((-112) (-114)) 36)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 145 (|has| |#1| (-558)))) (-2986 (($ (-1175) $) 202) (($ (-1175) $ $) 201) (($ (-1175) $ $ $) 200) (($ (-1175) $ $ $ $) 199) (($ (-1175) (-644 $)) 198)) (-2493 (($) 115 (|has| |#1| (-25)) CONST)) (-4333 (($) 103 (|has| |#1| (-1111)) CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) 132 (|has| |#1| (-1049))) (($ $ (-1175) (-771)) 131 (|has| |#1| (-1049))) (($ $ (-644 (-1175))) 130 (|has| |#1| (-1049))) (($ $ (-1175)) 129 (|has| |#1| (-1049)))) (-2950 (((-112) $ $) 6)) (-3062 (($ (-1124 |#1| (-612 $)) (-1124 |#1| (-612 $))) 175 (|has| |#1| (-558))) (($ $ $) 109 (-2805 (|has| |#1| (-475)) (|has| |#1| (-558))))) (-3051 (($ $ $) 121 (|has| |#1| (-21))) (($ $) 120 (|has| |#1| (-21)))) (-3040 (($ $ $) 113 (|has| |#1| (-25)))) (** (($ $ (-566)) 110 (-2805 (|has| |#1| (-475)) (|has| |#1| (-558)))) (($ $ (-771)) 107 (|has| |#1| (-1111))) (($ $ (-921)) 102 (|has| |#1| (-1111)))) (* (($ (-409 (-566)) $) 167 (|has| |#1| (-558))) (($ $ (-409 (-566))) 166 (|has| |#1| (-558))) (($ |#1| $) 140 (|has| |#1| (-172))) (($ $ |#1|) 139 (|has| |#1| (-172))) (($ (-566) $) 119 (|has| |#1| (-21))) (($ (-771) $) 117 (|has| |#1| (-25))) (($ (-921) $) 114 (|has| |#1| (-25))) (($ $ $) 101 (|has| |#1| (-1111)))))
(((-432 |#1|) (-140) (-1099)) (T -432))
-((-2636 (*1 *2 *1) (-12 (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-3531 (*1 *2 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)))) (-2540 (*1 *2 *1) (-12 (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-5 *2 (-644 (-1175))))) (-3357 (*1 *1 *2 *1) (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)))) (-3357 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)))) (-3357 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)))) (-3357 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)))) (-3357 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-644 *1)) (-4 *1 (-432 *4)) (-4 *4 (-1099)))) (-2070 (*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-4 *3 (-614 (-538))))) (-2070 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-1175))) (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-4 *3 (-614 (-538))))) (-2070 (*1 *1 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)) (-4 *2 (-614 (-538))))) (-2070 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1175)) (-4 *1 (-432 *4)) (-4 *4 (-1099)) (-4 *4 (-614 (-538))))) (-2070 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-644 (-114))) (-5 *3 (-644 *1)) (-5 *4 (-1175)) (-4 *1 (-432 *5)) (-4 *5 (-1099)) (-4 *5 (-614 (-538))))) (-2692 (*1 *2 *1) (|partial| -12 (-4 *3 (-1111)) (-4 *3 (-1099)) (-5 *2 (-644 *1)) (-4 *1 (-432 *3)))) (-3285 (*1 *2 *1) (|partial| -12 (-4 *3 (-1111)) (-4 *3 (-1099)) (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -3250 (-566)))) (-4 *1 (-432 *3)))) (-1853 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1099)) (-5 *2 (-644 *1)) (-4 *1 (-432 *3)))) (-2113 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1099)) (-5 *2 (-2 (|:| -3157 (-566)) (|:| |var| (-612 *1)))) (-4 *1 (-432 *3)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-1124 *3 (-612 *1))) (-4 *3 (-1049)) (-4 *3 (-1099)) (-4 *1 (-432 *3)))) (-3001 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *3 (-1099)) (-5 *2 (-1124 *3 (-612 *1))) (-4 *1 (-432 *3)))) (-2861 (*1 *1 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)) (-4 *2 (-1049)))) (-3285 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1049)) (-4 *4 (-1099)) (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -3250 (-566)))) (-4 *1 (-432 *4)))) (-3285 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1175)) (-4 *4 (-1049)) (-4 *4 (-1099)) (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -3250 (-566)))) (-4 *1 (-432 *4)))) (-3658 (*1 *2 *1) (|partial| -12 (-4 *3 (-1049)) (-4 *3 (-1099)) (-5 *2 (-2 (|:| |val| *1) (|:| -3250 (-566)))) (-4 *1 (-432 *3)))) (-2070 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-644 (-771))) (-5 *4 (-644 (-1 *1 *1))) (-4 *1 (-432 *5)) (-4 *5 (-1099)) (-4 *5 (-1049)))) (-2070 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-644 (-771))) (-5 *4 (-644 (-1 *1 (-644 *1)))) (-4 *1 (-432 *5)) (-4 *5 (-1099)) (-4 *5 (-1049)))) (-2070 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-771)) (-5 *4 (-1 *1 (-644 *1))) (-4 *1 (-432 *5)) (-4 *5 (-1099)) (-4 *5 (-1049)))) (-2070 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-771)) (-5 *4 (-1 *1 *1)) (-4 *1 (-432 *5)) (-4 *5 (-1099)) (-4 *5 (-1049)))) (-3134 (*1 *1 *2) (-12 (-5 *2 (-420 *1)) (-4 *1 (-432 *3)) (-4 *3 (-558)) (-4 *3 (-1099)))) (-3013 (*1 *2 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1099)) (-5 *2 (-1124 *3 (-612 *1))) (-4 *1 (-432 *3)))) (-3413 (*1 *1 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)) (-4 *2 (-558)))) (-3061 (*1 *1 *2 *2) (-12 (-5 *2 (-1124 *3 (-612 *1))) (-4 *3 (-558)) (-4 *3 (-1099)) (-4 *1 (-432 *3)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-409 *3)) (-4 *3 (-558)) (-4 *3 (-1099)) (-4 *1 (-432 *3)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-952 (-409 *3))) (-4 *3 (-558)) (-4 *3 (-1099)) (-4 *1 (-432 *3)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-409 (-952 (-409 *3)))) (-4 *3 (-558)) (-4 *3 (-1099)) (-4 *1 (-432 *3)))) (-2358 (*1 *2 *1 *3) (-12 (-5 *3 (-612 *1)) (-4 *1 (-432 *4)) (-4 *4 (-1099)) (-4 *4 (-558)) (-5 *2 (-409 (-1171 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-4 *3 (-1111)))))
-(-13 (-303) (-1038 (-1175)) (-884 |t#1|) (-402 |t#1|) (-413 |t#1|) (-10 -8 (-15 -2636 ((-112) $)) (-15 -3531 (|t#1| $)) (-15 -2540 ((-644 (-1175)) $)) (-15 -3357 ($ (-1175) $)) (-15 -3357 ($ (-1175) $ $)) (-15 -3357 ($ (-1175) $ $ $)) (-15 -3357 ($ (-1175) $ $ $ $)) (-15 -3357 ($ (-1175) (-644 $))) (IF (|has| |t#1| (-614 (-538))) (PROGN (-6 (-614 (-538))) (-15 -2070 ($ $ (-1175))) (-15 -2070 ($ $ (-644 (-1175)))) (-15 -2070 ($ $)) (-15 -2070 ($ $ (-114) $ (-1175))) (-15 -2070 ($ $ (-644 (-114)) (-644 $) (-1175)))) |%noBranch|) (IF (|has| |t#1| (-1111)) (PROGN (-6 (-726)) (-15 ** ($ $ (-771))) (-15 -2692 ((-3 (-644 $) "failed") $)) (-15 -3285 ((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-475)) (-6 (-475)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -1853 ((-3 (-644 $) "failed") $)) (-15 -2113 ((-3 (-2 (|:| -3157 (-566)) (|:| |var| (-612 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-1049)) (PROGN (-6 (-1049)) (-6 (-1038 (-952 |t#1|))) (-6 (-900 (-1175))) (-6 (-379 |t#1|)) (-15 -2512 ($ (-1124 |t#1| (-612 $)))) (-15 -3001 ((-1124 |t#1| (-612 $)) $)) (-15 -2861 ($ $)) (-15 -3285 ((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $ (-114))) (-15 -3285 ((-3 (-2 (|:| |var| (-612 $)) (|:| -3250 (-566))) "failed") $ (-1175))) (-15 -3658 ((-3 (-2 (|:| |val| $) (|:| -3250 (-566))) "failed") $)) (-15 -2070 ($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ $)))) (-15 -2070 ($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ (-644 $))))) (-15 -2070 ($ $ (-1175) (-771) (-1 $ (-644 $)))) (-15 -2070 ($ $ (-1175) (-771) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-558)) (PROGN (-6 (-365)) (-6 (-1038 (-409 (-952 |t#1|)))) (-15 -3134 ($ (-420 $))) (-15 -3013 ((-1124 |t#1| (-612 $)) $)) (-15 -3413 ($ $)) (-15 -3061 ($ (-1124 |t#1| (-612 $)) (-1124 |t#1| (-612 $)))) (-15 -2512 ($ (-409 |t#1|))) (-15 -2512 ($ (-952 (-409 |t#1|)))) (-15 -2512 ($ (-409 (-952 (-409 |t#1|))))) (-15 -2358 ((-409 (-1171 $)) $ (-612 $))) (IF (|has| |t#1| (-1038 (-566))) (-6 (-1038 (-409 (-566)))) |%noBranch|)) |%noBranch|)))
+((-3595 (*1 *2 *1) (-12 (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-3604 (*1 *2 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)))) (-2608 (*1 *2 *1) (-12 (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-5 *2 (-644 (-1175))))) (-2986 (*1 *1 *2 *1) (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)))) (-2986 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)))) (-2986 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)))) (-2986 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)))) (-2986 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-644 *1)) (-4 *1 (-432 *4)) (-4 *4 (-1099)))) (-2095 (*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-4 *3 (-614 (-538))))) (-2095 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-1175))) (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-4 *3 (-614 (-538))))) (-2095 (*1 *1 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)) (-4 *2 (-614 (-538))))) (-2095 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-114)) (-5 *3 (-1175)) (-4 *1 (-432 *4)) (-4 *4 (-1099)) (-4 *4 (-614 (-538))))) (-2095 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-644 (-114))) (-5 *3 (-644 *1)) (-5 *4 (-1175)) (-4 *1 (-432 *5)) (-4 *5 (-1099)) (-4 *5 (-614 (-538))))) (-4201 (*1 *2 *1) (|partial| -12 (-4 *3 (-1111)) (-4 *3 (-1099)) (-5 *2 (-644 *1)) (-4 *1 (-432 *3)))) (-2749 (*1 *2 *1) (|partial| -12 (-4 *3 (-1111)) (-4 *3 (-1099)) (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -2456 (-566)))) (-4 *1 (-432 *3)))) (-2657 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1099)) (-5 *2 (-644 *1)) (-4 *1 (-432 *3)))) (-3462 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1099)) (-5 *2 (-2 (|:| -3223 (-566)) (|:| |var| (-612 *1)))) (-4 *1 (-432 *3)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-1124 *3 (-612 *1))) (-4 *3 (-1049)) (-4 *3 (-1099)) (-4 *1 (-432 *3)))) (-3088 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *3 (-1099)) (-5 *2 (-1124 *3 (-612 *1))) (-4 *1 (-432 *3)))) (-2227 (*1 *1 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)) (-4 *2 (-1049)))) (-2749 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1049)) (-4 *4 (-1099)) (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -2456 (-566)))) (-4 *1 (-432 *4)))) (-2749 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1175)) (-4 *4 (-1049)) (-4 *4 (-1099)) (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -2456 (-566)))) (-4 *1 (-432 *4)))) (-2014 (*1 *2 *1) (|partial| -12 (-4 *3 (-1049)) (-4 *3 (-1099)) (-5 *2 (-2 (|:| |val| *1) (|:| -2456 (-566)))) (-4 *1 (-432 *3)))) (-2095 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-644 (-771))) (-5 *4 (-644 (-1 *1 *1))) (-4 *1 (-432 *5)) (-4 *5 (-1099)) (-4 *5 (-1049)))) (-2095 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-644 (-771))) (-5 *4 (-644 (-1 *1 (-644 *1)))) (-4 *1 (-432 *5)) (-4 *5 (-1099)) (-4 *5 (-1049)))) (-2095 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-771)) (-5 *4 (-1 *1 (-644 *1))) (-4 *1 (-432 *5)) (-4 *5 (-1099)) (-4 *5 (-1049)))) (-2095 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-771)) (-5 *4 (-1 *1 *1)) (-4 *1 (-432 *5)) (-4 *5 (-1099)) (-4 *5 (-1049)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-420 *1)) (-4 *1 (-432 *3)) (-4 *3 (-558)) (-4 *3 (-1099)))) (-3100 (*1 *2 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1099)) (-5 *2 (-1124 *3 (-612 *1))) (-4 *1 (-432 *3)))) (-1431 (*1 *1 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)) (-4 *2 (-558)))) (-3062 (*1 *1 *2 *2) (-12 (-5 *2 (-1124 *3 (-612 *1))) (-4 *3 (-558)) (-4 *3 (-1099)) (-4 *1 (-432 *3)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-409 *3)) (-4 *3 (-558)) (-4 *3 (-1099)) (-4 *1 (-432 *3)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-952 (-409 *3))) (-4 *3 (-558)) (-4 *3 (-1099)) (-4 *1 (-432 *3)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-409 (-952 (-409 *3)))) (-4 *3 (-558)) (-4 *3 (-1099)) (-4 *1 (-432 *3)))) (-2438 (*1 *2 *1 *3) (-12 (-5 *3 (-612 *1)) (-4 *1 (-432 *4)) (-4 *4 (-1099)) (-4 *4 (-558)) (-5 *2 (-409 (-1171 *1))))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-4 *3 (-1111)))))
+(-13 (-303) (-1038 (-1175)) (-884 |t#1|) (-402 |t#1|) (-413 |t#1|) (-10 -8 (-15 -3595 ((-112) $)) (-15 -3604 (|t#1| $)) (-15 -2608 ((-644 (-1175)) $)) (-15 -2986 ($ (-1175) $)) (-15 -2986 ($ (-1175) $ $)) (-15 -2986 ($ (-1175) $ $ $)) (-15 -2986 ($ (-1175) $ $ $ $)) (-15 -2986 ($ (-1175) (-644 $))) (IF (|has| |t#1| (-614 (-538))) (PROGN (-6 (-614 (-538))) (-15 -2095 ($ $ (-1175))) (-15 -2095 ($ $ (-644 (-1175)))) (-15 -2095 ($ $)) (-15 -2095 ($ $ (-114) $ (-1175))) (-15 -2095 ($ $ (-644 (-114)) (-644 $) (-1175)))) |%noBranch|) (IF (|has| |t#1| (-1111)) (PROGN (-6 (-726)) (-15 ** ($ $ (-771))) (-15 -4201 ((-3 (-644 $) "failed") $)) (-15 -2749 ((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-475)) (-6 (-475)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -2657 ((-3 (-644 $) "failed") $)) (-15 -3462 ((-3 (-2 (|:| -3223 (-566)) (|:| |var| (-612 $))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |t#1| (-1049)) (PROGN (-6 (-1049)) (-6 (-1038 (-952 |t#1|))) (-6 (-900 (-1175))) (-6 (-379 |t#1|)) (-15 -3780 ($ (-1124 |t#1| (-612 $)))) (-15 -3088 ((-1124 |t#1| (-612 $)) $)) (-15 -2227 ($ $)) (-15 -2749 ((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $ (-114))) (-15 -2749 ((-3 (-2 (|:| |var| (-612 $)) (|:| -2456 (-566))) "failed") $ (-1175))) (-15 -2014 ((-3 (-2 (|:| |val| $) (|:| -2456 (-566))) "failed") $)) (-15 -2095 ($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ $)))) (-15 -2095 ($ $ (-644 (-1175)) (-644 (-771)) (-644 (-1 $ (-644 $))))) (-15 -2095 ($ $ (-1175) (-771) (-1 $ (-644 $)))) (-15 -2095 ($ $ (-1175) (-771) (-1 $ $)))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-558)) (PROGN (-6 (-365)) (-6 (-1038 (-409 (-952 |t#1|)))) (-15 -3204 ($ (-420 $))) (-15 -3100 ((-1124 |t#1| (-612 $)) $)) (-15 -1431 ($ $)) (-15 -3062 ($ (-1124 |t#1| (-612 $)) (-1124 |t#1| (-612 $)))) (-15 -3780 ($ (-409 |t#1|))) (-15 -3780 ($ (-952 (-409 |t#1|)))) (-15 -3780 ($ (-409 (-952 (-409 |t#1|))))) (-15 -2438 ((-409 (-1171 $)) $ (-612 $))) (IF (|has| |t#1| (-1038 (-566))) (-6 (-1038 (-409 (-566)))) |%noBranch|)) |%noBranch|)))
(((-21) -2805 (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-21))) ((-23) -2805 (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -2805 (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-38 #0=(-409 (-566))) |has| |#1| (-558)) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-558)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-558)) ((-111 |#1| |#1|) |has| |#1| (-172)) ((-111 $ $) |has| |#1| (-558)) ((-131) -2805 (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-21))) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) -2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-558))) ((-616 #1=(-409 (-952 |#1|))) |has| |#1| (-558)) ((-616 (-566)) -2805 (|has| |#1| (-1049)) (|has| |#1| (-1038 (-566))) (|has| |#1| (-558)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-616 #2=(-612 $)) . T) ((-616 #3=(-952 |#1|)) |has| |#1| (-1049)) ((-616 #4=(-1175)) . T) ((-616 |#1|) . T) ((-616 $) |has| |#1| (-558)) ((-613 (-862)) . T) ((-172) |has| |#1| (-558)) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-614 (-892 (-381))) |has| |#1| (-614 (-892 (-381)))) ((-614 (-892 (-566))) |has| |#1| (-614 (-892 (-566)))) ((-243) |has| |#1| (-558)) ((-291) |has| |#1| (-558)) ((-308) |has| |#1| (-558)) ((-310 $) . T) ((-303) . T) ((-365) |has| |#1| (-558)) ((-379 |#1|) |has| |#1| (-1049)) ((-402 |#1|) . T) ((-413 |#1|) . T) ((-454) |has| |#1| (-558)) ((-475) |has| |#1| (-475)) ((-516 (-612 $) $) . T) ((-516 $ $) . T) ((-558) |has| |#1| (-558)) ((-646 #0#) |has| |#1| (-558)) ((-646 (-566)) -2805 (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145)) (|has| |#1| (-21))) ((-646 |#1|) |has| |#1| (-172)) ((-646 $) -2805 (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-648 #0#) |has| |#1| (-558)) ((-648 |#1|) |has| |#1| (-172)) ((-648 $) -2805 (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-640 #0#) |has| |#1| (-558)) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) |has| |#1| (-558)) ((-639 (-566)) -12 (|has| |#1| (-639 (-566))) (|has| |#1| (-1049))) ((-639 |#1|) |has| |#1| (-1049)) ((-717 #0#) |has| |#1| (-558)) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) |has| |#1| (-558)) ((-726) -2805 (|has| |#1| (-1111)) (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-475)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-900 (-1175)) |has| |#1| (-1049)) ((-886 (-381)) |has| |#1| (-886 (-381))) ((-886 (-566)) |has| |#1| (-886 (-566))) ((-884 |#1|) . T) ((-920) |has| |#1| (-558)) ((-1038 (-409 (-566))) -2805 (|has| |#1| (-1038 (-409 (-566)))) (-12 (|has| |#1| (-558)) (|has| |#1| (-1038 (-566))))) ((-1038 #1#) |has| |#1| (-558)) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 #2#) . T) ((-1038 #3#) |has| |#1| (-1049)) ((-1038 #4#) . T) ((-1038 |#1|) . T) ((-1051 #0#) |has| |#1| (-558)) ((-1051 |#1|) |has| |#1| (-172)) ((-1051 $) |has| |#1| (-558)) ((-1056 #0#) |has| |#1| (-558)) ((-1056 |#1|) |has| |#1| (-172)) ((-1056 $) |has| |#1| (-558)) ((-1049) -2805 (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-1057) -2805 (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-1111) -2805 (|has| |#1| (-1111)) (|has| |#1| (-1049)) (|has| |#1| (-558)) (|has| |#1| (-475)) (|has| |#1| (-172)) (|has| |#1| (-147)) (|has| |#1| (-145))) ((-1099) . T) ((-1214) . T) ((-1218) |has| |#1| (-558)))
-((-3019 ((|#2| |#2| |#2|) 31)) (-2336 (((-114) (-114)) 43)) (-2354 ((|#2| |#2|) 63)) (-1339 ((|#2| |#2|) 66)) (-1748 ((|#2| |#2|) 30)) (-3151 ((|#2| |#2| |#2|) 33)) (-4347 ((|#2| |#2| |#2|) 35)) (-2649 ((|#2| |#2| |#2|) 32)) (-2075 ((|#2| |#2| |#2|) 34)) (-2306 (((-112) (-114)) 41)) (-2223 ((|#2| |#2|) 37)) (-2134 ((|#2| |#2|) 36)) (-1346 ((|#2| |#2|) 25)) (-3090 ((|#2| |#2| |#2|) 28) ((|#2| |#2|) 26)) (-3193 ((|#2| |#2| |#2|) 29)))
-(((-433 |#1| |#2|) (-10 -7 (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 -1346 (|#2| |#2|)) (-15 -3090 (|#2| |#2|)) (-15 -3090 (|#2| |#2| |#2|)) (-15 -3193 (|#2| |#2| |#2|)) (-15 -1748 (|#2| |#2|)) (-15 -3019 (|#2| |#2| |#2|)) (-15 -2649 (|#2| |#2| |#2|)) (-15 -3151 (|#2| |#2| |#2|)) (-15 -2075 (|#2| |#2| |#2|)) (-15 -4347 (|#2| |#2| |#2|)) (-15 -2134 (|#2| |#2|)) (-15 -2223 (|#2| |#2|)) (-15 -1339 (|#2| |#2|)) (-15 -2354 (|#2| |#2|))) (-558) (-432 |#1|)) (T -433))
-((-2354 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-1339 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-2223 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-2134 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-4347 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-2075 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-3151 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-2649 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-3019 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-1748 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-3193 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-3090 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-3090 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-1346 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-2336 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-433 *3 *4)) (-4 *4 (-432 *3)))) (-2306 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-433 *4 *5)) (-4 *5 (-432 *4)))))
-(-10 -7 (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 -1346 (|#2| |#2|)) (-15 -3090 (|#2| |#2|)) (-15 -3090 (|#2| |#2| |#2|)) (-15 -3193 (|#2| |#2| |#2|)) (-15 -1748 (|#2| |#2|)) (-15 -3019 (|#2| |#2| |#2|)) (-15 -2649 (|#2| |#2| |#2|)) (-15 -3151 (|#2| |#2| |#2|)) (-15 -2075 (|#2| |#2| |#2|)) (-15 -4347 (|#2| |#2| |#2|)) (-15 -2134 (|#2| |#2|)) (-15 -2223 (|#2| |#2|)) (-15 -1339 (|#2| |#2|)) (-15 -2354 (|#2| |#2|)))
-((-3092 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1171 |#2|)) (|:| |pol2| (-1171 |#2|)) (|:| |prim| (-1171 |#2|))) |#2| |#2|) 106 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-644 (-1171 |#2|))) (|:| |prim| (-1171 |#2|))) (-644 |#2|)) 68)))
-(((-434 |#1| |#2|) (-10 -7 (-15 -3092 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-644 (-1171 |#2|))) (|:| |prim| (-1171 |#2|))) (-644 |#2|))) (IF (|has| |#2| (-27)) (-15 -3092 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1171 |#2|)) (|:| |pol2| (-1171 |#2|)) (|:| |prim| (-1171 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-558) (-147)) (-432 |#1|)) (T -434))
-((-3092 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-558) (-147))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1171 *3)) (|:| |pol2| (-1171 *3)) (|:| |prim| (-1171 *3)))) (-5 *1 (-434 *4 *3)) (-4 *3 (-27)) (-4 *3 (-432 *4)))) (-3092 (*1 *2 *3) (-12 (-5 *3 (-644 *5)) (-4 *5 (-432 *4)) (-4 *4 (-13 (-558) (-147))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-644 (-1171 *5))) (|:| |prim| (-1171 *5)))) (-5 *1 (-434 *4 *5)))))
-(-10 -7 (-15 -3092 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-644 (-1171 |#2|))) (|:| |prim| (-1171 |#2|))) (-644 |#2|))) (IF (|has| |#2| (-27)) (-15 -3092 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1171 |#2|)) (|:| |pol2| (-1171 |#2|)) (|:| |prim| (-1171 |#2|))) |#2| |#2|)) |%noBranch|))
-((-3276 (((-1269)) 19)) (-1518 (((-1171 (-409 (-566))) |#2| (-612 |#2|)) 41) (((-409 (-566)) |#2|) 25)))
-(((-435 |#1| |#2|) (-10 -7 (-15 -1518 ((-409 (-566)) |#2|)) (-15 -1518 ((-1171 (-409 (-566))) |#2| (-612 |#2|))) (-15 -3276 ((-1269)))) (-13 (-558) (-1038 (-566))) (-432 |#1|)) (T -435))
-((-3276 (*1 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *2 (-1269)) (-5 *1 (-435 *3 *4)) (-4 *4 (-432 *3)))) (-1518 (*1 *2 *3 *4) (-12 (-5 *4 (-612 *3)) (-4 *3 (-432 *5)) (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-435 *5 *3)))) (-1518 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-409 (-566))) (-5 *1 (-435 *4 *3)) (-4 *3 (-432 *4)))))
-(-10 -7 (-15 -1518 ((-409 (-566)) |#2|)) (-15 -1518 ((-1171 (-409 (-566))) |#2| (-612 |#2|))) (-15 -3276 ((-1269))))
-((-3128 (((-112) $) 32)) (-2934 (((-112) $) 34)) (-1776 (((-112) $) 35)) (-2419 (((-112) $) 38)) (-1325 (((-112) $) 33)) (-3934 (((-112) $) 37)) (-2512 (((-862) $) 20) (($ (-1157)) 31) (($ (-1175)) 26) (((-1175) $) 24) (((-1103) $) 23)) (-2348 (((-112) $) 36)) (-2940 (((-112) $ $) 17)))
-(((-436) (-13 (-613 (-862)) (-10 -8 (-15 -2512 ($ (-1157))) (-15 -2512 ($ (-1175))) (-15 -2512 ((-1175) $)) (-15 -2512 ((-1103) $)) (-15 -3128 ((-112) $)) (-15 -1325 ((-112) $)) (-15 -1776 ((-112) $)) (-15 -3934 ((-112) $)) (-15 -2419 ((-112) $)) (-15 -2348 ((-112) $)) (-15 -2934 ((-112) $)) (-15 -2940 ((-112) $ $))))) (T -436))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-436)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-436)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-436)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-436)))) (-3128 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-1325 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-1776 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-3934 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-2419 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-2348 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-2934 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-2940 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
-(-13 (-613 (-862)) (-10 -8 (-15 -2512 ($ (-1157))) (-15 -2512 ($ (-1175))) (-15 -2512 ((-1175) $)) (-15 -2512 ((-1103) $)) (-15 -3128 ((-112) $)) (-15 -1325 ((-112) $)) (-15 -1776 ((-112) $)) (-15 -3934 ((-112) $)) (-15 -2419 ((-112) $)) (-15 -2348 ((-112) $)) (-15 -2934 ((-112) $)) (-15 -2940 ((-112) $ $))))
-((-3974 (((-3 (-420 (-1171 (-409 (-566)))) "failed") |#3|) 72)) (-2287 (((-420 |#3|) |#3|) 34)) (-1777 (((-3 (-420 (-1171 (-48))) "failed") |#3|) 46 (|has| |#2| (-1038 (-48))))) (-4099 (((-3 (|:| |overq| (-1171 (-409 (-566)))) (|:| |overan| (-1171 (-48))) (|:| -3272 (-112))) |#3|) 37)))
-(((-437 |#1| |#2| |#3|) (-10 -7 (-15 -2287 ((-420 |#3|) |#3|)) (-15 -3974 ((-3 (-420 (-1171 (-409 (-566)))) "failed") |#3|)) (-15 -4099 ((-3 (|:| |overq| (-1171 (-409 (-566)))) (|:| |overan| (-1171 (-48))) (|:| -3272 (-112))) |#3|)) (IF (|has| |#2| (-1038 (-48))) (-15 -1777 ((-3 (-420 (-1171 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-558) (-1038 (-566))) (-432 |#1|) (-1240 |#2|)) (T -437))
-((-1777 (*1 *2 *3) (|partial| -12 (-4 *5 (-1038 (-48))) (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4)) (-5 *2 (-420 (-1171 (-48)))) (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))) (-4099 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4)) (-5 *2 (-3 (|:| |overq| (-1171 (-409 (-566)))) (|:| |overan| (-1171 (-48))) (|:| -3272 (-112)))) (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))) (-3974 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4)) (-5 *2 (-420 (-1171 (-409 (-566))))) (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))) (-2287 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4)) (-5 *2 (-420 *3)) (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))))
-(-10 -7 (-15 -2287 ((-420 |#3|) |#3|)) (-15 -3974 ((-3 (-420 (-1171 (-409 (-566)))) "failed") |#3|)) (-15 -4099 ((-3 (|:| |overq| (-1171 (-409 (-566)))) (|:| |overan| (-1171 (-48))) (|:| -3272 (-112))) |#3|)) (IF (|has| |#2| (-1038 (-48))) (-15 -1777 ((-3 (-420 (-1171 (-48))) "failed") |#3|)) |%noBranch|))
-((-2985 (((-112) $ $) NIL)) (-3897 (((-1157) $ (-1157)) NIL)) (-3416 (($ $ (-1157)) NIL)) (-2534 (((-1157) $) NIL)) (-3014 (((-390) (-390) (-390)) 17) (((-390) (-390)) 15)) (-3509 (($ (-390)) NIL) (($ (-390) (-1157)) NIL)) (-2628 (((-390) $) NIL)) (-2878 (((-1157) $) NIL)) (-1563 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2218 (((-1269) (-1157)) 9)) (-1778 (((-1269) (-1157)) 10)) (-1765 (((-1269)) 11)) (-2512 (((-862) $) NIL)) (-1459 (($ $) 39)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-438) (-13 (-366 (-390) (-1157)) (-10 -7 (-15 -3014 ((-390) (-390) (-390))) (-15 -3014 ((-390) (-390))) (-15 -2218 ((-1269) (-1157))) (-15 -1778 ((-1269) (-1157))) (-15 -1765 ((-1269)))))) (T -438))
-((-3014 (*1 *2 *2 *2) (-12 (-5 *2 (-390)) (-5 *1 (-438)))) (-3014 (*1 *2 *2) (-12 (-5 *2 (-390)) (-5 *1 (-438)))) (-2218 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-438)))) (-1778 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-438)))) (-1765 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-438)))))
-(-13 (-366 (-390) (-1157)) (-10 -7 (-15 -3014 ((-390) (-390) (-390))) (-15 -3014 ((-390) (-390))) (-15 -2218 ((-1269) (-1157))) (-15 -1778 ((-1269) (-1157))) (-15 -1765 ((-1269)))))
-((-2985 (((-112) $ $) NIL)) (-3917 (((-3 (|:| |fst| (-436)) (|:| -4354 "void")) $) 11)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3382 (($) 35)) (-3981 (($) 41)) (-3363 (($) 37)) (-4291 (($) 39)) (-4289 (($) 36)) (-3501 (($) 38)) (-1862 (($) 40)) (-3330 (((-112) $) 8)) (-3618 (((-644 (-952 (-566))) $) 19)) (-2523 (($ (-3 (|:| |fst| (-436)) (|:| -4354 "void")) (-644 (-1175)) (-112)) 29) (($ (-3 (|:| |fst| (-436)) (|:| -4354 "void")) (-644 (-952 (-566))) (-112)) 30)) (-2512 (((-862) $) 24) (($ (-436)) 32)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-439) (-13 (-1099) (-10 -8 (-15 -2512 ($ (-436))) (-15 -3917 ((-3 (|:| |fst| (-436)) (|:| -4354 "void")) $)) (-15 -3618 ((-644 (-952 (-566))) $)) (-15 -3330 ((-112) $)) (-15 -2523 ($ (-3 (|:| |fst| (-436)) (|:| -4354 "void")) (-644 (-1175)) (-112))) (-15 -2523 ($ (-3 (|:| |fst| (-436)) (|:| -4354 "void")) (-644 (-952 (-566))) (-112))) (-15 -3382 ($)) (-15 -4289 ($)) (-15 -3363 ($)) (-15 -3981 ($)) (-15 -3501 ($)) (-15 -4291 ($)) (-15 -1862 ($))))) (T -439))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-436)) (-5 *1 (-439)))) (-3917 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-5 *1 (-439)))) (-3618 (*1 *2 *1) (-12 (-5 *2 (-644 (-952 (-566)))) (-5 *1 (-439)))) (-3330 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-439)))) (-2523 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-5 *3 (-644 (-1175))) (-5 *4 (-112)) (-5 *1 (-439)))) (-2523 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-112)) (-5 *1 (-439)))) (-3382 (*1 *1) (-5 *1 (-439))) (-4289 (*1 *1) (-5 *1 (-439))) (-3363 (*1 *1) (-5 *1 (-439))) (-3981 (*1 *1) (-5 *1 (-439))) (-3501 (*1 *1) (-5 *1 (-439))) (-4291 (*1 *1) (-5 *1 (-439))) (-1862 (*1 *1) (-5 *1 (-439))))
-(-13 (-1099) (-10 -8 (-15 -2512 ($ (-436))) (-15 -3917 ((-3 (|:| |fst| (-436)) (|:| -4354 "void")) $)) (-15 -3618 ((-644 (-952 (-566))) $)) (-15 -3330 ((-112) $)) (-15 -2523 ($ (-3 (|:| |fst| (-436)) (|:| -4354 "void")) (-644 (-1175)) (-112))) (-15 -2523 ($ (-3 (|:| |fst| (-436)) (|:| -4354 "void")) (-644 (-952 (-566))) (-112))) (-15 -3382 ($)) (-15 -4289 ($)) (-15 -3363 ($)) (-15 -3981 ($)) (-15 -3501 ($)) (-15 -4291 ($)) (-15 -1862 ($))))
-((-2985 (((-112) $ $) NIL)) (-2628 (((-1175) $) 8)) (-2878 (((-1157) $) 17)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 11)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 14)))
-(((-440 |#1|) (-13 (-1099) (-10 -8 (-15 -2628 ((-1175) $)))) (-1175)) (T -440))
-((-2628 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-440 *3)) (-14 *3 *2))))
-(-13 (-1099) (-10 -8 (-15 -2628 ((-1175) $))))
-((-2985 (((-112) $ $) NIL)) (-3011 (((-1117) $) 7)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 13)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 9)))
-(((-441) (-13 (-1099) (-10 -8 (-15 -3011 ((-1117) $))))) (T -441))
-((-3011 (*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-441)))))
-(-13 (-1099) (-10 -8 (-15 -3011 ((-1117) $))))
-((-2733 (((-1269) $) 7)) (-2512 (((-862) $) 8) (($ (-1264 (-699))) 14) (($ (-644 (-331))) 13) (($ (-331)) 12) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 11)))
+((-2306 ((|#2| |#2| |#2|) 31)) (-2415 (((-114) (-114)) 43)) (-4000 ((|#2| |#2|) 63)) (-3252 ((|#2| |#2|) 66)) (-4047 ((|#2| |#2|) 30)) (-4018 ((|#2| |#2| |#2|) 33)) (-2528 ((|#2| |#2| |#2|) 35)) (-3768 ((|#2| |#2| |#2|) 32)) (-3078 ((|#2| |#2| |#2|) 34)) (-1643 (((-112) (-114)) 41)) (-2038 ((|#2| |#2|) 37)) (-2467 ((|#2| |#2|) 36)) (-3333 ((|#2| |#2|) 25)) (-1650 ((|#2| |#2| |#2|) 28) ((|#2| |#2|) 26)) (-3162 ((|#2| |#2| |#2|) 29)))
+(((-433 |#1| |#2|) (-10 -7 (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 -3333 (|#2| |#2|)) (-15 -1650 (|#2| |#2|)) (-15 -1650 (|#2| |#2| |#2|)) (-15 -3162 (|#2| |#2| |#2|)) (-15 -4047 (|#2| |#2|)) (-15 -2306 (|#2| |#2| |#2|)) (-15 -3768 (|#2| |#2| |#2|)) (-15 -4018 (|#2| |#2| |#2|)) (-15 -3078 (|#2| |#2| |#2|)) (-15 -2528 (|#2| |#2| |#2|)) (-15 -2467 (|#2| |#2|)) (-15 -2038 (|#2| |#2|)) (-15 -3252 (|#2| |#2|)) (-15 -4000 (|#2| |#2|))) (-558) (-432 |#1|)) (T -433))
+((-4000 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-3252 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-2038 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-2467 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-2528 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-3078 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-4018 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-3768 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-2306 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-4047 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-3162 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-1650 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-1650 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-3333 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))) (-2415 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-433 *3 *4)) (-4 *4 (-432 *3)))) (-1643 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-433 *4 *5)) (-4 *5 (-432 *4)))))
+(-10 -7 (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 -3333 (|#2| |#2|)) (-15 -1650 (|#2| |#2|)) (-15 -1650 (|#2| |#2| |#2|)) (-15 -3162 (|#2| |#2| |#2|)) (-15 -4047 (|#2| |#2|)) (-15 -2306 (|#2| |#2| |#2|)) (-15 -3768 (|#2| |#2| |#2|)) (-15 -4018 (|#2| |#2| |#2|)) (-15 -3078 (|#2| |#2| |#2|)) (-15 -2528 (|#2| |#2| |#2|)) (-15 -2467 (|#2| |#2|)) (-15 -2038 (|#2| |#2|)) (-15 -3252 (|#2| |#2|)) (-15 -4000 (|#2| |#2|)))
+((-1676 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1171 |#2|)) (|:| |pol2| (-1171 |#2|)) (|:| |prim| (-1171 |#2|))) |#2| |#2|) 106 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-644 (-1171 |#2|))) (|:| |prim| (-1171 |#2|))) (-644 |#2|)) 68)))
+(((-434 |#1| |#2|) (-10 -7 (-15 -1676 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-644 (-1171 |#2|))) (|:| |prim| (-1171 |#2|))) (-644 |#2|))) (IF (|has| |#2| (-27)) (-15 -1676 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1171 |#2|)) (|:| |pol2| (-1171 |#2|)) (|:| |prim| (-1171 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-558) (-147)) (-432 |#1|)) (T -434))
+((-1676 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-558) (-147))) (-5 *2 (-2 (|:| |primelt| *3) (|:| |pol1| (-1171 *3)) (|:| |pol2| (-1171 *3)) (|:| |prim| (-1171 *3)))) (-5 *1 (-434 *4 *3)) (-4 *3 (-27)) (-4 *3 (-432 *4)))) (-1676 (*1 *2 *3) (-12 (-5 *3 (-644 *5)) (-4 *5 (-432 *4)) (-4 *4 (-13 (-558) (-147))) (-5 *2 (-2 (|:| |primelt| *5) (|:| |poly| (-644 (-1171 *5))) (|:| |prim| (-1171 *5)))) (-5 *1 (-434 *4 *5)))))
+(-10 -7 (-15 -1676 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-644 (-1171 |#2|))) (|:| |prim| (-1171 |#2|))) (-644 |#2|))) (IF (|has| |#2| (-27)) (-15 -1676 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1171 |#2|)) (|:| |pol2| (-1171 |#2|)) (|:| |prim| (-1171 |#2|))) |#2| |#2|)) |%noBranch|))
+((-2692 (((-1269)) 19)) (-3528 (((-1171 (-409 (-566))) |#2| (-612 |#2|)) 41) (((-409 (-566)) |#2|) 25)))
+(((-435 |#1| |#2|) (-10 -7 (-15 -3528 ((-409 (-566)) |#2|)) (-15 -3528 ((-1171 (-409 (-566))) |#2| (-612 |#2|))) (-15 -2692 ((-1269)))) (-13 (-558) (-1038 (-566))) (-432 |#1|)) (T -435))
+((-2692 (*1 *2) (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *2 (-1269)) (-5 *1 (-435 *3 *4)) (-4 *4 (-432 *3)))) (-3528 (*1 *2 *3 *4) (-12 (-5 *4 (-612 *3)) (-4 *3 (-432 *5)) (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-435 *5 *3)))) (-3528 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-409 (-566))) (-5 *1 (-435 *4 *3)) (-4 *3 (-432 *4)))))
+(-10 -7 (-15 -3528 ((-409 (-566)) |#2|)) (-15 -3528 ((-1171 (-409 (-566))) |#2| (-612 |#2|))) (-15 -2692 ((-1269))))
+((-3851 (((-112) $) 32)) (-1707 (((-112) $) 34)) (-3103 (((-112) $) 35)) (-3395 (((-112) $) 38)) (-1761 (((-112) $) 33)) (-2780 (((-112) $) 37)) (-3780 (((-862) $) 20) (($ (-1157)) 31) (($ (-1175)) 26) (((-1175) $) 24) (((-1103) $) 23)) (-3929 (((-112) $) 36)) (-2950 (((-112) $ $) 17)))
+(((-436) (-13 (-613 (-862)) (-10 -8 (-15 -3780 ($ (-1157))) (-15 -3780 ($ (-1175))) (-15 -3780 ((-1175) $)) (-15 -3780 ((-1103) $)) (-15 -3851 ((-112) $)) (-15 -1761 ((-112) $)) (-15 -3103 ((-112) $)) (-15 -2780 ((-112) $)) (-15 -3395 ((-112) $)) (-15 -3929 ((-112) $)) (-15 -1707 ((-112) $)) (-15 -2950 ((-112) $ $))))) (T -436))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-436)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-436)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-436)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-436)))) (-3851 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-1761 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-3103 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-2780 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-3395 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-3929 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-1707 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))) (-2950 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
+(-13 (-613 (-862)) (-10 -8 (-15 -3780 ($ (-1157))) (-15 -3780 ($ (-1175))) (-15 -3780 ((-1175) $)) (-15 -3780 ((-1103) $)) (-15 -3851 ((-112) $)) (-15 -1761 ((-112) $)) (-15 -3103 ((-112) $)) (-15 -2780 ((-112) $)) (-15 -3395 ((-112) $)) (-15 -3929 ((-112) $)) (-15 -1707 ((-112) $)) (-15 -2950 ((-112) $ $))))
+((-1942 (((-3 (-420 (-1171 (-409 (-566)))) "failed") |#3|) 72)) (-1443 (((-420 |#3|) |#3|) 34)) (-3114 (((-3 (-420 (-1171 (-48))) "failed") |#3|) 46 (|has| |#2| (-1038 (-48))))) (-1871 (((-3 (|:| |overq| (-1171 (-409 (-566)))) (|:| |overan| (-1171 (-48))) (|:| -3261 (-112))) |#3|) 37)))
+(((-437 |#1| |#2| |#3|) (-10 -7 (-15 -1443 ((-420 |#3|) |#3|)) (-15 -1942 ((-3 (-420 (-1171 (-409 (-566)))) "failed") |#3|)) (-15 -1871 ((-3 (|:| |overq| (-1171 (-409 (-566)))) (|:| |overan| (-1171 (-48))) (|:| -3261 (-112))) |#3|)) (IF (|has| |#2| (-1038 (-48))) (-15 -3114 ((-3 (-420 (-1171 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-558) (-1038 (-566))) (-432 |#1|) (-1240 |#2|)) (T -437))
+((-3114 (*1 *2 *3) (|partial| -12 (-4 *5 (-1038 (-48))) (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4)) (-5 *2 (-420 (-1171 (-48)))) (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))) (-1871 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4)) (-5 *2 (-3 (|:| |overq| (-1171 (-409 (-566)))) (|:| |overan| (-1171 (-48))) (|:| -3261 (-112)))) (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))) (-1942 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4)) (-5 *2 (-420 (-1171 (-409 (-566))))) (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))) (-1443 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4)) (-5 *2 (-420 *3)) (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))))
+(-10 -7 (-15 -1443 ((-420 |#3|) |#3|)) (-15 -1942 ((-3 (-420 (-1171 (-409 (-566)))) "failed") |#3|)) (-15 -1871 ((-3 (|:| |overq| (-1171 (-409 (-566)))) (|:| |overan| (-1171 (-48))) (|:| -3261 (-112))) |#3|)) (IF (|has| |#2| (-1038 (-48))) (-15 -3114 ((-3 (-420 (-1171 (-48))) "failed") |#3|)) |%noBranch|))
+((-3009 (((-112) $ $) NIL)) (-3696 (((-1157) $ (-1157)) NIL)) (-1466 (($ $ (-1157)) NIL)) (-2023 (((-1157) $) NIL)) (-2253 (((-390) (-390) (-390)) 17) (((-390) (-390)) 15)) (-3537 (($ (-390)) NIL) (($ (-390) (-1157)) NIL)) (-2639 (((-390) $) NIL)) (-2402 (((-1157) $) NIL)) (-2756 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1994 (((-1269) (-1157)) 9)) (-3125 (((-1269) (-1157)) 10)) (-2992 (((-1269)) 11)) (-3780 (((-862) $) NIL)) (-4127 (($ $) 39)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-438) (-13 (-366 (-390) (-1157)) (-10 -7 (-15 -2253 ((-390) (-390) (-390))) (-15 -2253 ((-390) (-390))) (-15 -1994 ((-1269) (-1157))) (-15 -3125 ((-1269) (-1157))) (-15 -2992 ((-1269)))))) (T -438))
+((-2253 (*1 *2 *2 *2) (-12 (-5 *2 (-390)) (-5 *1 (-438)))) (-2253 (*1 *2 *2) (-12 (-5 *2 (-390)) (-5 *1 (-438)))) (-1994 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-438)))) (-3125 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-438)))) (-2992 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-438)))))
+(-13 (-366 (-390) (-1157)) (-10 -7 (-15 -2253 ((-390) (-390) (-390))) (-15 -2253 ((-390) (-390))) (-15 -1994 ((-1269) (-1157))) (-15 -3125 ((-1269) (-1157))) (-15 -2992 ((-1269)))))
+((-3009 (((-112) $ $) NIL)) (-2674 (((-3 (|:| |fst| (-436)) (|:| -1616 "void")) $) 11)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2379 (($) 35)) (-2008 (($) 41)) (-2200 (($) 37)) (-1949 (($) 39)) (-1926 (($) 36)) (-4203 (($) 38)) (-2743 (($) 40)) (-1908 (((-112) $) 8)) (-2826 (((-644 (-952 (-566))) $) 19)) (-3791 (($ (-3 (|:| |fst| (-436)) (|:| -1616 "void")) (-644 (-1175)) (-112)) 29) (($ (-3 (|:| |fst| (-436)) (|:| -1616 "void")) (-644 (-952 (-566))) (-112)) 30)) (-3780 (((-862) $) 24) (($ (-436)) 32)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-439) (-13 (-1099) (-10 -8 (-15 -3780 ($ (-436))) (-15 -2674 ((-3 (|:| |fst| (-436)) (|:| -1616 "void")) $)) (-15 -2826 ((-644 (-952 (-566))) $)) (-15 -1908 ((-112) $)) (-15 -3791 ($ (-3 (|:| |fst| (-436)) (|:| -1616 "void")) (-644 (-1175)) (-112))) (-15 -3791 ($ (-3 (|:| |fst| (-436)) (|:| -1616 "void")) (-644 (-952 (-566))) (-112))) (-15 -2379 ($)) (-15 -1926 ($)) (-15 -2200 ($)) (-15 -2008 ($)) (-15 -4203 ($)) (-15 -1949 ($)) (-15 -2743 ($))))) (T -439))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-436)) (-5 *1 (-439)))) (-2674 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-5 *1 (-439)))) (-2826 (*1 *2 *1) (-12 (-5 *2 (-644 (-952 (-566)))) (-5 *1 (-439)))) (-1908 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-439)))) (-3791 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-5 *3 (-644 (-1175))) (-5 *4 (-112)) (-5 *1 (-439)))) (-3791 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-112)) (-5 *1 (-439)))) (-2379 (*1 *1) (-5 *1 (-439))) (-1926 (*1 *1) (-5 *1 (-439))) (-2200 (*1 *1) (-5 *1 (-439))) (-2008 (*1 *1) (-5 *1 (-439))) (-4203 (*1 *1) (-5 *1 (-439))) (-1949 (*1 *1) (-5 *1 (-439))) (-2743 (*1 *1) (-5 *1 (-439))))
+(-13 (-1099) (-10 -8 (-15 -3780 ($ (-436))) (-15 -2674 ((-3 (|:| |fst| (-436)) (|:| -1616 "void")) $)) (-15 -2826 ((-644 (-952 (-566))) $)) (-15 -1908 ((-112) $)) (-15 -3791 ($ (-3 (|:| |fst| (-436)) (|:| -1616 "void")) (-644 (-1175)) (-112))) (-15 -3791 ($ (-3 (|:| |fst| (-436)) (|:| -1616 "void")) (-644 (-952 (-566))) (-112))) (-15 -2379 ($)) (-15 -1926 ($)) (-15 -2200 ($)) (-15 -2008 ($)) (-15 -4203 ($)) (-15 -1949 ($)) (-15 -2743 ($))))
+((-3009 (((-112) $ $) NIL)) (-2639 (((-1175) $) 8)) (-2402 (((-1157) $) 17)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 11)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 14)))
+(((-440 |#1|) (-13 (-1099) (-10 -8 (-15 -2639 ((-1175) $)))) (-1175)) (T -440))
+((-2639 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-440 *3)) (-14 *3 *2))))
+(-13 (-1099) (-10 -8 (-15 -2639 ((-1175) $))))
+((-3009 (((-112) $ $) NIL)) (-3049 (((-1117) $) 7)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 13)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 9)))
+(((-441) (-13 (-1099) (-10 -8 (-15 -3049 ((-1117) $))))) (T -441))
+((-3049 (*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-441)))))
+(-13 (-1099) (-10 -8 (-15 -3049 ((-1117) $))))
+((-2440 (((-1269) $) 7)) (-3780 (((-862) $) 8) (($ (-1264 (-699))) 14) (($ (-644 (-331))) 13) (($ (-331)) 12) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 11)))
(((-442) (-140)) (T -442))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-699))) (-4 *1 (-442)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-442)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-442)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) (-4 *1 (-442)))))
-(-13 (-397) (-10 -8 (-15 -2512 ($ (-1264 (-699)))) (-15 -2512 ($ (-644 (-331)))) (-15 -2512 ($ (-331))) (-15 -2512 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))))))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-699))) (-4 *1 (-442)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-442)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-442)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) (-4 *1 (-442)))))
+(-13 (-397) (-10 -8 (-15 -3780 ($ (-1264 (-699)))) (-15 -3780 ($ (-644 (-331)))) (-15 -3780 ($ (-331))) (-15 -3780 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))))))
(((-613 (-862)) . T) ((-397) . T) ((-1214) . T))
-((-2977 (((-3 $ "failed") (-1264 (-317 (-381)))) 21) (((-3 $ "failed") (-1264 (-317 (-566)))) 19) (((-3 $ "failed") (-1264 (-952 (-381)))) 17) (((-3 $ "failed") (-1264 (-952 (-566)))) 15) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 13) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 11)) (-1756 (($ (-1264 (-317 (-381)))) 22) (($ (-1264 (-317 (-566)))) 20) (($ (-1264 (-952 (-381)))) 18) (($ (-1264 (-952 (-566)))) 16) (($ (-1264 (-409 (-952 (-381))))) 14) (($ (-1264 (-409 (-952 (-566))))) 12)) (-2733 (((-1269) $) 7)) (-2512 (((-862) $) 8) (($ (-644 (-331))) 25) (($ (-331)) 24) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) 23)))
+((-3066 (((-3 $ "failed") (-1264 (-317 (-381)))) 21) (((-3 $ "failed") (-1264 (-317 (-566)))) 19) (((-3 $ "failed") (-1264 (-952 (-381)))) 17) (((-3 $ "failed") (-1264 (-952 (-566)))) 15) (((-3 $ "failed") (-1264 (-409 (-952 (-381))))) 13) (((-3 $ "failed") (-1264 (-409 (-952 (-566))))) 11)) (-1867 (($ (-1264 (-317 (-381)))) 22) (($ (-1264 (-317 (-566)))) 20) (($ (-1264 (-952 (-381)))) 18) (($ (-1264 (-952 (-566)))) 16) (($ (-1264 (-409 (-952 (-381))))) 14) (($ (-1264 (-409 (-952 (-566))))) 12)) (-2440 (((-1269) $) 7)) (-3780 (((-862) $) 8) (($ (-644 (-331))) 25) (($ (-331)) 24) (($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) 23)))
(((-443) (-140)) (T -443))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-443)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-443)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331))))) (-4 *1 (-443)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-1264 (-317 (-381)))) (-4 *1 (-443)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-317 (-381)))) (-4 *1 (-443)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-1264 (-317 (-566)))) (-4 *1 (-443)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-317 (-566)))) (-4 *1 (-443)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-1264 (-952 (-381)))) (-4 *1 (-443)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-952 (-381)))) (-4 *1 (-443)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-1264 (-952 (-566)))) (-4 *1 (-443)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-952 (-566)))) (-4 *1 (-443)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-1264 (-409 (-952 (-381))))) (-4 *1 (-443)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-409 (-952 (-381))))) (-4 *1 (-443)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-1264 (-409 (-952 (-566))))) (-4 *1 (-443)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-409 (-952 (-566))))) (-4 *1 (-443)))))
-(-13 (-397) (-10 -8 (-15 -2512 ($ (-644 (-331)))) (-15 -2512 ($ (-331))) (-15 -2512 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))) (-15 -1756 ($ (-1264 (-317 (-381))))) (-15 -2977 ((-3 $ "failed") (-1264 (-317 (-381))))) (-15 -1756 ($ (-1264 (-317 (-566))))) (-15 -2977 ((-3 $ "failed") (-1264 (-317 (-566))))) (-15 -1756 ($ (-1264 (-952 (-381))))) (-15 -2977 ((-3 $ "failed") (-1264 (-952 (-381))))) (-15 -1756 ($ (-1264 (-952 (-566))))) (-15 -2977 ((-3 $ "failed") (-1264 (-952 (-566))))) (-15 -1756 ($ (-1264 (-409 (-952 (-381)))))) (-15 -2977 ((-3 $ "failed") (-1264 (-409 (-952 (-381)))))) (-15 -1756 ($ (-1264 (-409 (-952 (-566)))))) (-15 -2977 ((-3 $ "failed") (-1264 (-409 (-952 (-566))))))))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-443)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-443)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331))))) (-4 *1 (-443)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-1264 (-317 (-381)))) (-4 *1 (-443)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-317 (-381)))) (-4 *1 (-443)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-1264 (-317 (-566)))) (-4 *1 (-443)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-317 (-566)))) (-4 *1 (-443)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-1264 (-952 (-381)))) (-4 *1 (-443)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-952 (-381)))) (-4 *1 (-443)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-1264 (-952 (-566)))) (-4 *1 (-443)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-952 (-566)))) (-4 *1 (-443)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-1264 (-409 (-952 (-381))))) (-4 *1 (-443)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-409 (-952 (-381))))) (-4 *1 (-443)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-1264 (-409 (-952 (-566))))) (-4 *1 (-443)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-1264 (-409 (-952 (-566))))) (-4 *1 (-443)))))
+(-13 (-397) (-10 -8 (-15 -3780 ($ (-644 (-331)))) (-15 -3780 ($ (-331))) (-15 -3780 ($ (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))) (-15 -1867 ($ (-1264 (-317 (-381))))) (-15 -3066 ((-3 $ "failed") (-1264 (-317 (-381))))) (-15 -1867 ($ (-1264 (-317 (-566))))) (-15 -3066 ((-3 $ "failed") (-1264 (-317 (-566))))) (-15 -1867 ($ (-1264 (-952 (-381))))) (-15 -3066 ((-3 $ "failed") (-1264 (-952 (-381))))) (-15 -1867 ($ (-1264 (-952 (-566))))) (-15 -3066 ((-3 $ "failed") (-1264 (-952 (-566))))) (-15 -1867 ($ (-1264 (-409 (-952 (-381)))))) (-15 -3066 ((-3 $ "failed") (-1264 (-409 (-952 (-381)))))) (-15 -1867 ($ (-1264 (-409 (-952 (-566)))))) (-15 -3066 ((-3 $ "failed") (-1264 (-409 (-952 (-566))))))))
(((-613 (-862)) . T) ((-397) . T) ((-1214) . T))
-((-3498 (((-112)) 18)) (-4280 (((-112) (-112)) 19)) (-2067 (((-112)) 14)) (-2788 (((-112) (-112)) 15)) (-2441 (((-112)) 16)) (-2384 (((-112) (-112)) 17)) (-2174 (((-921) (-921)) 22) (((-921)) 21)) (-1314 (((-771) (-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566))))) 52)) (-1318 (((-921) (-921)) 24) (((-921)) 23)) (-2721 (((-2 (|:| -3930 (-566)) (|:| -4236 (-644 |#1|))) |#1|) 97)) (-1458 (((-420 |#1|) (-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566))))))) 178)) (-3980 (((-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))) |#1| (-112)) 211)) (-2085 (((-420 |#1|) |#1| (-771) (-771)) 226) (((-420 |#1|) |#1| (-644 (-771)) (-771)) 223) (((-420 |#1|) |#1| (-644 (-771))) 225) (((-420 |#1|) |#1| (-771)) 224) (((-420 |#1|) |#1|) 222)) (-2013 (((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771) (-112)) 228) (((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771)) 229) (((-3 |#1| "failed") (-921) |#1| (-644 (-771))) 231) (((-3 |#1| "failed") (-921) |#1| (-771)) 230) (((-3 |#1| "failed") (-921) |#1|) 232)) (-2391 (((-420 |#1|) |#1| (-771) (-771)) 221) (((-420 |#1|) |#1| (-644 (-771)) (-771)) 217) (((-420 |#1|) |#1| (-644 (-771))) 219) (((-420 |#1|) |#1| (-771)) 218) (((-420 |#1|) |#1|) 216)) (-1676 (((-112) |#1|) 44)) (-3415 (((-737 (-771)) (-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566))))) 102)) (-2868 (((-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))) |#1| (-112) (-1101 (-771)) (-771)) 215)))
-(((-444 |#1|) (-10 -7 (-15 -1458 ((-420 |#1|) (-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))))) (-15 -3415 ((-737 (-771)) (-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566)))))) (-15 -1318 ((-921))) (-15 -1318 ((-921) (-921))) (-15 -2174 ((-921))) (-15 -2174 ((-921) (-921))) (-15 -1314 ((-771) (-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566)))))) (-15 -2721 ((-2 (|:| -3930 (-566)) (|:| -4236 (-644 |#1|))) |#1|)) (-15 -3498 ((-112))) (-15 -4280 ((-112) (-112))) (-15 -2067 ((-112))) (-15 -2788 ((-112) (-112))) (-15 -1676 ((-112) |#1|)) (-15 -2441 ((-112))) (-15 -2384 ((-112) (-112))) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -2391 ((-420 |#1|) |#1| (-771))) (-15 -2391 ((-420 |#1|) |#1| (-644 (-771)))) (-15 -2391 ((-420 |#1|) |#1| (-644 (-771)) (-771))) (-15 -2391 ((-420 |#1|) |#1| (-771) (-771))) (-15 -2085 ((-420 |#1|) |#1|)) (-15 -2085 ((-420 |#1|) |#1| (-771))) (-15 -2085 ((-420 |#1|) |#1| (-644 (-771)))) (-15 -2085 ((-420 |#1|) |#1| (-644 (-771)) (-771))) (-15 -2085 ((-420 |#1|) |#1| (-771) (-771))) (-15 -2013 ((-3 |#1| "failed") (-921) |#1|)) (-15 -2013 ((-3 |#1| "failed") (-921) |#1| (-771))) (-15 -2013 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)))) (-15 -2013 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771))) (-15 -2013 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771) (-112))) (-15 -3980 ((-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))) |#1| (-112))) (-15 -2868 ((-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))) |#1| (-112) (-1101 (-771)) (-771)))) (-1240 (-566))) (T -444))
-((-2868 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1101 (-771))) (-5 *6 (-771)) (-5 *2 (-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| *3) (|:| -2175 (-566))))))) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3980 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| *3) (|:| -2175 (-566))))))) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2013 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *5 (-771)) (-5 *6 (-112)) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566))))) (-2013 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *5 (-771)) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566))))) (-2013 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566))))) (-2013 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-921)) (-5 *4 (-771)) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566))))) (-2013 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-921)) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566))))) (-2085 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2085 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-644 (-771))) (-5 *5 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2085 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-771))) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2085 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2085 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2391 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2391 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-644 (-771))) (-5 *5 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-771))) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2391 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2384 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2441 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-1676 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2788 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2067 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-4280 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3498 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2721 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3930 (-566)) (|:| -4236 (-644 *3)))) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-1314 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -2391 *4) (|:| -3992 (-566))))) (-4 *4 (-1240 (-566))) (-5 *2 (-771)) (-5 *1 (-444 *4)))) (-2174 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2174 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-1318 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-1318 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3415 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -2391 *4) (|:| -3992 (-566))))) (-4 *4 (-1240 (-566))) (-5 *2 (-737 (-771))) (-5 *1 (-444 *4)))) (-1458 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| *4) (|:| -2175 (-566))))))) (-4 *4 (-1240 (-566))) (-5 *2 (-420 *4)) (-5 *1 (-444 *4)))))
-(-10 -7 (-15 -1458 ((-420 |#1|) (-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))))) (-15 -3415 ((-737 (-771)) (-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566)))))) (-15 -1318 ((-921))) (-15 -1318 ((-921) (-921))) (-15 -2174 ((-921))) (-15 -2174 ((-921) (-921))) (-15 -1314 ((-771) (-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566)))))) (-15 -2721 ((-2 (|:| -3930 (-566)) (|:| -4236 (-644 |#1|))) |#1|)) (-15 -3498 ((-112))) (-15 -4280 ((-112) (-112))) (-15 -2067 ((-112))) (-15 -2788 ((-112) (-112))) (-15 -1676 ((-112) |#1|)) (-15 -2441 ((-112))) (-15 -2384 ((-112) (-112))) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -2391 ((-420 |#1|) |#1| (-771))) (-15 -2391 ((-420 |#1|) |#1| (-644 (-771)))) (-15 -2391 ((-420 |#1|) |#1| (-644 (-771)) (-771))) (-15 -2391 ((-420 |#1|) |#1| (-771) (-771))) (-15 -2085 ((-420 |#1|) |#1|)) (-15 -2085 ((-420 |#1|) |#1| (-771))) (-15 -2085 ((-420 |#1|) |#1| (-644 (-771)))) (-15 -2085 ((-420 |#1|) |#1| (-644 (-771)) (-771))) (-15 -2085 ((-420 |#1|) |#1| (-771) (-771))) (-15 -2013 ((-3 |#1| "failed") (-921) |#1|)) (-15 -2013 ((-3 |#1| "failed") (-921) |#1| (-771))) (-15 -2013 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)))) (-15 -2013 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771))) (-15 -2013 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771) (-112))) (-15 -3980 ((-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))) |#1| (-112))) (-15 -2868 ((-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))) |#1| (-112) (-1101 (-771)) (-771))))
-((-4377 (((-566) |#2|) 52) (((-566) |#2| (-771)) 51)) (-3669 (((-566) |#2|) 67)) (-3180 ((|#3| |#2|) 26)) (-1559 ((|#3| |#2| (-921)) 15)) (-3822 ((|#3| |#2|) 16)) (-3441 ((|#3| |#2|) 9)) (-3173 ((|#3| |#2|) 10)) (-2615 ((|#3| |#2| (-921)) 74) ((|#3| |#2|) 34)) (-2193 (((-566) |#2|) 69)))
-(((-445 |#1| |#2| |#3|) (-10 -7 (-15 -2193 ((-566) |#2|)) (-15 -2615 (|#3| |#2|)) (-15 -2615 (|#3| |#2| (-921))) (-15 -3669 ((-566) |#2|)) (-15 -4377 ((-566) |#2| (-771))) (-15 -4377 ((-566) |#2|)) (-15 -1559 (|#3| |#2| (-921))) (-15 -3180 (|#3| |#2|)) (-15 -3441 (|#3| |#2|)) (-15 -3173 (|#3| |#2|)) (-15 -3822 (|#3| |#2|))) (-1049) (-1240 |#1|) (-13 (-406) (-1038 |#1|) (-365) (-1199) (-285))) (T -445))
-((-3822 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))) (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))) (-3173 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))) (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))) (-3441 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))) (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))) (-3180 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))) (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))) (-1559 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *2 (-13 (-406) (-1038 *5) (-365) (-1199) (-285))) (-5 *1 (-445 *5 *3 *2)) (-4 *3 (-1240 *5)))) (-4377 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5)) (-4 *3 (-1240 *4)) (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))) (-4377 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *5 *3 *6)) (-4 *3 (-1240 *5)) (-4 *6 (-13 (-406) (-1038 *5) (-365) (-1199) (-285))))) (-3669 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5)) (-4 *3 (-1240 *4)) (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))) (-2615 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *2 (-13 (-406) (-1038 *5) (-365) (-1199) (-285))) (-5 *1 (-445 *5 *3 *2)) (-4 *3 (-1240 *5)))) (-2615 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))) (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))) (-2193 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5)) (-4 *3 (-1240 *4)) (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))))
-(-10 -7 (-15 -2193 ((-566) |#2|)) (-15 -2615 (|#3| |#2|)) (-15 -2615 (|#3| |#2| (-921))) (-15 -3669 ((-566) |#2|)) (-15 -4377 ((-566) |#2| (-771))) (-15 -4377 ((-566) |#2|)) (-15 -1559 (|#3| |#2| (-921))) (-15 -3180 (|#3| |#2|)) (-15 -3441 (|#3| |#2|)) (-15 -3173 (|#3| |#2|)) (-15 -3822 (|#3| |#2|)))
-((-3117 ((|#2| (-1264 |#1|)) 45)) (-4227 ((|#2| |#2| |#1|) 61)) (-2549 ((|#2| |#2| |#1|) 53)) (-3852 ((|#2| |#2|) 49)) (-1912 (((-112) |#2|) 36)) (-3005 (((-644 |#2|) (-921) (-420 |#2|)) 24)) (-2013 ((|#2| (-921) (-420 |#2|)) 28)) (-3415 (((-737 (-771)) (-420 |#2|)) 33)))
-(((-446 |#1| |#2|) (-10 -7 (-15 -1912 ((-112) |#2|)) (-15 -3117 (|#2| (-1264 |#1|))) (-15 -3852 (|#2| |#2|)) (-15 -2549 (|#2| |#2| |#1|)) (-15 -4227 (|#2| |#2| |#1|)) (-15 -3415 ((-737 (-771)) (-420 |#2|))) (-15 -2013 (|#2| (-921) (-420 |#2|))) (-15 -3005 ((-644 |#2|) (-921) (-420 |#2|)))) (-1049) (-1240 |#1|)) (T -446))
-((-3005 (*1 *2 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-420 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-1049)) (-5 *2 (-644 *6)) (-5 *1 (-446 *5 *6)))) (-2013 (*1 *2 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-420 *2)) (-4 *2 (-1240 *5)) (-5 *1 (-446 *5 *2)) (-4 *5 (-1049)))) (-3415 (*1 *2 *3) (-12 (-5 *3 (-420 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-1049)) (-5 *2 (-737 (-771))) (-5 *1 (-446 *4 *5)))) (-4227 (*1 *2 *2 *3) (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3)))) (-2549 (*1 *2 *2 *3) (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3)))) (-3852 (*1 *2 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3)))) (-3117 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-1049)) (-4 *2 (-1240 *4)) (-5 *1 (-446 *4 *2)))) (-1912 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-5 *2 (-112)) (-5 *1 (-446 *4 *3)) (-4 *3 (-1240 *4)))))
-(-10 -7 (-15 -1912 ((-112) |#2|)) (-15 -3117 (|#2| (-1264 |#1|))) (-15 -3852 (|#2| |#2|)) (-15 -2549 (|#2| |#2| |#1|)) (-15 -4227 (|#2| |#2| |#1|)) (-15 -3415 ((-737 (-771)) (-420 |#2|))) (-15 -2013 (|#2| (-921) (-420 |#2|))) (-15 -3005 ((-644 |#2|) (-921) (-420 |#2|))))
-((-3939 (((-771)) 59)) (-3300 (((-771)) 29 (|has| |#1| (-406))) (((-771) (-771)) 28 (|has| |#1| (-406)))) (-3859 (((-566) |#1|) 25 (|has| |#1| (-406)))) (-4392 (((-566) |#1|) 27 (|has| |#1| (-406)))) (-1638 (((-771)) 58) (((-771) (-771)) 57)) (-3436 ((|#1| (-771) (-566)) 37)) (-3326 (((-1269)) 61)))
-(((-447 |#1|) (-10 -7 (-15 -3436 (|#1| (-771) (-566))) (-15 -1638 ((-771) (-771))) (-15 -1638 ((-771))) (-15 -3939 ((-771))) (-15 -3326 ((-1269))) (IF (|has| |#1| (-406)) (PROGN (-15 -4392 ((-566) |#1|)) (-15 -3859 ((-566) |#1|)) (-15 -3300 ((-771) (-771))) (-15 -3300 ((-771)))) |%noBranch|)) (-1049)) (T -447))
-((-3300 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))) (-3300 (*1 *2 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))) (-3859 (*1 *2 *3) (-12 (-5 *2 (-566)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))) (-4392 (*1 *2 *3) (-12 (-5 *2 (-566)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))) (-3326 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))) (-3939 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))) (-1638 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))) (-1638 (*1 *2 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))) (-3436 (*1 *2 *3 *4) (-12 (-5 *3 (-771)) (-5 *4 (-566)) (-5 *1 (-447 *2)) (-4 *2 (-1049)))))
-(-10 -7 (-15 -3436 (|#1| (-771) (-566))) (-15 -1638 ((-771) (-771))) (-15 -1638 ((-771))) (-15 -3939 ((-771))) (-15 -3326 ((-1269))) (IF (|has| |#1| (-406)) (PROGN (-15 -4392 ((-566) |#1|)) (-15 -3859 ((-566) |#1|)) (-15 -3300 ((-771) (-771))) (-15 -3300 ((-771)))) |%noBranch|))
-((-2921 (((-644 (-566)) (-566)) 76)) (-2635 (((-112) (-169 (-566))) 82)) (-2391 (((-420 (-169 (-566))) (-169 (-566))) 75)))
-(((-448) (-10 -7 (-15 -2391 ((-420 (-169 (-566))) (-169 (-566)))) (-15 -2921 ((-644 (-566)) (-566))) (-15 -2635 ((-112) (-169 (-566)))))) (T -448))
-((-2635 (*1 *2 *3) (-12 (-5 *3 (-169 (-566))) (-5 *2 (-112)) (-5 *1 (-448)))) (-2921 (*1 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-448)) (-5 *3 (-566)))) (-2391 (*1 *2 *3) (-12 (-5 *2 (-420 (-169 (-566)))) (-5 *1 (-448)) (-5 *3 (-169 (-566))))))
-(-10 -7 (-15 -2391 ((-420 (-169 (-566))) (-169 (-566)))) (-15 -2921 ((-644 (-566)) (-566))) (-15 -2635 ((-112) (-169 (-566)))))
-((-1643 ((|#4| |#4| (-644 |#4|)) 82)) (-3621 (((-644 |#4|) (-644 |#4|) (-1157) (-1157)) 22) (((-644 |#4|) (-644 |#4|) (-1157)) 21) (((-644 |#4|) (-644 |#4|)) 13)))
-(((-449 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1643 (|#4| |#4| (-644 |#4|))) (-15 -3621 ((-644 |#4|) (-644 |#4|))) (-15 -3621 ((-644 |#4|) (-644 |#4|) (-1157))) (-15 -3621 ((-644 |#4|) (-644 |#4|) (-1157) (-1157)))) (-308) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -449))
-((-3621 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-308)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-449 *4 *5 *6 *7)))) (-3621 (*1 *2 *2 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-308)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-449 *4 *5 *6 *7)))) (-3621 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-449 *3 *4 *5 *6)))) (-1643 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-308)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-449 *4 *5 *6 *2)))))
-(-10 -7 (-15 -1643 (|#4| |#4| (-644 |#4|))) (-15 -3621 ((-644 |#4|) (-644 |#4|))) (-15 -3621 ((-644 |#4|) (-644 |#4|) (-1157))) (-15 -3621 ((-644 |#4|) (-644 |#4|) (-1157) (-1157))))
-((-2486 (((-644 (-644 |#4|)) (-644 |#4|) (-112)) 91) (((-644 (-644 |#4|)) (-644 |#4|)) 90) (((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|) (-112)) 84) (((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|)) 85)) (-3856 (((-644 (-644 |#4|)) (-644 |#4|) (-112)) 55) (((-644 (-644 |#4|)) (-644 |#4|)) 77)))
-(((-450 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3856 ((-644 (-644 |#4|)) (-644 |#4|))) (-15 -3856 ((-644 (-644 |#4|)) (-644 |#4|) (-112))) (-15 -2486 ((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|))) (-15 -2486 ((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|) (-112))) (-15 -2486 ((-644 (-644 |#4|)) (-644 |#4|))) (-15 -2486 ((-644 (-644 |#4|)) (-644 |#4|) (-112)))) (-13 (-308) (-147)) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -450))
-((-2486 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8))) (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8)))) (-2486 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7))) (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-2486 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8))) (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8)))) (-2486 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7))) (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-3856 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8))) (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8)))) (-3856 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7))) (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
-(-10 -7 (-15 -3856 ((-644 (-644 |#4|)) (-644 |#4|))) (-15 -3856 ((-644 (-644 |#4|)) (-644 |#4|) (-112))) (-15 -2486 ((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|))) (-15 -2486 ((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|) (-112))) (-15 -2486 ((-644 (-644 |#4|)) (-644 |#4|))) (-15 -2486 ((-644 (-644 |#4|)) (-644 |#4|) (-112))))
-((-2510 (((-771) |#4|) 12)) (-2470 (((-644 (-2 (|:| |totdeg| (-771)) (|:| -3589 |#4|))) |#4| (-771) (-644 (-2 (|:| |totdeg| (-771)) (|:| -3589 |#4|)))) 39)) (-3608 (((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 51)) (-3741 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 54)) (-1779 ((|#4| |#4| (-644 |#4|)) 56)) (-1326 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-644 |#4|)) 98)) (-1322 (((-1269) |#4|) 61)) (-3616 (((-1269) (-644 |#4|)) 71)) (-2353 (((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566)) 68)) (-2756 (((-1269) (-566)) 113)) (-4000 (((-644 |#4|) (-644 |#4|)) 105)) (-2102 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-771)) (|:| -3589 |#4|)) |#4| (-771)) 31)) (-1683 (((-566) |#4|) 110)) (-4328 ((|#4| |#4|) 37)) (-4007 (((-644 |#4|) (-644 |#4|) (-566) (-566)) 76)) (-3393 (((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566) (-566)) 126)) (-3558 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 20)) (-3714 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 80)) (-2597 (((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 78)) (-3728 (((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 49)) (-3829 (((-112) |#2| |#2|) 77)) (-2226 (((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 50)) (-2653 (((-112) |#2| |#2| |#2| |#2|) 82)) (-1514 ((|#4| |#4| (-644 |#4|)) 99)))
-(((-451 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1514 (|#4| |#4| (-644 |#4|))) (-15 -1779 (|#4| |#4| (-644 |#4|))) (-15 -4007 ((-644 |#4|) (-644 |#4|) (-566) (-566))) (-15 -3714 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3829 ((-112) |#2| |#2|)) (-15 -2653 ((-112) |#2| |#2| |#2| |#2|)) (-15 -2226 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3728 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2597 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1326 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-644 |#4|))) (-15 -4328 (|#4| |#4|)) (-15 -2470 ((-644 (-2 (|:| |totdeg| (-771)) (|:| -3589 |#4|))) |#4| (-771) (-644 (-2 (|:| |totdeg| (-771)) (|:| -3589 |#4|))))) (-15 -3741 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3608 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4000 ((-644 |#4|) (-644 |#4|))) (-15 -1683 ((-566) |#4|)) (-15 -1322 ((-1269) |#4|)) (-15 -2353 ((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566))) (-15 -3393 ((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566) (-566))) (-15 -3616 ((-1269) (-644 |#4|))) (-15 -2756 ((-1269) (-566))) (-15 -3558 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2102 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-771)) (|:| -3589 |#4|)) |#4| (-771))) (-15 -2510 ((-771) |#4|))) (-454) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -451))
-((-2510 (*1 *2 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-771)) (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))) (-2102 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-771)) (|:| -3589 *4))) (-5 *5 (-771)) (-4 *4 (-949 *6 *7 *8)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-451 *6 *7 *8 *4)))) (-3558 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-793)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-451 *4 *5 *6 *7)))) (-2756 (*1 *2 *3) (-12 (-5 *3 (-566)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1269)) (-5 *1 (-451 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))) (-3616 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1269)) (-5 *1 (-451 *4 *5 *6 *7)))) (-3393 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-771)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-793)) (-4 *4 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *7 (-850)) (-5 *1 (-451 *5 *6 *7 *4)))) (-2353 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-771)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-793)) (-4 *4 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *7 (-850)) (-5 *1 (-451 *5 *6 *7 *4)))) (-1322 (*1 *2 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1269)) (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))) (-1683 (*1 *2 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-566)) (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))) (-4000 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-451 *3 *4 *5 *6)))) (-3608 (*1 *2 *2 *2) (-12 (-5 *2 (-644 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-771)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-793)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *5 (-850)) (-5 *1 (-451 *3 *4 *5 *6)))) (-3741 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-793)) (-4 *2 (-949 *4 *5 *6)) (-5 *1 (-451 *4 *5 *6 *2)) (-4 *4 (-454)) (-4 *6 (-850)))) (-2470 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-644 (-2 (|:| |totdeg| (-771)) (|:| -3589 *3)))) (-5 *4 (-771)) (-4 *3 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-451 *5 *6 *7 *3)))) (-4328 (*1 *2 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-451 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5)))) (-1326 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-451 *5 *6 *7 *3)))) (-2597 (*1 *2 *3 *2) (-12 (-5 *2 (-644 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-771)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-793)) (-4 *6 (-949 *4 *3 *5)) (-4 *4 (-454)) (-4 *5 (-850)) (-5 *1 (-451 *4 *3 *5 *6)))) (-3728 (*1 *2 *2) (-12 (-5 *2 (-644 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-771)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-793)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *5 (-850)) (-5 *1 (-451 *3 *4 *5 *6)))) (-2226 (*1 *2 *3 *2) (-12 (-5 *2 (-644 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-793)) (-4 *3 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *3)))) (-2653 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-454)) (-4 *3 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-451 *4 *3 *5 *6)) (-4 *6 (-949 *4 *3 *5)))) (-3829 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *3 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-451 *4 *3 *5 *6)) (-4 *6 (-949 *4 *3 *5)))) (-3714 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-793)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-451 *4 *5 *6 *7)))) (-4007 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-566)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *7)))) (-1779 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *2)))) (-1514 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *2)))))
-(-10 -7 (-15 -1514 (|#4| |#4| (-644 |#4|))) (-15 -1779 (|#4| |#4| (-644 |#4|))) (-15 -4007 ((-644 |#4|) (-644 |#4|) (-566) (-566))) (-15 -3714 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3829 ((-112) |#2| |#2|)) (-15 -2653 ((-112) |#2| |#2| |#2| |#2|)) (-15 -2226 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3728 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2597 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1326 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-644 |#4|))) (-15 -4328 (|#4| |#4|)) (-15 -2470 ((-644 (-2 (|:| |totdeg| (-771)) (|:| -3589 |#4|))) |#4| (-771) (-644 (-2 (|:| |totdeg| (-771)) (|:| -3589 |#4|))))) (-15 -3741 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3608 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -4000 ((-644 |#4|) (-644 |#4|))) (-15 -1683 ((-566) |#4|)) (-15 -1322 ((-1269) |#4|)) (-15 -2353 ((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566))) (-15 -3393 ((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566) (-566))) (-15 -3616 ((-1269) (-644 |#4|))) (-15 -2756 ((-1269) (-566))) (-15 -3558 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2102 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-771)) (|:| -3589 |#4|)) |#4| (-771))) (-15 -2510 ((-771) |#4|)))
-((-2279 ((|#4| |#4| (-644 |#4|)) 20 (|has| |#1| (-365)))) (-4375 (((-644 |#4|) (-644 |#4|) (-1157) (-1157)) 46) (((-644 |#4|) (-644 |#4|) (-1157)) 45) (((-644 |#4|) (-644 |#4|)) 34)))
-(((-452 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4375 ((-644 |#4|) (-644 |#4|))) (-15 -4375 ((-644 |#4|) (-644 |#4|) (-1157))) (-15 -4375 ((-644 |#4|) (-644 |#4|) (-1157) (-1157))) (IF (|has| |#1| (-365)) (-15 -2279 (|#4| |#4| (-644 |#4|))) |%noBranch|)) (-454) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -452))
-((-2279 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-365)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-452 *4 *5 *6 *2)))) (-4375 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-452 *4 *5 *6 *7)))) (-4375 (*1 *2 *2 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-452 *4 *5 *6 *7)))) (-4375 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-452 *3 *4 *5 *6)))))
-(-10 -7 (-15 -4375 ((-644 |#4|) (-644 |#4|))) (-15 -4375 ((-644 |#4|) (-644 |#4|) (-1157))) (-15 -4375 ((-644 |#4|) (-644 |#4|) (-1157) (-1157))) (IF (|has| |#1| (-365)) (-15 -2279 (|#4| |#4| (-644 |#4|))) |%noBranch|))
-((-2184 (($ $ $) 14) (($ (-644 $)) 21)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 46)) (-2222 (($ $ $) NIL) (($ (-644 $)) 22)))
-(((-453 |#1|) (-10 -8 (-15 -4319 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -2184 (|#1| (-644 |#1|))) (-15 -2184 (|#1| |#1| |#1|)) (-15 -2222 (|#1| (-644 |#1|))) (-15 -2222 (|#1| |#1| |#1|))) (-454)) (T -453))
-NIL
-(-10 -8 (-15 -4319 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -2184 (|#1| (-644 |#1|))) (-15 -2184 (|#1| |#1| |#1|)) (-15 -2222 (|#1| (-644 |#1|))) (-15 -2222 (|#1| |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-2972 (((-3 $ "failed") $ $) 48)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-4176 (((-112)) 18)) (-3060 (((-112) (-112)) 19)) (-4198 (((-112)) 14)) (-2722 (((-112) (-112)) 15)) (-3574 (((-112)) 16)) (-3083 (((-112) (-112)) 17)) (-2820 (((-921) (-921)) 22) (((-921)) 21)) (-1652 (((-771) (-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566))))) 52)) (-1686 (((-921) (-921)) 24) (((-921)) 23)) (-3272 (((-2 (|:| -2760 (-566)) (|:| -2670 (-644 |#1|))) |#1|) 97)) (-4116 (((-420 |#1|) (-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566))))))) 178)) (-1997 (((-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))) |#1| (-112)) 211)) (-3173 (((-420 |#1|) |#1| (-771) (-771)) 226) (((-420 |#1|) |#1| (-644 (-771)) (-771)) 223) (((-420 |#1|) |#1| (-644 (-771))) 225) (((-420 |#1|) |#1| (-771)) 224) (((-420 |#1|) |#1|) 222)) (-3680 (((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771) (-112)) 228) (((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771)) 229) (((-3 |#1| "failed") (-921) |#1| (-644 (-771))) 231) (((-3 |#1| "failed") (-921) |#1| (-771)) 230) (((-3 |#1| "failed") (-921) |#1|) 232)) (-2473 (((-420 |#1|) |#1| (-771) (-771)) 221) (((-420 |#1|) |#1| (-644 (-771)) (-771)) 217) (((-420 |#1|) |#1| (-644 (-771))) 219) (((-420 |#1|) |#1| (-771)) 218) (((-420 |#1|) |#1|) 216)) (-1444 (((-112) |#1|) 44)) (-1455 (((-737 (-771)) (-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566))))) 102)) (-2292 (((-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))) |#1| (-112) (-1101 (-771)) (-771)) 215)))
+(((-444 |#1|) (-10 -7 (-15 -4116 ((-420 |#1|) (-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))))) (-15 -1455 ((-737 (-771)) (-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566)))))) (-15 -1686 ((-921))) (-15 -1686 ((-921) (-921))) (-15 -2820 ((-921))) (-15 -2820 ((-921) (-921))) (-15 -1652 ((-771) (-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566)))))) (-15 -3272 ((-2 (|:| -2760 (-566)) (|:| -2670 (-644 |#1|))) |#1|)) (-15 -4176 ((-112))) (-15 -3060 ((-112) (-112))) (-15 -4198 ((-112))) (-15 -2722 ((-112) (-112))) (-15 -1444 ((-112) |#1|)) (-15 -3574 ((-112))) (-15 -3083 ((-112) (-112))) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -2473 ((-420 |#1|) |#1| (-771))) (-15 -2473 ((-420 |#1|) |#1| (-644 (-771)))) (-15 -2473 ((-420 |#1|) |#1| (-644 (-771)) (-771))) (-15 -2473 ((-420 |#1|) |#1| (-771) (-771))) (-15 -3173 ((-420 |#1|) |#1|)) (-15 -3173 ((-420 |#1|) |#1| (-771))) (-15 -3173 ((-420 |#1|) |#1| (-644 (-771)))) (-15 -3173 ((-420 |#1|) |#1| (-644 (-771)) (-771))) (-15 -3173 ((-420 |#1|) |#1| (-771) (-771))) (-15 -3680 ((-3 |#1| "failed") (-921) |#1|)) (-15 -3680 ((-3 |#1| "failed") (-921) |#1| (-771))) (-15 -3680 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)))) (-15 -3680 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771))) (-15 -3680 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771) (-112))) (-15 -1997 ((-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))) |#1| (-112))) (-15 -2292 ((-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))) |#1| (-112) (-1101 (-771)) (-771)))) (-1240 (-566))) (T -444))
+((-2292 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1101 (-771))) (-5 *6 (-771)) (-5 *2 (-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| *3) (|:| -2831 (-566))))))) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-1997 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| *3) (|:| -2831 (-566))))))) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3680 (*1 *2 *3 *2 *4 *5 *6) (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *5 (-771)) (-5 *6 (-112)) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566))))) (-3680 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *5 (-771)) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566))))) (-3680 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566))))) (-3680 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-921)) (-5 *4 (-771)) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566))))) (-3680 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-921)) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566))))) (-3173 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3173 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-644 (-771))) (-5 *5 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3173 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-771))) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3173 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3173 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2473 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2473 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-644 (-771))) (-5 *5 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2473 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-771))) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2473 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2473 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3083 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3574 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-1444 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2722 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-4198 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3060 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-4176 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-3272 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -2760 (-566)) (|:| -2670 (-644 *3)))) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-1652 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -2473 *4) (|:| -2108 (-566))))) (-4 *4 (-1240 (-566))) (-5 *2 (-771)) (-5 *1 (-444 *4)))) (-2820 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-2820 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-1686 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-1686 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))) (-1455 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -2473 *4) (|:| -2108 (-566))))) (-4 *4 (-1240 (-566))) (-5 *2 (-737 (-771))) (-5 *1 (-444 *4)))) (-4116 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| *4) (|:| -2831 (-566))))))) (-4 *4 (-1240 (-566))) (-5 *2 (-420 *4)) (-5 *1 (-444 *4)))))
+(-10 -7 (-15 -4116 ((-420 |#1|) (-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))))) (-15 -1455 ((-737 (-771)) (-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566)))))) (-15 -1686 ((-921))) (-15 -1686 ((-921) (-921))) (-15 -2820 ((-921))) (-15 -2820 ((-921) (-921))) (-15 -1652 ((-771) (-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566)))))) (-15 -3272 ((-2 (|:| -2760 (-566)) (|:| -2670 (-644 |#1|))) |#1|)) (-15 -4176 ((-112))) (-15 -3060 ((-112) (-112))) (-15 -4198 ((-112))) (-15 -2722 ((-112) (-112))) (-15 -1444 ((-112) |#1|)) (-15 -3574 ((-112))) (-15 -3083 ((-112) (-112))) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -2473 ((-420 |#1|) |#1| (-771))) (-15 -2473 ((-420 |#1|) |#1| (-644 (-771)))) (-15 -2473 ((-420 |#1|) |#1| (-644 (-771)) (-771))) (-15 -2473 ((-420 |#1|) |#1| (-771) (-771))) (-15 -3173 ((-420 |#1|) |#1|)) (-15 -3173 ((-420 |#1|) |#1| (-771))) (-15 -3173 ((-420 |#1|) |#1| (-644 (-771)))) (-15 -3173 ((-420 |#1|) |#1| (-644 (-771)) (-771))) (-15 -3173 ((-420 |#1|) |#1| (-771) (-771))) (-15 -3680 ((-3 |#1| "failed") (-921) |#1|)) (-15 -3680 ((-3 |#1| "failed") (-921) |#1| (-771))) (-15 -3680 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)))) (-15 -3680 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771))) (-15 -3680 ((-3 |#1| "failed") (-921) |#1| (-644 (-771)) (-771) (-112))) (-15 -1997 ((-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))) |#1| (-112))) (-15 -2292 ((-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))) |#1| (-112) (-1101 (-771)) (-771))))
+((-1555 (((-566) |#2|) 52) (((-566) |#2| (-771)) 51)) (-2112 (((-566) |#2|) 67)) (-3031 ((|#3| |#2|) 26)) (-2719 ((|#3| |#2| (-921)) 15)) (-3945 ((|#3| |#2|) 16)) (-1741 ((|#3| |#2|) 9)) (-3906 ((|#3| |#2|) 10)) (-1564 ((|#3| |#2| (-921)) 74) ((|#3| |#2|) 34)) (-2988 (((-566) |#2|) 69)))
+(((-445 |#1| |#2| |#3|) (-10 -7 (-15 -2988 ((-566) |#2|)) (-15 -1564 (|#3| |#2|)) (-15 -1564 (|#3| |#2| (-921))) (-15 -2112 ((-566) |#2|)) (-15 -1555 ((-566) |#2| (-771))) (-15 -1555 ((-566) |#2|)) (-15 -2719 (|#3| |#2| (-921))) (-15 -3031 (|#3| |#2|)) (-15 -1741 (|#3| |#2|)) (-15 -3906 (|#3| |#2|)) (-15 -3945 (|#3| |#2|))) (-1049) (-1240 |#1|) (-13 (-406) (-1038 |#1|) (-365) (-1199) (-285))) (T -445))
+((-3945 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))) (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))) (-3906 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))) (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))) (-1741 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))) (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))) (-3031 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))) (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))) (-2719 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *2 (-13 (-406) (-1038 *5) (-365) (-1199) (-285))) (-5 *1 (-445 *5 *3 *2)) (-4 *3 (-1240 *5)))) (-1555 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5)) (-4 *3 (-1240 *4)) (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))) (-1555 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *5 *3 *6)) (-4 *3 (-1240 *5)) (-4 *6 (-13 (-406) (-1038 *5) (-365) (-1199) (-285))))) (-2112 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5)) (-4 *3 (-1240 *4)) (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))) (-1564 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *2 (-13 (-406) (-1038 *5) (-365) (-1199) (-285))) (-5 *1 (-445 *5 *3 *2)) (-4 *3 (-1240 *5)))) (-1564 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))) (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))) (-2988 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5)) (-4 *3 (-1240 *4)) (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))))
+(-10 -7 (-15 -2988 ((-566) |#2|)) (-15 -1564 (|#3| |#2|)) (-15 -1564 (|#3| |#2| (-921))) (-15 -2112 ((-566) |#2|)) (-15 -1555 ((-566) |#2| (-771))) (-15 -1555 ((-566) |#2|)) (-15 -2719 (|#3| |#2| (-921))) (-15 -3031 (|#3| |#2|)) (-15 -1741 (|#3| |#2|)) (-15 -3906 (|#3| |#2|)) (-15 -3945 (|#3| |#2|)))
+((-3747 ((|#2| (-1264 |#1|)) 45)) (-2588 ((|#2| |#2| |#1|) 61)) (-2163 ((|#2| |#2| |#1|) 53)) (-3507 ((|#2| |#2|) 49)) (-2046 (((-112) |#2|) 36)) (-2182 (((-644 |#2|) (-921) (-420 |#2|)) 24)) (-3680 ((|#2| (-921) (-420 |#2|)) 28)) (-1455 (((-737 (-771)) (-420 |#2|)) 33)))
+(((-446 |#1| |#2|) (-10 -7 (-15 -2046 ((-112) |#2|)) (-15 -3747 (|#2| (-1264 |#1|))) (-15 -3507 (|#2| |#2|)) (-15 -2163 (|#2| |#2| |#1|)) (-15 -2588 (|#2| |#2| |#1|)) (-15 -1455 ((-737 (-771)) (-420 |#2|))) (-15 -3680 (|#2| (-921) (-420 |#2|))) (-15 -2182 ((-644 |#2|) (-921) (-420 |#2|)))) (-1049) (-1240 |#1|)) (T -446))
+((-2182 (*1 *2 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-420 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-1049)) (-5 *2 (-644 *6)) (-5 *1 (-446 *5 *6)))) (-3680 (*1 *2 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-420 *2)) (-4 *2 (-1240 *5)) (-5 *1 (-446 *5 *2)) (-4 *5 (-1049)))) (-1455 (*1 *2 *3) (-12 (-5 *3 (-420 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-1049)) (-5 *2 (-737 (-771))) (-5 *1 (-446 *4 *5)))) (-2588 (*1 *2 *2 *3) (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3)))) (-2163 (*1 *2 *2 *3) (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3)))) (-3507 (*1 *2 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3)))) (-3747 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-1049)) (-4 *2 (-1240 *4)) (-5 *1 (-446 *4 *2)))) (-2046 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-5 *2 (-112)) (-5 *1 (-446 *4 *3)) (-4 *3 (-1240 *4)))))
+(-10 -7 (-15 -2046 ((-112) |#2|)) (-15 -3747 (|#2| (-1264 |#1|))) (-15 -3507 (|#2| |#2|)) (-15 -2163 (|#2| |#2| |#1|)) (-15 -2588 (|#2| |#2| |#1|)) (-15 -1455 ((-737 (-771)) (-420 |#2|))) (-15 -3680 (|#2| (-921) (-420 |#2|))) (-15 -2182 ((-644 |#2|) (-921) (-420 |#2|))))
+((-2829 (((-771)) 59)) (-2863 (((-771)) 29 (|has| |#1| (-406))) (((-771) (-771)) 28 (|has| |#1| (-406)))) (-3393 (((-566) |#1|) 25 (|has| |#1| (-406)))) (-1726 (((-566) |#1|) 27 (|has| |#1| (-406)))) (-2321 (((-771)) 58) (((-771) (-771)) 57)) (-1693 ((|#1| (-771) (-566)) 37)) (-1881 (((-1269)) 61)))
+(((-447 |#1|) (-10 -7 (-15 -1693 (|#1| (-771) (-566))) (-15 -2321 ((-771) (-771))) (-15 -2321 ((-771))) (-15 -2829 ((-771))) (-15 -1881 ((-1269))) (IF (|has| |#1| (-406)) (PROGN (-15 -1726 ((-566) |#1|)) (-15 -3393 ((-566) |#1|)) (-15 -2863 ((-771) (-771))) (-15 -2863 ((-771)))) |%noBranch|)) (-1049)) (T -447))
+((-2863 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))) (-2863 (*1 *2 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))) (-3393 (*1 *2 *3) (-12 (-5 *2 (-566)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))) (-1726 (*1 *2 *3) (-12 (-5 *2 (-566)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))) (-1881 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))) (-2829 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))) (-2321 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))) (-2321 (*1 *2 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))) (-1693 (*1 *2 *3 *4) (-12 (-5 *3 (-771)) (-5 *4 (-566)) (-5 *1 (-447 *2)) (-4 *2 (-1049)))))
+(-10 -7 (-15 -1693 (|#1| (-771) (-566))) (-15 -2321 ((-771) (-771))) (-15 -2321 ((-771))) (-15 -2829 ((-771))) (-15 -1881 ((-1269))) (IF (|has| |#1| (-406)) (PROGN (-15 -1726 ((-566) |#1|)) (-15 -3393 ((-566) |#1|)) (-15 -2863 ((-771) (-771))) (-15 -2863 ((-771)))) |%noBranch|))
+((-1585 (((-644 (-566)) (-566)) 76)) (-1784 (((-112) (-169 (-566))) 82)) (-2473 (((-420 (-169 (-566))) (-169 (-566))) 75)))
+(((-448) (-10 -7 (-15 -2473 ((-420 (-169 (-566))) (-169 (-566)))) (-15 -1585 ((-644 (-566)) (-566))) (-15 -1784 ((-112) (-169 (-566)))))) (T -448))
+((-1784 (*1 *2 *3) (-12 (-5 *3 (-169 (-566))) (-5 *2 (-112)) (-5 *1 (-448)))) (-1585 (*1 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-448)) (-5 *3 (-566)))) (-2473 (*1 *2 *3) (-12 (-5 *2 (-420 (-169 (-566)))) (-5 *1 (-448)) (-5 *3 (-169 (-566))))))
+(-10 -7 (-15 -2473 ((-420 (-169 (-566))) (-169 (-566)))) (-15 -1585 ((-644 (-566)) (-566))) (-15 -1784 ((-112) (-169 (-566)))))
+((-4220 ((|#4| |#4| (-644 |#4|)) 82)) (-2847 (((-644 |#4|) (-644 |#4|) (-1157) (-1157)) 22) (((-644 |#4|) (-644 |#4|) (-1157)) 21) (((-644 |#4|) (-644 |#4|)) 13)))
+(((-449 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4220 (|#4| |#4| (-644 |#4|))) (-15 -2847 ((-644 |#4|) (-644 |#4|))) (-15 -2847 ((-644 |#4|) (-644 |#4|) (-1157))) (-15 -2847 ((-644 |#4|) (-644 |#4|) (-1157) (-1157)))) (-308) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -449))
+((-2847 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-308)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-449 *4 *5 *6 *7)))) (-2847 (*1 *2 *2 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-308)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-449 *4 *5 *6 *7)))) (-2847 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-449 *3 *4 *5 *6)))) (-4220 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-308)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-449 *4 *5 *6 *2)))))
+(-10 -7 (-15 -4220 (|#4| |#4| (-644 |#4|))) (-15 -2847 ((-644 |#4|) (-644 |#4|))) (-15 -2847 ((-644 |#4|) (-644 |#4|) (-1157))) (-15 -2847 ((-644 |#4|) (-644 |#4|) (-1157) (-1157))))
+((-2773 (((-644 (-644 |#4|)) (-644 |#4|) (-112)) 91) (((-644 (-644 |#4|)) (-644 |#4|)) 90) (((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|) (-112)) 84) (((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|)) 85)) (-3356 (((-644 (-644 |#4|)) (-644 |#4|) (-112)) 55) (((-644 (-644 |#4|)) (-644 |#4|)) 77)))
+(((-450 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3356 ((-644 (-644 |#4|)) (-644 |#4|))) (-15 -3356 ((-644 (-644 |#4|)) (-644 |#4|) (-112))) (-15 -2773 ((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|))) (-15 -2773 ((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|) (-112))) (-15 -2773 ((-644 (-644 |#4|)) (-644 |#4|))) (-15 -2773 ((-644 (-644 |#4|)) (-644 |#4|) (-112)))) (-13 (-308) (-147)) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -450))
+((-2773 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8))) (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8)))) (-2773 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7))) (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-2773 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8))) (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8)))) (-2773 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7))) (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-3356 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8))) (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8)))) (-3356 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7))) (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
+(-10 -7 (-15 -3356 ((-644 (-644 |#4|)) (-644 |#4|))) (-15 -3356 ((-644 (-644 |#4|)) (-644 |#4|) (-112))) (-15 -2773 ((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|))) (-15 -2773 ((-644 (-644 |#4|)) (-644 |#4|) (-644 |#4|) (-112))) (-15 -2773 ((-644 (-644 |#4|)) (-644 |#4|))) (-15 -2773 ((-644 (-644 |#4|)) (-644 |#4|) (-112))))
+((-3026 (((-771) |#4|) 12)) (-2649 (((-644 (-2 (|:| |totdeg| (-771)) (|:| -2576 |#4|))) |#4| (-771) (-644 (-2 (|:| |totdeg| (-771)) (|:| -2576 |#4|)))) 39)) (-2744 (((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 51)) (-1624 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 54)) (-3137 ((|#4| |#4| (-644 |#4|)) 56)) (-1770 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-644 |#4|)) 98)) (-1733 (((-1269) |#4|) 61)) (-2803 (((-1269) (-644 |#4|)) 71)) (-3989 (((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566)) 68)) (-3612 (((-1269) (-566)) 113)) (-2169 (((-644 |#4|) (-644 |#4|)) 105)) (-3347 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-771)) (|:| -2576 |#4|)) |#4| (-771)) 31)) (-1523 (((-566) |#4|) 110)) (-2320 ((|#4| |#4|) 37)) (-2238 (((-644 |#4|) (-644 |#4|) (-566) (-566)) 76)) (-4331 (((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566) (-566)) 126)) (-3481 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 20)) (-1322 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 80)) (-1379 (((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 78)) (-1483 (((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 49)) (-3112 (((-112) |#2| |#2|) 77)) (-2074 (((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 50)) (-3802 (((-112) |#2| |#2| |#2| |#2|) 82)) (-3497 ((|#4| |#4| (-644 |#4|)) 99)))
+(((-451 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3497 (|#4| |#4| (-644 |#4|))) (-15 -3137 (|#4| |#4| (-644 |#4|))) (-15 -2238 ((-644 |#4|) (-644 |#4|) (-566) (-566))) (-15 -1322 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3112 ((-112) |#2| |#2|)) (-15 -3802 ((-112) |#2| |#2| |#2| |#2|)) (-15 -2074 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1483 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1379 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1770 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-644 |#4|))) (-15 -2320 (|#4| |#4|)) (-15 -2649 ((-644 (-2 (|:| |totdeg| (-771)) (|:| -2576 |#4|))) |#4| (-771) (-644 (-2 (|:| |totdeg| (-771)) (|:| -2576 |#4|))))) (-15 -1624 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2744 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2169 ((-644 |#4|) (-644 |#4|))) (-15 -1523 ((-566) |#4|)) (-15 -1733 ((-1269) |#4|)) (-15 -3989 ((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566))) (-15 -4331 ((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566) (-566))) (-15 -2803 ((-1269) (-644 |#4|))) (-15 -3612 ((-1269) (-566))) (-15 -3481 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3347 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-771)) (|:| -2576 |#4|)) |#4| (-771))) (-15 -3026 ((-771) |#4|))) (-454) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -451))
+((-3026 (*1 *2 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-771)) (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))) (-3347 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-771)) (|:| -2576 *4))) (-5 *5 (-771)) (-4 *4 (-949 *6 *7 *8)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-5 *2 (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4) (|:| |polj| *4))) (-5 *1 (-451 *6 *7 *8 *4)))) (-3481 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-793)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-451 *4 *5 *6 *7)))) (-3612 (*1 *2 *3) (-12 (-5 *3 (-566)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1269)) (-5 *1 (-451 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1269)) (-5 *1 (-451 *4 *5 *6 *7)))) (-4331 (*1 *2 *3 *4 *4 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-771)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-793)) (-4 *4 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *7 (-850)) (-5 *1 (-451 *5 *6 *7 *4)))) (-3989 (*1 *2 *3 *4 *4 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *3 (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-771)) (|:| |poli| *4) (|:| |polj| *4))) (-4 *6 (-793)) (-4 *4 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *7 (-850)) (-5 *1 (-451 *5 *6 *7 *4)))) (-1733 (*1 *2 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1269)) (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))) (-1523 (*1 *2 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-566)) (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))) (-2169 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-451 *3 *4 *5 *6)))) (-2744 (*1 *2 *2 *2) (-12 (-5 *2 (-644 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-771)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-793)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *5 (-850)) (-5 *1 (-451 *3 *4 *5 *6)))) (-1624 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *2) (|:| |polj| *2))) (-4 *5 (-793)) (-4 *2 (-949 *4 *5 *6)) (-5 *1 (-451 *4 *5 *6 *2)) (-4 *4 (-454)) (-4 *6 (-850)))) (-2649 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-644 (-2 (|:| |totdeg| (-771)) (|:| -2576 *3)))) (-5 *4 (-771)) (-4 *3 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-451 *5 *6 *7 *3)))) (-2320 (*1 *2 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-451 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5)))) (-1770 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5))) (-5 *1 (-451 *5 *6 *7 *3)))) (-1379 (*1 *2 *3 *2) (-12 (-5 *2 (-644 (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-771)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *3 (-793)) (-4 *6 (-949 *4 *3 *5)) (-4 *4 (-454)) (-4 *5 (-850)) (-5 *1 (-451 *4 *3 *5 *6)))) (-1483 (*1 *2 *2) (-12 (-5 *2 (-644 (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-771)) (|:| |poli| *6) (|:| |polj| *6)))) (-4 *4 (-793)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *5 (-850)) (-5 *1 (-451 *3 *4 *5 *6)))) (-2074 (*1 *2 *3 *2) (-12 (-5 *2 (-644 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *3) (|:| |polj| *3)))) (-4 *5 (-793)) (-4 *3 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *3)))) (-3802 (*1 *2 *3 *3 *3 *3) (-12 (-4 *4 (-454)) (-4 *3 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-451 *4 *3 *5 *6)) (-4 *6 (-949 *4 *3 *5)))) (-3112 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *3 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-451 *4 *3 *5 *6)) (-4 *6 (-949 *4 *3 *5)))) (-1322 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *7) (|:| |polj| *7))) (-4 *5 (-793)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-451 *4 *5 *6 *7)))) (-2238 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-566)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *7)))) (-3137 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *2)))) (-3497 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *2)))))
+(-10 -7 (-15 -3497 (|#4| |#4| (-644 |#4|))) (-15 -3137 (|#4| |#4| (-644 |#4|))) (-15 -2238 ((-644 |#4|) (-644 |#4|) (-566) (-566))) (-15 -1322 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3112 ((-112) |#2| |#2|)) (-15 -3802 ((-112) |#2| |#2| |#2| |#2|)) (-15 -2074 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1483 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1379 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1770 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-644 |#4|))) (-15 -2320 (|#4| |#4|)) (-15 -2649 ((-644 (-2 (|:| |totdeg| (-771)) (|:| -2576 |#4|))) |#4| (-771) (-644 (-2 (|:| |totdeg| (-771)) (|:| -2576 |#4|))))) (-15 -1624 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -2744 ((-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-644 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2169 ((-644 |#4|) (-644 |#4|))) (-15 -1523 ((-566) |#4|)) (-15 -1733 ((-1269) |#4|)) (-15 -3989 ((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566))) (-15 -4331 ((-566) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-566) (-566) (-566) (-566))) (-15 -2803 ((-1269) (-644 |#4|))) (-15 -3612 ((-1269) (-566))) (-15 -3481 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3347 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-771)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-771)) (|:| -2576 |#4|)) |#4| (-771))) (-15 -3026 ((-771) |#4|)))
+((-1348 ((|#4| |#4| (-644 |#4|)) 20 (|has| |#1| (-365)))) (-1532 (((-644 |#4|) (-644 |#4|) (-1157) (-1157)) 46) (((-644 |#4|) (-644 |#4|) (-1157)) 45) (((-644 |#4|) (-644 |#4|)) 34)))
+(((-452 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1532 ((-644 |#4|) (-644 |#4|))) (-15 -1532 ((-644 |#4|) (-644 |#4|) (-1157))) (-15 -1532 ((-644 |#4|) (-644 |#4|) (-1157) (-1157))) (IF (|has| |#1| (-365)) (-15 -1348 (|#4| |#4| (-644 |#4|))) |%noBranch|)) (-454) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -452))
+((-1348 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-365)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-452 *4 *5 *6 *2)))) (-1532 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-452 *4 *5 *6 *7)))) (-1532 (*1 *2 *2 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-452 *4 *5 *6 *7)))) (-1532 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-452 *3 *4 *5 *6)))))
+(-10 -7 (-15 -1532 ((-644 |#4|) (-644 |#4|))) (-15 -1532 ((-644 |#4|) (-644 |#4|) (-1157))) (-15 -1532 ((-644 |#4|) (-644 |#4|) (-1157) (-1157))) (IF (|has| |#1| (-365)) (-15 -1348 (|#4| |#4| (-644 |#4|))) |%noBranch|))
+((-2197 (($ $ $) 14) (($ (-644 $)) 21)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 46)) (-2235 (($ $ $) NIL) (($ (-644 $)) 22)))
+(((-453 |#1|) (-10 -8 (-15 -2221 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -2197 (|#1| (-644 |#1|))) (-15 -2197 (|#1| |#1| |#1|)) (-15 -2235 (|#1| (-644 |#1|))) (-15 -2235 (|#1| |#1| |#1|))) (-454)) (T -453))
+NIL
+(-10 -8 (-15 -2221 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -2197 (|#1| (-644 |#1|))) (-15 -2197 (|#1| |#1| |#1|)) (-15 -2235 (|#1| (-644 |#1|))) (-15 -2235 (|#1| |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2997 (((-3 $ "failed") $ $) 48)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-454) (-140)) (T -454))
-((-2222 (*1 *1 *1 *1) (-4 *1 (-454))) (-2222 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-454)))) (-2184 (*1 *1 *1 *1) (-4 *1 (-454))) (-2184 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-454)))) (-4319 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-454)))))
-(-13 (-558) (-10 -8 (-15 -2222 ($ $ $)) (-15 -2222 ($ (-644 $))) (-15 -2184 ($ $ $)) (-15 -2184 ($ (-644 $))) (-15 -4319 ((-1171 $) (-1171 $) (-1171 $)))))
+((-2235 (*1 *1 *1 *1) (-4 *1 (-454))) (-2235 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-454)))) (-2197 (*1 *1 *1 *1) (-4 *1 (-454))) (-2197 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-454)))) (-2221 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-454)))))
+(-13 (-558) (-10 -8 (-15 -2235 ($ $ $)) (-15 -2235 ($ (-644 $))) (-15 -2197 ($ $ $)) (-15 -2197 ($ (-644 $))) (-15 -2221 ((-1171 $) (-1171 $) (-1171 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-291) . T) ((-558) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-717 $) . T) ((-726) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3803 (((-3 $ "failed")) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-3950 (((-1264 (-689 (-409 (-952 |#1|)))) (-1264 $)) NIL) (((-1264 (-689 (-409 (-952 |#1|))))) NIL)) (-1378 (((-1264 $)) NIL)) (-2342 (($) NIL T CONST)) (-1503 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) NIL)) (-2301 (((-3 $ "failed")) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-2327 (((-689 (-409 (-952 |#1|))) (-1264 $)) NIL) (((-689 (-409 (-952 |#1|)))) NIL)) (-2080 (((-409 (-952 |#1|)) $) NIL)) (-1481 (((-689 (-409 (-952 |#1|))) $ (-1264 $)) NIL) (((-689 (-409 (-952 |#1|))) $) NIL)) (-3152 (((-3 $ "failed") $) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-3207 (((-1171 (-952 (-409 (-952 |#1|))))) NIL (|has| (-409 (-952 |#1|)) (-365))) (((-1171 (-409 (-952 |#1|)))) 94 (|has| |#1| (-558)))) (-2258 (($ $ (-921)) NIL)) (-2798 (((-409 (-952 |#1|)) $) NIL)) (-3584 (((-1171 (-409 (-952 |#1|))) $) 92 (|has| (-409 (-952 |#1|)) (-558)))) (-3435 (((-409 (-952 |#1|)) (-1264 $)) NIL) (((-409 (-952 |#1|))) NIL)) (-3815 (((-1171 (-409 (-952 |#1|))) $) NIL)) (-2982 (((-112)) NIL)) (-1547 (($ (-1264 (-409 (-952 |#1|))) (-1264 $)) 118) (($ (-1264 (-409 (-952 |#1|)))) NIL)) (-1579 (((-3 $ "failed") $) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-1821 (((-921)) NIL)) (-2631 (((-112)) NIL)) (-2995 (($ $ (-921)) NIL)) (-1605 (((-112)) NIL)) (-3199 (((-112)) NIL)) (-2592 (((-112)) NIL)) (-3881 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) NIL)) (-2060 (((-3 $ "failed")) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-1297 (((-689 (-409 (-952 |#1|))) (-1264 $)) NIL) (((-689 (-409 (-952 |#1|)))) NIL)) (-2516 (((-409 (-952 |#1|)) $) NIL)) (-4333 (((-689 (-409 (-952 |#1|))) $ (-1264 $)) NIL) (((-689 (-409 (-952 |#1|))) $) NIL)) (-2318 (((-3 $ "failed") $) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-2593 (((-1171 (-952 (-409 (-952 |#1|))))) NIL (|has| (-409 (-952 |#1|)) (-365))) (((-1171 (-409 (-952 |#1|)))) 93 (|has| |#1| (-558)))) (-4171 (($ $ (-921)) NIL)) (-3595 (((-409 (-952 |#1|)) $) NIL)) (-3984 (((-1171 (-409 (-952 |#1|))) $) 87 (|has| (-409 (-952 |#1|)) (-558)))) (-2835 (((-409 (-952 |#1|)) (-1264 $)) NIL) (((-409 (-952 |#1|))) NIL)) (-1846 (((-1171 (-409 (-952 |#1|))) $) NIL)) (-3880 (((-112)) NIL)) (-2878 (((-1157) $) NIL)) (-2817 (((-112)) NIL)) (-1642 (((-112)) NIL)) (-4331 (((-112)) NIL)) (-4033 (((-1119) $) NIL)) (-3614 (((-409 (-952 |#1|)) $ $) 78 (|has| |#1| (-558)))) (-1796 (((-409 (-952 |#1|)) $) 104 (|has| |#1| (-558)))) (-2307 (((-409 (-952 |#1|)) $) 108 (|has| |#1| (-558)))) (-2159 (((-1171 (-409 (-952 |#1|))) $) 98 (|has| |#1| (-558)))) (-1680 (((-409 (-952 |#1|))) 79 (|has| |#1| (-558)))) (-1688 (((-409 (-952 |#1|)) $ $) 71 (|has| |#1| (-558)))) (-3177 (((-409 (-952 |#1|)) $) 103 (|has| |#1| (-558)))) (-2148 (((-409 (-952 |#1|)) $) 107 (|has| |#1| (-558)))) (-2885 (((-1171 (-409 (-952 |#1|))) $) 97 (|has| |#1| (-558)))) (-4089 (((-409 (-952 |#1|))) 75 (|has| |#1| (-558)))) (-3125 (($) 114) (($ (-1175)) 122) (($ (-1264 (-1175))) 121) (($ (-1264 $)) 109) (($ (-1175) (-1264 $)) 120) (($ (-1264 (-1175)) (-1264 $)) 119)) (-3017 (((-112)) NIL)) (-4386 (((-409 (-952 |#1|)) $ (-566)) NIL)) (-2770 (((-1264 (-409 (-952 |#1|))) $ (-1264 $)) 111) (((-689 (-409 (-952 |#1|))) (-1264 $) (-1264 $)) NIL) (((-1264 (-409 (-952 |#1|))) $) 45) (((-689 (-409 (-952 |#1|))) (-1264 $)) NIL)) (-3134 (((-1264 (-409 (-952 |#1|))) $) NIL) (($ (-1264 (-409 (-952 |#1|)))) 42)) (-2232 (((-644 (-952 (-409 (-952 |#1|)))) (-1264 $)) NIL) (((-644 (-952 (-409 (-952 |#1|))))) NIL) (((-644 (-952 |#1|)) (-1264 $)) 112 (|has| |#1| (-558))) (((-644 (-952 |#1|))) 113 (|has| |#1| (-558)))) (-3755 (($ $ $) NIL)) (-2110 (((-112)) NIL)) (-2512 (((-862) $) NIL) (($ (-1264 (-409 (-952 |#1|)))) NIL)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) 67)) (-3578 (((-644 (-1264 (-409 (-952 |#1|))))) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-3551 (($ $ $ $) NIL)) (-4018 (((-112)) NIL)) (-4002 (($ (-689 (-409 (-952 |#1|))) $) NIL)) (-2821 (($ $ $) NIL)) (-1546 (((-112)) NIL)) (-2498 (((-112)) NIL)) (-2686 (((-112)) NIL)) (-2485 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) 110)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 63) (($ $ (-409 (-952 |#1|))) NIL) (($ (-409 (-952 |#1|)) $) NIL) (($ (-1141 |#2| (-409 (-952 |#1|))) $) NIL)))
-(((-455 |#1| |#2| |#3| |#4|) (-13 (-419 (-409 (-952 |#1|))) (-648 (-1141 |#2| (-409 (-952 |#1|)))) (-10 -8 (-15 -2512 ($ (-1264 (-409 (-952 |#1|))))) (-15 -3881 ((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed"))) (-15 -1503 ((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed"))) (-15 -3125 ($)) (-15 -3125 ($ (-1175))) (-15 -3125 ($ (-1264 (-1175)))) (-15 -3125 ($ (-1264 $))) (-15 -3125 ($ (-1175) (-1264 $))) (-15 -3125 ($ (-1264 (-1175)) (-1264 $))) (IF (|has| |#1| (-558)) (PROGN (-15 -2593 ((-1171 (-409 (-952 |#1|))))) (-15 -2885 ((-1171 (-409 (-952 |#1|))) $)) (-15 -3177 ((-409 (-952 |#1|)) $)) (-15 -2148 ((-409 (-952 |#1|)) $)) (-15 -3207 ((-1171 (-409 (-952 |#1|))))) (-15 -2159 ((-1171 (-409 (-952 |#1|))) $)) (-15 -1796 ((-409 (-952 |#1|)) $)) (-15 -2307 ((-409 (-952 |#1|)) $)) (-15 -1688 ((-409 (-952 |#1|)) $ $)) (-15 -4089 ((-409 (-952 |#1|)))) (-15 -3614 ((-409 (-952 |#1|)) $ $)) (-15 -1680 ((-409 (-952 |#1|)))) (-15 -2232 ((-644 (-952 |#1|)) (-1264 $))) (-15 -2232 ((-644 (-952 |#1|))))) |%noBranch|))) (-172) (-921) (-644 (-1175)) (-1264 (-689 |#1|))) (T -455))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1264 (-409 (-952 *3)))) (-4 *3 (-172)) (-14 *6 (-1264 (-689 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))))) (-3881 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-455 *3 *4 *5 *6)) (|:| -1990 (-644 (-455 *3 *4 *5 *6))))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-1503 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-455 *3 *4 *5 *6)) (|:| -1990 (-644 (-455 *3 *4 *5 *6))))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3125 (*1 *1) (-12 (-5 *1 (-455 *2 *3 *4 *5)) (-4 *2 (-172)) (-14 *3 (-921)) (-14 *4 (-644 (-1175))) (-14 *5 (-1264 (-689 *2))))) (-3125 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 *2)) (-14 *6 (-1264 (-689 *3))))) (-3125 (*1 *1 *2) (-12 (-5 *2 (-1264 (-1175))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3125 (*1 *1 *2) (-12 (-5 *2 (-1264 (-455 *3 *4 *5 *6))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3125 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-455 *4 *5 *6 *7))) (-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-921)) (-14 *6 (-644 *2)) (-14 *7 (-1264 (-689 *4))))) (-3125 (*1 *1 *2 *3) (-12 (-5 *2 (-1264 (-1175))) (-5 *3 (-1264 (-455 *4 *5 *6 *7))) (-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-921)) (-14 *6 (-644 (-1175))) (-14 *7 (-1264 (-689 *4))))) (-2593 (*1 *2) (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-2885 (*1 *2 *1) (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3177 (*1 *2 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-2148 (*1 *2 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3207 (*1 *2) (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-2159 (*1 *2 *1) (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-1796 (*1 *2 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-2307 (*1 *2 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-1688 (*1 *2 *1 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-4089 (*1 *2) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3614 (*1 *2 *1 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-1680 (*1 *2) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-2232 (*1 *2 *3) (-12 (-5 *3 (-1264 (-455 *4 *5 *6 *7))) (-5 *2 (-644 (-952 *4))) (-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-558)) (-4 *4 (-172)) (-14 *5 (-921)) (-14 *6 (-644 (-1175))) (-14 *7 (-1264 (-689 *4))))) (-2232 (*1 *2) (-12 (-5 *2 (-644 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(-13 (-419 (-409 (-952 |#1|))) (-648 (-1141 |#2| (-409 (-952 |#1|)))) (-10 -8 (-15 -2512 ($ (-1264 (-409 (-952 |#1|))))) (-15 -3881 ((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed"))) (-15 -1503 ((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed"))) (-15 -3125 ($)) (-15 -3125 ($ (-1175))) (-15 -3125 ($ (-1264 (-1175)))) (-15 -3125 ($ (-1264 $))) (-15 -3125 ($ (-1175) (-1264 $))) (-15 -3125 ($ (-1264 (-1175)) (-1264 $))) (IF (|has| |#1| (-558)) (PROGN (-15 -2593 ((-1171 (-409 (-952 |#1|))))) (-15 -2885 ((-1171 (-409 (-952 |#1|))) $)) (-15 -3177 ((-409 (-952 |#1|)) $)) (-15 -2148 ((-409 (-952 |#1|)) $)) (-15 -3207 ((-1171 (-409 (-952 |#1|))))) (-15 -2159 ((-1171 (-409 (-952 |#1|))) $)) (-15 -1796 ((-409 (-952 |#1|)) $)) (-15 -2307 ((-409 (-952 |#1|)) $)) (-15 -1688 ((-409 (-952 |#1|)) $ $)) (-15 -4089 ((-409 (-952 |#1|)))) (-15 -3614 ((-409 (-952 |#1|)) $ $)) (-15 -1680 ((-409 (-952 |#1|)))) (-15 -2232 ((-644 (-952 |#1|)) (-1264 $))) (-15 -2232 ((-644 (-952 |#1|))))) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 18)) (-2540 (((-644 (-864 |#1|)) $) 92)) (-2358 (((-1171 $) $ (-864 |#1|)) 55) (((-1171 |#2|) $) 143)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#2| (-558)))) (-3653 (($ $) NIL (|has| |#2| (-558)))) (-2152 (((-112) $) NIL (|has| |#2| (-558)))) (-3678 (((-771) $) 27) (((-771) $ (-644 (-864 |#1|))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2857 (($ $) NIL (|has| |#2| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#2| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) 53) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-864 |#1|) "failed") $) NIL)) (-1756 ((|#2| $) 51) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-864 |#1|) $) NIL)) (-1552 (($ $ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-1492 (($ $ (-644 (-566))) 98)) (-3577 (($ $) 85)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#2| (-909)))) (-2804 (($ $ |#2| |#3| $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) 68)) (-2530 (($ (-1171 |#2|) (-864 |#1|)) 148) (($ (-1171 $) (-864 |#1|)) 61)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) 71)) (-2519 (($ |#2| |#3|) 38) (($ $ (-864 |#1|) (-771)) 40) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-864 |#1|)) NIL)) (-3251 ((|#3| $) NIL) (((-771) $ (-864 |#1|)) 59) (((-644 (-771)) $ (-644 (-864 |#1|))) 66)) (-2132 (($ (-1 |#3| |#3|) $) NIL)) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-3339 (((-3 (-864 |#1|) "failed") $) 48)) (-3545 (($ $) NIL)) (-3557 ((|#2| $) 50)) (-2184 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-2878 (((-1157) $) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-864 |#1|)) (|:| -3250 (-771))) "failed") $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) 49)) (-3531 ((|#2| $) 141)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) 154 (|has| |#2| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#2| (-909)))) (-2972 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-558)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-864 |#1|) |#2|) 105) (($ $ (-644 (-864 |#1|)) (-644 |#2|)) 111) (($ $ (-864 |#1|) $) 103) (($ $ (-644 (-864 |#1|)) (-644 $)) 129)) (-2408 (($ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-2862 (($ $ (-864 |#1|)) 62) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3992 ((|#3| $) 84) (((-771) $ (-864 |#1|)) 45) (((-644 (-771)) $ (-644 (-864 |#1|))) 65)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-864 |#1|) (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3181 ((|#2| $) 150 (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-2512 (((-862) $) 179) (($ (-566)) NIL) (($ |#2|) 104) (($ (-864 |#1|)) 42) (($ (-409 (-566))) NIL (-2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#2| (-558)))) (-3868 (((-644 |#2|) $) NIL)) (-2022 ((|#2| $ |#3|) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#2| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#2| (-558)))) (-2485 (($) 22 T CONST)) (-2495 (($) 31 T CONST)) (-2840 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#2|) 81 (|has| |#2| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 136)) (** (($ $ (-921)) NIL) (($ $ (-771)) 134)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 39) (($ $ (-409 (-566))) NIL (|has| |#2| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#2| (-38 (-409 (-566))))) (($ |#2| $) 80) (($ $ |#2|) NIL)))
-(((-456 |#1| |#2| |#3|) (-13 (-949 |#2| |#3| (-864 |#1|)) (-10 -8 (-15 -1492 ($ $ (-644 (-566)))))) (-644 (-1175)) (-1049) (-238 (-2997 |#1|) (-771))) (T -456))
-((-1492 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-14 *3 (-644 (-1175))) (-5 *1 (-456 *3 *4 *5)) (-4 *4 (-1049)) (-4 *5 (-238 (-2997 *3) (-771))))))
-(-13 (-949 |#2| |#3| (-864 |#1|)) (-10 -8 (-15 -1492 ($ $ (-644 (-566))))))
-((-3430 (((-112) |#1| (-644 |#2|)) 94)) (-4031 (((-3 (-1264 (-644 |#2|)) "failed") (-771) |#1| (-644 |#2|)) 103)) (-3559 (((-3 (-644 |#2|) "failed") |#2| |#1| (-1264 (-644 |#2|))) 105)) (-3550 ((|#2| |#2| |#1|) 35)) (-2108 (((-771) |#2| (-644 |#2|)) 26)))
-(((-457 |#1| |#2|) (-10 -7 (-15 -3550 (|#2| |#2| |#1|)) (-15 -2108 ((-771) |#2| (-644 |#2|))) (-15 -4031 ((-3 (-1264 (-644 |#2|)) "failed") (-771) |#1| (-644 |#2|))) (-15 -3559 ((-3 (-644 |#2|) "failed") |#2| |#1| (-1264 (-644 |#2|)))) (-15 -3430 ((-112) |#1| (-644 |#2|)))) (-308) (-1240 |#1|)) (T -457))
-((-3430 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *5)) (-4 *5 (-1240 *3)) (-4 *3 (-308)) (-5 *2 (-112)) (-5 *1 (-457 *3 *5)))) (-3559 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1264 (-644 *3))) (-4 *4 (-308)) (-5 *2 (-644 *3)) (-5 *1 (-457 *4 *3)) (-4 *3 (-1240 *4)))) (-4031 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-771)) (-4 *4 (-308)) (-4 *6 (-1240 *4)) (-5 *2 (-1264 (-644 *6))) (-5 *1 (-457 *4 *6)) (-5 *5 (-644 *6)))) (-2108 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-308)) (-5 *2 (-771)) (-5 *1 (-457 *5 *3)))) (-3550 (*1 *2 *2 *3) (-12 (-4 *3 (-308)) (-5 *1 (-457 *3 *2)) (-4 *2 (-1240 *3)))))
-(-10 -7 (-15 -3550 (|#2| |#2| |#1|)) (-15 -2108 ((-771) |#2| (-644 |#2|))) (-15 -4031 ((-3 (-1264 (-644 |#2|)) "failed") (-771) |#1| (-644 |#2|))) (-15 -3559 ((-3 (-644 |#2|) "failed") |#2| |#1| (-1264 (-644 |#2|)))) (-15 -3430 ((-112) |#1| (-644 |#2|))))
-((-2391 (((-420 |#5|) |#5|) 24)))
-(((-458 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2391 ((-420 |#5|) |#5|))) (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)) (-15 -1353 ((-3 $ "failed") (-1175))))) (-793) (-558) (-558) (-949 |#4| |#2| |#1|)) (T -458))
-((-2391 (*1 *2 *3) (-12 (-4 *4 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)) (-15 -1353 ((-3 $ "failed") (-1175)))))) (-4 *5 (-793)) (-4 *7 (-558)) (-5 *2 (-420 *3)) (-5 *1 (-458 *4 *5 *6 *7 *3)) (-4 *6 (-558)) (-4 *3 (-949 *7 *5 *4)))))
-(-10 -7 (-15 -2391 ((-420 |#5|) |#5|)))
-((-3924 ((|#3|) 40)) (-4319 (((-1171 |#4|) (-1171 |#4|) (-1171 |#4|)) 36)))
-(((-459 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4319 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -3924 (|#3|))) (-793) (-850) (-909) (-949 |#3| |#1| |#2|)) (T -459))
-((-3924 (*1 *2) (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-909)) (-5 *1 (-459 *3 *4 *2 *5)) (-4 *5 (-949 *2 *3 *4)))) (-4319 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-909)) (-5 *1 (-459 *3 *4 *5 *6)))))
-(-10 -7 (-15 -4319 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -3924 (|#3|)))
-((-2391 (((-420 (-1171 |#1|)) (-1171 |#1|)) 43)))
-(((-460 |#1|) (-10 -7 (-15 -2391 ((-420 (-1171 |#1|)) (-1171 |#1|)))) (-308)) (T -460))
-((-2391 (*1 *2 *3) (-12 (-4 *4 (-308)) (-5 *2 (-420 (-1171 *4))) (-5 *1 (-460 *4)) (-5 *3 (-1171 *4)))))
-(-10 -7 (-15 -2391 ((-420 (-1171 |#1|)) (-1171 |#1|))))
-((-2590 (((-52) |#2| (-1175) (-295 |#2|) (-1231 (-771))) 44) (((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-771))) 43) (((-52) |#2| (-1175) (-295 |#2|)) 36) (((-52) (-1 |#2| (-566)) (-295 |#2|)) 29)) (-1401 (((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566))) 88) (((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566))) 87) (((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566))) 86) (((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566))) 85) (((-52) |#2| (-1175) (-295 |#2|)) 80) (((-52) (-1 |#2| (-566)) (-295 |#2|)) 79)) (-2610 (((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566))) 74) (((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566))) 72)) (-2599 (((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566))) 51) (((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566))) 50)))
-(((-461 |#1| |#2|) (-10 -7 (-15 -2590 ((-52) (-1 |#2| (-566)) (-295 |#2|))) (-15 -2590 ((-52) |#2| (-1175) (-295 |#2|))) (-15 -2590 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-771)))) (-15 -2590 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-771)))) (-15 -2599 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566)))) (-15 -2599 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566)))) (-15 -2610 ((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -2610 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -1401 ((-52) (-1 |#2| (-566)) (-295 |#2|))) (-15 -1401 ((-52) |#2| (-1175) (-295 |#2|))) (-15 -1401 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566)))) (-15 -1401 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566)))) (-15 -1401 ((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -1401 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566))))) (-13 (-558) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -461))
-((-1401 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-409 (-566)))) (-5 *7 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *8))) (-4 *8 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *8 *3)))) (-1401 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-409 (-566)))) (-5 *4 (-295 *8)) (-5 *5 (-1231 (-409 (-566)))) (-5 *6 (-409 (-566))) (-4 *8 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *7 *8)))) (-1401 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *7 *3)))) (-1401 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-566))) (-4 *7 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *6 *7)))) (-1401 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *6 *3)))) (-1401 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-566))) (-5 *4 (-295 *6)) (-4 *6 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *5 *6)))) (-2610 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-409 (-566)))) (-5 *7 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *8))) (-4 *8 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *8 *3)))) (-2610 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-409 (-566)))) (-5 *4 (-295 *8)) (-5 *5 (-1231 (-409 (-566)))) (-5 *6 (-409 (-566))) (-4 *8 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *7 *8)))) (-2599 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *7 *3)))) (-2599 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-566))) (-4 *7 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *6 *7)))) (-2590 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-771))) (-4 *3 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *7 *3)))) (-2590 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-771))) (-4 *7 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *6 *7)))) (-2590 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *6 *3)))) (-2590 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-566))) (-5 *4 (-295 *6)) (-4 *6 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *5 *6)))))
-(-10 -7 (-15 -2590 ((-52) (-1 |#2| (-566)) (-295 |#2|))) (-15 -2590 ((-52) |#2| (-1175) (-295 |#2|))) (-15 -2590 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-771)))) (-15 -2590 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-771)))) (-15 -2599 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566)))) (-15 -2599 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566)))) (-15 -2610 ((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -2610 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -1401 ((-52) (-1 |#2| (-566)) (-295 |#2|))) (-15 -1401 ((-52) |#2| (-1175) (-295 |#2|))) (-15 -1401 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566)))) (-15 -1401 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566)))) (-15 -1401 ((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -1401 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))))
-((-3550 ((|#2| |#2| |#1|) 15)) (-4292 (((-644 |#2|) |#2| (-644 |#2|) |#1| (-921)) 82)) (-3507 (((-2 (|:| |plist| (-644 |#2|)) (|:| |modulo| |#1|)) |#2| (-644 |#2|) |#1| (-921)) 72)))
-(((-462 |#1| |#2|) (-10 -7 (-15 -3507 ((-2 (|:| |plist| (-644 |#2|)) (|:| |modulo| |#1|)) |#2| (-644 |#2|) |#1| (-921))) (-15 -4292 ((-644 |#2|) |#2| (-644 |#2|) |#1| (-921))) (-15 -3550 (|#2| |#2| |#1|))) (-308) (-1240 |#1|)) (T -462))
-((-3550 (*1 *2 *2 *3) (-12 (-4 *3 (-308)) (-5 *1 (-462 *3 *2)) (-4 *2 (-1240 *3)))) (-4292 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-644 *3)) (-5 *5 (-921)) (-4 *3 (-1240 *4)) (-4 *4 (-308)) (-5 *1 (-462 *4 *3)))) (-3507 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-921)) (-4 *5 (-308)) (-4 *3 (-1240 *5)) (-5 *2 (-2 (|:| |plist| (-644 *3)) (|:| |modulo| *5))) (-5 *1 (-462 *5 *3)) (-5 *4 (-644 *3)))))
-(-10 -7 (-15 -3507 ((-2 (|:| |plist| (-644 |#2|)) (|:| |modulo| |#1|)) |#2| (-644 |#2|) |#1| (-921))) (-15 -4292 ((-644 |#2|) |#2| (-644 |#2|) |#1| (-921))) (-15 -3550 (|#2| |#2| |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 28)) (-3639 (($ |#3|) 25)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3577 (($ $) 32)) (-1656 (($ |#2| |#4| $) 33)) (-2519 (($ |#2| (-713 |#3| |#4| |#5|)) 24)) (-3545 (((-713 |#3| |#4| |#5|) $) 15)) (-4274 ((|#3| $) 19)) (-2283 ((|#4| $) 17)) (-3557 ((|#2| $) 29)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-2341 (($ |#2| |#3| |#4|) 26)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 36 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 34)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-463 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-717 |#6|) (-717 |#2|) (-10 -8 (-15 -3557 (|#2| $)) (-15 -3545 ((-713 |#3| |#4| |#5|) $)) (-15 -2283 (|#4| $)) (-15 -4274 (|#3| $)) (-15 -3577 ($ $)) (-15 -2519 ($ |#2| (-713 |#3| |#4| |#5|))) (-15 -3639 ($ |#3|)) (-15 -2341 ($ |#2| |#3| |#4|)) (-15 -1656 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-644 (-1175)) (-172) (-850) (-238 (-2997 |#1|) (-771)) (-1 (-112) (-2 (|:| -2168 |#3|) (|:| -3250 |#4|)) (-2 (|:| -2168 |#3|) (|:| -3250 |#4|))) (-949 |#2| |#4| (-864 |#1|))) (T -463))
-((* (*1 *1 *2 *1) (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172)) (-4 *6 (-238 (-2997 *3) (-771))) (-14 *7 (-1 (-112) (-2 (|:| -2168 *5) (|:| -3250 *6)) (-2 (|:| -2168 *5) (|:| -3250 *6)))) (-5 *1 (-463 *3 *4 *5 *6 *7 *2)) (-4 *5 (-850)) (-4 *2 (-949 *4 *6 (-864 *3))))) (-3557 (*1 *2 *1) (-12 (-14 *3 (-644 (-1175))) (-4 *5 (-238 (-2997 *3) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2168 *4) (|:| -3250 *5)) (-2 (|:| -2168 *4) (|:| -3250 *5)))) (-4 *2 (-172)) (-5 *1 (-463 *3 *2 *4 *5 *6 *7)) (-4 *4 (-850)) (-4 *7 (-949 *2 *5 (-864 *3))))) (-3545 (*1 *2 *1) (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172)) (-4 *6 (-238 (-2997 *3) (-771))) (-14 *7 (-1 (-112) (-2 (|:| -2168 *5) (|:| -3250 *6)) (-2 (|:| -2168 *5) (|:| -3250 *6)))) (-5 *2 (-713 *5 *6 *7)) (-5 *1 (-463 *3 *4 *5 *6 *7 *8)) (-4 *5 (-850)) (-4 *8 (-949 *4 *6 (-864 *3))))) (-2283 (*1 *2 *1) (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172)) (-14 *6 (-1 (-112) (-2 (|:| -2168 *5) (|:| -3250 *2)) (-2 (|:| -2168 *5) (|:| -3250 *2)))) (-4 *2 (-238 (-2997 *3) (-771))) (-5 *1 (-463 *3 *4 *5 *2 *6 *7)) (-4 *5 (-850)) (-4 *7 (-949 *4 *2 (-864 *3))))) (-4274 (*1 *2 *1) (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172)) (-4 *5 (-238 (-2997 *3) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2168 *2) (|:| -3250 *5)) (-2 (|:| -2168 *2) (|:| -3250 *5)))) (-4 *2 (-850)) (-5 *1 (-463 *3 *4 *2 *5 *6 *7)) (-4 *7 (-949 *4 *5 (-864 *3))))) (-3577 (*1 *1 *1) (-12 (-14 *2 (-644 (-1175))) (-4 *3 (-172)) (-4 *5 (-238 (-2997 *2) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2168 *4) (|:| -3250 *5)) (-2 (|:| -2168 *4) (|:| -3250 *5)))) (-5 *1 (-463 *2 *3 *4 *5 *6 *7)) (-4 *4 (-850)) (-4 *7 (-949 *3 *5 (-864 *2))))) (-2519 (*1 *1 *2 *3) (-12 (-5 *3 (-713 *5 *6 *7)) (-4 *5 (-850)) (-4 *6 (-238 (-2997 *4) (-771))) (-14 *7 (-1 (-112) (-2 (|:| -2168 *5) (|:| -3250 *6)) (-2 (|:| -2168 *5) (|:| -3250 *6)))) (-14 *4 (-644 (-1175))) (-4 *2 (-172)) (-5 *1 (-463 *4 *2 *5 *6 *7 *8)) (-4 *8 (-949 *2 *6 (-864 *4))))) (-3639 (*1 *1 *2) (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172)) (-4 *5 (-238 (-2997 *3) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2168 *2) (|:| -3250 *5)) (-2 (|:| -2168 *2) (|:| -3250 *5)))) (-5 *1 (-463 *3 *4 *2 *5 *6 *7)) (-4 *2 (-850)) (-4 *7 (-949 *4 *5 (-864 *3))))) (-2341 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-644 (-1175))) (-4 *2 (-172)) (-4 *4 (-238 (-2997 *5) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2168 *3) (|:| -3250 *4)) (-2 (|:| -2168 *3) (|:| -3250 *4)))) (-5 *1 (-463 *5 *2 *3 *4 *6 *7)) (-4 *3 (-850)) (-4 *7 (-949 *2 *4 (-864 *5))))) (-1656 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-644 (-1175))) (-4 *2 (-172)) (-4 *3 (-238 (-2997 *4) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2168 *5) (|:| -3250 *3)) (-2 (|:| -2168 *5) (|:| -3250 *3)))) (-5 *1 (-463 *4 *2 *5 *3 *6 *7)) (-4 *5 (-850)) (-4 *7 (-949 *2 *3 (-864 *4))))))
-(-13 (-717 |#6|) (-717 |#2|) (-10 -8 (-15 -3557 (|#2| $)) (-15 -3545 ((-713 |#3| |#4| |#5|) $)) (-15 -2283 (|#4| $)) (-15 -4274 (|#3| $)) (-15 -3577 ($ $)) (-15 -2519 ($ |#2| (-713 |#3| |#4| |#5|))) (-15 -3639 ($ |#3|)) (-15 -2341 ($ |#2| |#3| |#4|)) (-15 -1656 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
-((-4202 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 39)))
-(((-464 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4202 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-793) (-850) (-558) (-949 |#3| |#1| |#2|) (-13 (-1038 (-409 (-566))) (-365) (-10 -8 (-15 -2512 ($ |#4|)) (-15 -3001 (|#4| $)) (-15 -3013 (|#4| $))))) (T -464))
-((-4202 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-850)) (-4 *5 (-793)) (-4 *6 (-558)) (-4 *7 (-949 *6 *5 *3)) (-5 *1 (-464 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-1038 (-409 (-566))) (-365) (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))))))
-(-10 -7 (-15 -4202 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
-((-2985 (((-112) $ $) NIL)) (-2540 (((-644 |#3|) $) 41)) (-2598 (((-112) $) NIL)) (-2740 (((-112) $) NIL (|has| |#1| (-558)))) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-4186 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-4179 (((-112) $) NIL (|has| |#1| (-558)))) (-4184 (((-112) $ $) NIL (|has| |#1| (-558)))) (-1576 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2398 (((-112) $) NIL (|has| |#1| (-558)))) (-2380 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) 49)) (-1756 (($ (-644 |#4|)) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-2651 (($ |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4417)))) (-3372 (((-644 |#4|) $) 18 (|has| $ (-6 -4417)))) (-1594 ((|#3| $) 47)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#4|) $) 14 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-1323 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) 21)) (-3097 (((-644 |#3|) $) NIL)) (-3492 (((-112) |#3| $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-4033 (((-1119) $) NIL)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-2822 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 39)) (-2954 (($) 17)) (-4044 (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) 16)) (-3134 (((-538) $) NIL (|has| |#4| (-614 (-538)))) (($ (-644 |#4|)) 51)) (-2523 (($ (-644 |#4|)) 13)) (-1945 (($ $ |#3|) NIL)) (-1398 (($ $ |#3|) NIL)) (-4287 (($ $ |#3|) NIL)) (-2512 (((-862) $) 38) (((-644 |#4|) $) 50)) (-3122 (((-112) $ $) NIL)) (-3427 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 30)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-465 |#1| |#2| |#3| |#4|) (-13 (-976 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3134 ($ (-644 |#4|))) (-6 -4417) (-6 -4418))) (-1049) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -465))
-((-3134 (*1 *1 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-465 *3 *4 *5 *6)))))
-(-13 (-976 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3134 ($ (-644 |#4|))) (-6 -4417) (-6 -4418)))
-((-2485 (($) 11)) (-2495 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
-(((-466 |#1| |#2| |#3|) (-10 -8 (-15 -2495 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2485 (|#1|))) (-467 |#2| |#3|) (-172) (-23)) (T -466))
-NIL
-(-10 -8 (-15 -2495 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2485 (|#1|)))
-((-2985 (((-112) $ $) 7)) (-2977 (((-3 |#1| "failed") $) 27)) (-1756 ((|#1| $) 28)) (-2754 (($ $ $) 24)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-3992 ((|#2| $) 20)) (-2512 (((-862) $) 12) (($ |#1|) 26)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 25 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 16) (($ $ $) 14)) (-3034 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4065 (((-3 $ "failed")) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2932 (((-1264 (-689 (-409 (-952 |#1|)))) (-1264 $)) NIL) (((-1264 (-689 (-409 (-952 |#1|))))) NIL)) (-4132 (((-1264 $)) NIL)) (-3877 (($) NIL T CONST)) (-3379 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) NIL)) (-1594 (((-3 $ "failed")) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-3735 (((-689 (-409 (-952 |#1|))) (-1264 $)) NIL) (((-689 (-409 (-952 |#1|)))) NIL)) (-3121 (((-409 (-952 |#1|)) $) NIL)) (-3150 (((-689 (-409 (-952 |#1|))) $ (-1264 $)) NIL) (((-689 (-409 (-952 |#1|))) $) NIL)) (-4029 (((-3 $ "failed") $) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-3280 (((-1171 (-952 (-409 (-952 |#1|))))) NIL (|has| (-409 (-952 |#1|)) (-365))) (((-1171 (-409 (-952 |#1|)))) 94 (|has| |#1| (-558)))) (-2400 (($ $ (-921)) NIL)) (-2811 (((-409 (-952 |#1|)) $) NIL)) (-2536 (((-1171 (-409 (-952 |#1|))) $) 92 (|has| (-409 (-952 |#1|)) (-558)))) (-1682 (((-409 (-952 |#1|)) (-1264 $)) NIL) (((-409 (-952 |#1|))) NIL)) (-4181 (((-1171 (-409 (-952 |#1|))) $) NIL)) (-2011 (((-112)) NIL)) (-2613 (($ (-1264 (-409 (-952 |#1|))) (-1264 $)) 118) (($ (-1264 (-409 (-952 |#1|)))) NIL)) (-2928 (((-3 $ "failed") $) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-4157 (((-921)) NIL)) (-1732 (((-112)) NIL)) (-2120 (($ $ (-921)) NIL)) (-1993 (((-112)) NIL)) (-3202 (((-112)) NIL)) (-1321 (((-112)) NIL)) (-3571 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) NIL)) (-4128 (((-3 $ "failed")) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-4105 (((-689 (-409 (-952 |#1|))) (-1264 $)) NIL) (((-689 (-409 (-952 |#1|)))) NIL)) (-1863 (((-409 (-952 |#1|)) $) NIL)) (-2377 (((-689 (-409 (-952 |#1|))) $ (-1264 $)) NIL) (((-689 (-409 (-952 |#1|))) $) NIL)) (-1787 (((-3 $ "failed") $) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-1332 (((-1171 (-952 (-409 (-952 |#1|))))) NIL (|has| (-409 (-952 |#1|)) (-365))) (((-1171 (-409 (-952 |#1|)))) 93 (|has| |#1| (-558)))) (-3231 (($ $ (-921)) NIL)) (-2630 (((-409 (-952 |#1|)) $) NIL)) (-2041 (((-1171 (-409 (-952 |#1|))) $) 87 (|has| (-409 (-952 |#1|)) (-558)))) (-1964 (((-409 (-952 |#1|)) (-1264 $)) NIL) (((-409 (-952 |#1|))) NIL)) (-2584 (((-1171 (-409 (-952 |#1|))) $) NIL)) (-3561 (((-112)) NIL)) (-2402 (((-1157) $) NIL)) (-3002 (((-112)) NIL)) (-4211 (((-112)) NIL)) (-2355 (((-112)) NIL)) (-4056 (((-1119) $) NIL)) (-2782 (((-409 (-952 |#1|)) $ $) 78 (|has| |#1| (-558)))) (-3307 (((-409 (-952 |#1|)) $) 104 (|has| |#1| (-558)))) (-1656 (((-409 (-952 |#1|)) $) 108 (|has| |#1| (-558)))) (-2701 (((-1171 (-409 (-952 |#1|))) $) 98 (|has| |#1| (-558)))) (-1487 (((-409 (-952 |#1|))) 79 (|has| |#1| (-558)))) (-1581 (((-409 (-952 |#1|)) $ $) 71 (|has| |#1| (-558)))) (-4199 (((-409 (-952 |#1|)) $) 103 (|has| |#1| (-558)))) (-2604 (((-409 (-952 |#1|)) $) 107 (|has| |#1| (-558)))) (-2480 (((-1171 (-409 (-952 |#1|))) $) 97 (|has| |#1| (-558)))) (-1778 (((-409 (-952 |#1|))) 75 (|has| |#1| (-558)))) (-3821 (($) 114) (($ (-1175)) 122) (($ (-1264 (-1175))) 121) (($ (-1264 $)) 109) (($ (-1175) (-1264 $)) 120) (($ (-1264 (-1175)) (-1264 $)) 119)) (-2283 (((-112)) NIL)) (-4393 (((-409 (-952 |#1|)) $ (-566)) NIL)) (-2543 (((-1264 (-409 (-952 |#1|))) $ (-1264 $)) 111) (((-689 (-409 (-952 |#1|))) (-1264 $) (-1264 $)) NIL) (((-1264 (-409 (-952 |#1|))) $) 45) (((-689 (-409 (-952 |#1|))) (-1264 $)) NIL)) (-3204 (((-1264 (-409 (-952 |#1|))) $) NIL) (($ (-1264 (-409 (-952 |#1|)))) 42)) (-2136 (((-644 (-952 (-409 (-952 |#1|)))) (-1264 $)) NIL) (((-644 (-952 (-409 (-952 |#1|))))) NIL) (((-644 (-952 |#1|)) (-1264 $)) 112 (|has| |#1| (-558))) (((-644 (-952 |#1|))) 113 (|has| |#1| (-558)))) (-1783 (($ $ $) NIL)) (-3431 (((-112)) NIL)) (-3780 (((-862) $) NIL) (($ (-1264 (-409 (-952 |#1|)))) NIL)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) 67)) (-2474 (((-644 (-1264 (-409 (-952 |#1|))))) NIL (|has| (-409 (-952 |#1|)) (-558)))) (-3428 (($ $ $ $) NIL)) (-2359 (((-112)) NIL)) (-4046 (($ (-689 (-409 (-952 |#1|))) $) NIL)) (-3035 (($ $ $) NIL)) (-2602 (((-112)) NIL)) (-2891 (((-112)) NIL)) (-4142 (((-112)) NIL)) (-2493 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) 110)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 63) (($ $ (-409 (-952 |#1|))) NIL) (($ (-409 (-952 |#1|)) $) NIL) (($ (-1141 |#2| (-409 (-952 |#1|))) $) NIL)))
+(((-455 |#1| |#2| |#3| |#4|) (-13 (-419 (-409 (-952 |#1|))) (-648 (-1141 |#2| (-409 (-952 |#1|)))) (-10 -8 (-15 -3780 ($ (-1264 (-409 (-952 |#1|))))) (-15 -3571 ((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed"))) (-15 -3379 ((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed"))) (-15 -3821 ($)) (-15 -3821 ($ (-1175))) (-15 -3821 ($ (-1264 (-1175)))) (-15 -3821 ($ (-1264 $))) (-15 -3821 ($ (-1175) (-1264 $))) (-15 -3821 ($ (-1264 (-1175)) (-1264 $))) (IF (|has| |#1| (-558)) (PROGN (-15 -1332 ((-1171 (-409 (-952 |#1|))))) (-15 -2480 ((-1171 (-409 (-952 |#1|))) $)) (-15 -4199 ((-409 (-952 |#1|)) $)) (-15 -2604 ((-409 (-952 |#1|)) $)) (-15 -3280 ((-1171 (-409 (-952 |#1|))))) (-15 -2701 ((-1171 (-409 (-952 |#1|))) $)) (-15 -3307 ((-409 (-952 |#1|)) $)) (-15 -1656 ((-409 (-952 |#1|)) $)) (-15 -1581 ((-409 (-952 |#1|)) $ $)) (-15 -1778 ((-409 (-952 |#1|)))) (-15 -2782 ((-409 (-952 |#1|)) $ $)) (-15 -1487 ((-409 (-952 |#1|)))) (-15 -2136 ((-644 (-952 |#1|)) (-1264 $))) (-15 -2136 ((-644 (-952 |#1|))))) |%noBranch|))) (-172) (-921) (-644 (-1175)) (-1264 (-689 |#1|))) (T -455))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1264 (-409 (-952 *3)))) (-4 *3 (-172)) (-14 *6 (-1264 (-689 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))))) (-3571 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-455 *3 *4 *5 *6)) (|:| -1575 (-644 (-455 *3 *4 *5 *6))))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3379 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-455 *3 *4 *5 *6)) (|:| -1575 (-644 (-455 *3 *4 *5 *6))))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3821 (*1 *1) (-12 (-5 *1 (-455 *2 *3 *4 *5)) (-4 *2 (-172)) (-14 *3 (-921)) (-14 *4 (-644 (-1175))) (-14 *5 (-1264 (-689 *2))))) (-3821 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 *2)) (-14 *6 (-1264 (-689 *3))))) (-3821 (*1 *1 *2) (-12 (-5 *2 (-1264 (-1175))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3821 (*1 *1 *2) (-12 (-5 *2 (-1264 (-455 *3 *4 *5 *6))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3821 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-455 *4 *5 *6 *7))) (-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-921)) (-14 *6 (-644 *2)) (-14 *7 (-1264 (-689 *4))))) (-3821 (*1 *1 *2 *3) (-12 (-5 *2 (-1264 (-1175))) (-5 *3 (-1264 (-455 *4 *5 *6 *7))) (-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-921)) (-14 *6 (-644 (-1175))) (-14 *7 (-1264 (-689 *4))))) (-1332 (*1 *2) (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-2480 (*1 *2 *1) (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-4199 (*1 *2 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-2604 (*1 *2 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3280 (*1 *2) (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-2701 (*1 *2 *1) (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-3307 (*1 *2 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-1656 (*1 *2 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-1581 (*1 *2 *1 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-1778 (*1 *2) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-2782 (*1 *2 *1 *1) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-1487 (*1 *2) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))) (-2136 (*1 *2 *3) (-12 (-5 *3 (-1264 (-455 *4 *5 *6 *7))) (-5 *2 (-644 (-952 *4))) (-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-558)) (-4 *4 (-172)) (-14 *5 (-921)) (-14 *6 (-644 (-1175))) (-14 *7 (-1264 (-689 *4))))) (-2136 (*1 *2) (-12 (-5 *2 (-644 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(-13 (-419 (-409 (-952 |#1|))) (-648 (-1141 |#2| (-409 (-952 |#1|)))) (-10 -8 (-15 -3780 ($ (-1264 (-409 (-952 |#1|))))) (-15 -3571 ((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed"))) (-15 -3379 ((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed"))) (-15 -3821 ($)) (-15 -3821 ($ (-1175))) (-15 -3821 ($ (-1264 (-1175)))) (-15 -3821 ($ (-1264 $))) (-15 -3821 ($ (-1175) (-1264 $))) (-15 -3821 ($ (-1264 (-1175)) (-1264 $))) (IF (|has| |#1| (-558)) (PROGN (-15 -1332 ((-1171 (-409 (-952 |#1|))))) (-15 -2480 ((-1171 (-409 (-952 |#1|))) $)) (-15 -4199 ((-409 (-952 |#1|)) $)) (-15 -2604 ((-409 (-952 |#1|)) $)) (-15 -3280 ((-1171 (-409 (-952 |#1|))))) (-15 -2701 ((-1171 (-409 (-952 |#1|))) $)) (-15 -3307 ((-409 (-952 |#1|)) $)) (-15 -1656 ((-409 (-952 |#1|)) $)) (-15 -1581 ((-409 (-952 |#1|)) $ $)) (-15 -1778 ((-409 (-952 |#1|)))) (-15 -2782 ((-409 (-952 |#1|)) $ $)) (-15 -1487 ((-409 (-952 |#1|)))) (-15 -2136 ((-644 (-952 |#1|)) (-1264 $))) (-15 -2136 ((-644 (-952 |#1|))))) |%noBranch|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 18)) (-2608 (((-644 (-864 |#1|)) $) 92)) (-2438 (((-1171 $) $ (-864 |#1|)) 55) (((-1171 |#2|) $) 143)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#2| (-558)))) (-1968 (($ $) NIL (|has| |#2| (-558)))) (-2644 (((-112) $) NIL (|has| |#2| (-558)))) (-2207 (((-771) $) 27) (((-771) $ (-644 (-864 |#1|))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2179 (($ $) NIL (|has| |#2| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#2| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) 53) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-864 |#1|) "failed") $) NIL)) (-1867 ((|#2| $) 51) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-864 |#1|) $) NIL)) (-2662 (($ $ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-3269 (($ $ (-644 (-566))) 98)) (-3645 (($ $) 85)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#2| (-909)))) (-2871 (($ $ |#2| |#3| $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) 68)) (-2597 (($ (-1171 |#2|) (-864 |#1|)) 148) (($ (-1171 $) (-864 |#1|)) 61)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) 71)) (-2585 (($ |#2| |#3|) 38) (($ $ (-864 |#1|) (-771)) 40) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-864 |#1|)) NIL)) (-2466 ((|#3| $) NIL) (((-771) $ (-864 |#1|)) 59) (((-644 (-771)) $ (-644 (-864 |#1|))) 66)) (-2443 (($ (-1 |#3| |#3|) $) NIL)) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-1984 (((-3 (-864 |#1|) "failed") $) 48)) (-3614 (($ $) NIL)) (-3626 ((|#2| $) 50)) (-2197 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-2402 (((-1157) $) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-864 |#1|)) (|:| -2456 (-771))) "failed") $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) 49)) (-3604 ((|#2| $) 141)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) 154 (|has| |#2| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#2| (-909)))) (-2997 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-558)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-864 |#1|) |#2|) 105) (($ $ (-644 (-864 |#1|)) (-644 |#2|)) 111) (($ $ (-864 |#1|) $) 103) (($ $ (-644 (-864 |#1|)) (-644 $)) 129)) (-3309 (($ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-2578 (($ $ (-864 |#1|)) 62) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2108 ((|#3| $) 84) (((-771) $ (-864 |#1|)) 45) (((-644 (-771)) $ (-644 (-864 |#1|))) 65)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-864 |#1|) (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3042 ((|#2| $) 150 (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-3780 (((-862) $) 179) (($ (-566)) NIL) (($ |#2|) 104) (($ (-864 |#1|)) 42) (($ (-409 (-566))) NIL (-2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#2| (-558)))) (-3456 (((-644 |#2|) $) NIL)) (-3756 ((|#2| $ |#3|) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#2| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#2| (-558)))) (-2493 (($) 22 T CONST)) (-4333 (($) 31 T CONST)) (-2876 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#2|) 81 (|has| |#2| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 136)) (** (($ $ (-921)) NIL) (($ $ (-771)) 134)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 39) (($ $ (-409 (-566))) NIL (|has| |#2| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#2| (-38 (-409 (-566))))) (($ |#2| $) 80) (($ $ |#2|) NIL)))
+(((-456 |#1| |#2| |#3|) (-13 (-949 |#2| |#3| (-864 |#1|)) (-10 -8 (-15 -3269 ($ $ (-644 (-566)))))) (-644 (-1175)) (-1049) (-238 (-3020 |#1|) (-771))) (T -456))
+((-3269 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-14 *3 (-644 (-1175))) (-5 *1 (-456 *3 *4 *5)) (-4 *4 (-1049)) (-4 *5 (-238 (-3020 *3) (-771))))))
+(-13 (-949 |#2| |#3| (-864 |#1|)) (-10 -8 (-15 -3269 ($ $ (-644 (-566))))))
+((-1619 (((-112) |#1| (-644 |#2|)) 94)) (-2481 (((-3 (-1264 (-644 |#2|)) "failed") (-771) |#1| (-644 |#2|)) 103)) (-3493 (((-3 (-644 |#2|) "failed") |#2| |#1| (-1264 (-644 |#2|))) 105)) (-3418 ((|#2| |#2| |#1|) 35)) (-3413 (((-771) |#2| (-644 |#2|)) 26)))
+(((-457 |#1| |#2|) (-10 -7 (-15 -3418 (|#2| |#2| |#1|)) (-15 -3413 ((-771) |#2| (-644 |#2|))) (-15 -2481 ((-3 (-1264 (-644 |#2|)) "failed") (-771) |#1| (-644 |#2|))) (-15 -3493 ((-3 (-644 |#2|) "failed") |#2| |#1| (-1264 (-644 |#2|)))) (-15 -1619 ((-112) |#1| (-644 |#2|)))) (-308) (-1240 |#1|)) (T -457))
+((-1619 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *5)) (-4 *5 (-1240 *3)) (-4 *3 (-308)) (-5 *2 (-112)) (-5 *1 (-457 *3 *5)))) (-3493 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1264 (-644 *3))) (-4 *4 (-308)) (-5 *2 (-644 *3)) (-5 *1 (-457 *4 *3)) (-4 *3 (-1240 *4)))) (-2481 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-771)) (-4 *4 (-308)) (-4 *6 (-1240 *4)) (-5 *2 (-1264 (-644 *6))) (-5 *1 (-457 *4 *6)) (-5 *5 (-644 *6)))) (-3413 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-308)) (-5 *2 (-771)) (-5 *1 (-457 *5 *3)))) (-3418 (*1 *2 *2 *3) (-12 (-4 *3 (-308)) (-5 *1 (-457 *3 *2)) (-4 *2 (-1240 *3)))))
+(-10 -7 (-15 -3418 (|#2| |#2| |#1|)) (-15 -3413 ((-771) |#2| (-644 |#2|))) (-15 -2481 ((-3 (-1264 (-644 |#2|)) "failed") (-771) |#1| (-644 |#2|))) (-15 -3493 ((-3 (-644 |#2|) "failed") |#2| |#1| (-1264 (-644 |#2|)))) (-15 -1619 ((-112) |#1| (-644 |#2|))))
+((-2473 (((-420 |#5|) |#5|) 24)))
+(((-458 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2473 ((-420 |#5|) |#5|))) (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)) (-15 -1401 ((-3 $ "failed") (-1175))))) (-793) (-558) (-558) (-949 |#4| |#2| |#1|)) (T -458))
+((-2473 (*1 *2 *3) (-12 (-4 *4 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)) (-15 -1401 ((-3 $ "failed") (-1175)))))) (-4 *5 (-793)) (-4 *7 (-558)) (-5 *2 (-420 *3)) (-5 *1 (-458 *4 *5 *6 *7 *3)) (-4 *6 (-558)) (-4 *3 (-949 *7 *5 *4)))))
+(-10 -7 (-15 -2473 ((-420 |#5|) |#5|)))
+((-2723 ((|#3|) 40)) (-2221 (((-1171 |#4|) (-1171 |#4|) (-1171 |#4|)) 36)))
+(((-459 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2221 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -2723 (|#3|))) (-793) (-850) (-909) (-949 |#3| |#1| |#2|)) (T -459))
+((-2723 (*1 *2) (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-909)) (-5 *1 (-459 *3 *4 *2 *5)) (-4 *5 (-949 *2 *3 *4)))) (-2221 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-909)) (-5 *1 (-459 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2221 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -2723 (|#3|)))
+((-2473 (((-420 (-1171 |#1|)) (-1171 |#1|)) 43)))
+(((-460 |#1|) (-10 -7 (-15 -2473 ((-420 (-1171 |#1|)) (-1171 |#1|)))) (-308)) (T -460))
+((-2473 (*1 *2 *3) (-12 (-4 *4 (-308)) (-5 *2 (-420 (-1171 *4))) (-5 *1 (-460 *4)) (-5 *3 (-1171 *4)))))
+(-10 -7 (-15 -2473 ((-420 (-1171 |#1|)) (-1171 |#1|))))
+((-3543 (((-52) |#2| (-1175) (-295 |#2|) (-1231 (-771))) 44) (((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-771))) 43) (((-52) |#2| (-1175) (-295 |#2|)) 36) (((-52) (-1 |#2| (-566)) (-295 |#2|)) 29)) (-1903 (((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566))) 88) (((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566))) 87) (((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566))) 86) (((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566))) 85) (((-52) |#2| (-1175) (-295 |#2|)) 80) (((-52) (-1 |#2| (-566)) (-295 |#2|)) 79)) (-3562 (((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566))) 74) (((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566))) 72)) (-3553 (((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566))) 51) (((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566))) 50)))
+(((-461 |#1| |#2|) (-10 -7 (-15 -3543 ((-52) (-1 |#2| (-566)) (-295 |#2|))) (-15 -3543 ((-52) |#2| (-1175) (-295 |#2|))) (-15 -3543 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-771)))) (-15 -3543 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-771)))) (-15 -3553 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566)))) (-15 -3553 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566)))) (-15 -3562 ((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -3562 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -1903 ((-52) (-1 |#2| (-566)) (-295 |#2|))) (-15 -1903 ((-52) |#2| (-1175) (-295 |#2|))) (-15 -1903 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566)))) (-15 -1903 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566)))) (-15 -1903 ((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -1903 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566))))) (-13 (-558) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -461))
+((-1903 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-409 (-566)))) (-5 *7 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *8))) (-4 *8 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *8 *3)))) (-1903 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-409 (-566)))) (-5 *4 (-295 *8)) (-5 *5 (-1231 (-409 (-566)))) (-5 *6 (-409 (-566))) (-4 *8 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *7 *8)))) (-1903 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *7 *3)))) (-1903 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-566))) (-4 *7 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *6 *7)))) (-1903 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *6 *3)))) (-1903 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-566))) (-5 *4 (-295 *6)) (-4 *6 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *5 *6)))) (-3562 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-409 (-566)))) (-5 *7 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *8))) (-4 *8 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *8 *3)))) (-3562 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-1 *8 (-409 (-566)))) (-5 *4 (-295 *8)) (-5 *5 (-1231 (-409 (-566)))) (-5 *6 (-409 (-566))) (-4 *8 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *7 *8)))) (-3553 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *7 *3)))) (-3553 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-566))) (-4 *7 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *6 *7)))) (-3543 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-771))) (-4 *3 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *7 *3)))) (-3543 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-771))) (-4 *7 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *6 *7)))) (-3543 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *6 *3)))) (-3543 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 (-566))) (-5 *4 (-295 *6)) (-4 *6 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52)) (-5 *1 (-461 *5 *6)))))
+(-10 -7 (-15 -3543 ((-52) (-1 |#2| (-566)) (-295 |#2|))) (-15 -3543 ((-52) |#2| (-1175) (-295 |#2|))) (-15 -3543 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-771)))) (-15 -3543 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-771)))) (-15 -3553 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566)))) (-15 -3553 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566)))) (-15 -3562 ((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -3562 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -1903 ((-52) (-1 |#2| (-566)) (-295 |#2|))) (-15 -1903 ((-52) |#2| (-1175) (-295 |#2|))) (-15 -1903 ((-52) (-1 |#2| (-566)) (-295 |#2|) (-1231 (-566)))) (-15 -1903 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-566)))) (-15 -1903 ((-52) (-1 |#2| (-409 (-566))) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))) (-15 -1903 ((-52) |#2| (-1175) (-295 |#2|) (-1231 (-409 (-566))) (-409 (-566)))))
+((-3418 ((|#2| |#2| |#1|) 15)) (-1960 (((-644 |#2|) |#2| (-644 |#2|) |#1| (-921)) 82)) (-4247 (((-2 (|:| |plist| (-644 |#2|)) (|:| |modulo| |#1|)) |#2| (-644 |#2|) |#1| (-921)) 72)))
+(((-462 |#1| |#2|) (-10 -7 (-15 -4247 ((-2 (|:| |plist| (-644 |#2|)) (|:| |modulo| |#1|)) |#2| (-644 |#2|) |#1| (-921))) (-15 -1960 ((-644 |#2|) |#2| (-644 |#2|) |#1| (-921))) (-15 -3418 (|#2| |#2| |#1|))) (-308) (-1240 |#1|)) (T -462))
+((-3418 (*1 *2 *2 *3) (-12 (-4 *3 (-308)) (-5 *1 (-462 *3 *2)) (-4 *2 (-1240 *3)))) (-1960 (*1 *2 *3 *2 *4 *5) (-12 (-5 *2 (-644 *3)) (-5 *5 (-921)) (-4 *3 (-1240 *4)) (-4 *4 (-308)) (-5 *1 (-462 *4 *3)))) (-4247 (*1 *2 *3 *4 *5 *6) (-12 (-5 *6 (-921)) (-4 *5 (-308)) (-4 *3 (-1240 *5)) (-5 *2 (-2 (|:| |plist| (-644 *3)) (|:| |modulo| *5))) (-5 *1 (-462 *5 *3)) (-5 *4 (-644 *3)))))
+(-10 -7 (-15 -4247 ((-2 (|:| |plist| (-644 |#2|)) (|:| |modulo| |#1|)) |#2| (-644 |#2|) |#1| (-921))) (-15 -1960 ((-644 |#2|) |#2| (-644 |#2|) |#1| (-921))) (-15 -3418 (|#2| |#2| |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 28)) (-3047 (($ |#3|) 25)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3645 (($ $) 32)) (-4322 (($ |#2| |#4| $) 33)) (-2585 (($ |#2| (-713 |#3| |#4| |#5|)) 24)) (-3614 (((-713 |#3| |#4| |#5|) $) 15)) (-2996 ((|#3| $) 19)) (-1394 ((|#4| $) 17)) (-3626 ((|#2| $) 29)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3865 (($ |#2| |#3| |#4|) 26)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 36 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 34)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#6| $) 40) (($ $ |#6|) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-463 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-717 |#6|) (-717 |#2|) (-10 -8 (-15 -3626 (|#2| $)) (-15 -3614 ((-713 |#3| |#4| |#5|) $)) (-15 -1394 (|#4| $)) (-15 -2996 (|#3| $)) (-15 -3645 ($ $)) (-15 -2585 ($ |#2| (-713 |#3| |#4| |#5|))) (-15 -3047 ($ |#3|)) (-15 -3865 ($ |#2| |#3| |#4|)) (-15 -4322 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-644 (-1175)) (-172) (-850) (-238 (-3020 |#1|) (-771)) (-1 (-112) (-2 (|:| -2208 |#3|) (|:| -2456 |#4|)) (-2 (|:| -2208 |#3|) (|:| -2456 |#4|))) (-949 |#2| |#4| (-864 |#1|))) (T -463))
+((* (*1 *1 *2 *1) (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172)) (-4 *6 (-238 (-3020 *3) (-771))) (-14 *7 (-1 (-112) (-2 (|:| -2208 *5) (|:| -2456 *6)) (-2 (|:| -2208 *5) (|:| -2456 *6)))) (-5 *1 (-463 *3 *4 *5 *6 *7 *2)) (-4 *5 (-850)) (-4 *2 (-949 *4 *6 (-864 *3))))) (-3626 (*1 *2 *1) (-12 (-14 *3 (-644 (-1175))) (-4 *5 (-238 (-3020 *3) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2208 *4) (|:| -2456 *5)) (-2 (|:| -2208 *4) (|:| -2456 *5)))) (-4 *2 (-172)) (-5 *1 (-463 *3 *2 *4 *5 *6 *7)) (-4 *4 (-850)) (-4 *7 (-949 *2 *5 (-864 *3))))) (-3614 (*1 *2 *1) (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172)) (-4 *6 (-238 (-3020 *3) (-771))) (-14 *7 (-1 (-112) (-2 (|:| -2208 *5) (|:| -2456 *6)) (-2 (|:| -2208 *5) (|:| -2456 *6)))) (-5 *2 (-713 *5 *6 *7)) (-5 *1 (-463 *3 *4 *5 *6 *7 *8)) (-4 *5 (-850)) (-4 *8 (-949 *4 *6 (-864 *3))))) (-1394 (*1 *2 *1) (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172)) (-14 *6 (-1 (-112) (-2 (|:| -2208 *5) (|:| -2456 *2)) (-2 (|:| -2208 *5) (|:| -2456 *2)))) (-4 *2 (-238 (-3020 *3) (-771))) (-5 *1 (-463 *3 *4 *5 *2 *6 *7)) (-4 *5 (-850)) (-4 *7 (-949 *4 *2 (-864 *3))))) (-2996 (*1 *2 *1) (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172)) (-4 *5 (-238 (-3020 *3) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2208 *2) (|:| -2456 *5)) (-2 (|:| -2208 *2) (|:| -2456 *5)))) (-4 *2 (-850)) (-5 *1 (-463 *3 *4 *2 *5 *6 *7)) (-4 *7 (-949 *4 *5 (-864 *3))))) (-3645 (*1 *1 *1) (-12 (-14 *2 (-644 (-1175))) (-4 *3 (-172)) (-4 *5 (-238 (-3020 *2) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2208 *4) (|:| -2456 *5)) (-2 (|:| -2208 *4) (|:| -2456 *5)))) (-5 *1 (-463 *2 *3 *4 *5 *6 *7)) (-4 *4 (-850)) (-4 *7 (-949 *3 *5 (-864 *2))))) (-2585 (*1 *1 *2 *3) (-12 (-5 *3 (-713 *5 *6 *7)) (-4 *5 (-850)) (-4 *6 (-238 (-3020 *4) (-771))) (-14 *7 (-1 (-112) (-2 (|:| -2208 *5) (|:| -2456 *6)) (-2 (|:| -2208 *5) (|:| -2456 *6)))) (-14 *4 (-644 (-1175))) (-4 *2 (-172)) (-5 *1 (-463 *4 *2 *5 *6 *7 *8)) (-4 *8 (-949 *2 *6 (-864 *4))))) (-3047 (*1 *1 *2) (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172)) (-4 *5 (-238 (-3020 *3) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2208 *2) (|:| -2456 *5)) (-2 (|:| -2208 *2) (|:| -2456 *5)))) (-5 *1 (-463 *3 *4 *2 *5 *6 *7)) (-4 *2 (-850)) (-4 *7 (-949 *4 *5 (-864 *3))))) (-3865 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-644 (-1175))) (-4 *2 (-172)) (-4 *4 (-238 (-3020 *5) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2208 *3) (|:| -2456 *4)) (-2 (|:| -2208 *3) (|:| -2456 *4)))) (-5 *1 (-463 *5 *2 *3 *4 *6 *7)) (-4 *3 (-850)) (-4 *7 (-949 *2 *4 (-864 *5))))) (-4322 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-644 (-1175))) (-4 *2 (-172)) (-4 *3 (-238 (-3020 *4) (-771))) (-14 *6 (-1 (-112) (-2 (|:| -2208 *5) (|:| -2456 *3)) (-2 (|:| -2208 *5) (|:| -2456 *3)))) (-5 *1 (-463 *4 *2 *5 *3 *6 *7)) (-4 *5 (-850)) (-4 *7 (-949 *2 *3 (-864 *4))))))
+(-13 (-717 |#6|) (-717 |#2|) (-10 -8 (-15 -3626 (|#2| $)) (-15 -3614 ((-713 |#3| |#4| |#5|) $)) (-15 -1394 (|#4| $)) (-15 -2996 (|#3| $)) (-15 -3645 ($ $)) (-15 -2585 ($ |#2| (-713 |#3| |#4| |#5|))) (-15 -3047 ($ |#3|)) (-15 -3865 ($ |#2| |#3| |#4|)) (-15 -4322 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
+((-3536 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 39)))
+(((-464 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3536 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-793) (-850) (-558) (-949 |#3| |#1| |#2|) (-13 (-1038 (-409 (-566))) (-365) (-10 -8 (-15 -3780 ($ |#4|)) (-15 -3088 (|#4| $)) (-15 -3100 (|#4| $))))) (T -464))
+((-3536 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-850)) (-4 *5 (-793)) (-4 *6 (-558)) (-4 *7 (-949 *6 *5 *3)) (-5 *1 (-464 *5 *3 *6 *7 *2)) (-4 *2 (-13 (-1038 (-409 (-566))) (-365) (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))))))
+(-10 -7 (-15 -3536 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
+((-3009 (((-112) $ $) NIL)) (-2608 (((-644 |#3|) $) 41)) (-1390 (((-112) $) NIL)) (-3455 (((-112) $) NIL (|has| |#1| (-558)))) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-1386 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3310 (((-112) $) NIL (|has| |#1| (-558)))) (-3367 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2895 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3219 (((-112) $) NIL (|has| |#1| (-558)))) (-4239 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) 49)) (-1867 (($ (-644 |#4|)) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-2661 (($ |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4414)))) (-3799 (((-644 |#4|) $) 18 (|has| $ (-6 -4414)))) (-1887 ((|#3| $) 47)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#4|) $) 14 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-3117 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) 21)) (-1711 (((-644 |#3|) $) NIL)) (-4113 (((-112) |#3| $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-4056 (((-1119) $) NIL)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3044 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 39)) (-1793 (($) 17)) (-4067 (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) 16)) (-3204 (((-538) $) NIL (|has| |#4| (-614 (-538)))) (($ (-644 |#4|)) 51)) (-3791 (($ (-644 |#4|)) 13)) (-2363 (($ $ |#3|) NIL)) (-3513 (($ $ |#3|) NIL)) (-3130 (($ $ |#3|) NIL)) (-3780 (((-862) $) 38) (((-644 |#4|) $) 50)) (-3801 (((-112) $ $) NIL)) (-1583 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 30)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-465 |#1| |#2| |#3| |#4|) (-13 (-976 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3204 ($ (-644 |#4|))) (-6 -4414) (-6 -4415))) (-1049) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -465))
+((-3204 (*1 *1 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-465 *3 *4 *5 *6)))))
+(-13 (-976 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3204 ($ (-644 |#4|))) (-6 -4414) (-6 -4415)))
+((-2493 (($) 11)) (-4333 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
+(((-466 |#1| |#2| |#3|) (-10 -8 (-15 -4333 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2493 (|#1|))) (-467 |#2| |#3|) (-172) (-23)) (T -466))
+NIL
+(-10 -8 (-15 -4333 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -2493 (|#1|)))
+((-3009 (((-112) $ $) 7)) (-3066 (((-3 |#1| "failed") $) 27)) (-1867 ((|#1| $) 28)) (-3594 (($ $ $) 24)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2108 ((|#2| $) 20)) (-3780 (((-862) $) 12) (($ |#1|) 26)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 25 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 16) (($ $ $) 14)) (-3040 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
(((-467 |#1| |#2|) (-140) (-172) (-23)) (T -467))
-((-2495 (*1 *1) (-12 (-4 *1 (-467 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-2754 (*1 *1 *1 *1) (-12 (-4 *1 (-467 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))))
-(-13 (-472 |t#1| |t#2|) (-1038 |t#1|) (-10 -8 (-15 (-2495) ($) -1655) (-15 -2754 ($ $ $))))
+((-4333 (*1 *1) (-12 (-4 *1 (-467 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-3594 (*1 *1 *1 *1) (-12 (-4 *1 (-467 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))))
+(-13 (-472 |t#1| |t#2|) (-1038 |t#1|) (-10 -8 (-15 (-4333) ($) -2460) (-15 -3594 ($ $ $))))
(((-102) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-472 |#1| |#2|) . T) ((-1038 |#1|) . T) ((-1099) . T))
-((-2842 (((-1264 (-1264 (-566))) (-1264 (-1264 (-566))) (-921)) 29)) (-2906 (((-1264 (-1264 (-566))) (-921)) 24)))
-(((-468) (-10 -7 (-15 -2842 ((-1264 (-1264 (-566))) (-1264 (-1264 (-566))) (-921))) (-15 -2906 ((-1264 (-1264 (-566))) (-921))))) (T -468))
-((-2906 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1264 (-1264 (-566)))) (-5 *1 (-468)))) (-2842 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 (-1264 (-566)))) (-5 *3 (-921)) (-5 *1 (-468)))))
-(-10 -7 (-15 -2842 ((-1264 (-1264 (-566))) (-1264 (-1264 (-566))) (-921))) (-15 -2906 ((-1264 (-1264 (-566))) (-921))))
-((-3887 (((-566) (-566)) 32) (((-566)) 24)) (-1700 (((-566) (-566)) 28) (((-566)) 20)) (-1750 (((-566) (-566)) 30) (((-566)) 22)) (-1691 (((-112) (-112)) 14) (((-112)) 12)) (-1753 (((-112) (-112)) 13) (((-112)) 11)) (-1820 (((-112) (-112)) 26) (((-112)) 17)))
-(((-469) (-10 -7 (-15 -1753 ((-112))) (-15 -1691 ((-112))) (-15 -1753 ((-112) (-112))) (-15 -1691 ((-112) (-112))) (-15 -1820 ((-112))) (-15 -1750 ((-566))) (-15 -1700 ((-566))) (-15 -3887 ((-566))) (-15 -1820 ((-112) (-112))) (-15 -1750 ((-566) (-566))) (-15 -1700 ((-566) (-566))) (-15 -3887 ((-566) (-566))))) (T -469))
-((-3887 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-1700 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-1750 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-1820 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))) (-3887 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-1700 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-1750 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-1820 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))) (-1691 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))) (-1753 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))) (-1691 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))) (-1753 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))))
-(-10 -7 (-15 -1753 ((-112))) (-15 -1691 ((-112))) (-15 -1753 ((-112) (-112))) (-15 -1691 ((-112) (-112))) (-15 -1820 ((-112))) (-15 -1750 ((-566))) (-15 -1700 ((-566))) (-15 -3887 ((-566))) (-15 -1820 ((-112) (-112))) (-15 -1750 ((-566) (-566))) (-15 -1700 ((-566) (-566))) (-15 -3887 ((-566) (-566))))
-((-2985 (((-112) $ $) NIL)) (-3174 (((-644 (-381)) $) 34) (((-644 (-381)) $ (-644 (-381))) 146)) (-1701 (((-644 (-1093 (-381))) $) 16) (((-644 (-1093 (-381))) $ (-644 (-1093 (-381)))) 142)) (-2466 (((-644 (-644 (-943 (-225)))) (-644 (-644 (-943 (-225)))) (-644 (-874))) 58)) (-2049 (((-644 (-644 (-943 (-225)))) $) 137)) (-1372 (((-1269) $ (-943 (-225)) (-874)) 163)) (-2800 (($ $) 136) (($ (-644 (-644 (-943 (-225))))) 149) (($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921))) 148) (($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921)) (-644 (-264))) 150)) (-2878 (((-1157) $) NIL)) (-2010 (((-566) $) 110)) (-4033 (((-1119) $) NIL)) (-2562 (($) 147)) (-4262 (((-644 (-225)) (-644 (-644 (-943 (-225))))) 89)) (-3661 (((-1269) $ (-644 (-943 (-225))) (-874) (-874) (-921)) 155) (((-1269) $ (-943 (-225))) 157) (((-1269) $ (-943 (-225)) (-874) (-874) (-921)) 156)) (-2512 (((-862) $) 169) (($ (-644 (-644 (-943 (-225))))) 164)) (-3122 (((-112) $ $) NIL)) (-3802 (((-1269) $ (-943 (-225))) 162)) (-2940 (((-112) $ $) NIL)))
-(((-470) (-13 (-1099) (-10 -8 (-15 -2562 ($)) (-15 -2800 ($ $)) (-15 -2800 ($ (-644 (-644 (-943 (-225)))))) (-15 -2800 ($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921)))) (-15 -2800 ($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921)) (-644 (-264)))) (-15 -2049 ((-644 (-644 (-943 (-225)))) $)) (-15 -2010 ((-566) $)) (-15 -1701 ((-644 (-1093 (-381))) $)) (-15 -1701 ((-644 (-1093 (-381))) $ (-644 (-1093 (-381))))) (-15 -3174 ((-644 (-381)) $)) (-15 -3174 ((-644 (-381)) $ (-644 (-381)))) (-15 -3661 ((-1269) $ (-644 (-943 (-225))) (-874) (-874) (-921))) (-15 -3661 ((-1269) $ (-943 (-225)))) (-15 -3661 ((-1269) $ (-943 (-225)) (-874) (-874) (-921))) (-15 -3802 ((-1269) $ (-943 (-225)))) (-15 -1372 ((-1269) $ (-943 (-225)) (-874))) (-15 -2512 ($ (-644 (-644 (-943 (-225)))))) (-15 -2512 ((-862) $)) (-15 -2466 ((-644 (-644 (-943 (-225)))) (-644 (-644 (-943 (-225)))) (-644 (-874)))) (-15 -4262 ((-644 (-225)) (-644 (-644 (-943 (-225))))))))) (T -470))
-((-2512 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-470)))) (-2562 (*1 *1) (-5 *1 (-470))) (-2800 (*1 *1 *1) (-5 *1 (-470))) (-2800 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470)))) (-2800 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *3 (-644 (-874))) (-5 *4 (-644 (-921))) (-5 *1 (-470)))) (-2800 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *3 (-644 (-874))) (-5 *4 (-644 (-921))) (-5 *5 (-644 (-264))) (-5 *1 (-470)))) (-2049 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470)))) (-2010 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-470)))) (-1701 (*1 *2 *1) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-470)))) (-1701 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-470)))) (-3174 (*1 *2 *1) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-470)))) (-3174 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-470)))) (-3661 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-644 (-943 (-225)))) (-5 *4 (-874)) (-5 *5 (-921)) (-5 *2 (-1269)) (-5 *1 (-470)))) (-3661 (*1 *2 *1 *3) (-12 (-5 *3 (-943 (-225))) (-5 *2 (-1269)) (-5 *1 (-470)))) (-3661 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-943 (-225))) (-5 *4 (-874)) (-5 *5 (-921)) (-5 *2 (-1269)) (-5 *1 (-470)))) (-3802 (*1 *2 *1 *3) (-12 (-5 *3 (-943 (-225))) (-5 *2 (-1269)) (-5 *1 (-470)))) (-1372 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-943 (-225))) (-5 *4 (-874)) (-5 *2 (-1269)) (-5 *1 (-470)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470)))) (-2466 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *3 (-644 (-874))) (-5 *1 (-470)))) (-4262 (*1 *2 *3) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *2 (-644 (-225))) (-5 *1 (-470)))))
-(-13 (-1099) (-10 -8 (-15 -2562 ($)) (-15 -2800 ($ $)) (-15 -2800 ($ (-644 (-644 (-943 (-225)))))) (-15 -2800 ($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921)))) (-15 -2800 ($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921)) (-644 (-264)))) (-15 -2049 ((-644 (-644 (-943 (-225)))) $)) (-15 -2010 ((-566) $)) (-15 -1701 ((-644 (-1093 (-381))) $)) (-15 -1701 ((-644 (-1093 (-381))) $ (-644 (-1093 (-381))))) (-15 -3174 ((-644 (-381)) $)) (-15 -3174 ((-644 (-381)) $ (-644 (-381)))) (-15 -3661 ((-1269) $ (-644 (-943 (-225))) (-874) (-874) (-921))) (-15 -3661 ((-1269) $ (-943 (-225)))) (-15 -3661 ((-1269) $ (-943 (-225)) (-874) (-874) (-921))) (-15 -3802 ((-1269) $ (-943 (-225)))) (-15 -1372 ((-1269) $ (-943 (-225)) (-874))) (-15 -2512 ($ (-644 (-644 (-943 (-225)))))) (-15 -2512 ((-862) $)) (-15 -2466 ((-644 (-644 (-943 (-225)))) (-644 (-644 (-943 (-225)))) (-644 (-874)))) (-15 -4262 ((-644 (-225)) (-644 (-644 (-943 (-225))))))))
-((-3047 (($ $) NIL) (($ $ $) 11)))
-(((-471 |#1| |#2| |#3|) (-10 -8 (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|))) (-472 |#2| |#3|) (-172) (-23)) (T -471))
-NIL
-(-10 -8 (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-3992 ((|#2| $) 20)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 16) (($ $ $) 14)) (-3034 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
+((-2030 (((-1264 (-1264 (-566))) (-1264 (-1264 (-566))) (-921)) 29)) (-1433 (((-1264 (-1264 (-566))) (-921)) 24)))
+(((-468) (-10 -7 (-15 -2030 ((-1264 (-1264 (-566))) (-1264 (-1264 (-566))) (-921))) (-15 -1433 ((-1264 (-1264 (-566))) (-921))))) (T -468))
+((-1433 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1264 (-1264 (-566)))) (-5 *1 (-468)))) (-2030 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 (-1264 (-566)))) (-5 *3 (-921)) (-5 *1 (-468)))))
+(-10 -7 (-15 -2030 ((-1264 (-1264 (-566))) (-1264 (-1264 (-566))) (-921))) (-15 -1433 ((-1264 (-1264 (-566))) (-921))))
+((-3624 (((-566) (-566)) 32) (((-566)) 24)) (-1703 (((-566) (-566)) 28) (((-566)) 20)) (-4069 (((-566) (-566)) 30) (((-566)) 22)) (-1604 (((-112) (-112)) 14) (((-112)) 12)) (-4100 (((-112) (-112)) 13) (((-112)) 11)) (-3533 (((-112) (-112)) 26) (((-112)) 17)))
+(((-469) (-10 -7 (-15 -4100 ((-112))) (-15 -1604 ((-112))) (-15 -4100 ((-112) (-112))) (-15 -1604 ((-112) (-112))) (-15 -3533 ((-112))) (-15 -4069 ((-566))) (-15 -1703 ((-566))) (-15 -3624 ((-566))) (-15 -3533 ((-112) (-112))) (-15 -4069 ((-566) (-566))) (-15 -1703 ((-566) (-566))) (-15 -3624 ((-566) (-566))))) (T -469))
+((-3624 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-1703 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-4069 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-3533 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))) (-3624 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-1703 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-4069 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469)))) (-3533 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))) (-1604 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))) (-4100 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))) (-1604 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))) (-4100 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))))
+(-10 -7 (-15 -4100 ((-112))) (-15 -1604 ((-112))) (-15 -4100 ((-112) (-112))) (-15 -1604 ((-112) (-112))) (-15 -3533 ((-112))) (-15 -4069 ((-566))) (-15 -1703 ((-566))) (-15 -3624 ((-566))) (-15 -3533 ((-112) (-112))) (-15 -4069 ((-566) (-566))) (-15 -1703 ((-566) (-566))) (-15 -3624 ((-566) (-566))))
+((-3009 (((-112) $ $) NIL)) (-3197 (((-644 (-381)) $) 34) (((-644 (-381)) $ (-644 (-381))) 146)) (-1715 (((-644 (-1093 (-381))) $) 16) (((-644 (-1093 (-381))) $ (-644 (-1093 (-381)))) 142)) (-2609 (((-644 (-644 (-943 (-225)))) (-644 (-644 (-943 (-225)))) (-644 (-874))) 58)) (-4017 (((-644 (-644 (-943 (-225)))) $) 137)) (-1876 (((-1269) $ (-943 (-225)) (-874)) 163)) (-2833 (($ $) 136) (($ (-644 (-644 (-943 (-225))))) 149) (($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921))) 148) (($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921)) (-644 (-264))) 150)) (-2402 (((-1157) $) NIL)) (-2050 (((-566) $) 110)) (-4056 (((-1119) $) NIL)) (-2305 (($) 147)) (-2870 (((-644 (-225)) (-644 (-644 (-943 (-225))))) 89)) (-2047 (((-1269) $ (-644 (-943 (-225))) (-874) (-874) (-921)) 155) (((-1269) $ (-943 (-225))) 157) (((-1269) $ (-943 (-225)) (-874) (-874) (-921)) 156)) (-3780 (((-862) $) 169) (($ (-644 (-644 (-943 (-225))))) 164)) (-3801 (((-112) $ $) NIL)) (-4054 (((-1269) $ (-943 (-225))) 162)) (-2950 (((-112) $ $) NIL)))
+(((-470) (-13 (-1099) (-10 -8 (-15 -2305 ($)) (-15 -2833 ($ $)) (-15 -2833 ($ (-644 (-644 (-943 (-225)))))) (-15 -2833 ($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921)))) (-15 -2833 ($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921)) (-644 (-264)))) (-15 -4017 ((-644 (-644 (-943 (-225)))) $)) (-15 -2050 ((-566) $)) (-15 -1715 ((-644 (-1093 (-381))) $)) (-15 -1715 ((-644 (-1093 (-381))) $ (-644 (-1093 (-381))))) (-15 -3197 ((-644 (-381)) $)) (-15 -3197 ((-644 (-381)) $ (-644 (-381)))) (-15 -2047 ((-1269) $ (-644 (-943 (-225))) (-874) (-874) (-921))) (-15 -2047 ((-1269) $ (-943 (-225)))) (-15 -2047 ((-1269) $ (-943 (-225)) (-874) (-874) (-921))) (-15 -4054 ((-1269) $ (-943 (-225)))) (-15 -1876 ((-1269) $ (-943 (-225)) (-874))) (-15 -3780 ($ (-644 (-644 (-943 (-225)))))) (-15 -3780 ((-862) $)) (-15 -2609 ((-644 (-644 (-943 (-225)))) (-644 (-644 (-943 (-225)))) (-644 (-874)))) (-15 -2870 ((-644 (-225)) (-644 (-644 (-943 (-225))))))))) (T -470))
+((-3780 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-470)))) (-2305 (*1 *1) (-5 *1 (-470))) (-2833 (*1 *1 *1) (-5 *1 (-470))) (-2833 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470)))) (-2833 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *3 (-644 (-874))) (-5 *4 (-644 (-921))) (-5 *1 (-470)))) (-2833 (*1 *1 *2 *3 *3 *4 *5) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *3 (-644 (-874))) (-5 *4 (-644 (-921))) (-5 *5 (-644 (-264))) (-5 *1 (-470)))) (-4017 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470)))) (-2050 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-470)))) (-1715 (*1 *2 *1) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-470)))) (-1715 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-470)))) (-3197 (*1 *2 *1) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-470)))) (-3197 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-470)))) (-2047 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-644 (-943 (-225)))) (-5 *4 (-874)) (-5 *5 (-921)) (-5 *2 (-1269)) (-5 *1 (-470)))) (-2047 (*1 *2 *1 *3) (-12 (-5 *3 (-943 (-225))) (-5 *2 (-1269)) (-5 *1 (-470)))) (-2047 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-943 (-225))) (-5 *4 (-874)) (-5 *5 (-921)) (-5 *2 (-1269)) (-5 *1 (-470)))) (-4054 (*1 *2 *1 *3) (-12 (-5 *3 (-943 (-225))) (-5 *2 (-1269)) (-5 *1 (-470)))) (-1876 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-943 (-225))) (-5 *4 (-874)) (-5 *2 (-1269)) (-5 *1 (-470)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470)))) (-2609 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *3 (-644 (-874))) (-5 *1 (-470)))) (-2870 (*1 *2 *3) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *2 (-644 (-225))) (-5 *1 (-470)))))
+(-13 (-1099) (-10 -8 (-15 -2305 ($)) (-15 -2833 ($ $)) (-15 -2833 ($ (-644 (-644 (-943 (-225)))))) (-15 -2833 ($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921)))) (-15 -2833 ($ (-644 (-644 (-943 (-225)))) (-644 (-874)) (-644 (-874)) (-644 (-921)) (-644 (-264)))) (-15 -4017 ((-644 (-644 (-943 (-225)))) $)) (-15 -2050 ((-566) $)) (-15 -1715 ((-644 (-1093 (-381))) $)) (-15 -1715 ((-644 (-1093 (-381))) $ (-644 (-1093 (-381))))) (-15 -3197 ((-644 (-381)) $)) (-15 -3197 ((-644 (-381)) $ (-644 (-381)))) (-15 -2047 ((-1269) $ (-644 (-943 (-225))) (-874) (-874) (-921))) (-15 -2047 ((-1269) $ (-943 (-225)))) (-15 -2047 ((-1269) $ (-943 (-225)) (-874) (-874) (-921))) (-15 -4054 ((-1269) $ (-943 (-225)))) (-15 -1876 ((-1269) $ (-943 (-225)) (-874))) (-15 -3780 ($ (-644 (-644 (-943 (-225)))))) (-15 -3780 ((-862) $)) (-15 -2609 ((-644 (-644 (-943 (-225)))) (-644 (-644 (-943 (-225)))) (-644 (-874)))) (-15 -2870 ((-644 (-225)) (-644 (-644 (-943 (-225))))))))
+((-3051 (($ $) NIL) (($ $ $) 11)))
+(((-471 |#1| |#2| |#3|) (-10 -8 (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|))) (-472 |#2| |#3|) (-172) (-23)) (T -471))
+NIL
+(-10 -8 (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2108 ((|#2| $) 20)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 16) (($ $ $) 14)) (-3040 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
(((-472 |#1| |#2|) (-140) (-172) (-23)) (T -472))
-((-3992 (*1 *2 *1) (-12 (-4 *1 (-472 *3 *2)) (-4 *3 (-172)) (-4 *2 (-23)))) (-2485 (*1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-3047 (*1 *1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-3034 (*1 *1 *1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-3047 (*1 *1 *1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))))
-(-13 (-1099) (-10 -8 (-15 -3992 (|t#2| $)) (-15 (-2485) ($) -1655) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -3047 ($ $)) (-15 -3034 ($ $ $)) (-15 -3047 ($ $ $))))
+((-2108 (*1 *2 *1) (-12 (-4 *1 (-472 *3 *2)) (-4 *3 (-172)) (-4 *2 (-23)))) (-2493 (*1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-3051 (*1 *1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-3040 (*1 *1 *1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))) (-3051 (*1 *1 *1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23)))))
+(-13 (-1099) (-10 -8 (-15 -2108 (|t#2| $)) (-15 (-2493) ($) -2460) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -3051 ($ $)) (-15 -3040 ($ $ $)) (-15 -3051 ($ $ $))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-1892 (((-3 (-644 (-483 |#1| |#2|)) "failed") (-644 (-483 |#1| |#2|)) (-644 (-864 |#1|))) 137)) (-2367 (((-644 (-644 (-247 |#1| |#2|))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|))) 134)) (-3129 (((-2 (|:| |dpolys| (-644 (-247 |#1| |#2|))) (|:| |coords| (-644 (-566)))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|))) 86)))
-(((-473 |#1| |#2| |#3|) (-10 -7 (-15 -2367 ((-644 (-644 (-247 |#1| |#2|))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|)))) (-15 -1892 ((-3 (-644 (-483 |#1| |#2|)) "failed") (-644 (-483 |#1| |#2|)) (-644 (-864 |#1|)))) (-15 -3129 ((-2 (|:| |dpolys| (-644 (-247 |#1| |#2|))) (|:| |coords| (-644 (-566)))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|))))) (-644 (-1175)) (-454) (-454)) (T -473))
-((-3129 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-864 *5))) (-14 *5 (-644 (-1175))) (-4 *6 (-454)) (-5 *2 (-2 (|:| |dpolys| (-644 (-247 *5 *6))) (|:| |coords| (-644 (-566))))) (-5 *1 (-473 *5 *6 *7)) (-5 *3 (-644 (-247 *5 *6))) (-4 *7 (-454)))) (-1892 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-483 *4 *5))) (-5 *3 (-644 (-864 *4))) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-473 *4 *5 *6)) (-4 *6 (-454)))) (-2367 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-864 *5))) (-14 *5 (-644 (-1175))) (-4 *6 (-454)) (-5 *2 (-644 (-644 (-247 *5 *6)))) (-5 *1 (-473 *5 *6 *7)) (-5 *3 (-644 (-247 *5 *6))) (-4 *7 (-454)))))
-(-10 -7 (-15 -2367 ((-644 (-644 (-247 |#1| |#2|))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|)))) (-15 -1892 ((-3 (-644 (-483 |#1| |#2|)) "failed") (-644 (-483 |#1| |#2|)) (-644 (-864 |#1|)))) (-15 -3129 ((-2 (|:| |dpolys| (-644 (-247 |#1| |#2|))) (|:| |coords| (-644 (-566)))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|)))))
-((-1579 (((-3 $ "failed") $) 11)) (-2032 (($ $ $) 23)) (-3755 (($ $ $) 24)) (-3061 (($ $ $) 9)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 22)))
-(((-474 |#1|) (-10 -8 (-15 -3755 (|#1| |#1| |#1|)) (-15 -2032 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3061 (|#1| |#1| |#1|)) (-15 -1579 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921)))) (-475)) (T -474))
-NIL
-(-10 -8 (-15 -3755 (|#1| |#1| |#1|)) (-15 -2032 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3061 (|#1| |#1| |#1|)) (-15 -1579 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))))
-((-2985 (((-112) $ $) 7)) (-2342 (($) 19 T CONST)) (-1579 (((-3 $ "failed") $) 16)) (-2741 (((-112) $) 18)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 25)) (-4033 (((-1119) $) 11)) (-2032 (($ $ $) 22)) (-3755 (($ $ $) 21)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2495 (($) 20 T CONST)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 24)) (** (($ $ (-921)) 14) (($ $ (-771)) 17) (($ $ (-566)) 23)) (* (($ $ $) 15)))
+((-1846 (((-3 (-644 (-483 |#1| |#2|)) "failed") (-644 (-483 |#1| |#2|)) (-644 (-864 |#1|))) 137)) (-4124 (((-644 (-644 (-247 |#1| |#2|))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|))) 134)) (-3860 (((-2 (|:| |dpolys| (-644 (-247 |#1| |#2|))) (|:| |coords| (-644 (-566)))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|))) 86)))
+(((-473 |#1| |#2| |#3|) (-10 -7 (-15 -4124 ((-644 (-644 (-247 |#1| |#2|))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|)))) (-15 -1846 ((-3 (-644 (-483 |#1| |#2|)) "failed") (-644 (-483 |#1| |#2|)) (-644 (-864 |#1|)))) (-15 -3860 ((-2 (|:| |dpolys| (-644 (-247 |#1| |#2|))) (|:| |coords| (-644 (-566)))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|))))) (-644 (-1175)) (-454) (-454)) (T -473))
+((-3860 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-864 *5))) (-14 *5 (-644 (-1175))) (-4 *6 (-454)) (-5 *2 (-2 (|:| |dpolys| (-644 (-247 *5 *6))) (|:| |coords| (-644 (-566))))) (-5 *1 (-473 *5 *6 *7)) (-5 *3 (-644 (-247 *5 *6))) (-4 *7 (-454)))) (-1846 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-483 *4 *5))) (-5 *3 (-644 (-864 *4))) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-473 *4 *5 *6)) (-4 *6 (-454)))) (-4124 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-864 *5))) (-14 *5 (-644 (-1175))) (-4 *6 (-454)) (-5 *2 (-644 (-644 (-247 *5 *6)))) (-5 *1 (-473 *5 *6 *7)) (-5 *3 (-644 (-247 *5 *6))) (-4 *7 (-454)))))
+(-10 -7 (-15 -4124 ((-644 (-644 (-247 |#1| |#2|))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|)))) (-15 -1846 ((-3 (-644 (-483 |#1| |#2|)) "failed") (-644 (-483 |#1| |#2|)) (-644 (-864 |#1|)))) (-15 -3860 ((-2 (|:| |dpolys| (-644 (-247 |#1| |#2|))) (|:| |coords| (-644 (-566)))) (-644 (-247 |#1| |#2|)) (-644 (-864 |#1|)))))
+((-2928 (((-3 $ "failed") $) 11)) (-3850 (($ $ $) 23)) (-1783 (($ $ $) 24)) (-3062 (($ $ $) 9)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 22)))
+(((-474 |#1|) (-10 -8 (-15 -1783 (|#1| |#1| |#1|)) (-15 -3850 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3062 (|#1| |#1| |#1|)) (-15 -2928 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921)))) (-475)) (T -474))
+NIL
+(-10 -8 (-15 -1783 (|#1| |#1| |#1|)) (-15 -3850 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3062 (|#1| |#1| |#1|)) (-15 -2928 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))))
+((-3009 (((-112) $ $) 7)) (-3877 (($) 19 T CONST)) (-2928 (((-3 $ "failed") $) 16)) (-3466 (((-112) $) 18)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 25)) (-4056 (((-1119) $) 11)) (-3850 (($ $ $) 22)) (-1783 (($ $ $) 21)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-4333 (($) 20 T CONST)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 24)) (** (($ $ (-921)) 14) (($ $ (-771)) 17) (($ $ (-566)) 23)) (* (($ $ $) 15)))
(((-475) (-140)) (T -475))
-((-2626 (*1 *1 *1) (-4 *1 (-475))) (-3061 (*1 *1 *1 *1) (-4 *1 (-475))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-475)) (-5 *2 (-566)))) (-2032 (*1 *1 *1 *1) (-4 *1 (-475))) (-3755 (*1 *1 *1 *1) (-4 *1 (-475))))
-(-13 (-726) (-10 -8 (-15 -2626 ($ $)) (-15 -3061 ($ $ $)) (-15 ** ($ $ (-566))) (-6 -4414) (-15 -2032 ($ $ $)) (-15 -3755 ($ $ $))))
+((-3584 (*1 *1 *1) (-4 *1 (-475))) (-3062 (*1 *1 *1 *1) (-4 *1 (-475))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-475)) (-5 *2 (-566)))) (-3850 (*1 *1 *1 *1) (-4 *1 (-475))) (-1783 (*1 *1 *1 *1) (-4 *1 (-475))))
+(-13 (-726) (-10 -8 (-15 -3584 ($ $)) (-15 -3062 ($ $ $)) (-15 ** ($ $ (-566))) (-6 -4411) (-15 -3850 ($ $ $)) (-15 -1783 ($ $ $))))
(((-102) . T) ((-613 (-862)) . T) ((-726) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) 18)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-1881 (($ $ (-409 (-566))) NIL) (($ $ (-409 (-566)) (-409 (-566))) NIL)) (-1530 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) NIL)) (-3235 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL (|has| |#1| (-365)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-3215 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) NIL)) (-3259 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2635 (((-112) $) NIL (|has| |#1| (-365)))) (-4039 (((-112) $) NIL)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-409 (-566)) $) NIL) (((-409 (-566)) $ (-409 (-566))) NIL)) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3432 (($ $ (-921)) NIL) (($ $ (-409 (-566))) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-409 (-566))) NIL) (($ $ (-1081) (-409 (-566))) NIL) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) NIL)) (-3077 (($ (-1 |#1| |#1|) $) 25)) (-3668 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| |#1| (-365)))) (-4117 (($ $) 29 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 35 (-2805 (-12 (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 30 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-1938 (($ $ (-409 (-566))) NIL)) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3613 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ (-409 (-566))) NIL) (($ $ $) NIL (|has| (-409 (-566)) (-1111)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) 28 (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 14 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $ (-1260 |#2|)) 16)) (-3992 (((-409 (-566)) $) NIL)) (-3267 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1260 |#2|)) NIL) (($ (-1249 |#1| |#2| |#3|)) 9) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-2022 ((|#1| $ (-409 (-566))) NIL)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-2420 ((|#1| $) 21)) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-409 (-566))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) 27)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 26) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-476 |#1| |#2| |#3|) (-13 (-1245 |#1|) (-10 -8 (-15 -2512 ($ (-1260 |#2|))) (-15 -2512 ($ (-1249 |#1| |#2| |#3|))) (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -476))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-476 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-1249 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3) (-5 *1 (-476 *3 *4 *5)))) (-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-476 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-4117 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-476 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
-(-13 (-1245 |#1|) (-10 -8 (-15 -2512 ($ (-1260 |#2|))) (-15 -2512 ($ (-1249 |#1| |#2| |#3|))) (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|)))
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-1537 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#2| $ |#1| |#2|) 18)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-2414 (((-3 |#2| "failed") |#1| $) 19)) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-3066 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-3 |#2| "failed") |#1| $) 16)) (-2651 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) NIL)) (-3372 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 ((|#1| $) NIL (|has| |#1| (-850)))) (-2404 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-1544 ((|#1| $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4418))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3949 (((-644 |#1|) $) NIL)) (-3221 (((-112) |#1| $) NIL)) (-3119 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-4265 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-1922 (((-644 |#1|) $) NIL)) (-2040 (((-112) |#1| $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4062 ((|#2| $) NIL (|has| |#1| (-850)))) (-2126 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL)) (-1720 (($ $ |#2|) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-3879 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-2512 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3122 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) 18)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2922 (($ $ (-409 (-566))) NIL) (($ $ (-409 (-566)) (-409 (-566))) NIL)) (-2455 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) NIL)) (-2865 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL (|has| |#1| (-365)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2843 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) NIL)) (-2888 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-1784 (((-112) $) NIL (|has| |#1| (-365)))) (-4392 (((-112) $) NIL)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-409 (-566)) $) NIL) (((-409 (-566)) $ (-409 (-566))) NIL)) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1644 (($ $ (-921)) NIL) (($ $ (-409 (-566))) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-409 (-566))) NIL) (($ $ (-1081) (-409 (-566))) NIL) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) NIL)) (-3152 (($ (-1 |#1| |#1|) $) 25)) (-3671 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-365)))) (-3921 (($ $) 29 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 35 (-2805 (-12 (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 30 (|has| |#1| (-38 (-409 (-566)))))) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2295 (($ $ (-409 (-566))) NIL)) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4337 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ (-409 (-566))) NIL) (($ $ $) NIL (|has| (-409 (-566)) (-1111)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) 28 (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 14 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $ (-1260 |#2|)) 16)) (-2108 (((-409 (-566)) $) NIL)) (-2897 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1260 |#2|)) NIL) (($ (-1249 |#1| |#2| |#3|)) 9) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-3756 ((|#1| $ (-409 (-566))) NIL)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3174 ((|#1| $) 21)) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-409 (-566))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) 27)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 26) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-476 |#1| |#2| |#3|) (-13 (-1245 |#1|) (-10 -8 (-15 -3780 ($ (-1260 |#2|))) (-15 -3780 ($ (-1249 |#1| |#2| |#3|))) (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -476))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-476 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-1249 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3) (-5 *1 (-476 *3 *4 *5)))) (-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-476 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-3921 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-476 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
+(-13 (-1245 |#1|) (-10 -8 (-15 -3780 ($ (-1260 |#2|))) (-15 -3780 ($ (-1249 |#1| |#2| |#3|))) (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|)))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-2518 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#2| $ |#1| |#2|) 18)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2450 (((-3 |#2| "failed") |#1| $) 19)) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-1450 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-3 |#2| "failed") |#1| $) 16)) (-2661 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) NIL)) (-3799 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 ((|#1| $) NIL (|has| |#1| (-850)))) (-3276 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2579 ((|#1| $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4415))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4314 (((-644 |#1|) $) NIL)) (-3422 (((-112) |#1| $) NIL)) (-3765 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2903 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2140 (((-644 |#1|) $) NIL)) (-3935 (((-112) |#1| $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4101 ((|#2| $) NIL (|has| |#1| (-850)))) (-3591 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL)) (-3750 (($ $ |#2|) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-3551 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-3780 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3801 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-477 |#1| |#2| |#3| |#4|) (-1190 |#1| |#2|) (-1099) (-1099) (-1190 |#1| |#2|) |#2|) (T -477))
NIL
(-1190 |#1| |#2|)
-((-2985 (((-112) $ $) NIL)) (-2072 (((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 |#4|)))) (-644 |#4|)) NIL)) (-1725 (((-644 $) (-644 |#4|)) NIL)) (-2540 (((-644 |#3|) $) NIL)) (-2598 (((-112) $) NIL)) (-2740 (((-112) $) NIL (|has| |#1| (-558)))) (-4390 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3761 ((|#4| |#4| $) NIL)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-4186 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417))) (((-3 |#4| "failed") $ |#3|) NIL)) (-2342 (($) NIL T CONST)) (-4179 (((-112) $) 29 (|has| |#1| (-558)))) (-4184 (((-112) $ $) NIL (|has| |#1| (-558)))) (-1576 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2398 (((-112) $) NIL (|has| |#1| (-558)))) (-3772 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2380 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) NIL)) (-1756 (($ (-644 |#4|)) NIL)) (-4076 (((-3 $ "failed") $) 45)) (-2668 ((|#4| |#4| $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-2651 (($ |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-2531 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-4200 ((|#4| |#4| $) NIL)) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4417))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3810 (((-2 (|:| -1673 (-644 |#4|)) (|:| -3509 (-644 |#4|))) $) NIL)) (-3372 (((-644 |#4|) $) 18 (|has| $ (-6 -4417)))) (-4260 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1594 ((|#3| $) 38)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#4|) $) 19 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-1323 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) 23)) (-3097 (((-644 |#3|) $) NIL)) (-3492 (((-112) |#3| $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-2670 (((-3 |#4| "failed") $) 42)) (-1798 (((-644 |#4|) $) NIL)) (-3377 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1687 ((|#4| |#4| $) NIL)) (-2343 (((-112) $ $) NIL)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-3257 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2930 ((|#4| |#4| $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 (((-3 |#4| "failed") $) 40)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1583 (((-3 $ "failed") $ |#4|) 58)) (-1938 (($ $ |#4|) NIL)) (-2822 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 17)) (-2954 (($) 14)) (-3992 (((-771) $) NIL)) (-4044 (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) 13)) (-3134 (((-538) $) NIL (|has| |#4| (-614 (-538))))) (-2523 (($ (-644 |#4|)) 22)) (-1945 (($ $ |#3|) 52)) (-1398 (($ $ |#3|) 54)) (-2280 (($ $) NIL)) (-4287 (($ $ |#3|) NIL)) (-2512 (((-862) $) 35) (((-644 |#4|) $) 46)) (-2748 (((-771) $) NIL (|has| |#3| (-370)))) (-3122 (((-112) $ $) NIL)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3130 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) NIL)) (-3427 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-1427 (((-644 |#3|) $) NIL)) (-1369 (((-112) |#3| $) NIL)) (-2940 (((-112) $ $) NIL)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3043 (((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 |#4|)))) (-644 |#4|)) NIL)) (-3804 (((-644 $) (-644 |#4|)) NIL)) (-2608 (((-644 |#3|) $) NIL)) (-1390 (((-112) $) NIL)) (-3455 (((-112) $) NIL (|has| |#1| (-558)))) (-1702 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3713 ((|#4| |#4| $) NIL)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-1386 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3877 (($) NIL T CONST)) (-3310 (((-112) $) 29 (|has| |#1| (-558)))) (-3367 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2895 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3219 (((-112) $) NIL (|has| |#1| (-558)))) (-3790 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4239 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) NIL)) (-1867 (($ (-644 |#4|)) NIL)) (-4112 (((-3 $ "failed") $) 45)) (-3963 ((|#4| |#4| $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-2661 (($ |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-1991 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3517 ((|#4| |#4| $) NIL)) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4414))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4143 (((-2 (|:| -1713 (-644 |#4|)) (|:| -3537 (-644 |#4|))) $) NIL)) (-3799 (((-644 |#4|) $) 18 (|has| $ (-6 -4414)))) (-2848 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1887 ((|#3| $) 38)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#4|) $) 19 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-3117 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) 23)) (-1711 (((-644 |#3|) $) NIL)) (-4113 (((-112) |#3| $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-2680 (((-3 |#4| "failed") $) 42)) (-3329 (((-644 |#4|) $) NIL)) (-2337 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1569 ((|#4| |#4| $) NIL)) (-3886 (((-112) $ $) NIL)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-2531 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1671 ((|#4| |#4| $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 (((-3 |#4| "failed") $) 40)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1775 (((-3 $ "failed") $ |#4|) 58)) (-2295 (($ $ |#4|) NIL)) (-3044 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 17)) (-1793 (($) 14)) (-2108 (((-771) $) NIL)) (-4067 (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) 13)) (-3204 (((-538) $) NIL (|has| |#4| (-614 (-538))))) (-3791 (($ (-644 |#4|)) 22)) (-2363 (($ $ |#3|) 52)) (-3513 (($ $ |#3|) 54)) (-1360 (($ $) NIL)) (-3130 (($ $ |#3|) NIL)) (-3780 (((-862) $) 35) (((-644 |#4|) $) 46)) (-3542 (((-771) $) NIL (|has| |#3| (-370)))) (-3801 (((-112) $ $) NIL)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3870 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) NIL)) (-1583 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3830 (((-644 |#3|) $) NIL)) (-3258 (((-112) |#3| $) NIL)) (-2950 (((-112) $ $) NIL)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-478 |#1| |#2| |#3| |#4|) (-1207 |#1| |#2| |#3| |#4|) (-558) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -478))
NIL
(-1207 |#1| |#2| |#3| |#4|)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL)) (-1756 (((-566) $) NIL) (((-409 (-566)) $) NIL)) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-3035 (($) 17)) (-2741 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3134 (((-381) $) 21) (((-225) $) 24) (((-409 (-1171 (-566))) $) 18) (((-538) $) 53)) (-2512 (((-862) $) 51) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (((-225) $) 23) (((-381) $) 20)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-2485 (($) 37 T CONST)) (-2495 (($) 8 T CONST)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
-(((-479) (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))) (-1022) (-613 (-225)) (-613 (-381)) (-614 (-409 (-1171 (-566)))) (-614 (-538)) (-10 -8 (-15 -3035 ($))))) (T -479))
-((-3035 (*1 *1) (-5 *1 (-479))))
-(-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))) (-1022) (-613 (-225)) (-613 (-381)) (-614 (-409 (-1171 (-566)))) (-614 (-538)) (-10 -8 (-15 -3035 ($))))
-((-2985 (((-112) $ $) NIL)) (-3336 (((-1134) $) 11)) (-3324 (((-1134) $) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-480) (-13 (-1082) (-10 -8 (-15 -3324 ((-1134) $)) (-15 -3336 ((-1134) $))))) (T -480))
-((-3324 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-480)))) (-3336 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-480)))))
-(-13 (-1082) (-10 -8 (-15 -3324 ((-1134) $)) (-15 -3336 ((-1134) $))))
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-1537 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#2| $ |#1| |#2|) 16)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-2414 (((-3 |#2| "failed") |#1| $) 20)) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-3066 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-3 |#2| "failed") |#1| $) 18)) (-2651 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) NIL)) (-3372 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 ((|#1| $) NIL (|has| |#1| (-850)))) (-2404 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-1544 ((|#1| $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4418))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3949 (((-644 |#1|) $) 13)) (-3221 (((-112) |#1| $) NIL)) (-3119 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-4265 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-1922 (((-644 |#1|) $) NIL)) (-2040 (((-112) |#1| $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4062 ((|#2| $) NIL (|has| |#1| (-850)))) (-2126 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL)) (-1720 (($ $ |#2|) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) 19)) (-4386 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3879 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-2512 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3122 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 11 (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2997 (((-771) $) 15 (|has| $ (-6 -4417)))))
-(((-481 |#1| |#2| |#3|) (-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4417))) (-1099) (-1099) (-1157)) (T -481))
-NIL
-(-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4417)))
-((-3394 (((-566) (-566) (-566)) 19)) (-4337 (((-112) (-566) (-566) (-566) (-566)) 28)) (-4119 (((-1264 (-644 (-566))) (-771) (-771)) 44)))
-(((-482) (-10 -7 (-15 -3394 ((-566) (-566) (-566))) (-15 -4337 ((-112) (-566) (-566) (-566) (-566))) (-15 -4119 ((-1264 (-644 (-566))) (-771) (-771))))) (T -482))
-((-4119 (*1 *2 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1264 (-644 (-566)))) (-5 *1 (-482)))) (-4337 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *2 (-112)) (-5 *1 (-482)))) (-3394 (*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-482)))))
-(-10 -7 (-15 -3394 ((-566) (-566) (-566))) (-15 -4337 ((-112) (-566) (-566) (-566) (-566))) (-15 -4119 ((-1264 (-644 (-566))) (-771) (-771))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-864 |#1|)) $) NIL)) (-2358 (((-1171 $) $ (-864 |#1|)) NIL) (((-1171 |#2|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#2| (-558)))) (-3653 (($ $) NIL (|has| |#2| (-558)))) (-2152 (((-112) $) NIL (|has| |#2| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-864 |#1|))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2857 (($ $) NIL (|has| |#2| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#2| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-864 |#1|) "failed") $) NIL)) (-1756 ((|#2| $) NIL) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-864 |#1|) $) NIL)) (-1552 (($ $ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-1492 (($ $ (-644 (-566))) NIL)) (-3577 (($ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#2| (-909)))) (-2804 (($ $ |#2| (-484 (-2997 |#1|) (-771)) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-2530 (($ (-1171 |#2|) (-864 |#1|)) NIL) (($ (-1171 $) (-864 |#1|)) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#2| (-484 (-2997 |#1|) (-771))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-864 |#1|)) NIL)) (-3251 (((-484 (-2997 |#1|) (-771)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-2132 (($ (-1 (-484 (-2997 |#1|) (-771)) (-484 (-2997 |#1|) (-771))) $) NIL)) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-3339 (((-3 (-864 |#1|) "failed") $) NIL)) (-3545 (($ $) NIL)) (-3557 ((|#2| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-2878 (((-1157) $) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-864 |#1|)) (|:| -3250 (-771))) "failed") $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 ((|#2| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#2| (-909)))) (-2972 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-558)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-864 |#1|) |#2|) NIL) (($ $ (-644 (-864 |#1|)) (-644 |#2|)) NIL) (($ $ (-864 |#1|) $) NIL) (($ $ (-644 (-864 |#1|)) (-644 $)) NIL)) (-2408 (($ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-2862 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3992 (((-484 (-2997 |#1|) (-771)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-864 |#1|) (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3181 ((|#2| $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-864 |#1|)) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#2| (-558)))) (-3868 (((-644 |#2|) $) NIL)) (-2022 ((|#2| $ (-484 (-2997 |#1|) (-771))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#2| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#2| (-558)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#2| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#2| (-38 (-409 (-566))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-483 |#1| |#2|) (-13 (-949 |#2| (-484 (-2997 |#1|) (-771)) (-864 |#1|)) (-10 -8 (-15 -1492 ($ $ (-644 (-566)))))) (-644 (-1175)) (-1049)) (T -483))
-((-1492 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-483 *3 *4)) (-14 *3 (-644 (-1175))) (-4 *4 (-1049)))))
-(-13 (-949 |#2| (-484 (-2997 |#1|) (-771)) (-864 |#1|)) (-10 -8 (-15 -1492 ($ $ (-644 (-566))))))
-((-2985 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-3958 (((-112) $) NIL (|has| |#2| (-131)))) (-3639 (($ (-921)) NIL (|has| |#2| (-1049)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-3711 (($ $ $) NIL (|has| |#2| (-793)))) (-4126 (((-3 $ "failed") $ $) NIL (|has| |#2| (-131)))) (-3081 (((-112) $ (-771)) NIL)) (-4025 (((-771)) NIL (|has| |#2| (-370)))) (-2807 (((-566) $) NIL (|has| |#2| (-848)))) (-3874 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1099)))) (-1756 (((-566) $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) ((|#2| $) NIL (|has| |#2| (-1099)))) (-1628 (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL (|has| |#2| (-1049))) (((-689 |#2|) (-689 $)) NIL (|has| |#2| (-1049)))) (-1579 (((-3 $ "failed") $) NIL (|has| |#2| (-726)))) (-3335 (($) NIL (|has| |#2| (-370)))) (-1332 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#2| $ (-566)) 15)) (-1684 (((-112) $) NIL (|has| |#2| (-848)))) (-3372 (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-2741 (((-112) $) NIL (|has| |#2| (-726)))) (-1578 (((-112) $) NIL (|has| |#2| (-848)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2404 (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-1323 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-3712 (((-921) $) NIL (|has| |#2| (-370)))) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#2| (-1099)))) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-2168 (($ (-921)) NIL (|has| |#2| (-370)))) (-4033 (((-1119) $) NIL (|has| |#2| (-1099)))) (-4062 ((|#2| $) NIL (|has| (-566) (-850)))) (-1720 (($ $ |#2|) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#2| $ (-566) |#2|) NIL) ((|#2| $ (-566)) NIL)) (-1452 ((|#2| $ $) NIL (|has| |#2| (-1049)))) (-2440 (($ (-1264 |#2|)) NIL)) (-1909 (((-134)) NIL (|has| |#2| (-365)))) (-2862 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-4044 (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-1264 |#2|) $) NIL) (($ (-566)) NIL (-2805 (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) (|has| |#2| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (($ |#2|) NIL (|has| |#2| (-1099))) (((-862) $) NIL (|has| |#2| (-613 (-862))))) (-3795 (((-771)) NIL (|has| |#2| (-1049)) CONST)) (-3122 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-3427 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-1346 (($ $) NIL (|has| |#2| (-848)))) (-2485 (($) NIL (|has| |#2| (-131)) CONST)) (-2495 (($) NIL (|has| |#2| (-726)) CONST)) (-2840 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-2998 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2974 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2940 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-2987 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2962 (((-112) $ $) 21 (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3061 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3047 (($ $ $) NIL (|has| |#2| (-1049))) (($ $) NIL (|has| |#2| (-1049)))) (-3034 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-771)) NIL (|has| |#2| (-726))) (($ $ (-921)) NIL (|has| |#2| (-726)))) (* (($ (-566) $) NIL (|has| |#2| (-1049))) (($ $ $) NIL (|has| |#2| (-726))) (($ $ |#2|) NIL (|has| |#2| (-726))) (($ |#2| $) NIL (|has| |#2| (-726))) (($ (-771) $) NIL (|has| |#2| (-131))) (($ (-921) $) NIL (|has| |#2| (-25)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL)) (-1867 (((-566) $) NIL) (((-409 (-566)) $) NIL)) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-3120 (($) 17)) (-3466 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-3204 (((-381) $) 21) (((-225) $) 24) (((-409 (-1171 (-566))) $) 18) (((-538) $) 53)) (-3780 (((-862) $) 51) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (((-225) $) 23) (((-381) $) 20)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-2493 (($) 37 T CONST)) (-4333 (($) 8 T CONST)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
+(((-479) (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))) (-1022) (-613 (-225)) (-613 (-381)) (-614 (-409 (-1171 (-566)))) (-614 (-538)) (-10 -8 (-15 -3120 ($))))) (T -479))
+((-3120 (*1 *1) (-5 *1 (-479))))
+(-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))) (-1022) (-613 (-225)) (-613 (-381)) (-614 (-409 (-1171 (-566)))) (-614 (-538)) (-10 -8 (-15 -3120 ($))))
+((-3009 (((-112) $ $) NIL)) (-3361 (((-1134) $) 11)) (-3349 (((-1134) $) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-480) (-13 (-1082) (-10 -8 (-15 -3349 ((-1134) $)) (-15 -3361 ((-1134) $))))) (T -480))
+((-3349 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-480)))) (-3361 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-480)))))
+(-13 (-1082) (-10 -8 (-15 -3349 ((-1134) $)) (-15 -3361 ((-1134) $))))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-2518 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#2| $ |#1| |#2|) 16)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2450 (((-3 |#2| "failed") |#1| $) 20)) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-1450 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-3 |#2| "failed") |#1| $) 18)) (-2661 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) NIL)) (-3799 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 ((|#1| $) NIL (|has| |#1| (-850)))) (-3276 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2579 ((|#1| $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4415))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4314 (((-644 |#1|) $) 13)) (-3422 (((-112) |#1| $) NIL)) (-3765 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2903 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2140 (((-644 |#1|) $) NIL)) (-3935 (((-112) |#1| $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4101 ((|#2| $) NIL (|has| |#1| (-850)))) (-3591 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL)) (-3750 (($ $ |#2|) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) 19)) (-4393 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3551 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-3780 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3801 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 11 (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3020 (((-771) $) 15 (|has| $ (-6 -4414)))))
+(((-481 |#1| |#2| |#3|) (-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4414))) (-1099) (-1099) (-1157)) (T -481))
+NIL
+(-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4414)))
+((-4343 (((-566) (-566) (-566)) 19)) (-2420 (((-112) (-566) (-566) (-566) (-566)) 28)) (-1318 (((-1264 (-644 (-566))) (-771) (-771)) 44)))
+(((-482) (-10 -7 (-15 -4343 ((-566) (-566) (-566))) (-15 -2420 ((-112) (-566) (-566) (-566) (-566))) (-15 -1318 ((-1264 (-644 (-566))) (-771) (-771))))) (T -482))
+((-1318 (*1 *2 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1264 (-644 (-566)))) (-5 *1 (-482)))) (-2420 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *2 (-112)) (-5 *1 (-482)))) (-4343 (*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-482)))))
+(-10 -7 (-15 -4343 ((-566) (-566) (-566))) (-15 -2420 ((-112) (-566) (-566) (-566) (-566))) (-15 -1318 ((-1264 (-644 (-566))) (-771) (-771))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-864 |#1|)) $) NIL)) (-2438 (((-1171 $) $ (-864 |#1|)) NIL) (((-1171 |#2|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#2| (-558)))) (-1968 (($ $) NIL (|has| |#2| (-558)))) (-2644 (((-112) $) NIL (|has| |#2| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-864 |#1|))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2179 (($ $) NIL (|has| |#2| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#2| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-864 |#1|) "failed") $) NIL)) (-1867 ((|#2| $) NIL) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-864 |#1|) $) NIL)) (-2662 (($ $ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-3269 (($ $ (-644 (-566))) NIL)) (-3645 (($ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#2| (-909)))) (-2871 (($ $ |#2| (-484 (-3020 |#1|) (-771)) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2597 (($ (-1171 |#2|) (-864 |#1|)) NIL) (($ (-1171 $) (-864 |#1|)) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#2| (-484 (-3020 |#1|) (-771))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-864 |#1|)) NIL)) (-2466 (((-484 (-3020 |#1|) (-771)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-2443 (($ (-1 (-484 (-3020 |#1|) (-771)) (-484 (-3020 |#1|) (-771))) $) NIL)) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-1984 (((-3 (-864 |#1|) "failed") $) NIL)) (-3614 (($ $) NIL)) (-3626 ((|#2| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-2402 (((-1157) $) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-864 |#1|)) (|:| -2456 (-771))) "failed") $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 ((|#2| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#2| (-909)))) (-2997 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-558)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-864 |#1|) |#2|) NIL) (($ $ (-644 (-864 |#1|)) (-644 |#2|)) NIL) (($ $ (-864 |#1|) $) NIL) (($ $ (-644 (-864 |#1|)) (-644 $)) NIL)) (-3309 (($ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-2578 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2108 (((-484 (-3020 |#1|) (-771)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-864 |#1|) (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3042 ((|#2| $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-864 |#1|)) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#2| (-558)))) (-3456 (((-644 |#2|) $) NIL)) (-3756 ((|#2| $ (-484 (-3020 |#1|) (-771))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#2| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#2| (-558)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#2| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#2| (-38 (-409 (-566))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-483 |#1| |#2|) (-13 (-949 |#2| (-484 (-3020 |#1|) (-771)) (-864 |#1|)) (-10 -8 (-15 -3269 ($ $ (-644 (-566)))))) (-644 (-1175)) (-1049)) (T -483))
+((-3269 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-483 *3 *4)) (-14 *3 (-644 (-1175))) (-4 *4 (-1049)))))
+(-13 (-949 |#2| (-484 (-3020 |#1|) (-771)) (-864 |#1|)) (-10 -8 (-15 -3269 ($ $ (-644 (-566))))))
+((-3009 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-3015 (((-112) $) NIL (|has| |#2| (-131)))) (-3047 (($ (-921)) NIL (|has| |#2| (-1049)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-4385 (($ $ $) NIL (|has| |#2| (-793)))) (-4014 (((-3 $ "failed") $ $) NIL (|has| |#2| (-131)))) (-1574 (((-112) $ (-771)) NIL)) (-4070 (((-771)) NIL (|has| |#2| (-370)))) (-2899 (((-566) $) NIL (|has| |#2| (-848)))) (-3916 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1099)))) (-1867 (((-566) $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) ((|#2| $) NIL (|has| |#2| (-1099)))) (-2210 (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL (|has| |#2| (-1049))) (((-689 |#2|) (-689 $)) NIL (|has| |#2| (-1049)))) (-2928 (((-3 $ "failed") $) NIL (|has| |#2| (-726)))) (-1618 (($) NIL (|has| |#2| (-370)))) (-3128 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#2| $ (-566)) 15)) (-1533 (((-112) $) NIL (|has| |#2| (-848)))) (-3799 (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-3466 (((-112) $) NIL (|has| |#2| (-726)))) (-2917 (((-112) $) NIL (|has| |#2| (-848)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3276 (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3117 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-1299 (((-921) $) NIL (|has| |#2| (-370)))) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#2| (-1099)))) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-2208 (($ (-921)) NIL (|has| |#2| (-370)))) (-4056 (((-1119) $) NIL (|has| |#2| (-1099)))) (-4101 ((|#2| $) NIL (|has| (-566) (-850)))) (-3750 (($ $ |#2|) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#2| $ (-566) |#2|) NIL) ((|#2| $ (-566)) NIL)) (-4086 ((|#2| $ $) NIL (|has| |#2| (-1049)))) (-2512 (($ (-1264 |#2|)) NIL)) (-2012 (((-134)) NIL (|has| |#2| (-365)))) (-2578 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-4067 (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-1264 |#2|) $) NIL) (($ (-566)) NIL (-2805 (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) (|has| |#2| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (($ |#2|) NIL (|has| |#2| (-1099))) (((-862) $) NIL (|has| |#2| (-613 (-862))))) (-3996 (((-771)) NIL (|has| |#2| (-1049)) CONST)) (-3801 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-1583 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3333 (($ $) NIL (|has| |#2| (-848)))) (-2493 (($) NIL (|has| |#2| (-131)) CONST)) (-4333 (($) NIL (|has| |#2| (-726)) CONST)) (-2876 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-3010 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2984 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2950 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-2999 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2972 (((-112) $ $) 21 (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3062 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3051 (($ $ $) NIL (|has| |#2| (-1049))) (($ $) NIL (|has| |#2| (-1049)))) (-3040 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-771)) NIL (|has| |#2| (-726))) (($ $ (-921)) NIL (|has| |#2| (-726)))) (* (($ (-566) $) NIL (|has| |#2| (-1049))) (($ $ $) NIL (|has| |#2| (-726))) (($ $ |#2|) NIL (|has| |#2| (-726))) (($ |#2| $) NIL (|has| |#2| (-726))) (($ (-771) $) NIL (|has| |#2| (-131))) (($ (-921) $) NIL (|has| |#2| (-25)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-484 |#1| |#2|) (-238 |#1| |#2|) (-771) (-793)) (T -484))
NIL
(-238 |#1| |#2|)
-((-2985 (((-112) $ $) NIL)) (-4135 (((-644 (-508)) $) 14)) (-2628 (((-508) $) 12)) (-2878 (((-1157) $) NIL)) (-3593 (($ (-508) (-644 (-508))) 10)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 21) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-485) (-13 (-1082) (-10 -8 (-15 -3593 ($ (-508) (-644 (-508)))) (-15 -2628 ((-508) $)) (-15 -4135 ((-644 (-508)) $))))) (T -485))
-((-3593 (*1 *1 *2 *3) (-12 (-5 *3 (-644 (-508))) (-5 *2 (-508)) (-5 *1 (-485)))) (-2628 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-485)))) (-4135 (*1 *2 *1) (-12 (-5 *2 (-644 (-508))) (-5 *1 (-485)))))
-(-13 (-1082) (-10 -8 (-15 -3593 ($ (-508) (-644 (-508)))) (-15 -2628 ((-508) $)) (-15 -4135 ((-644 (-508)) $))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) NIL)) (-2342 (($) NIL T CONST)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-1865 (($ $ $) 50)) (-3132 (($ $ $) 49)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3059 ((|#1| $) 40)) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3119 ((|#1| $) 41)) (-4265 (($ |#1| $) 18)) (-2959 (($ (-644 |#1|)) 19)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2658 ((|#1| $) 34)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) 11)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) 47)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2997 (((-771) $) 29 (|has| $ (-6 -4417)))))
-(((-486 |#1|) (-13 (-968 |#1|) (-10 -8 (-15 -2959 ($ (-644 |#1|))))) (-850)) (T -486))
-((-2959 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-486 *3)))))
-(-13 (-968 |#1|) (-10 -8 (-15 -2959 ($ (-644 |#1|)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-4362 (($ $) 72)) (-2011 (((-112) $) NIL)) (-2878 (((-1157) $) NIL)) (-4024 (((-415 |#2| (-409 |#2|) |#3| |#4|) $) 45)) (-4033 (((-1119) $) NIL)) (-4067 (((-3 |#4| "failed") $) 118)) (-4330 (($ (-415 |#2| (-409 |#2|) |#3| |#4|)) 82) (($ |#4|) 31) (($ |#1| |#1|) 128) (($ |#1| |#1| (-566)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 141)) (-3282 (((-2 (|:| -4224 (-415 |#2| (-409 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 47)) (-2512 (((-862) $) 111)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 32 T CONST)) (-2940 (((-112) $ $) 122)) (-3047 (($ $) 78) (($ $ $) NIL)) (-3034 (($ $ $) 73)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 79)))
+((-3009 (((-112) $ $) NIL)) (-1324 (((-644 (-508)) $) 14)) (-2639 (((-508) $) 12)) (-2402 (((-1157) $) NIL)) (-2610 (($ (-508) (-644 (-508))) 10)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 21) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-485) (-13 (-1082) (-10 -8 (-15 -2610 ($ (-508) (-644 (-508)))) (-15 -2639 ((-508) $)) (-15 -1324 ((-644 (-508)) $))))) (T -485))
+((-2610 (*1 *1 *2 *3) (-12 (-5 *3 (-644 (-508))) (-5 *2 (-508)) (-5 *1 (-485)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-485)))) (-1324 (*1 *2 *1) (-12 (-5 *2 (-644 (-508))) (-5 *1 (-485)))))
+(-13 (-1082) (-10 -8 (-15 -2610 ($ (-508) (-644 (-508)))) (-15 -2639 ((-508) $)) (-15 -1324 ((-644 (-508)) $))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) NIL)) (-3877 (($) NIL T CONST)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-2761 (($ $ $) 50)) (-3891 (($ $ $) 49)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2709 ((|#1| $) 40)) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3765 ((|#1| $) 41)) (-2903 (($ |#1| $) 18)) (-1847 (($ (-644 |#1|)) 19)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3852 ((|#1| $) 34)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) 11)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) 47)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3020 (((-771) $) 29 (|has| $ (-6 -4414)))))
+(((-486 |#1|) (-13 (-968 |#1|) (-10 -8 (-15 -1847 ($ (-644 |#1|))))) (-850)) (T -486))
+((-1847 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-486 *3)))))
+(-13 (-968 |#1|) (-10 -8 (-15 -1847 ($ (-644 |#1|)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-1580 (($ $) 72)) (-3664 (((-112) $) NIL)) (-2402 (((-1157) $) NIL)) (-2412 (((-415 |#2| (-409 |#2|) |#3| |#4|) $) 45)) (-4056 (((-1119) $) NIL)) (-4152 (((-3 |#4| "failed") $) 118)) (-2345 (($ (-415 |#2| (-409 |#2|) |#3| |#4|)) 82) (($ |#4|) 31) (($ |#1| |#1|) 128) (($ |#1| |#1| (-566)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 141)) (-2731 (((-2 (|:| -4249 (-415 |#2| (-409 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 47)) (-3780 (((-862) $) 111)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 32 T CONST)) (-2950 (((-112) $ $) 122)) (-3051 (($ $) 78) (($ $ $) NIL)) (-3040 (($ $ $) 73)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 79)))
(((-487 |#1| |#2| |#3| |#4|) (-337 |#1| |#2| |#3| |#4|) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -487))
NIL
(-337 |#1| |#2| |#3| |#4|)
-((-2844 (((-566) (-644 (-566))) 55)) (-3183 ((|#1| (-644 |#1|)) 97)) (-1453 (((-644 |#1|) (-644 |#1|)) 98)) (-4220 (((-644 |#1|) (-644 |#1|)) 100)) (-2222 ((|#1| (-644 |#1|)) 99)) (-3181 (((-644 (-566)) (-644 |#1|)) 58)))
-(((-488 |#1|) (-10 -7 (-15 -2222 (|#1| (-644 |#1|))) (-15 -3183 (|#1| (-644 |#1|))) (-15 -4220 ((-644 |#1|) (-644 |#1|))) (-15 -1453 ((-644 |#1|) (-644 |#1|))) (-15 -3181 ((-644 (-566)) (-644 |#1|))) (-15 -2844 ((-566) (-644 (-566))))) (-1240 (-566))) (T -488))
-((-2844 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-566)) (-5 *1 (-488 *4)) (-4 *4 (-1240 *2)))) (-3181 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-1240 (-566))) (-5 *2 (-644 (-566))) (-5 *1 (-488 *4)))) (-1453 (*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1240 (-566))) (-5 *1 (-488 *3)))) (-4220 (*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1240 (-566))) (-5 *1 (-488 *3)))) (-3183 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-5 *1 (-488 *2)) (-4 *2 (-1240 (-566))))) (-2222 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-5 *1 (-488 *2)) (-4 *2 (-1240 (-566))))))
-(-10 -7 (-15 -2222 (|#1| (-644 |#1|))) (-15 -3183 (|#1| (-644 |#1|))) (-15 -4220 ((-644 |#1|) (-644 |#1|))) (-15 -1453 ((-644 |#1|) (-644 |#1|))) (-15 -3181 ((-644 (-566)) (-644 |#1|))) (-15 -2844 ((-566) (-644 (-566)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2452 (((-566) $) NIL (|has| (-566) (-308)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL (|has| (-566) (-820)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-566) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-566) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-566) (-1038 (-566))))) (-1756 (((-566) $) NIL) (((-1175) $) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-566) (-1038 (-566)))) (((-566) $) NIL (|has| (-566) (-1038 (-566))))) (-2926 (($ $ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-566) (-547)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-1684 (((-112) $) NIL (|has| (-566) (-820)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-566) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-566) (-886 (-381))))) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL)) (-3001 (((-566) $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| (-566) (-1150)))) (-1578 (((-112) $) NIL (|has| (-566) (-820)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| (-566) (-850)))) (-3077 (($ (-1 (-566) (-566)) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-566) (-1150)) CONST)) (-3986 (($ (-409 (-566))) 9)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL (|has| (-566) (-308))) (((-409 (-566)) $) NIL)) (-4317 (((-566) $) NIL (|has| (-566) (-547)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2070 (($ $ (-644 (-566)) (-644 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-566) (-566)) NIL (|has| (-566) (-310 (-566)))) (($ $ (-295 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-295 (-566)))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-1175)) (-644 (-566))) NIL (|has| (-566) (-516 (-1175) (-566)))) (($ $ (-1175) (-566)) NIL (|has| (-566) (-516 (-1175) (-566))))) (-1813 (((-771) $) NIL)) (-4386 (($ $ (-566)) NIL (|has| (-566) (-287 (-566) (-566))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-3413 (($ $) NIL)) (-3013 (((-566) $) NIL)) (-3134 (((-892 (-566)) $) NIL (|has| (-566) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-566) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-566) (-614 (-538)))) (((-381) $) NIL (|has| (-566) (-1022))) (((-225) $) NIL (|has| (-566) (-1022)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-566) (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) 8) (($ (-566)) NIL) (($ (-1175)) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL) (((-1004 16) $) 10)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-566) (-909))) (|has| (-566) (-145))))) (-3795 (((-771)) NIL T CONST)) (-1604 (((-566) $) NIL (|has| (-566) (-547)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-1346 (($ $) NIL (|has| (-566) (-820)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-2998 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2962 (((-112) $ $) NIL (|has| (-566) (-850)))) (-3061 (($ $ $) NIL) (($ (-566) (-566)) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-566) $) NIL) (($ $ (-566)) NIL)))
-(((-489) (-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 16)) (-10 -8 (-15 -1539 ((-409 (-566)) $)) (-15 -3986 ($ (-409 (-566))))))) (T -489))
-((-1539 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-489)))) (-3986 (*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-489)))))
-(-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 16)) (-10 -8 (-15 -1539 ((-409 (-566)) $)) (-15 -3986 ($ (-409 (-566))))))
-((-2404 (((-644 |#2|) $) 29)) (-1927 (((-112) |#2| $) 34)) (-2822 (((-112) (-1 (-112) |#2|) $) 24)) (-2070 (($ $ (-644 (-295 |#2|))) 13) (($ $ (-295 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-644 |#2|) (-644 |#2|)) NIL)) (-4044 (((-771) (-1 (-112) |#2|) $) 28) (((-771) |#2| $) 32)) (-2512 (((-862) $) 43)) (-3427 (((-112) (-1 (-112) |#2|) $) 23)) (-2940 (((-112) $ $) 37)) (-2997 (((-771) $) 18)))
-(((-490 |#1| |#2|) (-10 -8 (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -2070 (|#1| |#1| (-644 |#2|) (-644 |#2|))) (-15 -2070 (|#1| |#1| |#2| |#2|)) (-15 -2070 (|#1| |#1| (-295 |#2|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -1927 ((-112) |#2| |#1|)) (-15 -4044 ((-771) |#2| |#1|)) (-15 -2404 ((-644 |#2|) |#1|)) (-15 -4044 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -2822 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2997 ((-771) |#1|))) (-491 |#2|) (-1214)) (T -490))
-NIL
-(-10 -8 (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -2070 (|#1| |#1| (-644 |#2|) (-644 |#2|))) (-15 -2070 (|#1| |#1| |#2| |#2|)) (-15 -2070 (|#1| |#1| (-295 |#2|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -1927 ((-112) |#2| |#1|)) (-15 -4044 ((-771) |#2| |#1|)) (-15 -2404 ((-644 |#2|) |#1|)) (-15 -4044 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -2822 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2997 ((-771) |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) 8)) (-2342 (($) 7 T CONST)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-2054 (((-566) (-644 (-566))) 55)) (-3064 ((|#1| (-644 |#1|)) 97)) (-4095 (((-644 |#1|) (-644 |#1|)) 98)) (-3717 (((-644 |#1|) (-644 |#1|)) 100)) (-2235 ((|#1| (-644 |#1|)) 99)) (-3042 (((-644 (-566)) (-644 |#1|)) 58)))
+(((-488 |#1|) (-10 -7 (-15 -2235 (|#1| (-644 |#1|))) (-15 -3064 (|#1| (-644 |#1|))) (-15 -3717 ((-644 |#1|) (-644 |#1|))) (-15 -4095 ((-644 |#1|) (-644 |#1|))) (-15 -3042 ((-644 (-566)) (-644 |#1|))) (-15 -2054 ((-566) (-644 (-566))))) (-1240 (-566))) (T -488))
+((-2054 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-566)) (-5 *1 (-488 *4)) (-4 *4 (-1240 *2)))) (-3042 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-1240 (-566))) (-5 *2 (-644 (-566))) (-5 *1 (-488 *4)))) (-4095 (*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1240 (-566))) (-5 *1 (-488 *3)))) (-3717 (*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1240 (-566))) (-5 *1 (-488 *3)))) (-3064 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-5 *1 (-488 *2)) (-4 *2 (-1240 (-566))))) (-2235 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-5 *1 (-488 *2)) (-4 *2 (-1240 (-566))))))
+(-10 -7 (-15 -2235 (|#1| (-644 |#1|))) (-15 -3064 (|#1| (-644 |#1|))) (-15 -3717 ((-644 |#1|) (-644 |#1|))) (-15 -4095 ((-644 |#1|) (-644 |#1|))) (-15 -3042 ((-644 (-566)) (-644 |#1|))) (-15 -2054 ((-566) (-644 (-566)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2486 (((-566) $) NIL (|has| (-566) (-308)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL (|has| (-566) (-820)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-566) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-566) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-566) (-1038 (-566))))) (-1867 (((-566) $) NIL) (((-1175) $) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-566) (-1038 (-566)))) (((-566) $) NIL (|has| (-566) (-1038 (-566))))) (-2949 (($ $ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-566) (-547)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1533 (((-112) $) NIL (|has| (-566) (-820)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-566) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-566) (-886 (-381))))) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL)) (-3088 (((-566) $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| (-566) (-1150)))) (-2917 (((-112) $) NIL (|has| (-566) (-820)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| (-566) (-850)))) (-3152 (($ (-1 (-566) (-566)) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-566) (-1150)) CONST)) (-2064 (($ (-409 (-566))) 9)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL (|has| (-566) (-308))) (((-409 (-566)) $) NIL)) (-2209 (((-566) $) NIL (|has| (-566) (-547)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2095 (($ $ (-644 (-566)) (-644 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-566) (-566)) NIL (|has| (-566) (-310 (-566)))) (($ $ (-295 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-295 (-566)))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-1175)) (-644 (-566))) NIL (|has| (-566) (-516 (-1175) (-566)))) (($ $ (-1175) (-566)) NIL (|has| (-566) (-516 (-1175) (-566))))) (-3470 (((-771) $) NIL)) (-4393 (($ $ (-566)) NIL (|has| (-566) (-287 (-566) (-566))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-1431 (($ $) NIL)) (-3100 (((-566) $) NIL)) (-3204 (((-892 (-566)) $) NIL (|has| (-566) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-566) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-566) (-614 (-538)))) (((-381) $) NIL (|has| (-566) (-1022))) (((-225) $) NIL (|has| (-566) (-1022)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-566) (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) 8) (($ (-566)) NIL) (($ (-1175)) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL) (((-1004 16) $) 10)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-566) (-909))) (|has| (-566) (-145))))) (-3996 (((-771)) NIL T CONST)) (-1982 (((-566) $) NIL (|has| (-566) (-547)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3333 (($ $) NIL (|has| (-566) (-820)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-3010 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2972 (((-112) $ $) NIL (|has| (-566) (-850)))) (-3062 (($ $ $) NIL) (($ (-566) (-566)) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-566) $) NIL) (($ $ (-566)) NIL)))
+(((-489) (-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 16)) (-10 -8 (-15 -2539 ((-409 (-566)) $)) (-15 -2064 ($ (-409 (-566))))))) (T -489))
+((-2539 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-489)))) (-2064 (*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-489)))))
+(-13 (-992 (-566)) (-613 (-409 (-566))) (-613 (-1004 16)) (-10 -8 (-15 -2539 ((-409 (-566)) $)) (-15 -2064 ($ (-409 (-566))))))
+((-3276 (((-644 |#2|) $) 29)) (-2183 (((-112) |#2| $) 34)) (-3044 (((-112) (-1 (-112) |#2|) $) 24)) (-2095 (($ $ (-644 (-295 |#2|))) 13) (($ $ (-295 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-644 |#2|) (-644 |#2|)) NIL)) (-4067 (((-771) (-1 (-112) |#2|) $) 28) (((-771) |#2| $) 32)) (-3780 (((-862) $) 43)) (-1583 (((-112) (-1 (-112) |#2|) $) 23)) (-2950 (((-112) $ $) 37)) (-3020 (((-771) $) 18)))
+(((-490 |#1| |#2|) (-10 -8 (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -2095 (|#1| |#1| (-644 |#2|) (-644 |#2|))) (-15 -2095 (|#1| |#1| |#2| |#2|)) (-15 -2095 (|#1| |#1| (-295 |#2|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -2183 ((-112) |#2| |#1|)) (-15 -4067 ((-771) |#2| |#1|)) (-15 -3276 ((-644 |#2|) |#1|)) (-15 -4067 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -3044 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3020 ((-771) |#1|))) (-491 |#2|) (-1214)) (T -490))
+NIL
+(-10 -8 (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -2095 (|#1| |#1| (-644 |#2|) (-644 |#2|))) (-15 -2095 (|#1| |#1| |#2| |#2|)) (-15 -2095 (|#1| |#1| (-295 |#2|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#2|)))) (-15 -2183 ((-112) |#2| |#1|)) (-15 -4067 ((-771) |#2| |#1|)) (-15 -3276 ((-644 |#2|) |#1|)) (-15 -4067 ((-771) (-1 (-112) |#2|) |#1|)) (-15 -3044 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3020 ((-771) |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) 8)) (-3877 (($) 7 T CONST)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-491 |#1|) (-140) (-1214)) (T -491))
-((-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-491 *3)) (-4 *3 (-1214)))) (-1323 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4418)) (-4 *1 (-491 *3)) (-4 *3 (-1214)))) (-3427 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4417)) (-4 *1 (-491 *4)) (-4 *4 (-1214)) (-5 *2 (-112)))) (-2822 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4417)) (-4 *1 (-491 *4)) (-4 *4 (-1214)) (-5 *2 (-112)))) (-4044 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4417)) (-4 *1 (-491 *4)) (-4 *4 (-1214)) (-5 *2 (-771)))) (-3372 (*1 *2 *1) (-12 (|has| *1 (-6 -4417)) (-4 *1 (-491 *3)) (-4 *3 (-1214)) (-5 *2 (-644 *3)))) (-2404 (*1 *2 *1) (-12 (|has| *1 (-6 -4417)) (-4 *1 (-491 *3)) (-4 *3 (-1214)) (-5 *2 (-644 *3)))) (-4044 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4417)) (-4 *1 (-491 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-771)))) (-1927 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4417)) (-4 *1 (-491 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-112)))))
-(-13 (-34) (-10 -8 (IF (|has| |t#1| (-613 (-862))) (-6 (-613 (-862))) |%noBranch|) (IF (|has| |t#1| (-1099)) (-6 (-1099)) |%noBranch|) (IF (|has| |t#1| (-1099)) (IF (|has| |t#1| (-310 |t#1|)) (-6 (-310 |t#1|)) |%noBranch|) |%noBranch|) (-15 -3077 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4418)) (-15 -1323 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4417)) (PROGN (-15 -3427 ((-112) (-1 (-112) |t#1|) $)) (-15 -2822 ((-112) (-1 (-112) |t#1|) $)) (-15 -4044 ((-771) (-1 (-112) |t#1|) $)) (-15 -3372 ((-644 |t#1|) $)) (-15 -2404 ((-644 |t#1|) $)) (IF (|has| |t#1| (-1099)) (PROGN (-15 -4044 ((-771) |t#1| $)) (-15 -1927 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
+((-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-491 *3)) (-4 *3 (-1214)))) (-3117 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4415)) (-4 *1 (-491 *3)) (-4 *3 (-1214)))) (-1583 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4414)) (-4 *1 (-491 *4)) (-4 *4 (-1214)) (-5 *2 (-112)))) (-3044 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4414)) (-4 *1 (-491 *4)) (-4 *4 (-1214)) (-5 *2 (-112)))) (-4067 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4414)) (-4 *1 (-491 *4)) (-4 *4 (-1214)) (-5 *2 (-771)))) (-3799 (*1 *2 *1) (-12 (|has| *1 (-6 -4414)) (-4 *1 (-491 *3)) (-4 *3 (-1214)) (-5 *2 (-644 *3)))) (-3276 (*1 *2 *1) (-12 (|has| *1 (-6 -4414)) (-4 *1 (-491 *3)) (-4 *3 (-1214)) (-5 *2 (-644 *3)))) (-4067 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4414)) (-4 *1 (-491 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-771)))) (-2183 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4414)) (-4 *1 (-491 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-112)))))
+(-13 (-34) (-10 -8 (IF (|has| |t#1| (-613 (-862))) (-6 (-613 (-862))) |%noBranch|) (IF (|has| |t#1| (-1099)) (-6 (-1099)) |%noBranch|) (IF (|has| |t#1| (-1099)) (IF (|has| |t#1| (-310 |t#1|)) (-6 (-310 |t#1|)) |%noBranch|) |%noBranch|) (-15 -3152 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4415)) (-15 -3117 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4414)) (PROGN (-15 -1583 ((-112) (-1 (-112) |t#1|) $)) (-15 -3044 ((-112) (-1 (-112) |t#1|) $)) (-15 -4067 ((-771) (-1 (-112) |t#1|) $)) (-15 -3799 ((-644 |t#1|) $)) (-15 -3276 ((-644 |t#1|) $)) (IF (|has| |t#1| (-1099)) (PROGN (-15 -4067 ((-771) |t#1| $)) (-15 -2183 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-2512 ((|#1| $) 6) (($ |#1|) 9)))
+((-3780 ((|#1| $) 6) (($ |#1|) 9)))
(((-492 |#1|) (-140) (-1214)) (T -492))
NIL
(-13 (-613 |t#1|) (-616 |t#1|))
(((-616 |#1|) . T) ((-613 |#1|) . T))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-2463 (($ (-1157)) 8)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 15) (((-1157) $) 12)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 11)))
-(((-493) (-13 (-1099) (-613 (-1157)) (-10 -8 (-15 -2463 ($ (-1157)))))) (T -493))
-((-2463 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-493)))))
-(-13 (-1099) (-613 (-1157)) (-10 -8 (-15 -2463 ($ (-1157)))))
-((-3235 (($ $) 15)) (-3215 (($ $) 24)) (-3259 (($ $) 12)) (-3267 (($ $) 10)) (-3248 (($ $) 17)) (-3223 (($ $) 22)))
-(((-494 |#1|) (-10 -8 (-15 -3223 (|#1| |#1|)) (-15 -3248 (|#1| |#1|)) (-15 -3267 (|#1| |#1|)) (-15 -3259 (|#1| |#1|)) (-15 -3215 (|#1| |#1|)) (-15 -3235 (|#1| |#1|))) (-495)) (T -494))
-NIL
-(-10 -8 (-15 -3223 (|#1| |#1|)) (-15 -3248 (|#1| |#1|)) (-15 -3267 (|#1| |#1|)) (-15 -3259 (|#1| |#1|)) (-15 -3215 (|#1| |#1|)) (-15 -3235 (|#1| |#1|)))
-((-3235 (($ $) 11)) (-3215 (($ $) 10)) (-3259 (($ $) 9)) (-3267 (($ $) 8)) (-3248 (($ $) 7)) (-3223 (($ $) 6)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-2586 (($ (-1157)) 8)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 15) (((-1157) $) 12)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 11)))
+(((-493) (-13 (-1099) (-613 (-1157)) (-10 -8 (-15 -2586 ($ (-1157)))))) (T -493))
+((-2586 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-493)))))
+(-13 (-1099) (-613 (-1157)) (-10 -8 (-15 -2586 ($ (-1157)))))
+((-2865 (($ $) 15)) (-2843 (($ $) 24)) (-2888 (($ $) 12)) (-2897 (($ $) 10)) (-2877 (($ $) 17)) (-2853 (($ $) 22)))
+(((-494 |#1|) (-10 -8 (-15 -2853 (|#1| |#1|)) (-15 -2877 (|#1| |#1|)) (-15 -2897 (|#1| |#1|)) (-15 -2888 (|#1| |#1|)) (-15 -2843 (|#1| |#1|)) (-15 -2865 (|#1| |#1|))) (-495)) (T -494))
+NIL
+(-10 -8 (-15 -2853 (|#1| |#1|)) (-15 -2877 (|#1| |#1|)) (-15 -2897 (|#1| |#1|)) (-15 -2888 (|#1| |#1|)) (-15 -2843 (|#1| |#1|)) (-15 -2865 (|#1| |#1|)))
+((-2865 (($ $) 11)) (-2843 (($ $) 10)) (-2888 (($ $) 9)) (-2897 (($ $) 8)) (-2877 (($ $) 7)) (-2853 (($ $) 6)))
(((-495) (-140)) (T -495))
-((-3235 (*1 *1 *1) (-4 *1 (-495))) (-3215 (*1 *1 *1) (-4 *1 (-495))) (-3259 (*1 *1 *1) (-4 *1 (-495))) (-3267 (*1 *1 *1) (-4 *1 (-495))) (-3248 (*1 *1 *1) (-4 *1 (-495))) (-3223 (*1 *1 *1) (-4 *1 (-495))))
-(-13 (-10 -8 (-15 -3223 ($ $)) (-15 -3248 ($ $)) (-15 -3267 ($ $)) (-15 -3259 ($ $)) (-15 -3215 ($ $)) (-15 -3235 ($ $))))
-((-2391 (((-420 |#4|) |#4| (-1 (-420 |#2|) |#2|)) 54)))
-(((-496 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2391 ((-420 |#4|) |#4| (-1 (-420 |#2|) |#2|)))) (-365) (-1240 |#1|) (-13 (-365) (-147) (-724 |#1| |#2|)) (-1240 |#3|)) (T -496))
-((-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-4 *7 (-13 (-365) (-147) (-724 *5 *6))) (-5 *2 (-420 *3)) (-5 *1 (-496 *5 *6 *7 *3)) (-4 *3 (-1240 *7)))))
-(-10 -7 (-15 -2391 ((-420 |#4|) |#4| (-1 (-420 |#2|) |#2|))))
-((-2985 (((-112) $ $) NIL)) (-1515 (((-644 $) (-1171 $) (-1175)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-952 $)) NIL)) (-3265 (($ (-1171 $) (-1175)) NIL) (($ (-1171 $)) NIL) (($ (-952 $)) NIL)) (-3958 (((-112) $) 39)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-2872 (((-112) $ $) 73)) (-2248 (((-644 (-612 $)) $) 50)) (-4126 (((-3 $ "failed") $ $) NIL)) (-3226 (($ $ (-295 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-2402 (($ $) NIL)) (-1561 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-3844 (((-644 $) (-1171 $) (-1175)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-952 $)) NIL)) (-2170 (($ (-1171 $) (-1175)) NIL) (($ (-1171 $)) NIL) (($ (-952 $)) NIL)) (-2977 (((-3 (-612 $) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL)) (-1756 (((-612 $) $) NIL) (((-566) $) NIL) (((-409 (-566)) $) 55)) (-2926 (($ $ $) NIL)) (-1628 (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -1380 (-689 (-409 (-566)))) (|:| |vec| (-1264 (-409 (-566))))) (-689 $) (-1264 $)) NIL) (((-689 (-409 (-566))) (-689 $)) NIL)) (-4362 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-4334 (($ $) NIL) (($ (-644 $)) NIL)) (-3674 (((-644 (-114)) $) NIL)) (-2336 (((-114) (-114)) NIL)) (-2741 (((-112) $) 42)) (-2884 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-3001 (((-1124 (-566) (-612 $)) $) 37)) (-3979 (($ $ (-566)) NIL)) (-1559 (((-1171 $) (-1171 $) (-612 $)) 87) (((-1171 $) (-1171 $) (-644 (-612 $))) 62) (($ $ (-612 $)) 76) (($ $ (-644 (-612 $))) 77)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2734 (((-1171 $) (-612 $)) 74 (|has| $ (-1049)))) (-3077 (($ (-1 $ $) (-612 $)) NIL)) (-2230 (((-3 (-612 $) "failed") $) NIL)) (-2184 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-2322 (((-644 (-612 $)) $) NIL)) (-3083 (($ (-114) $) NIL) (($ (-114) (-644 $)) NIL)) (-2181 (((-112) $ (-114)) NIL) (((-112) $ (-1175)) NIL)) (-2626 (($ $) NIL)) (-3173 (((-771) $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ (-644 $)) NIL) (($ $ $) NIL)) (-1981 (((-112) $ $) NIL) (((-112) $ (-1175)) NIL)) (-2391 (((-420 $) $) NIL)) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1693 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2070 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-1175) (-1 $ (-644 $))) NIL) (($ $ (-1175) (-1 $ $)) NIL) (($ $ (-644 (-114)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-114) (-1 $ (-644 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-1813 (((-771) $) NIL)) (-4386 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-644 $)) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2811 (($ $) NIL) (($ $ $) NIL)) (-2862 (($ $ (-771)) NIL) (($ $) 36)) (-3013 (((-1124 (-566) (-612 $)) $) 20)) (-2127 (($ $) NIL (|has| $ (-1049)))) (-3134 (((-381) $) 101) (((-225) $) 109) (((-169 (-381)) $) 117)) (-2512 (((-862) $) NIL) (($ (-612 $)) NIL) (($ (-409 (-566))) NIL) (($ $) NIL) (($ (-566)) NIL) (($ (-1124 (-566) (-612 $))) 21)) (-3795 (((-771)) NIL T CONST)) (-3236 (($ $) NIL) (($ (-644 $)) NIL)) (-2306 (((-112) (-114)) 93)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-2485 (($) 10 T CONST)) (-2495 (($) 22 T CONST)) (-2840 (($ $ (-771)) NIL) (($ $) NIL)) (-2940 (((-112) $ $) 24)) (-3061 (($ $ $) 44)) (-3047 (($ $ $) NIL) (($ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-409 (-566))) NIL) (($ $ (-566)) 48) (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL) (($ $ $) 27) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL)))
-(((-497) (-13 (-303) (-27) (-1038 (-566)) (-1038 (-409 (-566))) (-639 (-566)) (-1022) (-639 (-409 (-566))) (-147) (-614 (-169 (-381))) (-233) (-10 -8 (-15 -2512 ($ (-1124 (-566) (-612 $)))) (-15 -3001 ((-1124 (-566) (-612 $)) $)) (-15 -3013 ((-1124 (-566) (-612 $)) $)) (-15 -4362 ($ $)) (-15 -2872 ((-112) $ $)) (-15 -1559 ((-1171 $) (-1171 $) (-612 $))) (-15 -1559 ((-1171 $) (-1171 $) (-644 (-612 $)))) (-15 -1559 ($ $ (-612 $))) (-15 -1559 ($ $ (-644 (-612 $))))))) (T -497))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1124 (-566) (-612 (-497)))) (-5 *1 (-497)))) (-3001 (*1 *2 *1) (-12 (-5 *2 (-1124 (-566) (-612 (-497)))) (-5 *1 (-497)))) (-3013 (*1 *2 *1) (-12 (-5 *2 (-1124 (-566) (-612 (-497)))) (-5 *1 (-497)))) (-4362 (*1 *1 *1) (-5 *1 (-497))) (-2872 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-497)))) (-1559 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 (-497))) (-5 *3 (-612 (-497))) (-5 *1 (-497)))) (-1559 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 (-497))) (-5 *3 (-644 (-612 (-497)))) (-5 *1 (-497)))) (-1559 (*1 *1 *1 *2) (-12 (-5 *2 (-612 (-497))) (-5 *1 (-497)))) (-1559 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-612 (-497)))) (-5 *1 (-497)))))
-(-13 (-303) (-27) (-1038 (-566)) (-1038 (-409 (-566))) (-639 (-566)) (-1022) (-639 (-409 (-566))) (-147) (-614 (-169 (-381))) (-233) (-10 -8 (-15 -2512 ($ (-1124 (-566) (-612 $)))) (-15 -3001 ((-1124 (-566) (-612 $)) $)) (-15 -3013 ((-1124 (-566) (-612 $)) $)) (-15 -4362 ($ $)) (-15 -2872 ((-112) $ $)) (-15 -1559 ((-1171 $) (-1171 $) (-612 $))) (-15 -1559 ((-1171 $) (-1171 $) (-644 (-612 $)))) (-15 -1559 ($ $ (-612 $))) (-15 -1559 ($ $ (-644 (-612 $))))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-566) |#1|) 47 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) 42 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 41)) (-3968 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-4257 (($ (-771) |#1|) 21)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) 17 (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) 44 (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 32 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 38)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4062 ((|#1| $) NIL (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) 15 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) 19)) (-4386 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) 46) (($ $ (-1231 (-566))) NIL)) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) 13)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 24)) (-3704 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2997 (((-771) $) 11 (|has| $ (-6 -4417)))))
+((-2865 (*1 *1 *1) (-4 *1 (-495))) (-2843 (*1 *1 *1) (-4 *1 (-495))) (-2888 (*1 *1 *1) (-4 *1 (-495))) (-2897 (*1 *1 *1) (-4 *1 (-495))) (-2877 (*1 *1 *1) (-4 *1 (-495))) (-2853 (*1 *1 *1) (-4 *1 (-495))))
+(-13 (-10 -8 (-15 -2853 ($ $)) (-15 -2877 ($ $)) (-15 -2897 ($ $)) (-15 -2888 ($ $)) (-15 -2843 ($ $)) (-15 -2865 ($ $))))
+((-2473 (((-420 |#4|) |#4| (-1 (-420 |#2|) |#2|)) 54)))
+(((-496 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2473 ((-420 |#4|) |#4| (-1 (-420 |#2|) |#2|)))) (-365) (-1240 |#1|) (-13 (-365) (-147) (-724 |#1| |#2|)) (-1240 |#3|)) (T -496))
+((-2473 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-4 *7 (-13 (-365) (-147) (-724 *5 *6))) (-5 *2 (-420 *3)) (-5 *1 (-496 *5 *6 *7 *3)) (-4 *3 (-1240 *7)))))
+(-10 -7 (-15 -2473 ((-420 |#4|) |#4| (-1 (-420 |#2|) |#2|))))
+((-3009 (((-112) $ $) NIL)) (-3508 (((-644 $) (-1171 $) (-1175)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-952 $)) NIL)) (-2601 (($ (-1171 $) (-1175)) NIL) (($ (-1171 $)) NIL) (($ (-952 $)) NIL)) (-3015 (((-112) $) 39)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-2338 (((-112) $ $) 73)) (-2327 (((-644 (-612 $)) $) 50)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2463 (($ $ (-295 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2484 (($ $) NIL)) (-2738 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-3246 (((-644 $) (-1171 $) (-1175)) NIL) (((-644 $) (-1171 $)) NIL) (((-644 $) (-952 $)) NIL)) (-2778 (($ (-1171 $) (-1175)) NIL) (($ (-1171 $)) NIL) (($ (-952 $)) NIL)) (-3066 (((-3 (-612 $) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL)) (-1867 (((-612 $) $) NIL) (((-566) $) NIL) (((-409 (-566)) $) 55)) (-2949 (($ $ $) NIL)) (-2210 (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -4193 (-689 (-409 (-566)))) (|:| |vec| (-1264 (-409 (-566))))) (-689 $) (-1264 $)) NIL) (((-689 (-409 (-566))) (-689 $)) NIL)) (-1580 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-2388 (($ $) NIL) (($ (-644 $)) NIL)) (-2162 (((-644 (-114)) $) NIL)) (-2415 (((-114) (-114)) NIL)) (-3466 (((-112) $) 42)) (-2469 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-3088 (((-1124 (-566) (-612 $)) $) 37)) (-1986 (($ $ (-566)) NIL)) (-2719 (((-1171 $) (-1171 $) (-612 $)) 87) (((-1171 $) (-1171 $) (-644 (-612 $))) 62) (($ $ (-612 $)) 76) (($ $ (-644 (-612 $))) 77)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3392 (((-1171 $) (-612 $)) 74 (|has| $ (-1049)))) (-3152 (($ (-1 $ $) (-612 $)) NIL)) (-2116 (((-3 (-612 $) "failed") $) NIL)) (-2197 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-2404 (((-644 (-612 $)) $) NIL)) (-3159 (($ (-114) $) NIL) (($ (-114) (-644 $)) NIL)) (-2885 (((-112) $ (-114)) NIL) (((-112) $ (-1175)) NIL)) (-3584 (($ $) NIL)) (-3906 (((-771) $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ (-644 $)) NIL) (($ $ $) NIL)) (-1471 (((-112) $ $) NIL) (((-112) $ (-1175)) NIL)) (-2473 (((-420 $) $) NIL)) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1630 (((-112) $) NIL (|has| $ (-1038 (-566))))) (-2095 (($ $ (-612 $) $) NIL) (($ $ (-644 (-612 $)) (-644 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-1175)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-1175) (-1 $ (-644 $))) NIL) (($ $ (-1175) (-1 $ $)) NIL) (($ $ (-644 (-114)) (-644 (-1 $ $))) NIL) (($ $ (-644 (-114)) (-644 (-1 $ (-644 $)))) NIL) (($ $ (-114) (-1 $ (-644 $))) NIL) (($ $ (-114) (-1 $ $)) NIL)) (-3470 (((-771) $) NIL)) (-4393 (($ (-114) $) NIL) (($ (-114) $ $) NIL) (($ (-114) $ $ $) NIL) (($ (-114) $ $ $ $) NIL) (($ (-114) (-644 $)) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2940 (($ $) NIL) (($ $ $) NIL)) (-2578 (($ $ (-771)) NIL) (($ $) 36)) (-3100 (((-1124 (-566) (-612 $)) $) 20)) (-3601 (($ $) NIL (|has| $ (-1049)))) (-3204 (((-381) $) 101) (((-225) $) 109) (((-169 (-381)) $) 117)) (-3780 (((-862) $) NIL) (($ (-612 $)) NIL) (($ (-409 (-566))) NIL) (($ $) NIL) (($ (-566)) NIL) (($ (-1124 (-566) (-612 $))) 21)) (-3996 (((-771)) NIL T CONST)) (-1442 (($ $) NIL) (($ (-644 $)) NIL)) (-1643 (((-112) (-114)) 93)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-2493 (($) 10 T CONST)) (-4333 (($) 22 T CONST)) (-2876 (($ $ (-771)) NIL) (($ $) NIL)) (-2950 (((-112) $ $) 24)) (-3062 (($ $ $) 44)) (-3051 (($ $ $) NIL) (($ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-409 (-566))) NIL) (($ $ (-566)) 48) (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL) (($ $ $) 27) (($ (-566) $) NIL) (($ (-771) $) NIL) (($ (-921) $) NIL)))
+(((-497) (-13 (-303) (-27) (-1038 (-566)) (-1038 (-409 (-566))) (-639 (-566)) (-1022) (-639 (-409 (-566))) (-147) (-614 (-169 (-381))) (-233) (-10 -8 (-15 -3780 ($ (-1124 (-566) (-612 $)))) (-15 -3088 ((-1124 (-566) (-612 $)) $)) (-15 -3100 ((-1124 (-566) (-612 $)) $)) (-15 -1580 ($ $)) (-15 -2338 ((-112) $ $)) (-15 -2719 ((-1171 $) (-1171 $) (-612 $))) (-15 -2719 ((-1171 $) (-1171 $) (-644 (-612 $)))) (-15 -2719 ($ $ (-612 $))) (-15 -2719 ($ $ (-644 (-612 $))))))) (T -497))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1124 (-566) (-612 (-497)))) (-5 *1 (-497)))) (-3088 (*1 *2 *1) (-12 (-5 *2 (-1124 (-566) (-612 (-497)))) (-5 *1 (-497)))) (-3100 (*1 *2 *1) (-12 (-5 *2 (-1124 (-566) (-612 (-497)))) (-5 *1 (-497)))) (-1580 (*1 *1 *1) (-5 *1 (-497))) (-2338 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-497)))) (-2719 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 (-497))) (-5 *3 (-612 (-497))) (-5 *1 (-497)))) (-2719 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 (-497))) (-5 *3 (-644 (-612 (-497)))) (-5 *1 (-497)))) (-2719 (*1 *1 *1 *2) (-12 (-5 *2 (-612 (-497))) (-5 *1 (-497)))) (-2719 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-612 (-497)))) (-5 *1 (-497)))))
+(-13 (-303) (-27) (-1038 (-566)) (-1038 (-409 (-566))) (-639 (-566)) (-1022) (-639 (-409 (-566))) (-147) (-614 (-169 (-381))) (-233) (-10 -8 (-15 -3780 ($ (-1124 (-566) (-612 $)))) (-15 -3088 ((-1124 (-566) (-612 $)) $)) (-15 -3100 ((-1124 (-566) (-612 $)) $)) (-15 -1580 ($ $)) (-15 -2338 ((-112) $ $)) (-15 -2719 ((-1171 $) (-1171 $) (-612 $))) (-15 -2719 ((-1171 $) (-1171 $) (-644 (-612 $)))) (-15 -2719 ($ $ (-612 $))) (-15 -2719 ($ $ (-644 (-612 $))))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-566) |#1|) 47 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) 42 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 41)) (-4015 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-4278 (($ (-771) |#1|) 21)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) 17 (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) 44 (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 32 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 35) (($ (-1 |#1| |#1| |#1|) $ $) 38)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4101 ((|#1| $) NIL (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) 15 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) 19)) (-4393 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) 46) (($ $ (-1231 (-566))) NIL)) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) 13)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 24)) (-3727 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3020 (((-771) $) 11 (|has| $ (-6 -4414)))))
(((-498 |#1| |#2|) (-19 |#1|) (-1214) (-566)) (T -498))
NIL
(-19 |#1|)
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-566) (-566) |#1|) NIL)) (-1878 (($ $ (-566) (-498 |#1| |#3|)) NIL)) (-4158 (($ $ (-566) (-498 |#1| |#2|)) NIL)) (-2342 (($) NIL T CONST)) (-4134 (((-498 |#1| |#3|) $ (-566)) NIL)) (-1332 ((|#1| $ (-566) (-566) |#1|) NIL)) (-3137 ((|#1| $ (-566) (-566)) NIL)) (-3372 (((-644 |#1|) $) NIL)) (-2042 (((-771) $) NIL)) (-4257 (($ (-771) (-771) |#1|) NIL)) (-2053 (((-771) $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-3266 (((-566) $) NIL)) (-1905 (((-566) $) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-4385 (((-566) $) NIL)) (-4106 (((-566) $) NIL)) (-1323 (($ (-1 |#1| |#1|) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1720 (($ $ |#1|) NIL)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-566) (-566)) NIL) ((|#1| $ (-566) (-566) |#1|) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-4074 (((-498 |#1| |#2|) $ (-566)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-566) (-566) |#1|) NIL)) (-2890 (($ $ (-566) (-498 |#1| |#3|)) NIL)) (-4293 (($ $ (-566) (-498 |#1| |#2|)) NIL)) (-3877 (($) NIL T CONST)) (-4104 (((-498 |#1| |#3|) $ (-566)) NIL)) (-3128 ((|#1| $ (-566) (-566) |#1|) NIL)) (-3059 ((|#1| $ (-566) (-566)) NIL)) (-3799 (((-644 |#1|) $) NIL)) (-4301 (((-771) $) NIL)) (-4278 (($ (-771) (-771) |#1|) NIL)) (-4313 (((-771) $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2615 (((-566) $) NIL)) (-1966 (((-566) $) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1653 (((-566) $) NIL)) (-3807 (((-566) $) NIL)) (-3117 (($ (-1 |#1| |#1|) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3750 (($ $ |#1|) NIL)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-566) (-566)) NIL) ((|#1| $ (-566) (-566) |#1|) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-1621 (((-498 |#1| |#2|) $ (-566)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-499 |#1| |#2| |#3|) (-57 |#1| (-498 |#1| |#3|) (-498 |#1| |#2|)) (-1214) (-566) (-566)) (T -499))
NIL
(-57 |#1| (-498 |#1| |#3|) (-498 |#1| |#2|))
-((-1964 (((-644 (-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-771) (-771)) 33)) (-3560 (((-644 (-1171 |#1|)) |#1| (-771) (-771) (-771)) 43)) (-1460 (((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-644 |#3|) (-644 (-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-771)) 111)))
-(((-500 |#1| |#2| |#3|) (-10 -7 (-15 -3560 ((-644 (-1171 |#1|)) |#1| (-771) (-771) (-771))) (-15 -1964 ((-644 (-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-771) (-771))) (-15 -1460 ((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-644 |#3|) (-644 (-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-771)))) (-351) (-1240 |#1|) (-1240 |#2|)) (T -500))
-((-1460 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 (-2 (|:| -1990 (-689 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-689 *7))))) (-5 *5 (-771)) (-4 *8 (-1240 *7)) (-4 *7 (-1240 *6)) (-4 *6 (-351)) (-5 *2 (-2 (|:| -1990 (-689 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-689 *7)))) (-5 *1 (-500 *6 *7 *8)))) (-1964 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-771)) (-4 *5 (-351)) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -1990 (-689 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-689 *6))))) (-5 *1 (-500 *5 *6 *7)) (-5 *3 (-2 (|:| -1990 (-689 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-689 *6)))) (-4 *7 (-1240 *6)))) (-3560 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-771)) (-4 *3 (-351)) (-4 *5 (-1240 *3)) (-5 *2 (-644 (-1171 *3))) (-5 *1 (-500 *3 *5 *6)) (-4 *6 (-1240 *5)))))
-(-10 -7 (-15 -3560 ((-644 (-1171 |#1|)) |#1| (-771) (-771) (-771))) (-15 -1964 ((-644 (-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-771) (-771))) (-15 -1460 ((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-644 |#3|) (-644 (-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-771))))
-((-2973 (((-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|)))) 74)) (-2983 ((|#1| (-689 |#1|) |#1| (-771)) 27)) (-3424 (((-771) (-771) (-771)) 36)) (-2563 (((-689 |#1|) (-689 |#1|) (-689 |#1|)) 54)) (-3474 (((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|) 62) (((-689 |#1|) (-689 |#1|) (-689 |#1|)) 59)) (-3217 ((|#1| (-689 |#1|) (-689 |#1|) |#1| (-566)) 31)) (-2447 ((|#1| (-689 |#1|)) 18)))
-(((-501 |#1| |#2| |#3|) (-10 -7 (-15 -2447 (|#1| (-689 |#1|))) (-15 -2983 (|#1| (-689 |#1|) |#1| (-771))) (-15 -3217 (|#1| (-689 |#1|) (-689 |#1|) |#1| (-566))) (-15 -3424 ((-771) (-771) (-771))) (-15 -3474 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -3474 ((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|)) (-15 -2563 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -2973 ((-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|)))))) (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))) (-1240 |#1|) (-411 |#1| |#2|)) (T -501))
-((-2973 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-2563 (*1 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-3474 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-689 *3)) (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-3474 (*1 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-3424 (*1 *2 *2 *2) (-12 (-5 *2 (-771)) (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-3217 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-689 *2)) (-5 *4 (-566)) (-4 *2 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $))))) (-4 *5 (-1240 *2)) (-5 *1 (-501 *2 *5 *6)) (-4 *6 (-411 *2 *5)))) (-2983 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-689 *2)) (-5 *4 (-771)) (-4 *2 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $))))) (-4 *5 (-1240 *2)) (-5 *1 (-501 *2 *5 *6)) (-4 *6 (-411 *2 *5)))) (-2447 (*1 *2 *3) (-12 (-5 *3 (-689 *2)) (-4 *4 (-1240 *2)) (-4 *2 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $))))) (-5 *1 (-501 *2 *4 *5)) (-4 *5 (-411 *2 *4)))))
-(-10 -7 (-15 -2447 (|#1| (-689 |#1|))) (-15 -2983 (|#1| (-689 |#1|) |#1| (-771))) (-15 -3217 (|#1| (-689 |#1|) (-689 |#1|) |#1| (-566))) (-15 -3424 ((-771) (-771) (-771))) (-15 -3474 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -3474 ((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|)) (-15 -2563 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -2973 ((-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1990 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))))))
-((-2985 (((-112) $ $) NIL)) (-3009 (($ $) NIL)) (-2461 (($ $ $) 40)) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) $) NIL (|has| (-112) (-850))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3426 (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| (-112) (-850)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4418)))) (-3290 (($ $) NIL (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-3874 (((-112) $ (-1231 (-566)) (-112)) NIL (|has| $ (-6 -4418))) (((-112) $ (-566) (-112)) 42 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-2651 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4417))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-4362 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-1332 (((-112) $ (-566) (-112)) NIL (|has| $ (-6 -4418)))) (-3137 (((-112) $ (-566)) NIL)) (-3968 (((-566) (-112) $ (-566)) NIL (|has| (-112) (-1099))) (((-566) (-112) $) NIL (|has| (-112) (-1099))) (((-566) (-1 (-112) (-112)) $) NIL)) (-3372 (((-644 (-112)) $) NIL (|has| $ (-6 -4417)))) (-2450 (($ $ $) 38)) (-2426 (($ $) NIL)) (-3911 (($ $ $) NIL)) (-4257 (($ (-771) (-112)) 27)) (-3244 (($ $ $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) 8 (|has| (-566) (-850)))) (-1439 (($ $ $) NIL)) (-3132 (($ $ $) NIL (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2404 (((-644 (-112)) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL)) (-1323 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-112) (-112) (-112)) $ $) 35) (($ (-1 (-112) (-112)) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-4268 (($ $ $ (-566)) NIL) (($ (-112) $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 (((-112) $) NIL (|has| (-566) (-850)))) (-2126 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-1720 (($ $ (-112)) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-112)) (-644 (-112))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-295 (-112))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-644 (-295 (-112)))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099))))) (-2784 (((-644 (-112)) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) 28)) (-4386 (($ $ (-1231 (-566))) NIL) (((-112) $ (-566)) 22) (((-112) $ (-566) (-112)) NIL)) (-2201 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-4044 (((-771) (-112) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-112) (-1099)))) (((-771) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4417)))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) 29)) (-3134 (((-538) $) NIL (|has| (-112) (-614 (-538))))) (-2523 (($ (-644 (-112))) NIL)) (-3704 (($ (-644 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-2512 (((-862) $) 26)) (-3122 (((-112) $ $) NIL)) (-3427 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4417)))) (-2438 (($ $ $) 36)) (-3058 (($ $ $) NIL)) (-2177 (($ $ $) 45)) (-2190 (($ $) 43)) (-2163 (($ $ $) 44)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 30)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 31)) (-3044 (($ $ $) NIL)) (-2997 (((-771) $) 13 (|has| $ (-6 -4417)))))
-(((-502 |#1|) (-13 (-123) (-10 -8 (-15 -2190 ($ $)) (-15 -2177 ($ $ $)) (-15 -2163 ($ $ $)))) (-566)) (T -502))
-((-2190 (*1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566)))) (-2177 (*1 *1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566)))) (-2163 (*1 *1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566)))))
-(-13 (-123) (-10 -8 (-15 -2190 ($ $)) (-15 -2177 ($ $ $)) (-15 -2163 ($ $ $))))
-((-4020 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1171 |#4|)) 35)) (-2249 (((-1171 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1171 |#4|)) 22)) (-3951 (((-3 (-689 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-689 (-1171 |#4|))) 49)) (-3809 (((-1171 (-1171 |#4|)) (-1 |#4| |#1|) |#3|) 58)))
-(((-503 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2249 (|#2| (-1 |#1| |#4|) (-1171 |#4|))) (-15 -2249 ((-1171 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -4020 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1171 |#4|))) (-15 -3951 ((-3 (-689 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-689 (-1171 |#4|)))) (-15 -3809 ((-1171 (-1171 |#4|)) (-1 |#4| |#1|) |#3|))) (-1049) (-1240 |#1|) (-1240 |#2|) (-1049)) (T -503))
-((-3809 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1049)) (-4 *7 (-1049)) (-4 *6 (-1240 *5)) (-5 *2 (-1171 (-1171 *7))) (-5 *1 (-503 *5 *6 *4 *7)) (-4 *4 (-1240 *6)))) (-3951 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-689 (-1171 *8))) (-4 *5 (-1049)) (-4 *8 (-1049)) (-4 *6 (-1240 *5)) (-5 *2 (-689 *6)) (-5 *1 (-503 *5 *6 *7 *8)) (-4 *7 (-1240 *6)))) (-4020 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1171 *7)) (-4 *5 (-1049)) (-4 *7 (-1049)) (-4 *2 (-1240 *5)) (-5 *1 (-503 *5 *2 *6 *7)) (-4 *6 (-1240 *2)))) (-2249 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1049)) (-4 *7 (-1049)) (-4 *4 (-1240 *5)) (-5 *2 (-1171 *7)) (-5 *1 (-503 *5 *4 *6 *7)) (-4 *6 (-1240 *4)))) (-2249 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1171 *7)) (-4 *5 (-1049)) (-4 *7 (-1049)) (-4 *2 (-1240 *5)) (-5 *1 (-503 *5 *2 *6 *7)) (-4 *6 (-1240 *2)))))
-(-10 -7 (-15 -2249 (|#2| (-1 |#1| |#4|) (-1171 |#4|))) (-15 -2249 ((-1171 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -4020 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1171 |#4|))) (-15 -3951 ((-3 (-689 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-689 (-1171 |#4|)))) (-15 -3809 ((-1171 (-1171 |#4|)) (-1 |#4| |#1|) |#3|)))
-((-2985 (((-112) $ $) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2509 (((-1269) $) 25)) (-4386 (((-1157) $ (-1175)) 30)) (-1697 (((-1269) $) 17)) (-2512 (((-862) $) 27) (($ (-1157)) 26)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 11)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 9)))
-(((-504) (-13 (-850) (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 ((-1269) $)) (-15 -2509 ((-1269) $)) (-15 -2512 ($ (-1157)))))) (T -504))
-((-4386 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1157)) (-5 *1 (-504)))) (-1697 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-504)))) (-2509 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-504)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-504)))))
-(-13 (-850) (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 ((-1269) $)) (-15 -2509 ((-1269) $)) (-15 -2512 ($ (-1157)))))
-((-1919 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-1443 ((|#1| |#4|) 10)) (-3774 ((|#3| |#4|) 17)))
-(((-505 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1443 (|#1| |#4|)) (-15 -3774 (|#3| |#4|)) (-15 -1919 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-558) (-992 |#1|) (-375 |#1|) (-375 |#2|)) (T -505))
-((-1919 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-992 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-505 *4 *5 *6 *3)) (-4 *6 (-375 *4)) (-4 *3 (-375 *5)))) (-3774 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-992 *4)) (-4 *2 (-375 *4)) (-5 *1 (-505 *4 *5 *2 *3)) (-4 *3 (-375 *5)))) (-1443 (*1 *2 *3) (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-505 *2 *4 *5 *3)) (-4 *5 (-375 *2)) (-4 *3 (-375 *4)))))
-(-10 -7 (-15 -1443 (|#1| |#4|)) (-15 -3774 (|#3| |#4|)) (-15 -1919 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
-((-2985 (((-112) $ $) NIL)) (-2482 (((-112) $ (-644 |#3|)) 126) (((-112) $) 127)) (-3958 (((-112) $) 178)) (-2743 (($ $ |#4|) 117) (($ $ |#4| (-644 |#3|)) 121)) (-2843 (((-1164 (-644 (-952 |#1|)) (-644 (-295 (-952 |#1|)))) (-644 |#4|)) 171 (|has| |#3| (-614 (-1175))))) (-2760 (($ $ $) 105) (($ $ |#4|) 103)) (-2741 (((-112) $) 177)) (-2955 (($ $) 131)) (-2878 (((-1157) $) NIL)) (-2390 (($ $ $) 97) (($ (-644 $)) 99)) (-4156 (((-112) |#4| $) 129)) (-4243 (((-112) $ $) 82)) (-4024 (($ (-644 |#4|)) 104)) (-4033 (((-1119) $) NIL)) (-2457 (($ (-644 |#4|)) 175)) (-2026 (((-112) $) 176)) (-4375 (($ $) 85)) (-1476 (((-644 |#4|) $) 73)) (-2145 (((-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $)) $ (-644 |#3|)) NIL)) (-3905 (((-112) |#4| $) 89)) (-1909 (((-566) $ (-644 |#3|)) 133) (((-566) $) 134)) (-2512 (((-862) $) 174) (($ (-644 |#4|)) 100)) (-3122 (((-112) $ $) NIL)) (-1840 (($ (-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $))) NIL)) (-2940 (((-112) $ $) 84)) (-3034 (($ $ $) 107)) (** (($ $ (-771)) 115)) (* (($ $ $) 113)))
-(((-506 |#1| |#2| |#3| |#4|) (-13 (-1099) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-771))) (-15 -3034 ($ $ $)) (-15 -2741 ((-112) $)) (-15 -3958 ((-112) $)) (-15 -3905 ((-112) |#4| $)) (-15 -4243 ((-112) $ $)) (-15 -4156 ((-112) |#4| $)) (-15 -2482 ((-112) $ (-644 |#3|))) (-15 -2482 ((-112) $)) (-15 -2390 ($ $ $)) (-15 -2390 ($ (-644 $))) (-15 -2760 ($ $ $)) (-15 -2760 ($ $ |#4|)) (-15 -4375 ($ $)) (-15 -2145 ((-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $)) $ (-644 |#3|))) (-15 -1840 ($ (-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $)))) (-15 -1909 ((-566) $ (-644 |#3|))) (-15 -1909 ((-566) $)) (-15 -2955 ($ $)) (-15 -4024 ($ (-644 |#4|))) (-15 -2457 ($ (-644 |#4|))) (-15 -2026 ((-112) $)) (-15 -1476 ((-644 |#4|) $)) (-15 -2512 ($ (-644 |#4|))) (-15 -2743 ($ $ |#4|)) (-15 -2743 ($ $ |#4| (-644 |#3|))) (IF (|has| |#3| (-614 (-1175))) (-15 -2843 ((-1164 (-644 (-952 |#1|)) (-644 (-295 (-952 |#1|)))) (-644 |#4|))) |%noBranch|))) (-365) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -506))
-((* (*1 *1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-3034 (*1 *1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-2741 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-3958 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-3905 (*1 *2 *3 *1) (-12 (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))) (-4243 (*1 *2 *1 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-4156 (*1 *2 *3 *1) (-12 (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))) (-2482 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793)) (-5 *2 (-112)) (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))) (-2482 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-2390 (*1 *1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-2390 (*1 *1 *2) (-12 (-5 *2 (-644 (-506 *3 *4 *5 *6))) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-2760 (*1 *1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-2760 (*1 *1 *1 *2) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5)))) (-4375 (*1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-2145 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793)) (-5 *2 (-2 (|:| |mval| (-689 *4)) (|:| |invmval| (-689 *4)) (|:| |genIdeal| (-506 *4 *5 *6 *7)))) (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))) (-1840 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-689 *3)) (|:| |invmval| (-689 *3)) (|:| |genIdeal| (-506 *3 *4 *5 *6)))) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-1909 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793)) (-5 *2 (-566)) (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))) (-1909 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-566)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-2955 (*1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-4024 (*1 *1 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)))) (-2457 (*1 *1 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)))) (-2026 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-1476 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *6)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)))) (-2743 (*1 *1 *1 *2) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5)))) (-2743 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793)) (-5 *1 (-506 *4 *5 *6 *2)) (-4 *2 (-949 *4 *5 *6)))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *5 *6)) (-4 *6 (-614 (-1175))) (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1164 (-644 (-952 *4)) (-644 (-295 (-952 *4))))) (-5 *1 (-506 *4 *5 *6 *7)))))
-(-13 (-1099) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-771))) (-15 -3034 ($ $ $)) (-15 -2741 ((-112) $)) (-15 -3958 ((-112) $)) (-15 -3905 ((-112) |#4| $)) (-15 -4243 ((-112) $ $)) (-15 -4156 ((-112) |#4| $)) (-15 -2482 ((-112) $ (-644 |#3|))) (-15 -2482 ((-112) $)) (-15 -2390 ($ $ $)) (-15 -2390 ($ (-644 $))) (-15 -2760 ($ $ $)) (-15 -2760 ($ $ |#4|)) (-15 -4375 ($ $)) (-15 -2145 ((-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $)) $ (-644 |#3|))) (-15 -1840 ($ (-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $)))) (-15 -1909 ((-566) $ (-644 |#3|))) (-15 -1909 ((-566) $)) (-15 -2955 ($ $)) (-15 -4024 ($ (-644 |#4|))) (-15 -2457 ($ (-644 |#4|))) (-15 -2026 ((-112) $)) (-15 -1476 ((-644 |#4|) $)) (-15 -2512 ($ (-644 |#4|))) (-15 -2743 ($ $ |#4|)) (-15 -2743 ($ $ |#4| (-644 |#3|))) (IF (|has| |#3| (-614 (-1175))) (-15 -2843 ((-1164 (-644 (-952 |#1|)) (-644 (-295 (-952 |#1|)))) (-644 |#4|))) |%noBranch|)))
-((-2196 (((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) 176)) (-3361 (((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) 177)) (-3933 (((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) 129)) (-2635 (((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) NIL)) (-3955 (((-644 (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) 179)) (-2850 (((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-644 (-864 |#1|))) 195)))
-(((-507 |#1| |#2|) (-10 -7 (-15 -2196 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -3361 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -2635 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -3933 ((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -3955 ((-644 (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -2850 ((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-644 (-864 |#1|))))) (-644 (-1175)) (-771)) (T -507))
-((-2850 (*1 *2 *2 *3) (-12 (-5 *2 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566))))) (-5 *3 (-644 (-864 *4))) (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *1 (-507 *4 *5)))) (-3955 (*1 *2 *3) (-12 (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-644 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566)))))) (-5 *1 (-507 *4 *5)) (-5 *3 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566))))))) (-3933 (*1 *2 *2) (-12 (-5 *2 (-506 (-409 (-566)) (-240 *4 (-771)) (-864 *3) (-247 *3 (-409 (-566))))) (-14 *3 (-644 (-1175))) (-14 *4 (-771)) (-5 *1 (-507 *3 *4)))) (-2635 (*1 *2 *3) (-12 (-5 *3 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566))))) (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112)) (-5 *1 (-507 *4 *5)))) (-3361 (*1 *2 *3) (-12 (-5 *3 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566))))) (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112)) (-5 *1 (-507 *4 *5)))) (-2196 (*1 *2 *3) (-12 (-5 *3 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566))))) (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112)) (-5 *1 (-507 *4 *5)))))
-(-10 -7 (-15 -2196 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -3361 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -2635 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -3933 ((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -3955 ((-644 (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -2850 ((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-644 (-864 |#1|)))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2374 (($) 6)) (-2512 (((-862) $) 12) (((-1175) $) 10)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 8)))
-(((-508) (-13 (-1099) (-613 (-1175)) (-10 -8 (-15 -2374 ($))))) (T -508))
-((-2374 (*1 *1) (-5 *1 (-508))))
-(-13 (-1099) (-613 (-1175)) (-10 -8 (-15 -2374 ($))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3577 (($ $) NIL)) (-2519 (($ |#1| |#2|) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-2896 ((|#2| $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 12 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) 11) (($ $ $) 35)) (-3034 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 21)))
+((-4381 (((-644 (-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-771) (-771)) 33)) (-3504 (((-644 (-1171 |#1|)) |#1| (-771) (-771) (-771)) 43)) (-4139 (((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-644 |#3|) (-644 (-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-771)) 111)))
+(((-500 |#1| |#2| |#3|) (-10 -7 (-15 -3504 ((-644 (-1171 |#1|)) |#1| (-771) (-771) (-771))) (-15 -4381 ((-644 (-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-771) (-771))) (-15 -4139 ((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-644 |#3|) (-644 (-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-771)))) (-351) (-1240 |#1|) (-1240 |#2|)) (T -500))
+((-4139 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 (-2 (|:| -1575 (-689 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-689 *7))))) (-5 *5 (-771)) (-4 *8 (-1240 *7)) (-4 *7 (-1240 *6)) (-4 *6 (-351)) (-5 *2 (-2 (|:| -1575 (-689 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-689 *7)))) (-5 *1 (-500 *6 *7 *8)))) (-4381 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-771)) (-4 *5 (-351)) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -1575 (-689 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-689 *6))))) (-5 *1 (-500 *5 *6 *7)) (-5 *3 (-2 (|:| -1575 (-689 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-689 *6)))) (-4 *7 (-1240 *6)))) (-3504 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-771)) (-4 *3 (-351)) (-4 *5 (-1240 *3)) (-5 *2 (-644 (-1171 *3))) (-5 *1 (-500 *3 *5 *6)) (-4 *6 (-1240 *5)))))
+(-10 -7 (-15 -3504 ((-644 (-1171 |#1|)) |#1| (-771) (-771) (-771))) (-15 -4381 ((-644 (-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-771) (-771))) (-15 -4139 ((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) (-644 |#3|) (-644 (-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) (-771))))
+((-1944 (((-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|)))) 74)) (-2022 ((|#1| (-689 |#1|) |#1| (-771)) 27)) (-1547 (((-771) (-771) (-771)) 36)) (-2317 (((-689 |#1|) (-689 |#1|) (-689 |#1|)) 54)) (-3930 (((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|) 62) (((-689 |#1|) (-689 |#1|) (-689 |#1|)) 59)) (-3380 ((|#1| (-689 |#1|) (-689 |#1|) |#1| (-566)) 31)) (-3638 ((|#1| (-689 |#1|)) 18)))
+(((-501 |#1| |#2| |#3|) (-10 -7 (-15 -3638 (|#1| (-689 |#1|))) (-15 -2022 (|#1| (-689 |#1|) |#1| (-771))) (-15 -3380 (|#1| (-689 |#1|) (-689 |#1|) |#1| (-566))) (-15 -1547 ((-771) (-771) (-771))) (-15 -3930 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -3930 ((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|)) (-15 -2317 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1944 ((-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|)))))) (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))) (-1240 |#1|) (-411 |#1| |#2|)) (T -501))
+((-1944 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-2317 (*1 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-3930 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-689 *3)) (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-3930 (*1 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-1547 (*1 *2 *2 *2) (-12 (-5 *2 (-771)) (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $))))) (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))) (-3380 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-689 *2)) (-5 *4 (-566)) (-4 *2 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $))))) (-4 *5 (-1240 *2)) (-5 *1 (-501 *2 *5 *6)) (-4 *6 (-411 *2 *5)))) (-2022 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-689 *2)) (-5 *4 (-771)) (-4 *2 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $))))) (-4 *5 (-1240 *2)) (-5 *1 (-501 *2 *5 *6)) (-4 *6 (-411 *2 *5)))) (-3638 (*1 *2 *3) (-12 (-5 *3 (-689 *2)) (-4 *4 (-1240 *2)) (-4 *2 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $))))) (-5 *1 (-501 *2 *4 *5)) (-4 *5 (-411 *2 *4)))))
+(-10 -7 (-15 -3638 (|#1| (-689 |#1|))) (-15 -2022 (|#1| (-689 |#1|) |#1| (-771))) (-15 -3380 (|#1| (-689 |#1|) (-689 |#1|) |#1| (-566))) (-15 -1547 ((-771) (-771) (-771))) (-15 -3930 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -3930 ((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|)) (-15 -2317 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1944 ((-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))) (-2 (|:| -1575 (-689 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-689 |#1|))))))
+((-3009 (((-112) $ $) NIL)) (-3028 (($ $) NIL)) (-2470 (($ $ $) 40)) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) $) NIL (|has| (-112) (-850))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-1570 (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| (-112) (-850)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4415)))) (-1568 (($ $) NIL (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-3916 (((-112) $ (-1231 (-566)) (-112)) NIL (|has| $ (-6 -4415))) (((-112) $ (-566) (-112)) 42 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-2661 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4414))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-1580 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-3128 (((-112) $ (-566) (-112)) NIL (|has| $ (-6 -4415)))) (-3059 (((-112) $ (-566)) NIL)) (-4015 (((-566) (-112) $ (-566)) NIL (|has| (-112) (-1099))) (((-566) (-112) $) NIL (|has| (-112) (-1099))) (((-566) (-1 (-112) (-112)) $) NIL)) (-3799 (((-644 (-112)) $) NIL (|has| $ (-6 -4414)))) (-2461 (($ $ $) 38)) (-2436 (($ $) NIL)) (-2626 (($ $ $) NIL)) (-4278 (($ (-771) (-112)) 27)) (-3600 (($ $ $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) 8 (|has| (-566) (-850)))) (-1945 (($ $ $) NIL)) (-3891 (($ $ $) NIL (|has| (-112) (-850))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-3276 (((-644 (-112)) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL)) (-3117 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-112) (-112) (-112)) $ $) 35) (($ (-1 (-112) (-112)) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-4286 (($ $ $ (-566)) NIL) (($ (-112) $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 (((-112) $) NIL (|has| (-566) (-850)))) (-3591 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-3750 (($ $ (-112)) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-112)) (-644 (-112))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-112) (-112)) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-295 (-112))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099)))) (($ $ (-644 (-295 (-112)))) NIL (-12 (|has| (-112) (-310 (-112))) (|has| (-112) (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099))))) (-2684 (((-644 (-112)) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) 28)) (-4393 (($ $ (-1231 (-566))) NIL) (((-112) $ (-566)) 22) (((-112) $ (-566) (-112)) NIL)) (-2215 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-4067 (((-771) (-112) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-112) (-1099)))) (((-771) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4414)))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) 29)) (-3204 (((-538) $) NIL (|has| (-112) (-614 (-538))))) (-3791 (($ (-644 (-112))) NIL)) (-3727 (($ (-644 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3780 (((-862) $) 26)) (-3801 (((-112) $ $) NIL)) (-1583 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4414)))) (-2447 (($ $ $) 36)) (-3074 (($ $ $) NIL)) (-2216 (($ $ $) 45)) (-2228 (($ $) 43)) (-2203 (($ $ $) 44)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 30)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 31)) (-3061 (($ $ $) NIL)) (-3020 (((-771) $) 13 (|has| $ (-6 -4414)))))
+(((-502 |#1|) (-13 (-123) (-10 -8 (-15 -2228 ($ $)) (-15 -2216 ($ $ $)) (-15 -2203 ($ $ $)))) (-566)) (T -502))
+((-2228 (*1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566)))) (-2216 (*1 *1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566)))) (-2203 (*1 *1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566)))))
+(-13 (-123) (-10 -8 (-15 -2228 ($ $)) (-15 -2216 ($ $ $)) (-15 -2203 ($ $ $))))
+((-2381 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1171 |#4|)) 35)) (-2301 (((-1171 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1171 |#4|)) 22)) (-2942 (((-3 (-689 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-689 (-1171 |#4|))) 49)) (-4130 (((-1171 (-1171 |#4|)) (-1 |#4| |#1|) |#3|) 58)))
+(((-503 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2301 (|#2| (-1 |#1| |#4|) (-1171 |#4|))) (-15 -2301 ((-1171 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2381 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1171 |#4|))) (-15 -2942 ((-3 (-689 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-689 (-1171 |#4|)))) (-15 -4130 ((-1171 (-1171 |#4|)) (-1 |#4| |#1|) |#3|))) (-1049) (-1240 |#1|) (-1240 |#2|) (-1049)) (T -503))
+((-4130 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1049)) (-4 *7 (-1049)) (-4 *6 (-1240 *5)) (-5 *2 (-1171 (-1171 *7))) (-5 *1 (-503 *5 *6 *4 *7)) (-4 *4 (-1240 *6)))) (-2942 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8)) (-5 *4 (-689 (-1171 *8))) (-4 *5 (-1049)) (-4 *8 (-1049)) (-4 *6 (-1240 *5)) (-5 *2 (-689 *6)) (-5 *1 (-503 *5 *6 *7 *8)) (-4 *7 (-1240 *6)))) (-2381 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1171 *7)) (-4 *5 (-1049)) (-4 *7 (-1049)) (-4 *2 (-1240 *5)) (-5 *1 (-503 *5 *2 *6 *7)) (-4 *6 (-1240 *2)))) (-2301 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1049)) (-4 *7 (-1049)) (-4 *4 (-1240 *5)) (-5 *2 (-1171 *7)) (-5 *1 (-503 *5 *4 *6 *7)) (-4 *6 (-1240 *4)))) (-2301 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1171 *7)) (-4 *5 (-1049)) (-4 *7 (-1049)) (-4 *2 (-1240 *5)) (-5 *1 (-503 *5 *2 *6 *7)) (-4 *6 (-1240 *2)))))
+(-10 -7 (-15 -2301 (|#2| (-1 |#1| |#4|) (-1171 |#4|))) (-15 -2301 ((-1171 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2381 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1171 |#4|))) (-15 -2942 ((-3 (-689 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-689 (-1171 |#4|)))) (-15 -4130 ((-1171 (-1171 |#4|)) (-1 |#4| |#1|) |#3|)))
+((-3009 (((-112) $ $) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3018 (((-1269) $) 25)) (-4393 (((-1157) $ (-1175)) 30)) (-1736 (((-1269) $) 17)) (-3780 (((-862) $) 27) (($ (-1157)) 26)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 11)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 9)))
+(((-504) (-13 (-850) (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 ((-1269) $)) (-15 -3018 ((-1269) $)) (-15 -3780 ($ (-1157)))))) (T -504))
+((-4393 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1157)) (-5 *1 (-504)))) (-1736 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-504)))) (-3018 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-504)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-504)))))
+(-13 (-850) (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 ((-1269) $)) (-15 -3018 ((-1269) $)) (-15 -3780 ($ (-1157)))))
+((-2110 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-3981 ((|#1| |#4|) 10)) (-3812 ((|#3| |#4|) 17)))
+(((-505 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3981 (|#1| |#4|)) (-15 -3812 (|#3| |#4|)) (-15 -2110 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-558) (-992 |#1|) (-375 |#1|) (-375 |#2|)) (T -505))
+((-2110 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-992 *4)) (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4))) (-5 *1 (-505 *4 *5 *6 *3)) (-4 *6 (-375 *4)) (-4 *3 (-375 *5)))) (-3812 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-992 *4)) (-4 *2 (-375 *4)) (-5 *1 (-505 *4 *5 *2 *3)) (-4 *3 (-375 *5)))) (-3981 (*1 *2 *3) (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-505 *2 *4 *5 *3)) (-4 *5 (-375 *2)) (-4 *3 (-375 *4)))))
+(-10 -7 (-15 -3981 (|#1| |#4|)) (-15 -3812 (|#3| |#4|)) (-15 -2110 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
+((-3009 (((-112) $ $) NIL)) (-2745 (((-112) $ (-644 |#3|)) 126) (((-112) $) 127)) (-3015 (((-112) $) 178)) (-3485 (($ $ |#4|) 117) (($ $ |#4| (-644 |#3|)) 121)) (-2042 (((-1164 (-644 (-952 |#1|)) (-644 (-295 (-952 |#1|)))) (-644 |#4|)) 171 (|has| |#3| (-614 (-1175))))) (-3644 (($ $ $) 105) (($ $ |#4|) 103)) (-3466 (((-112) $) 177)) (-1803 (($ $) 131)) (-2402 (((-1157) $) NIL)) (-3147 (($ $ $) 97) (($ (-644 $)) 99)) (-4277 (((-112) |#4| $) 129)) (-2727 (((-112) $ $) 82)) (-2412 (($ (-644 |#4|)) 104)) (-4056 (((-1119) $) NIL)) (-2537 (($ (-644 |#4|)) 175)) (-3800 (((-112) $) 176)) (-1532 (($ $) 85)) (-3099 (((-644 |#4|) $) 73)) (-2570 (((-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $)) $ (-644 |#3|)) NIL)) (-2582 (((-112) |#4| $) 89)) (-2012 (((-566) $ (-644 |#3|)) 133) (((-566) $) 134)) (-3780 (((-862) $) 174) (($ (-644 |#4|)) 100)) (-3801 (((-112) $ $) NIL)) (-2524 (($ (-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $))) NIL)) (-2950 (((-112) $ $) 84)) (-3040 (($ $ $) 107)) (** (($ $ (-771)) 115)) (* (($ $ $) 113)))
+(((-506 |#1| |#2| |#3| |#4|) (-13 (-1099) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-771))) (-15 -3040 ($ $ $)) (-15 -3466 ((-112) $)) (-15 -3015 ((-112) $)) (-15 -2582 ((-112) |#4| $)) (-15 -2727 ((-112) $ $)) (-15 -4277 ((-112) |#4| $)) (-15 -2745 ((-112) $ (-644 |#3|))) (-15 -2745 ((-112) $)) (-15 -3147 ($ $ $)) (-15 -3147 ($ (-644 $))) (-15 -3644 ($ $ $)) (-15 -3644 ($ $ |#4|)) (-15 -1532 ($ $)) (-15 -2570 ((-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $)) $ (-644 |#3|))) (-15 -2524 ($ (-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $)))) (-15 -2012 ((-566) $ (-644 |#3|))) (-15 -2012 ((-566) $)) (-15 -1803 ($ $)) (-15 -2412 ($ (-644 |#4|))) (-15 -2537 ($ (-644 |#4|))) (-15 -3800 ((-112) $)) (-15 -3099 ((-644 |#4|) $)) (-15 -3780 ($ (-644 |#4|))) (-15 -3485 ($ $ |#4|)) (-15 -3485 ($ $ |#4| (-644 |#3|))) (IF (|has| |#3| (-614 (-1175))) (-15 -2042 ((-1164 (-644 (-952 |#1|)) (-644 (-295 (-952 |#1|)))) (-644 |#4|))) |%noBranch|))) (-365) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -506))
+((* (*1 *1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-3040 (*1 *1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-3466 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-3015 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-2582 (*1 *2 *3 *1) (-12 (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))) (-2727 (*1 *2 *1 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-4277 (*1 *2 *3 *1) (-12 (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))) (-2745 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793)) (-5 *2 (-112)) (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))) (-2745 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-3147 (*1 *1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-3147 (*1 *1 *2) (-12 (-5 *2 (-644 (-506 *3 *4 *5 *6))) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-3644 (*1 *1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-3644 (*1 *1 *1 *2) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5)))) (-1532 (*1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-2570 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793)) (-5 *2 (-2 (|:| |mval| (-689 *4)) (|:| |invmval| (-689 *4)) (|:| |genIdeal| (-506 *4 *5 *6 *7)))) (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))) (-2524 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |mval| (-689 *3)) (|:| |invmval| (-689 *3)) (|:| |genIdeal| (-506 *3 *4 *5 *6)))) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-2012 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793)) (-5 *2 (-566)) (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))) (-2012 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-566)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-1803 (*1 *1 *1) (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850)) (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-2412 (*1 *1 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)))) (-2537 (*1 *1 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)))) (-3800 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-3099 (*1 *2 *1) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *6)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)))) (-3485 (*1 *1 *1 *2) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5)))) (-3485 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793)) (-5 *1 (-506 *4 *5 *6 *2)) (-4 *2 (-949 *4 *5 *6)))) (-2042 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *5 *6)) (-4 *6 (-614 (-1175))) (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1164 (-644 (-952 *4)) (-644 (-295 (-952 *4))))) (-5 *1 (-506 *4 *5 *6 *7)))))
+(-13 (-1099) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-771))) (-15 -3040 ($ $ $)) (-15 -3466 ((-112) $)) (-15 -3015 ((-112) $)) (-15 -2582 ((-112) |#4| $)) (-15 -2727 ((-112) $ $)) (-15 -4277 ((-112) |#4| $)) (-15 -2745 ((-112) $ (-644 |#3|))) (-15 -2745 ((-112) $)) (-15 -3147 ($ $ $)) (-15 -3147 ($ (-644 $))) (-15 -3644 ($ $ $)) (-15 -3644 ($ $ |#4|)) (-15 -1532 ($ $)) (-15 -2570 ((-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $)) $ (-644 |#3|))) (-15 -2524 ($ (-2 (|:| |mval| (-689 |#1|)) (|:| |invmval| (-689 |#1|)) (|:| |genIdeal| $)))) (-15 -2012 ((-566) $ (-644 |#3|))) (-15 -2012 ((-566) $)) (-15 -1803 ($ $)) (-15 -2412 ($ (-644 |#4|))) (-15 -2537 ($ (-644 |#4|))) (-15 -3800 ((-112) $)) (-15 -3099 ((-644 |#4|) $)) (-15 -3780 ($ (-644 |#4|))) (-15 -3485 ($ $ |#4|)) (-15 -3485 ($ $ |#4| (-644 |#3|))) (IF (|has| |#3| (-614 (-1175))) (-15 -2042 ((-1164 (-644 (-952 |#1|)) (-644 (-295 (-952 |#1|)))) (-644 |#4|))) |%noBranch|)))
+((-1821 (((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) 176)) (-2177 (((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) 177)) (-4382 (((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) 129)) (-1784 (((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) NIL)) (-2974 (((-644 (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) 179)) (-2119 (((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-644 (-864 |#1|))) 195)))
+(((-507 |#1| |#2|) (-10 -7 (-15 -1821 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -2177 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -1784 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -4382 ((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -2974 ((-644 (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -2119 ((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-644 (-864 |#1|))))) (-644 (-1175)) (-771)) (T -507))
+((-2119 (*1 *2 *2 *3) (-12 (-5 *2 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566))))) (-5 *3 (-644 (-864 *4))) (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *1 (-507 *4 *5)))) (-2974 (*1 *2 *3) (-12 (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-644 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566)))))) (-5 *1 (-507 *4 *5)) (-5 *3 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566))))))) (-4382 (*1 *2 *2) (-12 (-5 *2 (-506 (-409 (-566)) (-240 *4 (-771)) (-864 *3) (-247 *3 (-409 (-566))))) (-14 *3 (-644 (-1175))) (-14 *4 (-771)) (-5 *1 (-507 *3 *4)))) (-1784 (*1 *2 *3) (-12 (-5 *3 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566))))) (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112)) (-5 *1 (-507 *4 *5)))) (-2177 (*1 *2 *3) (-12 (-5 *3 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566))))) (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112)) (-5 *1 (-507 *4 *5)))) (-1821 (*1 *2 *3) (-12 (-5 *3 (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4) (-247 *4 (-409 (-566))))) (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112)) (-5 *1 (-507 *4 *5)))))
+(-10 -7 (-15 -1821 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -2177 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -1784 ((-112) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -4382 ((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -2974 ((-644 (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566))))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))))) (-15 -2119 ((-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-506 (-409 (-566)) (-240 |#2| (-771)) (-864 |#1|) (-247 |#1| (-409 (-566)))) (-644 (-864 |#1|)))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4185 (($) 6)) (-3780 (((-862) $) 12) (((-1175) $) 10)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 8)))
+(((-508) (-13 (-1099) (-613 (-1175)) (-10 -8 (-15 -4185 ($))))) (T -508))
+((-4185 (*1 *1) (-5 *1 (-508))))
+(-13 (-1099) (-613 (-1175)) (-10 -8 (-15 -4185 ($))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3645 (($ $) NIL)) (-2585 (($ |#1| |#2|) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1328 ((|#2| $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 12 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) 11) (($ $ $) 35)) (-3040 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 21)))
(((-509 |#1| |#2|) (-13 (-21) (-511 |#1| |#2|)) (-21) (-850)) (T -509))
NIL
(-13 (-21) (-511 |#1| |#2|))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 13)) (-2342 (($) NIL T CONST)) (-3577 (($ $) 41)) (-2519 (($ |#1| |#2|) 38)) (-3077 (($ (-1 |#1| |#1|) $) 40)) (-2896 ((|#2| $) NIL)) (-3557 ((|#1| $) 42)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 10 T CONST)) (-2940 (((-112) $ $) NIL)) (-3034 (($ $ $) 26)) (* (($ (-921) $) NIL) (($ (-771) $) 36)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 13)) (-3877 (($) NIL T CONST)) (-3645 (($ $) 41)) (-2585 (($ |#1| |#2|) 38)) (-3152 (($ (-1 |#1| |#1|) $) 40)) (-1328 ((|#2| $) NIL)) (-3626 ((|#1| $) 42)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 10 T CONST)) (-2950 (((-112) $ $) NIL)) (-3040 (($ $ $) 26)) (* (($ (-921) $) NIL) (($ (-771) $) 36)))
(((-510 |#1| |#2|) (-13 (-23) (-511 |#1| |#2|)) (-23) (-850)) (T -510))
NIL
(-13 (-23) (-511 |#1| |#2|))
-((-2985 (((-112) $ $) 7)) (-3577 (($ $) 14)) (-2519 (($ |#1| |#2|) 17)) (-3077 (($ (-1 |#1| |#1|) $) 18)) (-2896 ((|#2| $) 15)) (-3557 ((|#1| $) 16)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-3009 (((-112) $ $) 7)) (-3645 (($ $) 14)) (-2585 (($ |#1| |#2|) 17)) (-3152 (($ (-1 |#1| |#1|) $) 18)) (-1328 ((|#2| $) 15)) (-3626 ((|#1| $) 16)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-511 |#1| |#2|) (-140) (-1099) (-850)) (T -511))
-((-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-511 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-850)))) (-2519 (*1 *1 *2 *3) (-12 (-4 *1 (-511 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-850)))) (-3557 (*1 *2 *1) (-12 (-4 *1 (-511 *2 *3)) (-4 *3 (-850)) (-4 *2 (-1099)))) (-2896 (*1 *2 *1) (-12 (-4 *1 (-511 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-850)))) (-3577 (*1 *1 *1) (-12 (-4 *1 (-511 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-850)))))
-(-13 (-1099) (-10 -8 (-15 -3077 ($ (-1 |t#1| |t#1|) $)) (-15 -2519 ($ |t#1| |t#2|)) (-15 -3557 (|t#1| $)) (-15 -2896 (|t#2| $)) (-15 -3577 ($ $))))
+((-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-511 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-850)))) (-2585 (*1 *1 *2 *3) (-12 (-4 *1 (-511 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-850)))) (-3626 (*1 *2 *1) (-12 (-4 *1 (-511 *2 *3)) (-4 *3 (-850)) (-4 *2 (-1099)))) (-1328 (*1 *2 *1) (-12 (-4 *1 (-511 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-850)))) (-3645 (*1 *1 *1) (-12 (-4 *1 (-511 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-850)))))
+(-13 (-1099) (-10 -8 (-15 -3152 ($ (-1 |t#1| |t#1|) $)) (-15 -2585 ($ |t#1| |t#2|)) (-15 -3626 (|t#1| $)) (-15 -1328 (|t#2| $)) (-15 -3645 ($ $))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2342 (($) NIL T CONST)) (-3577 (($ $) NIL)) (-2519 (($ |#1| |#2|) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-2896 ((|#2| $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 22)) (-3034 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3877 (($) NIL T CONST)) (-3645 (($ $) NIL)) (-2585 (($ |#1| |#2|) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1328 ((|#2| $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 22)) (-3040 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL)))
(((-512 |#1| |#2|) (-13 (-792) (-511 |#1| |#2|)) (-792) (-850)) (T -512))
NIL
(-13 (-792) (-511 |#1| |#2|))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3711 (($ $ $) 23)) (-4126 (((-3 $ "failed") $ $) 19)) (-2342 (($) NIL T CONST)) (-3577 (($ $) NIL)) (-2519 (($ |#1| |#2|) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-2896 ((|#2| $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)) (-3034 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4385 (($ $ $) 23)) (-4014 (((-3 $ "failed") $ $) 19)) (-3877 (($) NIL T CONST)) (-3645 (($ $) NIL)) (-2585 (($ |#1| |#2|) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1328 ((|#2| $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)) (-3040 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL)))
(((-513 |#1| |#2|) (-13 (-793) (-511 |#1| |#2|)) (-793) (-850)) (T -513))
NIL
(-13 (-793) (-511 |#1| |#2|))
-((-2985 (((-112) $ $) NIL)) (-3577 (($ $) 32)) (-2519 (($ |#1| |#2|) 28)) (-3077 (($ (-1 |#1| |#1|) $) 30)) (-2896 ((|#2| $) 34)) (-3557 ((|#1| $) 33)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 27)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 20)))
+((-3009 (((-112) $ $) NIL)) (-3645 (($ $) 32)) (-2585 (($ |#1| |#2|) 28)) (-3152 (($ (-1 |#1| |#1|) $) 30)) (-1328 ((|#2| $) 34)) (-3626 ((|#1| $) 33)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 27)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 20)))
(((-514 |#1| |#2|) (-511 |#1| |#2|) (-1099) (-850)) (T -514))
NIL
(-511 |#1| |#2|)
-((-2070 (($ $ (-644 |#2|) (-644 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
-(((-515 |#1| |#2| |#3|) (-10 -8 (-15 -2070 (|#1| |#1| |#2| |#3|)) (-15 -2070 (|#1| |#1| (-644 |#2|) (-644 |#3|)))) (-516 |#2| |#3|) (-1099) (-1214)) (T -515))
+((-2095 (($ $ (-644 |#2|) (-644 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
+(((-515 |#1| |#2| |#3|) (-10 -8 (-15 -2095 (|#1| |#1| |#2| |#3|)) (-15 -2095 (|#1| |#1| (-644 |#2|) (-644 |#3|)))) (-516 |#2| |#3|) (-1099) (-1214)) (T -515))
NIL
-(-10 -8 (-15 -2070 (|#1| |#1| |#2| |#3|)) (-15 -2070 (|#1| |#1| (-644 |#2|) (-644 |#3|))))
-((-2070 (($ $ (-644 |#1|) (-644 |#2|)) 7) (($ $ |#1| |#2|) 6)))
+(-10 -8 (-15 -2095 (|#1| |#1| |#2| |#3|)) (-15 -2095 (|#1| |#1| (-644 |#2|) (-644 |#3|))))
+((-2095 (($ $ (-644 |#1|) (-644 |#2|)) 7) (($ $ |#1| |#2|) 6)))
(((-516 |#1| |#2|) (-140) (-1099) (-1214)) (T -516))
-((-2070 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *4)) (-5 *3 (-644 *5)) (-4 *1 (-516 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1214)))) (-2070 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-516 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1214)))))
-(-13 (-10 -8 (-15 -2070 ($ $ |t#1| |t#2|)) (-15 -2070 ($ $ (-644 |t#1|) (-644 |t#2|)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 17)) (-1530 (((-644 (-2 (|:| |gen| |#1|) (|:| -3613 |#2|))) $) 19)) (-4126 (((-3 $ "failed") $ $) NIL)) (-4025 (((-771) $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-2647 ((|#1| $ (-566)) 24)) (-1860 ((|#2| $ (-566)) 22)) (-4105 (($ (-1 |#1| |#1|) $) 48)) (-4364 (($ (-1 |#2| |#2|) $) 45)) (-2878 (((-1157) $) NIL)) (-3054 (($ $ $) 55 (|has| |#2| (-792)))) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 44) (($ |#1|) NIL)) (-2022 ((|#2| |#1| $) 51)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 11 T CONST)) (-2940 (((-112) $ $) 30)) (-3034 (($ $ $) 28) (($ |#1| $) 26)) (* (($ (-921) $) NIL) (($ (-771) $) 37) (($ |#2| |#1|) 32)))
+((-2095 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *4)) (-5 *3 (-644 *5)) (-4 *1 (-516 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1214)))) (-2095 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-516 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1214)))))
+(-13 (-10 -8 (-15 -2095 ($ $ |t#1| |t#2|)) (-15 -2095 ($ $ (-644 |t#1|) (-644 |t#2|)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 17)) (-2455 (((-644 (-2 (|:| |gen| |#1|) (|:| -4337 |#2|))) $) 19)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4070 (((-771) $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-3749 ((|#1| $ (-566)) 24)) (-2724 ((|#2| $ (-566)) 22)) (-3796 (($ (-1 |#1| |#1|) $) 48)) (-1416 (($ (-1 |#2| |#2|) $) 45)) (-2402 (((-1157) $) NIL)) (-1364 (($ $ $) 55 (|has| |#2| (-792)))) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 44) (($ |#1|) NIL)) (-3756 ((|#2| |#1| $) 51)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 11 T CONST)) (-2950 (((-112) $ $) 30)) (-3040 (($ $ $) 28) (($ |#1| $) 26)) (* (($ (-921) $) NIL) (($ (-771) $) 37) (($ |#2| |#1|) 32)))
(((-517 |#1| |#2| |#3|) (-324 |#1| |#2|) (-1099) (-131) |#2|) (T -517))
NIL
(-324 |#1| |#2|)
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-1347 (((-112) (-112)) 32)) (-3874 ((|#1| $ (-566) |#1|) 42 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418)))) (-3586 (($ (-1 (-112) |#1|) $) 80)) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4130 (($ $) 84 (|has| |#1| (-1099)))) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3066 (($ |#1| $) NIL (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) 67)) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) NIL)) (-3968 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-4211 (($ $ (-566)) 19)) (-3583 (((-771) $) 13)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-4257 (($ (-771) |#1|) 31)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) 29 (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-1865 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) 58)) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) 59) (($ $ $) NIL (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) 28 (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4265 (($ $ $ (-566)) 76) (($ |#1| $ (-566)) 60)) (-4268 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3386 (($ (-644 |#1|)) 43)) (-4062 ((|#1| $) NIL (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) 24 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 63)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) 21)) (-4386 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) 56) (($ $ (-1231 (-566))) NIL)) (-1424 (($ $ (-1231 (-566))) 74) (($ $ (-566)) 68)) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) 64 (|has| $ (-6 -4418)))) (-3895 (($ $) 54)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) NIL)) (-1498 (($ $ $) 65) (($ $ |#1|) 62)) (-3704 (($ $ |#1|) NIL) (($ |#1| $) 61) (($ $ $) NIL) (($ (-644 $)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2997 (((-771) $) 22 (|has| $ (-6 -4417)))))
-(((-518 |#1| |#2|) (-13 (-19 |#1|) (-283 |#1|) (-10 -8 (-15 -3386 ($ (-644 |#1|))) (-15 -3583 ((-771) $)) (-15 -4211 ($ $ (-566))) (-15 -1347 ((-112) (-112))))) (-1214) (-566)) (T -518))
-((-3386 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-518 *3 *4)) (-14 *4 (-566)))) (-3583 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214)) (-14 *4 (-566)))) (-4211 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214)) (-14 *4 *2))) (-1347 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214)) (-14 *4 (-566)))))
-(-13 (-19 |#1|) (-283 |#1|) (-10 -8 (-15 -3386 ($ (-644 |#1|))) (-15 -3583 ((-771) $)) (-15 -4211 ($ $ (-566))) (-15 -1347 ((-112) (-112)))))
-((-2985 (((-112) $ $) NIL)) (-1614 (((-1134) $) 11)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1681 (((-1134) $) 13)) (-1640 (((-1134) $) 9)) (-2512 (((-862) $) 19) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-519) (-13 (-1082) (-10 -8 (-15 -1640 ((-1134) $)) (-15 -1614 ((-1134) $)) (-15 -1681 ((-1134) $))))) (T -519))
-((-1640 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519)))) (-1614 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519)))) (-1681 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519)))))
-(-13 (-1082) (-10 -8 (-15 -1640 ((-1134) $)) (-15 -1614 ((-1134) $)) (-15 -1681 ((-1134) $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 (((-583 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-583 |#1|) (-370)))) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-583 |#1|) (-370)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) NIL (|has| (-583 |#1|) (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-583 |#1|) "failed") $) NIL)) (-1756 (((-583 |#1|) $) NIL)) (-1547 (($ (-1264 (-583 |#1|))) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-583 |#1|) (-370)))) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-583 |#1|) (-370)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) NIL (|has| (-583 |#1|) (-370)))) (-3449 (((-112) $) NIL (|has| (-583 |#1|) (-370)))) (-3626 (($ $ (-771)) NIL (-2805 (|has| (-583 |#1|) (-145)) (|has| (-583 |#1|) (-370)))) (($ $) NIL (-2805 (|has| (-583 |#1|) (-145)) (|has| (-583 |#1|) (-370))))) (-2635 (((-112) $) NIL)) (-2716 (((-921) $) NIL (|has| (-583 |#1|) (-370))) (((-833 (-921)) $) NIL (-2805 (|has| (-583 |#1|) (-145)) (|has| (-583 |#1|) (-370))))) (-2741 (((-112) $) NIL)) (-2061 (($) NIL (|has| (-583 |#1|) (-370)))) (-3754 (((-112) $) NIL (|has| (-583 |#1|) (-370)))) (-1559 (((-583 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-583 |#1|) (-370)))) (-2546 (((-3 $ "failed") $) NIL (|has| (-583 |#1|) (-370)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 (-583 |#1|)) $) NIL) (((-1171 $) $ (-921)) NIL (|has| (-583 |#1|) (-370)))) (-3712 (((-921) $) NIL (|has| (-583 |#1|) (-370)))) (-1907 (((-1171 (-583 |#1|)) $) NIL (|has| (-583 |#1|) (-370)))) (-3866 (((-1171 (-583 |#1|)) $) NIL (|has| (-583 |#1|) (-370))) (((-3 (-1171 (-583 |#1|)) "failed") $ $) NIL (|has| (-583 |#1|) (-370)))) (-1900 (($ $ (-1171 (-583 |#1|))) NIL (|has| (-583 |#1|) (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-583 |#1|) (-370)) CONST)) (-2168 (($ (-921)) NIL (|has| (-583 |#1|) (-370)))) (-3751 (((-112) $) NIL)) (-4033 (((-1119) $) NIL)) (-4067 (($) NIL (|has| (-583 |#1|) (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| (-583 |#1|) (-370)))) (-2391 (((-420 $) $) NIL)) (-2003 (((-833 (-921))) NIL) (((-921)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-771) $) NIL (|has| (-583 |#1|) (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| (-583 |#1|) (-145)) (|has| (-583 |#1|) (-370))))) (-1909 (((-134)) NIL)) (-2862 (($ $) NIL (|has| (-583 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-583 |#1|) (-370)))) (-3992 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-2127 (((-1171 (-583 |#1|))) NIL)) (-1536 (($) NIL (|has| (-583 |#1|) (-370)))) (-2873 (($) NIL (|has| (-583 |#1|) (-370)))) (-2770 (((-1264 (-583 |#1|)) $) NIL) (((-689 (-583 |#1|)) (-1264 $)) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-583 |#1|) (-370)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-583 |#1|)) NIL)) (-3842 (($ $) NIL (|has| (-583 |#1|) (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| (-583 |#1|) (-145)) (|has| (-583 |#1|) (-370))))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2752 (($ $) NIL (|has| (-583 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-583 |#1|) (-370)))) (-2840 (($ $) NIL (|has| (-583 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-583 |#1|) (-370)))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL) (($ $ (-583 |#1|)) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-583 |#1|)) NIL) (($ (-583 |#1|) $) NIL)))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3343 (((-112) (-112)) 32)) (-3916 ((|#1| $ (-566) |#1|) 42 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415)))) (-2556 (($ (-1 (-112) |#1|) $) 80)) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4060 (($ $) 84 (|has| |#1| (-1099)))) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1450 (($ |#1| $) NIL (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) 67)) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) NIL)) (-4015 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3631 (($ $ (-566)) 19)) (-2526 (((-771) $) 13)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-4278 (($ (-771) |#1|) 31)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) 29 (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-2761 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) 58)) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) 59) (($ $ $) NIL (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) 28 (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2903 (($ $ $ (-566)) 76) (($ |#1| $ (-566)) 60)) (-4286 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4264 (($ (-644 |#1|)) 43)) (-4101 ((|#1| $) NIL (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) 24 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 63)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) 21)) (-4393 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) 56) (($ $ (-1231 (-566))) NIL)) (-3798 (($ $ (-1231 (-566))) 74) (($ $ (-566)) 68)) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) 64 (|has| $ (-6 -4415)))) (-3940 (($ $) 54)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) NIL)) (-3324 (($ $ $) 65) (($ $ |#1|) 62)) (-3727 (($ $ |#1|) NIL) (($ |#1| $) 61) (($ $ $) NIL) (($ (-644 $)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3020 (((-771) $) 22 (|has| $ (-6 -4414)))))
+(((-518 |#1| |#2|) (-13 (-19 |#1|) (-283 |#1|) (-10 -8 (-15 -4264 ($ (-644 |#1|))) (-15 -2526 ((-771) $)) (-15 -3631 ($ $ (-566))) (-15 -3343 ((-112) (-112))))) (-1214) (-566)) (T -518))
+((-4264 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-518 *3 *4)) (-14 *4 (-566)))) (-2526 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214)) (-14 *4 (-566)))) (-3631 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214)) (-14 *4 *2))) (-3343 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214)) (-14 *4 (-566)))))
+(-13 (-19 |#1|) (-283 |#1|) (-10 -8 (-15 -4264 ($ (-644 |#1|))) (-15 -2526 ((-771) $)) (-15 -3631 ($ $ (-566))) (-15 -3343 ((-112) (-112)))))
+((-3009 (((-112) $ $) NIL)) (-2072 (((-1134) $) 11)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1500 (((-1134) $) 13)) (-2445 (((-1134) $) 9)) (-3780 (((-862) $) 19) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-519) (-13 (-1082) (-10 -8 (-15 -2445 ((-1134) $)) (-15 -2072 ((-1134) $)) (-15 -1500 ((-1134) $))))) (T -519))
+((-2445 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519)))) (-2072 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519)))) (-1500 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519)))))
+(-13 (-1082) (-10 -8 (-15 -2445 ((-1134) $)) (-15 -2072 ((-1134) $)) (-15 -1500 ((-1134) $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 (((-583 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-583 |#1|) (-370)))) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-583 |#1|) (-370)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) NIL (|has| (-583 |#1|) (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-583 |#1|) "failed") $) NIL)) (-1867 (((-583 |#1|) $) NIL)) (-2613 (($ (-1264 (-583 |#1|))) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-583 |#1|) (-370)))) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-583 |#1|) (-370)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) NIL (|has| (-583 |#1|) (-370)))) (-3698 (((-112) $) NIL (|has| (-583 |#1|) (-370)))) (-2901 (($ $ (-771)) NIL (-2805 (|has| (-583 |#1|) (-145)) (|has| (-583 |#1|) (-370)))) (($ $) NIL (-2805 (|has| (-583 |#1|) (-145)) (|has| (-583 |#1|) (-370))))) (-1784 (((-112) $) NIL)) (-3227 (((-921) $) NIL (|has| (-583 |#1|) (-370))) (((-833 (-921)) $) NIL (-2805 (|has| (-583 |#1|) (-145)) (|has| (-583 |#1|) (-370))))) (-3466 (((-112) $) NIL)) (-4138 (($) NIL (|has| (-583 |#1|) (-370)))) (-1771 (((-112) $) NIL (|has| (-583 |#1|) (-370)))) (-2719 (((-583 |#1|) $) NIL) (($ $ (-921)) NIL (|has| (-583 |#1|) (-370)))) (-2133 (((-3 $ "failed") $) NIL (|has| (-583 |#1|) (-370)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 (-583 |#1|)) $) NIL) (((-1171 $) $ (-921)) NIL (|has| (-583 |#1|) (-370)))) (-1299 (((-921) $) NIL (|has| (-583 |#1|) (-370)))) (-1988 (((-1171 (-583 |#1|)) $) NIL (|has| (-583 |#1|) (-370)))) (-3433 (((-1171 (-583 |#1|)) $) NIL (|has| (-583 |#1|) (-370))) (((-3 (-1171 (-583 |#1|)) "failed") $ $) NIL (|has| (-583 |#1|) (-370)))) (-1923 (($ $ (-1171 (-583 |#1|))) NIL (|has| (-583 |#1|) (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-583 |#1|) (-370)) CONST)) (-2208 (($ (-921)) NIL (|has| (-583 |#1|) (-370)))) (-1737 (((-112) $) NIL)) (-4056 (((-1119) $) NIL)) (-4152 (($) NIL (|has| (-583 |#1|) (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| (-583 |#1|) (-370)))) (-2473 (((-420 $) $) NIL)) (-1723 (((-833 (-921))) NIL) (((-921)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-771) $) NIL (|has| (-583 |#1|) (-370))) (((-3 (-771) "failed") $ $) NIL (-2805 (|has| (-583 |#1|) (-145)) (|has| (-583 |#1|) (-370))))) (-2012 (((-134)) NIL)) (-2578 (($ $) NIL (|has| (-583 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-583 |#1|) (-370)))) (-2108 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-3601 (((-1171 (-583 |#1|))) NIL)) (-2507 (($) NIL (|has| (-583 |#1|) (-370)))) (-2348 (($) NIL (|has| (-583 |#1|) (-370)))) (-2543 (((-1264 (-583 |#1|)) $) NIL) (((-689 (-583 |#1|)) (-1264 $)) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-583 |#1|) (-370)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-583 |#1|)) NIL)) (-3226 (($ $) NIL (|has| (-583 |#1|) (-370))) (((-3 $ "failed") $) NIL (-2805 (|has| (-583 |#1|) (-145)) (|has| (-583 |#1|) (-370))))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL) (((-1264 $) (-921)) NIL)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-3583 (($ $) NIL (|has| (-583 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-583 |#1|) (-370)))) (-2876 (($ $) NIL (|has| (-583 |#1|) (-370))) (($ $ (-771)) NIL (|has| (-583 |#1|) (-370)))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL) (($ $ (-583 |#1|)) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-583 |#1|)) NIL) (($ (-583 |#1|) $) NIL)))
(((-520 |#1| |#2|) (-330 (-583 |#1|)) (-921) (-921)) (T -520))
NIL
(-330 (-583 |#1|))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-566) (-566) |#1|) 51)) (-1878 (($ $ (-566) |#4|) NIL)) (-4158 (($ $ (-566) |#5|) NIL)) (-2342 (($) NIL T CONST)) (-4134 ((|#4| $ (-566)) NIL)) (-1332 ((|#1| $ (-566) (-566) |#1|) 50)) (-3137 ((|#1| $ (-566) (-566)) 45)) (-3372 (((-644 |#1|) $) NIL)) (-2042 (((-771) $) 33)) (-4257 (($ (-771) (-771) |#1|) 30)) (-2053 (((-771) $) 38)) (-2744 (((-112) $ (-771)) NIL)) (-3266 (((-566) $) 31)) (-1905 (((-566) $) 32)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-4385 (((-566) $) 37)) (-4106 (((-566) $) 39)) (-1323 (($ (-1 |#1| |#1|) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) 55 (|has| |#1| (-1099)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1720 (($ $ |#1|) NIL)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 14)) (-2954 (($) 16)) (-4386 ((|#1| $ (-566) (-566)) 48) ((|#1| $ (-566) (-566) |#1|) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-4074 ((|#5| $ (-566)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-566) (-566) |#1|) 51)) (-2890 (($ $ (-566) |#4|) NIL)) (-4293 (($ $ (-566) |#5|) NIL)) (-3877 (($) NIL T CONST)) (-4104 ((|#4| $ (-566)) NIL)) (-3128 ((|#1| $ (-566) (-566) |#1|) 50)) (-3059 ((|#1| $ (-566) (-566)) 45)) (-3799 (((-644 |#1|) $) NIL)) (-4301 (((-771) $) 33)) (-4278 (($ (-771) (-771) |#1|) 30)) (-4313 (((-771) $) 38)) (-3501 (((-112) $ (-771)) NIL)) (-2615 (((-566) $) 31)) (-1966 (((-566) $) 32)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1653 (((-566) $) 37)) (-3807 (((-566) $) 39)) (-3117 (($ (-1 |#1| |#1|) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) 55 (|has| |#1| (-1099)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3750 (($ $ |#1|) NIL)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 14)) (-1793 (($) 16)) (-4393 ((|#1| $ (-566) (-566)) 48) ((|#1| $ (-566) (-566) |#1|) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-1621 ((|#5| $ (-566)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-521 |#1| |#2| |#3| |#4| |#5|) (-57 |#1| |#4| |#5|) (-1214) (-566) (-566) (-375 |#1|) (-375 |#1|)) (T -521))
NIL
(-57 |#1| |#4| |#5|)
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2212 ((|#1| $) NIL)) (-4309 ((|#1| $) NIL)) (-3301 (($ $) NIL)) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-1410 (($ $ (-566)) 73 (|has| $ (-6 -4418)))) (-2383 (((-112) $) NIL (|has| |#1| (-850))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3426 (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850)))) (($ (-1 (-112) |#1| |#1|) $) 68 (|has| $ (-6 -4418)))) (-3290 (($ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-3087 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-4290 (($ $ $) 23 (|has| $ (-6 -4418)))) (-1587 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-2831 ((|#1| $ |#1|) 21 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4418))) (($ $ "rest" $) 24 (|has| $ (-6 -4418))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) NIL (|has| $ (-6 -4418)))) (-3586 (($ (-1 (-112) |#1|) $) NIL)) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4299 ((|#1| $) NIL)) (-2342 (($) NIL T CONST)) (-2736 (($ $) 28 (|has| $ (-6 -4418)))) (-3852 (($ $) 29)) (-4076 (($ $) 18) (($ $ (-771)) 35)) (-4130 (($ $) 66 (|has| |#1| (-1099)))) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3066 (($ |#1| $) NIL (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) NIL)) (-2651 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1332 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) NIL)) (-1901 (((-112) $) NIL)) (-3968 (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099))) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) (-1 (-112) |#1|) $) NIL)) (-3372 (((-644 |#1|) $) 27 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) NIL)) (-4129 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4257 (($ (-771) |#1|) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) 31 (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-1865 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) 69)) (-3132 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 64 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3932 (($ |#1|) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2996 (((-644 |#1|) $) NIL)) (-2783 (((-112) $) NIL)) (-2878 (((-1157) $) 62 (|has| |#1| (-1099)))) (-2670 ((|#1| $) NIL) (($ $ (-771)) NIL)) (-4265 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-4268 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4062 ((|#1| $) 13) (($ $ (-771)) NIL)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) NIL (|has| $ (-6 -4418)))) (-1335 (((-112) $) NIL)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 12)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) 17)) (-2954 (($) 16)) (-4386 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1231 (-566))) NIL) ((|#1| $ (-566)) NIL) ((|#1| $ (-566) |#1|) NIL)) (-1442 (((-566) $ $) NIL)) (-1424 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-2201 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-1313 (((-112) $) 39)) (-1636 (($ $) NIL)) (-2231 (($ $) NIL (|has| $ (-6 -4418)))) (-3069 (((-771) $) NIL)) (-1904 (($ $) 44)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) 40)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 26)) (-1498 (($ $ $) 65) (($ $ |#1|) NIL)) (-3704 (($ $ $) NIL) (($ |#1| $) 10) (($ (-644 $)) NIL) (($ $ |#1|) NIL)) (-2512 (((-862) $) 54 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) NIL)) (-2105 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) 58 (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2997 (((-771) $) 9 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2252 ((|#1| $) NIL)) (-4369 ((|#1| $) NIL)) (-4043 (($ $) NIL)) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3670 (($ $ (-566)) 73 (|has| $ (-6 -4415)))) (-3070 (((-112) $) NIL (|has| |#1| (-850))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-1570 (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850)))) (($ (-1 (-112) |#1| |#1|) $) 68 (|has| $ (-6 -4415)))) (-1568 (($ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-1637 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-1938 (($ $ $) 23 (|has| $ (-6 -4415)))) (-1819 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-1921 ((|#1| $ |#1|) 21 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4415))) (($ $ "rest" $) 24 (|has| $ (-6 -4415))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) NIL (|has| $ (-6 -4415)))) (-2556 (($ (-1 (-112) |#1|) $) NIL)) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-4358 ((|#1| $) NIL)) (-3877 (($) NIL T CONST)) (-3416 (($ $) 28 (|has| $ (-6 -4415)))) (-3507 (($ $) 29)) (-4112 (($ $) 18) (($ $ (-771)) 35)) (-4060 (($ $) 66 (|has| |#1| (-1099)))) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1450 (($ |#1| $) NIL (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) NIL)) (-2661 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3128 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) NIL)) (-1935 (((-112) $) NIL)) (-4015 (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099))) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) (-1 (-112) |#1|) $) NIL)) (-3799 (((-644 |#1|) $) 27 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) NIL)) (-4050 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4278 (($ (-771) |#1|) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) 31 (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-2761 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) 69)) (-3891 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 64 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3977 (($ |#1|) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-3318 (((-644 |#1|) $) NIL)) (-2675 (((-112) $) NIL)) (-2402 (((-1157) $) 62 (|has| |#1| (-1099)))) (-2680 ((|#1| $) NIL) (($ $ (-771)) NIL)) (-2903 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-4286 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4101 ((|#1| $) 13) (($ $ (-771)) NIL)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) NIL (|has| $ (-6 -4415)))) (-1927 (((-112) $) NIL)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 12)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) 17)) (-1793 (($) 16)) (-4393 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1231 (-566))) NIL) ((|#1| $ (-566)) NIL) ((|#1| $ (-566) |#1|) NIL)) (-3969 (((-566) $ $) NIL)) (-3798 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-2215 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-1638 (((-112) $) 39)) (-2299 (($ $) NIL)) (-2127 (($ $) NIL (|has| $ (-6 -4415)))) (-1472 (((-771) $) NIL)) (-1957 (($ $) 44)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) 40)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 26)) (-3324 (($ $ $) 65) (($ $ |#1|) NIL)) (-3727 (($ $ $) NIL) (($ |#1| $) 10) (($ (-644 $)) NIL) (($ $ |#1|) NIL)) (-3780 (((-862) $) 54 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) NIL)) (-3381 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) 58 (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3020 (((-771) $) 9 (|has| $ (-6 -4414)))))
(((-522 |#1| |#2|) (-666 |#1|) (-1214) (-566)) (T -522))
NIL
(-666 |#1|)
-((-3071 ((|#4| |#4|) 37)) (-1821 (((-771) |#4|) 45)) (-2481 (((-771) |#4|) 46)) (-2442 (((-644 |#3|) |#4|) 56 (|has| |#3| (-6 -4418)))) (-2565 (((-3 |#4| "failed") |#4|) 70)) (-2464 ((|#4| |#4|) 62)) (-1595 ((|#1| |#4|) 61)))
-(((-523 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3071 (|#4| |#4|)) (-15 -1821 ((-771) |#4|)) (-15 -2481 ((-771) |#4|)) (IF (|has| |#3| (-6 -4418)) (-15 -2442 ((-644 |#3|) |#4|)) |%noBranch|) (-15 -1595 (|#1| |#4|)) (-15 -2464 (|#4| |#4|)) (-15 -2565 ((-3 |#4| "failed") |#4|))) (-365) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|)) (T -523))
-((-2565 (*1 *2 *2) (|partial| -12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-2464 (*1 *2 *2) (-12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-1595 (*1 *2 *3) (-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-365)) (-5 *1 (-523 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5)))) (-2442 (*1 *2 *3) (-12 (|has| *6 (-6 -4418)) (-4 *4 (-365)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-644 *6)) (-5 *1 (-523 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-2481 (*1 *2 *3) (-12 (-4 *4 (-365)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-523 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-1821 (*1 *2 *3) (-12 (-4 *4 (-365)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-523 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-3071 (*1 *2 *2) (-12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
-(-10 -7 (-15 -3071 (|#4| |#4|)) (-15 -1821 ((-771) |#4|)) (-15 -2481 ((-771) |#4|)) (IF (|has| |#3| (-6 -4418)) (-15 -2442 ((-644 |#3|) |#4|)) |%noBranch|) (-15 -1595 (|#1| |#4|)) (-15 -2464 (|#4| |#4|)) (-15 -2565 ((-3 |#4| "failed") |#4|)))
-((-3071 ((|#8| |#4|) 20)) (-2442 (((-644 |#3|) |#4|) 29 (|has| |#7| (-6 -4418)))) (-2565 (((-3 |#8| "failed") |#4|) 23)))
-(((-524 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3071 (|#8| |#4|)) (-15 -2565 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4418)) (-15 -2442 ((-644 |#3|) |#4|)) |%noBranch|)) (-558) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|) (-992 |#1|) (-375 |#5|) (-375 |#5|) (-687 |#5| |#6| |#7|)) (T -524))
-((-2442 (*1 *2 *3) (-12 (|has| *9 (-6 -4418)) (-4 *4 (-558)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-4 *7 (-992 *4)) (-4 *8 (-375 *7)) (-4 *9 (-375 *7)) (-5 *2 (-644 *6)) (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-687 *4 *5 *6)) (-4 *10 (-687 *7 *8 *9)))) (-2565 (*1 *2 *3) (|partial| -12 (-4 *4 (-558)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-4 *7 (-992 *4)) (-4 *2 (-687 *7 *8 *9)) (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-687 *4 *5 *6)) (-4 *8 (-375 *7)) (-4 *9 (-375 *7)))) (-3071 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-4 *7 (-992 *4)) (-4 *2 (-687 *7 *8 *9)) (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-687 *4 *5 *6)) (-4 *8 (-375 *7)) (-4 *9 (-375 *7)))))
-(-10 -7 (-15 -3071 (|#8| |#4|)) (-15 -2565 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4418)) (-15 -2442 ((-644 |#3|) |#4|)) |%noBranch|))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2140 (($ (-771) (-771)) NIL)) (-2654 (($ $ $) NIL)) (-3804 (($ (-602 |#1| |#3|)) NIL) (($ $) NIL)) (-2087 (((-112) $) NIL)) (-4270 (($ $ (-566) (-566)) 21)) (-2302 (($ $ (-566) (-566)) NIL)) (-1580 (($ $ (-566) (-566) (-566) (-566)) NIL)) (-2589 (($ $) NIL)) (-4072 (((-112) $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-2242 (($ $ (-566) (-566) $) NIL)) (-3874 ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566)) $) NIL)) (-1878 (($ $ (-566) (-602 |#1| |#3|)) NIL)) (-4158 (($ $ (-566) (-602 |#1| |#2|)) NIL)) (-3701 (($ (-771) |#1|) NIL)) (-2342 (($) NIL T CONST)) (-3071 (($ $) 30 (|has| |#1| (-308)))) (-4134 (((-602 |#1| |#3|) $ (-566)) NIL)) (-1821 (((-771) $) 33 (|has| |#1| (-558)))) (-1332 ((|#1| $ (-566) (-566) |#1|) NIL)) (-3137 ((|#1| $ (-566) (-566)) NIL)) (-3372 (((-644 |#1|) $) NIL)) (-2481 (((-771) $) 35 (|has| |#1| (-558)))) (-2442 (((-644 (-602 |#1| |#2|)) $) 38 (|has| |#1| (-558)))) (-2042 (((-771) $) NIL)) (-4257 (($ (-771) (-771) |#1|) NIL)) (-2053 (((-771) $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-1299 ((|#1| $) 28 (|has| |#1| (-6 (-4419 "*"))))) (-3266 (((-566) $) 10)) (-1905 (((-566) $) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-4385 (((-566) $) 13)) (-4106 (((-566) $) NIL)) (-4198 (($ (-644 (-644 |#1|))) NIL)) (-1323 (($ (-1 |#1| |#1|) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2503 (((-644 (-644 |#1|)) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2565 (((-3 $ "failed") $) 42 (|has| |#1| (-365)))) (-1797 (($ $ $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1720 (($ $ |#1|) NIL)) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-566) (-566)) NIL) ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566))) NIL)) (-3744 (($ (-644 |#1|)) NIL) (($ (-644 $)) NIL)) (-2742 (((-112) $) NIL)) (-1595 ((|#1| $) 26 (|has| |#1| (-6 (-4419 "*"))))) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-4074 (((-602 |#1| |#2|) $ (-566)) NIL)) (-2512 (($ (-602 |#1| |#2|)) NIL) (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2103 (((-112) $) NIL)) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $ $) NIL) (($ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-566) $) NIL) (((-602 |#1| |#2|) $ (-602 |#1| |#2|)) NIL) (((-602 |#1| |#3|) (-602 |#1| |#3|) $) NIL)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-1495 ((|#4| |#4|) 37)) (-4157 (((-771) |#4|) 45)) (-2736 (((-771) |#4|) 46)) (-3586 (((-644 |#3|) |#4|) 56 (|has| |#3| (-6 -4415)))) (-2344 (((-3 |#4| "failed") |#4|) 70)) (-2598 ((|#4| |#4|) 62)) (-1896 ((|#1| |#4|) 61)))
+(((-523 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1495 (|#4| |#4|)) (-15 -4157 ((-771) |#4|)) (-15 -2736 ((-771) |#4|)) (IF (|has| |#3| (-6 -4415)) (-15 -3586 ((-644 |#3|) |#4|)) |%noBranch|) (-15 -1896 (|#1| |#4|)) (-15 -2598 (|#4| |#4|)) (-15 -2344 ((-3 |#4| "failed") |#4|))) (-365) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|)) (T -523))
+((-2344 (*1 *2 *2) (|partial| -12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-2598 (*1 *2 *2) (-12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-1896 (*1 *2 *3) (-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-365)) (-5 *1 (-523 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5)))) (-3586 (*1 *2 *3) (-12 (|has| *6 (-6 -4415)) (-4 *4 (-365)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-644 *6)) (-5 *1 (-523 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-2736 (*1 *2 *3) (-12 (-4 *4 (-365)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-523 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-4157 (*1 *2 *3) (-12 (-4 *4 (-365)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-523 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-1495 (*1 *2 *2) (-12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
+(-10 -7 (-15 -1495 (|#4| |#4|)) (-15 -4157 ((-771) |#4|)) (-15 -2736 ((-771) |#4|)) (IF (|has| |#3| (-6 -4415)) (-15 -3586 ((-644 |#3|) |#4|)) |%noBranch|) (-15 -1896 (|#1| |#4|)) (-15 -2598 (|#4| |#4|)) (-15 -2344 ((-3 |#4| "failed") |#4|)))
+((-1495 ((|#8| |#4|) 20)) (-3586 (((-644 |#3|) |#4|) 29 (|has| |#7| (-6 -4415)))) (-2344 (((-3 |#8| "failed") |#4|) 23)))
+(((-524 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1495 (|#8| |#4|)) (-15 -2344 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4415)) (-15 -3586 ((-644 |#3|) |#4|)) |%noBranch|)) (-558) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|) (-992 |#1|) (-375 |#5|) (-375 |#5|) (-687 |#5| |#6| |#7|)) (T -524))
+((-3586 (*1 *2 *3) (-12 (|has| *9 (-6 -4415)) (-4 *4 (-558)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-4 *7 (-992 *4)) (-4 *8 (-375 *7)) (-4 *9 (-375 *7)) (-5 *2 (-644 *6)) (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-687 *4 *5 *6)) (-4 *10 (-687 *7 *8 *9)))) (-2344 (*1 *2 *3) (|partial| -12 (-4 *4 (-558)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-4 *7 (-992 *4)) (-4 *2 (-687 *7 *8 *9)) (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-687 *4 *5 *6)) (-4 *8 (-375 *7)) (-4 *9 (-375 *7)))) (-1495 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-4 *7 (-992 *4)) (-4 *2 (-687 *7 *8 *9)) (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-687 *4 *5 *6)) (-4 *8 (-375 *7)) (-4 *9 (-375 *7)))))
+(-10 -7 (-15 -1495 (|#8| |#4|)) (-15 -2344 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4415)) (-15 -3586 ((-644 |#3|) |#4|)) |%noBranch|))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2181 (($ (-771) (-771)) NIL)) (-3810 (($ $ $) NIL)) (-4078 (($ (-602 |#1| |#3|)) NIL) (($ $) NIL)) (-3194 (((-112) $) NIL)) (-2948 (($ $ (-566) (-566)) 21)) (-1605 (($ $ (-566) (-566)) NIL)) (-1739 (($ $ (-566) (-566) (-566) (-566)) NIL)) (-1300 (($ $) NIL)) (-1597 (((-112) $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-2236 (($ $ (-566) (-566) $) NIL)) (-3916 ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566)) $) NIL)) (-2890 (($ $ (-566) (-602 |#1| |#3|)) NIL)) (-4293 (($ $ (-566) (-602 |#1| |#2|)) NIL)) (-2453 (($ (-771) |#1|) NIL)) (-3877 (($) NIL T CONST)) (-1495 (($ $) 30 (|has| |#1| (-308)))) (-4104 (((-602 |#1| |#3|) $ (-566)) NIL)) (-4157 (((-771) $) 33 (|has| |#1| (-558)))) (-3128 ((|#1| $ (-566) (-566) |#1|) NIL)) (-3059 ((|#1| $ (-566) (-566)) NIL)) (-3799 (((-644 |#1|) $) NIL)) (-2736 (((-771) $) 35 (|has| |#1| (-558)))) (-3586 (((-644 (-602 |#1| |#2|)) $) 38 (|has| |#1| (-558)))) (-4301 (((-771) $) NIL)) (-4278 (($ (-771) (-771) |#1|) NIL)) (-4313 (((-771) $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-1647 ((|#1| $) 28 (|has| |#1| (-6 (-4416 "*"))))) (-2615 (((-566) $) 10)) (-1966 (((-566) $) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1653 (((-566) $) 13)) (-3807 (((-566) $) NIL)) (-1883 (($ (-644 (-644 |#1|))) NIL)) (-3117 (($ (-1 |#1| |#1|) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2947 (((-644 (-644 |#1|)) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2344 (((-3 $ "failed") $) 42 (|has| |#1| (-365)))) (-3319 (($ $ $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3750 (($ $ |#1|) NIL)) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-566) (-566)) NIL) ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566))) NIL)) (-1664 (($ (-644 |#1|)) NIL) (($ (-644 $)) NIL)) (-3478 (((-112) $) NIL)) (-1896 ((|#1| $) 26 (|has| |#1| (-6 (-4416 "*"))))) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-1621 (((-602 |#1| |#2|) $ (-566)) NIL)) (-3780 (($ (-602 |#1| |#2|)) NIL) (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3359 (((-112) $) NIL)) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $ $) NIL) (($ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365)))) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-566) $) NIL) (((-602 |#1| |#2|) $ (-602 |#1| |#2|)) NIL) (((-602 |#1| |#3|) (-602 |#1| |#3|) $) NIL)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-525 |#1| |#2| |#3|) (-687 |#1| (-602 |#1| |#3|) (-602 |#1| |#2|)) (-1049) (-566) (-566)) (T -525))
NIL
(-687 |#1| (-602 |#1| |#3|) (-602 |#1| |#2|))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-2207 (((-644 (-1213)) $) 13)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 19) (($ (-1180)) NIL) (((-1180) $) NIL) (($ (-644 (-1213))) 11)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-526) (-13 (-1082) (-10 -8 (-15 -2512 ($ (-644 (-1213)))) (-15 -2207 ((-644 (-1213)) $))))) (T -526))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-526)))) (-2207 (*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-526)))))
-(-13 (-1082) (-10 -8 (-15 -2512 ($ (-644 (-1213)))) (-15 -2207 ((-644 (-1213)) $))))
-((-2985 (((-112) $ $) NIL)) (-2185 (((-1134) $) 14)) (-2878 (((-1157) $) NIL)) (-1911 (((-508) $) 11)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 21) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-527) (-13 (-1082) (-10 -8 (-15 -1911 ((-508) $)) (-15 -2185 ((-1134) $))))) (T -527))
-((-1911 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-527)))) (-2185 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-527)))))
-(-13 (-1082) (-10 -8 (-15 -1911 ((-508) $)) (-15 -2185 ((-1134) $))))
-((-3395 (((-691 (-1222)) $) 15)) (-4269 (((-691 (-1220)) $) 39)) (-2625 (((-691 (-1219)) $) 30)) (-2984 (((-691 (-551)) $) 12)) (-1630 (((-691 (-549)) $) 43)) (-1391 (((-691 (-548)) $) 34)) (-3529 (((-771) $ (-128)) 55)))
-(((-528 |#1|) (-10 -8 (-15 -3529 ((-771) |#1| (-128))) (-15 -4269 ((-691 (-1220)) |#1|)) (-15 -1630 ((-691 (-549)) |#1|)) (-15 -2625 ((-691 (-1219)) |#1|)) (-15 -1391 ((-691 (-548)) |#1|)) (-15 -3395 ((-691 (-1222)) |#1|)) (-15 -2984 ((-691 (-551)) |#1|))) (-529)) (T -528))
-NIL
-(-10 -8 (-15 -3529 ((-771) |#1| (-128))) (-15 -4269 ((-691 (-1220)) |#1|)) (-15 -1630 ((-691 (-549)) |#1|)) (-15 -2625 ((-691 (-1219)) |#1|)) (-15 -1391 ((-691 (-548)) |#1|)) (-15 -3395 ((-691 (-1222)) |#1|)) (-15 -2984 ((-691 (-551)) |#1|)))
-((-3395 (((-691 (-1222)) $) 12)) (-4269 (((-691 (-1220)) $) 8)) (-2625 (((-691 (-1219)) $) 10)) (-2984 (((-691 (-551)) $) 13)) (-1630 (((-691 (-549)) $) 9)) (-1391 (((-691 (-548)) $) 11)) (-3529 (((-771) $ (-128)) 7)) (-2296 (((-691 (-129)) $) 14)) (-1459 (($ $) 6)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-1897 (((-644 (-1213)) $) 13)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 19) (($ (-1180)) NIL) (((-1180) $) NIL) (($ (-644 (-1213))) 11)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-526) (-13 (-1082) (-10 -8 (-15 -3780 ($ (-644 (-1213)))) (-15 -1897 ((-644 (-1213)) $))))) (T -526))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-526)))) (-1897 (*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-526)))))
+(-13 (-1082) (-10 -8 (-15 -3780 ($ (-644 (-1213)))) (-15 -1897 ((-644 (-1213)) $))))
+((-3009 (((-112) $ $) NIL)) (-2904 (((-1134) $) 14)) (-2402 (((-1157) $) NIL)) (-2032 (((-508) $) 11)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 21) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-527) (-13 (-1082) (-10 -8 (-15 -2032 ((-508) $)) (-15 -2904 ((-1134) $))))) (T -527))
+((-2032 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-527)))) (-2904 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-527)))))
+(-13 (-1082) (-10 -8 (-15 -2032 ((-508) $)) (-15 -2904 ((-1134) $))))
+((-4354 (((-691 (-1222)) $) 15)) (-2937 (((-691 (-1220)) $) 39)) (-1688 (((-691 (-1219)) $) 30)) (-2033 (((-691 (-551)) $) 12)) (-2234 (((-691 (-549)) $) 43)) (-3446 (((-691 (-548)) $) 34)) (-3250 (((-771) $ (-128)) 55)))
+(((-528 |#1|) (-10 -8 (-15 -3250 ((-771) |#1| (-128))) (-15 -2937 ((-691 (-1220)) |#1|)) (-15 -2234 ((-691 (-549)) |#1|)) (-15 -1688 ((-691 (-1219)) |#1|)) (-15 -3446 ((-691 (-548)) |#1|)) (-15 -4354 ((-691 (-1222)) |#1|)) (-15 -2033 ((-691 (-551)) |#1|))) (-529)) (T -528))
+NIL
+(-10 -8 (-15 -3250 ((-771) |#1| (-128))) (-15 -2937 ((-691 (-1220)) |#1|)) (-15 -2234 ((-691 (-549)) |#1|)) (-15 -1688 ((-691 (-1219)) |#1|)) (-15 -3446 ((-691 (-548)) |#1|)) (-15 -4354 ((-691 (-1222)) |#1|)) (-15 -2033 ((-691 (-551)) |#1|)))
+((-4354 (((-691 (-1222)) $) 12)) (-2937 (((-691 (-1220)) $) 8)) (-1688 (((-691 (-1219)) $) 10)) (-2033 (((-691 (-551)) $) 13)) (-2234 (((-691 (-549)) $) 9)) (-3446 (((-691 (-548)) $) 11)) (-3250 (((-771) $ (-128)) 7)) (-1534 (((-691 (-129)) $) 14)) (-4127 (($ $) 6)))
(((-529) (-140)) (T -529))
-((-2296 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-129))))) (-2984 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-551))))) (-3395 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1222))))) (-1391 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-548))))) (-2625 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1219))))) (-1630 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-549))))) (-4269 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1220))))) (-3529 (*1 *2 *1 *3) (-12 (-4 *1 (-529)) (-5 *3 (-128)) (-5 *2 (-771)))))
-(-13 (-173) (-10 -8 (-15 -2296 ((-691 (-129)) $)) (-15 -2984 ((-691 (-551)) $)) (-15 -3395 ((-691 (-1222)) $)) (-15 -1391 ((-691 (-548)) $)) (-15 -2625 ((-691 (-1219)) $)) (-15 -1630 ((-691 (-549)) $)) (-15 -4269 ((-691 (-1220)) $)) (-15 -3529 ((-771) $ (-128)))))
+((-1534 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-129))))) (-2033 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-551))))) (-4354 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1222))))) (-3446 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-548))))) (-1688 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1219))))) (-2234 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-549))))) (-2937 (*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1220))))) (-3250 (*1 *2 *1 *3) (-12 (-4 *1 (-529)) (-5 *3 (-128)) (-5 *2 (-771)))))
+(-13 (-173) (-10 -8 (-15 -1534 ((-691 (-129)) $)) (-15 -2033 ((-691 (-551)) $)) (-15 -4354 ((-691 (-1222)) $)) (-15 -3446 ((-691 (-548)) $)) (-15 -1688 ((-691 (-1219)) $)) (-15 -2234 ((-691 (-549)) $)) (-15 -2937 ((-691 (-1220)) $)) (-15 -3250 ((-771) $ (-128)))))
(((-173) . T))
-((-4027 (((-1171 |#1|) (-771)) 115)) (-3817 (((-1264 |#1|) (-1264 |#1|) (-921)) 108)) (-1616 (((-1269) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))) |#1|) 124)) (-2244 (((-1264 |#1|) (-1264 |#1|) (-771)) 53)) (-3335 (((-1264 |#1|) (-921)) 110)) (-1893 (((-1264 |#1|) (-1264 |#1|) (-566)) 30)) (-3589 (((-1171 |#1|) (-1264 |#1|)) 116)) (-2061 (((-1264 |#1|) (-921)) 137)) (-3754 (((-112) (-1264 |#1|)) 120)) (-1559 (((-1264 |#1|) (-1264 |#1|) (-921)) 100)) (-3929 (((-1171 |#1|) (-1264 |#1|)) 131)) (-3712 (((-921) (-1264 |#1|)) 96)) (-2626 (((-1264 |#1|) (-1264 |#1|)) 38)) (-2168 (((-1264 |#1|) (-921) (-921)) 140)) (-4141 (((-1264 |#1|) (-1264 |#1|) (-1119) (-1119)) 29)) (-3327 (((-1264 |#1|) (-1264 |#1|) (-771) (-1119)) 54)) (-1990 (((-1264 (-1264 |#1|)) (-921)) 136)) (-3061 (((-1264 |#1|) (-1264 |#1|) (-1264 |#1|)) 121)) (** (((-1264 |#1|) (-1264 |#1|) (-566)) 67)) (* (((-1264 |#1|) (-1264 |#1|) (-1264 |#1|)) 31)))
-(((-530 |#1|) (-10 -7 (-15 -1616 ((-1269) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))) |#1|)) (-15 -3335 ((-1264 |#1|) (-921))) (-15 -2168 ((-1264 |#1|) (-921) (-921))) (-15 -3589 ((-1171 |#1|) (-1264 |#1|))) (-15 -4027 ((-1171 |#1|) (-771))) (-15 -3327 ((-1264 |#1|) (-1264 |#1|) (-771) (-1119))) (-15 -2244 ((-1264 |#1|) (-1264 |#1|) (-771))) (-15 -4141 ((-1264 |#1|) (-1264 |#1|) (-1119) (-1119))) (-15 -1893 ((-1264 |#1|) (-1264 |#1|) (-566))) (-15 ** ((-1264 |#1|) (-1264 |#1|) (-566))) (-15 * ((-1264 |#1|) (-1264 |#1|) (-1264 |#1|))) (-15 -3061 ((-1264 |#1|) (-1264 |#1|) (-1264 |#1|))) (-15 -1559 ((-1264 |#1|) (-1264 |#1|) (-921))) (-15 -3817 ((-1264 |#1|) (-1264 |#1|) (-921))) (-15 -2626 ((-1264 |#1|) (-1264 |#1|))) (-15 -3712 ((-921) (-1264 |#1|))) (-15 -3754 ((-112) (-1264 |#1|))) (-15 -1990 ((-1264 (-1264 |#1|)) (-921))) (-15 -2061 ((-1264 |#1|) (-921))) (-15 -3929 ((-1171 |#1|) (-1264 |#1|)))) (-351)) (T -530))
-((-3929 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-1171 *4)) (-5 *1 (-530 *4)))) (-2061 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4)) (-4 *4 (-351)))) (-1990 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1264 (-1264 *4))) (-5 *1 (-530 *4)) (-4 *4 (-351)))) (-3754 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-112)) (-5 *1 (-530 *4)))) (-3712 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-921)) (-5 *1 (-530 *4)))) (-2626 (*1 *2 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-351)) (-5 *1 (-530 *3)))) (-3817 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-921)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-1559 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-921)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-3061 (*1 *2 *2 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-351)) (-5 *1 (-530 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-351)) (-5 *1 (-530 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-566)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-1893 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-566)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-4141 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-1119)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-2244 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-3327 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1264 *5)) (-5 *3 (-771)) (-5 *4 (-1119)) (-4 *5 (-351)) (-5 *1 (-530 *5)))) (-4027 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1171 *4)) (-5 *1 (-530 *4)) (-4 *4 (-351)))) (-3589 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-1171 *4)) (-5 *1 (-530 *4)))) (-2168 (*1 *2 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4)) (-4 *4 (-351)))) (-3335 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4)) (-4 *4 (-351)))) (-1616 (*1 *2 *3 *4) (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119)))))) (-4 *4 (-351)) (-5 *2 (-1269)) (-5 *1 (-530 *4)))))
-(-10 -7 (-15 -1616 ((-1269) (-1264 (-644 (-2 (|:| -2212 |#1|) (|:| -2168 (-1119))))) |#1|)) (-15 -3335 ((-1264 |#1|) (-921))) (-15 -2168 ((-1264 |#1|) (-921) (-921))) (-15 -3589 ((-1171 |#1|) (-1264 |#1|))) (-15 -4027 ((-1171 |#1|) (-771))) (-15 -3327 ((-1264 |#1|) (-1264 |#1|) (-771) (-1119))) (-15 -2244 ((-1264 |#1|) (-1264 |#1|) (-771))) (-15 -4141 ((-1264 |#1|) (-1264 |#1|) (-1119) (-1119))) (-15 -1893 ((-1264 |#1|) (-1264 |#1|) (-566))) (-15 ** ((-1264 |#1|) (-1264 |#1|) (-566))) (-15 * ((-1264 |#1|) (-1264 |#1|) (-1264 |#1|))) (-15 -3061 ((-1264 |#1|) (-1264 |#1|) (-1264 |#1|))) (-15 -1559 ((-1264 |#1|) (-1264 |#1|) (-921))) (-15 -3817 ((-1264 |#1|) (-1264 |#1|) (-921))) (-15 -2626 ((-1264 |#1|) (-1264 |#1|))) (-15 -3712 ((-921) (-1264 |#1|))) (-15 -3754 ((-112) (-1264 |#1|))) (-15 -1990 ((-1264 (-1264 |#1|)) (-921))) (-15 -2061 ((-1264 |#1|) (-921))) (-15 -3929 ((-1171 |#1|) (-1264 |#1|))))
-((-3395 (((-691 (-1222)) $) NIL)) (-4269 (((-691 (-1220)) $) NIL)) (-2625 (((-691 (-1219)) $) NIL)) (-2984 (((-691 (-551)) $) NIL)) (-1630 (((-691 (-549)) $) NIL)) (-1391 (((-691 (-548)) $) NIL)) (-3529 (((-771) $ (-128)) NIL)) (-2296 (((-691 (-129)) $) 26)) (-4191 (((-1119) $ (-1119)) 31)) (-3968 (((-1119) $) 30)) (-3218 (((-112) $) 20)) (-2543 (($ (-390)) 14) (($ (-1157)) 16)) (-3186 (((-112) $) 27)) (-2512 (((-862) $) 34)) (-1459 (($ $) 28)))
-(((-531) (-13 (-529) (-613 (-862)) (-10 -8 (-15 -2543 ($ (-390))) (-15 -2543 ($ (-1157))) (-15 -3186 ((-112) $)) (-15 -3218 ((-112) $)) (-15 -3968 ((-1119) $)) (-15 -4191 ((-1119) $ (-1119)))))) (T -531))
-((-2543 (*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-531)))) (-2543 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-531)))) (-3186 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-531)))) (-3218 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-531)))) (-3968 (*1 *2 *1) (-12 (-5 *2 (-1119)) (-5 *1 (-531)))) (-4191 (*1 *2 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-531)))))
-(-13 (-529) (-613 (-862)) (-10 -8 (-15 -2543 ($ (-390))) (-15 -2543 ($ (-1157))) (-15 -3186 ((-112) $)) (-15 -3218 ((-112) $)) (-15 -3968 ((-1119) $)) (-15 -4191 ((-1119) $ (-1119)))))
-((-4142 (((-1 |#1| |#1|) |#1|) 11)) (-1617 (((-1 |#1| |#1|)) 10)))
-(((-532 |#1|) (-10 -7 (-15 -1617 ((-1 |#1| |#1|))) (-15 -4142 ((-1 |#1| |#1|) |#1|))) (-13 (-726) (-25))) (T -532))
-((-4142 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-532 *3)) (-4 *3 (-13 (-726) (-25))))) (-1617 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-532 *3)) (-4 *3 (-13 (-726) (-25))))))
-(-10 -7 (-15 -1617 ((-1 |#1| |#1|))) (-15 -4142 ((-1 |#1| |#1|) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3711 (($ $ $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3577 (($ $) NIL)) (-2519 (($ (-771) |#1|) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3077 (($ (-1 (-771) (-771)) $) NIL)) (-2896 ((|#1| $) NIL)) (-3557 (((-771) $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 27)) (-3122 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)) (-3034 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL)))
+((-2434 (((-1171 |#1|) (-771)) 115)) (-3834 (((-1264 |#1|) (-1264 |#1|) (-921)) 108)) (-2094 (((-1269) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))) |#1|) 124)) (-2259 (((-1264 |#1|) (-1264 |#1|) (-771)) 53)) (-1618 (((-1264 |#1|) (-921)) 110)) (-1854 (((-1264 |#1|) (-1264 |#1|) (-566)) 30)) (-2576 (((-1171 |#1|) (-1264 |#1|)) 116)) (-4138 (((-1264 |#1|) (-921)) 137)) (-1771 (((-112) (-1264 |#1|)) 120)) (-2719 (((-1264 |#1|) (-1264 |#1|) (-921)) 100)) (-2750 (((-1171 |#1|) (-1264 |#1|)) 131)) (-1299 (((-921) (-1264 |#1|)) 96)) (-3584 (((-1264 |#1|) (-1264 |#1|)) 38)) (-2208 (((-1264 |#1|) (-921) (-921)) 140)) (-4168 (((-1264 |#1|) (-1264 |#1|) (-1119) (-1119)) 29)) (-1889 (((-1264 |#1|) (-1264 |#1|) (-771) (-1119)) 54)) (-1575 (((-1264 (-1264 |#1|)) (-921)) 136)) (-3062 (((-1264 |#1|) (-1264 |#1|) (-1264 |#1|)) 121)) (** (((-1264 |#1|) (-1264 |#1|) (-566)) 67)) (* (((-1264 |#1|) (-1264 |#1|) (-1264 |#1|)) 31)))
+(((-530 |#1|) (-10 -7 (-15 -2094 ((-1269) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))) |#1|)) (-15 -1618 ((-1264 |#1|) (-921))) (-15 -2208 ((-1264 |#1|) (-921) (-921))) (-15 -2576 ((-1171 |#1|) (-1264 |#1|))) (-15 -2434 ((-1171 |#1|) (-771))) (-15 -1889 ((-1264 |#1|) (-1264 |#1|) (-771) (-1119))) (-15 -2259 ((-1264 |#1|) (-1264 |#1|) (-771))) (-15 -4168 ((-1264 |#1|) (-1264 |#1|) (-1119) (-1119))) (-15 -1854 ((-1264 |#1|) (-1264 |#1|) (-566))) (-15 ** ((-1264 |#1|) (-1264 |#1|) (-566))) (-15 * ((-1264 |#1|) (-1264 |#1|) (-1264 |#1|))) (-15 -3062 ((-1264 |#1|) (-1264 |#1|) (-1264 |#1|))) (-15 -2719 ((-1264 |#1|) (-1264 |#1|) (-921))) (-15 -3834 ((-1264 |#1|) (-1264 |#1|) (-921))) (-15 -3584 ((-1264 |#1|) (-1264 |#1|))) (-15 -1299 ((-921) (-1264 |#1|))) (-15 -1771 ((-112) (-1264 |#1|))) (-15 -1575 ((-1264 (-1264 |#1|)) (-921))) (-15 -4138 ((-1264 |#1|) (-921))) (-15 -2750 ((-1171 |#1|) (-1264 |#1|)))) (-351)) (T -530))
+((-2750 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-1171 *4)) (-5 *1 (-530 *4)))) (-4138 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4)) (-4 *4 (-351)))) (-1575 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1264 (-1264 *4))) (-5 *1 (-530 *4)) (-4 *4 (-351)))) (-1771 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-112)) (-5 *1 (-530 *4)))) (-1299 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-921)) (-5 *1 (-530 *4)))) (-3584 (*1 *2 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-351)) (-5 *1 (-530 *3)))) (-3834 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-921)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-2719 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-921)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-3062 (*1 *2 *2 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-351)) (-5 *1 (-530 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-351)) (-5 *1 (-530 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-566)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-1854 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-566)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-4168 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-1119)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-2259 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-530 *4)))) (-1889 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1264 *5)) (-5 *3 (-771)) (-5 *4 (-1119)) (-4 *5 (-351)) (-5 *1 (-530 *5)))) (-2434 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1171 *4)) (-5 *1 (-530 *4)) (-4 *4 (-351)))) (-2576 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-1171 *4)) (-5 *1 (-530 *4)))) (-2208 (*1 *2 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4)) (-4 *4 (-351)))) (-1618 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4)) (-4 *4 (-351)))) (-2094 (*1 *2 *3 *4) (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119)))))) (-4 *4 (-351)) (-5 *2 (-1269)) (-5 *1 (-530 *4)))))
+(-10 -7 (-15 -2094 ((-1269) (-1264 (-644 (-2 (|:| -2252 |#1|) (|:| -2208 (-1119))))) |#1|)) (-15 -1618 ((-1264 |#1|) (-921))) (-15 -2208 ((-1264 |#1|) (-921) (-921))) (-15 -2576 ((-1171 |#1|) (-1264 |#1|))) (-15 -2434 ((-1171 |#1|) (-771))) (-15 -1889 ((-1264 |#1|) (-1264 |#1|) (-771) (-1119))) (-15 -2259 ((-1264 |#1|) (-1264 |#1|) (-771))) (-15 -4168 ((-1264 |#1|) (-1264 |#1|) (-1119) (-1119))) (-15 -1854 ((-1264 |#1|) (-1264 |#1|) (-566))) (-15 ** ((-1264 |#1|) (-1264 |#1|) (-566))) (-15 * ((-1264 |#1|) (-1264 |#1|) (-1264 |#1|))) (-15 -3062 ((-1264 |#1|) (-1264 |#1|) (-1264 |#1|))) (-15 -2719 ((-1264 |#1|) (-1264 |#1|) (-921))) (-15 -3834 ((-1264 |#1|) (-1264 |#1|) (-921))) (-15 -3584 ((-1264 |#1|) (-1264 |#1|))) (-15 -1299 ((-921) (-1264 |#1|))) (-15 -1771 ((-112) (-1264 |#1|))) (-15 -1575 ((-1264 (-1264 |#1|)) (-921))) (-15 -4138 ((-1264 |#1|) (-921))) (-15 -2750 ((-1171 |#1|) (-1264 |#1|))))
+((-4354 (((-691 (-1222)) $) NIL)) (-2937 (((-691 (-1220)) $) NIL)) (-1688 (((-691 (-1219)) $) NIL)) (-2033 (((-691 (-551)) $) NIL)) (-2234 (((-691 (-549)) $) NIL)) (-3446 (((-691 (-548)) $) NIL)) (-3250 (((-771) $ (-128)) NIL)) (-1534 (((-691 (-129)) $) 26)) (-3429 (((-1119) $ (-1119)) 31)) (-4015 (((-1119) $) 30)) (-3390 (((-112) $) 20)) (-2102 (($ (-390)) 14) (($ (-1157)) 16)) (-3087 (((-112) $) 27)) (-3780 (((-862) $) 34)) (-4127 (($ $) 28)))
+(((-531) (-13 (-529) (-613 (-862)) (-10 -8 (-15 -2102 ($ (-390))) (-15 -2102 ($ (-1157))) (-15 -3087 ((-112) $)) (-15 -3390 ((-112) $)) (-15 -4015 ((-1119) $)) (-15 -3429 ((-1119) $ (-1119)))))) (T -531))
+((-2102 (*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-531)))) (-2102 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-531)))) (-3087 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-531)))) (-3390 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-531)))) (-4015 (*1 *2 *1) (-12 (-5 *2 (-1119)) (-5 *1 (-531)))) (-3429 (*1 *2 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-531)))))
+(-13 (-529) (-613 (-862)) (-10 -8 (-15 -2102 ($ (-390))) (-15 -2102 ($ (-1157))) (-15 -3087 ((-112) $)) (-15 -3390 ((-112) $)) (-15 -4015 ((-1119) $)) (-15 -3429 ((-1119) $ (-1119)))))
+((-1340 (((-1 |#1| |#1|) |#1|) 11)) (-2104 (((-1 |#1| |#1|)) 10)))
+(((-532 |#1|) (-10 -7 (-15 -2104 ((-1 |#1| |#1|))) (-15 -1340 ((-1 |#1| |#1|) |#1|))) (-13 (-726) (-25))) (T -532))
+((-1340 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-532 *3)) (-4 *3 (-13 (-726) (-25))))) (-2104 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-532 *3)) (-4 *3 (-13 (-726) (-25))))))
+(-10 -7 (-15 -2104 ((-1 |#1| |#1|))) (-15 -1340 ((-1 |#1| |#1|) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4385 (($ $ $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3645 (($ $) NIL)) (-2585 (($ (-771) |#1|) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-3152 (($ (-1 (-771) (-771)) $) NIL)) (-1328 ((|#1| $) NIL)) (-3626 (((-771) $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 27)) (-3801 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)) (-3040 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL)))
(((-533 |#1|) (-13 (-793) (-511 (-771) |#1|)) (-850)) (T -533))
NIL
(-13 (-793) (-511 (-771) |#1|))
-((-2386 (((-644 |#2|) (-1171 |#1|) |#3|) 98)) (-1463 (((-644 (-2 (|:| |outval| |#2|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#2|))))) (-689 |#1|) |#3| (-1 (-420 (-1171 |#1|)) (-1171 |#1|))) 114)) (-3018 (((-1171 |#1|) (-689 |#1|)) 110)))
-(((-534 |#1| |#2| |#3|) (-10 -7 (-15 -3018 ((-1171 |#1|) (-689 |#1|))) (-15 -2386 ((-644 |#2|) (-1171 |#1|) |#3|)) (-15 -1463 ((-644 (-2 (|:| |outval| |#2|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#2|))))) (-689 |#1|) |#3| (-1 (-420 (-1171 |#1|)) (-1171 |#1|))))) (-365) (-365) (-13 (-365) (-848))) (T -534))
-((-1463 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *6)) (-5 *5 (-1 (-420 (-1171 *6)) (-1171 *6))) (-4 *6 (-365)) (-5 *2 (-644 (-2 (|:| |outval| *7) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 *7)))))) (-5 *1 (-534 *6 *7 *4)) (-4 *7 (-365)) (-4 *4 (-13 (-365) (-848))))) (-2386 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *5)) (-4 *5 (-365)) (-5 *2 (-644 *6)) (-5 *1 (-534 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848))))) (-3018 (*1 *2 *3) (-12 (-5 *3 (-689 *4)) (-4 *4 (-365)) (-5 *2 (-1171 *4)) (-5 *1 (-534 *4 *5 *6)) (-4 *5 (-365)) (-4 *6 (-13 (-365) (-848))))))
-(-10 -7 (-15 -3018 ((-1171 |#1|) (-689 |#1|))) (-15 -2386 ((-644 |#2|) (-1171 |#1|) |#3|)) (-15 -1463 ((-644 (-2 (|:| |outval| |#2|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#2|))))) (-689 |#1|) |#3| (-1 (-420 (-1171 |#1|)) (-1171 |#1|)))))
-((-2702 (((-691 (-1222)) $ (-1222)) NIL)) (-1734 (((-691 (-551)) $ (-551)) NIL)) (-4068 (((-771) $ (-128)) 41)) (-2030 (((-691 (-129)) $ (-129)) 42)) (-3395 (((-691 (-1222)) $) NIL)) (-4269 (((-691 (-1220)) $) NIL)) (-2625 (((-691 (-1219)) $) NIL)) (-2984 (((-691 (-551)) $) NIL)) (-1630 (((-691 (-549)) $) NIL)) (-1391 (((-691 (-548)) $) NIL)) (-3529 (((-771) $ (-128)) 37)) (-2296 (((-691 (-129)) $) 39)) (-3227 (((-112) $) 29)) (-2567 (((-691 $) (-581) (-954)) 19) (((-691 $) (-493) (-954)) 26)) (-2512 (((-862) $) 49)) (-1459 (($ $) 43)))
-(((-535) (-13 (-767 (-581)) (-613 (-862)) (-10 -8 (-15 -2567 ((-691 $) (-493) (-954)))))) (T -535))
-((-2567 (*1 *2 *3 *4) (-12 (-5 *3 (-493)) (-5 *4 (-954)) (-5 *2 (-691 (-535))) (-5 *1 (-535)))))
-(-13 (-767 (-581)) (-613 (-862)) (-10 -8 (-15 -2567 ((-691 $) (-493) (-954)))))
-((-2911 (((-843 (-566))) 12)) (-2923 (((-843 (-566))) 14)) (-3048 (((-833 (-566))) 9)))
-(((-536) (-10 -7 (-15 -3048 ((-833 (-566)))) (-15 -2911 ((-843 (-566)))) (-15 -2923 ((-843 (-566)))))) (T -536))
-((-2923 (*1 *2) (-12 (-5 *2 (-843 (-566))) (-5 *1 (-536)))) (-2911 (*1 *2) (-12 (-5 *2 (-843 (-566))) (-5 *1 (-536)))) (-3048 (*1 *2) (-12 (-5 *2 (-833 (-566))) (-5 *1 (-536)))))
-(-10 -7 (-15 -3048 ((-833 (-566)))) (-15 -2911 ((-843 (-566)))) (-15 -2923 ((-843 (-566)))))
-((-1711 (((-538) (-1175)) 15)) (-2273 ((|#1| (-538)) 20)))
-(((-537 |#1|) (-10 -7 (-15 -1711 ((-538) (-1175))) (-15 -2273 (|#1| (-538)))) (-1214)) (T -537))
-((-2273 (*1 *2 *3) (-12 (-5 *3 (-538)) (-5 *1 (-537 *2)) (-4 *2 (-1214)))) (-1711 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-538)) (-5 *1 (-537 *4)) (-4 *4 (-1214)))))
-(-10 -7 (-15 -1711 ((-538) (-1175))) (-15 -2273 (|#1| (-538))))
-((-2985 (((-112) $ $) NIL)) (-3303 (((-1157) $) 55)) (-1739 (((-112) $) 51)) (-1361 (((-1175) $) 52)) (-3964 (((-112) $) 49)) (-4318 (((-1157) $) 50)) (-2757 (($ (-1157)) 56)) (-2504 (((-112) $) NIL)) (-3625 (((-112) $) NIL)) (-2879 (((-112) $) NIL)) (-2878 (((-1157) $) NIL)) (-2990 (($ $ (-644 (-1175))) 21)) (-2273 (((-52) $) 23)) (-1776 (((-112) $) NIL)) (-1383 (((-566) $) NIL)) (-4033 (((-1119) $) NIL)) (-3277 (($ $ (-644 (-1175)) (-1175)) 73)) (-1986 (((-112) $) NIL)) (-2965 (((-225) $) NIL)) (-3549 (($ $) 44)) (-1316 (((-862) $) NIL)) (-3525 (((-112) $ $) NIL)) (-4386 (($ $ (-566)) NIL) (($ $ (-644 (-566))) NIL)) (-2477 (((-644 $) $) 30)) (-3284 (((-1175) (-644 $)) 57)) (-3134 (($ (-1157)) NIL) (($ (-1175)) 19) (($ (-566)) 8) (($ (-225)) 28) (($ (-862)) NIL) (($ (-644 $)) 65) (((-1103) $) 12) (($ (-1103)) 13)) (-1809 (((-1175) (-1175) (-644 $)) 60)) (-2512 (((-862) $) 54)) (-3954 (($ $) 59)) (-3940 (($ $) 58)) (-1951 (($ $ (-644 $)) 66)) (-3122 (((-112) $ $) NIL)) (-1612 (((-112) $) 29)) (-2485 (($) 9 T CONST)) (-2495 (($) 11 T CONST)) (-2940 (((-112) $ $) 74)) (-3061 (($ $ $) 82)) (-3034 (($ $ $) 75)) (** (($ $ (-771)) 81) (($ $ (-566)) 80)) (* (($ $ $) 76)) (-2997 (((-566) $) NIL)))
-(((-538) (-13 (-1102 (-1157) (-1175) (-566) (-225) (-862)) (-614 (-1103)) (-10 -8 (-15 -2273 ((-52) $)) (-15 -3134 ($ (-1103))) (-15 -1951 ($ $ (-644 $))) (-15 -3277 ($ $ (-644 (-1175)) (-1175))) (-15 -2990 ($ $ (-644 (-1175)))) (-15 -3034 ($ $ $)) (-15 * ($ $ $)) (-15 -3061 ($ $ $)) (-15 ** ($ $ (-771))) (-15 ** ($ $ (-566))) (-15 0 ($) -1655) (-15 1 ($) -1655) (-15 -3549 ($ $)) (-15 -3303 ((-1157) $)) (-15 -2757 ($ (-1157))) (-15 -3284 ((-1175) (-644 $))) (-15 -1809 ((-1175) (-1175) (-644 $)))))) (T -538))
-((-2273 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-538)))) (-3134 (*1 *1 *2) (-12 (-5 *2 (-1103)) (-5 *1 (-538)))) (-1951 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-538))) (-5 *1 (-538)))) (-3277 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-1175)) (-5 *1 (-538)))) (-2990 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-538)))) (-3034 (*1 *1 *1 *1) (-5 *1 (-538))) (* (*1 *1 *1 *1) (-5 *1 (-538))) (-3061 (*1 *1 *1 *1) (-5 *1 (-538))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-538)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-538)))) (-2485 (*1 *1) (-5 *1 (-538))) (-2495 (*1 *1) (-5 *1 (-538))) (-3549 (*1 *1 *1) (-5 *1 (-538))) (-3303 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-538)))) (-2757 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-538)))) (-3284 (*1 *2 *3) (-12 (-5 *3 (-644 (-538))) (-5 *2 (-1175)) (-5 *1 (-538)))) (-1809 (*1 *2 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-538))) (-5 *1 (-538)))))
-(-13 (-1102 (-1157) (-1175) (-566) (-225) (-862)) (-614 (-1103)) (-10 -8 (-15 -2273 ((-52) $)) (-15 -3134 ($ (-1103))) (-15 -1951 ($ $ (-644 $))) (-15 -3277 ($ $ (-644 (-1175)) (-1175))) (-15 -2990 ($ $ (-644 (-1175)))) (-15 -3034 ($ $ $)) (-15 * ($ $ $)) (-15 -3061 ($ $ $)) (-15 ** ($ $ (-771))) (-15 ** ($ $ (-566))) (-15 (-2485) ($) -1655) (-15 (-2495) ($) -1655) (-15 -3549 ($ $)) (-15 -3303 ((-1157) $)) (-15 -2757 ($ (-1157))) (-15 -3284 ((-1175) (-644 $))) (-15 -1809 ((-1175) (-1175) (-644 $)))))
-((-3039 ((|#2| |#2|) 17)) (-4370 ((|#2| |#2|) 13)) (-2790 ((|#2| |#2| (-566) (-566)) 20)) (-4345 ((|#2| |#2|) 15)))
-(((-539 |#1| |#2|) (-10 -7 (-15 -4370 (|#2| |#2|)) (-15 -4345 (|#2| |#2|)) (-15 -3039 (|#2| |#2|)) (-15 -2790 (|#2| |#2| (-566) (-566)))) (-13 (-558) (-147)) (-1255 |#1|)) (T -539))
-((-2790 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-566)) (-4 *4 (-13 (-558) (-147))) (-5 *1 (-539 *4 *2)) (-4 *2 (-1255 *4)))) (-3039 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2)) (-4 *2 (-1255 *3)))) (-4345 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2)) (-4 *2 (-1255 *3)))) (-4370 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2)) (-4 *2 (-1255 *3)))))
-(-10 -7 (-15 -4370 (|#2| |#2|)) (-15 -4345 (|#2| |#2|)) (-15 -3039 (|#2| |#2|)) (-15 -2790 (|#2| |#2| (-566) (-566))))
-((-3827 (((-644 (-295 (-952 |#2|))) (-644 |#2|) (-644 (-1175))) 32)) (-3671 (((-644 |#2|) (-952 |#1|) |#3|) 54) (((-644 |#2|) (-1171 |#1|) |#3|) 53)) (-3447 (((-644 (-644 |#2|)) (-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)) |#3|) 106)))
-(((-540 |#1| |#2| |#3|) (-10 -7 (-15 -3671 ((-644 |#2|) (-1171 |#1|) |#3|)) (-15 -3671 ((-644 |#2|) (-952 |#1|) |#3|)) (-15 -3447 ((-644 (-644 |#2|)) (-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)) |#3|)) (-15 -3827 ((-644 (-295 (-952 |#2|))) (-644 |#2|) (-644 (-1175))))) (-454) (-365) (-13 (-365) (-848))) (T -540))
-((-3827 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-1175))) (-4 *6 (-365)) (-5 *2 (-644 (-295 (-952 *6)))) (-5 *1 (-540 *5 *6 *7)) (-4 *5 (-454)) (-4 *7 (-13 (-365) (-848))))) (-3447 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175))) (-4 *6 (-454)) (-5 *2 (-644 (-644 *7))) (-5 *1 (-540 *6 *7 *5)) (-4 *7 (-365)) (-4 *5 (-13 (-365) (-848))))) (-3671 (*1 *2 *3 *4) (-12 (-5 *3 (-952 *5)) (-4 *5 (-454)) (-5 *2 (-644 *6)) (-5 *1 (-540 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848))))) (-3671 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *5)) (-4 *5 (-454)) (-5 *2 (-644 *6)) (-5 *1 (-540 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848))))))
-(-10 -7 (-15 -3671 ((-644 |#2|) (-1171 |#1|) |#3|)) (-15 -3671 ((-644 |#2|) (-952 |#1|) |#3|)) (-15 -3447 ((-644 (-644 |#2|)) (-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)) |#3|)) (-15 -3827 ((-644 (-295 (-952 |#2|))) (-644 |#2|) (-644 (-1175)))))
-((-3550 ((|#2| |#2| |#1|) 17)) (-3442 ((|#2| (-644 |#2|)) 31)) (-3238 ((|#2| (-644 |#2|)) 52)))
-(((-541 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3442 (|#2| (-644 |#2|))) (-15 -3238 (|#2| (-644 |#2|))) (-15 -3550 (|#2| |#2| |#1|))) (-308) (-1240 |#1|) |#1| (-1 |#1| |#1| (-771))) (T -541))
-((-3550 (*1 *2 *2 *3) (-12 (-4 *3 (-308)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-771))) (-5 *1 (-541 *3 *2 *4 *5)) (-4 *2 (-1240 *3)))) (-3238 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-541 *4 *2 *5 *6)) (-4 *4 (-308)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-771))))) (-3442 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-541 *4 *2 *5 *6)) (-4 *4 (-308)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-771))))))
-(-10 -7 (-15 -3442 (|#2| (-644 |#2|))) (-15 -3238 (|#2| (-644 |#2|))) (-15 -3550 (|#2| |#2| |#1|)))
-((-2391 (((-420 (-1171 |#4|)) (-1171 |#4|) (-1 (-420 (-1171 |#3|)) (-1171 |#3|))) 89) (((-420 |#4|) |#4| (-1 (-420 (-1171 |#3|)) (-1171 |#3|))) 218)))
-(((-542 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2391 ((-420 |#4|) |#4| (-1 (-420 (-1171 |#3|)) (-1171 |#3|)))) (-15 -2391 ((-420 (-1171 |#4|)) (-1171 |#4|) (-1 (-420 (-1171 |#3|)) (-1171 |#3|))))) (-850) (-793) (-13 (-308) (-147)) (-949 |#3| |#2| |#1|)) (T -542))
-((-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-420 (-1171 *7)) (-1171 *7))) (-4 *7 (-13 (-308) (-147))) (-4 *5 (-850)) (-4 *6 (-793)) (-4 *8 (-949 *7 *6 *5)) (-5 *2 (-420 (-1171 *8))) (-5 *1 (-542 *5 *6 *7 *8)) (-5 *3 (-1171 *8)))) (-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-420 (-1171 *7)) (-1171 *7))) (-4 *7 (-13 (-308) (-147))) (-4 *5 (-850)) (-4 *6 (-793)) (-5 *2 (-420 *3)) (-5 *1 (-542 *5 *6 *7 *3)) (-4 *3 (-949 *7 *6 *5)))))
-(-10 -7 (-15 -2391 ((-420 |#4|) |#4| (-1 (-420 (-1171 |#3|)) (-1171 |#3|)))) (-15 -2391 ((-420 (-1171 |#4|)) (-1171 |#4|) (-1 (-420 (-1171 |#3|)) (-1171 |#3|)))))
-((-3039 ((|#4| |#4|) 74)) (-4370 ((|#4| |#4|) 70)) (-2790 ((|#4| |#4| (-566) (-566)) 76)) (-4345 ((|#4| |#4|) 72)))
-(((-543 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4370 (|#4| |#4|)) (-15 -4345 (|#4| |#4|)) (-15 -3039 (|#4| |#4|)) (-15 -2790 (|#4| |#4| (-566) (-566)))) (-13 (-365) (-370) (-614 (-566))) (-1240 |#1|) (-724 |#1| |#2|) (-1255 |#3|)) (T -543))
-((-2790 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-566)) (-4 *4 (-13 (-365) (-370) (-614 *3))) (-4 *5 (-1240 *4)) (-4 *6 (-724 *4 *5)) (-5 *1 (-543 *4 *5 *6 *2)) (-4 *2 (-1255 *6)))) (-3039 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-4 *4 (-1240 *3)) (-4 *5 (-724 *3 *4)) (-5 *1 (-543 *3 *4 *5 *2)) (-4 *2 (-1255 *5)))) (-4345 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-4 *4 (-1240 *3)) (-4 *5 (-724 *3 *4)) (-5 *1 (-543 *3 *4 *5 *2)) (-4 *2 (-1255 *5)))) (-4370 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-4 *4 (-1240 *3)) (-4 *5 (-724 *3 *4)) (-5 *1 (-543 *3 *4 *5 *2)) (-4 *2 (-1255 *5)))))
-(-10 -7 (-15 -4370 (|#4| |#4|)) (-15 -4345 (|#4| |#4|)) (-15 -3039 (|#4| |#4|)) (-15 -2790 (|#4| |#4| (-566) (-566))))
-((-3039 ((|#2| |#2|) 27)) (-4370 ((|#2| |#2|) 23)) (-2790 ((|#2| |#2| (-566) (-566)) 29)) (-4345 ((|#2| |#2|) 25)))
-(((-544 |#1| |#2|) (-10 -7 (-15 -4370 (|#2| |#2|)) (-15 -4345 (|#2| |#2|)) (-15 -3039 (|#2| |#2|)) (-15 -2790 (|#2| |#2| (-566) (-566)))) (-13 (-365) (-370) (-614 (-566))) (-1255 |#1|)) (T -544))
-((-2790 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-566)) (-4 *4 (-13 (-365) (-370) (-614 *3))) (-5 *1 (-544 *4 *2)) (-4 *2 (-1255 *4)))) (-3039 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-5 *1 (-544 *3 *2)) (-4 *2 (-1255 *3)))) (-4345 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-5 *1 (-544 *3 *2)) (-4 *2 (-1255 *3)))) (-4370 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-5 *1 (-544 *3 *2)) (-4 *2 (-1255 *3)))))
-(-10 -7 (-15 -4370 (|#2| |#2|)) (-15 -4345 (|#2| |#2|)) (-15 -3039 (|#2| |#2|)) (-15 -2790 (|#2| |#2| (-566) (-566))))
-((-3340 (((-3 (-566) "failed") |#2| |#1| (-1 (-3 (-566) "failed") |#1|)) 18) (((-3 (-566) "failed") |#2| |#1| (-566) (-1 (-3 (-566) "failed") |#1|)) 14) (((-3 (-566) "failed") |#2| (-566) (-1 (-3 (-566) "failed") |#1|)) 32)))
-(((-545 |#1| |#2|) (-10 -7 (-15 -3340 ((-3 (-566) "failed") |#2| (-566) (-1 (-3 (-566) "failed") |#1|))) (-15 -3340 ((-3 (-566) "failed") |#2| |#1| (-566) (-1 (-3 (-566) "failed") |#1|))) (-15 -3340 ((-3 (-566) "failed") |#2| |#1| (-1 (-3 (-566) "failed") |#1|)))) (-1049) (-1240 |#1|)) (T -545))
-((-3340 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-566) "failed") *4)) (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-545 *4 *3)) (-4 *3 (-1240 *4)))) (-3340 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-566) "failed") *4)) (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-545 *4 *3)) (-4 *3 (-1240 *4)))) (-3340 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-566) "failed") *5)) (-4 *5 (-1049)) (-5 *2 (-566)) (-5 *1 (-545 *5 *3)) (-4 *3 (-1240 *5)))))
-(-10 -7 (-15 -3340 ((-3 (-566) "failed") |#2| (-566) (-1 (-3 (-566) "failed") |#1|))) (-15 -3340 ((-3 (-566) "failed") |#2| |#1| (-566) (-1 (-3 (-566) "failed") |#1|))) (-15 -3340 ((-3 (-566) "failed") |#2| |#1| (-1 (-3 (-566) "failed") |#1|))))
-((-1657 (($ $ $) 84)) (-1370 (((-420 $) $) 52)) (-2977 (((-3 (-566) "failed") $) 64)) (-1756 (((-566) $) 42)) (-3800 (((-3 (-409 (-566)) "failed") $) 79)) (-3717 (((-112) $) 26)) (-3370 (((-409 (-566)) $) 77)) (-2635 (((-112) $) 55)) (-3481 (($ $ $ $) 92)) (-1684 (((-112) $) 17)) (-3870 (($ $ $) 62)) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 74)) (-2546 (((-3 $ "failed") $) 69)) (-1623 (($ $) 24)) (-2518 (($ $ $) 90)) (-2759 (($) 65)) (-3280 (($ $) 58)) (-2391 (((-420 $) $) 50)) (-1693 (((-112) $) 15)) (-1813 (((-771) $) 32)) (-2862 (($ $ (-771)) NIL) (($ $) 11)) (-3895 (($ $) 18)) (-3134 (((-566) $) NIL) (((-538) $) 41) (((-892 (-566)) $) 45) (((-381) $) 35) (((-225) $) 38)) (-3795 (((-771)) 9)) (-1916 (((-112) $ $) 21)) (-1523 (($ $ $) 60)))
-(((-546 |#1|) (-10 -8 (-15 -2518 (|#1| |#1| |#1|)) (-15 -3481 (|#1| |#1| |#1| |#1|)) (-15 -1623 (|#1| |#1|)) (-15 -3895 (|#1| |#1|)) (-15 -3800 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3370 ((-409 (-566)) |#1|)) (-15 -3717 ((-112) |#1|)) (-15 -1657 (|#1| |#1| |#1|)) (-15 -1916 ((-112) |#1| |#1|)) (-15 -1693 ((-112) |#1|)) (-15 -2759 (|#1|)) (-15 -2546 ((-3 |#1| "failed") |#1|)) (-15 -3134 ((-225) |#1|)) (-15 -3134 ((-381) |#1|)) (-15 -3870 (|#1| |#1| |#1|)) (-15 -3280 (|#1| |#1|)) (-15 -1523 (|#1| |#1| |#1|)) (-15 -1356 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -3134 ((-566) |#1|)) (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -1684 ((-112) |#1|)) (-15 -1813 ((-771) |#1|)) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -1370 ((-420 |#1|) |#1|)) (-15 -2635 ((-112) |#1|)) (-15 -3795 ((-771)))) (-547)) (T -546))
-((-3795 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-546 *3)) (-4 *3 (-547)))))
-(-10 -8 (-15 -2518 (|#1| |#1| |#1|)) (-15 -3481 (|#1| |#1| |#1| |#1|)) (-15 -1623 (|#1| |#1|)) (-15 -3895 (|#1| |#1|)) (-15 -3800 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3370 ((-409 (-566)) |#1|)) (-15 -3717 ((-112) |#1|)) (-15 -1657 (|#1| |#1| |#1|)) (-15 -1916 ((-112) |#1| |#1|)) (-15 -1693 ((-112) |#1|)) (-15 -2759 (|#1|)) (-15 -2546 ((-3 |#1| "failed") |#1|)) (-15 -3134 ((-225) |#1|)) (-15 -3134 ((-381) |#1|)) (-15 -3870 (|#1| |#1| |#1|)) (-15 -3280 (|#1| |#1|)) (-15 -1523 (|#1| |#1| |#1|)) (-15 -1356 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -3134 ((-566) |#1|)) (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -1684 ((-112) |#1|)) (-15 -1813 ((-771) |#1|)) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -1370 ((-420 |#1|) |#1|)) (-15 -2635 ((-112) |#1|)) (-15 -3795 ((-771))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-1657 (($ $ $) 90)) (-4126 (((-3 $ "failed") $ $) 20)) (-3814 (($ $ $ $) 79)) (-2857 (($ $) 57)) (-1370 (((-420 $) $) 58)) (-1561 (((-112) $ $) 130)) (-2807 (((-566) $) 119)) (-3096 (($ $ $) 93)) (-2342 (($) 18 T CONST)) (-2977 (((-3 (-566) "failed") $) 111)) (-1756 (((-566) $) 112)) (-2926 (($ $ $) 134)) (-1628 (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 109) (((-689 (-566)) (-689 $)) 108)) (-1579 (((-3 $ "failed") $) 37)) (-3800 (((-3 (-409 (-566)) "failed") $) 87)) (-3717 (((-112) $) 89)) (-3370 (((-409 (-566)) $) 88)) (-3335 (($) 86) (($ $) 85)) (-2938 (($ $ $) 133)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 128)) (-2635 (((-112) $) 59)) (-3481 (($ $ $ $) 77)) (-2570 (($ $ $) 91)) (-1684 (((-112) $) 121)) (-3870 (($ $ $) 102)) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 105)) (-2741 (((-112) $) 35)) (-2884 (((-112) $) 97)) (-2546 (((-3 $ "failed") $) 99)) (-1578 (((-112) $) 120)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 137)) (-1839 (($ $ $ $) 78)) (-1439 (($ $ $) 122)) (-3059 (($ $ $) 123)) (-1623 (($ $) 81)) (-3822 (($ $) 94)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2518 (($ $ $) 76)) (-2759 (($) 98 T CONST)) (-1863 (($ $) 83)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-3280 (($ $) 103)) (-2391 (((-420 $) $) 56)) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 136) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 135)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 129)) (-1693 (((-112) $) 96)) (-1813 (((-771) $) 131)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 132)) (-2862 (($ $ (-771)) 116) (($ $) 114)) (-2538 (($ $) 82)) (-3895 (($ $) 84)) (-3134 (((-566) $) 113) (((-538) $) 107) (((-892 (-566)) $) 106) (((-381) $) 101) (((-225) $) 100)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-566)) 110)) (-3795 (((-771)) 32 T CONST)) (-1916 (((-112) $ $) 92)) (-1523 (($ $ $) 104)) (-3122 (((-112) $ $) 9)) (-3306 (($) 95)) (-1634 (((-112) $ $) 45)) (-2275 (($ $ $ $) 80)) (-1346 (($ $) 118)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-771)) 117) (($ $) 115)) (-2998 (((-112) $ $) 125)) (-2974 (((-112) $ $) 126)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 124)) (-2962 (((-112) $ $) 127)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3104 (((-644 |#2|) (-1171 |#1|) |#3|) 98)) (-2962 (((-644 (-2 (|:| |outval| |#2|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#2|))))) (-689 |#1|) |#3| (-1 (-420 (-1171 |#1|)) (-1171 |#1|))) 114)) (-2294 (((-1171 |#1|) (-689 |#1|)) 110)))
+(((-534 |#1| |#2| |#3|) (-10 -7 (-15 -2294 ((-1171 |#1|) (-689 |#1|))) (-15 -3104 ((-644 |#2|) (-1171 |#1|) |#3|)) (-15 -2962 ((-644 (-2 (|:| |outval| |#2|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#2|))))) (-689 |#1|) |#3| (-1 (-420 (-1171 |#1|)) (-1171 |#1|))))) (-365) (-365) (-13 (-365) (-848))) (T -534))
+((-2962 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *6)) (-5 *5 (-1 (-420 (-1171 *6)) (-1171 *6))) (-4 *6 (-365)) (-5 *2 (-644 (-2 (|:| |outval| *7) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 *7)))))) (-5 *1 (-534 *6 *7 *4)) (-4 *7 (-365)) (-4 *4 (-13 (-365) (-848))))) (-3104 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *5)) (-4 *5 (-365)) (-5 *2 (-644 *6)) (-5 *1 (-534 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848))))) (-2294 (*1 *2 *3) (-12 (-5 *3 (-689 *4)) (-4 *4 (-365)) (-5 *2 (-1171 *4)) (-5 *1 (-534 *4 *5 *6)) (-4 *5 (-365)) (-4 *6 (-13 (-365) (-848))))))
+(-10 -7 (-15 -2294 ((-1171 |#1|) (-689 |#1|))) (-15 -3104 ((-644 |#2|) (-1171 |#1|) |#3|)) (-15 -2962 ((-644 (-2 (|:| |outval| |#2|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#2|))))) (-689 |#1|) |#3| (-1 (-420 (-1171 |#1|)) (-1171 |#1|)))))
+((-4273 (((-691 (-1222)) $ (-1222)) NIL)) (-3884 (((-691 (-551)) $ (-551)) NIL)) (-1549 (((-771) $ (-128)) 41)) (-3832 (((-691 (-129)) $ (-129)) 42)) (-4354 (((-691 (-1222)) $) NIL)) (-2937 (((-691 (-1220)) $) NIL)) (-1688 (((-691 (-1219)) $) NIL)) (-2033 (((-691 (-551)) $) NIL)) (-2234 (((-691 (-549)) $) NIL)) (-3446 (((-691 (-548)) $) NIL)) (-3250 (((-771) $ (-128)) 37)) (-1534 (((-691 (-129)) $) 39)) (-3452 (((-112) $) 29)) (-2351 (((-691 $) (-581) (-954)) 19) (((-691 $) (-493) (-954)) 26)) (-3780 (((-862) $) 49)) (-4127 (($ $) 43)))
+(((-535) (-13 (-767 (-581)) (-613 (-862)) (-10 -8 (-15 -2351 ((-691 $) (-493) (-954)))))) (T -535))
+((-2351 (*1 *2 *3 *4) (-12 (-5 *3 (-493)) (-5 *4 (-954)) (-5 *2 (-691 (-535))) (-5 *1 (-535)))))
+(-13 (-767 (-581)) (-613 (-862)) (-10 -8 (-15 -2351 ((-691 $) (-493) (-954)))))
+((-2933 (((-843 (-566))) 12)) (-2944 (((-843 (-566))) 14)) (-3131 (((-833 (-566))) 9)))
+(((-536) (-10 -7 (-15 -3131 ((-833 (-566)))) (-15 -2933 ((-843 (-566)))) (-15 -2944 ((-843 (-566)))))) (T -536))
+((-2944 (*1 *2) (-12 (-5 *2 (-843 (-566))) (-5 *1 (-536)))) (-2933 (*1 *2) (-12 (-5 *2 (-843 (-566))) (-5 *1 (-536)))) (-3131 (*1 *2) (-12 (-5 *2 (-833 (-566))) (-5 *1 (-536)))))
+(-10 -7 (-15 -3131 ((-833 (-566)))) (-15 -2933 ((-843 (-566)))) (-15 -2944 ((-843 (-566)))))
+((-3676 (((-538) (-1175)) 15)) (-3033 ((|#1| (-538)) 20)))
+(((-537 |#1|) (-10 -7 (-15 -3676 ((-538) (-1175))) (-15 -3033 (|#1| (-538)))) (-1214)) (T -537))
+((-3033 (*1 *2 *3) (-12 (-5 *3 (-538)) (-5 *1 (-537 *2)) (-4 *2 (-1214)))) (-3676 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-538)) (-5 *1 (-537 *4)) (-4 *4 (-1214)))))
+(-10 -7 (-15 -3676 ((-538) (-1175))) (-15 -3033 (|#1| (-538))))
+((-3009 (((-112) $ $) NIL)) (-2874 (((-1157) $) 55)) (-3941 (((-112) $) 51)) (-1410 (((-1175) $) 52)) (-3068 (((-112) $) 49)) (-4336 (((-1157) $) 50)) (-3622 (($ (-1157)) 56)) (-2959 (((-112) $) NIL)) (-2892 (((-112) $) NIL)) (-2413 (((-112) $) NIL)) (-2402 (((-1157) $) NIL)) (-1629 (($ $ (-644 (-1175))) 21)) (-3033 (((-52) $) 23)) (-3103 (((-112) $) NIL)) (-1435 (((-566) $) NIL)) (-4056 (((-1119) $) NIL)) (-3282 (($ $ (-644 (-1175)) (-1175)) 73)) (-1528 (((-112) $) NIL)) (-2987 (((-225) $) NIL)) (-3689 (($ $) 44)) (-1355 (((-862) $) NIL)) (-4257 (((-112) $ $) NIL)) (-4393 (($ $ (-566)) NIL) (($ $ (-644 (-566))) NIL)) (-2545 (((-644 $) $) 30)) (-4027 (((-1175) (-644 $)) 57)) (-3204 (($ (-1157)) NIL) (($ (-1175)) 19) (($ (-566)) 8) (($ (-225)) 28) (($ (-862)) NIL) (($ (-644 $)) 65) (((-1103) $) 12) (($ (-1103)) 13)) (-2590 (((-1175) (-1175) (-644 $)) 60)) (-3780 (((-862) $) 54)) (-3999 (($ $) 59)) (-3988 (($ $) 58)) (-4270 (($ $ (-644 $)) 66)) (-3801 (((-112) $ $) NIL)) (-2051 (((-112) $) 29)) (-2493 (($) 9 T CONST)) (-4333 (($) 11 T CONST)) (-2950 (((-112) $ $) 74)) (-3062 (($ $ $) 82)) (-3040 (($ $ $) 75)) (** (($ $ (-771)) 81) (($ $ (-566)) 80)) (* (($ $ $) 76)) (-3020 (((-566) $) NIL)))
+(((-538) (-13 (-1102 (-1157) (-1175) (-566) (-225) (-862)) (-614 (-1103)) (-10 -8 (-15 -3033 ((-52) $)) (-15 -3204 ($ (-1103))) (-15 -4270 ($ $ (-644 $))) (-15 -3282 ($ $ (-644 (-1175)) (-1175))) (-15 -1629 ($ $ (-644 (-1175)))) (-15 -3040 ($ $ $)) (-15 * ($ $ $)) (-15 -3062 ($ $ $)) (-15 ** ($ $ (-771))) (-15 ** ($ $ (-566))) (-15 0 ($) -2460) (-15 1 ($) -2460) (-15 -3689 ($ $)) (-15 -2874 ((-1157) $)) (-15 -3622 ($ (-1157))) (-15 -4027 ((-1175) (-644 $))) (-15 -2590 ((-1175) (-1175) (-644 $)))))) (T -538))
+((-3033 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-538)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-1103)) (-5 *1 (-538)))) (-4270 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-538))) (-5 *1 (-538)))) (-3282 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-1175)) (-5 *1 (-538)))) (-1629 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-538)))) (-3040 (*1 *1 *1 *1) (-5 *1 (-538))) (* (*1 *1 *1 *1) (-5 *1 (-538))) (-3062 (*1 *1 *1 *1) (-5 *1 (-538))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-538)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-538)))) (-2493 (*1 *1) (-5 *1 (-538))) (-4333 (*1 *1) (-5 *1 (-538))) (-3689 (*1 *1 *1) (-5 *1 (-538))) (-2874 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-538)))) (-3622 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-538)))) (-4027 (*1 *2 *3) (-12 (-5 *3 (-644 (-538))) (-5 *2 (-1175)) (-5 *1 (-538)))) (-2590 (*1 *2 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-538))) (-5 *1 (-538)))))
+(-13 (-1102 (-1157) (-1175) (-566) (-225) (-862)) (-614 (-1103)) (-10 -8 (-15 -3033 ((-52) $)) (-15 -3204 ($ (-1103))) (-15 -4270 ($ $ (-644 $))) (-15 -3282 ($ $ (-644 (-1175)) (-1175))) (-15 -1629 ($ $ (-644 (-1175)))) (-15 -3040 ($ $ $)) (-15 * ($ $ $)) (-15 -3062 ($ $ $)) (-15 ** ($ $ (-771))) (-15 ** ($ $ (-566))) (-15 (-2493) ($) -2460) (-15 (-4333) ($) -2460) (-15 -3689 ($ $)) (-15 -2874 ((-1157) $)) (-15 -3622 ($ (-1157))) (-15 -4027 ((-1175) (-644 $))) (-15 -2590 ((-1175) (-1175) (-644 $)))))
+((-4326 ((|#2| |#2|) 17)) (-1475 ((|#2| |#2|) 13)) (-2742 ((|#2| |#2| (-566) (-566)) 20)) (-2506 ((|#2| |#2|) 15)))
+(((-539 |#1| |#2|) (-10 -7 (-15 -1475 (|#2| |#2|)) (-15 -2506 (|#2| |#2|)) (-15 -4326 (|#2| |#2|)) (-15 -2742 (|#2| |#2| (-566) (-566)))) (-13 (-558) (-147)) (-1255 |#1|)) (T -539))
+((-2742 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-566)) (-4 *4 (-13 (-558) (-147))) (-5 *1 (-539 *4 *2)) (-4 *2 (-1255 *4)))) (-4326 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2)) (-4 *2 (-1255 *3)))) (-2506 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2)) (-4 *2 (-1255 *3)))) (-1475 (*1 *2 *2) (-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2)) (-4 *2 (-1255 *3)))))
+(-10 -7 (-15 -1475 (|#2| |#2|)) (-15 -2506 (|#2| |#2|)) (-15 -4326 (|#2| |#2|)) (-15 -2742 (|#2| |#2| (-566) (-566))))
+((-4272 (((-644 (-295 (-952 |#2|))) (-644 |#2|) (-644 (-1175))) 32)) (-2132 (((-644 |#2|) (-952 |#1|) |#3|) 54) (((-644 |#2|) (-1171 |#1|) |#3|) 53)) (-3677 (((-644 (-644 |#2|)) (-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)) |#3|) 106)))
+(((-540 |#1| |#2| |#3|) (-10 -7 (-15 -2132 ((-644 |#2|) (-1171 |#1|) |#3|)) (-15 -2132 ((-644 |#2|) (-952 |#1|) |#3|)) (-15 -3677 ((-644 (-644 |#2|)) (-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)) |#3|)) (-15 -4272 ((-644 (-295 (-952 |#2|))) (-644 |#2|) (-644 (-1175))))) (-454) (-365) (-13 (-365) (-848))) (T -540))
+((-4272 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-1175))) (-4 *6 (-365)) (-5 *2 (-644 (-295 (-952 *6)))) (-5 *1 (-540 *5 *6 *7)) (-4 *5 (-454)) (-4 *7 (-13 (-365) (-848))))) (-3677 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175))) (-4 *6 (-454)) (-5 *2 (-644 (-644 *7))) (-5 *1 (-540 *6 *7 *5)) (-4 *7 (-365)) (-4 *5 (-13 (-365) (-848))))) (-2132 (*1 *2 *3 *4) (-12 (-5 *3 (-952 *5)) (-4 *5 (-454)) (-5 *2 (-644 *6)) (-5 *1 (-540 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848))))) (-2132 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *5)) (-4 *5 (-454)) (-5 *2 (-644 *6)) (-5 *1 (-540 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848))))))
+(-10 -7 (-15 -2132 ((-644 |#2|) (-1171 |#1|) |#3|)) (-15 -2132 ((-644 |#2|) (-952 |#1|) |#3|)) (-15 -3677 ((-644 (-644 |#2|)) (-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)) |#3|)) (-15 -4272 ((-644 (-295 (-952 |#2|))) (-644 |#2|) (-644 (-1175)))))
+((-3418 ((|#2| |#2| |#1|) 17)) (-1755 ((|#2| (-644 |#2|)) 31)) (-3549 ((|#2| (-644 |#2|)) 52)))
+(((-541 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1755 (|#2| (-644 |#2|))) (-15 -3549 (|#2| (-644 |#2|))) (-15 -3418 (|#2| |#2| |#1|))) (-308) (-1240 |#1|) |#1| (-1 |#1| |#1| (-771))) (T -541))
+((-3418 (*1 *2 *2 *3) (-12 (-4 *3 (-308)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-771))) (-5 *1 (-541 *3 *2 *4 *5)) (-4 *2 (-1240 *3)))) (-3549 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-541 *4 *2 *5 *6)) (-4 *4 (-308)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-771))))) (-1755 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-541 *4 *2 *5 *6)) (-4 *4 (-308)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-771))))))
+(-10 -7 (-15 -1755 (|#2| (-644 |#2|))) (-15 -3549 (|#2| (-644 |#2|))) (-15 -3418 (|#2| |#2| |#1|)))
+((-2473 (((-420 (-1171 |#4|)) (-1171 |#4|) (-1 (-420 (-1171 |#3|)) (-1171 |#3|))) 89) (((-420 |#4|) |#4| (-1 (-420 (-1171 |#3|)) (-1171 |#3|))) 218)))
+(((-542 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2473 ((-420 |#4|) |#4| (-1 (-420 (-1171 |#3|)) (-1171 |#3|)))) (-15 -2473 ((-420 (-1171 |#4|)) (-1171 |#4|) (-1 (-420 (-1171 |#3|)) (-1171 |#3|))))) (-850) (-793) (-13 (-308) (-147)) (-949 |#3| |#2| |#1|)) (T -542))
+((-2473 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-420 (-1171 *7)) (-1171 *7))) (-4 *7 (-13 (-308) (-147))) (-4 *5 (-850)) (-4 *6 (-793)) (-4 *8 (-949 *7 *6 *5)) (-5 *2 (-420 (-1171 *8))) (-5 *1 (-542 *5 *6 *7 *8)) (-5 *3 (-1171 *8)))) (-2473 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-420 (-1171 *7)) (-1171 *7))) (-4 *7 (-13 (-308) (-147))) (-4 *5 (-850)) (-4 *6 (-793)) (-5 *2 (-420 *3)) (-5 *1 (-542 *5 *6 *7 *3)) (-4 *3 (-949 *7 *6 *5)))))
+(-10 -7 (-15 -2473 ((-420 |#4|) |#4| (-1 (-420 (-1171 |#3|)) (-1171 |#3|)))) (-15 -2473 ((-420 (-1171 |#4|)) (-1171 |#4|) (-1 (-420 (-1171 |#3|)) (-1171 |#3|)))))
+((-4326 ((|#4| |#4|) 74)) (-1475 ((|#4| |#4|) 70)) (-2742 ((|#4| |#4| (-566) (-566)) 76)) (-2506 ((|#4| |#4|) 72)))
+(((-543 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1475 (|#4| |#4|)) (-15 -2506 (|#4| |#4|)) (-15 -4326 (|#4| |#4|)) (-15 -2742 (|#4| |#4| (-566) (-566)))) (-13 (-365) (-370) (-614 (-566))) (-1240 |#1|) (-724 |#1| |#2|) (-1255 |#3|)) (T -543))
+((-2742 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-566)) (-4 *4 (-13 (-365) (-370) (-614 *3))) (-4 *5 (-1240 *4)) (-4 *6 (-724 *4 *5)) (-5 *1 (-543 *4 *5 *6 *2)) (-4 *2 (-1255 *6)))) (-4326 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-4 *4 (-1240 *3)) (-4 *5 (-724 *3 *4)) (-5 *1 (-543 *3 *4 *5 *2)) (-4 *2 (-1255 *5)))) (-2506 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-4 *4 (-1240 *3)) (-4 *5 (-724 *3 *4)) (-5 *1 (-543 *3 *4 *5 *2)) (-4 *2 (-1255 *5)))) (-1475 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-4 *4 (-1240 *3)) (-4 *5 (-724 *3 *4)) (-5 *1 (-543 *3 *4 *5 *2)) (-4 *2 (-1255 *5)))))
+(-10 -7 (-15 -1475 (|#4| |#4|)) (-15 -2506 (|#4| |#4|)) (-15 -4326 (|#4| |#4|)) (-15 -2742 (|#4| |#4| (-566) (-566))))
+((-4326 ((|#2| |#2|) 27)) (-1475 ((|#2| |#2|) 23)) (-2742 ((|#2| |#2| (-566) (-566)) 29)) (-2506 ((|#2| |#2|) 25)))
+(((-544 |#1| |#2|) (-10 -7 (-15 -1475 (|#2| |#2|)) (-15 -2506 (|#2| |#2|)) (-15 -4326 (|#2| |#2|)) (-15 -2742 (|#2| |#2| (-566) (-566)))) (-13 (-365) (-370) (-614 (-566))) (-1255 |#1|)) (T -544))
+((-2742 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-566)) (-4 *4 (-13 (-365) (-370) (-614 *3))) (-5 *1 (-544 *4 *2)) (-4 *2 (-1255 *4)))) (-4326 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-5 *1 (-544 *3 *2)) (-4 *2 (-1255 *3)))) (-2506 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-5 *1 (-544 *3 *2)) (-4 *2 (-1255 *3)))) (-1475 (*1 *2 *2) (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-5 *1 (-544 *3 *2)) (-4 *2 (-1255 *3)))))
+(-10 -7 (-15 -1475 (|#2| |#2|)) (-15 -2506 (|#2| |#2|)) (-15 -4326 (|#2| |#2|)) (-15 -2742 (|#2| |#2| (-566) (-566))))
+((-1995 (((-3 (-566) "failed") |#2| |#1| (-1 (-3 (-566) "failed") |#1|)) 18) (((-3 (-566) "failed") |#2| |#1| (-566) (-1 (-3 (-566) "failed") |#1|)) 14) (((-3 (-566) "failed") |#2| (-566) (-1 (-3 (-566) "failed") |#1|)) 32)))
+(((-545 |#1| |#2|) (-10 -7 (-15 -1995 ((-3 (-566) "failed") |#2| (-566) (-1 (-3 (-566) "failed") |#1|))) (-15 -1995 ((-3 (-566) "failed") |#2| |#1| (-566) (-1 (-3 (-566) "failed") |#1|))) (-15 -1995 ((-3 (-566) "failed") |#2| |#1| (-1 (-3 (-566) "failed") |#1|)))) (-1049) (-1240 |#1|)) (T -545))
+((-1995 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-566) "failed") *4)) (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-545 *4 *3)) (-4 *3 (-1240 *4)))) (-1995 (*1 *2 *3 *4 *2 *5) (|partial| -12 (-5 *5 (-1 (-3 (-566) "failed") *4)) (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-545 *4 *3)) (-4 *3 (-1240 *4)))) (-1995 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *4 (-1 (-3 (-566) "failed") *5)) (-4 *5 (-1049)) (-5 *2 (-566)) (-5 *1 (-545 *5 *3)) (-4 *3 (-1240 *5)))))
+(-10 -7 (-15 -1995 ((-3 (-566) "failed") |#2| (-566) (-1 (-3 (-566) "failed") |#1|))) (-15 -1995 ((-3 (-566) "failed") |#2| |#1| (-566) (-1 (-3 (-566) "failed") |#1|))) (-15 -1995 ((-3 (-566) "failed") |#2| |#1| (-1 (-3 (-566) "failed") |#1|))))
+((-4332 (($ $ $) 84)) (-3271 (((-420 $) $) 52)) (-3066 (((-3 (-566) "failed") $) 64)) (-1867 (((-566) $) 42)) (-4045 (((-3 (-409 (-566)) "failed") $) 79)) (-1356 (((-112) $) 26)) (-2269 (((-409 (-566)) $) 77)) (-1784 (((-112) $) 55)) (-4012 (($ $ $ $) 92)) (-1533 (((-112) $) 17)) (-3477 (($ $ $) 62)) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 74)) (-2133 (((-3 $ "failed") $) 69)) (-2428 (($ $) 24)) (-1885 (($ $ $) 90)) (-3625 (($) 65)) (-2711 (($ $) 58)) (-2473 (((-420 $) $) 50)) (-1630 (((-112) $) 15)) (-3470 (((-771) $) 32)) (-2578 (($ $ (-771)) NIL) (($ $) 11)) (-3940 (($ $) 18)) (-3204 (((-566) $) NIL) (((-538) $) 41) (((-892 (-566)) $) 45) (((-381) $) 35) (((-225) $) 38)) (-3996 (((-771)) 9)) (-2078 (((-112) $ $) 21)) (-2378 (($ $ $) 60)))
+(((-546 |#1|) (-10 -8 (-15 -1885 (|#1| |#1| |#1|)) (-15 -4012 (|#1| |#1| |#1| |#1|)) (-15 -2428 (|#1| |#1|)) (-15 -3940 (|#1| |#1|)) (-15 -4045 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2269 ((-409 (-566)) |#1|)) (-15 -1356 ((-112) |#1|)) (-15 -4332 (|#1| |#1| |#1|)) (-15 -2078 ((-112) |#1| |#1|)) (-15 -1630 ((-112) |#1|)) (-15 -3625 (|#1|)) (-15 -2133 ((-3 |#1| "failed") |#1|)) (-15 -3204 ((-225) |#1|)) (-15 -3204 ((-381) |#1|)) (-15 -3477 (|#1| |#1| |#1|)) (-15 -2711 (|#1| |#1|)) (-15 -2378 (|#1| |#1| |#1|)) (-15 -1525 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3204 ((-566) |#1|)) (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -1533 ((-112) |#1|)) (-15 -3470 ((-771) |#1|)) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3271 ((-420 |#1|) |#1|)) (-15 -1784 ((-112) |#1|)) (-15 -3996 ((-771)))) (-547)) (T -546))
+((-3996 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-546 *3)) (-4 *3 (-547)))))
+(-10 -8 (-15 -1885 (|#1| |#1| |#1|)) (-15 -4012 (|#1| |#1| |#1| |#1|)) (-15 -2428 (|#1| |#1|)) (-15 -3940 (|#1| |#1|)) (-15 -4045 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2269 ((-409 (-566)) |#1|)) (-15 -1356 ((-112) |#1|)) (-15 -4332 (|#1| |#1| |#1|)) (-15 -2078 ((-112) |#1| |#1|)) (-15 -1630 ((-112) |#1|)) (-15 -3625 (|#1|)) (-15 -2133 ((-3 |#1| "failed") |#1|)) (-15 -3204 ((-225) |#1|)) (-15 -3204 ((-381) |#1|)) (-15 -3477 (|#1| |#1| |#1|)) (-15 -2711 (|#1| |#1|)) (-15 -2378 (|#1| |#1| |#1|)) (-15 -1525 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3204 ((-566) |#1|)) (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -1533 ((-112) |#1|)) (-15 -3470 ((-771) |#1|)) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3271 ((-420 |#1|) |#1|)) (-15 -1784 ((-112) |#1|)) (-15 -3996 ((-771))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4332 (($ $ $) 90)) (-4014 (((-3 $ "failed") $ $) 20)) (-4172 (($ $ $ $) 79)) (-2179 (($ $) 57)) (-3271 (((-420 $) $) 58)) (-2738 (((-112) $ $) 130)) (-2899 (((-566) $) 119)) (-3129 (($ $ $) 93)) (-3877 (($) 18 T CONST)) (-3066 (((-3 (-566) "failed") $) 111)) (-1867 (((-566) $) 112)) (-2949 (($ $ $) 134)) (-2210 (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 109) (((-689 (-566)) (-689 $)) 108)) (-2928 (((-3 $ "failed") $) 37)) (-4045 (((-3 (-409 (-566)) "failed") $) 87)) (-1356 (((-112) $) 89)) (-2269 (((-409 (-566)) $) 88)) (-1618 (($) 86) (($ $) 85)) (-2960 (($ $ $) 133)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 128)) (-1784 (((-112) $) 59)) (-4012 (($ $ $ $) 77)) (-2385 (($ $ $) 91)) (-1533 (((-112) $) 121)) (-3477 (($ $ $) 102)) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 105)) (-3466 (((-112) $) 35)) (-2469 (((-112) $) 97)) (-2133 (((-3 $ "failed") $) 99)) (-2917 (((-112) $) 120)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 137)) (-2513 (($ $ $ $) 78)) (-1945 (($ $ $) 122)) (-2709 (($ $ $) 123)) (-2428 (($ $) 81)) (-3945 (($ $) 94)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-1885 (($ $ $) 76)) (-3625 (($) 98 T CONST)) (-2637 (($ $) 83)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2711 (($ $) 103)) (-2473 (((-420 $) $) 56)) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 136) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 135)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 129)) (-1630 (((-112) $) 96)) (-3470 (((-771) $) 131)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 132)) (-2578 (($ $ (-771)) 116) (($ $) 114)) (-4090 (($ $) 82)) (-3940 (($ $) 84)) (-3204 (((-566) $) 113) (((-538) $) 107) (((-892 (-566)) $) 106) (((-381) $) 101) (((-225) $) 100)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-566)) 110)) (-3996 (((-771)) 32 T CONST)) (-2078 (((-112) $ $) 92)) (-2378 (($ $ $) 104)) (-3801 (((-112) $ $) 9)) (-3819 (($) 95)) (-2278 (((-112) $ $) 45)) (-1314 (($ $ $ $) 80)) (-3333 (($ $) 118)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-771)) 117) (($ $) 115)) (-3010 (((-112) $ $) 125)) (-2984 (((-112) $ $) 126)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 124)) (-2972 (((-112) $ $) 127)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-547) (-140)) (T -547))
-((-2884 (*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112)))) (-1693 (*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112)))) (-3306 (*1 *1) (-4 *1 (-547))) (-3822 (*1 *1 *1) (-4 *1 (-547))) (-3096 (*1 *1 *1 *1) (-4 *1 (-547))) (-1916 (*1 *2 *1 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112)))) (-2570 (*1 *1 *1 *1) (-4 *1 (-547))) (-1657 (*1 *1 *1 *1) (-4 *1 (-547))) (-3717 (*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112)))) (-3370 (*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-409 (-566))))) (-3800 (*1 *2 *1) (|partial| -12 (-4 *1 (-547)) (-5 *2 (-409 (-566))))) (-3335 (*1 *1) (-4 *1 (-547))) (-3335 (*1 *1 *1) (-4 *1 (-547))) (-3895 (*1 *1 *1) (-4 *1 (-547))) (-1863 (*1 *1 *1) (-4 *1 (-547))) (-2538 (*1 *1 *1) (-4 *1 (-547))) (-1623 (*1 *1 *1) (-4 *1 (-547))) (-2275 (*1 *1 *1 *1 *1) (-4 *1 (-547))) (-3814 (*1 *1 *1 *1 *1) (-4 *1 (-547))) (-1839 (*1 *1 *1 *1 *1) (-4 *1 (-547))) (-3481 (*1 *1 *1 *1 *1) (-4 *1 (-547))) (-2518 (*1 *1 *1 *1) (-4 *1 (-547))))
-(-13 (-1218) (-308) (-820) (-233) (-614 (-566)) (-1038 (-566)) (-639 (-566)) (-614 (-538)) (-614 (-892 (-566))) (-886 (-566)) (-143) (-1022) (-147) (-1150) (-10 -8 (-15 -2884 ((-112) $)) (-15 -1693 ((-112) $)) (-6 -4416) (-15 -3306 ($)) (-15 -3822 ($ $)) (-15 -3096 ($ $ $)) (-15 -1916 ((-112) $ $)) (-15 -2570 ($ $ $)) (-15 -1657 ($ $ $)) (-15 -3717 ((-112) $)) (-15 -3370 ((-409 (-566)) $)) (-15 -3800 ((-3 (-409 (-566)) "failed") $)) (-15 -3335 ($)) (-15 -3335 ($ $)) (-15 -3895 ($ $)) (-15 -1863 ($ $)) (-15 -2538 ($ $)) (-15 -1623 ($ $)) (-15 -2275 ($ $ $ $)) (-15 -3814 ($ $ $ $)) (-15 -1839 ($ $ $ $)) (-15 -3481 ($ $ $ $)) (-15 -2518 ($ $ $)) (-6 -4415)))
+((-2469 (*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112)))) (-1630 (*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112)))) (-3819 (*1 *1) (-4 *1 (-547))) (-3945 (*1 *1 *1) (-4 *1 (-547))) (-3129 (*1 *1 *1 *1) (-4 *1 (-547))) (-2078 (*1 *2 *1 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112)))) (-2385 (*1 *1 *1 *1) (-4 *1 (-547))) (-4332 (*1 *1 *1 *1) (-4 *1 (-547))) (-1356 (*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112)))) (-2269 (*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-409 (-566))))) (-4045 (*1 *2 *1) (|partial| -12 (-4 *1 (-547)) (-5 *2 (-409 (-566))))) (-1618 (*1 *1) (-4 *1 (-547))) (-1618 (*1 *1 *1) (-4 *1 (-547))) (-3940 (*1 *1 *1) (-4 *1 (-547))) (-2637 (*1 *1 *1) (-4 *1 (-547))) (-4090 (*1 *1 *1) (-4 *1 (-547))) (-2428 (*1 *1 *1) (-4 *1 (-547))) (-1314 (*1 *1 *1 *1 *1) (-4 *1 (-547))) (-4172 (*1 *1 *1 *1 *1) (-4 *1 (-547))) (-2513 (*1 *1 *1 *1 *1) (-4 *1 (-547))) (-4012 (*1 *1 *1 *1 *1) (-4 *1 (-547))) (-1885 (*1 *1 *1 *1) (-4 *1 (-547))))
+(-13 (-1218) (-308) (-820) (-233) (-614 (-566)) (-1038 (-566)) (-639 (-566)) (-614 (-538)) (-614 (-892 (-566))) (-886 (-566)) (-143) (-1022) (-147) (-1150) (-10 -8 (-15 -2469 ((-112) $)) (-15 -1630 ((-112) $)) (-6 -4413) (-15 -3819 ($)) (-15 -3945 ($ $)) (-15 -3129 ($ $ $)) (-15 -2078 ((-112) $ $)) (-15 -2385 ($ $ $)) (-15 -4332 ($ $ $)) (-15 -1356 ((-112) $)) (-15 -2269 ((-409 (-566)) $)) (-15 -4045 ((-3 (-409 (-566)) "failed") $)) (-15 -1618 ($)) (-15 -1618 ($ $)) (-15 -3940 ($ $)) (-15 -2637 ($ $)) (-15 -4090 ($ $)) (-15 -2428 ($ $)) (-15 -1314 ($ $ $ $)) (-15 -4172 ($ $ $ $)) (-15 -2513 ($ $ $ $)) (-15 -4012 ($ $ $ $)) (-15 -1885 ($ $ $)) (-6 -4412)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-147) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-143) . T) ((-172) . T) ((-614 (-225)) . T) ((-614 (-381)) . T) ((-614 (-538)) . T) ((-614 (-566)) . T) ((-614 (-892 (-566))) . T) ((-233) . T) ((-291) . T) ((-308) . T) ((-454) . T) ((-558) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-639 (-566)) . T) ((-717 $) . T) ((-726) . T) ((-791) . T) ((-792) . T) ((-794) . T) ((-795) . T) ((-820) . T) ((-848) . T) ((-850) . T) ((-886 (-566)) . T) ((-920) . T) ((-1022) . T) ((-1038 (-566)) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1150) . T) ((-1218) . T))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) NIL T CONST)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3712 (((-921) $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
-(((-548) (-13 (-844) (-10 -8 (-15 -2342 ($) -1655)))) (T -548))
-((-2342 (*1 *1) (-5 *1 (-548))))
-(-13 (-844) (-10 -8 (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) NIL T CONST)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1299 (((-921) $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
+(((-548) (-13 (-844) (-10 -8 (-15 -3877 ($) -2460)))) (T -548))
+((-3877 (*1 *1) (-5 *1 (-548))))
+(-13 (-844) (-10 -8 (-15 -3877 ($) -2460)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 16)))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) NIL T CONST)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3712 (((-921) $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
-(((-549) (-13 (-844) (-10 -8 (-15 -2342 ($) -1655)))) (T -549))
-((-2342 (*1 *1) (-5 *1 (-549))))
-(-13 (-844) (-10 -8 (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) NIL T CONST)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1299 (((-921) $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
+(((-549) (-13 (-844) (-10 -8 (-15 -3877 ($) -2460)))) (T -549))
+((-3877 (*1 *1) (-5 *1 (-549))))
+(-13 (-844) (-10 -8 (-15 -3877 ($) -2460)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 32)))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) NIL T CONST)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3712 (((-921) $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
-(((-550) (-13 (-844) (-10 -8 (-15 -2342 ($) -1655)))) (T -550))
-((-2342 (*1 *1) (-5 *1 (-550))))
-(-13 (-844) (-10 -8 (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) NIL T CONST)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1299 (((-921) $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
+(((-550) (-13 (-844) (-10 -8 (-15 -3877 ($) -2460)))) (T -550))
+((-3877 (*1 *1) (-5 *1 (-550))))
+(-13 (-844) (-10 -8 (-15 -3877 ($) -2460)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 64)))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) NIL T CONST)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3712 (((-921) $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
-(((-551) (-13 (-844) (-10 -8 (-15 -2342 ($) -1655)))) (T -551))
-((-2342 (*1 *1) (-5 *1 (-551))))
-(-13 (-844) (-10 -8 (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) NIL T CONST)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1299 (((-921) $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
+(((-551) (-13 (-844) (-10 -8 (-15 -3877 ($) -2460)))) (T -551))
+((-3877 (*1 *1) (-5 *1 (-551))))
+(-13 (-844) (-10 -8 (-15 -3877 ($) -2460)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 8)))
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-1537 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#2| $ |#1| |#2|) NIL)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-2414 (((-3 |#2| "failed") |#1| $) NIL)) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-3066 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-3 |#2| "failed") |#1| $) NIL)) (-2651 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) NIL)) (-3372 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 ((|#1| $) NIL (|has| |#1| (-850)))) (-2404 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-1544 ((|#1| $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4418))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3949 (((-644 |#1|) $) NIL)) (-3221 (((-112) |#1| $) NIL)) (-3119 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-4265 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-1922 (((-644 |#1|) $) NIL)) (-2040 (((-112) |#1| $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4062 ((|#2| $) NIL (|has| |#1| (-850)))) (-2126 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL)) (-1720 (($ $ |#2|) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3879 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-2512 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3122 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-552 |#1| |#2| |#3|) (-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4417))) (-1099) (-1099) (-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4417)))) (T -552))
-NIL
-(-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4417)))
-((-4032 (((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-1 (-1171 |#2|) (-1171 |#2|))) 50)))
-(((-553 |#1| |#2|) (-10 -7 (-15 -4032 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-1 (-1171 |#2|) (-1171 |#2|))))) (-558) (-13 (-27) (-432 |#1|))) (T -553))
-((-4032 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-612 *3)) (-5 *5 (-1 (-1171 *3) (-1171 *3))) (-4 *3 (-13 (-27) (-432 *6))) (-4 *6 (-558)) (-5 *2 (-587 *3)) (-5 *1 (-553 *6 *3)))))
-(-10 -7 (-15 -4032 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-1 (-1171 |#2|) (-1171 |#2|)))))
-((-1716 (((-587 |#5|) |#5| (-1 |#3| |#3|)) 218)) (-1810 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 214)) (-3354 (((-587 |#5|) |#5| (-1 |#3| |#3|)) 222)))
-(((-554 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3354 ((-587 |#5|) |#5| (-1 |#3| |#3|))) (-15 -1716 ((-587 |#5|) |#5| (-1 |#3| |#3|))) (-15 -1810 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-558) (-1038 (-566))) (-13 (-27) (-432 |#1|)) (-1240 |#2|) (-1240 (-409 |#3|)) (-344 |#2| |#3| |#4|)) (T -554))
-((-1810 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-27) (-432 *4))) (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *7 (-1240 (-409 *6))) (-5 *1 (-554 *4 *5 *6 *7 *2)) (-4 *2 (-344 *5 *6 *7)))) (-1716 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1240 *6)) (-4 *6 (-13 (-27) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566)))) (-4 *8 (-1240 (-409 *7))) (-5 *2 (-587 *3)) (-5 *1 (-554 *5 *6 *7 *8 *3)) (-4 *3 (-344 *6 *7 *8)))) (-3354 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1240 *6)) (-4 *6 (-13 (-27) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566)))) (-4 *8 (-1240 (-409 *7))) (-5 *2 (-587 *3)) (-5 *1 (-554 *5 *6 *7 *8 *3)) (-4 *3 (-344 *6 *7 *8)))))
-(-10 -7 (-15 -3354 ((-587 |#5|) |#5| (-1 |#3| |#3|))) (-15 -1716 ((-587 |#5|) |#5| (-1 |#3| |#3|))) (-15 -1810 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
-((-2255 (((-112) (-566) (-566)) 12)) (-2478 (((-566) (-566)) 7)) (-2833 (((-566) (-566) (-566)) 10)))
-(((-555) (-10 -7 (-15 -2478 ((-566) (-566))) (-15 -2833 ((-566) (-566) (-566))) (-15 -2255 ((-112) (-566) (-566))))) (T -555))
-((-2255 (*1 *2 *3 *3) (-12 (-5 *3 (-566)) (-5 *2 (-112)) (-5 *1 (-555)))) (-2833 (*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-555)))) (-2478 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-555)))))
-(-10 -7 (-15 -2478 ((-566) (-566))) (-15 -2833 ((-566) (-566) (-566))) (-15 -2255 ((-112) (-566) (-566))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-3463 ((|#1| $) 67)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-3235 (($ $) 97)) (-3102 (($ $) 80)) (-3711 ((|#1| $) 68)) (-4126 (((-3 $ "failed") $ $) 20)) (-2402 (($ $) 79)) (-3215 (($ $) 96)) (-3076 (($ $) 81)) (-3259 (($ $) 95)) (-3123 (($ $) 82)) (-2342 (($) 18 T CONST)) (-2977 (((-3 (-566) "failed") $) 75)) (-1756 (((-566) $) 76)) (-1579 (((-3 $ "failed") $) 37)) (-3982 (($ |#1| |#1|) 72)) (-1684 (((-112) $) 66)) (-3035 (($) 107)) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 78)) (-1578 (((-112) $) 65)) (-1439 (($ $ $) 113)) (-3059 (($ $ $) 112)) (-3668 (($ $) 104)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-3723 (($ |#1| |#1|) 73) (($ |#1|) 71) (($ (-409 (-566))) 70)) (-3317 ((|#1| $) 69)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-2972 (((-3 $ "failed") $ $) 48)) (-3613 (($ $) 105)) (-3267 (($ $) 94)) (-3133 (($ $) 83)) (-3248 (($ $) 93)) (-3112 (($ $) 84)) (-3223 (($ $) 92)) (-3089 (($ $) 85)) (-2487 (((-112) $ |#1|) 64)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-566)) 74)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-3302 (($ $) 103)) (-3172 (($ $) 91)) (-1634 (((-112) $ $) 45)) (-3279 (($ $) 102)) (-3146 (($ $) 90)) (-3323 (($ $) 101)) (-3194 (($ $) 89)) (-1382 (($ $) 100)) (-3205 (($ $) 88)) (-3313 (($ $) 99)) (-3185 (($ $) 87)) (-3291 (($ $) 98)) (-3160 (($ $) 86)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2998 (((-112) $ $) 110)) (-2974 (((-112) $ $) 109)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 111)) (-2962 (((-112) $ $) 108)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ $) 106) (($ $ (-409 (-566))) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-2518 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#2| $ |#1| |#2|) NIL)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2450 (((-3 |#2| "failed") |#1| $) NIL)) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-1450 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-3 |#2| "failed") |#1| $) NIL)) (-2661 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) NIL)) (-3799 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 ((|#1| $) NIL (|has| |#1| (-850)))) (-3276 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2579 ((|#1| $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4415))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4314 (((-644 |#1|) $) NIL)) (-3422 (((-112) |#1| $) NIL)) (-3765 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2903 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2140 (((-644 |#1|) $) NIL)) (-3935 (((-112) |#1| $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4101 ((|#2| $) NIL (|has| |#1| (-850)))) (-3591 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL)) (-3750 (($ $ |#2|) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3551 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-3780 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3801 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-552 |#1| |#2| |#3|) (-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4414))) (-1099) (-1099) (-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4414)))) (T -552))
+NIL
+(-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4414)))
+((-2491 (((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-1 (-1171 |#2|) (-1171 |#2|))) 50)))
+(((-553 |#1| |#2|) (-10 -7 (-15 -2491 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-1 (-1171 |#2|) (-1171 |#2|))))) (-558) (-13 (-27) (-432 |#1|))) (T -553))
+((-2491 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-612 *3)) (-5 *5 (-1 (-1171 *3) (-1171 *3))) (-4 *3 (-13 (-27) (-432 *6))) (-4 *6 (-558)) (-5 *2 (-587 *3)) (-5 *1 (-553 *6 *3)))))
+(-10 -7 (-15 -2491 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-1 (-1171 |#2|) (-1171 |#2|)))))
+((-3723 (((-587 |#5|) |#5| (-1 |#3| |#3|)) 218)) (-3437 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 214)) (-2117 (((-587 |#5|) |#5| (-1 |#3| |#3|)) 222)))
+(((-554 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2117 ((-587 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3723 ((-587 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3437 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|)))) (-13 (-558) (-1038 (-566))) (-13 (-27) (-432 |#1|)) (-1240 |#2|) (-1240 (-409 |#3|)) (-344 |#2| |#3| |#4|)) (T -554))
+((-3437 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-27) (-432 *4))) (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *7 (-1240 (-409 *6))) (-5 *1 (-554 *4 *5 *6 *7 *2)) (-4 *2 (-344 *5 *6 *7)))) (-3723 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1240 *6)) (-4 *6 (-13 (-27) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566)))) (-4 *8 (-1240 (-409 *7))) (-5 *2 (-587 *3)) (-5 *1 (-554 *5 *6 *7 *8 *3)) (-4 *3 (-344 *6 *7 *8)))) (-2117 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1240 *6)) (-4 *6 (-13 (-27) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566)))) (-4 *8 (-1240 (-409 *7))) (-5 *2 (-587 *3)) (-5 *1 (-554 *5 *6 *7 *8 *3)) (-4 *3 (-344 *6 *7 *8)))))
+(-10 -7 (-15 -2117 ((-587 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3723 ((-587 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3437 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
+((-2368 (((-112) (-566) (-566)) 12)) (-2706 (((-566) (-566)) 7)) (-1943 (((-566) (-566) (-566)) 10)))
+(((-555) (-10 -7 (-15 -2706 ((-566) (-566))) (-15 -1943 ((-566) (-566) (-566))) (-15 -2368 ((-112) (-566) (-566))))) (T -555))
+((-2368 (*1 *2 *3 *3) (-12 (-5 *3 (-566)) (-5 *2 (-112)) (-5 *1 (-555)))) (-1943 (*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-555)))) (-2706 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-555)))))
+(-10 -7 (-15 -2706 ((-566) (-566))) (-15 -1943 ((-566) (-566) (-566))) (-15 -2368 ((-112) (-566) (-566))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3496 ((|#1| $) 67)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-2865 (($ $) 97)) (-3939 (($ $) 80)) (-4385 ((|#1| $) 68)) (-4014 (((-3 $ "failed") $ $) 20)) (-2484 (($ $) 79)) (-2843 (($ $) 96)) (-3915 (($ $) 81)) (-2888 (($ $) 95)) (-3964 (($ $) 82)) (-3877 (($) 18 T CONST)) (-3066 (((-3 (-566) "failed") $) 75)) (-1867 (((-566) $) 76)) (-2928 (((-3 $ "failed") $) 37)) (-2019 (($ |#1| |#1|) 72)) (-1533 (((-112) $) 66)) (-3120 (($) 107)) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 78)) (-2917 (((-112) $) 65)) (-1945 (($ $ $) 113)) (-2709 (($ $ $) 112)) (-3671 (($ $) 104)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-1427 (($ |#1| |#1|) 73) (($ |#1|) 71) (($ (-409 (-566))) 70)) (-3013 ((|#1| $) 69)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2997 (((-3 $ "failed") $ $) 48)) (-4337 (($ $) 105)) (-2897 (($ $) 94)) (-3974 (($ $) 83)) (-2877 (($ $) 93)) (-3951 (($ $) 84)) (-2853 (($ $) 92)) (-3927 (($ $) 85)) (-2783 (((-112) $ |#1|) 64)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-566)) 74)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2931 (($ $) 103)) (-4009 (($ $) 91)) (-2278 (((-112) $ $) 45)) (-2907 (($ $) 102)) (-3986 (($ $) 90)) (-2954 (($ $) 101)) (-4033 (($ $) 89)) (-3181 (($ $) 100)) (-2834 (($ $) 88)) (-2943 (($ $) 99)) (-4021 (($ $) 87)) (-2920 (($ $) 98)) (-3997 (($ $) 86)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-3010 (((-112) $ $) 110)) (-2984 (((-112) $ $) 109)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 111)) (-2972 (((-112) $ $) 108)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ $) 106) (($ $ (-409 (-566))) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-556 |#1|) (-140) (-13 (-406) (-1199))) (T -556))
-((-3723 (*1 *1 *2 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-3982 (*1 *1 *2 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-3723 (*1 *1 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-3723 (*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))))) (-3317 (*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-3711 (*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-3463 (*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-1684 (*1 *2 *1) (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112)))) (-1578 (*1 *2 *1) (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112)))) (-2487 (*1 *2 *1 *3) (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112)))))
-(-13 (-454) (-850) (-1199) (-1002) (-1038 (-566)) (-10 -8 (-6 -3645) (-15 -3723 ($ |t#1| |t#1|)) (-15 -3982 ($ |t#1| |t#1|)) (-15 -3723 ($ |t#1|)) (-15 -3723 ($ (-409 (-566)))) (-15 -3317 (|t#1| $)) (-15 -3711 (|t#1| $)) (-15 -3463 (|t#1| $)) (-15 -1684 ((-112) $)) (-15 -1578 ((-112) $)) (-15 -2487 ((-112) $ |t#1|))))
+((-1427 (*1 *1 *2 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-2019 (*1 *1 *2 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-1427 (*1 *1 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-1427 (*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))))) (-3013 (*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-4385 (*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-3496 (*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))) (-1533 (*1 *2 *1) (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112)))) (-2917 (*1 *2 *1) (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112)))) (-2783 (*1 *2 *1 *3) (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112)))))
+(-13 (-454) (-850) (-1199) (-1002) (-1038 (-566)) (-10 -8 (-6 -3651) (-15 -1427 ($ |t#1| |t#1|)) (-15 -2019 ($ |t#1| |t#1|)) (-15 -1427 ($ |t#1|)) (-15 -1427 ($ (-409 (-566)))) (-15 -3013 (|t#1| $)) (-15 -4385 (|t#1| $)) (-15 -3496 (|t#1| $)) (-15 -1533 ((-112) $)) (-15 -2917 ((-112) $)) (-15 -2783 ((-112) $ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-35) . T) ((-95) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-285) . T) ((-291) . T) ((-454) . T) ((-495) . T) ((-558) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-717 $) . T) ((-726) . T) ((-850) . T) ((-1002) . T) ((-1038 (-566)) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1199) . T) ((-1202) . T))
-((-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 9)) (-3653 (($ $) 11)) (-2152 (((-112) $) 20)) (-1579 (((-3 $ "failed") $) 16)) (-1634 (((-112) $ $) 22)))
-(((-557 |#1|) (-10 -8 (-15 -2152 ((-112) |#1|)) (-15 -1634 ((-112) |#1| |#1|)) (-15 -3653 (|#1| |#1|)) (-15 -2330 ((-2 (|:| -3803 |#1|) (|:| -4404 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -1579 ((-3 |#1| "failed") |#1|))) (-558)) (T -557))
+((-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 9)) (-1968 (($ $) 11)) (-2644 (((-112) $) 20)) (-2928 (((-3 $ "failed") $) 16)) (-2278 (((-112) $ $) 22)))
+(((-557 |#1|) (-10 -8 (-15 -2644 ((-112) |#1|)) (-15 -2278 ((-112) |#1| |#1|)) (-15 -1968 (|#1| |#1|)) (-15 -3761 ((-2 (|:| -4065 |#1|) (|:| -4401 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2928 ((-3 |#1| "failed") |#1|))) (-558)) (T -557))
NIL
-(-10 -8 (-15 -2152 ((-112) |#1|)) (-15 -1634 ((-112) |#1| |#1|)) (-15 -3653 (|#1| |#1|)) (-15 -2330 ((-2 (|:| -3803 |#1|) (|:| -4404 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -1579 ((-3 |#1| "failed") |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2972 (((-3 $ "failed") $ $) 48)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+(-10 -8 (-15 -2644 ((-112) |#1|)) (-15 -2278 ((-112) |#1| |#1|)) (-15 -1968 (|#1| |#1|)) (-15 -3761 ((-2 (|:| -4065 |#1|) (|:| -4401 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2928 ((-3 |#1| "failed") |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2997 (((-3 $ "failed") $ $) 48)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-558) (-140)) (T -558))
-((-2972 (*1 *1 *1 *1) (|partial| -4 *1 (-558))) (-2330 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3803 *1) (|:| -4404 *1) (|:| |associate| *1))) (-4 *1 (-558)))) (-3653 (*1 *1 *1) (-4 *1 (-558))) (-1634 (*1 *2 *1 *1) (-12 (-4 *1 (-558)) (-5 *2 (-112)))) (-2152 (*1 *2 *1) (-12 (-4 *1 (-558)) (-5 *2 (-112)))))
-(-13 (-172) (-38 $) (-291) (-10 -8 (-15 -2972 ((-3 $ "failed") $ $)) (-15 -2330 ((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $)) (-15 -3653 ($ $)) (-15 -1634 ((-112) $ $)) (-15 -2152 ((-112) $))))
+((-2997 (*1 *1 *1 *1) (|partial| -4 *1 (-558))) (-3761 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -4065 *1) (|:| -4401 *1) (|:| |associate| *1))) (-4 *1 (-558)))) (-1968 (*1 *1 *1) (-4 *1 (-558))) (-2278 (*1 *2 *1 *1) (-12 (-4 *1 (-558)) (-5 *2 (-112)))) (-2644 (*1 *2 *1) (-12 (-4 *1 (-558)) (-5 *2 (-112)))))
+(-13 (-172) (-38 $) (-291) (-10 -8 (-15 -2997 ((-3 $ "failed") $ $)) (-15 -3761 ((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $)) (-15 -1968 ($ $)) (-15 -2278 ((-112) $ $)) (-15 -2644 ((-112) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-291) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-717 $) . T) ((-726) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-3642 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1175) (-644 |#2|)) 38)) (-4101 (((-587 |#2|) |#2| (-1175)) 63)) (-4055 (((-3 |#2| "failed") |#2| (-1175)) 156)) (-2180 (((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) (-612 |#2|) (-644 (-612 |#2|))) 159)) (-3650 (((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) |#2|) 41)))
-(((-559 |#1| |#2|) (-10 -7 (-15 -3650 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) |#2|)) (-15 -3642 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1175) (-644 |#2|))) (-15 -4055 ((-3 |#2| "failed") |#2| (-1175))) (-15 -4101 ((-587 |#2|) |#2| (-1175))) (-15 -2180 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) (-612 |#2|) (-644 (-612 |#2|))))) (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -559))
-((-2180 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1175)) (-5 *6 (-644 (-612 *3))) (-5 *5 (-612 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-2 (|:| -2806 *3) (|:| |coeff| *3))) (-5 *1 (-559 *7 *3)))) (-4101 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-559 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-4055 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-559 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-3642 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-559 *6 *3)))) (-3650 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-2 (|:| -2806 *3) (|:| |coeff| *3))) (-5 *1 (-559 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
-(-10 -7 (-15 -3650 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) |#2|)) (-15 -3642 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1175) (-644 |#2|))) (-15 -4055 ((-3 |#2| "failed") |#2| (-1175))) (-15 -4101 ((-587 |#2|) |#2| (-1175))) (-15 -2180 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) (-612 |#2|) (-644 (-612 |#2|)))))
-((-1370 (((-420 |#1|) |#1|) 19)) (-2391 (((-420 |#1|) |#1|) 34)) (-2423 (((-3 |#1| "failed") |#1|) 51)) (-4064 (((-420 |#1|) |#1|) 64)))
-(((-560 |#1|) (-10 -7 (-15 -2391 ((-420 |#1|) |#1|)) (-15 -1370 ((-420 |#1|) |#1|)) (-15 -4064 ((-420 |#1|) |#1|)) (-15 -2423 ((-3 |#1| "failed") |#1|))) (-547)) (T -560))
-((-2423 (*1 *2 *2) (|partial| -12 (-5 *1 (-560 *2)) (-4 *2 (-547)))) (-4064 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-560 *3)) (-4 *3 (-547)))) (-1370 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-560 *3)) (-4 *3 (-547)))) (-2391 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-560 *3)) (-4 *3 (-547)))))
-(-10 -7 (-15 -2391 ((-420 |#1|) |#1|)) (-15 -1370 ((-420 |#1|) |#1|)) (-15 -4064 ((-420 |#1|) |#1|)) (-15 -2423 ((-3 |#1| "failed") |#1|)))
-((-2980 (($) 9)) (-2586 (((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 35)) (-3949 (((-644 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $) 32)) (-4265 (($ (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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)) (-2521 (($ (-644 (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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)) (-2818 (((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 39)) (-2784 (((-644 (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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)) (-1985 (((-1269)) 12)))
-(((-561) (-10 -8 (-15 -2980 ($)) (-15 -1985 ((-1269))) (-15 -3949 ((-644 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -2521 ($ (-644 (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 -4265 ($ (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 -2586 ((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2784 ((-644 (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 -2818 ((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -561))
-((-2818 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 (-561)))) (-2784 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 (-561)))) (-2586 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 (-561)))) (-4265 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 (-561)))) (-2521 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 (-561)))) (-3949 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-5 *1 (-561)))) (-1985 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-561)))) (-2980 (*1 *1) (-5 *1 (-561))))
-(-10 -8 (-15 -2980 ($)) (-15 -1985 ((-1269))) (-15 -3949 ((-644 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -2521 ($ (-644 (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 -4265 ($ (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 -2586 ((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2784 ((-644 (-2 (|:| -2010 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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 -2818 ((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -4344 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
-((-2358 (((-1171 (-409 (-1171 |#2|))) |#2| (-612 |#2|) (-612 |#2|) (-1171 |#2|)) 35)) (-1556 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|))) 105) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) |#2| (-1171 |#2|)) 115)) (-2326 (((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|))) 85) (((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|)) 55)) (-2310 (((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| (-612 |#2|) |#2| (-409 (-1171 |#2|))) 92) (((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| |#2| (-1171 |#2|)) 114)) (-3264 (((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) (-612 |#2|) |#2| (-409 (-1171 |#2|))) 110) (((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) |#2| (-1171 |#2|)) 116)) (-1562 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1990 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|))) 135 (|has| |#3| (-656 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1990 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|)) 134 (|has| |#3| (-656 |#2|)))) (-2530 ((|#2| (-1171 (-409 (-1171 |#2|))) (-612 |#2|) |#2|) 53)) (-4350 (((-1171 (-409 (-1171 |#2|))) (-1171 |#2|) (-612 |#2|)) 34)))
-(((-562 |#1| |#2| |#3|) (-10 -7 (-15 -2326 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|))) (-15 -2326 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -2310 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| |#2| (-1171 |#2|))) (-15 -2310 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -1556 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) |#2| (-1171 |#2|))) (-15 -1556 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -3264 ((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) |#2| (-1171 |#2|))) (-15 -3264 ((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -2358 ((-1171 (-409 (-1171 |#2|))) |#2| (-612 |#2|) (-612 |#2|) (-1171 |#2|))) (-15 -2530 (|#2| (-1171 (-409 (-1171 |#2|))) (-612 |#2|) |#2|)) (-15 -4350 ((-1171 (-409 (-1171 |#2|))) (-1171 |#2|) (-612 |#2|))) (IF (|has| |#3| (-656 |#2|)) (PROGN (-15 -1562 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1990 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|))) (-15 -1562 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1990 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|))))) |%noBranch|)) (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))) (-13 (-432 |#1|) (-27) (-1199)) (-1099)) (T -562))
-((-1562 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-612 *4)) (-5 *6 (-409 (-1171 *4))) (-4 *4 (-13 (-432 *7) (-27) (-1199))) (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4)))) (-5 *1 (-562 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099)))) (-1562 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-612 *4)) (-5 *6 (-1171 *4)) (-4 *4 (-13 (-432 *7) (-27) (-1199))) (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4)))) (-5 *1 (-562 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099)))) (-4350 (*1 *2 *3 *4) (-12 (-5 *4 (-612 *6)) (-4 *6 (-13 (-432 *5) (-27) (-1199))) (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-1171 (-409 (-1171 *6)))) (-5 *1 (-562 *5 *6 *7)) (-5 *3 (-1171 *6)) (-4 *7 (-1099)))) (-2530 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1171 (-409 (-1171 *2)))) (-5 *4 (-612 *2)) (-4 *2 (-13 (-432 *5) (-27) (-1199))) (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *1 (-562 *5 *2 *6)) (-4 *6 (-1099)))) (-2358 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-612 *3)) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-1171 (-409 (-1171 *3)))) (-5 *1 (-562 *6 *3 *7)) (-5 *5 (-1171 *3)) (-4 *7 (-1099)))) (-3264 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-612 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175))) (-5 *5 (-409 (-1171 *2))) (-4 *2 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *1 (-562 *6 *2 *7)) (-4 *7 (-1099)))) (-3264 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-612 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175))) (-5 *5 (-1171 *2)) (-4 *2 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *1 (-562 *6 *2 *7)) (-4 *7 (-1099)))) (-1556 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3)) (-5 *6 (-409 (-1171 *3))) (-4 *3 (-13 (-432 *7) (-27) (-1199))) (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-562 *7 *3 *8)) (-4 *8 (-1099)))) (-1556 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3)) (-5 *6 (-1171 *3)) (-4 *3 (-13 (-432 *7) (-27) (-1199))) (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-562 *7 *3 *8)) (-4 *8 (-1099)))) (-2310 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-409 (-1171 *3))) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| -2806 *3) (|:| |coeff| *3))) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))) (-2310 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-1171 *3)) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| -2806 *3) (|:| |coeff| *3))) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))) (-2326 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-612 *3)) (-5 *5 (-409 (-1171 *3))) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))) (-2326 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-612 *3)) (-5 *5 (-1171 *3)) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))))
-(-10 -7 (-15 -2326 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|))) (-15 -2326 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -2310 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| |#2| (-1171 |#2|))) (-15 -2310 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -1556 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) |#2| (-1171 |#2|))) (-15 -1556 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -3264 ((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) |#2| (-1171 |#2|))) (-15 -3264 ((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -2358 ((-1171 (-409 (-1171 |#2|))) |#2| (-612 |#2|) (-612 |#2|) (-1171 |#2|))) (-15 -2530 (|#2| (-1171 (-409 (-1171 |#2|))) (-612 |#2|) |#2|)) (-15 -4350 ((-1171 (-409 (-1171 |#2|))) (-1171 |#2|) (-612 |#2|))) (IF (|has| |#3| (-656 |#2|)) (PROGN (-15 -1562 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1990 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|))) (-15 -1562 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1990 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|))))) |%noBranch|))
-((-1913 (((-566) (-566) (-771)) 90)) (-4097 (((-566) (-566)) 88)) (-3043 (((-566) (-566)) 86)) (-3444 (((-566) (-566)) 92)) (-1695 (((-566) (-566) (-566)) 70)) (-3923 (((-566) (-566) (-566)) 67)) (-3652 (((-409 (-566)) (-566)) 30)) (-2154 (((-566) (-566)) 36)) (-2289 (((-566) (-566)) 79)) (-2436 (((-566) (-566)) 51)) (-3672 (((-644 (-566)) (-566)) 85)) (-1460 (((-566) (-566) (-566) (-566) (-566)) 63)) (-2335 (((-409 (-566)) (-566)) 60)))
-(((-563) (-10 -7 (-15 -2335 ((-409 (-566)) (-566))) (-15 -1460 ((-566) (-566) (-566) (-566) (-566))) (-15 -3672 ((-644 (-566)) (-566))) (-15 -2436 ((-566) (-566))) (-15 -2289 ((-566) (-566))) (-15 -2154 ((-566) (-566))) (-15 -3652 ((-409 (-566)) (-566))) (-15 -3923 ((-566) (-566) (-566))) (-15 -1695 ((-566) (-566) (-566))) (-15 -3444 ((-566) (-566))) (-15 -3043 ((-566) (-566))) (-15 -4097 ((-566) (-566))) (-15 -1913 ((-566) (-566) (-771))))) (T -563))
-((-1913 (*1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-771)) (-5 *1 (-563)))) (-4097 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-3043 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-3444 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-1695 (*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-3923 (*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-3652 (*1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-563)) (-5 *3 (-566)))) (-2154 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-2289 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-2436 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-3672 (*1 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-563)) (-5 *3 (-566)))) (-1460 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-2335 (*1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-563)) (-5 *3 (-566)))))
-(-10 -7 (-15 -2335 ((-409 (-566)) (-566))) (-15 -1460 ((-566) (-566) (-566) (-566) (-566))) (-15 -3672 ((-644 (-566)) (-566))) (-15 -2436 ((-566) (-566))) (-15 -2289 ((-566) (-566))) (-15 -2154 ((-566) (-566))) (-15 -3652 ((-409 (-566)) (-566))) (-15 -3923 ((-566) (-566) (-566))) (-15 -1695 ((-566) (-566) (-566))) (-15 -3444 ((-566) (-566))) (-15 -3043 ((-566) (-566))) (-15 -4097 ((-566) (-566))) (-15 -1913 ((-566) (-566) (-771))))
-((-3511 (((-2 (|:| |answer| |#4|) (|:| -2317 |#4|)) |#4| (-1 |#2| |#2|)) 56)))
-(((-564 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3511 ((-2 (|:| |answer| |#4|) (|:| -2317 |#4|)) |#4| (-1 |#2| |#2|)))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -564))
-((-3511 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-4 *7 (-1240 (-409 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -2317 *3))) (-5 *1 (-564 *5 *6 *7 *3)) (-4 *3 (-344 *5 *6 *7)))))
-(-10 -7 (-15 -3511 ((-2 (|:| |answer| |#4|) (|:| -2317 |#4|)) |#4| (-1 |#2| |#2|))))
-((-3511 (((-2 (|:| |answer| (-409 |#2|)) (|:| -2317 (-409 |#2|)) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|)) 18)))
-(((-565 |#1| |#2|) (-10 -7 (-15 -3511 ((-2 (|:| |answer| (-409 |#2|)) (|:| -2317 (-409 |#2|)) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|)))) (-365) (-1240 |#1|)) (T -565))
-((-3511 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| |answer| (-409 *6)) (|:| -2317 (-409 *6)) (|:| |specpart| (-409 *6)) (|:| |polypart| *6))) (-5 *1 (-565 *5 *6)) (-5 *3 (-409 *6)))))
-(-10 -7 (-15 -3511 ((-2 (|:| |answer| (-409 |#2|)) (|:| -2317 (-409 |#2|)) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 30)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 97)) (-3653 (($ $) 98)) (-2152 (((-112) $) NIL)) (-1657 (($ $ $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $ $ $) 52)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL)) (-3096 (($ $ $) 92)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL)) (-1756 (((-566) $) NIL)) (-2926 (($ $ $) 54)) (-1628 (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 77) (((-689 (-566)) (-689 $)) 73)) (-1579 (((-3 $ "failed") $) 94)) (-3800 (((-3 (-409 (-566)) "failed") $) NIL)) (-3717 (((-112) $) NIL)) (-3370 (((-409 (-566)) $) NIL)) (-3335 (($) 79) (($ $) 80)) (-2938 (($ $ $) 91)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-3481 (($ $ $ $) NIL)) (-2570 (($ $ $) 70)) (-1684 (((-112) $) NIL)) (-3870 (($ $ $) NIL)) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL)) (-2741 (((-112) $) 34)) (-2884 (((-112) $) 86)) (-2546 (((-3 $ "failed") $) NIL)) (-1578 (((-112) $) 43)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1839 (($ $ $ $) 55)) (-1439 (($ $ $) 88)) (-3059 (($ $ $) 87)) (-1623 (($ $) NIL)) (-3822 (($ $) 49)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) 69)) (-2518 (($ $ $) NIL)) (-2759 (($) NIL T CONST)) (-1863 (($ $) 38)) (-4033 (((-1119) $) 42)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 129)) (-2222 (($ $ $) 95) (($ (-644 $)) NIL)) (-3280 (($ $) NIL)) (-2391 (((-420 $) $) 115)) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL)) (-2972 (((-3 $ "failed") $ $) 113)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1693 (((-112) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 90)) (-2862 (($ $ (-771)) NIL) (($ $) NIL)) (-2538 (($ $) 40)) (-3895 (($ $) 36)) (-3134 (((-566) $) 48) (((-538) $) 64) (((-892 (-566)) $) NIL) (((-381) $) 58) (((-225) $) 61) (((-1157) $) 66)) (-2512 (((-862) $) 46) (($ (-566)) 47) (($ $) NIL) (($ (-566)) 47)) (-3795 (((-771)) NIL T CONST)) (-1916 (((-112) $ $) NIL)) (-1523 (($ $ $) NIL)) (-3122 (((-112) $ $) NIL)) (-3306 (($) 35)) (-1634 (((-112) $ $) NIL)) (-2275 (($ $ $ $) 51)) (-1346 (($ $) 78)) (-2485 (($) 6 T CONST)) (-2495 (($) 31 T CONST)) (-2178 (((-1157) $) 26) (((-1157) $ (-112)) 27) (((-1269) (-822) $) 28) (((-1269) (-822) $ (-112)) 29)) (-2840 (($ $ (-771)) NIL) (($ $) NIL)) (-2998 (((-112) $ $) 50)) (-2974 (((-112) $ $) 81)) (-2940 (((-112) $ $) 33)) (-2987 (((-112) $ $) 83)) (-2962 (((-112) $ $) 10)) (-3047 (($ $) 16) (($ $ $) 39)) (-3034 (($ $ $) 37)) (** (($ $ (-921)) NIL) (($ $ (-771)) 85)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 84) (($ $ $) 53)))
-(((-566) (-13 (-547) (-614 (-1157)) (-828) (-10 -8 (-15 -3335 ($ $)) (-6 -4404) (-6 -4409) (-6 -4405) (-6 -4399)))) (T -566))
-((-3335 (*1 *1 *1) (-5 *1 (-566))))
-(-13 (-547) (-614 (-1157)) (-828) (-10 -8 (-15 -3335 ($ $)) (-6 -4404) (-6 -4409) (-6 -4405) (-6 -4399)))
-((-2092 (((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769) (-1062)) 119) (((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769)) 121)) (-4117 (((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1175)) 197) (((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1157)) 196) (((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381) (-1062)) 201) (((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381)) 202) (((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381)) 203) (((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381))))) 204) (((-1035) (-317 (-381)) (-1093 (-843 (-381)))) 192) (((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381)) 191) (((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381)) 187) (((-1035) (-769)) 179) (((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381) (-1062)) 186)))
-(((-567) (-10 -7 (-15 -4117 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381) (-1062))) (-15 -4117 ((-1035) (-769))) (-15 -4117 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381))) (-15 -4117 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381))) (-15 -4117 ((-1035) (-317 (-381)) (-1093 (-843 (-381))))) (-15 -4117 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))))) (-15 -4117 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381))) (-15 -4117 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381))) (-15 -4117 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381) (-1062))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769) (-1062))) (-15 -4117 ((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1157))) (-15 -4117 ((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1175))))) (T -567))
-((-4117 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-317 (-381))) (-5 *4 (-1091 (-843 (-381)))) (-5 *5 (-1175)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-4117 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-317 (-381))) (-5 *4 (-1091 (-843 (-381)))) (-5 *5 (-1157)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-2092 (*1 *2 *3 *4) (-12 (-5 *3 (-769)) (-5 *4 (-1062)) (-5 *2 (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035)))) (-5 *1 (-567)))) (-2092 (*1 *2 *3) (-12 (-5 *3 (-769)) (-5 *2 (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035)))) (-5 *1 (-567)))) (-4117 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-1093 (-843 (-381))))) (-5 *5 (-381)) (-5 *6 (-1062)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-4117 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-1093 (-843 (-381))))) (-5 *5 (-381)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-4117 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-1093 (-843 (-381))))) (-5 *5 (-381)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-4117 (*1 *2 *3 *4) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-1093 (-843 (-381))))) (-5 *2 (-1035)) (-5 *1 (-567)))) (-4117 (*1 *2 *3 *4) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-1093 (-843 (-381)))) (-5 *2 (-1035)) (-5 *1 (-567)))) (-4117 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-1093 (-843 (-381)))) (-5 *5 (-381)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-4117 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-1093 (-843 (-381)))) (-5 *5 (-381)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-4117 (*1 *2 *3) (-12 (-5 *3 (-769)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-4117 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-1093 (-843 (-381)))) (-5 *5 (-381)) (-5 *6 (-1062)) (-5 *2 (-1035)) (-5 *1 (-567)))))
-(-10 -7 (-15 -4117 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381) (-1062))) (-15 -4117 ((-1035) (-769))) (-15 -4117 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381))) (-15 -4117 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381))) (-15 -4117 ((-1035) (-317 (-381)) (-1093 (-843 (-381))))) (-15 -4117 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))))) (-15 -4117 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381))) (-15 -4117 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381))) (-15 -4117 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381) (-1062))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769) (-1062))) (-15 -4117 ((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1157))) (-15 -4117 ((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1175))))
-((-2579 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|)) 198)) (-4379 (((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|)) 99)) (-2155 (((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2|) 194)) (-1784 (((-3 |#2| "failed") |#2| |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175))) 203)) (-3190 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1990 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-1175)) 212 (|has| |#3| (-656 |#2|)))))
-(((-568 |#1| |#2| |#3|) (-10 -7 (-15 -4379 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|))) (-15 -2155 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2|)) (-15 -2579 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|))) (-15 -1784 ((-3 |#2| "failed") |#2| |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)))) (IF (|has| |#3| (-656 |#2|)) (-15 -3190 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1990 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-1175))) |%noBranch|)) (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))) (-13 (-432 |#1|) (-27) (-1199)) (-1099)) (T -568))
-((-3190 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-612 *4)) (-5 *6 (-1175)) (-4 *4 (-13 (-432 *7) (-27) (-1199))) (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4)))) (-5 *1 (-568 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099)))) (-1784 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-612 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175))) (-4 *2 (-13 (-432 *5) (-27) (-1199))) (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *1 (-568 *5 *2 *6)) (-4 *6 (-1099)))) (-2579 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3)) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-568 *6 *3 *7)) (-4 *7 (-1099)))) (-2155 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-612 *3)) (-4 *3 (-13 (-432 *5) (-27) (-1199))) (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| -2806 *3) (|:| |coeff| *3))) (-5 *1 (-568 *5 *3 *6)) (-4 *6 (-1099)))) (-4379 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-612 *3)) (-4 *3 (-13 (-432 *5) (-27) (-1199))) (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-568 *5 *3 *6)) (-4 *6 (-1099)))))
-(-10 -7 (-15 -4379 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|))) (-15 -2155 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2|)) (-15 -2579 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|))) (-15 -1784 ((-3 |#2| "failed") |#2| |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)))) (IF (|has| |#3| (-656 |#2|)) (-15 -3190 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1990 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-1175))) |%noBranch|))
-((-3483 (((-2 (|:| -3935 |#2|) (|:| |nconst| |#2|)) |#2| (-1175)) 64)) (-2001 (((-3 |#2| "failed") |#2| (-1175) (-843 |#2|) (-843 |#2|)) 175 (-12 (|has| |#2| (-1138)) (|has| |#1| (-614 (-892 (-566)))) (|has| |#1| (-886 (-566))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)) 154 (-12 (|has| |#2| (-629)) (|has| |#1| (-614 (-892 (-566)))) (|has| |#1| (-886 (-566)))))) (-3808 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)) 156 (-12 (|has| |#2| (-629)) (|has| |#1| (-614 (-892 (-566)))) (|has| |#1| (-886 (-566)))))))
-(((-569 |#1| |#2|) (-10 -7 (-15 -3483 ((-2 (|:| -3935 |#2|) (|:| |nconst| |#2|)) |#2| (-1175))) (IF (|has| |#1| (-614 (-892 (-566)))) (IF (|has| |#1| (-886 (-566))) (PROGN (IF (|has| |#2| (-629)) (PROGN (-15 -3808 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175))) (-15 -2001 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)))) |%noBranch|) (IF (|has| |#2| (-1138)) (-15 -2001 ((-3 |#2| "failed") |#2| (-1175) (-843 |#2|) (-843 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-1038 (-566)) (-454) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -569))
-((-2001 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1175)) (-5 *4 (-843 *2)) (-4 *2 (-1138)) (-4 *2 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-614 (-892 (-566)))) (-4 *5 (-886 (-566))) (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566)))) (-5 *1 (-569 *5 *2)))) (-2001 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-614 (-892 (-566)))) (-4 *5 (-886 (-566))) (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-569 *5 *3)) (-4 *3 (-629)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-3808 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-614 (-892 (-566)))) (-4 *5 (-886 (-566))) (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-569 *5 *3)) (-4 *3 (-629)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-3483 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566)))) (-5 *2 (-2 (|:| -3935 *3) (|:| |nconst| *3))) (-5 *1 (-569 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
-(-10 -7 (-15 -3483 ((-2 (|:| -3935 |#2|) (|:| |nconst| |#2|)) |#2| (-1175))) (IF (|has| |#1| (-614 (-892 (-566)))) (IF (|has| |#1| (-886 (-566))) (PROGN (IF (|has| |#2| (-629)) (PROGN (-15 -3808 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175))) (-15 -2001 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)))) |%noBranch|) (IF (|has| |#2| (-1138)) (-15 -2001 ((-3 |#2| "failed") |#2| (-1175) (-843 |#2|) (-843 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-4079 (((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-644 (-409 |#2|))) 41)) (-4117 (((-587 (-409 |#2|)) (-409 |#2|)) 28)) (-3839 (((-3 (-409 |#2|) "failed") (-409 |#2|)) 17)) (-1417 (((-3 (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-409 |#2|)) 48)))
-(((-570 |#1| |#2|) (-10 -7 (-15 -4117 ((-587 (-409 |#2|)) (-409 |#2|))) (-15 -3839 ((-3 (-409 |#2|) "failed") (-409 |#2|))) (-15 -1417 ((-3 (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-409 |#2|))) (-15 -4079 ((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-644 (-409 |#2|))))) (-13 (-365) (-147) (-1038 (-566))) (-1240 |#1|)) (T -570))
-((-4079 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-644 (-409 *6))) (-5 *3 (-409 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-570 *5 *6)))) (-1417 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-365) (-147) (-1038 (-566)))) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| -2806 (-409 *5)) (|:| |coeff| (-409 *5)))) (-5 *1 (-570 *4 *5)) (-5 *3 (-409 *5)))) (-3839 (*1 *2 *2) (|partial| -12 (-5 *2 (-409 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-13 (-365) (-147) (-1038 (-566)))) (-5 *1 (-570 *3 *4)))) (-4117 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-566)))) (-4 *5 (-1240 *4)) (-5 *2 (-587 (-409 *5))) (-5 *1 (-570 *4 *5)) (-5 *3 (-409 *5)))))
-(-10 -7 (-15 -4117 ((-587 (-409 |#2|)) (-409 |#2|))) (-15 -3839 ((-3 (-409 |#2|) "failed") (-409 |#2|))) (-15 -1417 ((-3 (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-409 |#2|))) (-15 -4079 ((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-644 (-409 |#2|)))))
-((-2922 (((-3 (-566) "failed") |#1|) 14)) (-1776 (((-112) |#1|) 13)) (-1383 (((-566) |#1|) 9)))
-(((-571 |#1|) (-10 -7 (-15 -1383 ((-566) |#1|)) (-15 -1776 ((-112) |#1|)) (-15 -2922 ((-3 (-566) "failed") |#1|))) (-1038 (-566))) (T -571))
-((-2922 (*1 *2 *3) (|partial| -12 (-5 *2 (-566)) (-5 *1 (-571 *3)) (-4 *3 (-1038 *2)))) (-1776 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-571 *3)) (-4 *3 (-1038 (-566))))) (-1383 (*1 *2 *3) (-12 (-5 *2 (-566)) (-5 *1 (-571 *3)) (-4 *3 (-1038 *2)))))
-(-10 -7 (-15 -1383 ((-566) |#1|)) (-15 -1776 ((-112) |#1|)) (-15 -2922 ((-3 (-566) "failed") |#1|)))
-((-1311 (((-3 (-2 (|:| |mainpart| (-409 (-952 |#1|))) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 (-952 |#1|))) (|:| |logand| (-409 (-952 |#1|))))))) "failed") (-409 (-952 |#1|)) (-1175) (-644 (-409 (-952 |#1|)))) 48)) (-3811 (((-587 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-1175)) 28)) (-3425 (((-3 (-409 (-952 |#1|)) "failed") (-409 (-952 |#1|)) (-1175)) 23)) (-2914 (((-3 (-2 (|:| -2806 (-409 (-952 |#1|))) (|:| |coeff| (-409 (-952 |#1|)))) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|))) 35)))
-(((-572 |#1|) (-10 -7 (-15 -3811 ((-587 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -3425 ((-3 (-409 (-952 |#1|)) "failed") (-409 (-952 |#1|)) (-1175))) (-15 -1311 ((-3 (-2 (|:| |mainpart| (-409 (-952 |#1|))) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 (-952 |#1|))) (|:| |logand| (-409 (-952 |#1|))))))) "failed") (-409 (-952 |#1|)) (-1175) (-644 (-409 (-952 |#1|))))) (-15 -2914 ((-3 (-2 (|:| -2806 (-409 (-952 |#1|))) (|:| |coeff| (-409 (-952 |#1|)))) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|))))) (-13 (-558) (-1038 (-566)) (-147))) (T -572))
-((-2914 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)) (-147))) (-5 *2 (-2 (|:| -2806 (-409 (-952 *5))) (|:| |coeff| (-409 (-952 *5))))) (-5 *1 (-572 *5)) (-5 *3 (-409 (-952 *5))))) (-1311 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 (-409 (-952 *6)))) (-5 *3 (-409 (-952 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-147))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-572 *6)))) (-3425 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-409 (-952 *4))) (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)) (-147))) (-5 *1 (-572 *4)))) (-3811 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)) (-147))) (-5 *2 (-587 (-409 (-952 *5)))) (-5 *1 (-572 *5)) (-5 *3 (-409 (-952 *5))))))
-(-10 -7 (-15 -3811 ((-587 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -3425 ((-3 (-409 (-952 |#1|)) "failed") (-409 (-952 |#1|)) (-1175))) (-15 -1311 ((-3 (-2 (|:| |mainpart| (-409 (-952 |#1|))) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 (-952 |#1|))) (|:| |logand| (-409 (-952 |#1|))))))) "failed") (-409 (-952 |#1|)) (-1175) (-644 (-409 (-952 |#1|))))) (-15 -2914 ((-3 (-2 (|:| -2806 (-409 (-952 |#1|))) (|:| |coeff| (-409 (-952 |#1|)))) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)))))
-((-2985 (((-112) $ $) 75)) (-3958 (((-112) $) 48)) (-3463 ((|#1| $) 39)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) 79)) (-3235 (($ $) 140)) (-3102 (($ $) 119)) (-3711 ((|#1| $) 37)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2402 (($ $) NIL)) (-3215 (($ $) 142)) (-3076 (($ $) 115)) (-3259 (($ $) 144)) (-3123 (($ $) 123)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) 94)) (-1756 (((-566) $) 96)) (-1579 (((-3 $ "failed") $) 78)) (-3982 (($ |#1| |#1|) 35)) (-1684 (((-112) $) 44)) (-3035 (($) 105)) (-2741 (((-112) $) 55)) (-3979 (($ $ (-566)) NIL)) (-1578 (((-112) $) 45)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3668 (($ $) 107)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-3723 (($ |#1| |#1|) 29) (($ |#1|) 34) (($ (-409 (-566))) 93)) (-3317 ((|#1| $) 36)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) 81) (($ (-644 $)) NIL)) (-2972 (((-3 $ "failed") $ $) 80)) (-3613 (($ $) 109)) (-3267 (($ $) 148)) (-3133 (($ $) 121)) (-3248 (($ $) 150)) (-3112 (($ $) 125)) (-3223 (($ $) 146)) (-3089 (($ $) 117)) (-2487 (((-112) $ |#1|) 42)) (-2512 (((-862) $) 101) (($ (-566)) 83) (($ $) NIL) (($ (-566)) 83)) (-3795 (((-771)) 103 T CONST)) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) 162)) (-3172 (($ $) 131)) (-1634 (((-112) $ $) NIL)) (-3279 (($ $) 160)) (-3146 (($ $) 127)) (-3323 (($ $) 158)) (-3194 (($ $) 138)) (-1382 (($ $) 156)) (-3205 (($ $) 136)) (-3313 (($ $) 154)) (-3185 (($ $) 133)) (-3291 (($ $) 152)) (-3160 (($ $) 129)) (-2485 (($) 30 T CONST)) (-2495 (($) 10 T CONST)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 49)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 47)) (-3047 (($ $) 53) (($ $ $) 54)) (-3034 (($ $ $) 52)) (** (($ $ (-921)) 71) (($ $ (-771)) NIL) (($ $ $) 111) (($ $ (-409 (-566))) 164)) (* (($ (-921) $) 66) (($ (-771) $) NIL) (($ (-566) $) 65) (($ $ $) 61)))
+((-1878 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1175) (-644 |#2|)) 38)) (-3753 (((-587 |#2|) |#2| (-1175)) 63)) (-1445 (((-3 |#2| "failed") |#2| (-1175)) 156)) (-2875 (((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) (-612 |#2|) (-644 (-612 |#2|))) 159)) (-1936 (((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) |#2|) 41)))
+(((-559 |#1| |#2|) (-10 -7 (-15 -1936 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) |#2|)) (-15 -1878 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1175) (-644 |#2|))) (-15 -1445 ((-3 |#2| "failed") |#2| (-1175))) (-15 -3753 ((-587 |#2|) |#2| (-1175))) (-15 -2875 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) (-612 |#2|) (-644 (-612 |#2|))))) (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -559))
+((-2875 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1175)) (-5 *6 (-644 (-612 *3))) (-5 *5 (-612 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *7))) (-4 *7 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-2 (|:| -2883 *3) (|:| |coeff| *3))) (-5 *1 (-559 *7 *3)))) (-3753 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-559 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-1445 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-559 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-1878 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-559 *6 *3)))) (-1936 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-2 (|:| -2883 *3) (|:| |coeff| *3))) (-5 *1 (-559 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
+(-10 -7 (-15 -1936 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) |#2|)) (-15 -1878 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1175) (-644 |#2|))) (-15 -1445 ((-3 |#2| "failed") |#2| (-1175))) (-15 -3753 ((-587 |#2|) |#2| (-1175))) (-15 -2875 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1175) (-612 |#2|) (-644 (-612 |#2|)))))
+((-3271 (((-420 |#1|) |#1|) 19)) (-2473 (((-420 |#1|) |#1|) 34)) (-3427 (((-3 |#1| "failed") |#1|) 51)) (-1514 (((-420 |#1|) |#1|) 64)))
+(((-560 |#1|) (-10 -7 (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3271 ((-420 |#1|) |#1|)) (-15 -1514 ((-420 |#1|) |#1|)) (-15 -3427 ((-3 |#1| "failed") |#1|))) (-547)) (T -560))
+((-3427 (*1 *2 *2) (|partial| -12 (-5 *1 (-560 *2)) (-4 *2 (-547)))) (-1514 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-560 *3)) (-4 *3 (-547)))) (-3271 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-560 *3)) (-4 *3 (-547)))) (-2473 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-560 *3)) (-4 *3 (-547)))))
+(-10 -7 (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3271 ((-420 |#1|) |#1|)) (-15 -1514 ((-420 |#1|) |#1|)) (-15 -3427 ((-3 |#1| "failed") |#1|)))
+((-1989 (($) 9)) (-2617 (((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 35)) (-4314 (((-644 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $) 32)) (-2903 (($ (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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)) (-1905 (($ (-644 (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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)) (-2849 (((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 39)) (-2684 (((-644 (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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)) (-1516 (((-1269)) 12)))
+(((-561) (-10 -8 (-15 -1989 ($)) (-15 -1516 ((-1269))) (-15 -4314 ((-644 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -1905 ($ (-644 (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 -2903 ($ (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 -2617 ((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2684 ((-644 (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 -2849 ((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -561))
+((-2849 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 (-561)))) (-2684 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 (-561)))) (-2617 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 (-561)))) (-2903 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 (-561)))) (-1905 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 (-561)))) (-4314 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-5 *1 (-561)))) (-1516 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-561)))) (-1989 (*1 *1) (-5 *1 (-561))))
+(-10 -8 (-15 -1989 ($)) (-15 -1516 ((-1269))) (-15 -4314 ((-644 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -1905 ($ (-644 (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 -2903 ($ (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 -2617 ((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2684 ((-644 (-2 (|:| -2050 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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 -2849 ((-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| (-1155 (-225))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| -2498 (-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| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
+((-2438 (((-1171 (-409 (-1171 |#2|))) |#2| (-612 |#2|) (-612 |#2|) (-1171 |#2|)) 35)) (-2691 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|))) 105) (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) |#2| (-1171 |#2|)) 115)) (-3724 (((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|))) 85) (((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|)) 55)) (-1694 (((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| (-612 |#2|) |#2| (-409 (-1171 |#2|))) 92) (((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| |#2| (-1171 |#2|)) 114)) (-2592 (((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) (-612 |#2|) |#2| (-409 (-1171 |#2|))) 110) (((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) |#2| (-1171 |#2|)) 116)) (-2747 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1575 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|))) 135 (|has| |#3| (-656 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1575 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|)) 134 (|has| |#3| (-656 |#2|)))) (-2597 ((|#2| (-1171 (-409 (-1171 |#2|))) (-612 |#2|) |#2|) 53)) (-1567 (((-1171 (-409 (-1171 |#2|))) (-1171 |#2|) (-612 |#2|)) 34)))
+(((-562 |#1| |#2| |#3|) (-10 -7 (-15 -3724 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|))) (-15 -3724 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -1694 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| |#2| (-1171 |#2|))) (-15 -1694 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -2691 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) |#2| (-1171 |#2|))) (-15 -2691 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -2592 ((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) |#2| (-1171 |#2|))) (-15 -2592 ((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -2438 ((-1171 (-409 (-1171 |#2|))) |#2| (-612 |#2|) (-612 |#2|) (-1171 |#2|))) (-15 -2597 (|#2| (-1171 (-409 (-1171 |#2|))) (-612 |#2|) |#2|)) (-15 -1567 ((-1171 (-409 (-1171 |#2|))) (-1171 |#2|) (-612 |#2|))) (IF (|has| |#3| (-656 |#2|)) (PROGN (-15 -2747 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1575 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|))) (-15 -2747 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1575 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|))))) |%noBranch|)) (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))) (-13 (-432 |#1|) (-27) (-1199)) (-1099)) (T -562))
+((-2747 (*1 *2 *3 *4 *5 *5 *5 *4 *6) (-12 (-5 *5 (-612 *4)) (-5 *6 (-409 (-1171 *4))) (-4 *4 (-13 (-432 *7) (-27) (-1199))) (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4)))) (-5 *1 (-562 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099)))) (-2747 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *5 (-612 *4)) (-5 *6 (-1171 *4)) (-4 *4 (-13 (-432 *7) (-27) (-1199))) (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4)))) (-5 *1 (-562 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099)))) (-1567 (*1 *2 *3 *4) (-12 (-5 *4 (-612 *6)) (-4 *6 (-13 (-432 *5) (-27) (-1199))) (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-1171 (-409 (-1171 *6)))) (-5 *1 (-562 *5 *6 *7)) (-5 *3 (-1171 *6)) (-4 *7 (-1099)))) (-2597 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1171 (-409 (-1171 *2)))) (-5 *4 (-612 *2)) (-4 *2 (-13 (-432 *5) (-27) (-1199))) (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *1 (-562 *5 *2 *6)) (-4 *6 (-1099)))) (-2438 (*1 *2 *3 *4 *4 *5) (-12 (-5 *4 (-612 *3)) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-1171 (-409 (-1171 *3)))) (-5 *1 (-562 *6 *3 *7)) (-5 *5 (-1171 *3)) (-4 *7 (-1099)))) (-2592 (*1 *2 *2 *2 *3 *3 *4 *3 *2 *5) (|partial| -12 (-5 *3 (-612 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175))) (-5 *5 (-409 (-1171 *2))) (-4 *2 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *1 (-562 *6 *2 *7)) (-4 *7 (-1099)))) (-2592 (*1 *2 *2 *2 *3 *3 *4 *2 *5) (|partial| -12 (-5 *3 (-612 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175))) (-5 *5 (-1171 *2)) (-4 *2 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *1 (-562 *6 *2 *7)) (-4 *7 (-1099)))) (-2691 (*1 *2 *3 *4 *4 *5 *4 *3 *6) (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3)) (-5 *6 (-409 (-1171 *3))) (-4 *3 (-13 (-432 *7) (-27) (-1199))) (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-562 *7 *3 *8)) (-4 *8 (-1099)))) (-2691 (*1 *2 *3 *4 *4 *5 *3 *6) (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3)) (-5 *6 (-1171 *3)) (-4 *3 (-13 (-432 *7) (-27) (-1199))) (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-562 *7 *3 *8)) (-4 *8 (-1099)))) (-1694 (*1 *2 *3 *4 *4 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-409 (-1171 *3))) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| -2883 *3) (|:| |coeff| *3))) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))) (-1694 (*1 *2 *3 *4 *4 *3 *3 *5) (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-1171 *3)) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| -2883 *3) (|:| |coeff| *3))) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))) (-3724 (*1 *2 *3 *4 *4 *4 *3 *5) (-12 (-5 *4 (-612 *3)) (-5 *5 (-409 (-1171 *3))) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))) (-3724 (*1 *2 *3 *4 *4 *3 *5) (-12 (-5 *4 (-612 *3)) (-5 *5 (-1171 *3)) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))))
+(-10 -7 (-15 -3724 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|))) (-15 -3724 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -1694 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| |#2| (-1171 |#2|))) (-15 -1694 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2| (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -2691 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) |#2| (-1171 |#2|))) (-15 -2691 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -2592 ((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) |#2| (-1171 |#2|))) (-15 -2592 ((-3 |#2| "failed") |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)) (-612 |#2|) |#2| (-409 (-1171 |#2|)))) (-15 -2438 ((-1171 (-409 (-1171 |#2|))) |#2| (-612 |#2|) (-612 |#2|) (-1171 |#2|))) (-15 -2597 (|#2| (-1171 (-409 (-1171 |#2|))) (-612 |#2|) |#2|)) (-15 -1567 ((-1171 (-409 (-1171 |#2|))) (-1171 |#2|) (-612 |#2|))) (IF (|has| |#3| (-656 |#2|)) (PROGN (-15 -2747 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1575 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) |#2| (-1171 |#2|))) (-15 -2747 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1575 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-612 |#2|) |#2| (-409 (-1171 |#2|))))) |%noBranch|))
+((-2057 (((-566) (-566) (-771)) 90)) (-1852 (((-566) (-566)) 88)) (-4368 (((-566) (-566)) 86)) (-1776 (((-566) (-566)) 92)) (-1655 (((-566) (-566) (-566)) 70)) (-2713 (((-566) (-566) (-566)) 67)) (-1958 (((-409 (-566)) (-566)) 30)) (-2663 (((-566) (-566)) 36)) (-1467 (((-566) (-566)) 79)) (-3546 (((-566) (-566)) 51)) (-2142 (((-644 (-566)) (-566)) 85)) (-4139 (((-566) (-566) (-566) (-566) (-566)) 63)) (-3816 (((-409 (-566)) (-566)) 60)))
+(((-563) (-10 -7 (-15 -3816 ((-409 (-566)) (-566))) (-15 -4139 ((-566) (-566) (-566) (-566) (-566))) (-15 -2142 ((-644 (-566)) (-566))) (-15 -3546 ((-566) (-566))) (-15 -1467 ((-566) (-566))) (-15 -2663 ((-566) (-566))) (-15 -1958 ((-409 (-566)) (-566))) (-15 -2713 ((-566) (-566) (-566))) (-15 -1655 ((-566) (-566) (-566))) (-15 -1776 ((-566) (-566))) (-15 -4368 ((-566) (-566))) (-15 -1852 ((-566) (-566))) (-15 -2057 ((-566) (-566) (-771))))) (T -563))
+((-2057 (*1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-771)) (-5 *1 (-563)))) (-1852 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-4368 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-1776 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-1655 (*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-2713 (*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-1958 (*1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-563)) (-5 *3 (-566)))) (-2663 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-1467 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-3546 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-2142 (*1 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-563)) (-5 *3 (-566)))) (-4139 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))) (-3816 (*1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-563)) (-5 *3 (-566)))))
+(-10 -7 (-15 -3816 ((-409 (-566)) (-566))) (-15 -4139 ((-566) (-566) (-566) (-566) (-566))) (-15 -2142 ((-644 (-566)) (-566))) (-15 -3546 ((-566) (-566))) (-15 -1467 ((-566) (-566))) (-15 -2663 ((-566) (-566))) (-15 -1958 ((-409 (-566)) (-566))) (-15 -2713 ((-566) (-566) (-566))) (-15 -1655 ((-566) (-566) (-566))) (-15 -1776 ((-566) (-566))) (-15 -4368 ((-566) (-566))) (-15 -1852 ((-566) (-566))) (-15 -2057 ((-566) (-566) (-771))))
+((-3084 (((-2 (|:| |answer| |#4|) (|:| -1777 |#4|)) |#4| (-1 |#2| |#2|)) 56)))
+(((-564 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3084 ((-2 (|:| |answer| |#4|) (|:| -1777 |#4|)) |#4| (-1 |#2| |#2|)))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -564))
+((-3084 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-4 *7 (-1240 (-409 *6))) (-5 *2 (-2 (|:| |answer| *3) (|:| -1777 *3))) (-5 *1 (-564 *5 *6 *7 *3)) (-4 *3 (-344 *5 *6 *7)))))
+(-10 -7 (-15 -3084 ((-2 (|:| |answer| |#4|) (|:| -1777 |#4|)) |#4| (-1 |#2| |#2|))))
+((-3084 (((-2 (|:| |answer| (-409 |#2|)) (|:| -1777 (-409 |#2|)) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|)) 18)))
+(((-565 |#1| |#2|) (-10 -7 (-15 -3084 ((-2 (|:| |answer| (-409 |#2|)) (|:| -1777 (-409 |#2|)) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|)))) (-365) (-1240 |#1|)) (T -565))
+((-3084 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| |answer| (-409 *6)) (|:| -1777 (-409 *6)) (|:| |specpart| (-409 *6)) (|:| |polypart| *6))) (-5 *1 (-565 *5 *6)) (-5 *3 (-409 *6)))))
+(-10 -7 (-15 -3084 ((-2 (|:| |answer| (-409 |#2|)) (|:| -1777 (-409 |#2|)) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 30)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 97)) (-1968 (($ $) 98)) (-2644 (((-112) $) NIL)) (-4332 (($ $ $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4172 (($ $ $ $) 52)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL)) (-3129 (($ $ $) 92)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL)) (-1867 (((-566) $) NIL)) (-2949 (($ $ $) 54)) (-2210 (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 77) (((-689 (-566)) (-689 $)) 73)) (-2928 (((-3 $ "failed") $) 94)) (-4045 (((-3 (-409 (-566)) "failed") $) NIL)) (-1356 (((-112) $) NIL)) (-2269 (((-409 (-566)) $) NIL)) (-1618 (($) 79) (($ $) 80)) (-2960 (($ $ $) 91)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-4012 (($ $ $ $) NIL)) (-2385 (($ $ $) 70)) (-1533 (((-112) $) NIL)) (-3477 (($ $ $) NIL)) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL)) (-3466 (((-112) $) 34)) (-2469 (((-112) $) 86)) (-2133 (((-3 $ "failed") $) NIL)) (-2917 (((-112) $) 43)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2513 (($ $ $ $) 55)) (-1945 (($ $ $) 88)) (-2709 (($ $ $) 87)) (-2428 (($ $) NIL)) (-3945 (($ $) 49)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) 69)) (-1885 (($ $ $) NIL)) (-3625 (($) NIL T CONST)) (-2637 (($ $) 38)) (-4056 (((-1119) $) 42)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 129)) (-2235 (($ $ $) 95) (($ (-644 $)) NIL)) (-2711 (($ $) NIL)) (-2473 (((-420 $) $) 115)) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL)) (-2997 (((-3 $ "failed") $ $) 113)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1630 (((-112) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 90)) (-2578 (($ $ (-771)) NIL) (($ $) NIL)) (-4090 (($ $) 40)) (-3940 (($ $) 36)) (-3204 (((-566) $) 48) (((-538) $) 64) (((-892 (-566)) $) NIL) (((-381) $) 58) (((-225) $) 61) (((-1157) $) 66)) (-3780 (((-862) $) 46) (($ (-566)) 47) (($ $) NIL) (($ (-566)) 47)) (-3996 (((-771)) NIL T CONST)) (-2078 (((-112) $ $) NIL)) (-2378 (($ $ $) NIL)) (-3801 (((-112) $ $) NIL)) (-3819 (($) 35)) (-2278 (((-112) $ $) NIL)) (-1314 (($ $ $ $) 51)) (-3333 (($ $) 78)) (-2493 (($) 6 T CONST)) (-4333 (($) 31 T CONST)) (-2852 (((-1157) $) 26) (((-1157) $ (-112)) 27) (((-1269) (-822) $) 28) (((-1269) (-822) $ (-112)) 29)) (-2876 (($ $ (-771)) NIL) (($ $) NIL)) (-3010 (((-112) $ $) 50)) (-2984 (((-112) $ $) 81)) (-2950 (((-112) $ $) 33)) (-2999 (((-112) $ $) 83)) (-2972 (((-112) $ $) 10)) (-3051 (($ $) 16) (($ $ $) 39)) (-3040 (($ $ $) 37)) (** (($ $ (-921)) NIL) (($ $ (-771)) 85)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 84) (($ $ $) 53)))
+(((-566) (-13 (-547) (-614 (-1157)) (-828) (-10 -8 (-15 -1618 ($ $)) (-6 -4401) (-6 -4406) (-6 -4402) (-6 -4396)))) (T -566))
+((-1618 (*1 *1 *1) (-5 *1 (-566))))
+(-13 (-547) (-614 (-1157)) (-828) (-10 -8 (-15 -1618 ($ $)) (-6 -4401) (-6 -4406) (-6 -4402) (-6 -4396)))
+((-3245 (((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769) (-1062)) 119) (((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769)) 121)) (-3921 (((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1175)) 197) (((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1157)) 196) (((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381) (-1062)) 201) (((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381)) 202) (((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381)) 203) (((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381))))) 204) (((-1035) (-317 (-381)) (-1093 (-843 (-381)))) 192) (((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381)) 191) (((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381)) 187) (((-1035) (-769)) 179) (((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381) (-1062)) 186)))
+(((-567) (-10 -7 (-15 -3921 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381) (-1062))) (-15 -3921 ((-1035) (-769))) (-15 -3921 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381))) (-15 -3921 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381))) (-15 -3921 ((-1035) (-317 (-381)) (-1093 (-843 (-381))))) (-15 -3921 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))))) (-15 -3921 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381))) (-15 -3921 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381))) (-15 -3921 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381) (-1062))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769) (-1062))) (-15 -3921 ((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1157))) (-15 -3921 ((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1175))))) (T -567))
+((-3921 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-317 (-381))) (-5 *4 (-1091 (-843 (-381)))) (-5 *5 (-1175)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-3921 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-317 (-381))) (-5 *4 (-1091 (-843 (-381)))) (-5 *5 (-1157)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-3245 (*1 *2 *3 *4) (-12 (-5 *3 (-769)) (-5 *4 (-1062)) (-5 *2 (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035)))) (-5 *1 (-567)))) (-3245 (*1 *2 *3) (-12 (-5 *3 (-769)) (-5 *2 (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035)))) (-5 *1 (-567)))) (-3921 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-1093 (-843 (-381))))) (-5 *5 (-381)) (-5 *6 (-1062)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-3921 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-1093 (-843 (-381))))) (-5 *5 (-381)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-3921 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-1093 (-843 (-381))))) (-5 *5 (-381)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-3921 (*1 *2 *3 *4) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-1093 (-843 (-381))))) (-5 *2 (-1035)) (-5 *1 (-567)))) (-3921 (*1 *2 *3 *4) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-1093 (-843 (-381)))) (-5 *2 (-1035)) (-5 *1 (-567)))) (-3921 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-1093 (-843 (-381)))) (-5 *5 (-381)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-3921 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-1093 (-843 (-381)))) (-5 *5 (-381)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-3921 (*1 *2 *3) (-12 (-5 *3 (-769)) (-5 *2 (-1035)) (-5 *1 (-567)))) (-3921 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-1093 (-843 (-381)))) (-5 *5 (-381)) (-5 *6 (-1062)) (-5 *2 (-1035)) (-5 *1 (-567)))))
+(-10 -7 (-15 -3921 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381) (-1062))) (-15 -3921 ((-1035) (-769))) (-15 -3921 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381) (-381))) (-15 -3921 ((-1035) (-317 (-381)) (-1093 (-843 (-381))) (-381))) (-15 -3921 ((-1035) (-317 (-381)) (-1093 (-843 (-381))))) (-15 -3921 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))))) (-15 -3921 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381))) (-15 -3921 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381))) (-15 -3921 ((-1035) (-317 (-381)) (-644 (-1093 (-843 (-381)))) (-381) (-381) (-1062))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))) (-769) (-1062))) (-15 -3921 ((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1157))) (-15 -3921 ((-3 (-1035) "failed") (-317 (-381)) (-1091 (-843 (-381))) (-1175))))
+((-4308 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|)) 198)) (-1579 (((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|)) 99)) (-2672 (((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2|) 194)) (-3177 (((-3 |#2| "failed") |#2| |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175))) 203)) (-3133 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1575 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-1175)) 212 (|has| |#3| (-656 |#2|)))))
+(((-568 |#1| |#2| |#3|) (-10 -7 (-15 -1579 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|))) (-15 -2672 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2|)) (-15 -4308 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|))) (-15 -3177 ((-3 |#2| "failed") |#2| |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)))) (IF (|has| |#3| (-656 |#2|)) (-15 -3133 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1575 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-1175))) |%noBranch|)) (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))) (-13 (-432 |#1|) (-27) (-1199)) (-1099)) (T -568))
+((-3133 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *5 (-612 *4)) (-5 *6 (-1175)) (-4 *4 (-13 (-432 *7) (-27) (-1199))) (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4)))) (-5 *1 (-568 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099)))) (-3177 (*1 *2 *2 *2 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-612 *2)) (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175))) (-4 *2 (-13 (-432 *5) (-27) (-1199))) (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *1 (-568 *5 *2 *6)) (-4 *6 (-1099)))) (-4308 (*1 *2 *3 *4 *4 *5) (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3)) (-4 *3 (-13 (-432 *6) (-27) (-1199))) (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-568 *6 *3 *7)) (-4 *7 (-1099)))) (-2672 (*1 *2 *3 *4 *4 *3) (|partial| -12 (-5 *4 (-612 *3)) (-4 *3 (-13 (-432 *5) (-27) (-1199))) (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-2 (|:| -2883 *3) (|:| |coeff| *3))) (-5 *1 (-568 *5 *3 *6)) (-4 *6 (-1099)))) (-1579 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-612 *3)) (-4 *3 (-13 (-432 *5) (-27) (-1199))) (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566)))) (-5 *2 (-587 *3)) (-5 *1 (-568 *5 *3 *6)) (-4 *6 (-1099)))))
+(-10 -7 (-15 -1579 ((-587 |#2|) |#2| (-612 |#2|) (-612 |#2|))) (-15 -2672 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-612 |#2|) (-612 |#2|) |#2|)) (-15 -4308 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-612 |#2|) (-612 |#2|) (-644 |#2|))) (-15 -3177 ((-3 |#2| "failed") |#2| |#2| |#2| (-612 |#2|) (-612 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1175)))) (IF (|has| |#3| (-656 |#2|)) (-15 -3133 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1575 (-644 |#2|))) |#3| |#2| (-612 |#2|) (-612 |#2|) (-1175))) |%noBranch|))
+((-4036 (((-2 (|:| -2788 |#2|) (|:| |nconst| |#2|)) |#2| (-1175)) 64)) (-1698 (((-3 |#2| "failed") |#2| (-1175) (-843 |#2|) (-843 |#2|)) 175 (-12 (|has| |#2| (-1138)) (|has| |#1| (-614 (-892 (-566)))) (|has| |#1| (-886 (-566))))) (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)) 154 (-12 (|has| |#2| (-629)) (|has| |#1| (-614 (-892 (-566)))) (|has| |#1| (-886 (-566)))))) (-4119 (((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)) 156 (-12 (|has| |#2| (-629)) (|has| |#1| (-614 (-892 (-566)))) (|has| |#1| (-886 (-566)))))))
+(((-569 |#1| |#2|) (-10 -7 (-15 -4036 ((-2 (|:| -2788 |#2|) (|:| |nconst| |#2|)) |#2| (-1175))) (IF (|has| |#1| (-614 (-892 (-566)))) (IF (|has| |#1| (-886 (-566))) (PROGN (IF (|has| |#2| (-629)) (PROGN (-15 -4119 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175))) (-15 -1698 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)))) |%noBranch|) (IF (|has| |#2| (-1138)) (-15 -1698 ((-3 |#2| "failed") |#2| (-1175) (-843 |#2|) (-843 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|)) (-13 (-1038 (-566)) (-454) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -569))
+((-1698 (*1 *2 *2 *3 *4 *4) (|partial| -12 (-5 *3 (-1175)) (-5 *4 (-843 *2)) (-4 *2 (-1138)) (-4 *2 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-614 (-892 (-566)))) (-4 *5 (-886 (-566))) (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566)))) (-5 *1 (-569 *5 *2)))) (-1698 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-614 (-892 (-566)))) (-4 *5 (-886 (-566))) (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-569 *5 *3)) (-4 *3 (-629)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-4119 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-614 (-892 (-566)))) (-4 *5 (-886 (-566))) (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566)))) (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3))) (-5 *1 (-569 *5 *3)) (-4 *3 (-629)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-4036 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566)))) (-5 *2 (-2 (|:| -2788 *3) (|:| |nconst| *3))) (-5 *1 (-569 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
+(-10 -7 (-15 -4036 ((-2 (|:| -2788 |#2|) (|:| |nconst| |#2|)) |#2| (-1175))) (IF (|has| |#1| (-614 (-892 (-566)))) (IF (|has| |#1| (-886 (-566))) (PROGN (IF (|has| |#2| (-629)) (PROGN (-15 -4119 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175))) (-15 -1698 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)))) |%noBranch|) (IF (|has| |#2| (-1138)) (-15 -1698 ((-3 |#2| "failed") |#2| (-1175) (-843 |#2|) (-843 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-1670 (((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-644 (-409 |#2|))) 41)) (-3921 (((-587 (-409 |#2|)) (-409 |#2|)) 28)) (-3195 (((-3 (-409 |#2|) "failed") (-409 |#2|)) 17)) (-3737 (((-3 (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-409 |#2|)) 48)))
+(((-570 |#1| |#2|) (-10 -7 (-15 -3921 ((-587 (-409 |#2|)) (-409 |#2|))) (-15 -3195 ((-3 (-409 |#2|) "failed") (-409 |#2|))) (-15 -3737 ((-3 (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-409 |#2|))) (-15 -1670 ((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-644 (-409 |#2|))))) (-13 (-365) (-147) (-1038 (-566))) (-1240 |#1|)) (T -570))
+((-1670 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-644 (-409 *6))) (-5 *3 (-409 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-570 *5 *6)))) (-3737 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-365) (-147) (-1038 (-566)))) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| -2883 (-409 *5)) (|:| |coeff| (-409 *5)))) (-5 *1 (-570 *4 *5)) (-5 *3 (-409 *5)))) (-3195 (*1 *2 *2) (|partial| -12 (-5 *2 (-409 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-13 (-365) (-147) (-1038 (-566)))) (-5 *1 (-570 *3 *4)))) (-3921 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-566)))) (-4 *5 (-1240 *4)) (-5 *2 (-587 (-409 *5))) (-5 *1 (-570 *4 *5)) (-5 *3 (-409 *5)))))
+(-10 -7 (-15 -3921 ((-587 (-409 |#2|)) (-409 |#2|))) (-15 -3195 ((-3 (-409 |#2|) "failed") (-409 |#2|))) (-15 -3737 ((-3 (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-409 |#2|))) (-15 -1670 ((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-644 (-409 |#2|)))))
+((-1596 (((-3 (-566) "failed") |#1|) 14)) (-3103 (((-112) |#1|) 13)) (-1435 (((-566) |#1|) 9)))
+(((-571 |#1|) (-10 -7 (-15 -1435 ((-566) |#1|)) (-15 -3103 ((-112) |#1|)) (-15 -1596 ((-3 (-566) "failed") |#1|))) (-1038 (-566))) (T -571))
+((-1596 (*1 *2 *3) (|partial| -12 (-5 *2 (-566)) (-5 *1 (-571 *3)) (-4 *3 (-1038 *2)))) (-3103 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-571 *3)) (-4 *3 (-1038 (-566))))) (-1435 (*1 *2 *3) (-12 (-5 *2 (-566)) (-5 *1 (-571 *3)) (-4 *3 (-1038 *2)))))
+(-10 -7 (-15 -1435 ((-566) |#1|)) (-15 -3103 ((-112) |#1|)) (-15 -1596 ((-3 (-566) "failed") |#1|)))
+((-1626 (((-3 (-2 (|:| |mainpart| (-409 (-952 |#1|))) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 (-952 |#1|))) (|:| |logand| (-409 (-952 |#1|))))))) "failed") (-409 (-952 |#1|)) (-1175) (-644 (-409 (-952 |#1|)))) 48)) (-4154 (((-587 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-1175)) 28)) (-1557 (((-3 (-409 (-952 |#1|)) "failed") (-409 (-952 |#1|)) (-1175)) 23)) (-1515 (((-3 (-2 (|:| -2883 (-409 (-952 |#1|))) (|:| |coeff| (-409 (-952 |#1|)))) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|))) 35)))
+(((-572 |#1|) (-10 -7 (-15 -4154 ((-587 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -1557 ((-3 (-409 (-952 |#1|)) "failed") (-409 (-952 |#1|)) (-1175))) (-15 -1626 ((-3 (-2 (|:| |mainpart| (-409 (-952 |#1|))) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 (-952 |#1|))) (|:| |logand| (-409 (-952 |#1|))))))) "failed") (-409 (-952 |#1|)) (-1175) (-644 (-409 (-952 |#1|))))) (-15 -1515 ((-3 (-2 (|:| -2883 (-409 (-952 |#1|))) (|:| |coeff| (-409 (-952 |#1|)))) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|))))) (-13 (-558) (-1038 (-566)) (-147))) (T -572))
+((-1515 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)) (-147))) (-5 *2 (-2 (|:| -2883 (-409 (-952 *5))) (|:| |coeff| (-409 (-952 *5))))) (-5 *1 (-572 *5)) (-5 *3 (-409 (-952 *5))))) (-1626 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 (-409 (-952 *6)))) (-5 *3 (-409 (-952 *6))) (-4 *6 (-13 (-558) (-1038 (-566)) (-147))) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-572 *6)))) (-1557 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-409 (-952 *4))) (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)) (-147))) (-5 *1 (-572 *4)))) (-4154 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)) (-147))) (-5 *2 (-587 (-409 (-952 *5)))) (-5 *1 (-572 *5)) (-5 *3 (-409 (-952 *5))))))
+(-10 -7 (-15 -4154 ((-587 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -1557 ((-3 (-409 (-952 |#1|)) "failed") (-409 (-952 |#1|)) (-1175))) (-15 -1626 ((-3 (-2 (|:| |mainpart| (-409 (-952 |#1|))) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 (-952 |#1|))) (|:| |logand| (-409 (-952 |#1|))))))) "failed") (-409 (-952 |#1|)) (-1175) (-644 (-409 (-952 |#1|))))) (-15 -1515 ((-3 (-2 (|:| -2883 (-409 (-952 |#1|))) (|:| |coeff| (-409 (-952 |#1|)))) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)))))
+((-3009 (((-112) $ $) 75)) (-3015 (((-112) $) 48)) (-3496 ((|#1| $) 39)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) 79)) (-2865 (($ $) 140)) (-3939 (($ $) 119)) (-4385 ((|#1| $) 37)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2484 (($ $) NIL)) (-2843 (($ $) 142)) (-3915 (($ $) 115)) (-2888 (($ $) 144)) (-3964 (($ $) 123)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) 94)) (-1867 (((-566) $) 96)) (-2928 (((-3 $ "failed") $) 78)) (-2019 (($ |#1| |#1|) 35)) (-1533 (((-112) $) 44)) (-3120 (($) 105)) (-3466 (((-112) $) 55)) (-1986 (($ $ (-566)) NIL)) (-2917 (((-112) $) 45)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-3671 (($ $) 107)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-1427 (($ |#1| |#1|) 29) (($ |#1|) 34) (($ (-409 (-566))) 93)) (-3013 ((|#1| $) 36)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) 81) (($ (-644 $)) NIL)) (-2997 (((-3 $ "failed") $ $) 80)) (-4337 (($ $) 109)) (-2897 (($ $) 148)) (-3974 (($ $) 121)) (-2877 (($ $) 150)) (-3951 (($ $) 125)) (-2853 (($ $) 146)) (-3927 (($ $) 117)) (-2783 (((-112) $ |#1|) 42)) (-3780 (((-862) $) 101) (($ (-566)) 83) (($ $) NIL) (($ (-566)) 83)) (-3996 (((-771)) 103 T CONST)) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) 162)) (-4009 (($ $) 131)) (-2278 (((-112) $ $) NIL)) (-2907 (($ $) 160)) (-3986 (($ $) 127)) (-2954 (($ $) 158)) (-4033 (($ $) 138)) (-3181 (($ $) 156)) (-2834 (($ $) 136)) (-2943 (($ $) 154)) (-4021 (($ $) 133)) (-2920 (($ $) 152)) (-3997 (($ $) 129)) (-2493 (($) 30 T CONST)) (-4333 (($) 10 T CONST)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 49)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 47)) (-3051 (($ $) 53) (($ $ $) 54)) (-3040 (($ $ $) 52)) (** (($ $ (-921)) 71) (($ $ (-771)) NIL) (($ $ $) 111) (($ $ (-409 (-566))) 164)) (* (($ (-921) $) 66) (($ (-771) $) NIL) (($ (-566) $) 65) (($ $ $) 61)))
(((-573 |#1|) (-556 |#1|) (-13 (-406) (-1199))) (T -573))
NIL
(-556 |#1|)
-((-1348 (((-3 (-644 (-1171 (-566))) "failed") (-644 (-1171 (-566))) (-1171 (-566))) 27)))
-(((-574) (-10 -7 (-15 -1348 ((-3 (-644 (-1171 (-566))) "failed") (-644 (-1171 (-566))) (-1171 (-566)))))) (T -574))
-((-1348 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 (-566)))) (-5 *3 (-1171 (-566))) (-5 *1 (-574)))))
-(-10 -7 (-15 -1348 ((-3 (-644 (-1171 (-566))) "failed") (-644 (-1171 (-566))) (-1171 (-566)))))
-((-3676 (((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-1175)) 19)) (-1509 (((-644 (-612 |#2|)) (-644 |#2|) (-1175)) 23)) (-1781 (((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-644 (-612 |#2|))) 11)) (-2659 ((|#2| |#2| (-1175)) 59 (|has| |#1| (-558)))) (-1952 ((|#2| |#2| (-1175)) 87 (-12 (|has| |#2| (-285)) (|has| |#1| (-454))))) (-4111 (((-612 |#2|) (-612 |#2|) (-644 (-612 |#2|)) (-1175)) 25)) (-2098 (((-612 |#2|) (-644 (-612 |#2|))) 24)) (-1704 (((-587 |#2|) |#2| (-1175) (-1 (-587 |#2|) |#2| (-1175)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175))) 115 (-12 (|has| |#2| (-285)) (|has| |#2| (-629)) (|has| |#2| (-1038 (-1175))) (|has| |#1| (-614 (-892 (-566)))) (|has| |#1| (-454)) (|has| |#1| (-886 (-566)))))))
-(((-575 |#1| |#2|) (-10 -7 (-15 -3676 ((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-1175))) (-15 -2098 ((-612 |#2|) (-644 (-612 |#2|)))) (-15 -4111 ((-612 |#2|) (-612 |#2|) (-644 (-612 |#2|)) (-1175))) (-15 -1781 ((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-644 (-612 |#2|)))) (-15 -1509 ((-644 (-612 |#2|)) (-644 |#2|) (-1175))) (IF (|has| |#1| (-558)) (-15 -2659 (|#2| |#2| (-1175))) |%noBranch|) (IF (|has| |#1| (-454)) (IF (|has| |#2| (-285)) (PROGN (-15 -1952 (|#2| |#2| (-1175))) (IF (|has| |#1| (-614 (-892 (-566)))) (IF (|has| |#1| (-886 (-566))) (IF (|has| |#2| (-629)) (IF (|has| |#2| (-1038 (-1175))) (-15 -1704 ((-587 |#2|) |#2| (-1175) (-1 (-587 |#2|) |#2| (-1175)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-1099) (-432 |#1|)) (T -575))
-((-1704 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-587 *3) *3 (-1175))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1175))) (-4 *3 (-285)) (-4 *3 (-629)) (-4 *3 (-1038 *4)) (-4 *3 (-432 *7)) (-5 *4 (-1175)) (-4 *7 (-614 (-892 (-566)))) (-4 *7 (-454)) (-4 *7 (-886 (-566))) (-4 *7 (-1099)) (-5 *2 (-587 *3)) (-5 *1 (-575 *7 *3)))) (-1952 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-454)) (-4 *4 (-1099)) (-5 *1 (-575 *4 *2)) (-4 *2 (-285)) (-4 *2 (-432 *4)))) (-2659 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-4 *4 (-1099)) (-5 *1 (-575 *4 *2)) (-4 *2 (-432 *4)))) (-1509 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-1175)) (-4 *6 (-432 *5)) (-4 *5 (-1099)) (-5 *2 (-644 (-612 *6))) (-5 *1 (-575 *5 *6)))) (-1781 (*1 *2 *2 *2) (-12 (-5 *2 (-644 (-612 *4))) (-4 *4 (-432 *3)) (-4 *3 (-1099)) (-5 *1 (-575 *3 *4)))) (-4111 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-644 (-612 *6))) (-5 *4 (-1175)) (-5 *2 (-612 *6)) (-4 *6 (-432 *5)) (-4 *5 (-1099)) (-5 *1 (-575 *5 *6)))) (-2098 (*1 *2 *3) (-12 (-5 *3 (-644 (-612 *5))) (-4 *4 (-1099)) (-5 *2 (-612 *5)) (-5 *1 (-575 *4 *5)) (-4 *5 (-432 *4)))) (-3676 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-612 *5))) (-5 *3 (-1175)) (-4 *5 (-432 *4)) (-4 *4 (-1099)) (-5 *1 (-575 *4 *5)))))
-(-10 -7 (-15 -3676 ((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-1175))) (-15 -2098 ((-612 |#2|) (-644 (-612 |#2|)))) (-15 -4111 ((-612 |#2|) (-612 |#2|) (-644 (-612 |#2|)) (-1175))) (-15 -1781 ((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-644 (-612 |#2|)))) (-15 -1509 ((-644 (-612 |#2|)) (-644 |#2|) (-1175))) (IF (|has| |#1| (-558)) (-15 -2659 (|#2| |#2| (-1175))) |%noBranch|) (IF (|has| |#1| (-454)) (IF (|has| |#2| (-285)) (PROGN (-15 -1952 (|#2| |#2| (-1175))) (IF (|has| |#1| (-614 (-892 (-566)))) (IF (|has| |#1| (-886 (-566))) (IF (|has| |#2| (-629)) (IF (|has| |#2| (-1038 (-1175))) (-15 -1704 ((-587 |#2|) |#2| (-1175) (-1 (-587 |#2|) |#2| (-1175)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-3502 (((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-644 |#1|) "failed") (-566) |#1| |#1|)) 202)) (-2601 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-644 (-409 |#2|))) 178)) (-1381 (((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-644 (-409 |#2|))) 175)) (-2776 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 166)) (-2657 (((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 189)) (-2898 (((-3 (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-409 |#2|)) 205)) (-4037 (((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-409 |#2|)) 208)) (-2650 (((-2 (|:| |ir| (-587 (-409 |#2|))) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|)) 90)) (-2115 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 102)) (-1558 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-644 (-409 |#2|))) 182)) (-2950 (((-3 (-623 |#1| |#2|) "failed") (-623 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|)) 170)) (-4371 (((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|)) 193)) (-4204 (((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-409 |#2|)) 213)))
-(((-576 |#1| |#2|) (-10 -7 (-15 -2657 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -4371 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|))) (-15 -3502 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-644 |#1|) "failed") (-566) |#1| |#1|))) (-15 -4037 ((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-409 |#2|))) (-15 -4204 ((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-409 |#2|))) (-15 -2601 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-644 (-409 |#2|)))) (-15 -1558 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-644 (-409 |#2|)))) (-15 -2898 ((-3 (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-409 |#2|))) (-15 -1381 ((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-644 (-409 |#2|)))) (-15 -2776 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2950 ((-3 (-623 |#1| |#2|) "failed") (-623 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|))) (-15 -2650 ((-2 (|:| |ir| (-587 (-409 |#2|))) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|))) (-15 -2115 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-365) (-1240 |#1|)) (T -576))
-((-2115 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-576 *5 *3)))) (-2650 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| |ir| (-587 (-409 *6))) (|:| |specpart| (-409 *6)) (|:| |polypart| *6))) (-5 *1 (-576 *5 *6)) (-5 *3 (-409 *6)))) (-2950 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-623 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -4368 *4) (|:| |sol?| (-112))) (-566) *4)) (-4 *4 (-365)) (-4 *5 (-1240 *4)) (-5 *1 (-576 *4 *5)))) (-2776 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -2806 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-365)) (-5 *1 (-576 *4 *2)) (-4 *2 (-1240 *4)))) (-1381 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-644 (-409 *7))) (-4 *7 (-1240 *6)) (-5 *3 (-409 *7)) (-4 *6 (-365)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-576 *6 *7)))) (-2898 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| -2806 (-409 *6)) (|:| |coeff| (-409 *6)))) (-5 *1 (-576 *5 *6)) (-5 *3 (-409 *6)))) (-1558 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -4368 *7) (|:| |sol?| (-112))) (-566) *7)) (-5 *6 (-644 (-409 *8))) (-4 *7 (-365)) (-4 *8 (-1240 *7)) (-5 *3 (-409 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-576 *7 *8)))) (-2601 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -2806 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-644 (-409 *8))) (-4 *7 (-365)) (-4 *8 (-1240 *7)) (-5 *3 (-409 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-576 *7 *8)))) (-4204 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -4368 *6) (|:| |sol?| (-112))) (-566) *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-409 *7)) (|:| |a0| *6)) (-2 (|:| -2806 (-409 *7)) (|:| |coeff| (-409 *7))) "failed")) (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))) (-4037 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2806 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-409 *7)) (|:| |a0| *6)) (-2 (|:| -2806 (-409 *7)) (|:| |coeff| (-409 *7))) "failed")) (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))) (-3502 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-644 *6) "failed") (-566) *6 *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6))) (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))) (-4371 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -4368 *6) (|:| |sol?| (-112))) (-566) *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6))) (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))) (-2657 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2806 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6))) (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
-(-10 -7 (-15 -2657 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -4371 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|))) (-15 -3502 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-644 |#1|) "failed") (-566) |#1| |#1|))) (-15 -4037 ((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-409 |#2|))) (-15 -4204 ((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-409 |#2|))) (-15 -2601 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-644 (-409 |#2|)))) (-15 -1558 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-644 (-409 |#2|)))) (-15 -2898 ((-3 (-2 (|:| -2806 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-409 |#2|))) (-15 -1381 ((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-644 (-409 |#2|)))) (-15 -2776 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2950 ((-3 (-623 |#1| |#2|) "failed") (-623 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4368 |#1|) (|:| |sol?| (-112))) (-566) |#1|))) (-15 -2650 ((-2 (|:| |ir| (-587 (-409 |#2|))) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|))) (-15 -2115 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
-((-2031 (((-3 |#2| "failed") |#2| (-1175) (-1175)) 10)))
-(((-577 |#1| |#2|) (-10 -7 (-15 -2031 ((-3 |#2| "failed") |#2| (-1175) (-1175)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-959) (-1138) (-29 |#1|))) (T -577))
-((-2031 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-577 *4 *2)) (-4 *2 (-13 (-1199) (-959) (-1138) (-29 *4))))))
-(-10 -7 (-15 -2031 ((-3 |#2| "failed") |#2| (-1175) (-1175))))
-((-2702 (((-691 (-1222)) $ (-1222)) 26)) (-1734 (((-691 (-551)) $ (-551)) 25)) (-4068 (((-771) $ (-128)) 27)) (-2030 (((-691 (-129)) $ (-129)) 24)) (-3395 (((-691 (-1222)) $) 12)) (-4269 (((-691 (-1220)) $) 8)) (-2625 (((-691 (-1219)) $) 10)) (-2984 (((-691 (-551)) $) 13)) (-1630 (((-691 (-549)) $) 9)) (-1391 (((-691 (-548)) $) 11)) (-3529 (((-771) $ (-128)) 7)) (-2296 (((-691 (-129)) $) 14)) (-1459 (($ $) 6)))
+((-3354 (((-3 (-644 (-1171 (-566))) "failed") (-644 (-1171 (-566))) (-1171 (-566))) 27)))
+(((-574) (-10 -7 (-15 -3354 ((-3 (-644 (-1171 (-566))) "failed") (-644 (-1171 (-566))) (-1171 (-566)))))) (T -574))
+((-3354 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 (-566)))) (-5 *3 (-1171 (-566))) (-5 *1 (-574)))))
+(-10 -7 (-15 -3354 ((-3 (-644 (-1171 (-566))) "failed") (-644 (-1171 (-566))) (-1171 (-566)))))
+((-2184 (((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-1175)) 19)) (-3441 (((-644 (-612 |#2|)) (-644 |#2|) (-1175)) 23)) (-1814 (((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-644 (-612 |#2|))) 11)) (-3862 ((|#2| |#2| (-1175)) 59 (|has| |#1| (-558)))) (-4279 ((|#2| |#2| (-1175)) 87 (-12 (|has| |#2| (-285)) (|has| |#1| (-454))))) (-3858 (((-612 |#2|) (-612 |#2|) (-644 (-612 |#2|)) (-1175)) 25)) (-3303 (((-612 |#2|) (-644 (-612 |#2|))) 24)) (-3627 (((-587 |#2|) |#2| (-1175) (-1 (-587 |#2|) |#2| (-1175)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175))) 115 (-12 (|has| |#2| (-285)) (|has| |#2| (-629)) (|has| |#2| (-1038 (-1175))) (|has| |#1| (-614 (-892 (-566)))) (|has| |#1| (-454)) (|has| |#1| (-886 (-566)))))))
+(((-575 |#1| |#2|) (-10 -7 (-15 -2184 ((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-1175))) (-15 -3303 ((-612 |#2|) (-644 (-612 |#2|)))) (-15 -3858 ((-612 |#2|) (-612 |#2|) (-644 (-612 |#2|)) (-1175))) (-15 -1814 ((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-644 (-612 |#2|)))) (-15 -3441 ((-644 (-612 |#2|)) (-644 |#2|) (-1175))) (IF (|has| |#1| (-558)) (-15 -3862 (|#2| |#2| (-1175))) |%noBranch|) (IF (|has| |#1| (-454)) (IF (|has| |#2| (-285)) (PROGN (-15 -4279 (|#2| |#2| (-1175))) (IF (|has| |#1| (-614 (-892 (-566)))) (IF (|has| |#1| (-886 (-566))) (IF (|has| |#2| (-629)) (IF (|has| |#2| (-1038 (-1175))) (-15 -3627 ((-587 |#2|) |#2| (-1175) (-1 (-587 |#2|) |#2| (-1175)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|)) (-1099) (-432 |#1|)) (T -575))
+((-3627 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-1 (-587 *3) *3 (-1175))) (-5 *6 (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3 (-1175))) (-4 *3 (-285)) (-4 *3 (-629)) (-4 *3 (-1038 *4)) (-4 *3 (-432 *7)) (-5 *4 (-1175)) (-4 *7 (-614 (-892 (-566)))) (-4 *7 (-454)) (-4 *7 (-886 (-566))) (-4 *7 (-1099)) (-5 *2 (-587 *3)) (-5 *1 (-575 *7 *3)))) (-4279 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-454)) (-4 *4 (-1099)) (-5 *1 (-575 *4 *2)) (-4 *2 (-285)) (-4 *2 (-432 *4)))) (-3862 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-4 *4 (-1099)) (-5 *1 (-575 *4 *2)) (-4 *2 (-432 *4)))) (-3441 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-1175)) (-4 *6 (-432 *5)) (-4 *5 (-1099)) (-5 *2 (-644 (-612 *6))) (-5 *1 (-575 *5 *6)))) (-1814 (*1 *2 *2 *2) (-12 (-5 *2 (-644 (-612 *4))) (-4 *4 (-432 *3)) (-4 *3 (-1099)) (-5 *1 (-575 *3 *4)))) (-3858 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-644 (-612 *6))) (-5 *4 (-1175)) (-5 *2 (-612 *6)) (-4 *6 (-432 *5)) (-4 *5 (-1099)) (-5 *1 (-575 *5 *6)))) (-3303 (*1 *2 *3) (-12 (-5 *3 (-644 (-612 *5))) (-4 *4 (-1099)) (-5 *2 (-612 *5)) (-5 *1 (-575 *4 *5)) (-4 *5 (-432 *4)))) (-2184 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-612 *5))) (-5 *3 (-1175)) (-4 *5 (-432 *4)) (-4 *4 (-1099)) (-5 *1 (-575 *4 *5)))))
+(-10 -7 (-15 -2184 ((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-1175))) (-15 -3303 ((-612 |#2|) (-644 (-612 |#2|)))) (-15 -3858 ((-612 |#2|) (-612 |#2|) (-644 (-612 |#2|)) (-1175))) (-15 -1814 ((-644 (-612 |#2|)) (-644 (-612 |#2|)) (-644 (-612 |#2|)))) (-15 -3441 ((-644 (-612 |#2|)) (-644 |#2|) (-1175))) (IF (|has| |#1| (-558)) (-15 -3862 (|#2| |#2| (-1175))) |%noBranch|) (IF (|has| |#1| (-454)) (IF (|has| |#2| (-285)) (PROGN (-15 -4279 (|#2| |#2| (-1175))) (IF (|has| |#1| (-614 (-892 (-566)))) (IF (|has| |#1| (-886 (-566))) (IF (|has| |#2| (-629)) (IF (|has| |#2| (-1038 (-1175))) (-15 -3627 ((-587 |#2|) |#2| (-1175) (-1 (-587 |#2|) |#2| (-1175)) (-1 (-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1175)))) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-4213 (((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-644 |#1|) "failed") (-566) |#1| |#1|)) 202)) (-1411 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-644 (-409 |#2|))) 178)) (-4389 (((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-644 (-409 |#2|))) 175)) (-2606 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 166)) (-3842 (((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 189)) (-1349 (((-3 (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-409 |#2|)) 205)) (-4366 (((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-409 |#2|)) 208)) (-3778 (((-2 (|:| |ir| (-587 (-409 |#2|))) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|)) 90)) (-3486 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 102)) (-2710 (((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-644 (-409 |#2|))) 182)) (-1853 (((-3 (-623 |#1| |#2|) "failed") (-623 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|)) 170)) (-1485 (((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|)) 193)) (-3557 (((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-409 |#2|)) 213)))
+(((-576 |#1| |#2|) (-10 -7 (-15 -3842 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1485 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|))) (-15 -4213 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-644 |#1|) "failed") (-566) |#1| |#1|))) (-15 -4366 ((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-409 |#2|))) (-15 -3557 ((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-409 |#2|))) (-15 -1411 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-644 (-409 |#2|)))) (-15 -2710 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-644 (-409 |#2|)))) (-15 -1349 ((-3 (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-409 |#2|))) (-15 -4389 ((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-644 (-409 |#2|)))) (-15 -2606 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -1853 ((-3 (-623 |#1| |#2|) "failed") (-623 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|))) (-15 -3778 ((-2 (|:| |ir| (-587 (-409 |#2|))) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|))) (-15 -3486 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-365) (-1240 |#1|)) (T -576))
+((-3486 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3))) (-5 *1 (-576 *5 *3)))) (-3778 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| |ir| (-587 (-409 *6))) (|:| |specpart| (-409 *6)) (|:| |polypart| *6))) (-5 *1 (-576 *5 *6)) (-5 *3 (-409 *6)))) (-1853 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-623 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -4394 *4) (|:| |sol?| (-112))) (-566) *4)) (-4 *4 (-365)) (-4 *5 (-1240 *4)) (-5 *1 (-576 *4 *5)))) (-2606 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -2883 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-365)) (-5 *1 (-576 *4 *2)) (-4 *2 (-1240 *4)))) (-4389 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-644 (-409 *7))) (-4 *7 (-1240 *6)) (-5 *3 (-409 *7)) (-4 *6 (-365)) (-5 *2 (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (-5 *1 (-576 *6 *7)))) (-1349 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| -2883 (-409 *6)) (|:| |coeff| (-409 *6)))) (-5 *1 (-576 *5 *6)) (-5 *3 (-409 *6)))) (-2710 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -4394 *7) (|:| |sol?| (-112))) (-566) *7)) (-5 *6 (-644 (-409 *8))) (-4 *7 (-365)) (-4 *8 (-1240 *7)) (-5 *3 (-409 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-576 *7 *8)))) (-1411 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -2883 *7) (|:| |coeff| *7)) "failed") *7)) (-5 *6 (-644 (-409 *8))) (-4 *7 (-365)) (-4 *8 (-1240 *7)) (-5 *3 (-409 *8)) (-5 *2 (-2 (|:| |answer| (-2 (|:| |mainpart| *3) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3)))))) (|:| |a0| *7))) (-5 *1 (-576 *7 *8)))) (-3557 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -4394 *6) (|:| |sol?| (-112))) (-566) *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-409 *7)) (|:| |a0| *6)) (-2 (|:| -2883 (-409 *7)) (|:| |coeff| (-409 *7))) "failed")) (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))) (-4366 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2883 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-409 *7)) (|:| |a0| *6)) (-2 (|:| -2883 (-409 *7)) (|:| |coeff| (-409 *7))) "failed")) (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))) (-4213 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-644 *6) "failed") (-566) *6 *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6))) (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))) (-1485 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -4394 *6) (|:| |sol?| (-112))) (-566) *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6))) (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))) (-3842 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2883 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6))) (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
+(-10 -7 (-15 -3842 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1485 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|))) (-15 -4213 ((-2 (|:| |answer| (-587 (-409 |#2|))) (|:| |a0| |#1|)) (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-644 |#1|) "failed") (-566) |#1| |#1|))) (-15 -4366 ((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-409 |#2|))) (-15 -3557 ((-3 (-2 (|:| |answer| (-409 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-409 |#2|))) (-15 -1411 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-644 (-409 |#2|)))) (-15 -2710 ((-3 (-2 (|:| |answer| (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|))))))) (|:| |a0| |#1|)) "failed") (-409 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|) (-644 (-409 |#2|)))) (-15 -1349 ((-3 (-2 (|:| -2883 (-409 |#2|)) (|:| |coeff| (-409 |#2|))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-409 |#2|))) (-15 -4389 ((-3 (-2 (|:| |mainpart| (-409 |#2|)) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| (-409 |#2|)) (|:| |logand| (-409 |#2|)))))) "failed") (-409 |#2|) (-1 |#2| |#2|) (-644 (-409 |#2|)))) (-15 -2606 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -1853 ((-3 (-623 |#1| |#2|) "failed") (-623 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4394 |#1|) (|:| |sol?| (-112))) (-566) |#1|))) (-15 -3778 ((-2 (|:| |ir| (-587 (-409 |#2|))) (|:| |specpart| (-409 |#2|)) (|:| |polypart| |#2|)) (-409 |#2|) (-1 |#2| |#2|))) (-15 -3486 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
+((-3841 (((-3 |#2| "failed") |#2| (-1175) (-1175)) 10)))
+(((-577 |#1| |#2|) (-10 -7 (-15 -3841 ((-3 |#2| "failed") |#2| (-1175) (-1175)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-959) (-1138) (-29 |#1|))) (T -577))
+((-3841 (*1 *2 *2 *3 *3) (|partial| -12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-577 *4 *2)) (-4 *2 (-13 (-1199) (-959) (-1138) (-29 *4))))))
+(-10 -7 (-15 -3841 ((-3 |#2| "failed") |#2| (-1175) (-1175))))
+((-4273 (((-691 (-1222)) $ (-1222)) 26)) (-3884 (((-691 (-551)) $ (-551)) 25)) (-1549 (((-771) $ (-128)) 27)) (-3832 (((-691 (-129)) $ (-129)) 24)) (-4354 (((-691 (-1222)) $) 12)) (-2937 (((-691 (-1220)) $) 8)) (-1688 (((-691 (-1219)) $) 10)) (-2033 (((-691 (-551)) $) 13)) (-2234 (((-691 (-549)) $) 9)) (-3446 (((-691 (-548)) $) 11)) (-3250 (((-771) $ (-128)) 7)) (-1534 (((-691 (-129)) $) 14)) (-4127 (($ $) 6)))
(((-578) (-140)) (T -578))
NIL
(-13 (-529) (-860))
(((-173) . T) ((-529) . T) ((-860) . T))
-((-2702 (((-691 (-1222)) $ (-1222)) NIL)) (-1734 (((-691 (-551)) $ (-551)) NIL)) (-4068 (((-771) $ (-128)) NIL)) (-2030 (((-691 (-129)) $ (-129)) NIL)) (-3395 (((-691 (-1222)) $) NIL)) (-4269 (((-691 (-1220)) $) NIL)) (-2625 (((-691 (-1219)) $) NIL)) (-2984 (((-691 (-551)) $) NIL)) (-1630 (((-691 (-549)) $) NIL)) (-1391 (((-691 (-548)) $) NIL)) (-3529 (((-771) $ (-128)) NIL)) (-2296 (((-691 (-129)) $) NIL)) (-3218 (((-112) $) NIL)) (-2409 (($ (-390)) 14) (($ (-1157)) 16)) (-2512 (((-862) $) NIL)) (-1459 (($ $) NIL)))
-(((-579) (-13 (-578) (-613 (-862)) (-10 -8 (-15 -2409 ($ (-390))) (-15 -2409 ($ (-1157))) (-15 -3218 ((-112) $))))) (T -579))
-((-2409 (*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-579)))) (-2409 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-579)))) (-3218 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-579)))))
-(-13 (-578) (-613 (-862)) (-10 -8 (-15 -2409 ($ (-390))) (-15 -2409 ($ (-1157))) (-15 -3218 ((-112) $))))
-((-2985 (((-112) $ $) NIL)) (-3587 (($) 7 T CONST)) (-2878 (((-1157) $) NIL)) (-1758 (($) 6 T CONST)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 14)) (-3764 (($) 8 T CONST)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 10)))
-(((-580) (-13 (-1099) (-10 -8 (-15 -1758 ($) -1655) (-15 -3587 ($) -1655) (-15 -3764 ($) -1655)))) (T -580))
-((-1758 (*1 *1) (-5 *1 (-580))) (-3587 (*1 *1) (-5 *1 (-580))) (-3764 (*1 *1) (-5 *1 (-580))))
-(-13 (-1099) (-10 -8 (-15 -1758 ($) -1655) (-15 -3587 ($) -1655) (-15 -3764 ($) -1655)))
-((-2985 (((-112) $ $) NIL)) (-2944 (((-691 $) (-493)) 21)) (-2878 (((-1157) $) NIL)) (-2063 (($ (-1157)) 14)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 34)) (-3785 (((-213 4 (-129)) $) 24)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 26)))
-(((-581) (-13 (-1099) (-10 -8 (-15 -2063 ($ (-1157))) (-15 -3785 ((-213 4 (-129)) $)) (-15 -2944 ((-691 $) (-493)))))) (T -581))
-((-2063 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-581)))) (-3785 (*1 *2 *1) (-12 (-5 *2 (-213 4 (-129))) (-5 *1 (-581)))) (-2944 (*1 *2 *3) (-12 (-5 *3 (-493)) (-5 *2 (-691 (-581))) (-5 *1 (-581)))))
-(-13 (-1099) (-10 -8 (-15 -2063 ($ (-1157))) (-15 -3785 ((-213 4 (-129)) $)) (-15 -2944 ((-691 $) (-493)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2402 (($ $ (-566)) 77)) (-1561 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-3791 (($ (-1171 (-566)) (-566)) 83)) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) 68)) (-3384 (($ $) 43)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2716 (((-771) $) 16)) (-2741 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-4030 (((-566)) 37)) (-3692 (((-566) $) 41)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1938 (($ $ (-566)) 24)) (-2972 (((-3 $ "failed") $ $) 73)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) 17)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 74)) (-3159 (((-1155 (-566)) $) 19)) (-1973 (($ $) 26)) (-2512 (((-862) $) 104) (($ (-566)) 63) (($ $) NIL)) (-3795 (((-771)) 15 T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-3645 (((-566) $ (-566)) 46)) (-2485 (($) 44 T CONST)) (-2495 (($) 21 T CONST)) (-2940 (((-112) $ $) 54)) (-3047 (($ $) 62) (($ $ $) 48)) (-3034 (($ $ $) 61)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 64) (($ $ $) 65)))
+((-4273 (((-691 (-1222)) $ (-1222)) NIL)) (-3884 (((-691 (-551)) $ (-551)) NIL)) (-1549 (((-771) $ (-128)) NIL)) (-3832 (((-691 (-129)) $ (-129)) NIL)) (-4354 (((-691 (-1222)) $) NIL)) (-2937 (((-691 (-1220)) $) NIL)) (-1688 (((-691 (-1219)) $) NIL)) (-2033 (((-691 (-551)) $) NIL)) (-2234 (((-691 (-549)) $) NIL)) (-3446 (((-691 (-548)) $) NIL)) (-3250 (((-771) $ (-128)) NIL)) (-1534 (((-691 (-129)) $) NIL)) (-3390 (((-112) $) NIL)) (-3321 (($ (-390)) 14) (($ (-1157)) 16)) (-3780 (((-862) $) NIL)) (-4127 (($ $) NIL)))
+(((-579) (-13 (-578) (-613 (-862)) (-10 -8 (-15 -3321 ($ (-390))) (-15 -3321 ($ (-1157))) (-15 -3390 ((-112) $))))) (T -579))
+((-3321 (*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-579)))) (-3321 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-579)))) (-3390 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-579)))))
+(-13 (-578) (-613 (-862)) (-10 -8 (-15 -3321 ($ (-390))) (-15 -3321 ($ (-1157))) (-15 -3390 ((-112) $))))
+((-3009 (((-112) $ $) NIL)) (-4312 (($) 7 T CONST)) (-2402 (((-1157) $) NIL)) (-1794 (($) 6 T CONST)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 14)) (-3740 (($) 8 T CONST)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 10)))
+(((-580) (-13 (-1099) (-10 -8 (-15 -1794 ($) -2460) (-15 -4312 ($) -2460) (-15 -3740 ($) -2460)))) (T -580))
+((-1794 (*1 *1) (-5 *1 (-580))) (-4312 (*1 *1) (-5 *1 (-580))) (-3740 (*1 *1) (-5 *1 (-580))))
+(-13 (-1099) (-10 -8 (-15 -1794 ($) -2460) (-15 -4312 ($) -2460) (-15 -3740 ($) -2460)))
+((-3009 (((-112) $ $) NIL)) (-2990 (((-691 $) (-493)) 21)) (-2402 (((-1157) $) NIL)) (-4161 (($ (-1157)) 14)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 34)) (-3902 (((-213 4 (-129)) $) 24)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 26)))
+(((-581) (-13 (-1099) (-10 -8 (-15 -4161 ($ (-1157))) (-15 -3902 ((-213 4 (-129)) $)) (-15 -2990 ((-691 $) (-493)))))) (T -581))
+((-4161 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-581)))) (-3902 (*1 *2 *1) (-12 (-5 *2 (-213 4 (-129))) (-5 *1 (-581)))) (-2990 (*1 *2 *3) (-12 (-5 *3 (-493)) (-5 *2 (-691 (-581))) (-5 *1 (-581)))))
+(-13 (-1099) (-10 -8 (-15 -4161 ($ (-1157))) (-15 -3902 ((-213 4 (-129)) $)) (-15 -2990 ((-691 $) (-493)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2484 (($ $ (-566)) 77)) (-2738 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-3972 (($ (-1171 (-566)) (-566)) 83)) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) 68)) (-2401 (($ $) 43)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-3227 (((-771) $) 16)) (-3466 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2468 (((-566)) 37)) (-2365 (((-566) $) 41)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2295 (($ $ (-566)) 24)) (-2997 (((-3 $ "failed") $ $) 73)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) 17)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 74)) (-4085 (((-1155 (-566)) $) 19)) (-1377 (($ $) 26)) (-3780 (((-862) $) 104) (($ (-566)) 63) (($ $) NIL)) (-3996 (((-771)) 15 T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3651 (((-566) $ (-566)) 46)) (-2493 (($) 44 T CONST)) (-4333 (($) 21 T CONST)) (-2950 (((-112) $ $) 54)) (-3051 (($ $) 62) (($ $ $) 48)) (-3040 (($ $ $) 61)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 64) (($ $ $) 65)))
(((-582 |#1| |#2|) (-869 |#1|) (-566) (-112)) (T -582))
NIL
(-869 |#1|)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 30)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 (($ $ (-921)) NIL (|has| $ (-370))) (($ $) NIL)) (-4324 (((-1187 (-921) (-771)) (-566)) 59)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 $ "failed") $) 99)) (-1756 (($ $) 98)) (-1547 (($ (-1264 $)) 97)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) 56)) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) 44)) (-3335 (($) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) 61)) (-3449 (((-112) $) NIL)) (-3626 (($ $) NIL) (($ $ (-771)) NIL)) (-2635 (((-112) $) NIL)) (-2716 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-2741 (((-112) $) NIL)) (-2061 (($) 49 (|has| $ (-370)))) (-3754 (((-112) $) NIL (|has| $ (-370)))) (-1559 (($ $ (-921)) NIL (|has| $ (-370))) (($ $) NIL)) (-2546 (((-3 $ "failed") $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 $) $ (-921)) NIL (|has| $ (-370))) (((-1171 $) $) 108)) (-3712 (((-921) $) 67)) (-1907 (((-1171 $) $) NIL (|has| $ (-370)))) (-3866 (((-3 (-1171 $) "failed") $ $) NIL (|has| $ (-370))) (((-1171 $) $) NIL (|has| $ (-370)))) (-1900 (($ $ (-1171 $)) NIL (|has| $ (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL T CONST)) (-2168 (($ (-921)) 60)) (-3751 (((-112) $) 91)) (-4033 (((-1119) $) NIL)) (-4067 (($) 28 (|has| $ (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) 54)) (-2391 (((-420 $) $) NIL)) (-2003 (((-921)) 90) (((-833 (-921))) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-3 (-771) "failed") $ $) NIL) (((-771) $) NIL)) (-1909 (((-134)) NIL)) (-2862 (($ $ (-771)) NIL) (($ $) NIL)) (-3992 (((-921) $) 89) (((-833 (-921)) $) NIL)) (-2127 (((-1171 $)) 106)) (-1536 (($) 66)) (-2873 (($) 50 (|has| $ (-370)))) (-2770 (((-689 $) (-1264 $)) NIL) (((-1264 $) $) 95)) (-3134 (((-566) $) 40)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) 42) (($ $) NIL) (($ (-409 (-566))) NIL)) (-3842 (((-3 $ "failed") $) NIL) (($ $) 109)) (-3795 (((-771)) 51 T CONST)) (-3122 (((-112) $ $) 111)) (-1990 (((-1264 $) (-921)) 101) (((-1264 $)) 100)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) 31 T CONST)) (-2495 (($) 27 T CONST)) (-2752 (($ $ (-771)) NIL (|has| $ (-370))) (($ $) NIL (|has| $ (-370)))) (-2840 (($ $ (-771)) NIL) (($ $) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 34)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 85) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 30)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 (($ $ (-921)) NIL (|has| $ (-370))) (($ $) NIL)) (-2277 (((-1187 (-921) (-771)) (-566)) 59)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 $ "failed") $) 99)) (-1867 (($ $) 98)) (-2613 (($ (-1264 $)) 97)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) 56)) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) 44)) (-1618 (($) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) 61)) (-3698 (((-112) $) NIL)) (-2901 (($ $) NIL) (($ $ (-771)) NIL)) (-1784 (((-112) $) NIL)) (-3227 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-3466 (((-112) $) NIL)) (-4138 (($) 49 (|has| $ (-370)))) (-1771 (((-112) $) NIL (|has| $ (-370)))) (-2719 (($ $ (-921)) NIL (|has| $ (-370))) (($ $) NIL)) (-2133 (((-3 $ "failed") $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 $) $ (-921)) NIL (|has| $ (-370))) (((-1171 $) $) 108)) (-1299 (((-921) $) 67)) (-1988 (((-1171 $) $) NIL (|has| $ (-370)))) (-3433 (((-3 (-1171 $) "failed") $ $) NIL (|has| $ (-370))) (((-1171 $) $) NIL (|has| $ (-370)))) (-1923 (($ $ (-1171 $)) NIL (|has| $ (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL T CONST)) (-2208 (($ (-921)) 60)) (-1737 (((-112) $) 91)) (-4056 (((-1119) $) NIL)) (-4152 (($) 28 (|has| $ (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) 54)) (-2473 (((-420 $) $) NIL)) (-1723 (((-921)) 90) (((-833 (-921))) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-3 (-771) "failed") $ $) NIL) (((-771) $) NIL)) (-2012 (((-134)) NIL)) (-2578 (($ $ (-771)) NIL) (($ $) NIL)) (-2108 (((-921) $) 89) (((-833 (-921)) $) NIL)) (-3601 (((-1171 $)) 106)) (-2507 (($) 66)) (-2348 (($) 50 (|has| $ (-370)))) (-2543 (((-689 $) (-1264 $)) NIL) (((-1264 $) $) 95)) (-3204 (((-566) $) 40)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) 42) (($ $) NIL) (($ (-409 (-566))) NIL)) (-3226 (((-3 $ "failed") $) NIL) (($ $) 109)) (-3996 (((-771)) 51 T CONST)) (-3801 (((-112) $ $) 111)) (-1575 (((-1264 $) (-921)) 101) (((-1264 $)) 100)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) 31 T CONST)) (-4333 (($) 27 T CONST)) (-3583 (($ $ (-771)) NIL (|has| $ (-370))) (($ $) NIL (|has| $ (-370)))) (-2876 (($ $ (-771)) NIL) (($ $) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 34)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 85) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
(((-583 |#1|) (-13 (-351) (-330 $) (-614 (-566))) (-921)) (T -583))
NIL
(-13 (-351) (-330 $) (-614 (-566)))
-((-3568 (((-1269) (-1157)) 10)))
-(((-584) (-10 -7 (-15 -3568 ((-1269) (-1157))))) (T -584))
-((-3568 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-584)))))
-(-10 -7 (-15 -3568 ((-1269) (-1157))))
-((-3473 (((-587 |#2|) (-587 |#2|)) 42)) (-4154 (((-644 |#2|) (-587 |#2|)) 44)) (-1565 ((|#2| (-587 |#2|)) 50)))
-(((-585 |#1| |#2|) (-10 -7 (-15 -3473 ((-587 |#2|) (-587 |#2|))) (-15 -4154 ((-644 |#2|) (-587 |#2|))) (-15 -1565 (|#2| (-587 |#2|)))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-29 |#1|) (-1199))) (T -585))
-((-1565 (*1 *2 *3) (-12 (-5 *3 (-587 *2)) (-4 *2 (-13 (-29 *4) (-1199))) (-5 *1 (-585 *4 *2)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))))) (-4154 (*1 *2 *3) (-12 (-5 *3 (-587 *5)) (-4 *5 (-13 (-29 *4) (-1199))) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-644 *5)) (-5 *1 (-585 *4 *5)))) (-3473 (*1 *2 *2) (-12 (-5 *2 (-587 *4)) (-4 *4 (-13 (-29 *3) (-1199))) (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-585 *3 *4)))))
-(-10 -7 (-15 -3473 ((-587 |#2|) (-587 |#2|))) (-15 -4154 ((-644 |#2|) (-587 |#2|))) (-15 -1565 (|#2| (-587 |#2|))))
-((-3077 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-587 |#2|) (-1 |#2| |#1|) (-587 |#1|)) 30)))
-(((-586 |#1| |#2|) (-10 -7 (-15 -3077 ((-587 |#2|) (-1 |#2| |#1|) (-587 |#1|))) (-15 -3077 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -3077 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -3077 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-365) (-365)) (T -586))
-((-3077 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-365)) (-4 *6 (-365)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-586 *5 *6)))) (-3077 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-365)) (-4 *2 (-365)) (-5 *1 (-586 *5 *2)))) (-3077 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -2806 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-365)) (-4 *6 (-365)) (-5 *2 (-2 (|:| -2806 *6) (|:| |coeff| *6))) (-5 *1 (-586 *5 *6)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-587 *5)) (-4 *5 (-365)) (-4 *6 (-365)) (-5 *2 (-587 *6)) (-5 *1 (-586 *5 *6)))))
-(-10 -7 (-15 -3077 ((-587 |#2|) (-1 |#2| |#1|) (-587 |#1|))) (-15 -3077 ((-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2806 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -3077 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -3077 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) 76)) (-1756 ((|#1| $) NIL)) (-2806 ((|#1| $) 30)) (-2522 (((-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 32)) (-3548 (($ |#1| (-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) (-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 28)) (-2317 (((-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) $) 31)) (-2878 (((-1157) $) NIL)) (-2669 (($ |#1| |#1|) 38) (($ |#1| (-1175)) 49 (|has| |#1| (-1038 (-1175))))) (-4033 (((-1119) $) NIL)) (-3187 (((-112) $) 35)) (-2862 ((|#1| $ (-1 |#1| |#1|)) 88) ((|#1| $ (-1175)) 89 (|has| |#1| (-900 (-1175))))) (-2512 (((-862) $) 112) (($ |#1|) 29)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 18 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) 17) (($ $ $) NIL)) (-3034 (($ $ $) 85)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 16) (($ (-409 (-566)) $) 41) (($ $ (-409 (-566))) NIL)))
-(((-587 |#1|) (-13 (-717 (-409 (-566))) (-1038 |#1|) (-10 -8 (-15 -3548 ($ |#1| (-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) (-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2806 (|#1| $)) (-15 -2317 ((-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) $)) (-15 -2522 ((-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3187 ((-112) $)) (-15 -2669 ($ |#1| |#1|)) (-15 -2862 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-900 (-1175))) (-15 -2862 (|#1| $ (-1175))) |%noBranch|) (IF (|has| |#1| (-1038 (-1175))) (-15 -2669 ($ |#1| (-1175))) |%noBranch|))) (-365)) (T -587))
-((-3548 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 *2)) (|:| |logand| (-1171 *2))))) (-5 *4 (-644 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-365)) (-5 *1 (-587 *2)))) (-2806 (*1 *2 *1) (-12 (-5 *1 (-587 *2)) (-4 *2 (-365)))) (-2317 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 *3)) (|:| |logand| (-1171 *3))))) (-5 *1 (-587 *3)) (-4 *3 (-365)))) (-2522 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-587 *3)) (-4 *3 (-365)))) (-3187 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-587 *3)) (-4 *3 (-365)))) (-2669 (*1 *1 *2 *2) (-12 (-5 *1 (-587 *2)) (-4 *2 (-365)))) (-2862 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-587 *2)) (-4 *2 (-365)))) (-2862 (*1 *2 *1 *3) (-12 (-4 *2 (-365)) (-4 *2 (-900 *3)) (-5 *1 (-587 *2)) (-5 *3 (-1175)))) (-2669 (*1 *1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *1 (-587 *2)) (-4 *2 (-1038 *3)) (-4 *2 (-365)))))
-(-13 (-717 (-409 (-566))) (-1038 |#1|) (-10 -8 (-15 -3548 ($ |#1| (-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) (-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2806 (|#1| $)) (-15 -2317 ((-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) $)) (-15 -2522 ((-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3187 ((-112) $)) (-15 -2669 ($ |#1| |#1|)) (-15 -2862 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-900 (-1175))) (-15 -2862 (|#1| $ (-1175))) |%noBranch|) (IF (|has| |#1| (-1038 (-1175))) (-15 -2669 ($ |#1| (-1175))) |%noBranch|)))
-((-1958 (((-112) |#1|) 16)) (-2276 (((-3 |#1| "failed") |#1|) 14)) (-1889 (((-2 (|:| -3306 |#1|) (|:| -3250 (-771))) |#1|) 39) (((-3 |#1| "failed") |#1| (-771)) 18)) (-3294 (((-112) |#1| (-771)) 19)) (-2467 ((|#1| |#1|) 43)) (-1328 ((|#1| |#1| (-771)) 46)))
-(((-588 |#1|) (-10 -7 (-15 -3294 ((-112) |#1| (-771))) (-15 -1889 ((-3 |#1| "failed") |#1| (-771))) (-15 -1889 ((-2 (|:| -3306 |#1|) (|:| -3250 (-771))) |#1|)) (-15 -1328 (|#1| |#1| (-771))) (-15 -1958 ((-112) |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1|)) (-15 -2467 (|#1| |#1|))) (-547)) (T -588))
-((-2467 (*1 *2 *2) (-12 (-5 *1 (-588 *2)) (-4 *2 (-547)))) (-2276 (*1 *2 *2) (|partial| -12 (-5 *1 (-588 *2)) (-4 *2 (-547)))) (-1958 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-588 *3)) (-4 *3 (-547)))) (-1328 (*1 *2 *2 *3) (-12 (-5 *3 (-771)) (-5 *1 (-588 *2)) (-4 *2 (-547)))) (-1889 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3306 *3) (|:| -3250 (-771)))) (-5 *1 (-588 *3)) (-4 *3 (-547)))) (-1889 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-771)) (-5 *1 (-588 *2)) (-4 *2 (-547)))) (-3294 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-5 *2 (-112)) (-5 *1 (-588 *3)) (-4 *3 (-547)))))
-(-10 -7 (-15 -3294 ((-112) |#1| (-771))) (-15 -1889 ((-3 |#1| "failed") |#1| (-771))) (-15 -1889 ((-2 (|:| -3306 |#1|) (|:| -3250 (-771))) |#1|)) (-15 -1328 (|#1| |#1| (-771))) (-15 -1958 ((-112) |#1|)) (-15 -2276 ((-3 |#1| "failed") |#1|)) (-15 -2467 (|#1| |#1|)))
-((-2683 (((-1171 |#1|) (-921)) 44)))
-(((-589 |#1|) (-10 -7 (-15 -2683 ((-1171 |#1|) (-921)))) (-351)) (T -589))
-((-2683 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-589 *4)) (-4 *4 (-351)))))
-(-10 -7 (-15 -2683 ((-1171 |#1|) (-921))))
-((-3473 (((-587 (-409 (-952 |#1|))) (-587 (-409 (-952 |#1|)))) 27)) (-4117 (((-3 (-317 |#1|) (-644 (-317 |#1|))) (-409 (-952 |#1|)) (-1175)) 34 (|has| |#1| (-147)))) (-4154 (((-644 (-317 |#1|)) (-587 (-409 (-952 |#1|)))) 19)) (-3281 (((-317 |#1|) (-409 (-952 |#1|)) (-1175)) 32 (|has| |#1| (-147)))) (-1565 (((-317 |#1|) (-587 (-409 (-952 |#1|)))) 21)))
-(((-590 |#1|) (-10 -7 (-15 -3473 ((-587 (-409 (-952 |#1|))) (-587 (-409 (-952 |#1|))))) (-15 -4154 ((-644 (-317 |#1|)) (-587 (-409 (-952 |#1|))))) (-15 -1565 ((-317 |#1|) (-587 (-409 (-952 |#1|))))) (IF (|has| |#1| (-147)) (PROGN (-15 -4117 ((-3 (-317 |#1|) (-644 (-317 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -3281 ((-317 |#1|) (-409 (-952 |#1|)) (-1175)))) |%noBranch|)) (-13 (-454) (-1038 (-566)) (-639 (-566)))) (T -590))
-((-3281 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-147)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-317 *5)) (-5 *1 (-590 *5)))) (-4117 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-147)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (-317 *5) (-644 (-317 *5)))) (-5 *1 (-590 *5)))) (-1565 (*1 *2 *3) (-12 (-5 *3 (-587 (-409 (-952 *4)))) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-317 *4)) (-5 *1 (-590 *4)))) (-4154 (*1 *2 *3) (-12 (-5 *3 (-587 (-409 (-952 *4)))) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-644 (-317 *4))) (-5 *1 (-590 *4)))) (-3473 (*1 *2 *2) (-12 (-5 *2 (-587 (-409 (-952 *3)))) (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-590 *3)))))
-(-10 -7 (-15 -3473 ((-587 (-409 (-952 |#1|))) (-587 (-409 (-952 |#1|))))) (-15 -4154 ((-644 (-317 |#1|)) (-587 (-409 (-952 |#1|))))) (-15 -1565 ((-317 |#1|) (-587 (-409 (-952 |#1|))))) (IF (|has| |#1| (-147)) (PROGN (-15 -4117 ((-3 (-317 |#1|) (-644 (-317 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -3281 ((-317 |#1|) (-409 (-952 |#1|)) (-1175)))) |%noBranch|))
-((-4164 (((-644 (-689 (-566))) (-644 (-566)) (-644 (-905 (-566)))) 78) (((-644 (-689 (-566))) (-644 (-566))) 79) (((-689 (-566)) (-644 (-566)) (-905 (-566))) 72)) (-3665 (((-771) (-644 (-566))) 69)))
-(((-591) (-10 -7 (-15 -3665 ((-771) (-644 (-566)))) (-15 -4164 ((-689 (-566)) (-644 (-566)) (-905 (-566)))) (-15 -4164 ((-644 (-689 (-566))) (-644 (-566)))) (-15 -4164 ((-644 (-689 (-566))) (-644 (-566)) (-644 (-905 (-566))))))) (T -591))
-((-4164 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-566))) (-5 *4 (-644 (-905 (-566)))) (-5 *2 (-644 (-689 (-566)))) (-5 *1 (-591)))) (-4164 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-644 (-689 (-566)))) (-5 *1 (-591)))) (-4164 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-566))) (-5 *4 (-905 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-591)))) (-3665 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-771)) (-5 *1 (-591)))))
-(-10 -7 (-15 -3665 ((-771) (-644 (-566)))) (-15 -4164 ((-689 (-566)) (-644 (-566)) (-905 (-566)))) (-15 -4164 ((-644 (-689 (-566))) (-644 (-566)))) (-15 -4164 ((-644 (-689 (-566))) (-644 (-566)) (-644 (-905 (-566))))))
-((-4180 (((-644 |#5|) |#5| (-112)) 100)) (-1585 (((-112) |#5| (-644 |#5|)) 34)))
-(((-592 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4180 ((-644 |#5|) |#5| (-112))) (-15 -1585 ((-112) |#5| (-644 |#5|)))) (-13 (-308) (-147)) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1108 |#1| |#2| |#3| |#4|)) (T -592))
-((-1585 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-1108 *5 *6 *7 *8)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-592 *5 *6 *7 *8 *3)))) (-4180 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-644 *3)) (-5 *1 (-592 *5 *6 *7 *8 *3)) (-4 *3 (-1108 *5 *6 *7 *8)))))
-(-10 -7 (-15 -4180 ((-644 |#5|) |#5| (-112))) (-15 -1585 ((-112) |#5| (-644 |#5|))))
-((-2985 (((-112) $ $) NIL)) (-3336 (((-1134) $) 11)) (-3324 (((-1134) $) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-593) (-13 (-1082) (-10 -8 (-15 -3324 ((-1134) $)) (-15 -3336 ((-1134) $))))) (T -593))
-((-3324 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-593)))) (-3336 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-593)))))
-(-13 (-1082) (-10 -8 (-15 -3324 ((-1134) $)) (-15 -3336 ((-1134) $))))
-((-2985 (((-112) $ $) NIL (|has| (-144) (-1099)))) (-2849 (($ $) 38)) (-1760 (($ $) NIL)) (-1896 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-1516 (((-112) $ $) 68)) (-1493 (((-112) $ $ (-566)) 62)) (-3473 (((-644 $) $ (-144)) 76) (((-644 $) $ (-141)) 77)) (-2383 (((-112) (-1 (-112) (-144) (-144)) $) NIL) (((-112) $) NIL (|has| (-144) (-850)))) (-3426 (($ (-1 (-112) (-144) (-144)) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| (-144) (-850))))) (-3290 (($ (-1 (-112) (-144) (-144)) $) NIL) (($ $) NIL (|has| (-144) (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 (((-144) $ (-566) (-144)) 59 (|has| $ (-6 -4418))) (((-144) $ (-1231 (-566)) (-144)) NIL (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-1596 (($ $ (-144)) 81) (($ $ (-141)) 82)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4121 (($ $ (-1231 (-566)) $) 57)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-2651 (($ (-144) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099)))) (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4417))) (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4417)))) (-1332 (((-144) $ (-566) (-144)) NIL (|has| $ (-6 -4418)))) (-3137 (((-144) $ (-566)) NIL)) (-1540 (((-112) $ $) 95)) (-3968 (((-566) (-1 (-112) (-144)) $) NIL) (((-566) (-144) $) NIL (|has| (-144) (-1099))) (((-566) (-144) $ (-566)) 65 (|has| (-144) (-1099))) (((-566) $ $ (-566)) 63) (((-566) (-141) $ (-566)) 67)) (-3372 (((-644 (-144)) $) NIL (|has| $ (-6 -4417)))) (-4257 (($ (-771) (-144)) 9)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) 32 (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| (-144) (-850)))) (-3132 (($ (-1 (-112) (-144) (-144)) $ $) NIL) (($ $ $) NIL (|has| (-144) (-850)))) (-2404 (((-644 (-144)) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-1544 (((-566) $) 47 (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| (-144) (-850)))) (-3990 (((-112) $ $ (-144)) 96)) (-3926 (((-771) $ $ (-144)) 93)) (-1323 (($ (-1 (-144) (-144)) $) 37 (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-144) (-144)) $) NIL) (($ (-1 (-144) (-144) (-144)) $ $) NIL)) (-3438 (($ $) 41)) (-1482 (($ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-1608 (($ $ (-144)) 78) (($ $ (-141)) 79)) (-2878 (((-1157) $) 43 (|has| (-144) (-1099)))) (-4268 (($ (-144) $ (-566)) NIL) (($ $ $ (-566)) 27)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-566) $) 92) (((-1119) $) NIL (|has| (-144) (-1099)))) (-4062 (((-144) $) NIL (|has| (-566) (-850)))) (-2126 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-1720 (($ $ (-144)) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-144)))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-295 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-644 (-144)) (-644 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-2784 (((-644 (-144)) $) NIL)) (-4194 (((-112) $) 15)) (-2954 (($) 10)) (-4386 (((-144) $ (-566) (-144)) NIL) (((-144) $ (-566)) 69) (($ $ (-1231 (-566))) 25) (($ $ $) NIL)) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4044 (((-771) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417))) (((-771) (-144) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-3245 (($ $ $ (-566)) 84 (|has| $ (-6 -4418)))) (-3895 (($ $) 20)) (-3134 (((-538) $) NIL (|has| (-144) (-614 (-538))))) (-2523 (($ (-644 (-144))) NIL)) (-3704 (($ $ (-144)) NIL) (($ (-144) $) NIL) (($ $ $) 19) (($ (-644 $)) 85)) (-2512 (($ (-144)) NIL) (((-862) $) 31 (|has| (-144) (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| (-144) (-1099)))) (-3427 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2940 (((-112) $ $) 17 (|has| (-144) (-1099)))) (-2987 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2962 (((-112) $ $) 18 (|has| (-144) (-850)))) (-2997 (((-771) $) 16 (|has| $ (-6 -4417)))))
-(((-594 |#1|) (-13 (-1143) (-10 -8 (-15 -4033 ((-566) $)))) (-566)) (T -594))
-((-4033 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-594 *3)) (-14 *3 *2))))
-(-13 (-1143) (-10 -8 (-15 -4033 ((-566) $))))
-((-3698 (((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2| (-1093 |#4|)) 32)))
-(((-595 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3698 ((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2| (-1093 |#4|))) (-15 -3698 ((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2|))) (-793) (-850) (-558) (-949 |#3| |#1| |#2|)) (T -595))
-((-3698 (*1 *2 *3 *4) (-12 (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-558)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-566)))) (-5 *1 (-595 *5 *4 *6 *3)) (-4 *3 (-949 *6 *5 *4)))) (-3698 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1093 *3)) (-4 *3 (-949 *7 *6 *4)) (-4 *6 (-793)) (-4 *4 (-850)) (-4 *7 (-558)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-566)))) (-5 *1 (-595 *6 *4 *7 *3)))))
-(-10 -7 (-15 -3698 ((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2| (-1093 |#4|))) (-15 -3698 ((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 72)) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-1881 (($ $ (-566)) 58) (($ $ (-566) (-566)) 59)) (-1530 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) 65)) (-2169 (($ $) 110)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2476 (((-862) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) (-1026 (-843 (-566))) (-1175) |#1| (-409 (-566))) 243)) (-1401 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) 36)) (-2342 (($) NIL T CONST)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4039 (((-112) $) NIL)) (-2716 (((-566) $) 63) (((-566) $ (-566)) 64)) (-2741 (((-112) $) NIL)) (-3432 (($ $ (-921)) 84)) (-2153 (($ (-1 |#1| (-566)) $) 81)) (-4367 (((-112) $) 26)) (-2519 (($ |#1| (-566)) 22) (($ $ (-1081) (-566)) NIL) (($ $ (-644 (-1081)) (-644 (-566))) NIL)) (-3077 (($ (-1 |#1| |#1|) $) 76)) (-2711 (($ (-1026 (-843 (-566))) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) 13)) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4117 (($ $) 163 (|has| |#1| (-38 (-409 (-566)))))) (-4192 (((-3 $ "failed") $ $ (-112)) 109)) (-2211 (($ $ $) 117)) (-4033 (((-1119) $) NIL)) (-2435 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) 15)) (-3452 (((-1026 (-843 (-566))) $) 14)) (-1938 (($ $ (-566)) 47)) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-2070 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-566)))))) (-4386 ((|#1| $ (-566)) 62) (($ $ $) NIL (|has| (-566) (-1111)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-566) |#1|)))) (($ $) 78 (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (-3992 (((-566) $) NIL)) (-1973 (($ $) 48)) (-2512 (((-862) $) NIL) (($ (-566)) 29) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558))) (($ |#1|) 28 (|has| |#1| (-172)))) (-2022 ((|#1| $ (-566)) 61)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) 39 T CONST)) (-2420 ((|#1| $) NIL)) (-4183 (($ $) 201 (|has| |#1| (-38 (-409 (-566)))))) (-3491 (($ $) 171 (|has| |#1| (-38 (-409 (-566)))))) (-2761 (($ $) 205 (|has| |#1| (-38 (-409 (-566)))))) (-1869 (($ $) 176 (|has| |#1| (-38 (-409 (-566)))))) (-3520 (($ $) 204 (|has| |#1| (-38 (-409 (-566)))))) (-2685 (($ $) 175 (|has| |#1| (-38 (-409 (-566)))))) (-2667 (($ $ (-409 (-566))) 179 (|has| |#1| (-38 (-409 (-566)))))) (-2793 (($ $ |#1|) 159 (|has| |#1| (-38 (-409 (-566)))))) (-1538 (($ $) 207 (|has| |#1| (-38 (-409 (-566)))))) (-1694 (($ $) 162 (|has| |#1| (-38 (-409 (-566)))))) (-1426 (($ $) 206 (|has| |#1| (-38 (-409 (-566)))))) (-1717 (($ $) 177 (|has| |#1| (-38 (-409 (-566)))))) (-2362 (($ $) 202 (|has| |#1| (-38 (-409 (-566)))))) (-3517 (($ $) 173 (|has| |#1| (-38 (-409 (-566)))))) (-1621 (($ $) 203 (|has| |#1| (-38 (-409 (-566)))))) (-2893 (($ $) 174 (|has| |#1| (-38 (-409 (-566)))))) (-2865 (($ $) 212 (|has| |#1| (-38 (-409 (-566)))))) (-3521 (($ $) 188 (|has| |#1| (-38 (-409 (-566)))))) (-2164 (($ $) 209 (|has| |#1| (-38 (-409 (-566)))))) (-1661 (($ $) 183 (|has| |#1| (-38 (-409 (-566)))))) (-3104 (($ $) 216 (|has| |#1| (-38 (-409 (-566)))))) (-2700 (($ $) 192 (|has| |#1| (-38 (-409 (-566)))))) (-3320 (($ $) 218 (|has| |#1| (-38 (-409 (-566)))))) (-4225 (($ $) 194 (|has| |#1| (-38 (-409 (-566)))))) (-3412 (($ $) 214 (|has| |#1| (-38 (-409 (-566)))))) (-1434 (($ $) 190 (|has| |#1| (-38 (-409 (-566)))))) (-2227 (($ $) 211 (|has| |#1| (-38 (-409 (-566)))))) (-2191 (($ $) 186 (|has| |#1| (-38 (-409 (-566)))))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3645 ((|#1| $ (-566)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-2485 (($) 30 T CONST)) (-2495 (($) 40 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-566) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (-2940 (((-112) $ $) 74)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) 92) (($ $ $) 73)) (-3034 (($ $ $) 89)) (** (($ $ (-921)) NIL) (($ $ (-771)) 112)) (* (($ (-921) $) 99) (($ (-771) $) 97) (($ (-566) $) 94) (($ $ $) 105) (($ $ |#1|) NIL) (($ |#1| $) 124) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-596 |#1|) (-13 (-1242 |#1| (-566)) (-10 -8 (-15 -2711 ($ (-1026 (-843 (-566))) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))))) (-15 -3452 ((-1026 (-843 (-566))) $)) (-15 -2435 ((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $)) (-15 -1401 ($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))))) (-15 -4367 ((-112) $)) (-15 -2153 ($ (-1 |#1| (-566)) $)) (-15 -4192 ((-3 $ "failed") $ $ (-112))) (-15 -2169 ($ $)) (-15 -2211 ($ $ $)) (-15 -2476 ((-862) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) (-1026 (-843 (-566))) (-1175) |#1| (-409 (-566)))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ($ $)) (-15 -2793 ($ $ |#1|)) (-15 -2667 ($ $ (-409 (-566)))) (-15 -1694 ($ $)) (-15 -1538 ($ $)) (-15 -1869 ($ $)) (-15 -2893 ($ $)) (-15 -3491 ($ $)) (-15 -3517 ($ $)) (-15 -2685 ($ $)) (-15 -1717 ($ $)) (-15 -1661 ($ $)) (-15 -2191 ($ $)) (-15 -3521 ($ $)) (-15 -1434 ($ $)) (-15 -2700 ($ $)) (-15 -4225 ($ $)) (-15 -2761 ($ $)) (-15 -1621 ($ $)) (-15 -4183 ($ $)) (-15 -2362 ($ $)) (-15 -3520 ($ $)) (-15 -1426 ($ $)) (-15 -2164 ($ $)) (-15 -2227 ($ $)) (-15 -2865 ($ $)) (-15 -3412 ($ $)) (-15 -3104 ($ $)) (-15 -3320 ($ $))) |%noBranch|))) (-1049)) (T -596))
-((-4367 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-596 *3)) (-4 *3 (-1049)))) (-2711 (*1 *1 *2 *3) (-12 (-5 *2 (-1026 (-843 (-566)))) (-5 *3 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *4)))) (-4 *4 (-1049)) (-5 *1 (-596 *4)))) (-3452 (*1 *2 *1) (-12 (-5 *2 (-1026 (-843 (-566)))) (-5 *1 (-596 *3)) (-4 *3 (-1049)))) (-2435 (*1 *2 *1) (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3)))) (-5 *1 (-596 *3)) (-4 *3 (-1049)))) (-1401 (*1 *1 *2) (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3)))) (-4 *3 (-1049)) (-5 *1 (-596 *3)))) (-2153 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-566))) (-4 *3 (-1049)) (-5 *1 (-596 *3)))) (-4192 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-596 *3)) (-4 *3 (-1049)))) (-2169 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-1049)))) (-2211 (*1 *1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-1049)))) (-2476 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *6)))) (-5 *4 (-1026 (-843 (-566)))) (-5 *5 (-1175)) (-5 *7 (-409 (-566))) (-4 *6 (-1049)) (-5 *2 (-862)) (-5 *1 (-596 *6)))) (-4117 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2793 (*1 *1 *1 *2) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2667 (*1 *1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-596 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1049)))) (-1694 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-1538 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-1869 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2893 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3491 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3517 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2685 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-1717 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-1661 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2191 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3521 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-1434 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2700 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-4225 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2761 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-1621 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-4183 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2362 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3520 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-1426 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2164 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2227 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2865 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3412 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3104 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3320 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(-13 (-1242 |#1| (-566)) (-10 -8 (-15 -2711 ($ (-1026 (-843 (-566))) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))))) (-15 -3452 ((-1026 (-843 (-566))) $)) (-15 -2435 ((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $)) (-15 -1401 ($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))))) (-15 -4367 ((-112) $)) (-15 -2153 ($ (-1 |#1| (-566)) $)) (-15 -4192 ((-3 $ "failed") $ $ (-112))) (-15 -2169 ($ $)) (-15 -2211 ($ $ $)) (-15 -2476 ((-862) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) (-1026 (-843 (-566))) (-1175) |#1| (-409 (-566)))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ($ $)) (-15 -2793 ($ $ |#1|)) (-15 -2667 ($ $ (-409 (-566)))) (-15 -1694 ($ $)) (-15 -1538 ($ $)) (-15 -1869 ($ $)) (-15 -2893 ($ $)) (-15 -3491 ($ $)) (-15 -3517 ($ $)) (-15 -2685 ($ $)) (-15 -1717 ($ $)) (-15 -1661 ($ $)) (-15 -2191 ($ $)) (-15 -3521 ($ $)) (-15 -1434 ($ $)) (-15 -2700 ($ $)) (-15 -4225 ($ $)) (-15 -2761 ($ $)) (-15 -1621 ($ $)) (-15 -4183 ($ $)) (-15 -2362 ($ $)) (-15 -3520 ($ $)) (-15 -1426 ($ $)) (-15 -2164 ($ $)) (-15 -2227 ($ $)) (-15 -2865 ($ $)) (-15 -3412 ($ $)) (-15 -3104 ($ $)) (-15 -3320 ($ $))) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-1401 (($ (-1155 |#1|)) 9)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) 48)) (-4039 (((-112) $) 58)) (-2716 (((-771) $) 63) (((-771) $ (-771)) 62)) (-2741 (((-112) $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2972 (((-3 $ "failed") $ $) 50 (|has| |#1| (-558)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL (|has| |#1| (-558)))) (-3868 (((-1155 |#1|) $) 29)) (-3795 (((-771)) 57 T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2485 (($) 10 T CONST)) (-2495 (($) 14 T CONST)) (-2940 (((-112) $ $) 28)) (-3047 (($ $) 36) (($ $ $) 16)) (-3034 (($ $ $) 31)) (** (($ $ (-921)) NIL) (($ $ (-771)) 55)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 40) (($ $ $) 34) (($ |#1| $) 43) (($ $ |#1|) 44) (($ $ (-566)) 42)))
-(((-597 |#1|) (-13 (-1049) (-10 -8 (-15 -3868 ((-1155 |#1|) $)) (-15 -1401 ($ (-1155 |#1|))) (-15 -4039 ((-112) $)) (-15 -2716 ((-771) $)) (-15 -2716 ((-771) $ (-771))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-566))) (IF (|has| |#1| (-558)) (-6 (-558)) |%noBranch|))) (-1049)) (T -597))
-((-3868 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-597 *3)) (-4 *3 (-1049)))) (-1401 (*1 *1 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-597 *3)))) (-4039 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-597 *3)) (-4 *3 (-1049)))) (-2716 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-597 *3)) (-4 *3 (-1049)))) (-2716 (*1 *2 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-597 *3)) (-4 *3 (-1049)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-597 *2)) (-4 *2 (-1049)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-597 *2)) (-4 *2 (-1049)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-597 *3)) (-4 *3 (-1049)))))
-(-13 (-1049) (-10 -8 (-15 -3868 ((-1155 |#1|) $)) (-15 -1401 ($ (-1155 |#1|))) (-15 -4039 ((-112) $)) (-15 -2716 ((-771) $)) (-15 -2716 ((-771) $ (-771))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-566))) (IF (|has| |#1| (-558)) (-6 (-558)) |%noBranch|)))
-((-3077 (((-601 |#2|) (-1 |#2| |#1|) (-601 |#1|)) 15)))
-(((-598 |#1| |#2|) (-10 -7 (-15 -3077 ((-601 |#2|) (-1 |#2| |#1|) (-601 |#1|)))) (-1214) (-1214)) (T -598))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-601 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-601 *6)) (-5 *1 (-598 *5 *6)))))
-(-10 -7 (-15 -3077 ((-601 |#2|) (-1 |#2| |#1|) (-601 |#1|))))
-((-3077 (((-1155 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-1155 |#2|)) 20) (((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-601 |#2|)) 19) (((-601 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-601 |#2|)) 18)))
-(((-599 |#1| |#2| |#3|) (-10 -7 (-15 -3077 ((-601 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-601 |#2|))) (-15 -3077 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-601 |#2|))) (-15 -3077 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-1155 |#2|)))) (-1214) (-1214) (-1214)) (T -599))
-((-3077 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-601 *6)) (-5 *5 (-1155 *7)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-4 *8 (-1214)) (-5 *2 (-1155 *8)) (-5 *1 (-599 *6 *7 *8)))) (-3077 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1155 *6)) (-5 *5 (-601 *7)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-4 *8 (-1214)) (-5 *2 (-1155 *8)) (-5 *1 (-599 *6 *7 *8)))) (-3077 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-601 *6)) (-5 *5 (-601 *7)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-4 *8 (-1214)) (-5 *2 (-601 *8)) (-5 *1 (-599 *6 *7 *8)))))
-(-10 -7 (-15 -3077 ((-601 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-601 |#2|))) (-15 -3077 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-601 |#2|))) (-15 -3077 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-1155 |#2|))))
-((-2892 ((|#3| |#3| (-644 (-612 |#3|)) (-644 (-1175))) 57)) (-2539 (((-169 |#2|) |#3|) 121)) (-4295 ((|#3| (-169 |#2|)) 46)) (-3136 ((|#2| |#3|) 21)) (-3325 ((|#3| |#2|) 35)))
-(((-600 |#1| |#2| |#3|) (-10 -7 (-15 -4295 (|#3| (-169 |#2|))) (-15 -3136 (|#2| |#3|)) (-15 -3325 (|#3| |#2|)) (-15 -2539 ((-169 |#2|) |#3|)) (-15 -2892 (|#3| |#3| (-644 (-612 |#3|)) (-644 (-1175))))) (-558) (-13 (-432 |#1|) (-1002) (-1199)) (-13 (-432 (-169 |#1|)) (-1002) (-1199))) (T -600))
-((-2892 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-644 (-612 *2))) (-5 *4 (-644 (-1175))) (-4 *2 (-13 (-432 (-169 *5)) (-1002) (-1199))) (-4 *5 (-558)) (-5 *1 (-600 *5 *6 *2)) (-4 *6 (-13 (-432 *5) (-1002) (-1199))))) (-2539 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-169 *5)) (-5 *1 (-600 *4 *5 *3)) (-4 *5 (-13 (-432 *4) (-1002) (-1199))) (-4 *3 (-13 (-432 (-169 *4)) (-1002) (-1199))))) (-3325 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *2 (-13 (-432 (-169 *4)) (-1002) (-1199))) (-5 *1 (-600 *4 *3 *2)) (-4 *3 (-13 (-432 *4) (-1002) (-1199))))) (-3136 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *2 (-13 (-432 *4) (-1002) (-1199))) (-5 *1 (-600 *4 *2 *3)) (-4 *3 (-13 (-432 (-169 *4)) (-1002) (-1199))))) (-4295 (*1 *2 *3) (-12 (-5 *3 (-169 *5)) (-4 *5 (-13 (-432 *4) (-1002) (-1199))) (-4 *4 (-558)) (-4 *2 (-13 (-432 (-169 *4)) (-1002) (-1199))) (-5 *1 (-600 *4 *5 *2)))))
-(-10 -7 (-15 -4295 (|#3| (-169 |#2|))) (-15 -3136 (|#2| |#3|)) (-15 -3325 (|#3| |#2|)) (-15 -2539 ((-169 |#2|) |#3|)) (-15 -2892 (|#3| |#3| (-644 (-612 |#3|)) (-644 (-1175)))))
-((-4186 (($ (-1 (-112) |#1|) $) 17)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-4119 (($ (-1 |#1| |#1|) |#1|) 9)) (-4165 (($ (-1 (-112) |#1|) $) 13)) (-4176 (($ (-1 (-112) |#1|) $) 15)) (-2523 (((-1155 |#1|) $) 18)) (-2512 (((-862) $) NIL)))
-(((-601 |#1|) (-13 (-613 (-862)) (-10 -8 (-15 -3077 ($ (-1 |#1| |#1|) $)) (-15 -4165 ($ (-1 (-112) |#1|) $)) (-15 -4176 ($ (-1 (-112) |#1|) $)) (-15 -4186 ($ (-1 (-112) |#1|) $)) (-15 -4119 ($ (-1 |#1| |#1|) |#1|)) (-15 -2523 ((-1155 |#1|) $)))) (-1214)) (T -601))
-((-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3)))) (-4165 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3)))) (-4176 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3)))) (-4186 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3)))) (-4119 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3)))) (-2523 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-601 *3)) (-4 *3 (-1214)))))
-(-13 (-613 (-862)) (-10 -8 (-15 -3077 ($ (-1 |#1| |#1|) $)) (-15 -4165 ($ (-1 (-112) |#1|) $)) (-15 -4176 ($ (-1 (-112) |#1|) $)) (-15 -4186 ($ (-1 (-112) |#1|) $)) (-15 -4119 ($ (-1 |#1| |#1|) |#1|)) (-15 -2523 ((-1155 |#1|) $))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2140 (($ (-771)) NIL (|has| |#1| (-23)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) NIL)) (-3968 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-3643 (((-689 |#1|) $ $) NIL (|has| |#1| (-1049)))) (-4257 (($ (-771) |#1|) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2221 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-3882 (((-112) $ (-771)) NIL)) (-3822 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4062 ((|#1| $) NIL (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-1452 ((|#1| $ $) NIL (|has| |#1| (-1049)))) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-2689 (($ $ $) NIL (|has| |#1| (-1049)))) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) NIL)) (-3704 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3047 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3034 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-566) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-726))) (($ $ |#1|) NIL (|has| |#1| (-726)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3575 (((-1269) (-1157)) 10)))
+(((-584) (-10 -7 (-15 -3575 ((-1269) (-1157))))) (T -584))
+((-3575 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-584)))))
+(-10 -7 (-15 -3575 ((-1269) (-1157))))
+((-3920 (((-587 |#2|) (-587 |#2|)) 42)) (-1351 (((-644 |#2|) (-587 |#2|)) 44)) (-2776 ((|#2| (-587 |#2|)) 50)))
+(((-585 |#1| |#2|) (-10 -7 (-15 -3920 ((-587 |#2|) (-587 |#2|))) (-15 -1351 ((-644 |#2|) (-587 |#2|))) (-15 -2776 (|#2| (-587 |#2|)))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-29 |#1|) (-1199))) (T -585))
+((-2776 (*1 *2 *3) (-12 (-5 *3 (-587 *2)) (-4 *2 (-13 (-29 *4) (-1199))) (-5 *1 (-585 *4 *2)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))))) (-1351 (*1 *2 *3) (-12 (-5 *3 (-587 *5)) (-4 *5 (-13 (-29 *4) (-1199))) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-644 *5)) (-5 *1 (-585 *4 *5)))) (-3920 (*1 *2 *2) (-12 (-5 *2 (-587 *4)) (-4 *4 (-13 (-29 *3) (-1199))) (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-585 *3 *4)))))
+(-10 -7 (-15 -3920 ((-587 |#2|) (-587 |#2|))) (-15 -1351 ((-644 |#2|) (-587 |#2|))) (-15 -2776 (|#2| (-587 |#2|))))
+((-3152 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) 44) (((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed")) 11) (((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-587 |#2|) (-1 |#2| |#1|) (-587 |#1|)) 30)))
+(((-586 |#1| |#2|) (-10 -7 (-15 -3152 ((-587 |#2|) (-1 |#2| |#1|) (-587 |#1|))) (-15 -3152 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -3152 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -3152 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")))) (-365) (-365)) (T -586))
+((-3152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| |mainpart| *5) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *5) (|:| |logand| *5))))) "failed")) (-4 *5 (-365)) (-4 *6 (-365)) (-5 *2 (-2 (|:| |mainpart| *6) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *6) (|:| |logand| *6)))))) (-5 *1 (-586 *5 *6)))) (-3152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed")) (-4 *5 (-365)) (-4 *2 (-365)) (-5 *1 (-586 *5 *2)))) (-3152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -2883 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-365)) (-4 *6 (-365)) (-5 *2 (-2 (|:| -2883 *6) (|:| |coeff| *6))) (-5 *1 (-586 *5 *6)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-587 *5)) (-4 *5 (-365)) (-4 *6 (-365)) (-5 *2 (-587 *6)) (-5 *1 (-586 *5 *6)))))
+(-10 -7 (-15 -3152 ((-587 |#2|) (-1 |#2| |#1|) (-587 |#1|))) (-15 -3152 ((-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2883 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -3152 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -3152 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| |mainpart| |#1|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed"))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) 76)) (-1867 ((|#1| $) NIL)) (-2883 ((|#1| $) 30)) (-1914 (((-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 32)) (-3408 (($ |#1| (-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) (-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 28)) (-1777 (((-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) $) 31)) (-2402 (((-1157) $) NIL)) (-3973 (($ |#1| |#1|) 38) (($ |#1| (-1175)) 49 (|has| |#1| (-1038 (-1175))))) (-4056 (((-1119) $) NIL)) (-3097 (((-112) $) 35)) (-2578 ((|#1| $ (-1 |#1| |#1|)) 88) ((|#1| $ (-1175)) 89 (|has| |#1| (-900 (-1175))))) (-3780 (((-862) $) 112) (($ |#1|) 29)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 18 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) 17) (($ $ $) NIL)) (-3040 (($ $ $) 85)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 16) (($ (-409 (-566)) $) 41) (($ $ (-409 (-566))) NIL)))
+(((-587 |#1|) (-13 (-717 (-409 (-566))) (-1038 |#1|) (-10 -8 (-15 -3408 ($ |#1| (-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) (-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2883 (|#1| $)) (-15 -1777 ((-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) $)) (-15 -1914 ((-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3097 ((-112) $)) (-15 -3973 ($ |#1| |#1|)) (-15 -2578 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-900 (-1175))) (-15 -2578 (|#1| $ (-1175))) |%noBranch|) (IF (|has| |#1| (-1038 (-1175))) (-15 -3973 ($ |#1| (-1175))) |%noBranch|))) (-365)) (T -587))
+((-3408 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 *2)) (|:| |logand| (-1171 *2))))) (-5 *4 (-644 (-2 (|:| |integrand| *2) (|:| |intvar| *2)))) (-4 *2 (-365)) (-5 *1 (-587 *2)))) (-2883 (*1 *2 *1) (-12 (-5 *1 (-587 *2)) (-4 *2 (-365)))) (-1777 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 *3)) (|:| |logand| (-1171 *3))))) (-5 *1 (-587 *3)) (-4 *3 (-365)))) (-1914 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-587 *3)) (-4 *3 (-365)))) (-3097 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-587 *3)) (-4 *3 (-365)))) (-3973 (*1 *1 *2 *2) (-12 (-5 *1 (-587 *2)) (-4 *2 (-365)))) (-2578 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-587 *2)) (-4 *2 (-365)))) (-2578 (*1 *2 *1 *3) (-12 (-4 *2 (-365)) (-4 *2 (-900 *3)) (-5 *1 (-587 *2)) (-5 *3 (-1175)))) (-3973 (*1 *1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *1 (-587 *2)) (-4 *2 (-1038 *3)) (-4 *2 (-365)))))
+(-13 (-717 (-409 (-566))) (-1038 |#1|) (-10 -8 (-15 -3408 ($ |#1| (-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) (-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2883 (|#1| $)) (-15 -1777 ((-644 (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 |#1|)) (|:| |logand| (-1171 |#1|)))) $)) (-15 -1914 ((-644 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3097 ((-112) $)) (-15 -3973 ($ |#1| |#1|)) (-15 -2578 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-900 (-1175))) (-15 -2578 (|#1| $ (-1175))) |%noBranch|) (IF (|has| |#1| (-1038 (-1175))) (-15 -3973 ($ |#1| (-1175))) |%noBranch|)))
+((-4325 (((-112) |#1|) 16)) (-1327 (((-3 |#1| "failed") |#1|) 14)) (-1812 (((-2 (|:| -3819 |#1|) (|:| -2456 (-771))) |#1|) 39) (((-3 |#1| "failed") |#1| (-771)) 18)) (-2807 (((-112) |#1| (-771)) 19)) (-2620 ((|#1| |#1|) 43)) (-1795 ((|#1| |#1| (-771)) 46)))
+(((-588 |#1|) (-10 -7 (-15 -2807 ((-112) |#1| (-771))) (-15 -1812 ((-3 |#1| "failed") |#1| (-771))) (-15 -1812 ((-2 (|:| -3819 |#1|) (|:| -2456 (-771))) |#1|)) (-15 -1795 (|#1| |#1| (-771))) (-15 -4325 ((-112) |#1|)) (-15 -1327 ((-3 |#1| "failed") |#1|)) (-15 -2620 (|#1| |#1|))) (-547)) (T -588))
+((-2620 (*1 *2 *2) (-12 (-5 *1 (-588 *2)) (-4 *2 (-547)))) (-1327 (*1 *2 *2) (|partial| -12 (-5 *1 (-588 *2)) (-4 *2 (-547)))) (-4325 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-588 *3)) (-4 *3 (-547)))) (-1795 (*1 *2 *2 *3) (-12 (-5 *3 (-771)) (-5 *1 (-588 *2)) (-4 *2 (-547)))) (-1812 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -3819 *3) (|:| -2456 (-771)))) (-5 *1 (-588 *3)) (-4 *3 (-547)))) (-1812 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-771)) (-5 *1 (-588 *2)) (-4 *2 (-547)))) (-2807 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-5 *2 (-112)) (-5 *1 (-588 *3)) (-4 *3 (-547)))))
+(-10 -7 (-15 -2807 ((-112) |#1| (-771))) (-15 -1812 ((-3 |#1| "failed") |#1| (-771))) (-15 -1812 ((-2 (|:| -3819 |#1|) (|:| -2456 (-771))) |#1|)) (-15 -1795 (|#1| |#1| (-771))) (-15 -4325 ((-112) |#1|)) (-15 -1327 ((-3 |#1| "failed") |#1|)) (-15 -2620 (|#1| |#1|)))
+((-4109 (((-1171 |#1|) (-921)) 44)))
+(((-589 |#1|) (-10 -7 (-15 -4109 ((-1171 |#1|) (-921)))) (-351)) (T -589))
+((-4109 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-589 *4)) (-4 *4 (-351)))))
+(-10 -7 (-15 -4109 ((-1171 |#1|) (-921))))
+((-3920 (((-587 (-409 (-952 |#1|))) (-587 (-409 (-952 |#1|)))) 27)) (-3921 (((-3 (-317 |#1|) (-644 (-317 |#1|))) (-409 (-952 |#1|)) (-1175)) 34 (|has| |#1| (-147)))) (-1351 (((-644 (-317 |#1|)) (-587 (-409 (-952 |#1|)))) 19)) (-2720 (((-317 |#1|) (-409 (-952 |#1|)) (-1175)) 32 (|has| |#1| (-147)))) (-2776 (((-317 |#1|) (-587 (-409 (-952 |#1|)))) 21)))
+(((-590 |#1|) (-10 -7 (-15 -3920 ((-587 (-409 (-952 |#1|))) (-587 (-409 (-952 |#1|))))) (-15 -1351 ((-644 (-317 |#1|)) (-587 (-409 (-952 |#1|))))) (-15 -2776 ((-317 |#1|) (-587 (-409 (-952 |#1|))))) (IF (|has| |#1| (-147)) (PROGN (-15 -3921 ((-3 (-317 |#1|) (-644 (-317 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -2720 ((-317 |#1|) (-409 (-952 |#1|)) (-1175)))) |%noBranch|)) (-13 (-454) (-1038 (-566)) (-639 (-566)))) (T -590))
+((-2720 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-147)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-317 *5)) (-5 *1 (-590 *5)))) (-3921 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-147)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (-317 *5) (-644 (-317 *5)))) (-5 *1 (-590 *5)))) (-2776 (*1 *2 *3) (-12 (-5 *3 (-587 (-409 (-952 *4)))) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-317 *4)) (-5 *1 (-590 *4)))) (-1351 (*1 *2 *3) (-12 (-5 *3 (-587 (-409 (-952 *4)))) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-644 (-317 *4))) (-5 *1 (-590 *4)))) (-3920 (*1 *2 *2) (-12 (-5 *2 (-587 (-409 (-952 *3)))) (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-590 *3)))))
+(-10 -7 (-15 -3920 ((-587 (-409 (-952 |#1|))) (-587 (-409 (-952 |#1|))))) (-15 -1351 ((-644 (-317 |#1|)) (-587 (-409 (-952 |#1|))))) (-15 -2776 ((-317 |#1|) (-587 (-409 (-952 |#1|))))) (IF (|has| |#1| (-147)) (PROGN (-15 -3921 ((-3 (-317 |#1|) (-644 (-317 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -2720 ((-317 |#1|) (-409 (-952 |#1|)) (-1175)))) |%noBranch|))
+((-3180 (((-644 (-689 (-566))) (-644 (-566)) (-644 (-905 (-566)))) 78) (((-644 (-689 (-566))) (-644 (-566))) 79) (((-689 (-566)) (-644 (-566)) (-905 (-566))) 72)) (-2080 (((-771) (-644 (-566))) 69)))
+(((-591) (-10 -7 (-15 -2080 ((-771) (-644 (-566)))) (-15 -3180 ((-689 (-566)) (-644 (-566)) (-905 (-566)))) (-15 -3180 ((-644 (-689 (-566))) (-644 (-566)))) (-15 -3180 ((-644 (-689 (-566))) (-644 (-566)) (-644 (-905 (-566))))))) (T -591))
+((-3180 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-566))) (-5 *4 (-644 (-905 (-566)))) (-5 *2 (-644 (-689 (-566)))) (-5 *1 (-591)))) (-3180 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-644 (-689 (-566)))) (-5 *1 (-591)))) (-3180 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-566))) (-5 *4 (-905 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-591)))) (-2080 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-771)) (-5 *1 (-591)))))
+(-10 -7 (-15 -2080 ((-771) (-644 (-566)))) (-15 -3180 ((-689 (-566)) (-644 (-566)) (-905 (-566)))) (-15 -3180 ((-644 (-689 (-566))) (-644 (-566)))) (-15 -3180 ((-644 (-689 (-566))) (-644 (-566)) (-644 (-905 (-566))))))
+((-3323 (((-644 |#5|) |#5| (-112)) 100)) (-1798 (((-112) |#5| (-644 |#5|)) 34)))
+(((-592 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3323 ((-644 |#5|) |#5| (-112))) (-15 -1798 ((-112) |#5| (-644 |#5|)))) (-13 (-308) (-147)) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1108 |#1| |#2| |#3| |#4|)) (T -592))
+((-1798 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-1108 *5 *6 *7 *8)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-592 *5 *6 *7 *8 *3)))) (-3323 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-644 *3)) (-5 *1 (-592 *5 *6 *7 *8 *3)) (-4 *3 (-1108 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3323 ((-644 |#5|) |#5| (-112))) (-15 -1798 ((-112) |#5| (-644 |#5|))))
+((-3009 (((-112) $ $) NIL)) (-3361 (((-1134) $) 11)) (-3349 (((-1134) $) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-593) (-13 (-1082) (-10 -8 (-15 -3349 ((-1134) $)) (-15 -3361 ((-1134) $))))) (T -593))
+((-3349 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-593)))) (-3361 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-593)))))
+(-13 (-1082) (-10 -8 (-15 -3349 ((-1134) $)) (-15 -3361 ((-1134) $))))
+((-3009 (((-112) $ $) NIL (|has| (-144) (-1099)))) (-2107 (($ $) 38)) (-4146 (($ $) NIL)) (-1884 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-2329 (((-112) $ $) 68)) (-2307 (((-112) $ $ (-566)) 62)) (-3920 (((-644 $) $ (-144)) 76) (((-644 $) $ (-141)) 77)) (-3070 (((-112) (-1 (-112) (-144) (-144)) $) NIL) (((-112) $) NIL (|has| (-144) (-850)))) (-1570 (($ (-1 (-112) (-144) (-144)) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| (-144) (-850))))) (-1568 (($ (-1 (-112) (-144) (-144)) $) NIL) (($ $) NIL (|has| (-144) (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 (((-144) $ (-566) (-144)) 59 (|has| $ (-6 -4415))) (((-144) $ (-1231 (-566)) (-144)) NIL (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-1660 (($ $ (-144)) 81) (($ $ (-141)) 82)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-3956 (($ $ (-1231 (-566)) $) 57)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-2661 (($ (-144) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099)))) (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4414))) (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4414)))) (-3128 (((-144) $ (-566) (-144)) NIL (|has| $ (-6 -4415)))) (-3059 (((-144) $ (-566)) NIL)) (-2353 (((-112) $ $) 95)) (-4015 (((-566) (-1 (-112) (-144)) $) NIL) (((-566) (-144) $) NIL (|has| (-144) (-1099))) (((-566) (-144) $ (-566)) 65 (|has| (-144) (-1099))) (((-566) $ $ (-566)) 63) (((-566) (-141) $ (-566)) 67)) (-3799 (((-644 (-144)) $) NIL (|has| $ (-6 -4414)))) (-4278 (($ (-771) (-144)) 9)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) 32 (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| (-144) (-850)))) (-3891 (($ (-1 (-112) (-144) (-144)) $ $) NIL) (($ $ $) NIL (|has| (-144) (-850)))) (-3276 (((-644 (-144)) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-2579 (((-566) $) 47 (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| (-144) (-850)))) (-4039 (((-112) $ $ (-144)) 96)) (-2810 (((-771) $ $ (-144)) 93)) (-3117 (($ (-1 (-144) (-144)) $) 37 (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-144) (-144)) $) NIL) (($ (-1 (-144) (-144) (-144)) $ $) NIL)) (-1718 (($ $) 41)) (-3160 (($ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-1672 (($ $ (-144)) 78) (($ $ (-141)) 79)) (-2402 (((-1157) $) 43 (|has| (-144) (-1099)))) (-4286 (($ (-144) $ (-566)) NIL) (($ $ $ (-566)) 27)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-566) $) 92) (((-1119) $) NIL (|has| (-144) (-1099)))) (-4101 (((-144) $) NIL (|has| (-566) (-850)))) (-3591 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-3750 (($ $ (-144)) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-144)))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-295 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-644 (-144)) (-644 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-2684 (((-644 (-144)) $) NIL)) (-3461 (((-112) $) 15)) (-1793 (($) 10)) (-4393 (((-144) $ (-566) (-144)) NIL) (((-144) $ (-566)) 69) (($ $ (-1231 (-566))) 25) (($ $ $) NIL)) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4067 (((-771) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414))) (((-771) (-144) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-3610 (($ $ $ (-566)) 84 (|has| $ (-6 -4415)))) (-3940 (($ $) 20)) (-3204 (((-538) $) NIL (|has| (-144) (-614 (-538))))) (-3791 (($ (-644 (-144))) NIL)) (-3727 (($ $ (-144)) NIL) (($ (-144) $) NIL) (($ $ $) 19) (($ (-644 $)) 85)) (-3780 (($ (-144)) NIL) (((-862) $) 31 (|has| (-144) (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| (-144) (-1099)))) (-1583 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2950 (((-112) $ $) 17 (|has| (-144) (-1099)))) (-2999 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2972 (((-112) $ $) 18 (|has| (-144) (-850)))) (-3020 (((-771) $) 16 (|has| $ (-6 -4414)))))
+(((-594 |#1|) (-13 (-1143) (-10 -8 (-15 -4056 ((-566) $)))) (-566)) (T -594))
+((-4056 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-594 *3)) (-14 *3 *2))))
+(-13 (-1143) (-10 -8 (-15 -4056 ((-566) $))))
+((-1441 (((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2| (-1093 |#4|)) 32)))
+(((-595 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1441 ((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2| (-1093 |#4|))) (-15 -1441 ((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2|))) (-793) (-850) (-558) (-949 |#3| |#1| |#2|)) (T -595))
+((-1441 (*1 *2 *3 *4) (-12 (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-558)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-566)))) (-5 *1 (-595 *5 *4 *6 *3)) (-4 *3 (-949 *6 *5 *4)))) (-1441 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1093 *3)) (-4 *3 (-949 *7 *6 *4)) (-4 *6 (-793)) (-4 *4 (-850)) (-4 *7 (-558)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-566)))) (-5 *1 (-595 *6 *4 *7 *3)))))
+(-10 -7 (-15 -1441 ((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2| (-1093 |#4|))) (-15 -1441 ((-2 (|:| |num| |#4|) (|:| |den| (-566))) |#4| |#2|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 72)) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2922 (($ $ (-566)) 58) (($ $ (-566) (-566)) 59)) (-2455 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) 65)) (-2765 (($ $) 110)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2698 (((-862) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) (-1026 (-843 (-566))) (-1175) |#1| (-409 (-566))) 243)) (-1903 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) 36)) (-3877 (($) NIL T CONST)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-4392 (((-112) $) NIL)) (-3227 (((-566) $) 63) (((-566) $ (-566)) 64)) (-3466 (((-112) $) NIL)) (-1644 (($ $ (-921)) 84)) (-2654 (($ (-1 |#1| (-566)) $) 81)) (-1453 (((-112) $) 26)) (-2585 (($ |#1| (-566)) 22) (($ $ (-1081) (-566)) NIL) (($ $ (-644 (-1081)) (-644 (-566))) NIL)) (-3152 (($ (-1 |#1| |#1|) $) 76)) (-3175 (($ (-1026 (-843 (-566))) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) 13)) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-3921 (($ $) 163 (|has| |#1| (-38 (-409 (-566)))))) (-3440 (((-3 $ "failed") $ $ (-112)) 109)) (-1930 (($ $ $) 117)) (-4056 (((-1119) $) NIL)) (-3534 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) 15)) (-3725 (((-1026 (-843 (-566))) $) 14)) (-2295 (($ $ (-566)) 47)) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-2095 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-566)))))) (-4393 ((|#1| $ (-566)) 62) (($ $ $) NIL (|has| (-566) (-1111)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-566) |#1|)))) (($ $) 78 (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (-2108 (((-566) $) NIL)) (-1377 (($ $) 48)) (-3780 (((-862) $) NIL) (($ (-566)) 29) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558))) (($ |#1|) 28 (|has| |#1| (-172)))) (-3756 ((|#1| $ (-566)) 61)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) 39 T CONST)) (-3174 ((|#1| $) NIL)) (-3353 (($ $) 201 (|has| |#1| (-38 (-409 (-566)))))) (-4103 (($ $) 171 (|has| |#1| (-38 (-409 (-566)))))) (-3656 (($ $) 205 (|has| |#1| (-38 (-409 (-566)))))) (-2802 (($ $) 176 (|has| |#1| (-38 (-409 (-566)))))) (-3178 (($ $) 204 (|has| |#1| (-38 (-409 (-566)))))) (-4131 (($ $) 175 (|has| |#1| (-38 (-409 (-566)))))) (-3950 (($ $ (-409 (-566))) 179 (|has| |#1| (-38 (-409 (-566)))))) (-2770 (($ $ |#1|) 159 (|has| |#1| (-38 (-409 (-566)))))) (-2529 (($ $) 207 (|has| |#1| (-38 (-409 (-566)))))) (-1642 (($ $) 162 (|has| |#1| (-38 (-409 (-566)))))) (-3820 (($ $) 206 (|has| |#1| (-38 (-409 (-566)))))) (-3734 (($ $) 177 (|has| |#1| (-38 (-409 (-566)))))) (-4072 (($ $) 202 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 173 (|has| |#1| (-38 (-409 (-566)))))) (-2145 (($ $) 203 (|has| |#1| (-38 (-409 (-566)))))) (-1307 (($ $) 174 (|has| |#1| (-38 (-409 (-566)))))) (-2262 (($ $) 212 (|has| |#1| (-38 (-409 (-566)))))) (-3189 (($ $) 188 (|has| |#1| (-38 (-409 (-566)))))) (-2740 (($ $) 209 (|has| |#1| (-38 (-409 (-566)))))) (-4375 (($ $) 183 (|has| |#1| (-38 (-409 (-566)))))) (-3642 (($ $) 216 (|has| |#1| (-38 (-409 (-566)))))) (-4260 (($ $) 192 (|has| |#1| (-38 (-409 (-566)))))) (-1842 (($ $) 218 (|has| |#1| (-38 (-409 (-566)))))) (-2567 (($ $) 194 (|has| |#1| (-38 (-409 (-566)))))) (-1420 (($ $) 214 (|has| |#1| (-38 (-409 (-566)))))) (-3889 (($ $) 190 (|has| |#1| (-38 (-409 (-566)))))) (-2084 (($ $) 211 (|has| |#1| (-38 (-409 (-566)))))) (-2963 (($ $) 186 (|has| |#1| (-38 (-409 (-566)))))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3651 ((|#1| $ (-566)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-2493 (($) 30 T CONST)) (-4333 (($) 40 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-566) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (-2950 (((-112) $ $) 74)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) 92) (($ $ $) 73)) (-3040 (($ $ $) 89)) (** (($ $ (-921)) NIL) (($ $ (-771)) 112)) (* (($ (-921) $) 99) (($ (-771) $) 97) (($ (-566) $) 94) (($ $ $) 105) (($ $ |#1|) NIL) (($ |#1| $) 124) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-596 |#1|) (-13 (-1242 |#1| (-566)) (-10 -8 (-15 -3175 ($ (-1026 (-843 (-566))) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))))) (-15 -3725 ((-1026 (-843 (-566))) $)) (-15 -3534 ((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $)) (-15 -1903 ($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))))) (-15 -1453 ((-112) $)) (-15 -2654 ($ (-1 |#1| (-566)) $)) (-15 -3440 ((-3 $ "failed") $ $ (-112))) (-15 -2765 ($ $)) (-15 -1930 ($ $ $)) (-15 -2698 ((-862) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) (-1026 (-843 (-566))) (-1175) |#1| (-409 (-566)))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ($ $)) (-15 -2770 ($ $ |#1|)) (-15 -3950 ($ $ (-409 (-566)))) (-15 -1642 ($ $)) (-15 -2529 ($ $)) (-15 -2802 ($ $)) (-15 -1307 ($ $)) (-15 -4103 ($ $)) (-15 -3146 ($ $)) (-15 -4131 ($ $)) (-15 -3734 ($ $)) (-15 -4375 ($ $)) (-15 -2963 ($ $)) (-15 -3189 ($ $)) (-15 -3889 ($ $)) (-15 -4260 ($ $)) (-15 -2567 ($ $)) (-15 -3656 ($ $)) (-15 -2145 ($ $)) (-15 -3353 ($ $)) (-15 -4072 ($ $)) (-15 -3178 ($ $)) (-15 -3820 ($ $)) (-15 -2740 ($ $)) (-15 -2084 ($ $)) (-15 -2262 ($ $)) (-15 -1420 ($ $)) (-15 -3642 ($ $)) (-15 -1842 ($ $))) |%noBranch|))) (-1049)) (T -596))
+((-1453 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-596 *3)) (-4 *3 (-1049)))) (-3175 (*1 *1 *2 *3) (-12 (-5 *2 (-1026 (-843 (-566)))) (-5 *3 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *4)))) (-4 *4 (-1049)) (-5 *1 (-596 *4)))) (-3725 (*1 *2 *1) (-12 (-5 *2 (-1026 (-843 (-566)))) (-5 *1 (-596 *3)) (-4 *3 (-1049)))) (-3534 (*1 *2 *1) (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3)))) (-5 *1 (-596 *3)) (-4 *3 (-1049)))) (-1903 (*1 *1 *2) (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3)))) (-4 *3 (-1049)) (-5 *1 (-596 *3)))) (-2654 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-566))) (-4 *3 (-1049)) (-5 *1 (-596 *3)))) (-3440 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-596 *3)) (-4 *3 (-1049)))) (-2765 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-1049)))) (-1930 (*1 *1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-1049)))) (-2698 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *6)))) (-5 *4 (-1026 (-843 (-566)))) (-5 *5 (-1175)) (-5 *7 (-409 (-566))) (-4 *6 (-1049)) (-5 *2 (-862)) (-5 *1 (-596 *6)))) (-3921 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2770 (*1 *1 *1 *2) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3950 (*1 *1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-596 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1049)))) (-1642 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2529 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2802 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-1307 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-4103 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3146 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-4131 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3734 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-4375 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2963 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3189 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3889 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-4260 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2567 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3656 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2145 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3353 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-4072 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3178 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3820 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2740 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2084 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-2262 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-1420 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-3642 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))) (-1842 (*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(-13 (-1242 |#1| (-566)) (-10 -8 (-15 -3175 ($ (-1026 (-843 (-566))) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))))) (-15 -3725 ((-1026 (-843 (-566))) $)) (-15 -3534 ((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $)) (-15 -1903 ($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))))) (-15 -1453 ((-112) $)) (-15 -2654 ($ (-1 |#1| (-566)) $)) (-15 -3440 ((-3 $ "failed") $ $ (-112))) (-15 -2765 ($ $)) (-15 -1930 ($ $ $)) (-15 -2698 ((-862) (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) (-1026 (-843 (-566))) (-1175) |#1| (-409 (-566)))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ($ $)) (-15 -2770 ($ $ |#1|)) (-15 -3950 ($ $ (-409 (-566)))) (-15 -1642 ($ $)) (-15 -2529 ($ $)) (-15 -2802 ($ $)) (-15 -1307 ($ $)) (-15 -4103 ($ $)) (-15 -3146 ($ $)) (-15 -4131 ($ $)) (-15 -3734 ($ $)) (-15 -4375 ($ $)) (-15 -2963 ($ $)) (-15 -3189 ($ $)) (-15 -3889 ($ $)) (-15 -4260 ($ $)) (-15 -2567 ($ $)) (-15 -3656 ($ $)) (-15 -2145 ($ $)) (-15 -3353 ($ $)) (-15 -4072 ($ $)) (-15 -3178 ($ $)) (-15 -3820 ($ $)) (-15 -2740 ($ $)) (-15 -2084 ($ $)) (-15 -2262 ($ $)) (-15 -1420 ($ $)) (-15 -3642 ($ $)) (-15 -1842 ($ $))) |%noBranch|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-1903 (($ (-1155 |#1|)) 9)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) 48)) (-4392 (((-112) $) 58)) (-3227 (((-771) $) 63) (((-771) $ (-771)) 62)) (-3466 (((-112) $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2997 (((-3 $ "failed") $ $) 50 (|has| |#1| (-558)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL (|has| |#1| (-558)))) (-3456 (((-1155 |#1|) $) 29)) (-3996 (((-771)) 57 T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2493 (($) 10 T CONST)) (-4333 (($) 14 T CONST)) (-2950 (((-112) $ $) 28)) (-3051 (($ $) 36) (($ $ $) 16)) (-3040 (($ $ $) 31)) (** (($ $ (-921)) NIL) (($ $ (-771)) 55)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 40) (($ $ $) 34) (($ |#1| $) 43) (($ $ |#1|) 44) (($ $ (-566)) 42)))
+(((-597 |#1|) (-13 (-1049) (-10 -8 (-15 -3456 ((-1155 |#1|) $)) (-15 -1903 ($ (-1155 |#1|))) (-15 -4392 ((-112) $)) (-15 -3227 ((-771) $)) (-15 -3227 ((-771) $ (-771))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-566))) (IF (|has| |#1| (-558)) (-6 (-558)) |%noBranch|))) (-1049)) (T -597))
+((-3456 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-597 *3)) (-4 *3 (-1049)))) (-1903 (*1 *1 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-597 *3)))) (-4392 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-597 *3)) (-4 *3 (-1049)))) (-3227 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-597 *3)) (-4 *3 (-1049)))) (-3227 (*1 *2 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-597 *3)) (-4 *3 (-1049)))) (* (*1 *1 *2 *1) (-12 (-5 *1 (-597 *2)) (-4 *2 (-1049)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-597 *2)) (-4 *2 (-1049)))) (* (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-597 *3)) (-4 *3 (-1049)))))
+(-13 (-1049) (-10 -8 (-15 -3456 ((-1155 |#1|) $)) (-15 -1903 ($ (-1155 |#1|))) (-15 -4392 ((-112) $)) (-15 -3227 ((-771) $)) (-15 -3227 ((-771) $ (-771))) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 * ($ $ (-566))) (IF (|has| |#1| (-558)) (-6 (-558)) |%noBranch|)))
+((-3152 (((-601 |#2|) (-1 |#2| |#1|) (-601 |#1|)) 15)))
+(((-598 |#1| |#2|) (-10 -7 (-15 -3152 ((-601 |#2|) (-1 |#2| |#1|) (-601 |#1|)))) (-1214) (-1214)) (T -598))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-601 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-601 *6)) (-5 *1 (-598 *5 *6)))))
+(-10 -7 (-15 -3152 ((-601 |#2|) (-1 |#2| |#1|) (-601 |#1|))))
+((-3152 (((-1155 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-1155 |#2|)) 20) (((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-601 |#2|)) 19) (((-601 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-601 |#2|)) 18)))
+(((-599 |#1| |#2| |#3|) (-10 -7 (-15 -3152 ((-601 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-601 |#2|))) (-15 -3152 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-601 |#2|))) (-15 -3152 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-1155 |#2|)))) (-1214) (-1214) (-1214)) (T -599))
+((-3152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-601 *6)) (-5 *5 (-1155 *7)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-4 *8 (-1214)) (-5 *2 (-1155 *8)) (-5 *1 (-599 *6 *7 *8)))) (-3152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1155 *6)) (-5 *5 (-601 *7)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-4 *8 (-1214)) (-5 *2 (-1155 *8)) (-5 *1 (-599 *6 *7 *8)))) (-3152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-601 *6)) (-5 *5 (-601 *7)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-4 *8 (-1214)) (-5 *2 (-601 *8)) (-5 *1 (-599 *6 *7 *8)))))
+(-10 -7 (-15 -3152 ((-601 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-601 |#2|))) (-15 -3152 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-601 |#2|))) (-15 -3152 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-601 |#1|) (-1155 |#2|))))
+((-4390 ((|#3| |#3| (-644 (-612 |#3|)) (-644 (-1175))) 57)) (-2068 (((-169 |#2|) |#3|) 121)) (-1992 ((|#3| (-169 |#2|)) 46)) (-3900 ((|#2| |#3|) 21)) (-1869 ((|#3| |#2|) 35)))
+(((-600 |#1| |#2| |#3|) (-10 -7 (-15 -1992 (|#3| (-169 |#2|))) (-15 -3900 (|#2| |#3|)) (-15 -1869 (|#3| |#2|)) (-15 -2068 ((-169 |#2|) |#3|)) (-15 -4390 (|#3| |#3| (-644 (-612 |#3|)) (-644 (-1175))))) (-558) (-13 (-432 |#1|) (-1002) (-1199)) (-13 (-432 (-169 |#1|)) (-1002) (-1199))) (T -600))
+((-4390 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-644 (-612 *2))) (-5 *4 (-644 (-1175))) (-4 *2 (-13 (-432 (-169 *5)) (-1002) (-1199))) (-4 *5 (-558)) (-5 *1 (-600 *5 *6 *2)) (-4 *6 (-13 (-432 *5) (-1002) (-1199))))) (-2068 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-169 *5)) (-5 *1 (-600 *4 *5 *3)) (-4 *5 (-13 (-432 *4) (-1002) (-1199))) (-4 *3 (-13 (-432 (-169 *4)) (-1002) (-1199))))) (-1869 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *2 (-13 (-432 (-169 *4)) (-1002) (-1199))) (-5 *1 (-600 *4 *3 *2)) (-4 *3 (-13 (-432 *4) (-1002) (-1199))))) (-3900 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *2 (-13 (-432 *4) (-1002) (-1199))) (-5 *1 (-600 *4 *2 *3)) (-4 *3 (-13 (-432 (-169 *4)) (-1002) (-1199))))) (-1992 (*1 *2 *3) (-12 (-5 *3 (-169 *5)) (-4 *5 (-13 (-432 *4) (-1002) (-1199))) (-4 *4 (-558)) (-4 *2 (-13 (-432 (-169 *4)) (-1002) (-1199))) (-5 *1 (-600 *4 *5 *2)))))
+(-10 -7 (-15 -1992 (|#3| (-169 |#2|))) (-15 -3900 (|#2| |#3|)) (-15 -1869 (|#3| |#2|)) (-15 -2068 ((-169 |#2|) |#3|)) (-15 -4390 (|#3| |#3| (-644 (-612 |#3|)) (-644 (-1175)))))
+((-1386 (($ (-1 (-112) |#1|) $) 17)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1318 (($ (-1 |#1| |#1|) |#1|) 9)) (-1363 (($ (-1 (-112) |#1|) $) 13)) (-1375 (($ (-1 (-112) |#1|) $) 15)) (-3791 (((-1155 |#1|) $) 18)) (-3780 (((-862) $) NIL)))
+(((-601 |#1|) (-13 (-613 (-862)) (-10 -8 (-15 -3152 ($ (-1 |#1| |#1|) $)) (-15 -1363 ($ (-1 (-112) |#1|) $)) (-15 -1375 ($ (-1 (-112) |#1|) $)) (-15 -1386 ($ (-1 (-112) |#1|) $)) (-15 -1318 ($ (-1 |#1| |#1|) |#1|)) (-15 -3791 ((-1155 |#1|) $)))) (-1214)) (T -601))
+((-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3)))) (-1363 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3)))) (-1375 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3)))) (-1386 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3)))) (-1318 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3)))) (-3791 (*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-601 *3)) (-4 *3 (-1214)))))
+(-13 (-613 (-862)) (-10 -8 (-15 -3152 ($ (-1 |#1| |#1|) $)) (-15 -1363 ($ (-1 (-112) |#1|) $)) (-15 -1375 ($ (-1 (-112) |#1|) $)) (-15 -1386 ($ (-1 (-112) |#1|) $)) (-15 -1318 ($ (-1 |#1| |#1|) |#1|)) (-15 -3791 ((-1155 |#1|) $))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2181 (($ (-771)) NIL (|has| |#1| (-23)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) NIL)) (-4015 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-3774 (((-689 |#1|) $ $) NIL (|has| |#1| (-1049)))) (-4278 (($ (-771) |#1|) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2029 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-3582 (((-112) $ (-771)) NIL)) (-3945 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4101 ((|#1| $) NIL (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4086 ((|#1| $ $) NIL (|has| |#1| (-1049)))) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4173 (($ $ $) NIL (|has| |#1| (-1049)))) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) NIL)) (-3727 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3051 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3040 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-566) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-726))) (($ $ |#1|) NIL (|has| |#1| (-726)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-602 |#1| |#2|) (-1262 |#1|) (-1214) (-566)) (T -602))
NIL
(-1262 |#1|)
-((-1537 (((-1269) $ |#2| |#2|) 36)) (-2160 ((|#2| $) 23)) (-1544 ((|#2| $) 21)) (-1323 (($ (-1 |#3| |#3|) $) 32)) (-3077 (($ (-1 |#3| |#3|) $) 30)) (-4062 ((|#3| $) 26)) (-1720 (($ $ |#3|) 33)) (-4326 (((-112) |#3| $) 17)) (-2784 (((-644 |#3|) $) 15)) (-4386 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
-(((-603 |#1| |#2| |#3|) (-10 -8 (-15 -1537 ((-1269) |#1| |#2| |#2|)) (-15 -1720 (|#1| |#1| |#3|)) (-15 -4062 (|#3| |#1|)) (-15 -2160 (|#2| |#1|)) (-15 -1544 (|#2| |#1|)) (-15 -4326 ((-112) |#3| |#1|)) (-15 -2784 ((-644 |#3|) |#1|)) (-15 -4386 (|#3| |#1| |#2|)) (-15 -4386 (|#3| |#1| |#2| |#3|)) (-15 -1323 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3077 (|#1| (-1 |#3| |#3|) |#1|))) (-604 |#2| |#3|) (-1099) (-1214)) (T -603))
+((-2518 (((-1269) $ |#2| |#2|) 36)) (-2712 ((|#2| $) 23)) (-2579 ((|#2| $) 21)) (-3117 (($ (-1 |#3| |#3|) $) 32)) (-3152 (($ (-1 |#3| |#3|) $) 30)) (-4101 ((|#3| $) 26)) (-3750 (($ $ |#3|) 33)) (-2298 (((-112) |#3| $) 17)) (-2684 (((-644 |#3|) $) 15)) (-4393 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
+(((-603 |#1| |#2| |#3|) (-10 -8 (-15 -2518 ((-1269) |#1| |#2| |#2|)) (-15 -3750 (|#1| |#1| |#3|)) (-15 -4101 (|#3| |#1|)) (-15 -2712 (|#2| |#1|)) (-15 -2579 (|#2| |#1|)) (-15 -2298 ((-112) |#3| |#1|)) (-15 -2684 ((-644 |#3|) |#1|)) (-15 -4393 (|#3| |#1| |#2|)) (-15 -4393 (|#3| |#1| |#2| |#3|)) (-15 -3117 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3152 (|#1| (-1 |#3| |#3|) |#1|))) (-604 |#2| |#3|) (-1099) (-1214)) (T -603))
NIL
-(-10 -8 (-15 -1537 ((-1269) |#1| |#2| |#2|)) (-15 -1720 (|#1| |#1| |#3|)) (-15 -4062 (|#3| |#1|)) (-15 -2160 (|#2| |#1|)) (-15 -1544 (|#2| |#1|)) (-15 -4326 ((-112) |#3| |#1|)) (-15 -2784 ((-644 |#3|) |#1|)) (-15 -4386 (|#3| |#1| |#2|)) (-15 -4386 (|#3| |#1| |#2| |#3|)) (-15 -1323 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3077 (|#1| (-1 |#3| |#3|) |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#2| (-1099)))) (-1537 (((-1269) $ |#1| |#1|) 41 (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) 8)) (-3874 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4418)))) (-2342 (($) 7 T CONST)) (-1332 ((|#2| $ |#1| |#2|) 54 (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) 52)) (-3372 (((-644 |#2|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2160 ((|#1| $) 44 (|has| |#1| (-850)))) (-2404 (((-644 |#2|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4417))))) (-1544 ((|#1| $) 45 (|has| |#1| (-850)))) (-1323 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#2| |#2|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#2| (-1099)))) (-1922 (((-644 |#1|) $) 47)) (-2040 (((-112) |#1| $) 48)) (-4033 (((-1119) $) 21 (|has| |#2| (-1099)))) (-4062 ((|#2| $) 43 (|has| |#1| (-850)))) (-1720 (($ $ |#2|) 42 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#2|))) 27 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) 26 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) 25 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) 24 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#2| $ |#1| |#2|) 51) ((|#2| $ |#1|) 50)) (-4044 (((-771) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4417))) (((-771) |#2| $) 29 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-862) $) 18 (|has| |#2| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#2| (-1099)))) (-3427 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#2| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+(-10 -8 (-15 -2518 ((-1269) |#1| |#2| |#2|)) (-15 -3750 (|#1| |#1| |#3|)) (-15 -4101 (|#3| |#1|)) (-15 -2712 (|#2| |#1|)) (-15 -2579 (|#2| |#1|)) (-15 -2298 ((-112) |#3| |#1|)) (-15 -2684 ((-644 |#3|) |#1|)) (-15 -4393 (|#3| |#1| |#2|)) (-15 -4393 (|#3| |#1| |#2| |#3|)) (-15 -3117 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3152 (|#1| (-1 |#3| |#3|) |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#2| (-1099)))) (-2518 (((-1269) $ |#1| |#1|) 41 (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) 8)) (-3916 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4415)))) (-3877 (($) 7 T CONST)) (-3128 ((|#2| $ |#1| |#2|) 54 (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) 52)) (-3799 (((-644 |#2|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-2712 ((|#1| $) 44 (|has| |#1| (-850)))) (-3276 (((-644 |#2|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4414))))) (-2579 ((|#1| $) 45 (|has| |#1| (-850)))) (-3117 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#2| |#2|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#2| (-1099)))) (-2140 (((-644 |#1|) $) 47)) (-3935 (((-112) |#1| $) 48)) (-4056 (((-1119) $) 21 (|has| |#2| (-1099)))) (-4101 ((|#2| $) 43 (|has| |#1| (-850)))) (-3750 (($ $ |#2|) 42 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#2|))) 27 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) 26 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) 25 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) 24 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#2| $ |#1| |#2|) 51) ((|#2| $ |#1|) 50)) (-4067 (((-771) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4414))) (((-771) |#2| $) 29 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-862) $) 18 (|has| |#2| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#2| (-1099)))) (-1583 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#2| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-604 |#1| |#2|) (-140) (-1099) (-1214)) (T -604))
-((-2784 (*1 *2 *1) (-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214)) (-5 *2 (-644 *4)))) (-2040 (*1 *2 *3 *1) (-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214)) (-5 *2 (-112)))) (-1922 (*1 *2 *1) (-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214)) (-5 *2 (-644 *3)))) (-4326 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4417)) (-4 *1 (-604 *4 *3)) (-4 *4 (-1099)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-1544 (*1 *2 *1) (-12 (-4 *1 (-604 *2 *3)) (-4 *3 (-1214)) (-4 *2 (-1099)) (-4 *2 (-850)))) (-2160 (*1 *2 *1) (-12 (-4 *1 (-604 *2 *3)) (-4 *3 (-1214)) (-4 *2 (-1099)) (-4 *2 (-850)))) (-4062 (*1 *2 *1) (-12 (-4 *1 (-604 *3 *2)) (-4 *3 (-1099)) (-4 *3 (-850)) (-4 *2 (-1214)))) (-1720 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-604 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))) (-1537 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214)) (-5 *2 (-1269)))))
-(-13 (-491 |t#2|) (-289 |t#1| |t#2|) (-10 -8 (-15 -2784 ((-644 |t#2|) $)) (-15 -2040 ((-112) |t#1| $)) (-15 -1922 ((-644 |t#1|) $)) (IF (|has| |t#2| (-1099)) (IF (|has| $ (-6 -4417)) (-15 -4326 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-850)) (PROGN (-15 -1544 (|t#1| $)) (-15 -2160 (|t#1| $)) (-15 -4062 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4418)) (PROGN (-15 -1720 ($ $ |t#2|)) (-15 -1537 ((-1269) $ |t#1| |t#1|))) |%noBranch|)))
+((-2684 (*1 *2 *1) (-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214)) (-5 *2 (-644 *4)))) (-3935 (*1 *2 *3 *1) (-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214)) (-5 *2 (-112)))) (-2140 (*1 *2 *1) (-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214)) (-5 *2 (-644 *3)))) (-2298 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4414)) (-4 *1 (-604 *4 *3)) (-4 *4 (-1099)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-2579 (*1 *2 *1) (-12 (-4 *1 (-604 *2 *3)) (-4 *3 (-1214)) (-4 *2 (-1099)) (-4 *2 (-850)))) (-2712 (*1 *2 *1) (-12 (-4 *1 (-604 *2 *3)) (-4 *3 (-1214)) (-4 *2 (-1099)) (-4 *2 (-850)))) (-4101 (*1 *2 *1) (-12 (-4 *1 (-604 *3 *2)) (-4 *3 (-1099)) (-4 *3 (-850)) (-4 *2 (-1214)))) (-3750 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-604 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214)))) (-2518 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214)) (-5 *2 (-1269)))))
+(-13 (-491 |t#2|) (-289 |t#1| |t#2|) (-10 -8 (-15 -2684 ((-644 |t#2|) $)) (-15 -3935 ((-112) |t#1| $)) (-15 -2140 ((-644 |t#1|) $)) (IF (|has| |t#2| (-1099)) (IF (|has| $ (-6 -4414)) (-15 -2298 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-850)) (PROGN (-15 -2579 (|t#1| $)) (-15 -2712 (|t#1| $)) (-15 -4101 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4415)) (PROGN (-15 -3750 ($ $ |t#2|)) (-15 -2518 ((-1269) $ |t#1| |t#1|))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#2| (-1099)) ((-613 (-862)) -2805 (|has| |#2| (-1099)) (|has| |#2| (-613 (-862)))) ((-287 |#1| |#2|) . T) ((-289 |#1| |#2|) . T) ((-310 |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-491 |#2|) . T) ((-516 |#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-1099) |has| |#2| (-1099)) ((-1214) . T))
-((-2512 (((-862) $) 19) (($ (-129)) 13) (((-129) $) 14)))
+((-3780 (((-862) $) 19) (($ (-129)) 13) (((-129) $) 14)))
(((-605) (-13 (-613 (-862)) (-492 (-129)))) (T -605))
NIL
(-13 (-613 (-862)) (-492 (-129)))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL) (($ (-1180)) NIL) (((-1180) $) NIL) (((-1213) $) 14) (($ (-644 (-1213))) 13)) (-4239 (((-644 (-1213)) $) 10)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-606) (-13 (-1082) (-613 (-1213)) (-10 -8 (-15 -2512 ($ (-644 (-1213)))) (-15 -4239 ((-644 (-1213)) $))))) (T -606))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-606)))) (-4239 (*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-606)))))
-(-13 (-1082) (-613 (-1213)) (-10 -8 (-15 -2512 ($ (-644 (-1213)))) (-15 -4239 ((-644 (-1213)) $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3803 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-3950 (((-1264 (-689 |#1|))) NIL (|has| |#2| (-419 |#1|))) (((-1264 (-689 |#1|)) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1378 (((-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2342 (($) NIL T CONST)) (-1503 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-2301 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-2327 (((-689 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2080 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-1481 (((-689 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3152 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3207 (((-1171 (-952 |#1|))) NIL (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-365))))) (-2258 (($ $ (-921)) NIL)) (-2798 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-3584 (((-1171 |#1|) $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3435 ((|#1|) NIL (|has| |#2| (-419 |#1|))) ((|#1| (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3815 (((-1171 |#1|) $) NIL (|has| |#2| (-369 |#1|)))) (-2982 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-1547 (($ (-1264 |#1|)) NIL (|has| |#2| (-419 |#1|))) (($ (-1264 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1579 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1821 (((-921)) NIL (|has| |#2| (-369 |#1|)))) (-2631 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2995 (($ $ (-921)) NIL)) (-1605 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-3199 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2592 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-3881 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-2060 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1297 (((-689 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2516 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-4333 (((-689 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2318 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-2593 (((-1171 (-952 |#1|))) NIL (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-365))))) (-4171 (($ $ (-921)) NIL)) (-3595 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-3984 (((-1171 |#1|) $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-2835 ((|#1|) NIL (|has| |#2| (-419 |#1|))) ((|#1| (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1846 (((-1171 |#1|) $) NIL (|has| |#2| (-369 |#1|)))) (-3880 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2878 (((-1157) $) NIL)) (-2817 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-1642 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4331 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4033 (((-1119) $) NIL)) (-3017 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4386 ((|#1| $ (-566)) NIL (|has| |#2| (-419 |#1|)))) (-2770 (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-419 |#1|))) (((-1264 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $) (-1264 $)) NIL (|has| |#2| (-369 |#1|))) (((-1264 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3134 (($ (-1264 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-1264 |#1|) $) NIL (|has| |#2| (-419 |#1|)))) (-2232 (((-644 (-952 |#1|))) NIL (|has| |#2| (-419 |#1|))) (((-644 (-952 |#1|)) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3755 (($ $ $) NIL)) (-2110 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2512 (((-862) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL (|has| |#2| (-419 |#1|)))) (-3578 (((-644 (-1264 |#1|))) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3551 (($ $ $ $) NIL)) (-4018 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4002 (($ (-689 |#1|) $) NIL (|has| |#2| (-419 |#1|)))) (-2821 (($ $ $) NIL)) (-1546 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2498 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2686 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2485 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) 24)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
-(((-607 |#1| |#2|) (-13 (-744 |#1|) (-613 |#2|) (-10 -8 (-15 -2512 ($ |#2|)) (IF (|has| |#2| (-419 |#1|)) (-6 (-419 |#1|)) |%noBranch|) (IF (|has| |#2| (-369 |#1|)) (-6 (-369 |#1|)) |%noBranch|))) (-172) (-744 |#1|)) (T -607))
-((-2512 (*1 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-607 *3 *2)) (-4 *2 (-744 *3)))))
-(-13 (-744 |#1|) (-613 |#2|) (-10 -8 (-15 -2512 ($ |#2|)) (IF (|has| |#2| (-419 |#1|)) (-6 (-419 |#1|)) |%noBranch|) (IF (|has| |#2| (-369 |#1|)) (-6 (-369 |#1|)) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-3897 (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) 39)) (-4246 (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL) (($) NIL)) (-1537 (((-1269) $ (-1157) (-1157)) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-1157) |#1|) 49)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-2414 (((-3 |#1| "failed") (-1157) $) 52)) (-2342 (($) NIL T CONST)) (-3416 (($ $ (-1157)) 25)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099))))) (-3066 (((-3 |#1| "failed") (-1157) $) 53) (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417))) (($ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL (|has| $ (-6 -4417)))) (-2651 (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417))) (($ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099))))) (-4362 (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099))))) (-2534 (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) 38)) (-1332 ((|#1| $ (-1157) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-1157)) NIL)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417))) (((-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-3546 (($ $) 54)) (-3509 (($ (-390)) 23) (($ (-390) (-1157)) 22)) (-2628 (((-390) $) 40)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-1157) $) NIL (|has| (-1157) (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417))) (((-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (((-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099))))) (-1544 (((-1157) $) NIL (|has| (-1157) (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418))) (($ (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-3949 (((-644 (-1157)) $) 45)) (-3221 (((-112) (-1157) $) NIL)) (-1563 (((-1157) $) 41)) (-3119 (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL)) (-4265 (($ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL)) (-1922 (((-644 (-1157)) $) NIL)) (-2040 (((-112) (-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 ((|#1| $) NIL (|has| (-1157) (-850)))) (-2126 (((-3 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) "failed") (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL)) (-1720 (($ $ |#1|) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (($ $ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (($ $ (-644 (-295 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) 43)) (-4386 ((|#1| $ (-1157) |#1|) NIL) ((|#1| $ (-1157)) 48)) (-3879 (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL) (($) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (((-771) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (((-771) (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL)) (-2512 (((-862) $) 21)) (-1459 (($ $) 26)) (-3122 (((-112) $ $) NIL)) (-3309 (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20)) (-2997 (((-771) $) 47 (|has| $ (-6 -4417)))))
-(((-608 |#1|) (-13 (-366 (-390) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) (-1190 (-1157) |#1|) (-10 -8 (-6 -4417) (-15 -3546 ($ $)))) (-1099)) (T -608))
-((-3546 (*1 *1 *1) (-12 (-5 *1 (-608 *2)) (-4 *2 (-1099)))))
-(-13 (-366 (-390) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) (-1190 (-1157) |#1|) (-10 -8 (-6 -4417) (-15 -3546 ($ $))))
-((-1927 (((-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) $) 16)) (-3949 (((-644 |#2|) $) 20)) (-3221 (((-112) |#2| $) 12)))
-(((-609 |#1| |#2| |#3|) (-10 -8 (-15 -3949 ((-644 |#2|) |#1|)) (-15 -3221 ((-112) |#2| |#1|)) (-15 -1927 ((-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|))) (-610 |#2| |#3|) (-1099) (-1099)) (T -609))
-NIL
-(-10 -8 (-15 -3949 ((-644 |#2|) |#1|)) (-15 -3221 ((-112) |#2| |#1|)) (-15 -1927 ((-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)))
-((-2985 (((-112) $ $) 19 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-3081 (((-112) $ (-771)) 8)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 46 (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 56 (|has| $ (-6 -4417)))) (-2414 (((-3 |#2| "failed") |#1| $) 62)) (-2342 (($) 7 T CONST)) (-4093 (($ $) 59 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417))))) (-3066 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 48 (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 47 (|has| $ (-6 -4417))) (((-3 |#2| "failed") |#1| $) 63)) (-2651 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 55 (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 57 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 54 (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 53 (|has| $ (-6 -4417)))) (-3372 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-3949 (((-644 |#1|) $) 64)) (-3221 (((-112) |#1| $) 65)) (-3119 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 40)) (-4265 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 41)) (-4033 (((-1119) $) 21 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-2126 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 52)) (-2658 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 42)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) 27 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 26 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 25 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 24 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-3879 (($) 50) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 49)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 32 (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 60 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 51)) (-2512 (((-862) $) 18 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-3309 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 43)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL) (($ (-1180)) NIL) (((-1180) $) NIL) (((-1213) $) 14) (($ (-644 (-1213))) 13)) (-1928 (((-644 (-1213)) $) 10)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-606) (-13 (-1082) (-613 (-1213)) (-10 -8 (-15 -3780 ($ (-644 (-1213)))) (-15 -1928 ((-644 (-1213)) $))))) (T -606))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-606)))) (-1928 (*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-606)))))
+(-13 (-1082) (-613 (-1213)) (-10 -8 (-15 -3780 ($ (-644 (-1213)))) (-15 -1928 ((-644 (-1213)) $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4065 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2932 (((-1264 (-689 |#1|))) NIL (|has| |#2| (-419 |#1|))) (((-1264 (-689 |#1|)) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-4132 (((-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3877 (($) NIL T CONST)) (-3379 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1594 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3735 (((-689 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3121 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-3150 (((-689 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-4029 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3280 (((-1171 (-952 |#1|))) NIL (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-365))))) (-2400 (($ $ (-921)) NIL)) (-2811 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-2536 (((-1171 |#1|) $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1682 ((|#1|) NIL (|has| |#2| (-419 |#1|))) ((|#1| (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-4181 (((-1171 |#1|) $) NIL (|has| |#2| (-369 |#1|)))) (-2011 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2613 (($ (-1264 |#1|)) NIL (|has| |#2| (-419 |#1|))) (($ (-1264 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2928 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-4157 (((-921)) NIL (|has| |#2| (-369 |#1|)))) (-1732 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2120 (($ $ (-921)) NIL)) (-1993 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-3202 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-1321 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-3571 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-4128 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-4105 (((-689 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1863 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-2377 (((-689 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1787 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1332 (((-1171 (-952 |#1|))) NIL (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-365))))) (-3231 (($ $ (-921)) NIL)) (-2630 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-2041 (((-1171 |#1|) $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1964 ((|#1|) NIL (|has| |#2| (-419 |#1|))) ((|#1| (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2584 (((-1171 |#1|) $) NIL (|has| |#2| (-369 |#1|)))) (-3561 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2402 (((-1157) $) NIL)) (-3002 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4211 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2355 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4056 (((-1119) $) NIL)) (-2283 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4393 ((|#1| $ (-566)) NIL (|has| |#2| (-419 |#1|)))) (-2543 (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-419 |#1|))) (((-1264 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $) (-1264 $)) NIL (|has| |#2| (-369 |#1|))) (((-1264 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3204 (($ (-1264 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-1264 |#1|) $) NIL (|has| |#2| (-419 |#1|)))) (-2136 (((-644 (-952 |#1|))) NIL (|has| |#2| (-419 |#1|))) (((-644 (-952 |#1|)) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1783 (($ $ $) NIL)) (-3431 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-3780 (((-862) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL (|has| |#2| (-419 |#1|)))) (-2474 (((-644 (-1264 |#1|))) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3428 (($ $ $ $) NIL)) (-2359 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4046 (($ (-689 |#1|) $) NIL (|has| |#2| (-419 |#1|)))) (-3035 (($ $ $) NIL)) (-2602 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2891 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4142 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2493 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) 24)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 20) (($ $ |#1|) 19) (($ |#1| $) NIL)))
+(((-607 |#1| |#2|) (-13 (-744 |#1|) (-613 |#2|) (-10 -8 (-15 -3780 ($ |#2|)) (IF (|has| |#2| (-419 |#1|)) (-6 (-419 |#1|)) |%noBranch|) (IF (|has| |#2| (-369 |#1|)) (-6 (-369 |#1|)) |%noBranch|))) (-172) (-744 |#1|)) (T -607))
+((-3780 (*1 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-607 *3 *2)) (-4 *2 (-744 *3)))))
+(-13 (-744 |#1|) (-613 |#2|) (-10 -8 (-15 -3780 ($ |#2|)) (IF (|has| |#2| (-419 |#1|)) (-6 (-419 |#1|)) |%noBranch|) (IF (|has| |#2| (-369 |#1|)) (-6 (-369 |#1|)) |%noBranch|)))
+((-3009 (((-112) $ $) NIL)) (-3696 (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) 39)) (-4266 (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL) (($) NIL)) (-2518 (((-1269) $ (-1157) (-1157)) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-1157) |#1|) 49)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-2450 (((-3 |#1| "failed") (-1157) $) 52)) (-3877 (($) NIL T CONST)) (-1466 (($ $ (-1157)) 25)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099))))) (-1450 (((-3 |#1| "failed") (-1157) $) 53) (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414))) (($ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL (|has| $ (-6 -4414)))) (-2661 (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414))) (($ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099))))) (-1580 (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099))))) (-2023 (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) 38)) (-3128 ((|#1| $ (-1157) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-1157)) NIL)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414))) (((-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-3385 (($ $) 54)) (-3537 (($ (-390)) 23) (($ (-390) (-1157)) 22)) (-2639 (((-390) $) 40)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-1157) $) NIL (|has| (-1157) (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414))) (((-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (((-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099))))) (-2579 (((-1157) $) NIL (|has| (-1157) (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415))) (($ (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-4314 (((-644 (-1157)) $) 45)) (-3422 (((-112) (-1157) $) NIL)) (-2756 (((-1157) $) 41)) (-3765 (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL)) (-2903 (($ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL)) (-2140 (((-644 (-1157)) $) NIL)) (-3935 (((-112) (-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 ((|#1| $) NIL (|has| (-1157) (-850)))) (-3591 (((-3 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) "failed") (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL)) (-3750 (($ $ |#1|) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (($ $ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (($ $ (-644 (-295 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) 43)) (-4393 ((|#1| $ (-1157) |#1|) NIL) ((|#1| $ (-1157)) 48)) (-3551 (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL) (($) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (((-771) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (((-771) (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL)) (-3780 (((-862) $) 21)) (-4127 (($ $) 26)) (-3801 (((-112) $ $) NIL)) (-2926 (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20)) (-3020 (((-771) $) 47 (|has| $ (-6 -4414)))))
+(((-608 |#1|) (-13 (-366 (-390) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) (-1190 (-1157) |#1|) (-10 -8 (-6 -4414) (-15 -3385 ($ $)))) (-1099)) (T -608))
+((-3385 (*1 *1 *1) (-12 (-5 *1 (-608 *2)) (-4 *2 (-1099)))))
+(-13 (-366 (-390) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) (-1190 (-1157) |#1|) (-10 -8 (-6 -4414) (-15 -3385 ($ $))))
+((-2183 (((-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) $) 16)) (-4314 (((-644 |#2|) $) 20)) (-3422 (((-112) |#2| $) 12)))
+(((-609 |#1| |#2| |#3|) (-10 -8 (-15 -4314 ((-644 |#2|) |#1|)) (-15 -3422 ((-112) |#2| |#1|)) (-15 -2183 ((-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|))) (-610 |#2| |#3|) (-1099) (-1099)) (T -609))
+NIL
+(-10 -8 (-15 -4314 ((-644 |#2|) |#1|)) (-15 -3422 ((-112) |#2| |#1|)) (-15 -2183 ((-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)))
+((-3009 (((-112) $ $) 19 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-1574 (((-112) $ (-771)) 8)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 46 (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 56 (|has| $ (-6 -4414)))) (-2450 (((-3 |#2| "failed") |#1| $) 62)) (-3877 (($) 7 T CONST)) (-4133 (($ $) 59 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414))))) (-1450 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 48 (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 47 (|has| $ (-6 -4414))) (((-3 |#2| "failed") |#1| $) 63)) (-2661 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 55 (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 57 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 54 (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 53 (|has| $ (-6 -4414)))) (-3799 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-4314 (((-644 |#1|) $) 64)) (-3422 (((-112) |#1| $) 65)) (-3765 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 40)) (-2903 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 41)) (-4056 (((-1119) $) 21 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-3591 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 52)) (-3852 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 42)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) 27 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 26 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 25 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 24 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-3551 (($) 50) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 49)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 32 (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 60 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 51)) (-3780 (((-862) $) 18 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-2926 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 43)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-610 |#1| |#2|) (-140) (-1099) (-1099)) (T -610))
-((-3221 (*1 *2 *3 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-5 *2 (-112)))) (-3949 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-5 *2 (-644 *3)))) (-3066 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))) (-2414 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
-(-13 (-229 (-2 (|:| -2010 |t#1|) (|:| -2818 |t#2|))) (-10 -8 (-15 -3221 ((-112) |t#1| $)) (-15 -3949 ((-644 |t#1|) $)) (-15 -3066 ((-3 |t#2| "failed") |t#1| $)) (-15 -2414 ((-3 |t#2| "failed") |t#1| $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T) ((-102) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) ((-613 (-862)) -2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862)))) ((-151 #0#) . T) ((-614 (-538)) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))) ((-229 #0#) . T) ((-235 #0#) . T) ((-310 #0#) -12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))) ((-491 #0#) . T) ((-516 #0# #0#) -12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))) ((-1099) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) ((-1214) . T))
-((-2143 (((-612 |#2|) |#1|) 17)) (-1650 (((-3 |#1| "failed") (-612 |#2|)) 21)))
-(((-611 |#1| |#2|) (-10 -7 (-15 -2143 ((-612 |#2|) |#1|)) (-15 -1650 ((-3 |#1| "failed") (-612 |#2|)))) (-1099) (-1099)) (T -611))
-((-1650 (*1 *2 *3) (|partial| -12 (-5 *3 (-612 *4)) (-4 *4 (-1099)) (-4 *2 (-1099)) (-5 *1 (-611 *2 *4)))) (-2143 (*1 *2 *3) (-12 (-5 *2 (-612 *4)) (-5 *1 (-611 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))))
-(-10 -7 (-15 -2143 ((-612 |#2|) |#1|)) (-15 -1650 ((-3 |#1| "failed") (-612 |#2|))))
-((-2985 (((-112) $ $) NIL)) (-1953 (((-3 (-1175) "failed") $) 48)) (-2480 (((-1269) $ (-771)) 24)) (-3968 (((-771) $) 23)) (-2336 (((-114) $) 12)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-3083 (($ (-114) (-644 |#1|) (-771)) 34) (($ (-1175)) 35)) (-2181 (((-112) $ (-114)) 18) (((-112) $ (-1175)) 16)) (-3173 (((-771) $) 20)) (-4033 (((-1119) $) NIL)) (-3134 (((-892 (-566)) $) 96 (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) 103 (|has| |#1| (-614 (-892 (-381))))) (((-538) $) 89 (|has| |#1| (-614 (-538))))) (-2512 (((-862) $) 73)) (-3122 (((-112) $ $) NIL)) (-2241 (((-644 |#1|) $) 22)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 52)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 54)))
-(((-612 |#1|) (-13 (-132) (-850) (-884 |#1|) (-10 -8 (-15 -2336 ((-114) $)) (-15 -2241 ((-644 |#1|) $)) (-15 -3173 ((-771) $)) (-15 -3083 ($ (-114) (-644 |#1|) (-771))) (-15 -3083 ($ (-1175))) (-15 -1953 ((-3 (-1175) "failed") $)) (-15 -2181 ((-112) $ (-114))) (-15 -2181 ((-112) $ (-1175))) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|))) (-1099)) (T -612))
-((-2336 (*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))) (-2241 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))) (-3173 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))) (-3083 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-114)) (-5 *3 (-644 *5)) (-5 *4 (-771)) (-4 *5 (-1099)) (-5 *1 (-612 *5)))) (-3083 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))) (-1953 (*1 *2 *1) (|partial| -12 (-5 *2 (-1175)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))) (-2181 (*1 *2 *1 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-612 *4)) (-4 *4 (-1099)))) (-2181 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-112)) (-5 *1 (-612 *4)) (-4 *4 (-1099)))))
-(-13 (-132) (-850) (-884 |#1|) (-10 -8 (-15 -2336 ((-114) $)) (-15 -2241 ((-644 |#1|) $)) (-15 -3173 ((-771) $)) (-15 -3083 ($ (-114) (-644 |#1|) (-771))) (-15 -3083 ($ (-1175))) (-15 -1953 ((-3 (-1175) "failed") $)) (-15 -2181 ((-112) $ (-114))) (-15 -2181 ((-112) $ (-1175))) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|)))
-((-2512 ((|#1| $) 6)))
+((-3422 (*1 *2 *3 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-5 *2 (-112)))) (-4314 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-5 *2 (-644 *3)))) (-1450 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))) (-2450 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
+(-13 (-229 (-2 (|:| -2050 |t#1|) (|:| -2849 |t#2|))) (-10 -8 (-15 -3422 ((-112) |t#1| $)) (-15 -4314 ((-644 |t#1|) $)) (-15 -1450 ((-3 |t#2| "failed") |t#1| $)) (-15 -2450 ((-3 |t#2| "failed") |t#1| $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T) ((-102) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) ((-613 (-862)) -2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862)))) ((-151 #0#) . T) ((-614 (-538)) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))) ((-229 #0#) . T) ((-235 #0#) . T) ((-310 #0#) -12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))) ((-491 #0#) . T) ((-516 #0# #0#) -12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))) ((-1099) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) ((-1214) . T))
+((-2550 (((-612 |#2|) |#1|) 17)) (-4283 (((-3 |#1| "failed") (-612 |#2|)) 21)))
+(((-611 |#1| |#2|) (-10 -7 (-15 -2550 ((-612 |#2|) |#1|)) (-15 -4283 ((-3 |#1| "failed") (-612 |#2|)))) (-1099) (-1099)) (T -611))
+((-4283 (*1 *2 *3) (|partial| -12 (-5 *3 (-612 *4)) (-4 *4 (-1099)) (-4 *2 (-1099)) (-5 *1 (-611 *2 *4)))) (-2550 (*1 *2 *3) (-12 (-5 *2 (-612 *4)) (-5 *1 (-611 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))))
+(-10 -7 (-15 -2550 ((-612 |#2|) |#1|)) (-15 -4283 ((-3 |#1| "failed") (-612 |#2|))))
+((-3009 (((-112) $ $) NIL)) (-4288 (((-3 (-1175) "failed") $) 48)) (-2725 (((-1269) $ (-771)) 24)) (-4015 (((-771) $) 23)) (-2415 (((-114) $) 12)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-3159 (($ (-114) (-644 |#1|) (-771)) 34) (($ (-1175)) 35)) (-2885 (((-112) $ (-114)) 18) (((-112) $ (-1175)) 16)) (-3906 (((-771) $) 20)) (-4056 (((-1119) $) NIL)) (-3204 (((-892 (-566)) $) 96 (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) 103 (|has| |#1| (-614 (-892 (-381))))) (((-538) $) 89 (|has| |#1| (-614 (-538))))) (-3780 (((-862) $) 73)) (-3801 (((-112) $ $) NIL)) (-2224 (((-644 |#1|) $) 22)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 52)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 54)))
+(((-612 |#1|) (-13 (-132) (-850) (-884 |#1|) (-10 -8 (-15 -2415 ((-114) $)) (-15 -2224 ((-644 |#1|) $)) (-15 -3906 ((-771) $)) (-15 -3159 ($ (-114) (-644 |#1|) (-771))) (-15 -3159 ($ (-1175))) (-15 -4288 ((-3 (-1175) "failed") $)) (-15 -2885 ((-112) $ (-114))) (-15 -2885 ((-112) $ (-1175))) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|))) (-1099)) (T -612))
+((-2415 (*1 *2 *1) (-12 (-5 *2 (-114)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))) (-2224 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))) (-3906 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))) (-3159 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-114)) (-5 *3 (-644 *5)) (-5 *4 (-771)) (-4 *5 (-1099)) (-5 *1 (-612 *5)))) (-3159 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))) (-4288 (*1 *2 *1) (|partial| -12 (-5 *2 (-1175)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))) (-2885 (*1 *2 *1 *3) (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-612 *4)) (-4 *4 (-1099)))) (-2885 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-112)) (-5 *1 (-612 *4)) (-4 *4 (-1099)))))
+(-13 (-132) (-850) (-884 |#1|) (-10 -8 (-15 -2415 ((-114) $)) (-15 -2224 ((-644 |#1|) $)) (-15 -3906 ((-771) $)) (-15 -3159 ($ (-114) (-644 |#1|) (-771))) (-15 -3159 ($ (-1175))) (-15 -4288 ((-3 (-1175) "failed") $)) (-15 -2885 ((-112) $ (-114))) (-15 -2885 ((-112) $ (-1175))) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|)))
+((-3780 ((|#1| $) 6)))
(((-613 |#1|) (-140) (-1214)) (T -613))
-((-2512 (*1 *2 *1) (-12 (-4 *1 (-613 *2)) (-4 *2 (-1214)))))
-(-13 (-10 -8 (-15 -2512 (|t#1| $))))
-((-3134 ((|#1| $) 6)))
+((-3780 (*1 *2 *1) (-12 (-4 *1 (-613 *2)) (-4 *2 (-1214)))))
+(-13 (-10 -8 (-15 -3780 (|t#1| $))))
+((-3204 ((|#1| $) 6)))
(((-614 |#1|) (-140) (-1214)) (T -614))
-((-3134 (*1 *2 *1) (-12 (-4 *1 (-614 *2)) (-4 *2 (-1214)))))
-(-13 (-10 -8 (-15 -3134 (|t#1| $))))
-((-3566 (((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 (-420 |#2|) |#2|)) 15) (((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|)) 16)))
-(((-615 |#1| |#2|) (-10 -7 (-15 -3566 ((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|))) (-15 -3566 ((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 (-420 |#2|) |#2|)))) (-13 (-147) (-27) (-1038 (-566)) (-1038 (-409 (-566)))) (-1240 |#1|)) (T -615))
-((-3566 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-147) (-27) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-1171 (-409 *6))) (-5 *1 (-615 *5 *6)) (-5 *3 (-409 *6)))) (-3566 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-147) (-27) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-1171 (-409 *5))) (-5 *1 (-615 *4 *5)) (-5 *3 (-409 *5)))))
-(-10 -7 (-15 -3566 ((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|))) (-15 -3566 ((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 (-420 |#2|) |#2|))))
-((-2512 (($ |#1|) 6)))
+((-3204 (*1 *2 *1) (-12 (-4 *1 (-614 *2)) (-4 *2 (-1214)))))
+(-13 (-10 -8 (-15 -3204 (|t#1| $))))
+((-3565 (((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 (-420 |#2|) |#2|)) 15) (((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|)) 16)))
+(((-615 |#1| |#2|) (-10 -7 (-15 -3565 ((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|))) (-15 -3565 ((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 (-420 |#2|) |#2|)))) (-13 (-147) (-27) (-1038 (-566)) (-1038 (-409 (-566)))) (-1240 |#1|)) (T -615))
+((-3565 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-147) (-27) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-1171 (-409 *6))) (-5 *1 (-615 *5 *6)) (-5 *3 (-409 *6)))) (-3565 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-147) (-27) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-1171 (-409 *5))) (-5 *1 (-615 *4 *5)) (-5 *3 (-409 *5)))))
+(-10 -7 (-15 -3565 ((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|))) (-15 -3565 ((-3 (-1171 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 (-420 |#2|) |#2|))))
+((-3780 (($ |#1|) 6)))
(((-616 |#1|) (-140) (-1214)) (T -616))
-((-2512 (*1 *1 *2) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1214)))))
-(-13 (-10 -8 (-15 -2512 ($ |t#1|))))
-((-2985 (((-112) $ $) NIL)) (-3342 (($) 14 T CONST)) (-3398 (($) 15 T CONST)) (-2450 (($ $ $) 29)) (-2426 (($ $) 27)) (-2878 (((-1157) $) NIL)) (-2251 (($ $ $) 30)) (-4033 (((-1119) $) NIL)) (-2234 (($) 11 T CONST)) (-3679 (($ $ $) 31)) (-2512 (((-862) $) 35)) (-2473 (((-112) $ (|[\|\|]| -2234)) 24) (((-112) $ (|[\|\|]| -3342)) 26) (((-112) $ (|[\|\|]| -3398)) 21)) (-3122 (((-112) $ $) NIL)) (-2438 (($ $ $) 28)) (-2940 (((-112) $ $) 18)))
-(((-617) (-13 (-967) (-10 -8 (-15 -3342 ($) -1655) (-15 -2473 ((-112) $ (|[\|\|]| -2234))) (-15 -2473 ((-112) $ (|[\|\|]| -3342))) (-15 -2473 ((-112) $ (|[\|\|]| -3398)))))) (T -617))
-((-3342 (*1 *1) (-5 *1 (-617))) (-2473 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -2234)) (-5 *2 (-112)) (-5 *1 (-617)))) (-2473 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3342)) (-5 *2 (-112)) (-5 *1 (-617)))) (-2473 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3398)) (-5 *2 (-112)) (-5 *1 (-617)))))
-(-13 (-967) (-10 -8 (-15 -3342 ($) -1655) (-15 -2473 ((-112) $ (|[\|\|]| -2234))) (-15 -2473 ((-112) $ (|[\|\|]| -3342))) (-15 -2473 ((-112) $ (|[\|\|]| -3398)))))
-((-3134 (($ |#1|) 6)))
+((-3780 (*1 *1 *2) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1214)))))
+(-13 (-10 -8 (-15 -3780 ($ |t#1|))))
+((-3009 (((-112) $ $) NIL)) (-3411 (($) 14 T CONST)) (-3400 (($) 15 T CONST)) (-2461 (($ $ $) 29)) (-2436 (($ $) 27)) (-2402 (((-1157) $) NIL)) (-2323 (($ $ $) 30)) (-4056 (((-1119) $) NIL)) (-2247 (($) 11 T CONST)) (-2219 (($ $ $) 31)) (-3780 (((-862) $) 35)) (-2482 (((-112) $ (|[\|\|]| -2247)) 24) (((-112) $ (|[\|\|]| -3411)) 26) (((-112) $ (|[\|\|]| -3400)) 21)) (-3801 (((-112) $ $) NIL)) (-2447 (($ $ $) 28)) (-2950 (((-112) $ $) 18)))
+(((-617) (-13 (-967) (-10 -8 (-15 -3411 ($) -2460) (-15 -2482 ((-112) $ (|[\|\|]| -2247))) (-15 -2482 ((-112) $ (|[\|\|]| -3411))) (-15 -2482 ((-112) $ (|[\|\|]| -3400)))))) (T -617))
+((-3411 (*1 *1) (-5 *1 (-617))) (-2482 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -2247)) (-5 *2 (-112)) (-5 *1 (-617)))) (-2482 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3411)) (-5 *2 (-112)) (-5 *1 (-617)))) (-2482 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3400)) (-5 *2 (-112)) (-5 *1 (-617)))))
+(-13 (-967) (-10 -8 (-15 -3411 ($) -2460) (-15 -2482 ((-112) $ (|[\|\|]| -2247))) (-15 -2482 ((-112) $ (|[\|\|]| -3411))) (-15 -2482 ((-112) $ (|[\|\|]| -3400)))))
+((-3204 (($ |#1|) 6)))
(((-618 |#1|) (-140) (-1214)) (T -618))
-((-3134 (*1 *1 *2) (-12 (-4 *1 (-618 *2)) (-4 *2 (-1214)))))
-(-13 (-10 -8 (-15 -3134 ($ |t#1|))))
-((-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) 10)))
-(((-619 |#1| |#2|) (-10 -8 (-15 -2512 (|#1| |#2|)) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|))) (-620 |#2|) (-1049)) (T -619))
+((-3204 (*1 *1 *2) (-12 (-4 *1 (-618 *2)) (-4 *2 (-1214)))))
+(-13 (-10 -8 (-15 -3204 ($ |t#1|))))
+((-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) 10)))
+(((-619 |#1| |#2|) (-10 -8 (-15 -3780 (|#1| |#2|)) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|))) (-620 |#2|) (-1049)) (T -619))
NIL
-(-10 -8 (-15 -2512 (|#1| |#2|)) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 41)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ |#1| $) 42)))
+(-10 -8 (-15 -3780 (|#1| |#2|)) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 41)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ |#1| $) 42)))
(((-620 |#1|) (-140) (-1049)) (T -620))
-((-2512 (*1 *1 *2) (-12 (-4 *1 (-620 *2)) (-4 *2 (-1049)))))
-(-13 (-1049) (-648 |t#1|) (-10 -8 (-15 -2512 ($ |t#1|))))
+((-3780 (*1 *1 *2) (-12 (-4 *1 (-620 *2)) (-4 *2 (-1049)))))
+(-13 (-1049) (-648 |t#1|) (-10 -8 (-15 -3780 ($ |t#1|))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-726) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2807 (((-566) $) NIL (|has| |#1| (-848)))) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL)) (-1684 (((-112) $) NIL (|has| |#1| (-848)))) (-2741 (((-112) $) NIL)) (-3001 ((|#1| $) 13)) (-1578 (((-112) $) NIL (|has| |#1| (-848)))) (-1439 (($ $ $) NIL (|has| |#1| (-848)))) (-3059 (($ $ $) NIL (|has| |#1| (-848)))) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3013 ((|#3| $) 15)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL)) (-3795 (((-771)) 20 T CONST)) (-3122 (((-112) $ $) NIL)) (-1346 (($ $) NIL (|has| |#1| (-848)))) (-2485 (($) NIL T CONST)) (-2495 (($) 12 T CONST)) (-2998 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-848)))) (-3061 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-621 |#1| |#2| |#3|) (-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (-15 -3061 ($ $ |#3|)) (-15 -3061 ($ |#1| |#3|)) (-15 -3001 (|#1| $)) (-15 -3013 (|#3| $)))) (-38 |#2|) (-172) (|SubsetCategory| (-726) |#2|)) (T -621))
-((-3061 (*1 *1 *1 *2) (-12 (-4 *4 (-172)) (-5 *1 (-621 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-726) *4)))) (-3061 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-621 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-726) *4)))) (-3001 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-38 *3)) (-5 *1 (-621 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-726) *3)))) (-3013 (*1 *2 *1) (-12 (-4 *4 (-172)) (-4 *2 (|SubsetCategory| (-726) *4)) (-5 *1 (-621 *3 *4 *2)) (-4 *3 (-38 *4)))))
-(-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (-15 -3061 ($ $ |#3|)) (-15 -3061 ($ |#1| |#3|)) (-15 -3001 (|#1| $)) (-15 -3013 (|#3| $))))
-((-3484 ((|#2| |#2| (-1175) (-1175)) 16)))
-(((-622 |#1| |#2|) (-10 -7 (-15 -3484 (|#2| |#2| (-1175) (-1175)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-959) (-29 |#1|))) (T -622))
-((-3484 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-622 *4 *2)) (-4 *2 (-13 (-1199) (-959) (-29 *4))))))
-(-10 -7 (-15 -3484 (|#2| |#2| (-1175) (-1175))))
-((-2985 (((-112) $ $) 64)) (-3958 (((-112) $) 58)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-1872 ((|#1| $) 55)) (-4126 (((-3 $ "failed") $ $) NIL)) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2542 (((-2 (|:| -1908 $) (|:| -3388 (-409 |#2|))) (-409 |#2|)) 111 (|has| |#1| (-365)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 99) (((-3 |#2| "failed") $) 95)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) 27)) (-1579 (((-3 $ "failed") $) 88)) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2716 (((-566) $) 22)) (-2741 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4367 (((-112) $) 40)) (-2519 (($ |#1| (-566)) 24)) (-3557 ((|#1| $) 57)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) 101 (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 116 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2972 (((-3 $ "failed") $ $) 93)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1813 (((-771) $) 115 (|has| |#1| (-365)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 114 (|has| |#1| (-365)))) (-2862 (($ $ (-1 |#2| |#2|)) 75) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-3992 (((-566) $) 38)) (-3134 (((-409 |#2|) $) 47)) (-2512 (((-862) $) 69) (($ (-566)) 35) (($ $) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) 34) (($ |#2|) 25)) (-2022 ((|#1| $ (-566)) 72)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-2485 (($) 9 T CONST)) (-2495 (($) 14 T CONST)) (-2840 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2940 (((-112) $ $) 21)) (-3047 (($ $) 51) (($ $ $) NIL)) (-3034 (($ $ $) 90)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 29) (($ $ $) 49)))
-(((-623 |#1| |#2|) (-13 (-231 |#2|) (-558) (-614 (-409 |#2|)) (-413 |#1|) (-1038 |#2|) (-10 -8 (-15 -4367 ((-112) $)) (-15 -3992 ((-566) $)) (-15 -2716 ((-566) $)) (-15 -3577 ($ $)) (-15 -3557 (|#1| $)) (-15 -1872 (|#1| $)) (-15 -2022 (|#1| $ (-566))) (-15 -2519 ($ |#1| (-566))) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-6 (-308)) (-15 -2542 ((-2 (|:| -1908 $) (|:| -3388 (-409 |#2|))) (-409 |#2|)))) |%noBranch|))) (-558) (-1240 |#1|)) (T -623))
-((-4367 (*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-112)) (-5 *1 (-623 *3 *4)) (-4 *4 (-1240 *3)))) (-3992 (*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-566)) (-5 *1 (-623 *3 *4)) (-4 *4 (-1240 *3)))) (-2716 (*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-566)) (-5 *1 (-623 *3 *4)) (-4 *4 (-1240 *3)))) (-3577 (*1 *1 *1) (-12 (-4 *2 (-558)) (-5 *1 (-623 *2 *3)) (-4 *3 (-1240 *2)))) (-3557 (*1 *2 *1) (-12 (-4 *2 (-558)) (-5 *1 (-623 *2 *3)) (-4 *3 (-1240 *2)))) (-1872 (*1 *2 *1) (-12 (-4 *2 (-558)) (-5 *1 (-623 *2 *3)) (-4 *3 (-1240 *2)))) (-2022 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *2 (-558)) (-5 *1 (-623 *2 *4)) (-4 *4 (-1240 *2)))) (-2519 (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-4 *2 (-558)) (-5 *1 (-623 *2 *4)) (-4 *4 (-1240 *2)))) (-2542 (*1 *2 *3) (-12 (-4 *4 (-365)) (-4 *4 (-558)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| -1908 (-623 *4 *5)) (|:| -3388 (-409 *5)))) (-5 *1 (-623 *4 *5)) (-5 *3 (-409 *5)))))
-(-13 (-231 |#2|) (-558) (-614 (-409 |#2|)) (-413 |#1|) (-1038 |#2|) (-10 -8 (-15 -4367 ((-112) $)) (-15 -3992 ((-566) $)) (-15 -2716 ((-566) $)) (-15 -3577 ($ $)) (-15 -3557 (|#1| $)) (-15 -1872 (|#1| $)) (-15 -2022 (|#1| $ (-566))) (-15 -2519 ($ |#1| (-566))) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-6 (-308)) (-15 -2542 ((-2 (|:| -1908 $) (|:| -3388 (-409 |#2|))) (-409 |#2|)))) |%noBranch|)))
-((-1725 (((-644 |#6|) (-644 |#4|) (-112)) 54)) (-3352 ((|#6| |#6|) 48)))
-(((-624 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3352 (|#6| |#6|)) (-15 -1725 ((-644 |#6|) (-644 |#4|) (-112)))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|) (-1108 |#1| |#2| |#3| |#4|)) (T -624))
-((-1725 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 *10)) (-5 *1 (-624 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *10 (-1108 *5 *6 *7 *8)))) (-3352 (*1 *2 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-624 *3 *4 *5 *6 *7 *2)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *2 (-1108 *3 *4 *5 *6)))))
-(-10 -7 (-15 -3352 (|#6| |#6|)) (-15 -1725 ((-644 |#6|) (-644 |#4|) (-112))))
-((-3627 (((-112) |#3| (-771) (-644 |#3|)) 32)) (-2497 (((-3 (-2 (|:| |polfac| (-644 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-644 (-1171 |#3|)))) "failed") |#3| (-644 (-1171 |#3|)) (-2 (|:| |contp| |#3|) (|:| -4236 (-644 (-2 (|:| |irr| |#4|) (|:| -2175 (-566)))))) (-644 |#3|) (-644 |#1|) (-644 |#3|)) 73)))
-(((-625 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3627 ((-112) |#3| (-771) (-644 |#3|))) (-15 -2497 ((-3 (-2 (|:| |polfac| (-644 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-644 (-1171 |#3|)))) "failed") |#3| (-644 (-1171 |#3|)) (-2 (|:| |contp| |#3|) (|:| -4236 (-644 (-2 (|:| |irr| |#4|) (|:| -2175 (-566)))))) (-644 |#3|) (-644 |#1|) (-644 |#3|)))) (-850) (-793) (-308) (-949 |#3| |#2| |#1|)) (T -625))
-((-2497 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -4236 (-644 (-2 (|:| |irr| *10) (|:| -2175 (-566))))))) (-5 *6 (-644 *3)) (-5 *7 (-644 *8)) (-4 *8 (-850)) (-4 *3 (-308)) (-4 *10 (-949 *3 *9 *8)) (-4 *9 (-793)) (-5 *2 (-2 (|:| |polfac| (-644 *10)) (|:| |correct| *3) (|:| |corrfact| (-644 (-1171 *3))))) (-5 *1 (-625 *8 *9 *3 *10)) (-5 *4 (-644 (-1171 *3))))) (-3627 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-771)) (-5 *5 (-644 *3)) (-4 *3 (-308)) (-4 *6 (-850)) (-4 *7 (-793)) (-5 *2 (-112)) (-5 *1 (-625 *6 *7 *3 *8)) (-4 *8 (-949 *3 *7 *6)))))
-(-10 -7 (-15 -3627 ((-112) |#3| (-771) (-644 |#3|))) (-15 -2497 ((-3 (-2 (|:| |polfac| (-644 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-644 (-1171 |#3|)))) "failed") |#3| (-644 (-1171 |#3|)) (-2 (|:| |contp| |#3|) (|:| -4236 (-644 (-2 (|:| |irr| |#4|) (|:| -2175 (-566)))))) (-644 |#3|) (-644 |#1|) (-644 |#3|))))
-((-2985 (((-112) $ $) NIL)) (-3336 (((-1134) $) 11)) (-3324 (((-1134) $) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-626) (-13 (-1082) (-10 -8 (-15 -3324 ((-1134) $)) (-15 -3336 ((-1134) $))))) (T -626))
-((-3324 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-626)))) (-3336 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-626)))))
-(-13 (-1082) (-10 -8 (-15 -3324 ((-1134) $)) (-15 -3336 ((-1134) $))))
-((-2985 (((-112) $ $) NIL)) (-1719 (((-644 |#1|) $) NIL)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-1867 (($ $) 77)) (-3668 (((-664 |#1| |#2|) $) 60)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 81)) (-4240 (((-644 (-295 |#2|)) $ $) 42)) (-4033 (((-1119) $) NIL)) (-3613 (($ (-664 |#1| |#2|)) 56)) (-2032 (($ $ $) NIL)) (-3755 (($ $ $) NIL)) (-2512 (((-862) $) 66) (((-1279 |#1| |#2|) $) NIL) (((-1284 |#1| |#2|) $) 74)) (-3122 (((-112) $ $) NIL)) (-2495 (($) 61 T CONST)) (-3648 (((-644 (-2 (|:| |k| (-672 |#1|)) (|:| |c| |#2|))) $) 41)) (-2250 (((-644 (-664 |#1| |#2|)) (-644 |#1|)) 73)) (-1521 (((-644 (-2 (|:| |k| (-893 |#1|)) (|:| |c| |#2|))) $) 46)) (-2940 (((-112) $ $) 62)) (-3061 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ $ $) 52)))
-(((-627 |#1| |#2| |#3|) (-13 (-475) (-10 -8 (-15 -3613 ($ (-664 |#1| |#2|))) (-15 -3668 ((-664 |#1| |#2|) $)) (-15 -1521 ((-644 (-2 (|:| |k| (-893 |#1|)) (|:| |c| |#2|))) $)) (-15 -2512 ((-1279 |#1| |#2|) $)) (-15 -2512 ((-1284 |#1| |#2|) $)) (-15 -1867 ($ $)) (-15 -1719 ((-644 |#1|) $)) (-15 -2250 ((-644 (-664 |#1| |#2|)) (-644 |#1|))) (-15 -3648 ((-644 (-2 (|:| |k| (-672 |#1|)) (|:| |c| |#2|))) $)) (-15 -4240 ((-644 (-295 |#2|)) $ $)))) (-850) (-13 (-172) (-717 (-409 (-566)))) (-921)) (T -627))
-((-3613 (*1 *1 *2) (-12 (-5 *2 (-664 *3 *4)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-5 *1 (-627 *3 *4 *5)) (-14 *5 (-921)))) (-3668 (*1 *2 *1) (-12 (-5 *2 (-664 *3 *4)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-1521 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |k| (-893 *3)) (|:| |c| *4)))) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-1284 *3 *4)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-1867 (*1 *1 *1) (-12 (-5 *1 (-627 *2 *3 *4)) (-4 *2 (-850)) (-4 *3 (-13 (-172) (-717 (-409 (-566))))) (-14 *4 (-921)))) (-1719 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-2250 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-850)) (-5 *2 (-644 (-664 *4 *5))) (-5 *1 (-627 *4 *5 *6)) (-4 *5 (-13 (-172) (-717 (-409 (-566))))) (-14 *6 (-921)))) (-3648 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |k| (-672 *3)) (|:| |c| *4)))) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-4240 (*1 *2 *1 *1) (-12 (-5 *2 (-644 (-295 *4))) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))))
-(-13 (-475) (-10 -8 (-15 -3613 ($ (-664 |#1| |#2|))) (-15 -3668 ((-664 |#1| |#2|) $)) (-15 -1521 ((-644 (-2 (|:| |k| (-893 |#1|)) (|:| |c| |#2|))) $)) (-15 -2512 ((-1279 |#1| |#2|) $)) (-15 -2512 ((-1284 |#1| |#2|) $)) (-15 -1867 ($ $)) (-15 -1719 ((-644 |#1|) $)) (-15 -2250 ((-644 (-664 |#1| |#2|)) (-644 |#1|))) (-15 -3648 ((-644 (-2 (|:| |k| (-672 |#1|)) (|:| |c| |#2|))) $)) (-15 -4240 ((-644 (-295 |#2|)) $ $))))
-((-1725 (((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112)) 103) (((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112)) 77)) (-2881 (((-112) (-644 (-780 |#1| (-864 |#2|)))) 26)) (-2308 (((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112)) 102)) (-2014 (((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112)) 76)) (-4375 (((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|)))) 30)) (-4276 (((-3 (-644 (-780 |#1| (-864 |#2|))) "failed") (-644 (-780 |#1| (-864 |#2|)))) 29)))
-(((-628 |#1| |#2|) (-10 -7 (-15 -2881 ((-112) (-644 (-780 |#1| (-864 |#2|))))) (-15 -4276 ((-3 (-644 (-780 |#1| (-864 |#2|))) "failed") (-644 (-780 |#1| (-864 |#2|))))) (-15 -4375 ((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|))))) (-15 -2014 ((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -2308 ((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -1725 ((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -1725 ((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112)))) (-454) (-644 (-1175))) (T -628))
-((-1725 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454)) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1145 *5 (-533 (-864 *6)) (-864 *6) (-780 *5 (-864 *6))))) (-5 *1 (-628 *5 *6)))) (-1725 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454)) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-628 *5 *6)))) (-2308 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454)) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1145 *5 (-533 (-864 *6)) (-864 *6) (-780 *5 (-864 *6))))) (-5 *1 (-628 *5 *6)))) (-2014 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454)) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-628 *5 *6)))) (-4375 (*1 *2 *2) (-12 (-5 *2 (-644 (-780 *3 (-864 *4)))) (-4 *3 (-454)) (-14 *4 (-644 (-1175))) (-5 *1 (-628 *3 *4)))) (-4276 (*1 *2 *2) (|partial| -12 (-5 *2 (-644 (-780 *3 (-864 *4)))) (-4 *3 (-454)) (-14 *4 (-644 (-1175))) (-5 *1 (-628 *3 *4)))) (-2881 (*1 *2 *3) (-12 (-5 *3 (-644 (-780 *4 (-864 *5)))) (-4 *4 (-454)) (-14 *5 (-644 (-1175))) (-5 *2 (-112)) (-5 *1 (-628 *4 *5)))))
-(-10 -7 (-15 -2881 ((-112) (-644 (-780 |#1| (-864 |#2|))))) (-15 -4276 ((-3 (-644 (-780 |#1| (-864 |#2|))) "failed") (-644 (-780 |#1| (-864 |#2|))))) (-15 -4375 ((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|))))) (-15 -2014 ((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -2308 ((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -1725 ((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -1725 ((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112))))
-((-3235 (($ $) 38)) (-3102 (($ $) 21)) (-3215 (($ $) 37)) (-3076 (($ $) 22)) (-3259 (($ $) 36)) (-3123 (($ $) 23)) (-3035 (($) 48)) (-3668 (($ $) 45)) (-3396 (($ $) 17)) (-2669 (($ $ (-1091 $)) 7) (($ $ (-1175)) 6)) (-3613 (($ $) 46)) (-3026 (($ $) 15)) (-3064 (($ $) 16)) (-3267 (($ $) 35)) (-3133 (($ $) 24)) (-3248 (($ $) 34)) (-3112 (($ $) 25)) (-3223 (($ $) 33)) (-3089 (($ $) 26)) (-3302 (($ $) 44)) (-3172 (($ $) 32)) (-3279 (($ $) 43)) (-3146 (($ $) 31)) (-3323 (($ $) 42)) (-3194 (($ $) 30)) (-1382 (($ $) 41)) (-3205 (($ $) 29)) (-3313 (($ $) 40)) (-3185 (($ $) 28)) (-3291 (($ $) 39)) (-3160 (($ $) 27)) (-3564 (($ $) 19)) (-3120 (($ $) 20)) (-2895 (($ $) 18)) (** (($ $ $) 47)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2899 (((-566) $) NIL (|has| |#1| (-848)))) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL)) (-1533 (((-112) $) NIL (|has| |#1| (-848)))) (-3466 (((-112) $) NIL)) (-3088 ((|#1| $) 13)) (-2917 (((-112) $) NIL (|has| |#1| (-848)))) (-1945 (($ $ $) NIL (|has| |#1| (-848)))) (-2709 (($ $ $) NIL (|has| |#1| (-848)))) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3100 ((|#3| $) 15)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL)) (-3996 (((-771)) 20 T CONST)) (-3801 (((-112) $ $) NIL)) (-3333 (($ $) NIL (|has| |#1| (-848)))) (-2493 (($) NIL T CONST)) (-4333 (($) 12 T CONST)) (-3010 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-848)))) (-3062 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 17) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-621 |#1| |#2| |#3|) (-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (-15 -3062 ($ $ |#3|)) (-15 -3062 ($ |#1| |#3|)) (-15 -3088 (|#1| $)) (-15 -3100 (|#3| $)))) (-38 |#2|) (-172) (|SubsetCategory| (-726) |#2|)) (T -621))
+((-3062 (*1 *1 *1 *2) (-12 (-4 *4 (-172)) (-5 *1 (-621 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-726) *4)))) (-3062 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-621 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-726) *4)))) (-3088 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-38 *3)) (-5 *1 (-621 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-726) *3)))) (-3100 (*1 *2 *1) (-12 (-4 *4 (-172)) (-4 *2 (|SubsetCategory| (-726) *4)) (-5 *1 (-621 *3 *4 *2)) (-4 *3 (-38 *4)))))
+(-13 (-38 |#2|) (-10 -8 (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (-15 -3062 ($ $ |#3|)) (-15 -3062 ($ |#1| |#3|)) (-15 -3088 (|#1| $)) (-15 -3100 (|#3| $))))
+((-4048 ((|#2| |#2| (-1175) (-1175)) 16)))
+(((-622 |#1| |#2|) (-10 -7 (-15 -4048 (|#2| |#2| (-1175) (-1175)))) (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-959) (-29 |#1|))) (T -622))
+((-4048 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-622 *4 *2)) (-4 *2 (-13 (-1199) (-959) (-29 *4))))))
+(-10 -7 (-15 -4048 (|#2| |#2| (-1175) (-1175))))
+((-3009 (((-112) $ $) 64)) (-3015 (((-112) $) 58)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-2835 ((|#1| $) 55)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2091 (((-2 (|:| -2000 $) (|:| -4284 (-409 |#2|))) (-409 |#2|)) 111 (|has| |#1| (-365)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 99) (((-3 |#2| "failed") $) 95)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) 27)) (-2928 (((-3 $ "failed") $) 88)) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-3227 (((-566) $) 22)) (-3466 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1453 (((-112) $) 40)) (-2585 (($ |#1| (-566)) 24)) (-3626 ((|#1| $) 57)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) 101 (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 116 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2997 (((-3 $ "failed") $ $) 93)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3470 (((-771) $) 115 (|has| |#1| (-365)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 114 (|has| |#1| (-365)))) (-2578 (($ $ (-1 |#2| |#2|)) 75) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2108 (((-566) $) 38)) (-3204 (((-409 |#2|) $) 47)) (-3780 (((-862) $) 69) (($ (-566)) 35) (($ $) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) 34) (($ |#2|) 25)) (-3756 ((|#1| $ (-566)) 72)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-2493 (($) 9 T CONST)) (-4333 (($) 14 T CONST)) (-2876 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2950 (((-112) $ $) 21)) (-3051 (($ $) 51) (($ $ $) NIL)) (-3040 (($ $ $) 90)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 29) (($ $ $) 49)))
+(((-623 |#1| |#2|) (-13 (-231 |#2|) (-558) (-614 (-409 |#2|)) (-413 |#1|) (-1038 |#2|) (-10 -8 (-15 -1453 ((-112) $)) (-15 -2108 ((-566) $)) (-15 -3227 ((-566) $)) (-15 -3645 ($ $)) (-15 -3626 (|#1| $)) (-15 -2835 (|#1| $)) (-15 -3756 (|#1| $ (-566))) (-15 -2585 ($ |#1| (-566))) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-6 (-308)) (-15 -2091 ((-2 (|:| -2000 $) (|:| -4284 (-409 |#2|))) (-409 |#2|)))) |%noBranch|))) (-558) (-1240 |#1|)) (T -623))
+((-1453 (*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-112)) (-5 *1 (-623 *3 *4)) (-4 *4 (-1240 *3)))) (-2108 (*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-566)) (-5 *1 (-623 *3 *4)) (-4 *4 (-1240 *3)))) (-3227 (*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-566)) (-5 *1 (-623 *3 *4)) (-4 *4 (-1240 *3)))) (-3645 (*1 *1 *1) (-12 (-4 *2 (-558)) (-5 *1 (-623 *2 *3)) (-4 *3 (-1240 *2)))) (-3626 (*1 *2 *1) (-12 (-4 *2 (-558)) (-5 *1 (-623 *2 *3)) (-4 *3 (-1240 *2)))) (-2835 (*1 *2 *1) (-12 (-4 *2 (-558)) (-5 *1 (-623 *2 *3)) (-4 *3 (-1240 *2)))) (-3756 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *2 (-558)) (-5 *1 (-623 *2 *4)) (-4 *4 (-1240 *2)))) (-2585 (*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-4 *2 (-558)) (-5 *1 (-623 *2 *4)) (-4 *4 (-1240 *2)))) (-2091 (*1 *2 *3) (-12 (-4 *4 (-365)) (-4 *4 (-558)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| -2000 (-623 *4 *5)) (|:| -4284 (-409 *5)))) (-5 *1 (-623 *4 *5)) (-5 *3 (-409 *5)))))
+(-13 (-231 |#2|) (-558) (-614 (-409 |#2|)) (-413 |#1|) (-1038 |#2|) (-10 -8 (-15 -1453 ((-112) $)) (-15 -2108 ((-566) $)) (-15 -3227 ((-566) $)) (-15 -3645 ($ $)) (-15 -3626 (|#1| $)) (-15 -2835 (|#1| $)) (-15 -3756 (|#1| $ (-566))) (-15 -2585 ($ |#1| (-566))) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-6 (-308)) (-15 -2091 ((-2 (|:| -2000 $) (|:| -4284 (-409 |#2|))) (-409 |#2|)))) |%noBranch|)))
+((-3804 (((-644 |#6|) (-644 |#4|) (-112)) 54)) (-2096 ((|#6| |#6|) 48)))
+(((-624 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -2096 (|#6| |#6|)) (-15 -3804 ((-644 |#6|) (-644 |#4|) (-112)))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|) (-1108 |#1| |#2| |#3| |#4|)) (T -624))
+((-3804 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 *10)) (-5 *1 (-624 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *10 (-1108 *5 *6 *7 *8)))) (-2096 (*1 *2 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-624 *3 *4 *5 *6 *7 *2)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *2 (-1108 *3 *4 *5 *6)))))
+(-10 -7 (-15 -2096 (|#6| |#6|)) (-15 -3804 ((-644 |#6|) (-644 |#4|) (-112))))
+((-2911 (((-112) |#3| (-771) (-644 |#3|)) 32)) (-2881 (((-3 (-2 (|:| |polfac| (-644 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-644 (-1171 |#3|)))) "failed") |#3| (-644 (-1171 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2670 (-644 (-2 (|:| |irr| |#4|) (|:| -2831 (-566)))))) (-644 |#3|) (-644 |#1|) (-644 |#3|)) 73)))
+(((-625 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2911 ((-112) |#3| (-771) (-644 |#3|))) (-15 -2881 ((-3 (-2 (|:| |polfac| (-644 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-644 (-1171 |#3|)))) "failed") |#3| (-644 (-1171 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2670 (-644 (-2 (|:| |irr| |#4|) (|:| -2831 (-566)))))) (-644 |#3|) (-644 |#1|) (-644 |#3|)))) (-850) (-793) (-308) (-949 |#3| |#2| |#1|)) (T -625))
+((-2881 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -2670 (-644 (-2 (|:| |irr| *10) (|:| -2831 (-566))))))) (-5 *6 (-644 *3)) (-5 *7 (-644 *8)) (-4 *8 (-850)) (-4 *3 (-308)) (-4 *10 (-949 *3 *9 *8)) (-4 *9 (-793)) (-5 *2 (-2 (|:| |polfac| (-644 *10)) (|:| |correct| *3) (|:| |corrfact| (-644 (-1171 *3))))) (-5 *1 (-625 *8 *9 *3 *10)) (-5 *4 (-644 (-1171 *3))))) (-2911 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-771)) (-5 *5 (-644 *3)) (-4 *3 (-308)) (-4 *6 (-850)) (-4 *7 (-793)) (-5 *2 (-112)) (-5 *1 (-625 *6 *7 *3 *8)) (-4 *8 (-949 *3 *7 *6)))))
+(-10 -7 (-15 -2911 ((-112) |#3| (-771) (-644 |#3|))) (-15 -2881 ((-3 (-2 (|:| |polfac| (-644 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-644 (-1171 |#3|)))) "failed") |#3| (-644 (-1171 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2670 (-644 (-2 (|:| |irr| |#4|) (|:| -2831 (-566)))))) (-644 |#3|) (-644 |#1|) (-644 |#3|))))
+((-3009 (((-112) $ $) NIL)) (-3361 (((-1134) $) 11)) (-3349 (((-1134) $) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-626) (-13 (-1082) (-10 -8 (-15 -3349 ((-1134) $)) (-15 -3361 ((-1134) $))))) (T -626))
+((-3349 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-626)))) (-3361 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-626)))))
+(-13 (-1082) (-10 -8 (-15 -3349 ((-1134) $)) (-15 -3361 ((-1134) $))))
+((-3009 (((-112) $ $) NIL)) (-1824 (((-644 |#1|) $) NIL)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-2781 (($ $) 77)) (-3671 (((-664 |#1| |#2|) $) 60)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 81)) (-2699 (((-644 (-295 |#2|)) $ $) 42)) (-4056 (((-1119) $) NIL)) (-4337 (($ (-664 |#1| |#2|)) 56)) (-3850 (($ $ $) NIL)) (-1783 (($ $ $) NIL)) (-3780 (((-862) $) 66) (((-1279 |#1| |#2|) $) NIL) (((-1284 |#1| |#2|) $) 74)) (-3801 (((-112) $ $) NIL)) (-4333 (($) 61 T CONST)) (-1915 (((-644 (-2 (|:| |k| (-672 |#1|)) (|:| |c| |#2|))) $) 41)) (-2311 (((-644 (-664 |#1| |#2|)) (-644 |#1|)) 73)) (-2356 (((-644 (-2 (|:| |k| (-893 |#1|)) (|:| |c| |#2|))) $) 46)) (-2950 (((-112) $ $) 62)) (-3062 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ $ $) 52)))
+(((-627 |#1| |#2| |#3|) (-13 (-475) (-10 -8 (-15 -4337 ($ (-664 |#1| |#2|))) (-15 -3671 ((-664 |#1| |#2|) $)) (-15 -2356 ((-644 (-2 (|:| |k| (-893 |#1|)) (|:| |c| |#2|))) $)) (-15 -3780 ((-1279 |#1| |#2|) $)) (-15 -3780 ((-1284 |#1| |#2|) $)) (-15 -2781 ($ $)) (-15 -1824 ((-644 |#1|) $)) (-15 -2311 ((-644 (-664 |#1| |#2|)) (-644 |#1|))) (-15 -1915 ((-644 (-2 (|:| |k| (-672 |#1|)) (|:| |c| |#2|))) $)) (-15 -2699 ((-644 (-295 |#2|)) $ $)))) (-850) (-13 (-172) (-717 (-409 (-566)))) (-921)) (T -627))
+((-4337 (*1 *1 *2) (-12 (-5 *2 (-664 *3 *4)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-5 *1 (-627 *3 *4 *5)) (-14 *5 (-921)))) (-3671 (*1 *2 *1) (-12 (-5 *2 (-664 *3 *4)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-2356 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |k| (-893 *3)) (|:| |c| *4)))) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-1284 *3 *4)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-2781 (*1 *1 *1) (-12 (-5 *1 (-627 *2 *3 *4)) (-4 *2 (-850)) (-4 *3 (-13 (-172) (-717 (-409 (-566))))) (-14 *4 (-921)))) (-1824 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-2311 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-850)) (-5 *2 (-644 (-664 *4 *5))) (-5 *1 (-627 *4 *5 *6)) (-4 *5 (-13 (-172) (-717 (-409 (-566))))) (-14 *6 (-921)))) (-1915 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |k| (-672 *3)) (|:| |c| *4)))) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))) (-2699 (*1 *2 *1 *1) (-12 (-5 *2 (-644 (-295 *4))) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850)) (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))))
+(-13 (-475) (-10 -8 (-15 -4337 ($ (-664 |#1| |#2|))) (-15 -3671 ((-664 |#1| |#2|) $)) (-15 -2356 ((-644 (-2 (|:| |k| (-893 |#1|)) (|:| |c| |#2|))) $)) (-15 -3780 ((-1279 |#1| |#2|) $)) (-15 -3780 ((-1284 |#1| |#2|) $)) (-15 -2781 ($ $)) (-15 -1824 ((-644 |#1|) $)) (-15 -2311 ((-644 (-664 |#1| |#2|)) (-644 |#1|))) (-15 -1915 ((-644 (-2 (|:| |k| (-672 |#1|)) (|:| |c| |#2|))) $)) (-15 -2699 ((-644 (-295 |#2|)) $ $))))
+((-3804 (((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112)) 103) (((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112)) 77)) (-2435 (((-112) (-644 (-780 |#1| (-864 |#2|)))) 26)) (-1668 (((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112)) 102)) (-3691 (((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112)) 76)) (-1532 (((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|)))) 30)) (-3019 (((-3 (-644 (-780 |#1| (-864 |#2|))) "failed") (-644 (-780 |#1| (-864 |#2|)))) 29)))
+(((-628 |#1| |#2|) (-10 -7 (-15 -2435 ((-112) (-644 (-780 |#1| (-864 |#2|))))) (-15 -3019 ((-3 (-644 (-780 |#1| (-864 |#2|))) "failed") (-644 (-780 |#1| (-864 |#2|))))) (-15 -1532 ((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|))))) (-15 -3691 ((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -1668 ((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -3804 ((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -3804 ((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112)))) (-454) (-644 (-1175))) (T -628))
+((-3804 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454)) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1145 *5 (-533 (-864 *6)) (-864 *6) (-780 *5 (-864 *6))))) (-5 *1 (-628 *5 *6)))) (-3804 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454)) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-628 *5 *6)))) (-1668 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454)) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1145 *5 (-533 (-864 *6)) (-864 *6) (-780 *5 (-864 *6))))) (-5 *1 (-628 *5 *6)))) (-3691 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454)) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-628 *5 *6)))) (-1532 (*1 *2 *2) (-12 (-5 *2 (-644 (-780 *3 (-864 *4)))) (-4 *3 (-454)) (-14 *4 (-644 (-1175))) (-5 *1 (-628 *3 *4)))) (-3019 (*1 *2 *2) (|partial| -12 (-5 *2 (-644 (-780 *3 (-864 *4)))) (-4 *3 (-454)) (-14 *4 (-644 (-1175))) (-5 *1 (-628 *3 *4)))) (-2435 (*1 *2 *3) (-12 (-5 *3 (-644 (-780 *4 (-864 *5)))) (-4 *4 (-454)) (-14 *5 (-644 (-1175))) (-5 *2 (-112)) (-5 *1 (-628 *4 *5)))))
+(-10 -7 (-15 -2435 ((-112) (-644 (-780 |#1| (-864 |#2|))))) (-15 -3019 ((-3 (-644 (-780 |#1| (-864 |#2|))) "failed") (-644 (-780 |#1| (-864 |#2|))))) (-15 -1532 ((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|))))) (-15 -3691 ((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -1668 ((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -3804 ((-644 (-1046 |#1| |#2|)) (-644 (-780 |#1| (-864 |#2|))) (-112))) (-15 -3804 ((-644 (-1145 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|)))) (-644 (-780 |#1| (-864 |#2|))) (-112))))
+((-2865 (($ $) 38)) (-3939 (($ $) 21)) (-2843 (($ $) 37)) (-3915 (($ $) 22)) (-2888 (($ $) 36)) (-3964 (($ $) 23)) (-3120 (($) 48)) (-3671 (($ $) 45)) (-4140 (($ $) 17)) (-3973 (($ $ (-1091 $)) 7) (($ $ (-1175)) 6)) (-4337 (($ $) 46)) (-3874 (($ $) 15)) (-3904 (($ $) 16)) (-2897 (($ $) 35)) (-3974 (($ $) 24)) (-2877 (($ $) 34)) (-3951 (($ $) 25)) (-2853 (($ $) 33)) (-3927 (($ $) 26)) (-2931 (($ $) 44)) (-4009 (($ $) 32)) (-2907 (($ $) 43)) (-3986 (($ $) 31)) (-2954 (($ $) 42)) (-4033 (($ $) 30)) (-3181 (($ $) 41)) (-2834 (($ $) 29)) (-2943 (($ $) 40)) (-4021 (($ $) 28)) (-2920 (($ $) 39)) (-3997 (($ $) 27)) (-3545 (($ $) 19)) (-3776 (($ $) 20)) (-1317 (($ $) 18)) (** (($ $ $) 47)))
(((-629) (-140)) (T -629))
-((-3120 (*1 *1 *1) (-4 *1 (-629))) (-3564 (*1 *1 *1) (-4 *1 (-629))) (-2895 (*1 *1 *1) (-4 *1 (-629))) (-3396 (*1 *1 *1) (-4 *1 (-629))) (-3064 (*1 *1 *1) (-4 *1 (-629))) (-3026 (*1 *1 *1) (-4 *1 (-629))))
-(-13 (-959) (-1199) (-10 -8 (-15 -3120 ($ $)) (-15 -3564 ($ $)) (-15 -2895 ($ $)) (-15 -3396 ($ $)) (-15 -3064 ($ $)) (-15 -3026 ($ $))))
+((-3776 (*1 *1 *1) (-4 *1 (-629))) (-3545 (*1 *1 *1) (-4 *1 (-629))) (-1317 (*1 *1 *1) (-4 *1 (-629))) (-4140 (*1 *1 *1) (-4 *1 (-629))) (-3904 (*1 *1 *1) (-4 *1 (-629))) (-3874 (*1 *1 *1) (-4 *1 (-629))))
+(-13 (-959) (-1199) (-10 -8 (-15 -3776 ($ $)) (-15 -3545 ($ $)) (-15 -1317 ($ $)) (-15 -4140 ($ $)) (-15 -3904 ($ $)) (-15 -3874 ($ $))))
(((-35) . T) ((-95) . T) ((-285) . T) ((-495) . T) ((-959) . T) ((-1199) . T) ((-1202) . T))
-((-2336 (((-114) (-114)) 88)) (-3396 ((|#2| |#2|) 28)) (-2669 ((|#2| |#2| (-1091 |#2|)) 84) ((|#2| |#2| (-1175)) 50)) (-3026 ((|#2| |#2|) 27)) (-3064 ((|#2| |#2|) 29)) (-2306 (((-112) (-114)) 33)) (-3564 ((|#2| |#2|) 24)) (-3120 ((|#2| |#2|) 26)) (-2895 ((|#2| |#2|) 25)))
-(((-630 |#1| |#2|) (-10 -7 (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 -3120 (|#2| |#2|)) (-15 -3564 (|#2| |#2|)) (-15 -2895 (|#2| |#2|)) (-15 -3396 (|#2| |#2|)) (-15 -3026 (|#2| |#2|)) (-15 -3064 (|#2| |#2|)) (-15 -2669 (|#2| |#2| (-1175))) (-15 -2669 (|#2| |#2| (-1091 |#2|)))) (-558) (-13 (-432 |#1|) (-1002) (-1199))) (T -630))
-((-2669 (*1 *2 *2 *3) (-12 (-5 *3 (-1091 *2)) (-4 *2 (-13 (-432 *4) (-1002) (-1199))) (-4 *4 (-558)) (-5 *1 (-630 *4 *2)))) (-2669 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-630 *4 *2)) (-4 *2 (-13 (-432 *4) (-1002) (-1199))))) (-3064 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-3026 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-3396 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-2895 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-3564 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-3120 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-2336 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-630 *3 *4)) (-4 *4 (-13 (-432 *3) (-1002) (-1199))))) (-2306 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-630 *4 *5)) (-4 *5 (-13 (-432 *4) (-1002) (-1199))))))
-(-10 -7 (-15 -2306 ((-112) (-114))) (-15 -2336 ((-114) (-114))) (-15 -3120 (|#2| |#2|)) (-15 -3564 (|#2| |#2|)) (-15 -2895 (|#2| |#2|)) (-15 -3396 (|#2| |#2|)) (-15 -3026 (|#2| |#2|)) (-15 -3064 (|#2| |#2|)) (-15 -2669 (|#2| |#2| (-1175))) (-15 -2669 (|#2| |#2| (-1091 |#2|))))
-((-3184 (((-483 |#1| |#2|) (-247 |#1| |#2|)) 67)) (-3191 (((-644 (-247 |#1| |#2|)) (-644 (-483 |#1| |#2|))) 93)) (-2690 (((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-864 |#1|)) 95) (((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)) (-864 |#1|)) 94)) (-2595 (((-2 (|:| |gblist| (-644 (-247 |#1| |#2|))) (|:| |gvlist| (-644 (-566)))) (-644 (-483 |#1| |#2|))) 138)) (-2337 (((-644 (-483 |#1| |#2|)) (-864 |#1|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|))) 108)) (-2994 (((-2 (|:| |glbase| (-644 (-247 |#1| |#2|))) (|:| |glval| (-644 (-566)))) (-644 (-247 |#1| |#2|))) 148)) (-1918 (((-1264 |#2|) (-483 |#1| |#2|) (-644 (-483 |#1| |#2|))) 72)) (-2023 (((-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|))) 48)) (-4122 (((-247 |#1| |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|))) 64)) (-4249 (((-247 |#1| |#2|) (-644 |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|))) 116)))
-(((-631 |#1| |#2|) (-10 -7 (-15 -2595 ((-2 (|:| |gblist| (-644 (-247 |#1| |#2|))) (|:| |gvlist| (-644 (-566)))) (-644 (-483 |#1| |#2|)))) (-15 -2994 ((-2 (|:| |glbase| (-644 (-247 |#1| |#2|))) (|:| |glval| (-644 (-566)))) (-644 (-247 |#1| |#2|)))) (-15 -3191 ((-644 (-247 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -2690 ((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)) (-864 |#1|))) (-15 -2690 ((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-864 |#1|))) (-15 -2023 ((-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -1918 ((-1264 |#2|) (-483 |#1| |#2|) (-644 (-483 |#1| |#2|)))) (-15 -4249 ((-247 |#1| |#2|) (-644 |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|)))) (-15 -2337 ((-644 (-483 |#1| |#2|)) (-864 |#1|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -4122 ((-247 |#1| |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|)))) (-15 -3184 ((-483 |#1| |#2|) (-247 |#1| |#2|)))) (-644 (-1175)) (-454)) (T -631))
-((-3184 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *2 (-483 *4 *5)) (-5 *1 (-631 *4 *5)))) (-4122 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-247 *4 *5))) (-5 *2 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-631 *4 *5)))) (-2337 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-644 (-483 *4 *5))) (-5 *3 (-864 *4)) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-631 *4 *5)))) (-4249 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-247 *5 *6))) (-4 *6 (-454)) (-5 *2 (-247 *5 *6)) (-14 *5 (-644 (-1175))) (-5 *1 (-631 *5 *6)))) (-1918 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-483 *5 *6))) (-5 *3 (-483 *5 *6)) (-14 *5 (-644 (-1175))) (-4 *6 (-454)) (-5 *2 (-1264 *6)) (-5 *1 (-631 *5 *6)))) (-2023 (*1 *2 *2) (-12 (-5 *2 (-644 (-483 *3 *4))) (-14 *3 (-644 (-1175))) (-4 *4 (-454)) (-5 *1 (-631 *3 *4)))) (-2690 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-483 *5 *6))) (-5 *4 (-864 *5)) (-14 *5 (-644 (-1175))) (-5 *2 (-483 *5 *6)) (-5 *1 (-631 *5 *6)) (-4 *6 (-454)))) (-2690 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-644 (-483 *5 *6))) (-5 *4 (-864 *5)) (-14 *5 (-644 (-1175))) (-5 *2 (-483 *5 *6)) (-5 *1 (-631 *5 *6)) (-4 *6 (-454)))) (-3191 (*1 *2 *3) (-12 (-5 *3 (-644 (-483 *4 *5))) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *2 (-644 (-247 *4 *5))) (-5 *1 (-631 *4 *5)))) (-2994 (*1 *2 *3) (-12 (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *2 (-2 (|:| |glbase| (-644 (-247 *4 *5))) (|:| |glval| (-644 (-566))))) (-5 *1 (-631 *4 *5)) (-5 *3 (-644 (-247 *4 *5))))) (-2595 (*1 *2 *3) (-12 (-5 *3 (-644 (-483 *4 *5))) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *2 (-2 (|:| |gblist| (-644 (-247 *4 *5))) (|:| |gvlist| (-644 (-566))))) (-5 *1 (-631 *4 *5)))))
-(-10 -7 (-15 -2595 ((-2 (|:| |gblist| (-644 (-247 |#1| |#2|))) (|:| |gvlist| (-644 (-566)))) (-644 (-483 |#1| |#2|)))) (-15 -2994 ((-2 (|:| |glbase| (-644 (-247 |#1| |#2|))) (|:| |glval| (-644 (-566)))) (-644 (-247 |#1| |#2|)))) (-15 -3191 ((-644 (-247 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -2690 ((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)) (-864 |#1|))) (-15 -2690 ((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-864 |#1|))) (-15 -2023 ((-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -1918 ((-1264 |#2|) (-483 |#1| |#2|) (-644 (-483 |#1| |#2|)))) (-15 -4249 ((-247 |#1| |#2|) (-644 |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|)))) (-15 -2337 ((-644 (-483 |#1| |#2|)) (-864 |#1|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -4122 ((-247 |#1| |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|)))) (-15 -3184 ((-483 |#1| |#2|) (-247 |#1| |#2|))))
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099))))) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))) NIL)) (-1537 (((-1269) $ (-1157) (-1157)) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 (((-52) $ (-1157) (-52)) 16) (((-52) $ (-1175) (-52)) 17)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-2414 (((-3 (-52) "failed") (-1157) $) NIL)) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099))))) (-3066 (($ (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-3 (-52) "failed") (-1157) $) NIL)) (-2651 (($ (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $ (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099)))) (((-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $ (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-1332 (((-52) $ (-1157) (-52)) NIL (|has| $ (-6 -4418)))) (-3137 (((-52) $ (-1157)) NIL)) (-3372 (((-644 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-644 (-52)) $) NIL (|has| $ (-6 -4417)))) (-3546 (($ $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-1157) $) NIL (|has| (-1157) (-850)))) (-2404 (((-644 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-644 (-52)) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-52) (-1099))))) (-1544 (((-1157) $) NIL (|has| (-1157) (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4418))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-1771 (($ (-390)) 9)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099))))) (-3949 (((-644 (-1157)) $) NIL)) (-3221 (((-112) (-1157) $) NIL)) (-3119 (((-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) $) NIL)) (-4265 (($ (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) $) NIL)) (-1922 (((-644 (-1157)) $) NIL)) (-2040 (((-112) (-1157) $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099))))) (-4062 (((-52) $) NIL (|has| (-1157) (-850)))) (-2126 (((-3 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) "failed") (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL)) (-1720 (($ $ (-52)) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099)))) (($ $ (-295 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099)))) (($ $ (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099)))) (($ $ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099)))) (($ $ (-644 (-52)) (-644 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-295 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-644 (-295 (-52)))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-52) (-1099))))) (-2784 (((-644 (-52)) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 (((-52) $ (-1157)) 14) (((-52) $ (-1157) (-52)) NIL) (((-52) $ (-1175)) 15)) (-3879 (($) NIL) (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))) NIL)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099)))) (((-771) (-52) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-52) (-1099)))) (((-771) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))) NIL)) (-2512 (((-862) $) NIL (-2805 (|has| (-52) (-613 (-862))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-613 (-862)))))) (-3122 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))))) NIL)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 (-52))) (-1099))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-632) (-13 (-1190 (-1157) (-52)) (-10 -8 (-15 -1771 ($ (-390))) (-15 -3546 ($ $)) (-15 -4386 ((-52) $ (-1175))) (-15 -3874 ((-52) $ (-1175) (-52)))))) (T -632))
-((-1771 (*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-632)))) (-3546 (*1 *1 *1) (-5 *1 (-632))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-52)) (-5 *1 (-632)))) (-3874 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1175)) (-5 *1 (-632)))))
-(-13 (-1190 (-1157) (-52)) (-10 -8 (-15 -1771 ($ (-390))) (-15 -3546 ($ $)) (-15 -4386 ((-52) $ (-1175))) (-15 -3874 ((-52) $ (-1175) (-52)))))
-((-3061 (($ $ |#2|) 10)))
-(((-633 |#1| |#2|) (-10 -8 (-15 -3061 (|#1| |#1| |#2|))) (-634 |#2|) (-172)) (T -633))
-NIL
-(-10 -8 (-15 -3061 (|#1| |#1| |#2|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2523 (($ $ $) 34)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 33 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
+((-2415 (((-114) (-114)) 88)) (-4140 ((|#2| |#2|) 28)) (-3973 ((|#2| |#2| (-1091 |#2|)) 84) ((|#2| |#2| (-1175)) 50)) (-3874 ((|#2| |#2|) 27)) (-3904 ((|#2| |#2|) 29)) (-1643 (((-112) (-114)) 33)) (-3545 ((|#2| |#2|) 24)) (-3776 ((|#2| |#2|) 26)) (-1317 ((|#2| |#2|) 25)))
+(((-630 |#1| |#2|) (-10 -7 (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 -3776 (|#2| |#2|)) (-15 -3545 (|#2| |#2|)) (-15 -1317 (|#2| |#2|)) (-15 -4140 (|#2| |#2|)) (-15 -3874 (|#2| |#2|)) (-15 -3904 (|#2| |#2|)) (-15 -3973 (|#2| |#2| (-1175))) (-15 -3973 (|#2| |#2| (-1091 |#2|)))) (-558) (-13 (-432 |#1|) (-1002) (-1199))) (T -630))
+((-3973 (*1 *2 *2 *3) (-12 (-5 *3 (-1091 *2)) (-4 *2 (-13 (-432 *4) (-1002) (-1199))) (-4 *4 (-558)) (-5 *1 (-630 *4 *2)))) (-3973 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-630 *4 *2)) (-4 *2 (-13 (-432 *4) (-1002) (-1199))))) (-3904 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-3874 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-4140 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-1317 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-3545 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-3776 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2)) (-4 *2 (-13 (-432 *3) (-1002) (-1199))))) (-2415 (*1 *2 *2) (-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-630 *3 *4)) (-4 *4 (-13 (-432 *3) (-1002) (-1199))))) (-1643 (*1 *2 *3) (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-630 *4 *5)) (-4 *5 (-13 (-432 *4) (-1002) (-1199))))))
+(-10 -7 (-15 -1643 ((-112) (-114))) (-15 -2415 ((-114) (-114))) (-15 -3776 (|#2| |#2|)) (-15 -3545 (|#2| |#2|)) (-15 -1317 (|#2| |#2|)) (-15 -4140 (|#2| |#2|)) (-15 -3874 (|#2| |#2|)) (-15 -3904 (|#2| |#2|)) (-15 -3973 (|#2| |#2| (-1175))) (-15 -3973 (|#2| |#2| (-1091 |#2|))))
+((-3076 (((-483 |#1| |#2|) (-247 |#1| |#2|)) 67)) (-3141 (((-644 (-247 |#1| |#2|)) (-644 (-483 |#1| |#2|))) 93)) (-4182 (((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-864 |#1|)) 95) (((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)) (-864 |#1|)) 94)) (-1352 (((-2 (|:| |gblist| (-644 (-247 |#1| |#2|))) (|:| |gvlist| (-644 (-566)))) (-644 (-483 |#1| |#2|))) 138)) (-3826 (((-644 (-483 |#1| |#2|)) (-864 |#1|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|))) 108)) (-2109 (((-2 (|:| |glbase| (-644 (-247 |#1| |#2|))) (|:| |glval| (-644 (-566)))) (-644 (-247 |#1| |#2|))) 148)) (-2100 (((-1264 |#2|) (-483 |#1| |#2|) (-644 (-483 |#1| |#2|))) 72)) (-3766 (((-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|))) 48)) (-3968 (((-247 |#1| |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|))) 64)) (-2764 (((-247 |#1| |#2|) (-644 |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|))) 116)))
+(((-631 |#1| |#2|) (-10 -7 (-15 -1352 ((-2 (|:| |gblist| (-644 (-247 |#1| |#2|))) (|:| |gvlist| (-644 (-566)))) (-644 (-483 |#1| |#2|)))) (-15 -2109 ((-2 (|:| |glbase| (-644 (-247 |#1| |#2|))) (|:| |glval| (-644 (-566)))) (-644 (-247 |#1| |#2|)))) (-15 -3141 ((-644 (-247 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -4182 ((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)) (-864 |#1|))) (-15 -4182 ((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-864 |#1|))) (-15 -3766 ((-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -2100 ((-1264 |#2|) (-483 |#1| |#2|) (-644 (-483 |#1| |#2|)))) (-15 -2764 ((-247 |#1| |#2|) (-644 |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|)))) (-15 -3826 ((-644 (-483 |#1| |#2|)) (-864 |#1|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -3968 ((-247 |#1| |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|)))) (-15 -3076 ((-483 |#1| |#2|) (-247 |#1| |#2|)))) (-644 (-1175)) (-454)) (T -631))
+((-3076 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *2 (-483 *4 *5)) (-5 *1 (-631 *4 *5)))) (-3968 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-247 *4 *5))) (-5 *2 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-631 *4 *5)))) (-3826 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-644 (-483 *4 *5))) (-5 *3 (-864 *4)) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-631 *4 *5)))) (-2764 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-247 *5 *6))) (-4 *6 (-454)) (-5 *2 (-247 *5 *6)) (-14 *5 (-644 (-1175))) (-5 *1 (-631 *5 *6)))) (-2100 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-483 *5 *6))) (-5 *3 (-483 *5 *6)) (-14 *5 (-644 (-1175))) (-4 *6 (-454)) (-5 *2 (-1264 *6)) (-5 *1 (-631 *5 *6)))) (-3766 (*1 *2 *2) (-12 (-5 *2 (-644 (-483 *3 *4))) (-14 *3 (-644 (-1175))) (-4 *4 (-454)) (-5 *1 (-631 *3 *4)))) (-4182 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-483 *5 *6))) (-5 *4 (-864 *5)) (-14 *5 (-644 (-1175))) (-5 *2 (-483 *5 *6)) (-5 *1 (-631 *5 *6)) (-4 *6 (-454)))) (-4182 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-644 (-483 *5 *6))) (-5 *4 (-864 *5)) (-14 *5 (-644 (-1175))) (-5 *2 (-483 *5 *6)) (-5 *1 (-631 *5 *6)) (-4 *6 (-454)))) (-3141 (*1 *2 *3) (-12 (-5 *3 (-644 (-483 *4 *5))) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *2 (-644 (-247 *4 *5))) (-5 *1 (-631 *4 *5)))) (-2109 (*1 *2 *3) (-12 (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *2 (-2 (|:| |glbase| (-644 (-247 *4 *5))) (|:| |glval| (-644 (-566))))) (-5 *1 (-631 *4 *5)) (-5 *3 (-644 (-247 *4 *5))))) (-1352 (*1 *2 *3) (-12 (-5 *3 (-644 (-483 *4 *5))) (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *2 (-2 (|:| |gblist| (-644 (-247 *4 *5))) (|:| |gvlist| (-644 (-566))))) (-5 *1 (-631 *4 *5)))))
+(-10 -7 (-15 -1352 ((-2 (|:| |gblist| (-644 (-247 |#1| |#2|))) (|:| |gvlist| (-644 (-566)))) (-644 (-483 |#1| |#2|)))) (-15 -2109 ((-2 (|:| |glbase| (-644 (-247 |#1| |#2|))) (|:| |glval| (-644 (-566)))) (-644 (-247 |#1| |#2|)))) (-15 -3141 ((-644 (-247 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -4182 ((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)) (-864 |#1|))) (-15 -4182 ((-483 |#1| |#2|) (-644 (-483 |#1| |#2|)) (-864 |#1|))) (-15 -3766 ((-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -2100 ((-1264 |#2|) (-483 |#1| |#2|) (-644 (-483 |#1| |#2|)))) (-15 -2764 ((-247 |#1| |#2|) (-644 |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|)))) (-15 -3826 ((-644 (-483 |#1| |#2|)) (-864 |#1|) (-644 (-483 |#1| |#2|)) (-644 (-483 |#1| |#2|)))) (-15 -3968 ((-247 |#1| |#2|) (-247 |#1| |#2|) (-644 (-247 |#1| |#2|)))) (-15 -3076 ((-483 |#1| |#2|) (-247 |#1| |#2|))))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099))))) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))) NIL)) (-2518 (((-1269) $ (-1157) (-1157)) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 (((-52) $ (-1157) (-52)) 16) (((-52) $ (-1175) (-52)) 17)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-2450 (((-3 (-52) "failed") (-1157) $) NIL)) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099))))) (-1450 (($ (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-3 (-52) "failed") (-1157) $) NIL)) (-2661 (($ (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $ (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099)))) (((-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $ (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-3128 (((-52) $ (-1157) (-52)) NIL (|has| $ (-6 -4415)))) (-3059 (((-52) $ (-1157)) NIL)) (-3799 (((-644 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-644 (-52)) $) NIL (|has| $ (-6 -4414)))) (-3385 (($ $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-1157) $) NIL (|has| (-1157) (-850)))) (-3276 (((-644 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-644 (-52)) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-52) (-1099))))) (-2579 (((-1157) $) NIL (|has| (-1157) (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4415))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-1805 (($ (-390)) 9)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099))))) (-4314 (((-644 (-1157)) $) NIL)) (-3422 (((-112) (-1157) $) NIL)) (-3765 (((-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) $) NIL)) (-2903 (($ (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) $) NIL)) (-2140 (((-644 (-1157)) $) NIL)) (-3935 (((-112) (-1157) $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099))))) (-4101 (((-52) $) NIL (|has| (-1157) (-850)))) (-3591 (((-3 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) "failed") (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL)) (-3750 (($ $ (-52)) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099)))) (($ $ (-295 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099)))) (($ $ (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099)))) (($ $ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099)))) (($ $ (-644 (-52)) (-644 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-295 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-644 (-295 (-52)))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-52) (-1099))))) (-2684 (((-644 (-52)) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 (((-52) $ (-1157)) 14) (((-52) $ (-1157) (-52)) NIL) (((-52) $ (-1175)) 15)) (-3551 (($) NIL) (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))) NIL)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099)))) (((-771) (-52) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-52) (-1099)))) (((-771) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))) NIL)) (-3780 (((-862) $) NIL (-2805 (|has| (-52) (-613 (-862))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-613 (-862)))))) (-3801 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))))) NIL)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 (-52))) (-1099))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-632) (-13 (-1190 (-1157) (-52)) (-10 -8 (-15 -1805 ($ (-390))) (-15 -3385 ($ $)) (-15 -4393 ((-52) $ (-1175))) (-15 -3916 ((-52) $ (-1175) (-52)))))) (T -632))
+((-1805 (*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-632)))) (-3385 (*1 *1 *1) (-5 *1 (-632))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-52)) (-5 *1 (-632)))) (-3916 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1175)) (-5 *1 (-632)))))
+(-13 (-1190 (-1157) (-52)) (-10 -8 (-15 -1805 ($ (-390))) (-15 -3385 ($ $)) (-15 -4393 ((-52) $ (-1175))) (-15 -3916 ((-52) $ (-1175) (-52)))))
+((-3062 (($ $ |#2|) 10)))
+(((-633 |#1| |#2|) (-10 -8 (-15 -3062 (|#1| |#1| |#2|))) (-634 |#2|) (-172)) (T -633))
+NIL
+(-10 -8 (-15 -3062 (|#1| |#1| |#2|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3791 (($ $ $) 34)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 33 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
(((-634 |#1|) (-140) (-172)) (T -634))
-((-2523 (*1 *1 *1 *1) (-12 (-4 *1 (-634 *2)) (-4 *2 (-172)))) (-3061 (*1 *1 *1 *2) (-12 (-4 *1 (-634 *2)) (-4 *2 (-172)) (-4 *2 (-365)))))
-(-13 (-717 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -2523 ($ $ $)) (IF (|has| |t#1| (-365)) (-15 -3061 ($ $ |t#1|)) |%noBranch|)))
+((-3791 (*1 *1 *1 *1) (-12 (-4 *1 (-634 *2)) (-4 *2 (-172)))) (-3062 (*1 *1 *1 *2) (-12 (-4 *1 (-634 *2)) (-4 *2 (-172)) (-4 *2 (-365)))))
+(-13 (-717 |t#1|) (-10 -8 (-6 |NullSquare|) (-6 |JacobiIdentity|) (-15 -3791 ($ $ $)) (IF (|has| |t#1| (-365)) (-15 -3062 ($ $ |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-648 |#1|) . T) ((-640 |#1|) . T) ((-717 |#1|) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3803 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-3950 (((-1264 (-689 |#1|))) NIL (|has| |#2| (-419 |#1|))) (((-1264 (-689 |#1|)) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1378 (((-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2342 (($) NIL T CONST)) (-1503 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-2301 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-2327 (((-689 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2080 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-1481 (((-689 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3152 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3207 (((-1171 (-952 |#1|))) NIL (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-365))))) (-2258 (($ $ (-921)) NIL)) (-2798 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-3584 (((-1171 |#1|) $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3435 ((|#1|) NIL (|has| |#2| (-419 |#1|))) ((|#1| (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3815 (((-1171 |#1|) $) NIL (|has| |#2| (-369 |#1|)))) (-2982 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-1547 (($ (-1264 |#1|)) NIL (|has| |#2| (-419 |#1|))) (($ (-1264 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1579 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1821 (((-921)) NIL (|has| |#2| (-369 |#1|)))) (-2631 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2995 (($ $ (-921)) NIL)) (-1605 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-3199 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2592 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-3881 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-2060 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1297 (((-689 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2516 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-4333 (((-689 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2318 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-2593 (((-1171 (-952 |#1|))) NIL (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-365))))) (-4171 (($ $ (-921)) NIL)) (-3595 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-3984 (((-1171 |#1|) $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-2835 ((|#1|) NIL (|has| |#2| (-419 |#1|))) ((|#1| (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1846 (((-1171 |#1|) $) NIL (|has| |#2| (-369 |#1|)))) (-3880 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2878 (((-1157) $) NIL)) (-2817 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-1642 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4331 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4033 (((-1119) $) NIL)) (-3017 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4386 ((|#1| $ (-566)) NIL (|has| |#2| (-419 |#1|)))) (-2770 (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-419 |#1|))) (((-1264 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $) (-1264 $)) NIL (|has| |#2| (-369 |#1|))) (((-1264 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3134 (($ (-1264 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-1264 |#1|) $) NIL (|has| |#2| (-419 |#1|)))) (-2232 (((-644 (-952 |#1|))) NIL (|has| |#2| (-419 |#1|))) (((-644 (-952 |#1|)) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3755 (($ $ $) NIL)) (-2110 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2512 (((-862) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL (|has| |#2| (-419 |#1|)))) (-3578 (((-644 (-1264 |#1|))) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3551 (($ $ $ $) NIL)) (-4018 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4002 (($ (-689 |#1|) $) NIL (|has| |#2| (-419 |#1|)))) (-2821 (($ $ $) NIL)) (-1546 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2498 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2686 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) 20)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-635 |#1| |#2|) (-13 (-744 |#1|) (-613 |#2|) (-10 -8 (-15 -2512 ($ |#2|)) (IF (|has| |#2| (-419 |#1|)) (-6 (-419 |#1|)) |%noBranch|) (IF (|has| |#2| (-369 |#1|)) (-6 (-369 |#1|)) |%noBranch|))) (-172) (-744 |#1|)) (T -635))
-((-2512 (*1 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-635 *3 *2)) (-4 *2 (-744 *3)))))
-(-13 (-744 |#1|) (-613 |#2|) (-10 -8 (-15 -2512 ($ |#2|)) (IF (|has| |#2| (-419 |#1|)) (-6 (-419 |#1|)) |%noBranch|) (IF (|has| |#2| (-369 |#1|)) (-6 (-369 |#1|)) |%noBranch|)))
-((-4298 (((-3 (-843 |#2|) "failed") |#2| (-295 |#2|) (-1157)) 106) (((-3 (-843 |#2|) (-2 (|:| |leftHandLimit| (-3 (-843 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-843 |#2|) "failed"))) "failed") |#2| (-295 (-843 |#2|))) 131)) (-1464 (((-3 (-833 |#2|) "failed") |#2| (-295 (-833 |#2|))) 136)))
-(((-636 |#1| |#2|) (-10 -7 (-15 -4298 ((-3 (-843 |#2|) (-2 (|:| |leftHandLimit| (-3 (-843 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-843 |#2|) "failed"))) "failed") |#2| (-295 (-843 |#2|)))) (-15 -1464 ((-3 (-833 |#2|) "failed") |#2| (-295 (-833 |#2|)))) (-15 -4298 ((-3 (-843 |#2|) "failed") |#2| (-295 |#2|) (-1157)))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -636))
-((-4298 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-295 *3)) (-5 *5 (-1157)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-843 *3)) (-5 *1 (-636 *6 *3)))) (-1464 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-295 (-833 *3))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-833 *3)) (-5 *1 (-636 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-4298 (*1 *2 *3 *4) (-12 (-5 *4 (-295 (-843 *3))) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (-843 *3) (-2 (|:| |leftHandLimit| (-3 (-843 *3) "failed")) (|:| |rightHandLimit| (-3 (-843 *3) "failed"))) "failed")) (-5 *1 (-636 *5 *3)))))
-(-10 -7 (-15 -4298 ((-3 (-843 |#2|) (-2 (|:| |leftHandLimit| (-3 (-843 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-843 |#2|) "failed"))) "failed") |#2| (-295 (-843 |#2|)))) (-15 -1464 ((-3 (-833 |#2|) "failed") |#2| (-295 (-833 |#2|)))) (-15 -4298 ((-3 (-843 |#2|) "failed") |#2| (-295 |#2|) (-1157))))
-((-4298 (((-3 (-843 (-409 (-952 |#1|))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))) (-1157)) 86) (((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|)))) 20) (((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-843 (-952 |#1|)))) 35)) (-1464 (((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|)))) 23) (((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-833 (-952 |#1|)))) 43)))
-(((-637 |#1|) (-10 -7 (-15 -4298 ((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-843 (-952 |#1|))))) (-15 -4298 ((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -1464 ((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-833 (-952 |#1|))))) (-15 -1464 ((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -4298 ((-3 (-843 (-409 (-952 |#1|))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))) (-1157)))) (-454)) (T -637))
-((-4298 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-295 (-409 (-952 *6)))) (-5 *5 (-1157)) (-5 *3 (-409 (-952 *6))) (-4 *6 (-454)) (-5 *2 (-843 *3)) (-5 *1 (-637 *6)))) (-1464 (*1 *2 *3 *4) (-12 (-5 *4 (-295 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5))) (-4 *5 (-454)) (-5 *2 (-833 *3)) (-5 *1 (-637 *5)))) (-1464 (*1 *2 *3 *4) (-12 (-5 *4 (-295 (-833 (-952 *5)))) (-4 *5 (-454)) (-5 *2 (-833 (-409 (-952 *5)))) (-5 *1 (-637 *5)) (-5 *3 (-409 (-952 *5))))) (-4298 (*1 *2 *3 *4) (-12 (-5 *4 (-295 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5))) (-4 *5 (-454)) (-5 *2 (-3 (-843 *3) (-2 (|:| |leftHandLimit| (-3 (-843 *3) "failed")) (|:| |rightHandLimit| (-3 (-843 *3) "failed"))) "failed")) (-5 *1 (-637 *5)))) (-4298 (*1 *2 *3 *4) (-12 (-5 *4 (-295 (-843 (-952 *5)))) (-4 *5 (-454)) (-5 *2 (-3 (-843 (-409 (-952 *5))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 *5))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 *5))) "failed"))) "failed")) (-5 *1 (-637 *5)) (-5 *3 (-409 (-952 *5))))))
-(-10 -7 (-15 -4298 ((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-843 (-952 |#1|))))) (-15 -4298 ((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -1464 ((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-833 (-952 |#1|))))) (-15 -1464 ((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -4298 ((-3 (-843 (-409 (-952 |#1|))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))) (-1157))))
-((-1575 (((-3 (-1264 (-409 |#1|)) "failed") (-1264 |#2|) |#2|) 64 (-2426 (|has| |#1| (-365)))) (((-3 (-1264 |#1|) "failed") (-1264 |#2|) |#2|) 49 (|has| |#1| (-365)))) (-4327 (((-112) (-1264 |#2|)) 33)) (-2646 (((-3 (-1264 |#1|) "failed") (-1264 |#2|)) 40)))
-(((-638 |#1| |#2|) (-10 -7 (-15 -4327 ((-112) (-1264 |#2|))) (-15 -2646 ((-3 (-1264 |#1|) "failed") (-1264 |#2|))) (IF (|has| |#1| (-365)) (-15 -1575 ((-3 (-1264 |#1|) "failed") (-1264 |#2|) |#2|)) (-15 -1575 ((-3 (-1264 (-409 |#1|)) "failed") (-1264 |#2|) |#2|)))) (-558) (-639 |#1|)) (T -638))
-((-1575 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 *5)) (-2426 (-4 *5 (-365))) (-4 *5 (-558)) (-5 *2 (-1264 (-409 *5))) (-5 *1 (-638 *5 *4)))) (-1575 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 *5)) (-4 *5 (-365)) (-4 *5 (-558)) (-5 *2 (-1264 *5)) (-5 *1 (-638 *5 *4)))) (-2646 (*1 *2 *3) (|partial| -12 (-5 *3 (-1264 *5)) (-4 *5 (-639 *4)) (-4 *4 (-558)) (-5 *2 (-1264 *4)) (-5 *1 (-638 *4 *5)))) (-4327 (*1 *2 *3) (-12 (-5 *3 (-1264 *5)) (-4 *5 (-639 *4)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-638 *4 *5)))))
-(-10 -7 (-15 -4327 ((-112) (-1264 |#2|))) (-15 -2646 ((-3 (-1264 |#1|) "failed") (-1264 |#2|))) (IF (|has| |#1| (-365)) (-15 -1575 ((-3 (-1264 |#1|) "failed") (-1264 |#2|) |#2|)) (-15 -1575 ((-3 (-1264 (-409 |#1|)) "failed") (-1264 |#2|) |#2|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1628 (((-689 |#1|) (-689 $)) 40) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 39)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4065 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2932 (((-1264 (-689 |#1|))) NIL (|has| |#2| (-419 |#1|))) (((-1264 (-689 |#1|)) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-4132 (((-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3877 (($) NIL T CONST)) (-3379 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1594 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3735 (((-689 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3121 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-3150 (((-689 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-4029 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3280 (((-1171 (-952 |#1|))) NIL (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-365))))) (-2400 (($ $ (-921)) NIL)) (-2811 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-2536 (((-1171 |#1|) $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1682 ((|#1|) NIL (|has| |#2| (-419 |#1|))) ((|#1| (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-4181 (((-1171 |#1|) $) NIL (|has| |#2| (-369 |#1|)))) (-2011 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2613 (($ (-1264 |#1|)) NIL (|has| |#2| (-419 |#1|))) (($ (-1264 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2928 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-4157 (((-921)) NIL (|has| |#2| (-369 |#1|)))) (-1732 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2120 (($ $ (-921)) NIL)) (-1993 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-3202 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-1321 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-3571 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-4128 (((-3 $ "failed")) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-4105 (((-689 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1863 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-2377 (((-689 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1787 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1332 (((-1171 (-952 |#1|))) NIL (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-365))))) (-3231 (($ $ (-921)) NIL)) (-2630 ((|#1| $) NIL (|has| |#2| (-369 |#1|)))) (-2041 (((-1171 |#1|) $) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-1964 ((|#1|) NIL (|has| |#2| (-419 |#1|))) ((|#1| (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-2584 (((-1171 |#1|) $) NIL (|has| |#2| (-369 |#1|)))) (-3561 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2402 (((-1157) $) NIL)) (-3002 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4211 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2355 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4056 (((-1119) $) NIL)) (-2283 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4393 ((|#1| $ (-566)) NIL (|has| |#2| (-419 |#1|)))) (-2543 (((-689 |#1|) (-1264 $)) NIL (|has| |#2| (-419 |#1|))) (((-1264 |#1|) $) NIL (|has| |#2| (-419 |#1|))) (((-689 |#1|) (-1264 $) (-1264 $)) NIL (|has| |#2| (-369 |#1|))) (((-1264 |#1|) $ (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-3204 (($ (-1264 |#1|)) NIL (|has| |#2| (-419 |#1|))) (((-1264 |#1|) $) NIL (|has| |#2| (-419 |#1|)))) (-2136 (((-644 (-952 |#1|))) NIL (|has| |#2| (-419 |#1|))) (((-644 (-952 |#1|)) (-1264 $)) NIL (|has| |#2| (-369 |#1|)))) (-1783 (($ $ $) NIL)) (-3431 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-3780 (((-862) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL (|has| |#2| (-419 |#1|)))) (-2474 (((-644 (-1264 |#1|))) NIL (-2805 (-12 (|has| |#2| (-369 |#1|)) (|has| |#1| (-558))) (-12 (|has| |#2| (-419 |#1|)) (|has| |#1| (-558)))))) (-3428 (($ $ $ $) NIL)) (-2359 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4046 (($ (-689 |#1|) $) NIL (|has| |#2| (-419 |#1|)))) (-3035 (($ $ $) NIL)) (-2602 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2891 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-4142 (((-112)) NIL (|has| |#2| (-369 |#1|)))) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) 20)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 11) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-635 |#1| |#2|) (-13 (-744 |#1|) (-613 |#2|) (-10 -8 (-15 -3780 ($ |#2|)) (IF (|has| |#2| (-419 |#1|)) (-6 (-419 |#1|)) |%noBranch|) (IF (|has| |#2| (-369 |#1|)) (-6 (-369 |#1|)) |%noBranch|))) (-172) (-744 |#1|)) (T -635))
+((-3780 (*1 *1 *2) (-12 (-4 *3 (-172)) (-5 *1 (-635 *3 *2)) (-4 *2 (-744 *3)))))
+(-13 (-744 |#1|) (-613 |#2|) (-10 -8 (-15 -3780 ($ |#2|)) (IF (|has| |#2| (-419 |#1|)) (-6 (-419 |#1|)) |%noBranch|) (IF (|has| |#2| (-369 |#1|)) (-6 (-369 |#1|)) |%noBranch|)))
+((-2025 (((-3 (-843 |#2|) "failed") |#2| (-295 |#2|) (-1157)) 106) (((-3 (-843 |#2|) (-2 (|:| |leftHandLimit| (-3 (-843 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-843 |#2|) "failed"))) "failed") |#2| (-295 (-843 |#2|))) 131)) (-2971 (((-3 (-833 |#2|) "failed") |#2| (-295 (-833 |#2|))) 136)))
+(((-636 |#1| |#2|) (-10 -7 (-15 -2025 ((-3 (-843 |#2|) (-2 (|:| |leftHandLimit| (-3 (-843 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-843 |#2|) "failed"))) "failed") |#2| (-295 (-843 |#2|)))) (-15 -2971 ((-3 (-833 |#2|) "failed") |#2| (-295 (-833 |#2|)))) (-15 -2025 ((-3 (-843 |#2|) "failed") |#2| (-295 |#2|) (-1157)))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -636))
+((-2025 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-295 *3)) (-5 *5 (-1157)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-843 *3)) (-5 *1 (-636 *6 *3)))) (-2971 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-295 (-833 *3))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-833 *3)) (-5 *1 (-636 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))) (-2025 (*1 *2 *3 *4) (-12 (-5 *4 (-295 (-843 *3))) (-4 *3 (-13 (-27) (-1199) (-432 *5))) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-3 (-843 *3) (-2 (|:| |leftHandLimit| (-3 (-843 *3) "failed")) (|:| |rightHandLimit| (-3 (-843 *3) "failed"))) "failed")) (-5 *1 (-636 *5 *3)))))
+(-10 -7 (-15 -2025 ((-3 (-843 |#2|) (-2 (|:| |leftHandLimit| (-3 (-843 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-843 |#2|) "failed"))) "failed") |#2| (-295 (-843 |#2|)))) (-15 -2971 ((-3 (-833 |#2|) "failed") |#2| (-295 (-833 |#2|)))) (-15 -2025 ((-3 (-843 |#2|) "failed") |#2| (-295 |#2|) (-1157))))
+((-2025 (((-3 (-843 (-409 (-952 |#1|))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))) (-1157)) 86) (((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|)))) 20) (((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-843 (-952 |#1|)))) 35)) (-2971 (((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|)))) 23) (((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-833 (-952 |#1|)))) 43)))
+(((-637 |#1|) (-10 -7 (-15 -2025 ((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-843 (-952 |#1|))))) (-15 -2025 ((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -2971 ((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-833 (-952 |#1|))))) (-15 -2971 ((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -2025 ((-3 (-843 (-409 (-952 |#1|))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))) (-1157)))) (-454)) (T -637))
+((-2025 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-295 (-409 (-952 *6)))) (-5 *5 (-1157)) (-5 *3 (-409 (-952 *6))) (-4 *6 (-454)) (-5 *2 (-843 *3)) (-5 *1 (-637 *6)))) (-2971 (*1 *2 *3 *4) (-12 (-5 *4 (-295 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5))) (-4 *5 (-454)) (-5 *2 (-833 *3)) (-5 *1 (-637 *5)))) (-2971 (*1 *2 *3 *4) (-12 (-5 *4 (-295 (-833 (-952 *5)))) (-4 *5 (-454)) (-5 *2 (-833 (-409 (-952 *5)))) (-5 *1 (-637 *5)) (-5 *3 (-409 (-952 *5))))) (-2025 (*1 *2 *3 *4) (-12 (-5 *4 (-295 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5))) (-4 *5 (-454)) (-5 *2 (-3 (-843 *3) (-2 (|:| |leftHandLimit| (-3 (-843 *3) "failed")) (|:| |rightHandLimit| (-3 (-843 *3) "failed"))) "failed")) (-5 *1 (-637 *5)))) (-2025 (*1 *2 *3 *4) (-12 (-5 *4 (-295 (-843 (-952 *5)))) (-4 *5 (-454)) (-5 *2 (-3 (-843 (-409 (-952 *5))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 *5))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 *5))) "failed"))) "failed")) (-5 *1 (-637 *5)) (-5 *3 (-409 (-952 *5))))))
+(-10 -7 (-15 -2025 ((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-843 (-952 |#1|))))) (-15 -2025 ((-3 (-843 (-409 (-952 |#1|))) (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed")) (|:| |rightHandLimit| (-3 (-843 (-409 (-952 |#1|))) "failed"))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -2971 ((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-833 (-952 |#1|))))) (-15 -2971 ((-833 (-409 (-952 |#1|))) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -2025 ((-3 (-843 (-409 (-952 |#1|))) "failed") (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))) (-1157))))
+((-2884 (((-3 (-1264 (-409 |#1|)) "failed") (-1264 |#2|) |#2|) 64 (-2436 (|has| |#1| (-365)))) (((-3 (-1264 |#1|) "failed") (-1264 |#2|) |#2|) 49 (|has| |#1| (-365)))) (-2309 (((-112) (-1264 |#2|)) 33)) (-3741 (((-3 (-1264 |#1|) "failed") (-1264 |#2|)) 40)))
+(((-638 |#1| |#2|) (-10 -7 (-15 -2309 ((-112) (-1264 |#2|))) (-15 -3741 ((-3 (-1264 |#1|) "failed") (-1264 |#2|))) (IF (|has| |#1| (-365)) (-15 -2884 ((-3 (-1264 |#1|) "failed") (-1264 |#2|) |#2|)) (-15 -2884 ((-3 (-1264 (-409 |#1|)) "failed") (-1264 |#2|) |#2|)))) (-558) (-639 |#1|)) (T -638))
+((-2884 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 *5)) (-2436 (-4 *5 (-365))) (-4 *5 (-558)) (-5 *2 (-1264 (-409 *5))) (-5 *1 (-638 *5 *4)))) (-2884 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 *5)) (-4 *5 (-365)) (-4 *5 (-558)) (-5 *2 (-1264 *5)) (-5 *1 (-638 *5 *4)))) (-3741 (*1 *2 *3) (|partial| -12 (-5 *3 (-1264 *5)) (-4 *5 (-639 *4)) (-4 *4 (-558)) (-5 *2 (-1264 *4)) (-5 *1 (-638 *4 *5)))) (-2309 (*1 *2 *3) (-12 (-5 *3 (-1264 *5)) (-4 *5 (-639 *4)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-638 *4 *5)))))
+(-10 -7 (-15 -2309 ((-112) (-1264 |#2|))) (-15 -3741 ((-3 (-1264 |#1|) "failed") (-1264 |#2|))) (IF (|has| |#1| (-365)) (-15 -2884 ((-3 (-1264 |#1|) "failed") (-1264 |#2|) |#2|)) (-15 -2884 ((-3 (-1264 (-409 |#1|)) "failed") (-1264 |#2|) |#2|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2210 (((-689 |#1|) (-689 $)) 40) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 39)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-639 |#1|) (-140) (-1049)) (T -639))
-((-1628 (*1 *2 *3) (-12 (-5 *3 (-689 *1)) (-4 *1 (-639 *4)) (-4 *4 (-1049)) (-5 *2 (-689 *4)))) (-1628 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *1)) (-5 *4 (-1264 *1)) (-4 *1 (-639 *5)) (-4 *5 (-1049)) (-5 *2 (-2 (|:| -1380 (-689 *5)) (|:| |vec| (-1264 *5)))))))
-(-13 (-1049) (-10 -8 (-15 -1628 ((-689 |t#1|) (-689 $))) (-15 -1628 ((-2 (|:| -1380 (-689 |t#1|)) (|:| |vec| (-1264 |t#1|))) (-689 $) (-1264 $)))))
+((-2210 (*1 *2 *3) (-12 (-5 *3 (-689 *1)) (-4 *1 (-639 *4)) (-4 *4 (-1049)) (-5 *2 (-689 *4)))) (-2210 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *1)) (-5 *4 (-1264 *1)) (-4 *1 (-639 *5)) (-4 *5 (-1049)) (-5 *2 (-2 (|:| -4193 (-689 *5)) (|:| |vec| (-1264 *5)))))))
+(-13 (-1049) (-10 -8 (-15 -2210 ((-689 |t#1|) (-689 $))) (-15 -2210 ((-2 (|:| -4193 (-689 |t#1|)) (|:| |vec| (-1264 |t#1|))) (-689 $) (-1264 $)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-726) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 16 T CONST)) (-2940 (((-112) $ $) 6)) (* (($ |#1| $) 14) (($ $ |#1|) 19)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 16 T CONST)) (-2950 (((-112) $ $) 6)) (* (($ |#1| $) 14) (($ $ |#1|) 19)))
(((-640 |#1|) (-140) (-1057)) (T -640))
NIL
(-13 (-646 |t#1|) (-1051 |t#1|))
(((-102) . T) ((-613 (-862)) . T) ((-646 |#1|) . T) ((-1051 |#1|) . T) ((-1099) . T))
-((-3926 ((|#2| (-644 |#1|) (-644 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-644 |#1|) (-644 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) |#2|) 17) ((|#2| (-644 |#1|) (-644 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|)) 12)))
-(((-641 |#1| |#2|) (-10 -7 (-15 -3926 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|))) (-15 -3926 (|#2| (-644 |#1|) (-644 |#2|) |#1|)) (-15 -3926 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) |#2|)) (-15 -3926 (|#2| (-644 |#1|) (-644 |#2|) |#1| |#2|)) (-15 -3926 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) (-1 |#2| |#1|))) (-15 -3926 (|#2| (-644 |#1|) (-644 |#2|) |#1| (-1 |#2| |#1|)))) (-1099) (-1214)) (T -641))
-((-3926 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1099)) (-4 *2 (-1214)) (-5 *1 (-641 *5 *2)))) (-3926 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-644 *5)) (-5 *4 (-644 *6)) (-4 *5 (-1099)) (-4 *6 (-1214)) (-5 *1 (-641 *5 *6)))) (-3926 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-4 *5 (-1099)) (-4 *2 (-1214)) (-5 *1 (-641 *5 *2)))) (-3926 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 *5)) (-4 *6 (-1099)) (-4 *5 (-1214)) (-5 *2 (-1 *5 *6)) (-5 *1 (-641 *6 *5)))) (-3926 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-4 *5 (-1099)) (-4 *2 (-1214)) (-5 *1 (-641 *5 *2)))) (-3926 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *6)) (-4 *5 (-1099)) (-4 *6 (-1214)) (-5 *2 (-1 *6 *5)) (-5 *1 (-641 *5 *6)))))
-(-10 -7 (-15 -3926 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|))) (-15 -3926 (|#2| (-644 |#1|) (-644 |#2|) |#1|)) (-15 -3926 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) |#2|)) (-15 -3926 (|#2| (-644 |#1|) (-644 |#2|) |#1| |#2|)) (-15 -3926 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) (-1 |#2| |#1|))) (-15 -3926 (|#2| (-644 |#1|) (-644 |#2|) |#1| (-1 |#2| |#1|))))
-((-2403 (((-644 |#2|) (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|) 16)) (-4362 ((|#2| (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|) 18)) (-3077 (((-644 |#2|) (-1 |#2| |#1|) (-644 |#1|)) 13)))
-(((-642 |#1| |#2|) (-10 -7 (-15 -2403 ((-644 |#2|) (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|)) (-15 -4362 (|#2| (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|)) (-15 -3077 ((-644 |#2|) (-1 |#2| |#1|) (-644 |#1|)))) (-1214) (-1214)) (T -642))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-644 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-644 *6)) (-5 *1 (-642 *5 *6)))) (-4362 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-644 *5)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-642 *5 *2)))) (-2403 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-644 *6)) (-4 *6 (-1214)) (-4 *5 (-1214)) (-5 *2 (-644 *5)) (-5 *1 (-642 *6 *5)))))
-(-10 -7 (-15 -2403 ((-644 |#2|) (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|)) (-15 -4362 (|#2| (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|)) (-15 -3077 ((-644 |#2|) (-1 |#2| |#1|) (-644 |#1|))))
-((-3077 (((-644 |#3|) (-1 |#3| |#1| |#2|) (-644 |#1|) (-644 |#2|)) 21)))
-(((-643 |#1| |#2| |#3|) (-10 -7 (-15 -3077 ((-644 |#3|) (-1 |#3| |#1| |#2|) (-644 |#1|) (-644 |#2|)))) (-1214) (-1214) (-1214)) (T -643))
-((-3077 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-644 *6)) (-5 *5 (-644 *7)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-4 *8 (-1214)) (-5 *2 (-644 *8)) (-5 *1 (-643 *6 *7 *8)))))
-(-10 -7 (-15 -3077 ((-644 |#3|) (-1 |#3| |#1| |#2|) (-644 |#1|) (-644 |#2|))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2212 ((|#1| $) NIL)) (-4309 ((|#1| $) NIL)) (-3301 (($ $) NIL)) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-1410 (($ $ (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) $) NIL (|has| |#1| (-850))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3426 (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3290 (($ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-3087 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-4290 (($ $ $) NIL (|has| $ (-6 -4418)))) (-1587 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-2831 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4418))) (($ $ "rest" $) NIL (|has| $ (-6 -4418))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) NIL (|has| $ (-6 -4418)))) (-3988 (($ $ $) 37 (|has| |#1| (-1099)))) (-3975 (($ $ $) 41 (|has| |#1| (-1099)))) (-3965 (($ $ $) 44 (|has| |#1| (-1099)))) (-3586 (($ (-1 (-112) |#1|) $) NIL)) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4299 ((|#1| $) NIL)) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4076 (($ $) 23) (($ $ (-771)) NIL)) (-4130 (($ $) NIL (|has| |#1| (-1099)))) (-4093 (($ $) 36 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3066 (($ |#1| $) NIL (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) NIL)) (-2651 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1332 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) NIL)) (-1901 (((-112) $) NIL)) (-3968 (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099))) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) (-1 (-112) |#1|) $) NIL)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2412 (((-112) $) 11)) (-2286 (((-644 $) $) NIL)) (-4129 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3612 (($) 9)) (-4257 (($ (-771) |#1|) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-1865 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3132 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 40 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3932 (($ |#1|) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2996 (((-644 |#1|) $) NIL)) (-2783 (((-112) $) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2670 ((|#1| $) NIL) (($ $ (-771)) NIL)) (-4265 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-4268 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4062 ((|#1| $) 20) (($ $ (-771)) NIL)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) NIL (|has| $ (-6 -4418)))) (-1335 (((-112) $) NIL)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) 39)) (-2954 (($) 38)) (-4386 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1231 (-566))) NIL) ((|#1| $ (-566)) 42) ((|#1| $ (-566) |#1|) NIL)) (-1442 (((-566) $ $) NIL)) (-1424 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-2201 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-1313 (((-112) $) NIL)) (-1636 (($ $) NIL)) (-2231 (($ $) NIL (|has| $ (-6 -4418)))) (-3069 (((-771) $) NIL)) (-1904 (($ $) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) 53 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) NIL)) (-1827 (($ |#1| $) 12)) (-1498 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3704 (($ $ $) 35) (($ |#1| $) 43) (($ (-644 $)) NIL) (($ $ |#1|) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) NIL)) (-2105 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2208 (($ $ $) 13)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2178 (((-1157) $) 31 (|has| |#1| (-828))) (((-1157) $ (-112)) 32 (|has| |#1| (-828))) (((-1269) (-822) $) 33 (|has| |#1| (-828))) (((-1269) (-822) $ (-112)) 34 (|has| |#1| (-828)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-644 |#1|) (-13 (-666 |#1|) (-10 -8 (-15 -3612 ($)) (-15 -2412 ((-112) $)) (-15 -1827 ($ |#1| $)) (-15 -2208 ($ $ $)) (IF (|has| |#1| (-1099)) (PROGN (-15 -3988 ($ $ $)) (-15 -3975 ($ $ $)) (-15 -3965 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-828)) (-6 (-828)) |%noBranch|))) (-1214)) (T -644))
-((-3612 (*1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214)))) (-2412 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-644 *3)) (-4 *3 (-1214)))) (-1827 (*1 *1 *2 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214)))) (-2208 (*1 *1 *1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214)))) (-3988 (*1 *1 *1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))) (-3975 (*1 *1 *1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))) (-3965 (*1 *1 *1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))))
-(-13 (-666 |#1|) (-10 -8 (-15 -3612 ($)) (-15 -2412 ((-112) $)) (-15 -1827 ($ |#1| $)) (-15 -2208 ($ $ $)) (IF (|has| |#1| (-1099)) (PROGN (-15 -3988 ($ $ $)) (-15 -3975 ($ $ $)) (-15 -3965 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-828)) (-6 (-828)) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 11) (($ (-1180)) NIL) (((-1180) $) NIL) ((|#1| $) 8)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-2810 ((|#2| (-644 |#1|) (-644 |#2|) |#1| (-1 |#2| |#1|)) 18) (((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) (-1 |#2| |#1|)) 19) ((|#2| (-644 |#1|) (-644 |#2|) |#1| |#2|) 16) (((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) |#2|) 17) ((|#2| (-644 |#1|) (-644 |#2|) |#1|) 10) (((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|)) 12)))
+(((-641 |#1| |#2|) (-10 -7 (-15 -2810 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|))) (-15 -2810 (|#2| (-644 |#1|) (-644 |#2|) |#1|)) (-15 -2810 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) |#2|)) (-15 -2810 (|#2| (-644 |#1|) (-644 |#2|) |#1| |#2|)) (-15 -2810 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) (-1 |#2| |#1|))) (-15 -2810 (|#2| (-644 |#1|) (-644 |#2|) |#1| (-1 |#2| |#1|)))) (-1099) (-1214)) (T -641))
+((-2810 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-5 *6 (-1 *2 *5)) (-4 *5 (-1099)) (-4 *2 (-1214)) (-5 *1 (-641 *5 *2)))) (-2810 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-644 *5)) (-5 *4 (-644 *6)) (-4 *5 (-1099)) (-4 *6 (-1214)) (-5 *1 (-641 *5 *6)))) (-2810 (*1 *2 *3 *4 *5 *2) (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-4 *5 (-1099)) (-4 *2 (-1214)) (-5 *1 (-641 *5 *2)))) (-2810 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 *5)) (-4 *6 (-1099)) (-4 *5 (-1214)) (-5 *2 (-1 *5 *6)) (-5 *1 (-641 *6 *5)))) (-2810 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-4 *5 (-1099)) (-4 *2 (-1214)) (-5 *1 (-641 *5 *2)))) (-2810 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *6)) (-4 *5 (-1099)) (-4 *6 (-1214)) (-5 *2 (-1 *6 *5)) (-5 *1 (-641 *5 *6)))))
+(-10 -7 (-15 -2810 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|))) (-15 -2810 (|#2| (-644 |#1|) (-644 |#2|) |#1|)) (-15 -2810 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) |#2|)) (-15 -2810 (|#2| (-644 |#1|) (-644 |#2|) |#1| |#2|)) (-15 -2810 ((-1 |#2| |#1|) (-644 |#1|) (-644 |#2|) (-1 |#2| |#1|))) (-15 -2810 (|#2| (-644 |#1|) (-644 |#2|) |#1| (-1 |#2| |#1|))))
+((-3264 (((-644 |#2|) (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|) 16)) (-1580 ((|#2| (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|) 18)) (-3152 (((-644 |#2|) (-1 |#2| |#1|) (-644 |#1|)) 13)))
+(((-642 |#1| |#2|) (-10 -7 (-15 -3264 ((-644 |#2|) (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|)) (-15 -1580 (|#2| (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|)) (-15 -3152 ((-644 |#2|) (-1 |#2| |#1|) (-644 |#1|)))) (-1214) (-1214)) (T -642))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-644 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-644 *6)) (-5 *1 (-642 *5 *6)))) (-1580 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-644 *5)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-642 *5 *2)))) (-3264 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-644 *6)) (-4 *6 (-1214)) (-4 *5 (-1214)) (-5 *2 (-644 *5)) (-5 *1 (-642 *6 *5)))))
+(-10 -7 (-15 -3264 ((-644 |#2|) (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|)) (-15 -1580 (|#2| (-1 |#2| |#1| |#2|) (-644 |#1|) |#2|)) (-15 -3152 ((-644 |#2|) (-1 |#2| |#1|) (-644 |#1|))))
+((-3152 (((-644 |#3|) (-1 |#3| |#1| |#2|) (-644 |#1|) (-644 |#2|)) 21)))
+(((-643 |#1| |#2| |#3|) (-10 -7 (-15 -3152 ((-644 |#3|) (-1 |#3| |#1| |#2|) (-644 |#1|) (-644 |#2|)))) (-1214) (-1214) (-1214)) (T -643))
+((-3152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-644 *6)) (-5 *5 (-644 *7)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-4 *8 (-1214)) (-5 *2 (-644 *8)) (-5 *1 (-643 *6 *7 *8)))))
+(-10 -7 (-15 -3152 ((-644 |#3|) (-1 |#3| |#1| |#2|) (-644 |#1|) (-644 |#2|))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2252 ((|#1| $) NIL)) (-4369 ((|#1| $) NIL)) (-4043 (($ $) NIL)) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3670 (($ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) $) NIL (|has| |#1| (-850))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-1570 (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-1568 (($ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-1637 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-1938 (($ $ $) NIL (|has| $ (-6 -4415)))) (-1819 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-1921 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4415))) (($ $ "rest" $) NIL (|has| $ (-6 -4415))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) NIL (|has| $ (-6 -4415)))) (-4035 (($ $ $) 37 (|has| |#1| (-1099)))) (-4023 (($ $ $) 41 (|has| |#1| (-1099)))) (-4010 (($ $ $) 44 (|has| |#1| (-1099)))) (-2556 (($ (-1 (-112) |#1|) $) NIL)) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-4358 ((|#1| $) NIL)) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4112 (($ $) 23) (($ $ (-771)) NIL)) (-4060 (($ $) NIL (|has| |#1| (-1099)))) (-4133 (($ $) 36 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1450 (($ |#1| $) NIL (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) NIL)) (-2661 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3128 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) NIL)) (-1935 (((-112) $) NIL)) (-4015 (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099))) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) (-1 (-112) |#1|) $) NIL)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2422 (((-112) $) 11)) (-1432 (((-644 $) $) NIL)) (-4050 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3618 (($) 9)) (-4278 (($ (-771) |#1|) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-2761 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3891 (($ $ $) NIL (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 40 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3977 (($ |#1|) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-3318 (((-644 |#1|) $) NIL)) (-2675 (((-112) $) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2680 ((|#1| $) NIL) (($ $ (-771)) NIL)) (-2903 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-4286 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4101 ((|#1| $) 20) (($ $ (-771)) NIL)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) NIL (|has| $ (-6 -4415)))) (-1927 (((-112) $) NIL)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) 39)) (-1793 (($) 38)) (-4393 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1231 (-566))) NIL) ((|#1| $ (-566)) 42) ((|#1| $ (-566) |#1|) NIL)) (-3969 (((-566) $ $) NIL)) (-3798 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-2215 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-1638 (((-112) $) NIL)) (-2299 (($ $) NIL)) (-2127 (($ $) NIL (|has| $ (-6 -4415)))) (-1472 (((-771) $) NIL)) (-1957 (($ $) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) 53 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) NIL)) (-1873 (($ |#1| $) 12)) (-3324 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3727 (($ $ $) 35) (($ |#1| $) 43) (($ (-644 $)) NIL) (($ $ |#1|) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) NIL)) (-3381 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2222 (($ $ $) 13)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2852 (((-1157) $) 31 (|has| |#1| (-828))) (((-1157) $ (-112)) 32 (|has| |#1| (-828))) (((-1269) (-822) $) 33 (|has| |#1| (-828))) (((-1269) (-822) $ (-112)) 34 (|has| |#1| (-828)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-644 |#1|) (-13 (-666 |#1|) (-10 -8 (-15 -3618 ($)) (-15 -2422 ((-112) $)) (-15 -1873 ($ |#1| $)) (-15 -2222 ($ $ $)) (IF (|has| |#1| (-1099)) (PROGN (-15 -4035 ($ $ $)) (-15 -4023 ($ $ $)) (-15 -4010 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-828)) (-6 (-828)) |%noBranch|))) (-1214)) (T -644))
+((-3618 (*1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214)))) (-2422 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-644 *3)) (-4 *3 (-1214)))) (-1873 (*1 *1 *2 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214)))) (-2222 (*1 *1 *1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214)))) (-4035 (*1 *1 *1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))) (-4023 (*1 *1 *1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))) (-4010 (*1 *1 *1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))))
+(-13 (-666 |#1|) (-10 -8 (-15 -3618 ($)) (-15 -2422 ((-112) $)) (-15 -1873 ($ |#1| $)) (-15 -2222 ($ $ $)) (IF (|has| |#1| (-1099)) (PROGN (-15 -4035 ($ $ $)) (-15 -4023 ($ $ $)) (-15 -4010 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-828)) (-6 (-828)) |%noBranch|)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 11) (($ (-1180)) NIL) (((-1180) $) NIL) ((|#1| $) 8)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-645 |#1|) (-13 (-1082) (-613 |#1|)) (-1099)) (T -645))
NIL
(-13 (-1082) (-613 |#1|))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 16 T CONST)) (-2940 (((-112) $ $) 6)) (* (($ |#1| $) 14)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 16 T CONST)) (-2950 (((-112) $ $) 6)) (* (($ |#1| $) 14)))
(((-646 |#1|) (-140) (-1057)) (T -646))
-((-2485 (*1 *1) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1057)))) (-3958 (*1 *2 *1) (-12 (-4 *1 (-646 *3)) (-4 *3 (-1057)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1057)))))
-(-13 (-1099) (-10 -8 (-15 (-2485) ($) -1655) (-15 -3958 ((-112) $)) (-15 * ($ |t#1| $))))
+((-2493 (*1 *1) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1057)))) (-3015 (*1 *2 *1) (-12 (-4 *1 (-646 *3)) (-4 *3 (-1057)) (-5 *2 (-112)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1057)))))
+(-13 (-1099) (-10 -8 (-15 (-2493) ($) -2460) (-15 -3015 ((-112) $)) (-15 * ($ |t#1| $))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4084 (($ |#1| |#1| $) 46)) (-3081 (((-112) $ (-771)) NIL)) (-3586 (($ (-1 (-112) |#1|) $) 62 (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-4130 (($ $) 48)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3066 (($ |#1| $) 59 (|has| $ (-6 -4417))) (($ (-1 (-112) |#1|) $) 61 (|has| $ (-6 -4417)))) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417)))) (-3372 (((-644 |#1|) $) 9 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 37)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3119 ((|#1| $) 50)) (-4265 (($ |#1| $) 29) (($ |#1| $ (-771)) 45)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2658 ((|#1| $) 53)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 23)) (-2954 (($) 28)) (-2666 (((-112) $) 57)) (-2109 (((-644 (-2 (|:| -2818 |#1|) (|:| -4044 (-771)))) $) 69)) (-3879 (($) 26) (($ (-644 |#1|)) 19)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) 66 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) 20)) (-3134 (((-538) $) 34 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) NIL)) (-2512 (((-862) $) 14 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) 24)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 71 (|has| |#1| (-1099)))) (-2997 (((-771) $) 17 (|has| $ (-6 -4417)))))
-(((-647 |#1|) (-13 (-695 |#1|) (-10 -8 (-6 -4417) (-15 -2666 ((-112) $)) (-15 -4084 ($ |#1| |#1| $)))) (-1099)) (T -647))
-((-2666 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-647 *3)) (-4 *3 (-1099)))) (-4084 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-647 *2)) (-4 *2 (-1099)))))
-(-13 (-695 |#1|) (-10 -8 (-6 -4417) (-15 -2666 ((-112) $)) (-15 -4084 ($ |#1| |#1| $))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27)))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4122 (($ |#1| |#1| $) 46)) (-1574 (((-112) $ (-771)) NIL)) (-2556 (($ (-1 (-112) |#1|) $) 62 (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-4060 (($ $) 48)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1450 (($ |#1| $) 59 (|has| $ (-6 -4414))) (($ (-1 (-112) |#1|) $) 61 (|has| $ (-6 -4414)))) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414)))) (-3799 (((-644 |#1|) $) 9 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 37)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3765 ((|#1| $) 50)) (-2903 (($ |#1| $) 29) (($ |#1| $ (-771)) 45)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3852 ((|#1| $) 53)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 23)) (-1793 (($) 28)) (-3938 (((-112) $) 57)) (-3423 (((-644 (-2 (|:| -2849 |#1|) (|:| -4067 (-771)))) $) 69)) (-3551 (($) 26) (($ (-644 |#1|)) 19)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) 66 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) 20)) (-3204 (((-538) $) 34 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) NIL)) (-3780 (((-862) $) 14 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) 24)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 71 (|has| |#1| (-1099)))) (-3020 (((-771) $) 17 (|has| $ (-6 -4414)))))
+(((-647 |#1|) (-13 (-695 |#1|) (-10 -8 (-6 -4414) (-15 -3938 ((-112) $)) (-15 -4122 ($ |#1| |#1| $)))) (-1099)) (T -647))
+((-3938 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-647 *3)) (-4 *3 (-1099)))) (-4122 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-647 *2)) (-4 *2 (-1099)))))
+(-13 (-695 |#1|) (-10 -8 (-6 -4414) (-15 -3938 ((-112) $)) (-15 -4122 ($ |#1| |#1| $))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27)))
(((-648 |#1|) (-140) (-1057)) (T -648))
NIL
(-13 (-21) (-646 |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771) $) 17)) (-3607 (($ $ |#1|) 69)) (-2736 (($ $) 39)) (-3852 (($ $) 37)) (-2977 (((-3 |#1| "failed") $) 61)) (-1756 ((|#1| $) NIL)) (-1875 (($ |#1| |#2| $) 79) (($ $ $) 81)) (-3834 (((-862) $ (-1 (-862) (-862) (-862)) (-1 (-862) (-862) (-862)) (-566)) 56)) (-2647 ((|#1| $ (-566)) 35)) (-1571 ((|#2| $ (-566)) 34)) (-4105 (($ (-1 |#1| |#1|) $) 41)) (-2855 (($ (-1 |#2| |#2|) $) 47)) (-3428 (($) 11)) (-2005 (($ |#1| |#2|) 24)) (-2726 (($ (-644 (-2 (|:| |gen| |#1|) (|:| -3613 |#2|)))) 25)) (-2407 (((-644 (-2 (|:| |gen| |#1|) (|:| -3613 |#2|))) $) 14)) (-3021 (($ |#1| $) 71)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3105 (((-112) $ $) 76)) (-2512 (((-862) $) 21) (($ |#1|) 18)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 27)))
-(((-649 |#1| |#2| |#3|) (-13 (-1099) (-1038 |#1|) (-10 -8 (-15 -3834 ((-862) $ (-1 (-862) (-862) (-862)) (-1 (-862) (-862) (-862)) (-566))) (-15 -2407 ((-644 (-2 (|:| |gen| |#1|) (|:| -3613 |#2|))) $)) (-15 -2005 ($ |#1| |#2|)) (-15 -2726 ($ (-644 (-2 (|:| |gen| |#1|) (|:| -3613 |#2|))))) (-15 -1571 (|#2| $ (-566))) (-15 -2647 (|#1| $ (-566))) (-15 -3852 ($ $)) (-15 -2736 ($ $)) (-15 -4025 ((-771) $)) (-15 -3428 ($)) (-15 -3607 ($ $ |#1|)) (-15 -3021 ($ |#1| $)) (-15 -1875 ($ |#1| |#2| $)) (-15 -1875 ($ $ $)) (-15 -3105 ((-112) $ $)) (-15 -2855 ($ (-1 |#2| |#2|) $)) (-15 -4105 ($ (-1 |#1| |#1|) $)))) (-1099) (-23) |#2|) (T -649))
-((-3834 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-862) (-862) (-862))) (-5 *4 (-566)) (-5 *2 (-862)) (-5 *1 (-649 *5 *6 *7)) (-4 *5 (-1099)) (-4 *6 (-23)) (-14 *7 *6))) (-2407 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 *4)))) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4))) (-2005 (*1 *1 *2 *3) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-2726 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 *4)))) (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-649 *3 *4 *5)))) (-1571 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *2 (-23)) (-5 *1 (-649 *4 *2 *5)) (-4 *4 (-1099)) (-14 *5 *2))) (-2647 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *2 (-1099)) (-5 *1 (-649 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-3852 (*1 *1 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-2736 (*1 *1 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-4025 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4))) (-3428 (*1 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-3607 (*1 *1 *1 *2) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-3021 (*1 *1 *2 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-1875 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-1875 (*1 *1 *1 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-3105 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4))) (-2855 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)))) (-4105 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-649 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
-(-13 (-1099) (-1038 |#1|) (-10 -8 (-15 -3834 ((-862) $ (-1 (-862) (-862) (-862)) (-1 (-862) (-862) (-862)) (-566))) (-15 -2407 ((-644 (-2 (|:| |gen| |#1|) (|:| -3613 |#2|))) $)) (-15 -2005 ($ |#1| |#2|)) (-15 -2726 ($ (-644 (-2 (|:| |gen| |#1|) (|:| -3613 |#2|))))) (-15 -1571 (|#2| $ (-566))) (-15 -2647 (|#1| $ (-566))) (-15 -3852 ($ $)) (-15 -2736 ($ $)) (-15 -4025 ((-771) $)) (-15 -3428 ($)) (-15 -3607 ($ $ |#1|)) (-15 -3021 ($ |#1| $)) (-15 -1875 ($ |#1| |#2| $)) (-15 -1875 ($ $ $)) (-15 -3105 ((-112) $ $)) (-15 -2855 ($ (-1 |#2| |#2|) $)) (-15 -4105 ($ (-1 |#1| |#1|) $))))
-((-1544 (((-566) $) 31)) (-4268 (($ |#2| $ (-566)) 27) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) 12)) (-2040 (((-112) (-566) $) 18)) (-3704 (($ $ |#2|) 24) (($ |#2| $) 25) (($ $ $) NIL) (($ (-644 $)) NIL)))
-(((-650 |#1| |#2|) (-10 -8 (-15 -4268 (|#1| |#1| |#1| (-566))) (-15 -4268 (|#1| |#2| |#1| (-566))) (-15 -3704 (|#1| (-644 |#1|))) (-15 -3704 (|#1| |#1| |#1|)) (-15 -3704 (|#1| |#2| |#1|)) (-15 -3704 (|#1| |#1| |#2|)) (-15 -1544 ((-566) |#1|)) (-15 -1922 ((-644 (-566)) |#1|)) (-15 -2040 ((-112) (-566) |#1|))) (-651 |#2|) (-1214)) (T -650))
-NIL
-(-10 -8 (-15 -4268 (|#1| |#1| |#1| (-566))) (-15 -4268 (|#1| |#2| |#1| (-566))) (-15 -3704 (|#1| (-644 |#1|))) (-15 -3704 (|#1| |#1| |#1|)) (-15 -3704 (|#1| |#2| |#1|)) (-15 -3704 (|#1| |#1| |#2|)) (-15 -1544 ((-566) |#1|)) (-15 -1922 ((-644 (-566)) |#1|)) (-15 -2040 ((-112) (-566) |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1537 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) 8)) (-3874 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-4093 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 52)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-4257 (($ (-771) |#1|) 70)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 44 (|has| (-566) (-850)))) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 45 (|has| (-566) (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-1922 (((-644 (-566)) $) 47)) (-2040 (((-112) (-566) $) 48)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4062 ((|#1| $) 43 (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1720 (($ $ |#1|) 42 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-2201 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 71)) (-3704 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771) $) 17)) (-2735 (($ $ |#1|) 69)) (-3416 (($ $) 39)) (-3507 (($ $) 37)) (-3066 (((-3 |#1| "failed") $) 61)) (-1867 ((|#1| $) NIL)) (-1955 (($ |#1| |#2| $) 79) (($ $ $) 81)) (-3154 (((-862) $ (-1 (-862) (-862) (-862)) (-1 (-862) (-862) (-862)) (-566)) 56)) (-3749 ((|#1| $ (-566)) 35)) (-2840 ((|#2| $ (-566)) 34)) (-3796 (($ (-1 |#1| |#1|) $) 41)) (-2158 (($ (-1 |#2| |#2|) $) 47)) (-1595 (($) 11)) (-1734 (($ |#1| |#2|) 24)) (-3327 (($ (-644 (-2 (|:| |gen| |#1|) (|:| -4337 |#2|)))) 25)) (-3298 (((-644 (-2 (|:| |gen| |#1|) (|:| -4337 |#2|))) $) 14)) (-2328 (($ |#1| $) 71)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3653 (((-112) $ $) 76)) (-3780 (((-862) $) 21) (($ |#1|) 18)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 27)))
+(((-649 |#1| |#2| |#3|) (-13 (-1099) (-1038 |#1|) (-10 -8 (-15 -3154 ((-862) $ (-1 (-862) (-862) (-862)) (-1 (-862) (-862) (-862)) (-566))) (-15 -3298 ((-644 (-2 (|:| |gen| |#1|) (|:| -4337 |#2|))) $)) (-15 -1734 ($ |#1| |#2|)) (-15 -3327 ($ (-644 (-2 (|:| |gen| |#1|) (|:| -4337 |#2|))))) (-15 -2840 (|#2| $ (-566))) (-15 -3749 (|#1| $ (-566))) (-15 -3507 ($ $)) (-15 -3416 ($ $)) (-15 -4070 ((-771) $)) (-15 -1595 ($)) (-15 -2735 ($ $ |#1|)) (-15 -2328 ($ |#1| $)) (-15 -1955 ($ |#1| |#2| $)) (-15 -1955 ($ $ $)) (-15 -3653 ((-112) $ $)) (-15 -2158 ($ (-1 |#2| |#2|) $)) (-15 -3796 ($ (-1 |#1| |#1|) $)))) (-1099) (-23) |#2|) (T -649))
+((-3154 (*1 *2 *1 *3 *3 *4) (-12 (-5 *3 (-1 (-862) (-862) (-862))) (-5 *4 (-566)) (-5 *2 (-862)) (-5 *1 (-649 *5 *6 *7)) (-4 *5 (-1099)) (-4 *6 (-23)) (-14 *7 *6))) (-3298 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 *4)))) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4))) (-1734 (*1 *1 *2 *3) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-3327 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 *4)))) (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-649 *3 *4 *5)))) (-2840 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *2 (-23)) (-5 *1 (-649 *4 *2 *5)) (-4 *4 (-1099)) (-14 *5 *2))) (-3749 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *2 (-1099)) (-5 *1 (-649 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-3507 (*1 *1 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-3416 (*1 *1 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-4070 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4))) (-1595 (*1 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-2735 (*1 *1 *1 *2) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-2328 (*1 *1 *2 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-1955 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-1955 (*1 *1 *1 *1) (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23)) (-14 *4 *3))) (-3653 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4))) (-2158 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)))) (-3796 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-649 *3 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))))
+(-13 (-1099) (-1038 |#1|) (-10 -8 (-15 -3154 ((-862) $ (-1 (-862) (-862) (-862)) (-1 (-862) (-862) (-862)) (-566))) (-15 -3298 ((-644 (-2 (|:| |gen| |#1|) (|:| -4337 |#2|))) $)) (-15 -1734 ($ |#1| |#2|)) (-15 -3327 ($ (-644 (-2 (|:| |gen| |#1|) (|:| -4337 |#2|))))) (-15 -2840 (|#2| $ (-566))) (-15 -3749 (|#1| $ (-566))) (-15 -3507 ($ $)) (-15 -3416 ($ $)) (-15 -4070 ((-771) $)) (-15 -1595 ($)) (-15 -2735 ($ $ |#1|)) (-15 -2328 ($ |#1| $)) (-15 -1955 ($ |#1| |#2| $)) (-15 -1955 ($ $ $)) (-15 -3653 ((-112) $ $)) (-15 -2158 ($ (-1 |#2| |#2|) $)) (-15 -3796 ($ (-1 |#1| |#1|) $))))
+((-2579 (((-566) $) 31)) (-4286 (($ |#2| $ (-566)) 27) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) 12)) (-3935 (((-112) (-566) $) 18)) (-3727 (($ $ |#2|) 24) (($ |#2| $) 25) (($ $ $) NIL) (($ (-644 $)) NIL)))
+(((-650 |#1| |#2|) (-10 -8 (-15 -4286 (|#1| |#1| |#1| (-566))) (-15 -4286 (|#1| |#2| |#1| (-566))) (-15 -3727 (|#1| (-644 |#1|))) (-15 -3727 (|#1| |#1| |#1|)) (-15 -3727 (|#1| |#2| |#1|)) (-15 -3727 (|#1| |#1| |#2|)) (-15 -2579 ((-566) |#1|)) (-15 -2140 ((-644 (-566)) |#1|)) (-15 -3935 ((-112) (-566) |#1|))) (-651 |#2|) (-1214)) (T -650))
+NIL
+(-10 -8 (-15 -4286 (|#1| |#1| |#1| (-566))) (-15 -4286 (|#1| |#2| |#1| (-566))) (-15 -3727 (|#1| (-644 |#1|))) (-15 -3727 (|#1| |#1| |#1|)) (-15 -3727 (|#1| |#2| |#1|)) (-15 -3727 (|#1| |#1| |#2|)) (-15 -2579 ((-566) |#1|)) (-15 -2140 ((-644 (-566)) |#1|)) (-15 -3935 ((-112) (-566) |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2518 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) 8)) (-3916 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-4133 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 52)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-4278 (($ (-771) |#1|) 70)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 44 (|has| (-566) (-850)))) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 45 (|has| (-566) (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-2140 (((-644 (-566)) $) 47)) (-3935 (((-112) (-566) $) 48)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4101 ((|#1| $) 43 (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3750 (($ $ |#1|) 42 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-2215 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 71)) (-3727 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-651 |#1|) (-140) (-1214)) (T -651))
-((-4257 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-3704 (*1 *1 *1 *2) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1214)))) (-3704 (*1 *1 *2 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1214)))) (-3704 (*1 *1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1214)))) (-3704 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-3077 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-4386 (*1 *1 *1 *2) (-12 (-5 *2 (-1231 (-566))) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-2201 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-2201 (*1 *1 *1 *2) (-12 (-5 *2 (-1231 (-566))) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-4268 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-651 *2)) (-4 *2 (-1214)))) (-4268 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-3874 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1231 (-566))) (|has| *1 (-6 -4418)) (-4 *1 (-651 *2)) (-4 *2 (-1214)))))
-(-13 (-604 (-566) |t#1|) (-151 |t#1|) (-10 -8 (-15 -4257 ($ (-771) |t#1|)) (-15 -3704 ($ $ |t#1|)) (-15 -3704 ($ |t#1| $)) (-15 -3704 ($ $ $)) (-15 -3704 ($ (-644 $))) (-15 -3077 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -4386 ($ $ (-1231 (-566)))) (-15 -2201 ($ $ (-566))) (-15 -2201 ($ $ (-1231 (-566)))) (-15 -4268 ($ |t#1| $ (-566))) (-15 -4268 ($ $ $ (-566))) (IF (|has| $ (-6 -4418)) (-15 -3874 (|t#1| $ (-1231 (-566)) |t#1|)) |%noBranch|)))
+((-4278 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-3727 (*1 *1 *1 *2) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1214)))) (-3727 (*1 *1 *2 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1214)))) (-3727 (*1 *1 *1 *1) (-12 (-4 *1 (-651 *2)) (-4 *2 (-1214)))) (-3727 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-3152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-4393 (*1 *1 *1 *2) (-12 (-5 *2 (-1231 (-566))) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-2215 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-2215 (*1 *1 *1 *2) (-12 (-5 *2 (-1231 (-566))) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-4286 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-651 *2)) (-4 *2 (-1214)))) (-4286 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))) (-3916 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1231 (-566))) (|has| *1 (-6 -4415)) (-4 *1 (-651 *2)) (-4 *2 (-1214)))))
+(-13 (-604 (-566) |t#1|) (-151 |t#1|) (-10 -8 (-15 -4278 ($ (-771) |t#1|)) (-15 -3727 ($ $ |t#1|)) (-15 -3727 ($ |t#1| $)) (-15 -3727 ($ $ $)) (-15 -3727 ($ (-644 $))) (-15 -3152 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -4393 ($ $ (-1231 (-566)))) (-15 -2215 ($ $ (-566))) (-15 -2215 ($ $ (-1231 (-566)))) (-15 -4286 ($ |t#1| $ (-566))) (-15 -4286 ($ $ $ (-566))) (IF (|has| $ (-6 -4415)) (-15 -3916 (|t#1| $ (-1231 (-566)) |t#1|)) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-287 #0=(-566) |#1|) . T) ((-289 #0# |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-604 #0# |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-2371 (((-3 |#2| "failed") |#3| |#2| (-1175) |#2| (-644 |#2|)) 174) (((-3 (-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) "failed") |#3| |#2| (-1175)) 44)))
-(((-652 |#1| |#2| |#3|) (-10 -7 (-15 -2371 ((-3 (-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) "failed") |#3| |#2| (-1175))) (-15 -2371 ((-3 |#2| "failed") |#3| |#2| (-1175) |#2| (-644 |#2|)))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)) (-13 (-29 |#1|) (-1199) (-959)) (-656 |#2|)) (T -652))
-((-2371 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 *2)) (-4 *2 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *1 (-652 *6 *2 *3)) (-4 *3 (-656 *2)))) (-2371 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1175)) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-4 *4 (-13 (-29 *6) (-1199) (-959))) (-5 *2 (-2 (|:| |particular| *4) (|:| -1990 (-644 *4)))) (-5 *1 (-652 *6 *4 *3)) (-4 *3 (-656 *4)))))
-(-10 -7 (-15 -2371 ((-3 (-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) "failed") |#3| |#2| (-1175))) (-15 -2371 ((-3 |#2| "failed") |#3| |#2| (-1175) |#2| (-644 |#2|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2368 (($ $) NIL (|has| |#1| (-365)))) (-1433 (($ $ $) NIL (|has| |#1| (-365)))) (-1946 (($ $ (-771)) NIL (|has| |#1| (-365)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3985 (($ $ $) NIL (|has| |#1| (-365)))) (-3773 (($ $ $) NIL (|has| |#1| (-365)))) (-3046 (($ $ $) NIL (|has| |#1| (-365)))) (-4133 (($ $ $) NIL (|has| |#1| (-365)))) (-1815 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2705 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-2121 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#1| (-454)))) (-2741 (((-112) $) NIL)) (-2519 (($ |#1| (-771)) NIL)) (-4045 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-558)))) (-1301 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-558)))) (-3251 (((-771) $) NIL)) (-1658 (($ $ $) NIL (|has| |#1| (-365)))) (-3667 (($ $ $) NIL (|has| |#1| (-365)))) (-3833 (($ $ $) NIL (|has| |#1| (-365)))) (-4279 (($ $ $) NIL (|has| |#1| (-365)))) (-2334 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2266 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-1931 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-4386 ((|#1| $ |#1|) NIL)) (-3634 (($ $ $) NIL (|has| |#1| (-365)))) (-3992 (((-771) $) NIL)) (-3181 ((|#1| $) NIL (|has| |#1| (-454)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) NIL)) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-771)) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-4002 ((|#1| $ |#1| |#1|) NIL)) (-1550 (($ $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($) NIL)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-4159 (((-3 |#2| "failed") |#3| |#2| (-1175) |#2| (-644 |#2|)) 174) (((-3 (-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) "failed") |#3| |#2| (-1175)) 44)))
+(((-652 |#1| |#2| |#3|) (-10 -7 (-15 -4159 ((-3 (-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) "failed") |#3| |#2| (-1175))) (-15 -4159 ((-3 |#2| "failed") |#3| |#2| (-1175) |#2| (-644 |#2|)))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)) (-13 (-29 |#1|) (-1199) (-959)) (-656 |#2|)) (T -652))
+((-4159 (*1 *2 *3 *2 *4 *2 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 *2)) (-4 *2 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *1 (-652 *6 *2 *3)) (-4 *3 (-656 *2)))) (-4159 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1175)) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-4 *4 (-13 (-29 *6) (-1199) (-959))) (-5 *2 (-2 (|:| |particular| *4) (|:| -1575 (-644 *4)))) (-5 *1 (-652 *6 *4 *3)) (-4 *3 (-656 *4)))))
+(-10 -7 (-15 -4159 ((-3 (-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) "failed") |#3| |#2| (-1175))) (-15 -4159 ((-3 |#2| "failed") |#3| |#2| (-1175) |#2| (-644 |#2|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4135 (($ $) NIL (|has| |#1| (-365)))) (-3879 (($ $ $) NIL (|has| |#1| (-365)))) (-2373 (($ $ (-771)) NIL (|has| |#1| (-365)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-2055 (($ $ $) NIL (|has| |#1| (-365)))) (-3803 (($ $ $) NIL (|has| |#1| (-365)))) (-1298 (($ $ $) NIL (|has| |#1| (-365)))) (-4094 (($ $ $) NIL (|has| |#1| (-365)))) (-3492 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-3124 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-3540 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#1| (-454)))) (-3466 (((-112) $) NIL)) (-2585 (($ |#1| (-771)) NIL)) (-1338 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-558)))) (-2889 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-558)))) (-2466 (((-771) $) NIL)) (-4342 (($ $ $) NIL (|has| |#1| (-365)))) (-2103 (($ $ $) NIL (|has| |#1| (-365)))) (-3144 (($ $ $) NIL (|has| |#1| (-365)))) (-3050 (($ $ $) NIL (|has| |#1| (-365)))) (-3805 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-4324 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-2230 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-4393 ((|#1| $ |#1|) NIL)) (-2995 (($ $ $) NIL (|has| |#1| (-365)))) (-2108 (((-771) $) NIL)) (-3042 ((|#1| $) NIL (|has| |#1| (-454)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) NIL)) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-771)) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-4046 ((|#1| $ |#1| |#1|) NIL)) (-2643 (($ $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($) NIL)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-653 |#1|) (-656 |#1|) (-233)) (T -653))
NIL
(-656 |#1|)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2368 (($ $) NIL (|has| |#1| (-365)))) (-1433 (($ $ $) NIL (|has| |#1| (-365)))) (-1946 (($ $ (-771)) NIL (|has| |#1| (-365)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3985 (($ $ $) NIL (|has| |#1| (-365)))) (-3773 (($ $ $) NIL (|has| |#1| (-365)))) (-3046 (($ $ $) NIL (|has| |#1| (-365)))) (-4133 (($ $ $) NIL (|has| |#1| (-365)))) (-1815 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2705 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-2121 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#1| (-454)))) (-2741 (((-112) $) NIL)) (-2519 (($ |#1| (-771)) NIL)) (-4045 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-558)))) (-1301 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-558)))) (-3251 (((-771) $) NIL)) (-1658 (($ $ $) NIL (|has| |#1| (-365)))) (-3667 (($ $ $) NIL (|has| |#1| (-365)))) (-3833 (($ $ $) NIL (|has| |#1| (-365)))) (-4279 (($ $ $) NIL (|has| |#1| (-365)))) (-2334 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2266 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-1931 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-4386 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-3634 (($ $ $) NIL (|has| |#1| (-365)))) (-3992 (((-771) $) NIL)) (-3181 ((|#1| $) NIL (|has| |#1| (-454)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) NIL)) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-771)) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-4002 ((|#1| $ |#1| |#1|) NIL)) (-1550 (($ $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($) NIL)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-654 |#1| |#2|) (-13 (-656 |#1|) (-287 |#2| |#2|)) (-233) (-13 (-648 |#1|) (-10 -8 (-15 -2862 ($ $))))) (T -654))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4135 (($ $) NIL (|has| |#1| (-365)))) (-3879 (($ $ $) NIL (|has| |#1| (-365)))) (-2373 (($ $ (-771)) NIL (|has| |#1| (-365)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-2055 (($ $ $) NIL (|has| |#1| (-365)))) (-3803 (($ $ $) NIL (|has| |#1| (-365)))) (-1298 (($ $ $) NIL (|has| |#1| (-365)))) (-4094 (($ $ $) NIL (|has| |#1| (-365)))) (-3492 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-3124 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-3540 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#1| (-454)))) (-3466 (((-112) $) NIL)) (-2585 (($ |#1| (-771)) NIL)) (-1338 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-558)))) (-2889 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-558)))) (-2466 (((-771) $) NIL)) (-4342 (($ $ $) NIL (|has| |#1| (-365)))) (-2103 (($ $ $) NIL (|has| |#1| (-365)))) (-3144 (($ $ $) NIL (|has| |#1| (-365)))) (-3050 (($ $ $) NIL (|has| |#1| (-365)))) (-3805 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-4324 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-2230 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-4393 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-2995 (($ $ $) NIL (|has| |#1| (-365)))) (-2108 (((-771) $) NIL)) (-3042 ((|#1| $) NIL (|has| |#1| (-454)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) NIL)) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-771)) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-4046 ((|#1| $ |#1| |#1|) NIL)) (-2643 (($ $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($) NIL)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-654 |#1| |#2|) (-13 (-656 |#1|) (-287 |#2| |#2|)) (-233) (-13 (-648 |#1|) (-10 -8 (-15 -2578 ($ $))))) (T -654))
NIL
(-13 (-656 |#1|) (-287 |#2| |#2|))
-((-2368 (($ $) 29)) (-1550 (($ $) 27)) (-2840 (($) 13)))
-(((-655 |#1| |#2|) (-10 -8 (-15 -2368 (|#1| |#1|)) (-15 -1550 (|#1| |#1|)) (-15 -2840 (|#1|))) (-656 |#2|) (-1049)) (T -655))
+((-4135 (($ $) 29)) (-2643 (($ $) 27)) (-2876 (($) 13)))
+(((-655 |#1| |#2|) (-10 -8 (-15 -4135 (|#1| |#1|)) (-15 -2643 (|#1| |#1|)) (-15 -2876 (|#1|))) (-656 |#2|) (-1049)) (T -655))
NIL
-(-10 -8 (-15 -2368 (|#1| |#1|)) (-15 -1550 (|#1| |#1|)) (-15 -2840 (|#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2368 (($ $) 87 (|has| |#1| (-365)))) (-1433 (($ $ $) 89 (|has| |#1| (-365)))) (-1946 (($ $ (-771)) 88 (|has| |#1| (-365)))) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-3985 (($ $ $) 50 (|has| |#1| (-365)))) (-3773 (($ $ $) 51 (|has| |#1| (-365)))) (-3046 (($ $ $) 53 (|has| |#1| (-365)))) (-4133 (($ $ $) 48 (|has| |#1| (-365)))) (-1815 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 47 (|has| |#1| (-365)))) (-2705 (((-3 $ "failed") $ $) 49 (|has| |#1| (-365)))) (-2121 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 52 (|has| |#1| (-365)))) (-2977 (((-3 (-566) "failed") $) 80 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 77 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 74)) (-1756 (((-566) $) 79 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 76 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 75)) (-3577 (($ $) 69)) (-1579 (((-3 $ "failed") $) 37)) (-4248 (($ $) 60 (|has| |#1| (-454)))) (-2741 (((-112) $) 35)) (-2519 (($ |#1| (-771)) 67)) (-4045 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 62 (|has| |#1| (-558)))) (-1301 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63 (|has| |#1| (-558)))) (-3251 (((-771) $) 71)) (-1658 (($ $ $) 57 (|has| |#1| (-365)))) (-3667 (($ $ $) 58 (|has| |#1| (-365)))) (-3833 (($ $ $) 46 (|has| |#1| (-365)))) (-4279 (($ $ $) 55 (|has| |#1| (-365)))) (-2334 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 54 (|has| |#1| (-365)))) (-2266 (((-3 $ "failed") $ $) 56 (|has| |#1| (-365)))) (-1931 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 59 (|has| |#1| (-365)))) (-3557 ((|#1| $) 70)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2972 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-558)))) (-4386 ((|#1| $ |#1|) 92)) (-3634 (($ $ $) 86 (|has| |#1| (-365)))) (-3992 (((-771) $) 72)) (-3181 ((|#1| $) 61 (|has| |#1| (-454)))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 78 (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) 73)) (-3868 (((-644 |#1|) $) 66)) (-2022 ((|#1| $ (-771)) 68)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-4002 ((|#1| $ |#1| |#1|) 65)) (-1550 (($ $) 90)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($) 91)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
+(-10 -8 (-15 -4135 (|#1| |#1|)) (-15 -2643 (|#1| |#1|)) (-15 -2876 (|#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4135 (($ $) 87 (|has| |#1| (-365)))) (-3879 (($ $ $) 89 (|has| |#1| (-365)))) (-2373 (($ $ (-771)) 88 (|has| |#1| (-365)))) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2055 (($ $ $) 50 (|has| |#1| (-365)))) (-3803 (($ $ $) 51 (|has| |#1| (-365)))) (-1298 (($ $ $) 53 (|has| |#1| (-365)))) (-4094 (($ $ $) 48 (|has| |#1| (-365)))) (-3492 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 47 (|has| |#1| (-365)))) (-3124 (((-3 $ "failed") $ $) 49 (|has| |#1| (-365)))) (-3540 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 52 (|has| |#1| (-365)))) (-3066 (((-3 (-566) "failed") $) 80 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 77 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 74)) (-1867 (((-566) $) 79 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 76 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 75)) (-3645 (($ $) 69)) (-2928 (((-3 $ "failed") $) 37)) (-2755 (($ $) 60 (|has| |#1| (-454)))) (-3466 (((-112) $) 35)) (-2585 (($ |#1| (-771)) 67)) (-1338 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 62 (|has| |#1| (-558)))) (-2889 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63 (|has| |#1| (-558)))) (-2466 (((-771) $) 71)) (-4342 (($ $ $) 57 (|has| |#1| (-365)))) (-2103 (($ $ $) 58 (|has| |#1| (-365)))) (-3144 (($ $ $) 46 (|has| |#1| (-365)))) (-3050 (($ $ $) 55 (|has| |#1| (-365)))) (-3805 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 54 (|has| |#1| (-365)))) (-4324 (((-3 $ "failed") $ $) 56 (|has| |#1| (-365)))) (-2230 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 59 (|has| |#1| (-365)))) (-3626 ((|#1| $) 70)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2997 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-558)))) (-4393 ((|#1| $ |#1|) 92)) (-2995 (($ $ $) 86 (|has| |#1| (-365)))) (-2108 (((-771) $) 72)) (-3042 ((|#1| $) 61 (|has| |#1| (-454)))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 78 (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) 73)) (-3456 (((-644 |#1|) $) 66)) (-3756 ((|#1| $ (-771)) 68)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-4046 ((|#1| $ |#1| |#1|) 65)) (-2643 (($ $) 90)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($) 91)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
(((-656 |#1|) (-140) (-1049)) (T -656))
-((-2840 (*1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)))) (-1550 (*1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)))) (-1433 (*1 *1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-1946 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-656 *3)) (-4 *3 (-1049)) (-4 *3 (-365)))) (-2368 (*1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-3634 (*1 *1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(-13 (-852 |t#1|) (-287 |t#1| |t#1|) (-10 -8 (-15 -2840 ($)) (-15 -1550 ($ $)) (IF (|has| |t#1| (-365)) (PROGN (-15 -1433 ($ $ $)) (-15 -1946 ($ $ (-771))) (-15 -2368 ($ $)) (-15 -3634 ($ $ $))) |%noBranch|)))
+((-2876 (*1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)))) (-2643 (*1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)))) (-3879 (*1 *1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-2373 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-656 *3)) (-4 *3 (-1049)) (-4 *3 (-365)))) (-4135 (*1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-2995 (*1 *1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(-13 (-852 |t#1|) (-287 |t#1| |t#1|) (-10 -8 (-15 -2876 ($)) (-15 -2643 ($ $)) (IF (|has| |t#1| (-365)) (PROGN (-15 -3879 ($ $ $)) (-15 -2373 ($ $ (-771))) (-15 -4135 ($ $)) (-15 -2995 ($ $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-172)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-616 #0=(-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-287 |#1| |#1|) . T) ((-413 |#1|) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 |#1|) |has| |#1| (-172)) ((-717 |#1|) |has| |#1| (-172)) ((-726) . T) ((-1038 #0#) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-852 |#1|) . T))
-((-3512 (((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|))) 87 (|has| |#1| (-27)))) (-2391 (((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|))) 86 (|has| |#1| (-27))) (((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|)) 19)))
-(((-657 |#1| |#2|) (-10 -7 (-15 -2391 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2391 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|)))) (-15 -3512 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|))))) |%noBranch|)) (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))) (-1240 |#1|)) (T -657))
-((-3512 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-653 (-409 *5)))) (-5 *1 (-657 *4 *5)) (-5 *3 (-653 (-409 *5))))) (-2391 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-653 (-409 *5)))) (-5 *1 (-657 *4 *5)) (-5 *3 (-653 (-409 *5))))) (-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-653 (-409 *6)))) (-5 *1 (-657 *5 *6)) (-5 *3 (-653 (-409 *6))))))
-(-10 -7 (-15 -2391 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2391 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|)))) (-15 -3512 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|))))) |%noBranch|))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2368 (($ $) NIL (|has| |#1| (-365)))) (-1433 (($ $ $) 28 (|has| |#1| (-365)))) (-1946 (($ $ (-771)) 31 (|has| |#1| (-365)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3985 (($ $ $) NIL (|has| |#1| (-365)))) (-3773 (($ $ $) NIL (|has| |#1| (-365)))) (-3046 (($ $ $) NIL (|has| |#1| (-365)))) (-4133 (($ $ $) NIL (|has| |#1| (-365)))) (-1815 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2705 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-2121 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#1| (-454)))) (-2741 (((-112) $) NIL)) (-2519 (($ |#1| (-771)) NIL)) (-4045 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-558)))) (-1301 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-558)))) (-3251 (((-771) $) NIL)) (-1658 (($ $ $) NIL (|has| |#1| (-365)))) (-3667 (($ $ $) NIL (|has| |#1| (-365)))) (-3833 (($ $ $) NIL (|has| |#1| (-365)))) (-4279 (($ $ $) NIL (|has| |#1| (-365)))) (-2334 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2266 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-1931 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-4386 ((|#1| $ |#1|) 24)) (-3634 (($ $ $) 33 (|has| |#1| (-365)))) (-3992 (((-771) $) NIL)) (-3181 ((|#1| $) NIL (|has| |#1| (-454)))) (-2512 (((-862) $) 20) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) NIL)) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-771)) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-4002 ((|#1| $ |#1| |#1|) 23)) (-1550 (($ $) NIL)) (-2485 (($) 21 T CONST)) (-2495 (($) 8 T CONST)) (-2840 (($) NIL)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-3094 (((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|))) 87 (|has| |#1| (-27)))) (-2473 (((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|))) 86 (|has| |#1| (-27))) (((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|)) 19)))
+(((-657 |#1| |#2|) (-10 -7 (-15 -2473 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2473 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|)))) (-15 -3094 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|))))) |%noBranch|)) (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))) (-1240 |#1|)) (T -657))
+((-3094 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-653 (-409 *5)))) (-5 *1 (-657 *4 *5)) (-5 *3 (-653 (-409 *5))))) (-2473 (*1 *2 *3) (-12 (-4 *4 (-27)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-653 (-409 *5)))) (-5 *1 (-657 *4 *5)) (-5 *3 (-653 (-409 *5))))) (-2473 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-653 (-409 *6)))) (-5 *1 (-657 *5 *6)) (-5 *3 (-653 (-409 *6))))))
+(-10 -7 (-15 -2473 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2473 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|)))) (-15 -3094 ((-644 (-653 (-409 |#2|))) (-653 (-409 |#2|))))) |%noBranch|))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4135 (($ $) NIL (|has| |#1| (-365)))) (-3879 (($ $ $) 28 (|has| |#1| (-365)))) (-2373 (($ $ (-771)) 31 (|has| |#1| (-365)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-2055 (($ $ $) NIL (|has| |#1| (-365)))) (-3803 (($ $ $) NIL (|has| |#1| (-365)))) (-1298 (($ $ $) NIL (|has| |#1| (-365)))) (-4094 (($ $ $) NIL (|has| |#1| (-365)))) (-3492 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-3124 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-3540 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#1| (-454)))) (-3466 (((-112) $) NIL)) (-2585 (($ |#1| (-771)) NIL)) (-1338 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-558)))) (-2889 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-558)))) (-2466 (((-771) $) NIL)) (-4342 (($ $ $) NIL (|has| |#1| (-365)))) (-2103 (($ $ $) NIL (|has| |#1| (-365)))) (-3144 (($ $ $) NIL (|has| |#1| (-365)))) (-3050 (($ $ $) NIL (|has| |#1| (-365)))) (-3805 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-4324 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-2230 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-4393 ((|#1| $ |#1|) 24)) (-2995 (($ $ $) 33 (|has| |#1| (-365)))) (-2108 (((-771) $) NIL)) (-3042 ((|#1| $) NIL (|has| |#1| (-454)))) (-3780 (((-862) $) 20) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) NIL)) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-771)) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-4046 ((|#1| $ |#1| |#1|) 23)) (-2643 (($ $) NIL)) (-2493 (($) 21 T CONST)) (-4333 (($) 8 T CONST)) (-2876 (($) NIL)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
(((-658 |#1| |#2|) (-656 |#1|) (-1049) (-1 |#1| |#1|)) (T -658))
NIL
(-656 |#1|)
-((-1433 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 70)) (-1946 ((|#2| |#2| (-771) (-1 |#1| |#1|)) 48)) (-3634 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 72)))
-(((-659 |#1| |#2|) (-10 -7 (-15 -1433 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1946 (|#2| |#2| (-771) (-1 |#1| |#1|))) (-15 -3634 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-365) (-656 |#1|)) (T -659))
-((-3634 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-365)) (-5 *1 (-659 *4 *2)) (-4 *2 (-656 *4)))) (-1946 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-771)) (-5 *4 (-1 *5 *5)) (-4 *5 (-365)) (-5 *1 (-659 *5 *2)) (-4 *2 (-656 *5)))) (-1433 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-365)) (-5 *1 (-659 *4 *2)) (-4 *2 (-656 *4)))))
-(-10 -7 (-15 -1433 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1946 (|#2| |#2| (-771) (-1 |#1| |#1|))) (-15 -3634 (|#2| |#2| |#2| (-1 |#1| |#1|))))
-((-3058 (($ $ $) 9)))
-(((-660 |#1|) (-10 -8 (-15 -3058 (|#1| |#1| |#1|))) (-661)) (T -660))
-NIL
-(-10 -8 (-15 -3058 (|#1| |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3009 (($ $) 10)) (-3058 (($ $ $) 8)) (-2940 (((-112) $ $) 6)) (-3044 (($ $ $) 9)))
+((-3879 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 70)) (-2373 ((|#2| |#2| (-771) (-1 |#1| |#1|)) 48)) (-2995 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 72)))
+(((-659 |#1| |#2|) (-10 -7 (-15 -3879 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2373 (|#2| |#2| (-771) (-1 |#1| |#1|))) (-15 -2995 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-365) (-656 |#1|)) (T -659))
+((-2995 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-365)) (-5 *1 (-659 *4 *2)) (-4 *2 (-656 *4)))) (-2373 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-771)) (-5 *4 (-1 *5 *5)) (-4 *5 (-365)) (-5 *1 (-659 *5 *2)) (-4 *2 (-656 *5)))) (-3879 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-365)) (-5 *1 (-659 *4 *2)) (-4 *2 (-656 *4)))))
+(-10 -7 (-15 -3879 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -2373 (|#2| |#2| (-771) (-1 |#1| |#1|))) (-15 -2995 (|#2| |#2| |#2| (-1 |#1| |#1|))))
+((-3074 (($ $ $) 9)))
+(((-660 |#1|) (-10 -8 (-15 -3074 (|#1| |#1| |#1|))) (-661)) (T -660))
+NIL
+(-10 -8 (-15 -3074 (|#1| |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3028 (($ $) 10)) (-3074 (($ $ $) 8)) (-2950 (((-112) $ $) 6)) (-3061 (($ $ $) 9)))
(((-661) (-140)) (T -661))
-((-3009 (*1 *1 *1) (-4 *1 (-661))) (-3044 (*1 *1 *1 *1) (-4 *1 (-661))) (-3058 (*1 *1 *1 *1) (-4 *1 (-661))))
-(-13 (-102) (-10 -8 (-15 -3009 ($ $)) (-15 -3044 ($ $ $)) (-15 -3058 ($ $ $))))
+((-3028 (*1 *1 *1) (-4 *1 (-661))) (-3061 (*1 *1 *1 *1) (-4 *1 (-661))) (-3074 (*1 *1 *1 *1) (-4 *1 (-661))))
+(-13 (-102) (-10 -8 (-15 -3028 ($ $)) (-15 -3061 ($ $ $)) (-15 -3074 ($ $ $))))
(((-102) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 15)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3001 ((|#1| $) 23)) (-1439 (($ $ $) NIL (|has| |#1| (-791)))) (-3059 (($ $ $) NIL (|has| |#1| (-791)))) (-2878 (((-1157) $) 48)) (-4033 (((-1119) $) NIL)) (-3013 ((|#3| $) 24)) (-2512 (((-862) $) 43)) (-3122 (((-112) $ $) 22)) (-2485 (($) 10 T CONST)) (-2998 (((-112) $ $) NIL (|has| |#1| (-791)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-791)))) (-2940 (((-112) $ $) 20)) (-2987 (((-112) $ $) NIL (|has| |#1| (-791)))) (-2962 (((-112) $ $) 26 (|has| |#1| (-791)))) (-3061 (($ $ |#3|) 36) (($ |#1| |#3|) 37)) (-3047 (($ $) 17) (($ $ $) NIL)) (-3034 (($ $ $) 29)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 32) (($ |#2| $) 34) (($ $ |#2|) NIL)))
-(((-662 |#1| |#2| |#3|) (-13 (-717 |#2|) (-10 -8 (IF (|has| |#1| (-791)) (-6 (-791)) |%noBranch|) (-15 -3061 ($ $ |#3|)) (-15 -3061 ($ |#1| |#3|)) (-15 -3001 (|#1| $)) (-15 -3013 (|#3| $)))) (-717 |#2|) (-172) (|SubsetCategory| (-726) |#2|)) (T -662))
-((-3061 (*1 *1 *1 *2) (-12 (-4 *4 (-172)) (-5 *1 (-662 *3 *4 *2)) (-4 *3 (-717 *4)) (-4 *2 (|SubsetCategory| (-726) *4)))) (-3061 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-662 *2 *4 *3)) (-4 *2 (-717 *4)) (-4 *3 (|SubsetCategory| (-726) *4)))) (-3001 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-717 *3)) (-5 *1 (-662 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-726) *3)))) (-3013 (*1 *2 *1) (-12 (-4 *4 (-172)) (-4 *2 (|SubsetCategory| (-726) *4)) (-5 *1 (-662 *3 *4 *2)) (-4 *3 (-717 *4)))))
-(-13 (-717 |#2|) (-10 -8 (IF (|has| |#1| (-791)) (-6 (-791)) |%noBranch|) (-15 -3061 ($ $ |#3|)) (-15 -3061 ($ |#1| |#3|)) (-15 -3001 (|#1| $)) (-15 -3013 (|#3| $))))
-((-4123 (((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|)) 33)))
-(((-663 |#1|) (-10 -7 (-15 -4123 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|)))) (-909)) (T -663))
-((-4123 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 *4))) (-5 *3 (-1171 *4)) (-4 *4 (-909)) (-5 *1 (-663 *4)))))
-(-10 -7 (-15 -4123 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-1719 (((-644 |#1|) $) 84)) (-1844 (($ $ (-771)) 94)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2847 (((-1288 |#1| |#2|) (-1288 |#1| |#2|) $) 50)) (-2977 (((-3 (-672 |#1|) "failed") $) NIL)) (-1756 (((-672 |#1|) $) NIL)) (-3577 (($ $) 93)) (-3505 (((-771) $) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-1966 (($ (-672 |#1|) |#2|) 70)) (-1867 (($ $) 89)) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-1388 (((-1288 |#1| |#2|) (-1288 |#1| |#2|) $) 49)) (-3127 (((-2 (|:| |k| (-672 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3545 (((-672 |#1|) $) NIL)) (-3557 ((|#2| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2070 (($ $ |#1| $) 32) (($ $ (-644 |#1|) (-644 $)) 34)) (-3992 (((-771) $) 91)) (-2523 (($ $ $) 20) (($ (-672 |#1|) (-672 |#1|)) 79) (($ (-672 |#1|) $) 77) (($ $ (-672 |#1|)) 78)) (-2512 (((-862) $) NIL) (($ |#1|) 76) (((-1279 |#1| |#2|) $) 60) (((-1288 |#1| |#2|) $) 43) (($ (-672 |#1|)) 27)) (-3868 (((-644 |#2|) $) NIL)) (-2022 ((|#2| $ (-672 |#1|)) NIL)) (-3157 ((|#2| (-1288 |#1| |#2|) $) 45)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 23 T CONST)) (-1521 (((-644 (-2 (|:| |k| (-672 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3506 (((-3 $ "failed") (-1279 |#1| |#2|)) 62)) (-1804 (($ (-672 |#1|)) 14)) (-2940 (((-112) $ $) 46)) (-3061 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3047 (($ $) 68) (($ $ $) NIL)) (-3034 (($ $ $) 31)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#2| $) 30) (($ $ |#2|) NIL) (($ |#2| (-672 |#1|)) NIL)))
-(((-664 |#1| |#2|) (-13 (-376 |#1| |#2|) (-384 |#2| (-672 |#1|)) (-10 -8 (-15 -3506 ((-3 $ "failed") (-1279 |#1| |#2|))) (-15 -2523 ($ (-672 |#1|) (-672 |#1|))) (-15 -2523 ($ (-672 |#1|) $)) (-15 -2523 ($ $ (-672 |#1|))))) (-850) (-172)) (T -664))
-((-3506 (*1 *1 *2) (|partial| -12 (-5 *2 (-1279 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *1 (-664 *3 *4)))) (-2523 (*1 *1 *2 *2) (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4)) (-4 *4 (-172)))) (-2523 (*1 *1 *2 *1) (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4)) (-4 *4 (-172)))) (-2523 (*1 *1 *1 *2) (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4)) (-4 *4 (-172)))))
-(-13 (-376 |#1| |#2|) (-384 |#2| (-672 |#1|)) (-10 -8 (-15 -3506 ((-3 $ "failed") (-1279 |#1| |#2|))) (-15 -2523 ($ (-672 |#1|) (-672 |#1|))) (-15 -2523 ($ (-672 |#1|) $)) (-15 -2523 ($ $ (-672 |#1|)))))
-((-2383 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 61)) (-3426 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-3586 (($ (-1 (-112) |#2|) $) 29)) (-2736 (($ $) 67)) (-4130 (($ $) 78)) (-3066 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 43)) (-4362 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 62) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 64)) (-3968 (((-566) |#2| $ (-566)) 75) (((-566) |#2| $) NIL) (((-566) (-1 (-112) |#2|) $) 56)) (-4257 (($ (-771) |#2|) 65)) (-1865 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 31)) (-3132 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-3077 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 66)) (-3932 (($ |#2|) 15)) (-4265 (($ $ $ (-566)) 42) (($ |#2| $ (-566)) 40)) (-2126 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 53)) (-1424 (($ $ (-1231 (-566))) 51) (($ $ (-566)) 44)) (-3245 (($ $ $ (-566)) 74)) (-3895 (($ $) 72)) (-2962 (((-112) $ $) 80)))
-(((-665 |#1| |#2|) (-10 -8 (-15 -3932 (|#1| |#2|)) (-15 -1424 (|#1| |#1| (-566))) (-15 -1424 (|#1| |#1| (-1231 (-566)))) (-15 -3066 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4265 (|#1| |#2| |#1| (-566))) (-15 -4265 (|#1| |#1| |#1| (-566))) (-15 -1865 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3586 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3066 (|#1| |#2| |#1|)) (-15 -4130 (|#1| |#1|)) (-15 -1865 (|#1| |#1| |#1|)) (-15 -3132 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2383 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3968 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -3968 ((-566) |#2| |#1|)) (-15 -3968 ((-566) |#2| |#1| (-566))) (-15 -3132 (|#1| |#1| |#1|)) (-15 -2383 ((-112) |#1|)) (-15 -3245 (|#1| |#1| |#1| (-566))) (-15 -2736 (|#1| |#1|)) (-15 -3426 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3426 (|#1| |#1|)) (-15 -2962 ((-112) |#1| |#1|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2126 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4257 (|#1| (-771) |#2|)) (-15 -3077 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3895 (|#1| |#1|))) (-666 |#2|) (-1214)) (T -665))
-NIL
-(-10 -8 (-15 -3932 (|#1| |#2|)) (-15 -1424 (|#1| |#1| (-566))) (-15 -1424 (|#1| |#1| (-1231 (-566)))) (-15 -3066 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -4265 (|#1| |#2| |#1| (-566))) (-15 -4265 (|#1| |#1| |#1| (-566))) (-15 -1865 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3586 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3066 (|#1| |#2| |#1|)) (-15 -4130 (|#1| |#1|)) (-15 -1865 (|#1| |#1| |#1|)) (-15 -3132 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2383 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3968 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -3968 ((-566) |#2| |#1|)) (-15 -3968 ((-566) |#2| |#1| (-566))) (-15 -3132 (|#1| |#1| |#1|)) (-15 -2383 ((-112) |#1|)) (-15 -3245 (|#1| |#1| |#1| (-566))) (-15 -2736 (|#1| |#1|)) (-15 -3426 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3426 (|#1| |#1|)) (-15 -2962 ((-112) |#1| |#1|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -4362 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2126 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4257 (|#1| (-771) |#2|)) (-15 -3077 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3895 (|#1| |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2212 ((|#1| $) 49)) (-4309 ((|#1| $) 66)) (-3301 (($ $) 68)) (-1537 (((-1269) $ (-566) (-566)) 98 (|has| $ (-6 -4418)))) (-1410 (($ $ (-566)) 53 (|has| $ (-6 -4418)))) (-2383 (((-112) $) 143 (|has| |#1| (-850))) (((-112) (-1 (-112) |#1| |#1|) $) 137)) (-3426 (($ $) 147 (-12 (|has| |#1| (-850)) (|has| $ (-6 -4418)))) (($ (-1 (-112) |#1| |#1|) $) 146 (|has| $ (-6 -4418)))) (-3290 (($ $) 142 (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $) 136)) (-3081 (((-112) $ (-771)) 8)) (-3087 ((|#1| $ |#1|) 40 (|has| $ (-6 -4418)))) (-4290 (($ $ $) 57 (|has| $ (-6 -4418)))) (-1587 ((|#1| $ |#1|) 55 (|has| $ (-6 -4418)))) (-2831 ((|#1| $ |#1|) 59 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4418))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4418))) (($ $ "rest" $) 56 (|has| $ (-6 -4418))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) 118 (|has| $ (-6 -4418))) ((|#1| $ (-566) |#1|) 87 (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 42 (|has| $ (-6 -4418)))) (-3586 (($ (-1 (-112) |#1|) $) 130)) (-4186 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4417)))) (-4299 ((|#1| $) 67)) (-2342 (($) 7 T CONST)) (-2736 (($ $) 145 (|has| $ (-6 -4418)))) (-3852 (($ $) 135)) (-4076 (($ $) 74) (($ $ (-771)) 72)) (-4130 (($ $) 132 (|has| |#1| (-1099)))) (-4093 (($ $) 100 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3066 (($ |#1| $) 131 (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) 126)) (-2651 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4417))) (($ |#1| $) 101 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1332 ((|#1| $ (-566) |#1|) 86 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 88)) (-1901 (((-112) $) 84)) (-3968 (((-566) |#1| $ (-566)) 140 (|has| |#1| (-1099))) (((-566) |#1| $) 139 (|has| |#1| (-1099))) (((-566) (-1 (-112) |#1|) $) 138)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) 51)) (-4129 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-4257 (($ (-771) |#1|) 109)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 96 (|has| (-566) (-850)))) (-1439 (($ $ $) 148 (|has| |#1| (-850)))) (-1865 (($ $ $) 133 (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) 129)) (-3132 (($ $ $) 141 (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) 134)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 95 (|has| (-566) (-850)))) (-3059 (($ $ $) 149 (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3932 (($ |#1|) 123)) (-3882 (((-112) $ (-771)) 10)) (-2996 (((-644 |#1|) $) 46)) (-2783 (((-112) $) 50)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2670 ((|#1| $) 71) (($ $ (-771)) 69)) (-4265 (($ $ $ (-566)) 128) (($ |#1| $ (-566)) 127)) (-4268 (($ $ $ (-566)) 117) (($ |#1| $ (-566)) 116)) (-1922 (((-644 (-566)) $) 93)) (-2040 (((-112) (-566) $) 92)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4062 ((|#1| $) 77) (($ $ (-771)) 75)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-1720 (($ $ |#1|) 97 (|has| $ (-6 -4418)))) (-1335 (((-112) $) 85)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) 91)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1231 (-566))) 113) ((|#1| $ (-566)) 90) ((|#1| $ (-566) |#1|) 89)) (-1442 (((-566) $ $) 45)) (-1424 (($ $ (-1231 (-566))) 125) (($ $ (-566)) 124)) (-2201 (($ $ (-1231 (-566))) 115) (($ $ (-566)) 114)) (-1313 (((-112) $) 47)) (-1636 (($ $) 63)) (-2231 (($ $) 60 (|has| $ (-6 -4418)))) (-3069 (((-771) $) 64)) (-1904 (($ $) 65)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3245 (($ $ $ (-566)) 144 (|has| $ (-6 -4418)))) (-3895 (($ $) 13)) (-3134 (((-538) $) 99 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 108)) (-1498 (($ $ $) 62) (($ $ |#1|) 61)) (-3704 (($ $ $) 79) (($ |#1| $) 78) (($ (-644 $)) 111) (($ $ |#1|) 110)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) 52)) (-2105 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) 151 (|has| |#1| (-850)))) (-2974 (((-112) $ $) 152 (|has| |#1| (-850)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2987 (((-112) $ $) 150 (|has| |#1| (-850)))) (-2962 (((-112) $ $) 153 (|has| |#1| (-850)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 15)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3088 ((|#1| $) 23)) (-1945 (($ $ $) NIL (|has| |#1| (-791)))) (-2709 (($ $ $) NIL (|has| |#1| (-791)))) (-2402 (((-1157) $) 48)) (-4056 (((-1119) $) NIL)) (-3100 ((|#3| $) 24)) (-3780 (((-862) $) 43)) (-3801 (((-112) $ $) 22)) (-2493 (($) 10 T CONST)) (-3010 (((-112) $ $) NIL (|has| |#1| (-791)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-791)))) (-2950 (((-112) $ $) 20)) (-2999 (((-112) $ $) NIL (|has| |#1| (-791)))) (-2972 (((-112) $ $) 26 (|has| |#1| (-791)))) (-3062 (($ $ |#3|) 36) (($ |#1| |#3|) 37)) (-3051 (($ $) 17) (($ $ $) NIL)) (-3040 (($ $ $) 29)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 32) (($ |#2| $) 34) (($ $ |#2|) NIL)))
+(((-662 |#1| |#2| |#3|) (-13 (-717 |#2|) (-10 -8 (IF (|has| |#1| (-791)) (-6 (-791)) |%noBranch|) (-15 -3062 ($ $ |#3|)) (-15 -3062 ($ |#1| |#3|)) (-15 -3088 (|#1| $)) (-15 -3100 (|#3| $)))) (-717 |#2|) (-172) (|SubsetCategory| (-726) |#2|)) (T -662))
+((-3062 (*1 *1 *1 *2) (-12 (-4 *4 (-172)) (-5 *1 (-662 *3 *4 *2)) (-4 *3 (-717 *4)) (-4 *2 (|SubsetCategory| (-726) *4)))) (-3062 (*1 *1 *2 *3) (-12 (-4 *4 (-172)) (-5 *1 (-662 *2 *4 *3)) (-4 *2 (-717 *4)) (-4 *3 (|SubsetCategory| (-726) *4)))) (-3088 (*1 *2 *1) (-12 (-4 *3 (-172)) (-4 *2 (-717 *3)) (-5 *1 (-662 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-726) *3)))) (-3100 (*1 *2 *1) (-12 (-4 *4 (-172)) (-4 *2 (|SubsetCategory| (-726) *4)) (-5 *1 (-662 *3 *4 *2)) (-4 *3 (-717 *4)))))
+(-13 (-717 |#2|) (-10 -8 (IF (|has| |#1| (-791)) (-6 (-791)) |%noBranch|) (-15 -3062 ($ $ |#3|)) (-15 -3062 ($ |#1| |#3|)) (-15 -3088 (|#1| $)) (-15 -3100 (|#3| $))))
+((-3980 (((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|)) 33)))
+(((-663 |#1|) (-10 -7 (-15 -3980 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|)))) (-909)) (T -663))
+((-3980 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 *4))) (-5 *3 (-1171 *4)) (-4 *4 (-909)) (-5 *1 (-663 *4)))))
+(-10 -7 (-15 -3980 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-1824 (((-644 |#1|) $) 84)) (-2564 (($ $ (-771)) 94)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-2087 (((-1288 |#1| |#2|) (-1288 |#1| |#2|) $) 50)) (-3066 (((-3 (-672 |#1|) "failed") $) NIL)) (-1867 (((-672 |#1|) $) NIL)) (-3645 (($ $) 93)) (-4230 (((-771) $) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2044 (($ (-672 |#1|) |#2|) 70)) (-2781 (($ $) 89)) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-1987 (((-1288 |#1| |#2|) (-1288 |#1| |#2|) $) 49)) (-3840 (((-2 (|:| |k| (-672 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3614 (((-672 |#1|) $) NIL)) (-3626 ((|#2| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2095 (($ $ |#1| $) 32) (($ $ (-644 |#1|) (-644 $)) 34)) (-2108 (((-771) $) 91)) (-3791 (($ $ $) 20) (($ (-672 |#1|) (-672 |#1|)) 79) (($ (-672 |#1|) $) 77) (($ $ (-672 |#1|)) 78)) (-3780 (((-862) $) NIL) (($ |#1|) 76) (((-1279 |#1| |#2|) $) 60) (((-1288 |#1| |#2|) $) 43) (($ (-672 |#1|)) 27)) (-3456 (((-644 |#2|) $) NIL)) (-3756 ((|#2| $ (-672 |#1|)) NIL)) (-3223 ((|#2| (-1288 |#1| |#2|) $) 45)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 23 T CONST)) (-2356 (((-644 (-2 (|:| |k| (-672 |#1|)) (|:| |c| |#2|))) $) NIL)) (-4240 (((-3 $ "failed") (-1279 |#1| |#2|)) 62)) (-3384 (($ (-672 |#1|)) 14)) (-2950 (((-112) $ $) 46)) (-3062 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3051 (($ $) 68) (($ $ $) NIL)) (-3040 (($ $ $) 31)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#2| $) 30) (($ $ |#2|) NIL) (($ |#2| (-672 |#1|)) NIL)))
+(((-664 |#1| |#2|) (-13 (-376 |#1| |#2|) (-384 |#2| (-672 |#1|)) (-10 -8 (-15 -4240 ((-3 $ "failed") (-1279 |#1| |#2|))) (-15 -3791 ($ (-672 |#1|) (-672 |#1|))) (-15 -3791 ($ (-672 |#1|) $)) (-15 -3791 ($ $ (-672 |#1|))))) (-850) (-172)) (T -664))
+((-4240 (*1 *1 *2) (|partial| -12 (-5 *2 (-1279 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *1 (-664 *3 *4)))) (-3791 (*1 *1 *2 *2) (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4)) (-4 *4 (-172)))) (-3791 (*1 *1 *2 *1) (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4)) (-4 *4 (-172)))) (-3791 (*1 *1 *1 *2) (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4)) (-4 *4 (-172)))))
+(-13 (-376 |#1| |#2|) (-384 |#2| (-672 |#1|)) (-10 -8 (-15 -4240 ((-3 $ "failed") (-1279 |#1| |#2|))) (-15 -3791 ($ (-672 |#1|) (-672 |#1|))) (-15 -3791 ($ (-672 |#1|) $)) (-15 -3791 ($ $ (-672 |#1|)))))
+((-3070 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 61)) (-1570 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-2556 (($ (-1 (-112) |#2|) $) 29)) (-3416 (($ $) 67)) (-4060 (($ $) 78)) (-1450 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 43)) (-1580 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 62) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 64)) (-4015 (((-566) |#2| $ (-566)) 75) (((-566) |#2| $) NIL) (((-566) (-1 (-112) |#2|) $) 56)) (-4278 (($ (-771) |#2|) 65)) (-2761 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 31)) (-3891 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-3152 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 66)) (-3977 (($ |#2|) 15)) (-2903 (($ $ $ (-566)) 42) (($ |#2| $ (-566)) 40)) (-3591 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 53)) (-3798 (($ $ (-1231 (-566))) 51) (($ $ (-566)) 44)) (-3610 (($ $ $ (-566)) 74)) (-3940 (($ $) 72)) (-2972 (((-112) $ $) 80)))
+(((-665 |#1| |#2|) (-10 -8 (-15 -3977 (|#1| |#2|)) (-15 -3798 (|#1| |#1| (-566))) (-15 -3798 (|#1| |#1| (-1231 (-566)))) (-15 -1450 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2903 (|#1| |#2| |#1| (-566))) (-15 -2903 (|#1| |#1| |#1| (-566))) (-15 -2761 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1450 (|#1| |#2| |#1|)) (-15 -4060 (|#1| |#1|)) (-15 -2761 (|#1| |#1| |#1|)) (-15 -3891 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3070 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4015 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -4015 ((-566) |#2| |#1|)) (-15 -4015 ((-566) |#2| |#1| (-566))) (-15 -3891 (|#1| |#1| |#1|)) (-15 -3070 ((-112) |#1|)) (-15 -3610 (|#1| |#1| |#1| (-566))) (-15 -3416 (|#1| |#1|)) (-15 -1570 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1570 (|#1| |#1|)) (-15 -2972 ((-112) |#1| |#1|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3591 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4278 (|#1| (-771) |#2|)) (-15 -3152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3940 (|#1| |#1|))) (-666 |#2|) (-1214)) (T -665))
+NIL
+(-10 -8 (-15 -3977 (|#1| |#2|)) (-15 -3798 (|#1| |#1| (-566))) (-15 -3798 (|#1| |#1| (-1231 (-566)))) (-15 -1450 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2903 (|#1| |#2| |#1| (-566))) (-15 -2903 (|#1| |#1| |#1| (-566))) (-15 -2761 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2556 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1450 (|#1| |#2| |#1|)) (-15 -4060 (|#1| |#1|)) (-15 -2761 (|#1| |#1| |#1|)) (-15 -3891 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3070 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4015 ((-566) (-1 (-112) |#2|) |#1|)) (-15 -4015 ((-566) |#2| |#1|)) (-15 -4015 ((-566) |#2| |#1| (-566))) (-15 -3891 (|#1| |#1| |#1|)) (-15 -3070 ((-112) |#1|)) (-15 -3610 (|#1| |#1| |#1| (-566))) (-15 -3416 (|#1| |#1|)) (-15 -1570 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1570 (|#1| |#1|)) (-15 -2972 ((-112) |#1| |#1|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -1580 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3591 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4278 (|#1| (-771) |#2|)) (-15 -3152 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3940 (|#1| |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2252 ((|#1| $) 49)) (-4369 ((|#1| $) 66)) (-4043 (($ $) 68)) (-2518 (((-1269) $ (-566) (-566)) 98 (|has| $ (-6 -4415)))) (-3670 (($ $ (-566)) 53 (|has| $ (-6 -4415)))) (-3070 (((-112) $) 143 (|has| |#1| (-850))) (((-112) (-1 (-112) |#1| |#1|) $) 137)) (-1570 (($ $) 147 (-12 (|has| |#1| (-850)) (|has| $ (-6 -4415)))) (($ (-1 (-112) |#1| |#1|) $) 146 (|has| $ (-6 -4415)))) (-1568 (($ $) 142 (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $) 136)) (-1574 (((-112) $ (-771)) 8)) (-1637 ((|#1| $ |#1|) 40 (|has| $ (-6 -4415)))) (-1938 (($ $ $) 57 (|has| $ (-6 -4415)))) (-1819 ((|#1| $ |#1|) 55 (|has| $ (-6 -4415)))) (-1921 ((|#1| $ |#1|) 59 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4415))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4415))) (($ $ "rest" $) 56 (|has| $ (-6 -4415))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) 118 (|has| $ (-6 -4415))) ((|#1| $ (-566) |#1|) 87 (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 42 (|has| $ (-6 -4415)))) (-2556 (($ (-1 (-112) |#1|) $) 130)) (-1386 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4414)))) (-4358 ((|#1| $) 67)) (-3877 (($) 7 T CONST)) (-3416 (($ $) 145 (|has| $ (-6 -4415)))) (-3507 (($ $) 135)) (-4112 (($ $) 74) (($ $ (-771)) 72)) (-4060 (($ $) 132 (|has| |#1| (-1099)))) (-4133 (($ $) 100 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1450 (($ |#1| $) 131 (|has| |#1| (-1099))) (($ (-1 (-112) |#1|) $) 126)) (-2661 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4414))) (($ |#1| $) 101 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3128 ((|#1| $ (-566) |#1|) 86 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 88)) (-1935 (((-112) $) 84)) (-4015 (((-566) |#1| $ (-566)) 140 (|has| |#1| (-1099))) (((-566) |#1| $) 139 (|has| |#1| (-1099))) (((-566) (-1 (-112) |#1|) $) 138)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) 51)) (-4050 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-4278 (($ (-771) |#1|) 109)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 96 (|has| (-566) (-850)))) (-1945 (($ $ $) 148 (|has| |#1| (-850)))) (-2761 (($ $ $) 133 (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) 129)) (-3891 (($ $ $) 141 (|has| |#1| (-850))) (($ (-1 (-112) |#1| |#1|) $ $) 134)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 95 (|has| (-566) (-850)))) (-2709 (($ $ $) 149 (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3977 (($ |#1|) 123)) (-3582 (((-112) $ (-771)) 10)) (-3318 (((-644 |#1|) $) 46)) (-2675 (((-112) $) 50)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2680 ((|#1| $) 71) (($ $ (-771)) 69)) (-2903 (($ $ $ (-566)) 128) (($ |#1| $ (-566)) 127)) (-4286 (($ $ $ (-566)) 117) (($ |#1| $ (-566)) 116)) (-2140 (((-644 (-566)) $) 93)) (-3935 (((-112) (-566) $) 92)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4101 ((|#1| $) 77) (($ $ (-771)) 75)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-3750 (($ $ |#1|) 97 (|has| $ (-6 -4415)))) (-1927 (((-112) $) 85)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) 91)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1231 (-566))) 113) ((|#1| $ (-566)) 90) ((|#1| $ (-566) |#1|) 89)) (-3969 (((-566) $ $) 45)) (-3798 (($ $ (-1231 (-566))) 125) (($ $ (-566)) 124)) (-2215 (($ $ (-1231 (-566))) 115) (($ $ (-566)) 114)) (-1638 (((-112) $) 47)) (-2299 (($ $) 63)) (-2127 (($ $) 60 (|has| $ (-6 -4415)))) (-1472 (((-771) $) 64)) (-1957 (($ $) 65)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3610 (($ $ $ (-566)) 144 (|has| $ (-6 -4415)))) (-3940 (($ $) 13)) (-3204 (((-538) $) 99 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 108)) (-3324 (($ $ $) 62) (($ $ |#1|) 61)) (-3727 (($ $ $) 79) (($ |#1| $) 78) (($ (-644 $)) 111) (($ $ |#1|) 110)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) 52)) (-3381 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) 151 (|has| |#1| (-850)))) (-2984 (((-112) $ $) 152 (|has| |#1| (-850)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2999 (((-112) $ $) 150 (|has| |#1| (-850)))) (-2972 (((-112) $ $) 153 (|has| |#1| (-850)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-666 |#1|) (-140) (-1214)) (T -666))
-((-3932 (*1 *1 *2) (-12 (-4 *1 (-666 *2)) (-4 *2 (-1214)))))
-(-13 (-1148 |t#1|) (-375 |t#1|) (-283 |t#1|) (-10 -8 (-15 -3932 ($ |t#1|))))
+((-3977 (*1 *1 *2) (-12 (-4 *1 (-666 *2)) (-4 *2 (-1214)))))
+(-13 (-1148 |t#1|) (-375 |t#1|) (-283 |t#1|) (-10 -8 (-15 -3977 ($ |t#1|))))
(((-34) . T) ((-102) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850))) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-287 #0=(-566) |#1|) . T) ((-289 #0# |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-283 |#1|) . T) ((-375 |#1|) . T) ((-491 |#1|) . T) ((-604 #0# |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-651 |#1|) . T) ((-850) |has| |#1| (-850)) ((-1010 |#1|) . T) ((-1099) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850))) ((-1148 |#1|) . T) ((-1214) . T) ((-1252 |#1|) . T))
-((-2371 (((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|))))) (-644 (-644 |#1|)) (-644 (-1264 |#1|))) 22) (((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|))))) (-689 |#1|) (-644 (-1264 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|)))) (-644 (-644 |#1|)) (-1264 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|)) 14)) (-1821 (((-771) (-689 |#1|) (-1264 |#1|)) 30)) (-1462 (((-3 (-1264 |#1|) "failed") (-689 |#1|) (-1264 |#1|)) 24)) (-4085 (((-112) (-689 |#1|) (-1264 |#1|)) 27)))
-(((-667 |#1|) (-10 -7 (-15 -2371 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|))) (-15 -2371 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|)))) (-644 (-644 |#1|)) (-1264 |#1|))) (-15 -2371 ((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|))))) (-689 |#1|) (-644 (-1264 |#1|)))) (-15 -2371 ((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|))))) (-644 (-644 |#1|)) (-644 (-1264 |#1|)))) (-15 -1462 ((-3 (-1264 |#1|) "failed") (-689 |#1|) (-1264 |#1|))) (-15 -4085 ((-112) (-689 |#1|) (-1264 |#1|))) (-15 -1821 ((-771) (-689 |#1|) (-1264 |#1|)))) (-365)) (T -667))
-((-1821 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)) (-4 *5 (-365)) (-5 *2 (-771)) (-5 *1 (-667 *5)))) (-4085 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)) (-4 *5 (-365)) (-5 *2 (-112)) (-5 *1 (-667 *5)))) (-1462 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1264 *4)) (-5 *3 (-689 *4)) (-4 *4 (-365)) (-5 *1 (-667 *4)))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-644 *5))) (-4 *5 (-365)) (-5 *2 (-644 (-2 (|:| |particular| (-3 (-1264 *5) "failed")) (|:| -1990 (-644 (-1264 *5)))))) (-5 *1 (-667 *5)) (-5 *4 (-644 (-1264 *5))))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *5)) (-4 *5 (-365)) (-5 *2 (-644 (-2 (|:| |particular| (-3 (-1264 *5) "failed")) (|:| -1990 (-644 (-1264 *5)))))) (-5 *1 (-667 *5)) (-5 *4 (-644 (-1264 *5))))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-644 *5))) (-4 *5 (-365)) (-5 *2 (-2 (|:| |particular| (-3 (-1264 *5) "failed")) (|:| -1990 (-644 (-1264 *5))))) (-5 *1 (-667 *5)) (-5 *4 (-1264 *5)))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| |particular| (-3 (-1264 *5) "failed")) (|:| -1990 (-644 (-1264 *5))))) (-5 *1 (-667 *5)) (-5 *4 (-1264 *5)))))
-(-10 -7 (-15 -2371 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|))) (-15 -2371 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|)))) (-644 (-644 |#1|)) (-1264 |#1|))) (-15 -2371 ((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|))))) (-689 |#1|) (-644 (-1264 |#1|)))) (-15 -2371 ((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|))))) (-644 (-644 |#1|)) (-644 (-1264 |#1|)))) (-15 -1462 ((-3 (-1264 |#1|) "failed") (-689 |#1|) (-1264 |#1|))) (-15 -4085 ((-112) (-689 |#1|) (-1264 |#1|))) (-15 -1821 ((-771) (-689 |#1|) (-1264 |#1|))))
-((-2371 (((-644 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1990 (-644 |#3|)))) |#4| (-644 |#3|)) 66) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1990 (-644 |#3|))) |#4| |#3|) 60)) (-1821 (((-771) |#4| |#3|) 18)) (-1462 (((-3 |#3| "failed") |#4| |#3|) 21)) (-4085 (((-112) |#4| |#3|) 14)))
-(((-668 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2371 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1990 (-644 |#3|))) |#4| |#3|)) (-15 -2371 ((-644 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1990 (-644 |#3|)))) |#4| (-644 |#3|))) (-15 -1462 ((-3 |#3| "failed") |#4| |#3|)) (-15 -4085 ((-112) |#4| |#3|)) (-15 -1821 ((-771) |#4| |#3|))) (-365) (-13 (-375 |#1|) (-10 -7 (-6 -4418))) (-13 (-375 |#1|) (-10 -7 (-6 -4418))) (-687 |#1| |#2| |#3|)) (T -668))
-((-1821 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4418)))) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4418)))) (-5 *2 (-771)) (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))) (-4085 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4418)))) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4418)))) (-5 *2 (-112)) (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))) (-1462 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-365)) (-4 *5 (-13 (-375 *4) (-10 -7 (-6 -4418)))) (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4418)))) (-5 *1 (-668 *4 *5 *2 *3)) (-4 *3 (-687 *4 *5 *2)))) (-2371 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4418)))) (-4 *7 (-13 (-375 *5) (-10 -7 (-6 -4418)))) (-5 *2 (-644 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -1990 (-644 *7))))) (-5 *1 (-668 *5 *6 *7 *3)) (-5 *4 (-644 *7)) (-4 *3 (-687 *5 *6 *7)))) (-2371 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4418)))) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4418)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4)))) (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))))
-(-10 -7 (-15 -2371 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1990 (-644 |#3|))) |#4| |#3|)) (-15 -2371 ((-644 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1990 (-644 |#3|)))) |#4| (-644 |#3|))) (-15 -1462 ((-3 |#3| "failed") |#4| |#3|)) (-15 -4085 ((-112) |#4| |#3|)) (-15 -1821 ((-771) |#4| |#3|)))
-((-1761 (((-2 (|:| |particular| (-3 (-1264 (-409 |#4|)) "failed")) (|:| -1990 (-644 (-1264 (-409 |#4|))))) (-644 |#4|) (-644 |#3|)) 52)))
-(((-669 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1761 ((-2 (|:| |particular| (-3 (-1264 (-409 |#4|)) "failed")) (|:| -1990 (-644 (-1264 (-409 |#4|))))) (-644 |#4|) (-644 |#3|)))) (-558) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -669))
-((-1761 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *7)) (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-5 *2 (-2 (|:| |particular| (-3 (-1264 (-409 *8)) "failed")) (|:| -1990 (-644 (-1264 (-409 *8)))))) (-5 *1 (-669 *5 *6 *7 *8)))))
-(-10 -7 (-15 -1761 ((-2 (|:| |particular| (-3 (-1264 (-409 |#4|)) "failed")) (|:| -1990 (-644 (-1264 (-409 |#4|))))) (-644 |#4|) (-644 |#3|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3803 (((-3 $ "failed")) NIL (|has| |#2| (-558)))) (-3817 ((|#2| $) NIL)) (-2087 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-3950 (((-1264 (-689 |#2|))) NIL) (((-1264 (-689 |#2|)) (-1264 $)) NIL)) (-4072 (((-112) $) NIL)) (-1378 (((-1264 $)) 44)) (-3081 (((-112) $ (-771)) NIL)) (-3701 (($ |#2|) NIL)) (-2342 (($) NIL T CONST)) (-3071 (($ $) NIL (|has| |#2| (-308)))) (-4134 (((-240 |#1| |#2|) $ (-566)) NIL)) (-1503 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) NIL (|has| |#2| (-558)))) (-2301 (((-3 $ "failed")) NIL (|has| |#2| (-558)))) (-2327 (((-689 |#2|)) NIL) (((-689 |#2|) (-1264 $)) NIL)) (-2080 ((|#2| $) NIL)) (-1481 (((-689 |#2|) $) NIL) (((-689 |#2|) $ (-1264 $)) NIL)) (-3152 (((-3 $ "failed") $) NIL (|has| |#2| (-558)))) (-3207 (((-1171 (-952 |#2|))) NIL (|has| |#2| (-365)))) (-2258 (($ $ (-921)) NIL)) (-2798 ((|#2| $) NIL)) (-3584 (((-1171 |#2|) $) NIL (|has| |#2| (-558)))) (-3435 ((|#2|) NIL) ((|#2| (-1264 $)) NIL)) (-3815 (((-1171 |#2|) $) NIL)) (-2982 (((-112)) NIL)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 |#2| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) ((|#2| $) NIL)) (-1547 (($ (-1264 |#2|)) NIL) (($ (-1264 |#2|) (-1264 $)) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-1821 (((-771) $) NIL (|has| |#2| (-558))) (((-921)) 45)) (-3137 ((|#2| $ (-566) (-566)) NIL)) (-2631 (((-112)) NIL)) (-2995 (($ $ (-921)) NIL)) (-3372 (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-2741 (((-112) $) NIL)) (-2481 (((-771) $) NIL (|has| |#2| (-558)))) (-2442 (((-644 (-240 |#1| |#2|)) $) NIL (|has| |#2| (-558)))) (-2042 (((-771) $) NIL)) (-1605 (((-112)) NIL)) (-2053 (((-771) $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-1299 ((|#2| $) NIL (|has| |#2| (-6 (-4419 "*"))))) (-3266 (((-566) $) NIL)) (-1905 (((-566) $) NIL)) (-2404 (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-4385 (((-566) $) NIL)) (-4106 (((-566) $) NIL)) (-4198 (($ (-644 (-644 |#2|))) NIL)) (-1323 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2503 (((-644 (-644 |#2|)) $) NIL)) (-3199 (((-112)) NIL)) (-2592 (((-112)) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-3881 (((-3 (-2 (|:| |particular| $) (|:| -1990 (-644 $))) "failed")) NIL (|has| |#2| (-558)))) (-2060 (((-3 $ "failed")) NIL (|has| |#2| (-558)))) (-1297 (((-689 |#2|)) NIL) (((-689 |#2|) (-1264 $)) NIL)) (-2516 ((|#2| $) NIL)) (-4333 (((-689 |#2|) $) NIL) (((-689 |#2|) $ (-1264 $)) NIL)) (-2318 (((-3 $ "failed") $) NIL (|has| |#2| (-558)))) (-2593 (((-1171 (-952 |#2|))) NIL (|has| |#2| (-365)))) (-4171 (($ $ (-921)) NIL)) (-3595 ((|#2| $) NIL)) (-3984 (((-1171 |#2|) $) NIL (|has| |#2| (-558)))) (-2835 ((|#2|) NIL) ((|#2| (-1264 $)) NIL)) (-1846 (((-1171 |#2|) $) NIL)) (-3880 (((-112)) NIL)) (-2878 (((-1157) $) NIL)) (-2817 (((-112)) NIL)) (-1642 (((-112)) NIL)) (-4331 (((-112)) NIL)) (-2565 (((-3 $ "failed") $) NIL (|has| |#2| (-365)))) (-4033 (((-1119) $) NIL)) (-3017 (((-112)) NIL)) (-2972 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558)))) (-2822 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#2| $ (-566) (-566) |#2|) NIL) ((|#2| $ (-566) (-566)) 30) ((|#2| $ (-566)) NIL)) (-2862 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2447 ((|#2| $) NIL)) (-3744 (($ (-644 |#2|)) NIL)) (-2742 (((-112) $) NIL)) (-1906 (((-240 |#1| |#2|) $) NIL)) (-1595 ((|#2| $) NIL (|has| |#2| (-6 (-4419 "*"))))) (-4044 (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-3895 (($ $) NIL)) (-2770 (((-689 |#2|) (-1264 $)) NIL) (((-1264 |#2|) $) NIL) (((-689 |#2|) (-1264 $) (-1264 $)) NIL) (((-1264 |#2|) $ (-1264 $)) 33)) (-3134 (($ (-1264 |#2|)) NIL) (((-1264 |#2|) $) NIL)) (-2232 (((-644 (-952 |#2|))) NIL) (((-644 (-952 |#2|)) (-1264 $)) NIL)) (-3755 (($ $ $) NIL)) (-2110 (((-112)) NIL)) (-4074 (((-240 |#1| |#2|) $ (-566)) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#2| (-1038 (-409 (-566))))) (($ |#2|) NIL) (((-689 |#2|) $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) 43)) (-3578 (((-644 (-1264 |#2|))) NIL (|has| |#2| (-558)))) (-3551 (($ $ $ $) NIL)) (-4018 (((-112)) NIL)) (-4002 (($ (-689 |#2|) $) NIL)) (-3427 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2103 (((-112) $) NIL)) (-2821 (($ $ $) NIL)) (-1546 (((-112)) NIL)) (-2498 (((-112)) NIL)) (-2686 (((-112)) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#2| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-240 |#1| |#2|) $ (-240 |#1| |#2|)) NIL) (((-240 |#1| |#2|) (-240 |#1| |#2|) $) NIL)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-4159 (((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|))))) (-644 (-644 |#1|)) (-644 (-1264 |#1|))) 22) (((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|))))) (-689 |#1|) (-644 (-1264 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|)))) (-644 (-644 |#1|)) (-1264 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|)) 14)) (-4157 (((-771) (-689 |#1|) (-1264 |#1|)) 30)) (-2951 (((-3 (-1264 |#1|) "failed") (-689 |#1|) (-1264 |#1|)) 24)) (-1730 (((-112) (-689 |#1|) (-1264 |#1|)) 27)))
+(((-667 |#1|) (-10 -7 (-15 -4159 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|))) (-15 -4159 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|)))) (-644 (-644 |#1|)) (-1264 |#1|))) (-15 -4159 ((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|))))) (-689 |#1|) (-644 (-1264 |#1|)))) (-15 -4159 ((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|))))) (-644 (-644 |#1|)) (-644 (-1264 |#1|)))) (-15 -2951 ((-3 (-1264 |#1|) "failed") (-689 |#1|) (-1264 |#1|))) (-15 -1730 ((-112) (-689 |#1|) (-1264 |#1|))) (-15 -4157 ((-771) (-689 |#1|) (-1264 |#1|)))) (-365)) (T -667))
+((-4157 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)) (-4 *5 (-365)) (-5 *2 (-771)) (-5 *1 (-667 *5)))) (-1730 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)) (-4 *5 (-365)) (-5 *2 (-112)) (-5 *1 (-667 *5)))) (-2951 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1264 *4)) (-5 *3 (-689 *4)) (-4 *4 (-365)) (-5 *1 (-667 *4)))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-644 *5))) (-4 *5 (-365)) (-5 *2 (-644 (-2 (|:| |particular| (-3 (-1264 *5) "failed")) (|:| -1575 (-644 (-1264 *5)))))) (-5 *1 (-667 *5)) (-5 *4 (-644 (-1264 *5))))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *5)) (-4 *5 (-365)) (-5 *2 (-644 (-2 (|:| |particular| (-3 (-1264 *5) "failed")) (|:| -1575 (-644 (-1264 *5)))))) (-5 *1 (-667 *5)) (-5 *4 (-644 (-1264 *5))))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-644 *5))) (-4 *5 (-365)) (-5 *2 (-2 (|:| |particular| (-3 (-1264 *5) "failed")) (|:| -1575 (-644 (-1264 *5))))) (-5 *1 (-667 *5)) (-5 *4 (-1264 *5)))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| |particular| (-3 (-1264 *5) "failed")) (|:| -1575 (-644 (-1264 *5))))) (-5 *1 (-667 *5)) (-5 *4 (-1264 *5)))))
+(-10 -7 (-15 -4159 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|))) (-15 -4159 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|)))) (-644 (-644 |#1|)) (-1264 |#1|))) (-15 -4159 ((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|))))) (-689 |#1|) (-644 (-1264 |#1|)))) (-15 -4159 ((-644 (-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|))))) (-644 (-644 |#1|)) (-644 (-1264 |#1|)))) (-15 -2951 ((-3 (-1264 |#1|) "failed") (-689 |#1|) (-1264 |#1|))) (-15 -1730 ((-112) (-689 |#1|) (-1264 |#1|))) (-15 -4157 ((-771) (-689 |#1|) (-1264 |#1|))))
+((-4159 (((-644 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1575 (-644 |#3|)))) |#4| (-644 |#3|)) 66) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1575 (-644 |#3|))) |#4| |#3|) 60)) (-4157 (((-771) |#4| |#3|) 18)) (-2951 (((-3 |#3| "failed") |#4| |#3|) 21)) (-1730 (((-112) |#4| |#3|) 14)))
+(((-668 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4159 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1575 (-644 |#3|))) |#4| |#3|)) (-15 -4159 ((-644 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1575 (-644 |#3|)))) |#4| (-644 |#3|))) (-15 -2951 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1730 ((-112) |#4| |#3|)) (-15 -4157 ((-771) |#4| |#3|))) (-365) (-13 (-375 |#1|) (-10 -7 (-6 -4415))) (-13 (-375 |#1|) (-10 -7 (-6 -4415))) (-687 |#1| |#2| |#3|)) (T -668))
+((-4157 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4415)))) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4415)))) (-5 *2 (-771)) (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))) (-1730 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4415)))) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4415)))) (-5 *2 (-112)) (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))) (-2951 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-365)) (-4 *5 (-13 (-375 *4) (-10 -7 (-6 -4415)))) (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4415)))) (-5 *1 (-668 *4 *5 *2 *3)) (-4 *3 (-687 *4 *5 *2)))) (-4159 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4415)))) (-4 *7 (-13 (-375 *5) (-10 -7 (-6 -4415)))) (-5 *2 (-644 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -1575 (-644 *7))))) (-5 *1 (-668 *5 *6 *7 *3)) (-5 *4 (-644 *7)) (-4 *3 (-687 *5 *6 *7)))) (-4159 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4415)))) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4415)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4)))) (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))))
+(-10 -7 (-15 -4159 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1575 (-644 |#3|))) |#4| |#3|)) (-15 -4159 ((-644 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1575 (-644 |#3|)))) |#4| (-644 |#3|))) (-15 -2951 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1730 ((-112) |#4| |#3|)) (-15 -4157 ((-771) |#4| |#3|)))
+((-4156 (((-2 (|:| |particular| (-3 (-1264 (-409 |#4|)) "failed")) (|:| -1575 (-644 (-1264 (-409 |#4|))))) (-644 |#4|) (-644 |#3|)) 52)))
+(((-669 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4156 ((-2 (|:| |particular| (-3 (-1264 (-409 |#4|)) "failed")) (|:| -1575 (-644 (-1264 (-409 |#4|))))) (-644 |#4|) (-644 |#3|)))) (-558) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -669))
+((-4156 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *7)) (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-5 *2 (-2 (|:| |particular| (-3 (-1264 (-409 *8)) "failed")) (|:| -1575 (-644 (-1264 (-409 *8)))))) (-5 *1 (-669 *5 *6 *7 *8)))))
+(-10 -7 (-15 -4156 ((-2 (|:| |particular| (-3 (-1264 (-409 |#4|)) "failed")) (|:| -1575 (-644 (-1264 (-409 |#4|))))) (-644 |#4|) (-644 |#3|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4065 (((-3 $ "failed")) NIL (|has| |#2| (-558)))) (-3834 ((|#2| $) NIL)) (-3194 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2932 (((-1264 (-689 |#2|))) NIL) (((-1264 (-689 |#2|)) (-1264 $)) NIL)) (-1597 (((-112) $) NIL)) (-4132 (((-1264 $)) 44)) (-1574 (((-112) $ (-771)) NIL)) (-2453 (($ |#2|) NIL)) (-3877 (($) NIL T CONST)) (-1495 (($ $) NIL (|has| |#2| (-308)))) (-4104 (((-240 |#1| |#2|) $ (-566)) NIL)) (-3379 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) NIL (|has| |#2| (-558)))) (-1594 (((-3 $ "failed")) NIL (|has| |#2| (-558)))) (-3735 (((-689 |#2|)) NIL) (((-689 |#2|) (-1264 $)) NIL)) (-3121 ((|#2| $) NIL)) (-3150 (((-689 |#2|) $) NIL) (((-689 |#2|) $ (-1264 $)) NIL)) (-4029 (((-3 $ "failed") $) NIL (|has| |#2| (-558)))) (-3280 (((-1171 (-952 |#2|))) NIL (|has| |#2| (-365)))) (-2400 (($ $ (-921)) NIL)) (-2811 ((|#2| $) NIL)) (-2536 (((-1171 |#2|) $) NIL (|has| |#2| (-558)))) (-1682 ((|#2|) NIL) ((|#2| (-1264 $)) NIL)) (-4181 (((-1171 |#2|) $) NIL)) (-2011 (((-112)) NIL)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 |#2| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) ((|#2| $) NIL)) (-2613 (($ (-1264 |#2|)) NIL) (($ (-1264 |#2|) (-1264 $)) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-4157 (((-771) $) NIL (|has| |#2| (-558))) (((-921)) 45)) (-3059 ((|#2| $ (-566) (-566)) NIL)) (-1732 (((-112)) NIL)) (-2120 (($ $ (-921)) NIL)) (-3799 (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-3466 (((-112) $) NIL)) (-2736 (((-771) $) NIL (|has| |#2| (-558)))) (-3586 (((-644 (-240 |#1| |#2|)) $) NIL (|has| |#2| (-558)))) (-4301 (((-771) $) NIL)) (-1993 (((-112)) NIL)) (-4313 (((-771) $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-1647 ((|#2| $) NIL (|has| |#2| (-6 (-4416 "*"))))) (-2615 (((-566) $) NIL)) (-1966 (((-566) $) NIL)) (-3276 (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-1653 (((-566) $) NIL)) (-3807 (((-566) $) NIL)) (-1883 (($ (-644 (-644 |#2|))) NIL)) (-3117 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2947 (((-644 (-644 |#2|)) $) NIL)) (-3202 (((-112)) NIL)) (-1321 (((-112)) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-3571 (((-3 (-2 (|:| |particular| $) (|:| -1575 (-644 $))) "failed")) NIL (|has| |#2| (-558)))) (-4128 (((-3 $ "failed")) NIL (|has| |#2| (-558)))) (-4105 (((-689 |#2|)) NIL) (((-689 |#2|) (-1264 $)) NIL)) (-1863 ((|#2| $) NIL)) (-2377 (((-689 |#2|) $) NIL) (((-689 |#2|) $ (-1264 $)) NIL)) (-1787 (((-3 $ "failed") $) NIL (|has| |#2| (-558)))) (-1332 (((-1171 (-952 |#2|))) NIL (|has| |#2| (-365)))) (-3231 (($ $ (-921)) NIL)) (-2630 ((|#2| $) NIL)) (-2041 (((-1171 |#2|) $) NIL (|has| |#2| (-558)))) (-1964 ((|#2|) NIL) ((|#2| (-1264 $)) NIL)) (-2584 (((-1171 |#2|) $) NIL)) (-3561 (((-112)) NIL)) (-2402 (((-1157) $) NIL)) (-3002 (((-112)) NIL)) (-4211 (((-112)) NIL)) (-2355 (((-112)) NIL)) (-2344 (((-3 $ "failed") $) NIL (|has| |#2| (-365)))) (-4056 (((-1119) $) NIL)) (-2283 (((-112)) NIL)) (-2997 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558)))) (-3044 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#2| $ (-566) (-566) |#2|) NIL) ((|#2| $ (-566) (-566)) 30) ((|#2| $ (-566)) NIL)) (-2578 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-3638 ((|#2| $) NIL)) (-1664 (($ (-644 |#2|)) NIL)) (-3478 (((-112) $) NIL)) (-1978 (((-240 |#1| |#2|) $) NIL)) (-1896 ((|#2| $) NIL (|has| |#2| (-6 (-4416 "*"))))) (-4067 (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-3940 (($ $) NIL)) (-2543 (((-689 |#2|) (-1264 $)) NIL) (((-1264 |#2|) $) NIL) (((-689 |#2|) (-1264 $) (-1264 $)) NIL) (((-1264 |#2|) $ (-1264 $)) 33)) (-3204 (($ (-1264 |#2|)) NIL) (((-1264 |#2|) $) NIL)) (-2136 (((-644 (-952 |#2|))) NIL) (((-644 (-952 |#2|)) (-1264 $)) NIL)) (-1783 (($ $ $) NIL)) (-3431 (((-112)) NIL)) (-1621 (((-240 |#1| |#2|) $ (-566)) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#2| (-1038 (-409 (-566))))) (($ |#2|) NIL) (((-689 |#2|) $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) 43)) (-2474 (((-644 (-1264 |#2|))) NIL (|has| |#2| (-558)))) (-3428 (($ $ $ $) NIL)) (-2359 (((-112)) NIL)) (-4046 (($ (-689 |#2|) $) NIL)) (-1583 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3359 (((-112) $) NIL)) (-3035 (($ $ $) NIL)) (-2602 (((-112)) NIL)) (-2891 (((-112)) NIL)) (-4142 (((-112)) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#2| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-240 |#1| |#2|) $ (-240 |#1| |#2|)) NIL) (((-240 |#1| |#2|) (-240 |#1| |#2|) $) NIL)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-670 |#1| |#2|) (-13 (-1122 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-613 (-689 |#2|)) (-419 |#2|)) (-921) (-172)) (T -670))
NIL
(-13 (-1122 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-613 (-689 |#2|)) (-419 |#2|))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3210 (((-644 (-1134)) $) 10)) (-2512 (((-862) $) 16) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-671) (-13 (-1082) (-10 -8 (-15 -3210 ((-644 (-1134)) $))))) (T -671))
-((-3210 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-671)))))
-(-13 (-1082) (-10 -8 (-15 -3210 ((-644 (-1134)) $))))
-((-2985 (((-112) $ $) NIL)) (-1719 (((-644 |#1|) $) NIL)) (-4368 (($ $) 67)) (-4353 (((-112) $) NIL)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2068 (((-3 $ "failed") (-819 |#1|)) 27)) (-3936 (((-112) (-819 |#1|)) 17)) (-4095 (($ (-819 |#1|)) 28)) (-3605 (((-112) $ $) 36)) (-3822 (((-921) $) 43)) (-4357 (($ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2391 (((-644 $) (-819 |#1|)) 19)) (-2512 (((-862) $) 51) (($ |#1|) 40) (((-819 |#1|) $) 47) (((-677 |#1|) $) 52)) (-3122 (((-112) $ $) NIL)) (-4387 (((-59 (-644 $)) (-644 |#1|) (-921)) 72)) (-3322 (((-644 $) (-644 |#1|) (-921)) 76)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 68)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 46)))
-(((-672 |#1|) (-13 (-850) (-1038 |#1|) (-10 -8 (-15 -4353 ((-112) $)) (-15 -4357 ($ $)) (-15 -4368 ($ $)) (-15 -3822 ((-921) $)) (-15 -3605 ((-112) $ $)) (-15 -2512 ((-819 |#1|) $)) (-15 -2512 ((-677 |#1|) $)) (-15 -2391 ((-644 $) (-819 |#1|))) (-15 -3936 ((-112) (-819 |#1|))) (-15 -4095 ($ (-819 |#1|))) (-15 -2068 ((-3 $ "failed") (-819 |#1|))) (-15 -1719 ((-644 |#1|) $)) (-15 -4387 ((-59 (-644 $)) (-644 |#1|) (-921))) (-15 -3322 ((-644 $) (-644 |#1|) (-921))))) (-850)) (T -672))
-((-4353 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-4357 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-850)))) (-4368 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-850)))) (-3822 (*1 *2 *1) (-12 (-5 *2 (-921)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-3605 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-677 *3)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-2391 (*1 *2 *3) (-12 (-5 *3 (-819 *4)) (-4 *4 (-850)) (-5 *2 (-644 (-672 *4))) (-5 *1 (-672 *4)))) (-3936 (*1 *2 *3) (-12 (-5 *3 (-819 *4)) (-4 *4 (-850)) (-5 *2 (-112)) (-5 *1 (-672 *4)))) (-4095 (*1 *1 *2) (-12 (-5 *2 (-819 *3)) (-4 *3 (-850)) (-5 *1 (-672 *3)))) (-2068 (*1 *1 *2) (|partial| -12 (-5 *2 (-819 *3)) (-4 *3 (-850)) (-5 *1 (-672 *3)))) (-1719 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-4387 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-921)) (-4 *5 (-850)) (-5 *2 (-59 (-644 (-672 *5)))) (-5 *1 (-672 *5)))) (-3322 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-921)) (-4 *5 (-850)) (-5 *2 (-644 (-672 *5))) (-5 *1 (-672 *5)))))
-(-13 (-850) (-1038 |#1|) (-10 -8 (-15 -4353 ((-112) $)) (-15 -4357 ($ $)) (-15 -4368 ($ $)) (-15 -3822 ((-921) $)) (-15 -3605 ((-112) $ $)) (-15 -2512 ((-819 |#1|) $)) (-15 -2512 ((-677 |#1|) $)) (-15 -2391 ((-644 $) (-819 |#1|))) (-15 -3936 ((-112) (-819 |#1|))) (-15 -4095 ($ (-819 |#1|))) (-15 -2068 ((-3 $ "failed") (-819 |#1|))) (-15 -1719 ((-644 |#1|) $)) (-15 -4387 ((-59 (-644 $)) (-644 |#1|) (-921))) (-15 -3322 ((-644 $) (-644 |#1|) (-921)))))
-((-2212 ((|#2| $) 103)) (-3301 (($ $) 124)) (-3081 (((-112) $ (-771)) 35)) (-4076 (($ $) 112) (($ $ (-771)) 115)) (-1901 (((-112) $) 125)) (-2286 (((-644 $) $) 99)) (-4129 (((-112) $ $) 95)) (-2744 (((-112) $ (-771)) 33)) (-2160 (((-566) $) 69)) (-1544 (((-566) $) 68)) (-3882 (((-112) $ (-771)) 31)) (-2783 (((-112) $) 101)) (-2670 ((|#2| $) 116) (($ $ (-771)) 120)) (-4268 (($ $ $ (-566)) 86) (($ |#2| $ (-566)) 85)) (-1922 (((-644 (-566)) $) 67)) (-2040 (((-112) (-566) $) 61)) (-4062 ((|#2| $) NIL) (($ $ (-771)) 111)) (-1938 (($ $ (-566)) 128)) (-1335 (((-112) $) 127)) (-2822 (((-112) (-1 (-112) |#2|) $) 44)) (-2784 (((-644 |#2|) $) 48)) (-4386 ((|#2| $ "value") NIL) ((|#2| $ "first") 110) (($ $ "rest") 114) ((|#2| $ "last") 123) (($ $ (-1231 (-566))) 82) ((|#2| $ (-566)) 59) ((|#2| $ (-566) |#2|) 60)) (-1442 (((-566) $ $) 94)) (-2201 (($ $ (-1231 (-566))) 81) (($ $ (-566)) 75)) (-1313 (((-112) $) 90)) (-1636 (($ $) 108)) (-3069 (((-771) $) 107)) (-1904 (($ $) 106)) (-2523 (($ (-644 |#2|)) 55)) (-1973 (($ $) 129)) (-1448 (((-644 $) $) 93)) (-2105 (((-112) $ $) 92)) (-3427 (((-112) (-1 (-112) |#2|) $) 43)) (-2940 (((-112) $ $) 20)) (-2997 (((-771) $) 41)))
-(((-673 |#1| |#2|) (-10 -8 (-15 -1973 (|#1| |#1|)) (-15 -1938 (|#1| |#1| (-566))) (-15 -1901 ((-112) |#1|)) (-15 -1335 ((-112) |#1|)) (-15 -4386 (|#2| |#1| (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566))) (-15 -2784 ((-644 |#2|) |#1|)) (-15 -2040 ((-112) (-566) |#1|)) (-15 -1922 ((-644 (-566)) |#1|)) (-15 -1544 ((-566) |#1|)) (-15 -2160 ((-566) |#1|)) (-15 -2523 (|#1| (-644 |#2|))) (-15 -4386 (|#1| |#1| (-1231 (-566)))) (-15 -2201 (|#1| |#1| (-566))) (-15 -2201 (|#1| |#1| (-1231 (-566)))) (-15 -4268 (|#1| |#2| |#1| (-566))) (-15 -4268 (|#1| |#1| |#1| (-566))) (-15 -1636 (|#1| |#1|)) (-15 -3069 ((-771) |#1|)) (-15 -1904 (|#1| |#1|)) (-15 -3301 (|#1| |#1|)) (-15 -2670 (|#1| |#1| (-771))) (-15 -4386 (|#2| |#1| "last")) (-15 -2670 (|#2| |#1|)) (-15 -4076 (|#1| |#1| (-771))) (-15 -4386 (|#1| |#1| "rest")) (-15 -4076 (|#1| |#1|)) (-15 -4062 (|#1| |#1| (-771))) (-15 -4386 (|#2| |#1| "first")) (-15 -4062 (|#2| |#1|)) (-15 -4129 ((-112) |#1| |#1|)) (-15 -2105 ((-112) |#1| |#1|)) (-15 -1442 ((-566) |#1| |#1|)) (-15 -1313 ((-112) |#1|)) (-15 -4386 (|#2| |#1| "value")) (-15 -2212 (|#2| |#1|)) (-15 -2783 ((-112) |#1|)) (-15 -2286 ((-644 |#1|) |#1|)) (-15 -1448 ((-644 |#1|) |#1|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -2822 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2997 ((-771) |#1|)) (-15 -3081 ((-112) |#1| (-771))) (-15 -2744 ((-112) |#1| (-771))) (-15 -3882 ((-112) |#1| (-771)))) (-674 |#2|) (-1214)) (T -673))
-NIL
-(-10 -8 (-15 -1973 (|#1| |#1|)) (-15 -1938 (|#1| |#1| (-566))) (-15 -1901 ((-112) |#1|)) (-15 -1335 ((-112) |#1|)) (-15 -4386 (|#2| |#1| (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566))) (-15 -2784 ((-644 |#2|) |#1|)) (-15 -2040 ((-112) (-566) |#1|)) (-15 -1922 ((-644 (-566)) |#1|)) (-15 -1544 ((-566) |#1|)) (-15 -2160 ((-566) |#1|)) (-15 -2523 (|#1| (-644 |#2|))) (-15 -4386 (|#1| |#1| (-1231 (-566)))) (-15 -2201 (|#1| |#1| (-566))) (-15 -2201 (|#1| |#1| (-1231 (-566)))) (-15 -4268 (|#1| |#2| |#1| (-566))) (-15 -4268 (|#1| |#1| |#1| (-566))) (-15 -1636 (|#1| |#1|)) (-15 -3069 ((-771) |#1|)) (-15 -1904 (|#1| |#1|)) (-15 -3301 (|#1| |#1|)) (-15 -2670 (|#1| |#1| (-771))) (-15 -4386 (|#2| |#1| "last")) (-15 -2670 (|#2| |#1|)) (-15 -4076 (|#1| |#1| (-771))) (-15 -4386 (|#1| |#1| "rest")) (-15 -4076 (|#1| |#1|)) (-15 -4062 (|#1| |#1| (-771))) (-15 -4386 (|#2| |#1| "first")) (-15 -4062 (|#2| |#1|)) (-15 -4129 ((-112) |#1| |#1|)) (-15 -2105 ((-112) |#1| |#1|)) (-15 -1442 ((-566) |#1| |#1|)) (-15 -1313 ((-112) |#1|)) (-15 -4386 (|#2| |#1| "value")) (-15 -2212 (|#2| |#1|)) (-15 -2783 ((-112) |#1|)) (-15 -2286 ((-644 |#1|) |#1|)) (-15 -1448 ((-644 |#1|) |#1|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -2822 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2997 ((-771) |#1|)) (-15 -3081 ((-112) |#1| (-771))) (-15 -2744 ((-112) |#1| (-771))) (-15 -3882 ((-112) |#1| (-771))))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2212 ((|#1| $) 49)) (-4309 ((|#1| $) 66)) (-3301 (($ $) 68)) (-1537 (((-1269) $ (-566) (-566)) 98 (|has| $ (-6 -4418)))) (-1410 (($ $ (-566)) 53 (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) 8)) (-3087 ((|#1| $ |#1|) 40 (|has| $ (-6 -4418)))) (-4290 (($ $ $) 57 (|has| $ (-6 -4418)))) (-1587 ((|#1| $ |#1|) 55 (|has| $ (-6 -4418)))) (-2831 ((|#1| $ |#1|) 59 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4418))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4418))) (($ $ "rest" $) 56 (|has| $ (-6 -4418))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) 118 (|has| $ (-6 -4418))) ((|#1| $ (-566) |#1|) 87 (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 42 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) 103)) (-4299 ((|#1| $) 67)) (-2342 (($) 7 T CONST)) (-4124 (($ $) 125)) (-4076 (($ $) 74) (($ $ (-771)) 72)) (-4093 (($ $) 100 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#1| $) 101 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 104)) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1332 ((|#1| $ (-566) |#1|) 86 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 88)) (-1901 (((-112) $) 84)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-1317 (((-771) $) 124)) (-2286 (((-644 $) $) 51)) (-4129 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-4257 (($ (-771) |#1|) 109)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 96 (|has| (-566) (-850)))) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 95 (|has| (-566) (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3882 (((-112) $ (-771)) 10)) (-2996 (((-644 |#1|) $) 46)) (-2783 (((-112) $) 50)) (-4118 (($ $) 127)) (-2338 (((-112) $) 128)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2670 ((|#1| $) 71) (($ $ (-771)) 69)) (-4268 (($ $ $ (-566)) 117) (($ |#1| $ (-566)) 116)) (-1922 (((-644 (-566)) $) 93)) (-2040 (((-112) (-566) $) 92)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3640 ((|#1| $) 126)) (-4062 ((|#1| $) 77) (($ $ (-771)) 75)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-1720 (($ $ |#1|) 97 (|has| $ (-6 -4418)))) (-1938 (($ $ (-566)) 123)) (-1335 (((-112) $) 85)) (-2295 (((-112) $) 129)) (-2550 (((-112) $) 130)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) 91)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1231 (-566))) 113) ((|#1| $ (-566)) 90) ((|#1| $ (-566) |#1|) 89)) (-1442 (((-566) $ $) 45)) (-2201 (($ $ (-1231 (-566))) 115) (($ $ (-566)) 114)) (-1313 (((-112) $) 47)) (-1636 (($ $) 63)) (-2231 (($ $) 60 (|has| $ (-6 -4418)))) (-3069 (((-771) $) 64)) (-1904 (($ $) 65)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 99 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 108)) (-1498 (($ $ $) 62 (|has| $ (-6 -4418))) (($ $ |#1|) 61 (|has| $ (-6 -4418)))) (-3704 (($ $ $) 79) (($ |#1| $) 78) (($ (-644 $)) 111) (($ $ |#1|) 110)) (-1973 (($ $) 122)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) 52)) (-2105 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3314 (((-644 (-1134)) $) 10)) (-3780 (((-862) $) 16) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-671) (-13 (-1082) (-10 -8 (-15 -3314 ((-644 (-1134)) $))))) (T -671))
+((-3314 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-671)))))
+(-13 (-1082) (-10 -8 (-15 -3314 ((-644 (-1134)) $))))
+((-3009 (((-112) $ $) NIL)) (-1824 (((-644 |#1|) $) NIL)) (-4394 (($ $) 67)) (-1323 (((-112) $) NIL)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-4206 (((-3 $ "failed") (-819 |#1|)) 27)) (-2801 (((-112) (-819 |#1|)) 17)) (-1833 (($ (-819 |#1|)) 28)) (-2716 (((-112) $ $) 36)) (-3945 (((-921) $) 43)) (-4380 (($ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2473 (((-644 $) (-819 |#1|)) 19)) (-3780 (((-862) $) 51) (($ |#1|) 40) (((-819 |#1|) $) 47) (((-677 |#1|) $) 52)) (-3801 (((-112) $ $) NIL)) (-1666 (((-59 (-644 $)) (-644 |#1|) (-921)) 72)) (-1859 (((-644 $) (-644 |#1|) (-921)) 76)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 68)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 46)))
+(((-672 |#1|) (-13 (-850) (-1038 |#1|) (-10 -8 (-15 -1323 ((-112) $)) (-15 -4380 ($ $)) (-15 -4394 ($ $)) (-15 -3945 ((-921) $)) (-15 -2716 ((-112) $ $)) (-15 -3780 ((-819 |#1|) $)) (-15 -3780 ((-677 |#1|) $)) (-15 -2473 ((-644 $) (-819 |#1|))) (-15 -2801 ((-112) (-819 |#1|))) (-15 -1833 ($ (-819 |#1|))) (-15 -4206 ((-3 $ "failed") (-819 |#1|))) (-15 -1824 ((-644 |#1|) $)) (-15 -1666 ((-59 (-644 $)) (-644 |#1|) (-921))) (-15 -1859 ((-644 $) (-644 |#1|) (-921))))) (-850)) (T -672))
+((-1323 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-4380 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-850)))) (-4394 (*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-850)))) (-3945 (*1 *2 *1) (-12 (-5 *2 (-921)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-2716 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-677 *3)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-2473 (*1 *2 *3) (-12 (-5 *3 (-819 *4)) (-4 *4 (-850)) (-5 *2 (-644 (-672 *4))) (-5 *1 (-672 *4)))) (-2801 (*1 *2 *3) (-12 (-5 *3 (-819 *4)) (-4 *4 (-850)) (-5 *2 (-112)) (-5 *1 (-672 *4)))) (-1833 (*1 *1 *2) (-12 (-5 *2 (-819 *3)) (-4 *3 (-850)) (-5 *1 (-672 *3)))) (-4206 (*1 *1 *2) (|partial| -12 (-5 *2 (-819 *3)) (-4 *3 (-850)) (-5 *1 (-672 *3)))) (-1824 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-672 *3)) (-4 *3 (-850)))) (-1666 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-921)) (-4 *5 (-850)) (-5 *2 (-59 (-644 (-672 *5)))) (-5 *1 (-672 *5)))) (-1859 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-921)) (-4 *5 (-850)) (-5 *2 (-644 (-672 *5))) (-5 *1 (-672 *5)))))
+(-13 (-850) (-1038 |#1|) (-10 -8 (-15 -1323 ((-112) $)) (-15 -4380 ($ $)) (-15 -4394 ($ $)) (-15 -3945 ((-921) $)) (-15 -2716 ((-112) $ $)) (-15 -3780 ((-819 |#1|) $)) (-15 -3780 ((-677 |#1|) $)) (-15 -2473 ((-644 $) (-819 |#1|))) (-15 -2801 ((-112) (-819 |#1|))) (-15 -1833 ($ (-819 |#1|))) (-15 -4206 ((-3 $ "failed") (-819 |#1|))) (-15 -1824 ((-644 |#1|) $)) (-15 -1666 ((-59 (-644 $)) (-644 |#1|) (-921))) (-15 -1859 ((-644 $) (-644 |#1|) (-921)))))
+((-2252 ((|#2| $) 103)) (-4043 (($ $) 124)) (-1574 (((-112) $ (-771)) 35)) (-4112 (($ $) 112) (($ $ (-771)) 115)) (-1935 (((-112) $) 125)) (-1432 (((-644 $) $) 99)) (-4050 (((-112) $ $) 95)) (-3501 (((-112) $ (-771)) 33)) (-2712 (((-566) $) 69)) (-2579 (((-566) $) 68)) (-3582 (((-112) $ (-771)) 31)) (-2675 (((-112) $) 101)) (-2680 ((|#2| $) 116) (($ $ (-771)) 120)) (-4286 (($ $ $ (-566)) 86) (($ |#2| $ (-566)) 85)) (-2140 (((-644 (-566)) $) 67)) (-3935 (((-112) (-566) $) 61)) (-4101 ((|#2| $) NIL) (($ $ (-771)) 111)) (-2295 (($ $ (-566)) 128)) (-1927 (((-112) $) 127)) (-3044 (((-112) (-1 (-112) |#2|) $) 44)) (-2684 (((-644 |#2|) $) 48)) (-4393 ((|#2| $ "value") NIL) ((|#2| $ "first") 110) (($ $ "rest") 114) ((|#2| $ "last") 123) (($ $ (-1231 (-566))) 82) ((|#2| $ (-566)) 59) ((|#2| $ (-566) |#2|) 60)) (-3969 (((-566) $ $) 94)) (-2215 (($ $ (-1231 (-566))) 81) (($ $ (-566)) 75)) (-1638 (((-112) $) 90)) (-2299 (($ $) 108)) (-1472 (((-771) $) 107)) (-1957 (($ $) 106)) (-3791 (($ (-644 |#2|)) 55)) (-1377 (($ $) 129)) (-4041 (((-644 $) $) 93)) (-3381 (((-112) $ $) 92)) (-1583 (((-112) (-1 (-112) |#2|) $) 43)) (-2950 (((-112) $ $) 20)) (-3020 (((-771) $) 41)))
+(((-673 |#1| |#2|) (-10 -8 (-15 -1377 (|#1| |#1|)) (-15 -2295 (|#1| |#1| (-566))) (-15 -1935 ((-112) |#1|)) (-15 -1927 ((-112) |#1|)) (-15 -4393 (|#2| |#1| (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566))) (-15 -2684 ((-644 |#2|) |#1|)) (-15 -3935 ((-112) (-566) |#1|)) (-15 -2140 ((-644 (-566)) |#1|)) (-15 -2579 ((-566) |#1|)) (-15 -2712 ((-566) |#1|)) (-15 -3791 (|#1| (-644 |#2|))) (-15 -4393 (|#1| |#1| (-1231 (-566)))) (-15 -2215 (|#1| |#1| (-566))) (-15 -2215 (|#1| |#1| (-1231 (-566)))) (-15 -4286 (|#1| |#2| |#1| (-566))) (-15 -4286 (|#1| |#1| |#1| (-566))) (-15 -2299 (|#1| |#1|)) (-15 -1472 ((-771) |#1|)) (-15 -1957 (|#1| |#1|)) (-15 -4043 (|#1| |#1|)) (-15 -2680 (|#1| |#1| (-771))) (-15 -4393 (|#2| |#1| "last")) (-15 -2680 (|#2| |#1|)) (-15 -4112 (|#1| |#1| (-771))) (-15 -4393 (|#1| |#1| "rest")) (-15 -4112 (|#1| |#1|)) (-15 -4101 (|#1| |#1| (-771))) (-15 -4393 (|#2| |#1| "first")) (-15 -4101 (|#2| |#1|)) (-15 -4050 ((-112) |#1| |#1|)) (-15 -3381 ((-112) |#1| |#1|)) (-15 -3969 ((-566) |#1| |#1|)) (-15 -1638 ((-112) |#1|)) (-15 -4393 (|#2| |#1| "value")) (-15 -2252 (|#2| |#1|)) (-15 -2675 ((-112) |#1|)) (-15 -1432 ((-644 |#1|) |#1|)) (-15 -4041 ((-644 |#1|) |#1|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -3044 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3020 ((-771) |#1|)) (-15 -1574 ((-112) |#1| (-771))) (-15 -3501 ((-112) |#1| (-771))) (-15 -3582 ((-112) |#1| (-771)))) (-674 |#2|) (-1214)) (T -673))
+NIL
+(-10 -8 (-15 -1377 (|#1| |#1|)) (-15 -2295 (|#1| |#1| (-566))) (-15 -1935 ((-112) |#1|)) (-15 -1927 ((-112) |#1|)) (-15 -4393 (|#2| |#1| (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566))) (-15 -2684 ((-644 |#2|) |#1|)) (-15 -3935 ((-112) (-566) |#1|)) (-15 -2140 ((-644 (-566)) |#1|)) (-15 -2579 ((-566) |#1|)) (-15 -2712 ((-566) |#1|)) (-15 -3791 (|#1| (-644 |#2|))) (-15 -4393 (|#1| |#1| (-1231 (-566)))) (-15 -2215 (|#1| |#1| (-566))) (-15 -2215 (|#1| |#1| (-1231 (-566)))) (-15 -4286 (|#1| |#2| |#1| (-566))) (-15 -4286 (|#1| |#1| |#1| (-566))) (-15 -2299 (|#1| |#1|)) (-15 -1472 ((-771) |#1|)) (-15 -1957 (|#1| |#1|)) (-15 -4043 (|#1| |#1|)) (-15 -2680 (|#1| |#1| (-771))) (-15 -4393 (|#2| |#1| "last")) (-15 -2680 (|#2| |#1|)) (-15 -4112 (|#1| |#1| (-771))) (-15 -4393 (|#1| |#1| "rest")) (-15 -4112 (|#1| |#1|)) (-15 -4101 (|#1| |#1| (-771))) (-15 -4393 (|#2| |#1| "first")) (-15 -4101 (|#2| |#1|)) (-15 -4050 ((-112) |#1| |#1|)) (-15 -3381 ((-112) |#1| |#1|)) (-15 -3969 ((-566) |#1| |#1|)) (-15 -1638 ((-112) |#1|)) (-15 -4393 (|#2| |#1| "value")) (-15 -2252 (|#2| |#1|)) (-15 -2675 ((-112) |#1|)) (-15 -1432 ((-644 |#1|) |#1|)) (-15 -4041 ((-644 |#1|) |#1|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -3044 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -3020 ((-771) |#1|)) (-15 -1574 ((-112) |#1| (-771))) (-15 -3501 ((-112) |#1| (-771))) (-15 -3582 ((-112) |#1| (-771))))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2252 ((|#1| $) 49)) (-4369 ((|#1| $) 66)) (-4043 (($ $) 68)) (-2518 (((-1269) $ (-566) (-566)) 98 (|has| $ (-6 -4415)))) (-3670 (($ $ (-566)) 53 (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) 8)) (-1637 ((|#1| $ |#1|) 40 (|has| $ (-6 -4415)))) (-1938 (($ $ $) 57 (|has| $ (-6 -4415)))) (-1819 ((|#1| $ |#1|) 55 (|has| $ (-6 -4415)))) (-1921 ((|#1| $ |#1|) 59 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4415))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4415))) (($ $ "rest" $) 56 (|has| $ (-6 -4415))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) 118 (|has| $ (-6 -4415))) ((|#1| $ (-566) |#1|) 87 (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 42 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) 103)) (-4358 ((|#1| $) 67)) (-3877 (($) 7 T CONST)) (-3991 (($ $) 125)) (-4112 (($ $) 74) (($ $ (-771)) 72)) (-4133 (($ $) 100 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#1| $) 101 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 104)) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3128 ((|#1| $ (-566) |#1|) 86 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 88)) (-1935 (((-112) $) 84)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1674 (((-771) $) 124)) (-1432 (((-644 $) $) 51)) (-4050 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-4278 (($ (-771) |#1|) 109)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 96 (|has| (-566) (-850)))) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 95 (|has| (-566) (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3582 (((-112) $ (-771)) 10)) (-3318 (((-644 |#1|) $) 46)) (-2675 (((-112) $) 50)) (-3931 (($ $) 127)) (-3836 (((-112) $) 128)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2680 ((|#1| $) 71) (($ $ (-771)) 69)) (-4286 (($ $ $ (-566)) 117) (($ |#1| $ (-566)) 116)) (-2140 (((-644 (-566)) $) 93)) (-3935 (((-112) (-566) $) 92)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-1857 ((|#1| $) 126)) (-4101 ((|#1| $) 77) (($ $ (-771)) 75)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-3750 (($ $ |#1|) 97 (|has| $ (-6 -4415)))) (-2295 (($ $ (-566)) 123)) (-1927 (((-112) $) 85)) (-1524 (((-112) $) 129)) (-2173 (((-112) $) 130)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) 91)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1231 (-566))) 113) ((|#1| $ (-566)) 90) ((|#1| $ (-566) |#1|) 89)) (-3969 (((-566) $ $) 45)) (-2215 (($ $ (-1231 (-566))) 115) (($ $ (-566)) 114)) (-1638 (((-112) $) 47)) (-2299 (($ $) 63)) (-2127 (($ $) 60 (|has| $ (-6 -4415)))) (-1472 (((-771) $) 64)) (-1957 (($ $) 65)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 99 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 108)) (-3324 (($ $ $) 62 (|has| $ (-6 -4415))) (($ $ |#1|) 61 (|has| $ (-6 -4415)))) (-3727 (($ $ $) 79) (($ |#1| $) 78) (($ (-644 $)) 111) (($ $ |#1|) 110)) (-1377 (($ $) 122)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) 52)) (-3381 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-674 |#1|) (-140) (-1214)) (T -674))
-((-2651 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-674 *3)) (-4 *3 (-1214)))) (-4186 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-674 *3)) (-4 *3 (-1214)))) (-2550 (*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-2295 (*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-2338 (*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-4118 (*1 *1 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))) (-3640 (*1 *2 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))) (-4124 (*1 *1 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))) (-1317 (*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))) (-1938 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-674 *3)) (-4 *3 (-1214)))) (-1973 (*1 *1 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))))
-(-13 (-1148 |t#1|) (-10 -8 (-15 -2651 ($ (-1 (-112) |t#1|) $)) (-15 -4186 ($ (-1 (-112) |t#1|) $)) (-15 -2550 ((-112) $)) (-15 -2295 ((-112) $)) (-15 -2338 ((-112) $)) (-15 -4118 ($ $)) (-15 -3640 (|t#1| $)) (-15 -4124 ($ $)) (-15 -1317 ((-771) $)) (-15 -1938 ($ $ (-566))) (-15 -1973 ($ $))))
+((-2661 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-674 *3)) (-4 *3 (-1214)))) (-1386 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-674 *3)) (-4 *3 (-1214)))) (-2173 (*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-1524 (*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-3836 (*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-3931 (*1 *1 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))) (-1857 (*1 *2 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))) (-3991 (*1 *1 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))) (-1674 (*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))) (-2295 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-674 *3)) (-4 *3 (-1214)))) (-1377 (*1 *1 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))))
+(-13 (-1148 |t#1|) (-10 -8 (-15 -2661 ($ (-1 (-112) |t#1|) $)) (-15 -1386 ($ (-1 (-112) |t#1|) $)) (-15 -2173 ((-112) $)) (-15 -1524 ((-112) $)) (-15 -3836 ((-112) $)) (-15 -3931 ($ $)) (-15 -1857 (|t#1| $)) (-15 -3991 ($ $)) (-15 -1674 ((-771) $)) (-15 -2295 ($ $ (-566))) (-15 -1377 ($ $))))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-287 #0=(-566) |#1|) . T) ((-289 #0# |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-604 #0# |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-651 |#1|) . T) ((-1010 |#1|) . T) ((-1099) |has| |#1| (-1099)) ((-1148 |#1|) . T) ((-1214) . T) ((-1252 |#1|) . T))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4305 (($ (-771) (-771) (-771)) 55 (|has| |#1| (-1049)))) (-3081 (((-112) $ (-771)) NIL)) (-3333 ((|#1| $ (-771) (-771) (-771) |#1|) 49)) (-2342 (($) NIL T CONST)) (-1875 (($ $ $) 60 (|has| |#1| (-1049)))) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3878 (((-1264 (-771)) $) 12)) (-3617 (($ (-1175) $ $) 37)) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2536 (($ (-771)) 57 (|has| |#1| (-1049)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-771) (-771) (-771)) 46)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-2523 (($ (-644 (-644 (-644 |#1|)))) 70)) (-2512 (($ (-958 (-958 (-958 |#1|)))) 23) (((-958 (-958 (-958 |#1|))) $) 19) (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-675 |#1|) (-13 (-491 |#1|) (-10 -8 (IF (|has| |#1| (-1049)) (PROGN (-15 -4305 ($ (-771) (-771) (-771))) (-15 -2536 ($ (-771))) (-15 -1875 ($ $ $))) |%noBranch|) (-15 -2523 ($ (-644 (-644 (-644 |#1|))))) (-15 -4386 (|#1| $ (-771) (-771) (-771))) (-15 -3333 (|#1| $ (-771) (-771) (-771) |#1|)) (-15 -2512 ($ (-958 (-958 (-958 |#1|))))) (-15 -2512 ((-958 (-958 (-958 |#1|))) $)) (-15 -3617 ($ (-1175) $ $)) (-15 -3878 ((-1264 (-771)) $)))) (-1099)) (T -675))
-((-4305 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-771)) (-5 *1 (-675 *3)) (-4 *3 (-1049)) (-4 *3 (-1099)))) (-2536 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-675 *3)) (-4 *3 (-1049)) (-4 *3 (-1099)))) (-1875 (*1 *1 *1 *1) (-12 (-5 *1 (-675 *2)) (-4 *2 (-1049)) (-4 *2 (-1099)))) (-2523 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-644 *3)))) (-4 *3 (-1099)) (-5 *1 (-675 *3)))) (-4386 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-771)) (-5 *1 (-675 *2)) (-4 *2 (-1099)))) (-3333 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-675 *2)) (-4 *2 (-1099)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-958 (-958 (-958 *3)))) (-4 *3 (-1099)) (-5 *1 (-675 *3)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-958 (-958 (-958 *3)))) (-5 *1 (-675 *3)) (-4 *3 (-1099)))) (-3617 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-675 *3)) (-4 *3 (-1099)))) (-3878 (*1 *2 *1) (-12 (-5 *2 (-1264 (-771))) (-5 *1 (-675 *3)) (-4 *3 (-1099)))))
-(-13 (-491 |#1|) (-10 -8 (IF (|has| |#1| (-1049)) (PROGN (-15 -4305 ($ (-771) (-771) (-771))) (-15 -2536 ($ (-771))) (-15 -1875 ($ $ $))) |%noBranch|) (-15 -2523 ($ (-644 (-644 (-644 |#1|))))) (-15 -4386 (|#1| $ (-771) (-771) (-771))) (-15 -3333 (|#1| $ (-771) (-771) (-771) |#1|)) (-15 -2512 ($ (-958 (-958 (-958 |#1|))))) (-15 -2512 ((-958 (-958 (-958 |#1|))) $)) (-15 -3617 ($ (-1175) $ $)) (-15 -3878 ((-1264 (-771)) $))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4341 (((-485) $) 10)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 19) (($ (-1180)) NIL) (((-1180) $) NIL)) (-2639 (((-1134) $) 12)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-676) (-13 (-1082) (-10 -8 (-15 -4341 ((-485) $)) (-15 -2639 ((-1134) $))))) (T -676))
-((-4341 (*1 *2 *1) (-12 (-5 *2 (-485)) (-5 *1 (-676)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-676)))))
-(-13 (-1082) (-10 -8 (-15 -4341 ((-485) $)) (-15 -2639 ((-1134) $))))
-((-2985 (((-112) $ $) NIL)) (-1719 (((-644 |#1|) $) 15)) (-4368 (($ $) 19)) (-4353 (((-112) $) 20)) (-2977 (((-3 |#1| "failed") $) 23)) (-1756 ((|#1| $) 21)) (-4076 (($ $) 37)) (-1867 (($ $) 25)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3605 (((-112) $ $) 47)) (-3822 (((-921) $) 40)) (-4357 (($ $) 18)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 ((|#1| $) 36)) (-2512 (((-862) $) 32) (($ |#1|) 24) (((-819 |#1|) $) 28)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 13)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 44)) (* (($ $ $) 35)))
-(((-677 |#1|) (-13 (-850) (-1038 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -2512 ((-819 |#1|) $)) (-15 -4062 (|#1| $)) (-15 -4357 ($ $)) (-15 -3822 ((-921) $)) (-15 -3605 ((-112) $ $)) (-15 -1867 ($ $)) (-15 -4076 ($ $)) (-15 -4353 ((-112) $)) (-15 -4368 ($ $)) (-15 -1719 ((-644 |#1|) $)))) (-850)) (T -677))
-((* (*1 *1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-677 *3)) (-4 *3 (-850)))) (-4062 (*1 *2 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-4357 (*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-3822 (*1 *2 *1) (-12 (-5 *2 (-921)) (-5 *1 (-677 *3)) (-4 *3 (-850)))) (-3605 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-677 *3)) (-4 *3 (-850)))) (-1867 (*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-4076 (*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-4353 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-677 *3)) (-4 *3 (-850)))) (-4368 (*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-1719 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-677 *3)) (-4 *3 (-850)))))
-(-13 (-850) (-1038 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -2512 ((-819 |#1|) $)) (-15 -4062 (|#1| $)) (-15 -4357 ($ $)) (-15 -3822 ((-921) $)) (-15 -3605 ((-112) $ $)) (-15 -1867 ($ $)) (-15 -4076 ($ $)) (-15 -4353 ((-112) $)) (-15 -4368 ($ $)) (-15 -1719 ((-644 |#1|) $))))
-((-3440 ((|#1| (-1 |#1| (-771) |#1|) (-771) |#1|) 14)) (-3537 ((|#1| (-1 |#1| |#1|) (-771) |#1|) 12)))
-(((-678 |#1|) (-10 -7 (-15 -3537 (|#1| (-1 |#1| |#1|) (-771) |#1|)) (-15 -3440 (|#1| (-1 |#1| (-771) |#1|) (-771) |#1|))) (-1099)) (T -678))
-((-3440 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-771) *2)) (-5 *4 (-771)) (-4 *2 (-1099)) (-5 *1 (-678 *2)))) (-3537 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-771)) (-4 *2 (-1099)) (-5 *1 (-678 *2)))))
-(-10 -7 (-15 -3537 (|#1| (-1 |#1| |#1|) (-771) |#1|)) (-15 -3440 (|#1| (-1 |#1| (-771) |#1|) (-771) |#1|)))
-((-3894 ((|#2| |#1| |#2|) 9)) (-3883 ((|#1| |#1| |#2|) 8)))
-(((-679 |#1| |#2|) (-10 -7 (-15 -3883 (|#1| |#1| |#2|)) (-15 -3894 (|#2| |#1| |#2|))) (-1099) (-1099)) (T -679))
-((-3894 (*1 *2 *3 *2) (-12 (-5 *1 (-679 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))) (-3883 (*1 *2 *2 *3) (-12 (-5 *1 (-679 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
-(-10 -7 (-15 -3883 (|#1| |#1| |#2|)) (-15 -3894 (|#2| |#1| |#2|)))
-((-3891 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
-(((-680 |#1| |#2| |#3|) (-10 -7 (-15 -3891 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1099) (-1099) (-1099)) (T -680))
-((-3891 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)) (-5 *1 (-680 *5 *6 *2)))))
-(-10 -7 (-15 -3891 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3812 (((-1213) $) 21)) (-3767 (((-644 (-1213)) $) 19)) (-1799 (($ (-644 (-1213)) (-1213)) 14)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 29) (($ (-1180)) NIL) (((-1180) $) NIL) (((-1213) $) 22) (($ (-1117)) 10)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-681) (-13 (-1082) (-613 (-1213)) (-10 -8 (-15 -2512 ($ (-1117))) (-15 -1799 ($ (-644 (-1213)) (-1213))) (-15 -3767 ((-644 (-1213)) $)) (-15 -3812 ((-1213) $))))) (T -681))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1117)) (-5 *1 (-681)))) (-1799 (*1 *1 *2 *3) (-12 (-5 *2 (-644 (-1213))) (-5 *3 (-1213)) (-5 *1 (-681)))) (-3767 (*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-681)))) (-3812 (*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-681)))))
-(-13 (-1082) (-613 (-1213)) (-10 -8 (-15 -2512 ($ (-1117))) (-15 -1799 ($ (-644 (-1213)) (-1213))) (-15 -3767 ((-644 (-1213)) $)) (-15 -3812 ((-1213) $))))
-((-3440 (((-1 |#1| (-771) |#1|) (-1 |#1| (-771) |#1|)) 29)) (-2619 (((-1 |#1|) |#1|) 8)) (-4224 ((|#1| |#1|) 23)) (-1714 (((-644 |#1|) (-1 (-644 |#1|) (-644 |#1|)) (-566)) 22) ((|#1| (-1 |#1| |#1|)) 11)) (-2512 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-771)) 26)))
-(((-682 |#1|) (-10 -7 (-15 -2619 ((-1 |#1|) |#1|)) (-15 -2512 ((-1 |#1|) |#1|)) (-15 -1714 (|#1| (-1 |#1| |#1|))) (-15 -1714 ((-644 |#1|) (-1 (-644 |#1|) (-644 |#1|)) (-566))) (-15 -4224 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-771))) (-15 -3440 ((-1 |#1| (-771) |#1|) (-1 |#1| (-771) |#1|)))) (-1099)) (T -682))
-((-3440 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-771) *3)) (-4 *3 (-1099)) (-5 *1 (-682 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-771)) (-4 *4 (-1099)) (-5 *1 (-682 *4)))) (-4224 (*1 *2 *2) (-12 (-5 *1 (-682 *2)) (-4 *2 (-1099)))) (-1714 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-644 *5) (-644 *5))) (-5 *4 (-566)) (-5 *2 (-644 *5)) (-5 *1 (-682 *5)) (-4 *5 (-1099)))) (-1714 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-682 *2)) (-4 *2 (-1099)))) (-2512 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-682 *3)) (-4 *3 (-1099)))) (-2619 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-682 *3)) (-4 *3 (-1099)))))
-(-10 -7 (-15 -2619 ((-1 |#1|) |#1|)) (-15 -2512 ((-1 |#1|) |#1|)) (-15 -1714 (|#1| (-1 |#1| |#1|))) (-15 -1714 ((-644 |#1|) (-1 (-644 |#1|) (-644 |#1|)) (-566))) (-15 -4224 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-771))) (-15 -3440 ((-1 |#1| (-771) |#1|) (-1 |#1| (-771) |#1|))))
-((-2100 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-2641 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-1655 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-3935 (((-1 |#2| |#1|) |#2|) 11)))
-(((-683 |#1| |#2|) (-10 -7 (-15 -3935 ((-1 |#2| |#1|) |#2|)) (-15 -2641 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -1655 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2100 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1099) (-1099)) (T -683))
-((-2100 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-5 *2 (-1 *5 *4)) (-5 *1 (-683 *4 *5)))) (-1655 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1099)) (-5 *2 (-1 *5 *4)) (-5 *1 (-683 *4 *5)) (-4 *4 (-1099)))) (-2641 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-5 *2 (-1 *5)) (-5 *1 (-683 *4 *5)))) (-3935 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-683 *4 *3)) (-4 *4 (-1099)) (-4 *3 (-1099)))))
-(-10 -7 (-15 -3935 ((-1 |#2| |#1|) |#2|)) (-15 -2641 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -1655 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -2100 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
-((-3581 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-2616 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-3700 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-2745 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-1324 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
-(((-684 |#1| |#2| |#3|) (-10 -7 (-15 -2616 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3700 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2745 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -1324 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3581 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1099) (-1099) (-1099)) (T -684))
-((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-1 *7 *5)) (-5 *1 (-684 *5 *6 *7)))) (-3581 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-684 *4 *5 *6)))) (-1324 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-684 *4 *5 *6)) (-4 *4 (-1099)))) (-2745 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1099)) (-4 *6 (-1099)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-684 *4 *5 *6)) (-4 *5 (-1099)))) (-3700 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-1 *6 *5)) (-5 *1 (-684 *4 *5 *6)))) (-2616 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1099)) (-4 *4 (-1099)) (-4 *6 (-1099)) (-5 *2 (-1 *6 *5)) (-5 *1 (-684 *5 *4 *6)))))
-(-10 -7 (-15 -2616 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3700 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2745 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -1324 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3581 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
-((-4362 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-3077 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
-(((-685 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3077 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -3077 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -4362 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-1049) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|) (-1049) (-375 |#5|) (-375 |#5|) (-687 |#5| |#6| |#7|)) (T -685))
-((-4362 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1049)) (-4 *2 (-1049)) (-4 *6 (-375 *5)) (-4 *7 (-375 *5)) (-4 *8 (-375 *2)) (-4 *9 (-375 *2)) (-5 *1 (-685 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-687 *5 *6 *7)) (-4 *10 (-687 *2 *8 *9)))) (-3077 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-1049)) (-4 *8 (-1049)) (-4 *6 (-375 *5)) (-4 *7 (-375 *5)) (-4 *2 (-687 *8 *9 *10)) (-5 *1 (-685 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-687 *5 *6 *7)) (-4 *9 (-375 *8)) (-4 *10 (-375 *8)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1049)) (-4 *8 (-1049)) (-4 *6 (-375 *5)) (-4 *7 (-375 *5)) (-4 *2 (-687 *8 *9 *10)) (-5 *1 (-685 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-687 *5 *6 *7)) (-4 *9 (-375 *8)) (-4 *10 (-375 *8)))))
-(-10 -7 (-15 -3077 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -3077 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -4362 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
-((-2140 (($ (-771) (-771)) 43)) (-2654 (($ $ $) 71)) (-3804 (($ |#3|) 66) (($ $) 67)) (-2087 (((-112) $) 38)) (-4270 (($ $ (-566) (-566)) 82)) (-2302 (($ $ (-566) (-566)) 83)) (-1580 (($ $ (-566) (-566) (-566) (-566)) 88)) (-2589 (($ $) 69)) (-4072 (((-112) $) 15)) (-2242 (($ $ (-566) (-566) $) 89)) (-3874 ((|#2| $ (-566) (-566) |#2|) NIL) (($ $ (-644 (-566)) (-644 (-566)) $) 87)) (-3701 (($ (-771) |#2|) 53)) (-4198 (($ (-644 (-644 |#2|))) 51)) (-2503 (((-644 (-644 |#2|)) $) 78)) (-1797 (($ $ $) 70)) (-2972 (((-3 $ "failed") $ |#2|) 121)) (-4386 ((|#2| $ (-566) (-566)) NIL) ((|#2| $ (-566) (-566) |#2|) NIL) (($ $ (-644 (-566)) (-644 (-566))) 86)) (-3744 (($ (-644 |#2|)) 54) (($ (-644 $)) 56)) (-2742 (((-112) $) 28)) (-2512 (($ |#4|) 61) (((-862) $) NIL)) (-2103 (((-112) $) 40)) (-3061 (($ $ |#2|) 123)) (-3047 (($ $ $) 93) (($ $) 96)) (-3034 (($ $ $) 91)) (** (($ $ (-771)) 110) (($ $ (-566)) 128)) (* (($ $ $) 102) (($ |#2| $) 98) (($ $ |#2|) 99) (($ (-566) $) 101) ((|#4| $ |#4|) 114) ((|#3| |#3| $) 118)))
-(((-686 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2512 ((-862) |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3061 (|#1| |#1| |#2|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-771))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3034 (|#1| |#1| |#1|)) (-15 -2242 (|#1| |#1| (-566) (-566) |#1|)) (-15 -1580 (|#1| |#1| (-566) (-566) (-566) (-566))) (-15 -2302 (|#1| |#1| (-566) (-566))) (-15 -4270 (|#1| |#1| (-566) (-566))) (-15 -3874 (|#1| |#1| (-644 (-566)) (-644 (-566)) |#1|)) (-15 -4386 (|#1| |#1| (-644 (-566)) (-644 (-566)))) (-15 -2503 ((-644 (-644 |#2|)) |#1|)) (-15 -2654 (|#1| |#1| |#1|)) (-15 -1797 (|#1| |#1| |#1|)) (-15 -2589 (|#1| |#1|)) (-15 -3804 (|#1| |#1|)) (-15 -3804 (|#1| |#3|)) (-15 -2512 (|#1| |#4|)) (-15 -3744 (|#1| (-644 |#1|))) (-15 -3744 (|#1| (-644 |#2|))) (-15 -3701 (|#1| (-771) |#2|)) (-15 -4198 (|#1| (-644 (-644 |#2|)))) (-15 -2140 (|#1| (-771) (-771))) (-15 -2103 ((-112) |#1|)) (-15 -2087 ((-112) |#1|)) (-15 -2742 ((-112) |#1|)) (-15 -4072 ((-112) |#1|)) (-15 -3874 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566) (-566)))) (-687 |#2| |#3| |#4|) (-1049) (-375 |#2|) (-375 |#2|)) (T -686))
-NIL
-(-10 -8 (-15 -2512 ((-862) |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3061 (|#1| |#1| |#2|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-771))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3034 (|#1| |#1| |#1|)) (-15 -2242 (|#1| |#1| (-566) (-566) |#1|)) (-15 -1580 (|#1| |#1| (-566) (-566) (-566) (-566))) (-15 -2302 (|#1| |#1| (-566) (-566))) (-15 -4270 (|#1| |#1| (-566) (-566))) (-15 -3874 (|#1| |#1| (-644 (-566)) (-644 (-566)) |#1|)) (-15 -4386 (|#1| |#1| (-644 (-566)) (-644 (-566)))) (-15 -2503 ((-644 (-644 |#2|)) |#1|)) (-15 -2654 (|#1| |#1| |#1|)) (-15 -1797 (|#1| |#1| |#1|)) (-15 -2589 (|#1| |#1|)) (-15 -3804 (|#1| |#1|)) (-15 -3804 (|#1| |#3|)) (-15 -2512 (|#1| |#4|)) (-15 -3744 (|#1| (-644 |#1|))) (-15 -3744 (|#1| (-644 |#2|))) (-15 -3701 (|#1| (-771) |#2|)) (-15 -4198 (|#1| (-644 (-644 |#2|)))) (-15 -2140 (|#1| (-771) (-771))) (-15 -2103 ((-112) |#1|)) (-15 -2087 ((-112) |#1|)) (-15 -2742 ((-112) |#1|)) (-15 -4072 ((-112) |#1|)) (-15 -3874 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566) (-566))))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2140 (($ (-771) (-771)) 98)) (-2654 (($ $ $) 88)) (-3804 (($ |#2|) 92) (($ $) 91)) (-2087 (((-112) $) 100)) (-4270 (($ $ (-566) (-566)) 84)) (-2302 (($ $ (-566) (-566)) 83)) (-1580 (($ $ (-566) (-566) (-566) (-566)) 82)) (-2589 (($ $) 90)) (-4072 (((-112) $) 102)) (-3081 (((-112) $ (-771)) 8)) (-2242 (($ $ (-566) (-566) $) 81)) (-3874 ((|#1| $ (-566) (-566) |#1|) 45) (($ $ (-644 (-566)) (-644 (-566)) $) 85)) (-1878 (($ $ (-566) |#2|) 43)) (-4158 (($ $ (-566) |#3|) 42)) (-3701 (($ (-771) |#1|) 96)) (-2342 (($) 7 T CONST)) (-3071 (($ $) 68 (|has| |#1| (-308)))) (-4134 ((|#2| $ (-566)) 47)) (-1821 (((-771) $) 67 (|has| |#1| (-558)))) (-1332 ((|#1| $ (-566) (-566) |#1|) 44)) (-3137 ((|#1| $ (-566) (-566)) 49)) (-3372 (((-644 |#1|) $) 31)) (-2481 (((-771) $) 66 (|has| |#1| (-558)))) (-2442 (((-644 |#3|) $) 65 (|has| |#1| (-558)))) (-2042 (((-771) $) 52)) (-4257 (($ (-771) (-771) |#1|) 58)) (-2053 (((-771) $) 51)) (-2744 (((-112) $ (-771)) 9)) (-1299 ((|#1| $) 63 (|has| |#1| (-6 (-4419 "*"))))) (-3266 (((-566) $) 56)) (-1905 (((-566) $) 54)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-4385 (((-566) $) 55)) (-4106 (((-566) $) 53)) (-4198 (($ (-644 (-644 |#1|))) 97)) (-1323 (($ (-1 |#1| |#1|) $) 35)) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-2503 (((-644 (-644 |#1|)) $) 87)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2565 (((-3 $ "failed") $) 62 (|has| |#1| (-365)))) (-1797 (($ $ $) 89)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-1720 (($ $ |#1|) 57)) (-2972 (((-3 $ "failed") $ |#1|) 70 (|has| |#1| (-558)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ (-566) (-566)) 50) ((|#1| $ (-566) (-566) |#1|) 48) (($ $ (-644 (-566)) (-644 (-566))) 86)) (-3744 (($ (-644 |#1|)) 95) (($ (-644 $)) 94)) (-2742 (((-112) $) 101)) (-1595 ((|#1| $) 64 (|has| |#1| (-6 (-4419 "*"))))) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-4074 ((|#3| $ (-566)) 46)) (-2512 (($ |#3|) 93) (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2103 (((-112) $) 99)) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3061 (($ $ |#1|) 69 (|has| |#1| (-365)))) (-3047 (($ $ $) 79) (($ $) 78)) (-3034 (($ $ $) 80)) (** (($ $ (-771)) 71) (($ $ (-566)) 61 (|has| |#1| (-365)))) (* (($ $ $) 77) (($ |#1| $) 76) (($ $ |#1|) 75) (($ (-566) $) 74) ((|#3| $ |#3|) 73) ((|#2| |#2| $) 72)) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2092 (($ (-771) (-771) (-771)) 55 (|has| |#1| (-1049)))) (-1574 (((-112) $ (-771)) NIL)) (-1940 ((|#1| $ (-771) (-771) (-771) |#1|) 49)) (-3877 (($) NIL T CONST)) (-1955 (($ $ $) 60 (|has| |#1| (-1049)))) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3541 (((-1264 (-771)) $) 12)) (-2814 (($ (-1175) $ $) 37)) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2048 (($ (-771)) 57 (|has| |#1| (-1049)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-771) (-771) (-771)) 46)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-3791 (($ (-644 (-644 (-644 |#1|)))) 70)) (-3780 (($ (-958 (-958 (-958 |#1|)))) 23) (((-958 (-958 (-958 |#1|))) $) 19) (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-675 |#1|) (-13 (-491 |#1|) (-10 -8 (IF (|has| |#1| (-1049)) (PROGN (-15 -2092 ($ (-771) (-771) (-771))) (-15 -2048 ($ (-771))) (-15 -1955 ($ $ $))) |%noBranch|) (-15 -3791 ($ (-644 (-644 (-644 |#1|))))) (-15 -4393 (|#1| $ (-771) (-771) (-771))) (-15 -1940 (|#1| $ (-771) (-771) (-771) |#1|)) (-15 -3780 ($ (-958 (-958 (-958 |#1|))))) (-15 -3780 ((-958 (-958 (-958 |#1|))) $)) (-15 -2814 ($ (-1175) $ $)) (-15 -3541 ((-1264 (-771)) $)))) (-1099)) (T -675))
+((-2092 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-771)) (-5 *1 (-675 *3)) (-4 *3 (-1049)) (-4 *3 (-1099)))) (-2048 (*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-675 *3)) (-4 *3 (-1049)) (-4 *3 (-1099)))) (-1955 (*1 *1 *1 *1) (-12 (-5 *1 (-675 *2)) (-4 *2 (-1049)) (-4 *2 (-1099)))) (-3791 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-644 *3)))) (-4 *3 (-1099)) (-5 *1 (-675 *3)))) (-4393 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-771)) (-5 *1 (-675 *2)) (-4 *2 (-1099)))) (-1940 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-675 *2)) (-4 *2 (-1099)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-958 (-958 (-958 *3)))) (-4 *3 (-1099)) (-5 *1 (-675 *3)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-958 (-958 (-958 *3)))) (-5 *1 (-675 *3)) (-4 *3 (-1099)))) (-2814 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-675 *3)) (-4 *3 (-1099)))) (-3541 (*1 *2 *1) (-12 (-5 *2 (-1264 (-771))) (-5 *1 (-675 *3)) (-4 *3 (-1099)))))
+(-13 (-491 |#1|) (-10 -8 (IF (|has| |#1| (-1049)) (PROGN (-15 -2092 ($ (-771) (-771) (-771))) (-15 -2048 ($ (-771))) (-15 -1955 ($ $ $))) |%noBranch|) (-15 -3791 ($ (-644 (-644 (-644 |#1|))))) (-15 -4393 (|#1| $ (-771) (-771) (-771))) (-15 -1940 (|#1| $ (-771) (-771) (-771) |#1|)) (-15 -3780 ($ (-958 (-958 (-958 |#1|))))) (-15 -3780 ((-958 (-958 (-958 |#1|))) $)) (-15 -2814 ($ (-1175) $ $)) (-15 -3541 ((-1264 (-771)) $))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-2464 (((-485) $) 10)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 19) (($ (-1180)) NIL) (((-1180) $) NIL)) (-1398 (((-1134) $) 12)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-676) (-13 (-1082) (-10 -8 (-15 -2464 ((-485) $)) (-15 -1398 ((-1134) $))))) (T -676))
+((-2464 (*1 *2 *1) (-12 (-5 *2 (-485)) (-5 *1 (-676)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-676)))))
+(-13 (-1082) (-10 -8 (-15 -2464 ((-485) $)) (-15 -1398 ((-1134) $))))
+((-3009 (((-112) $ $) NIL)) (-1824 (((-644 |#1|) $) 15)) (-4394 (($ $) 19)) (-1323 (((-112) $) 20)) (-3066 (((-3 |#1| "failed") $) 23)) (-1867 ((|#1| $) 21)) (-4112 (($ $) 37)) (-2781 (($ $) 25)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2716 (((-112) $ $) 47)) (-3945 (((-921) $) 40)) (-4380 (($ $) 18)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 ((|#1| $) 36)) (-3780 (((-862) $) 32) (($ |#1|) 24) (((-819 |#1|) $) 28)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 13)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 44)) (* (($ $ $) 35)))
+(((-677 |#1|) (-13 (-850) (-1038 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3780 ((-819 |#1|) $)) (-15 -4101 (|#1| $)) (-15 -4380 ($ $)) (-15 -3945 ((-921) $)) (-15 -2716 ((-112) $ $)) (-15 -2781 ($ $)) (-15 -4112 ($ $)) (-15 -1323 ((-112) $)) (-15 -4394 ($ $)) (-15 -1824 ((-644 |#1|) $)))) (-850)) (T -677))
+((* (*1 *1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-677 *3)) (-4 *3 (-850)))) (-4101 (*1 *2 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-4380 (*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-3945 (*1 *2 *1) (-12 (-5 *2 (-921)) (-5 *1 (-677 *3)) (-4 *3 (-850)))) (-2716 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-677 *3)) (-4 *3 (-850)))) (-2781 (*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-4112 (*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-1323 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-677 *3)) (-4 *3 (-850)))) (-4394 (*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850)))) (-1824 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-677 *3)) (-4 *3 (-850)))))
+(-13 (-850) (-1038 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3780 ((-819 |#1|) $)) (-15 -4101 (|#1| $)) (-15 -4380 ($ $)) (-15 -3945 ((-921) $)) (-15 -2716 ((-112) $ $)) (-15 -2781 ($ $)) (-15 -4112 ($ $)) (-15 -1323 ((-112) $)) (-15 -4394 ($ $)) (-15 -1824 ((-644 |#1|) $))))
+((-1727 ((|#1| (-1 |#1| (-771) |#1|) (-771) |#1|) 14)) (-4268 ((|#1| (-1 |#1| |#1|) (-771) |#1|) 12)))
+(((-678 |#1|) (-10 -7 (-15 -4268 (|#1| (-1 |#1| |#1|) (-771) |#1|)) (-15 -1727 (|#1| (-1 |#1| (-771) |#1|) (-771) |#1|))) (-1099)) (T -678))
+((-1727 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-771) *2)) (-5 *4 (-771)) (-4 *2 (-1099)) (-5 *1 (-678 *2)))) (-4268 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-771)) (-4 *2 (-1099)) (-5 *1 (-678 *2)))))
+(-10 -7 (-15 -4268 (|#1| (-1 |#1| |#1|) (-771) |#1|)) (-15 -1727 (|#1| (-1 |#1| (-771) |#1|) (-771) |#1|)))
+((-2777 ((|#2| |#1| |#2|) 9)) (-2767 ((|#1| |#1| |#2|) 8)))
+(((-679 |#1| |#2|) (-10 -7 (-15 -2767 (|#1| |#1| |#2|)) (-15 -2777 (|#2| |#1| |#2|))) (-1099) (-1099)) (T -679))
+((-2777 (*1 *2 *3 *2) (-12 (-5 *1 (-679 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))) (-2767 (*1 *2 *2 *3) (-12 (-5 *1 (-679 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
+(-10 -7 (-15 -2767 (|#1| |#1| |#2|)) (-15 -2777 (|#2| |#1| |#2|)))
+((-3933 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
+(((-680 |#1| |#2| |#3|) (-10 -7 (-15 -3933 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1099) (-1099) (-1099)) (T -680))
+((-3933 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)) (-5 *1 (-680 *5 *6 *2)))))
+(-10 -7 (-15 -3933 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3848 (((-1213) $) 21)) (-3797 (((-644 (-1213)) $) 19)) (-3339 (($ (-644 (-1213)) (-1213)) 14)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 29) (($ (-1180)) NIL) (((-1180) $) NIL) (((-1213) $) 22) (($ (-1117)) 10)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-681) (-13 (-1082) (-613 (-1213)) (-10 -8 (-15 -3780 ($ (-1117))) (-15 -3339 ($ (-644 (-1213)) (-1213))) (-15 -3797 ((-644 (-1213)) $)) (-15 -3848 ((-1213) $))))) (T -681))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1117)) (-5 *1 (-681)))) (-3339 (*1 *1 *2 *3) (-12 (-5 *2 (-644 (-1213))) (-5 *3 (-1213)) (-5 *1 (-681)))) (-3797 (*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-681)))) (-3848 (*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-681)))))
+(-13 (-1082) (-613 (-1213)) (-10 -8 (-15 -3780 ($ (-1117))) (-15 -3339 ($ (-644 (-1213)) (-1213))) (-15 -3797 ((-644 (-1213)) $)) (-15 -3848 ((-1213) $))))
+((-1727 (((-1 |#1| (-771) |#1|) (-1 |#1| (-771) |#1|)) 29)) (-1611 (((-1 |#1|) |#1|) 8)) (-4249 ((|#1| |#1|) 23)) (-3704 (((-644 |#1|) (-1 (-644 |#1|) (-644 |#1|)) (-566)) 22) ((|#1| (-1 |#1| |#1|)) 11)) (-3780 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-771)) 26)))
+(((-682 |#1|) (-10 -7 (-15 -1611 ((-1 |#1|) |#1|)) (-15 -3780 ((-1 |#1|) |#1|)) (-15 -3704 (|#1| (-1 |#1| |#1|))) (-15 -3704 ((-644 |#1|) (-1 (-644 |#1|) (-644 |#1|)) (-566))) (-15 -4249 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-771))) (-15 -1727 ((-1 |#1| (-771) |#1|) (-1 |#1| (-771) |#1|)))) (-1099)) (T -682))
+((-1727 (*1 *2 *2) (-12 (-5 *2 (-1 *3 (-771) *3)) (-4 *3 (-1099)) (-5 *1 (-682 *3)))) (** (*1 *2 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-771)) (-4 *4 (-1099)) (-5 *1 (-682 *4)))) (-4249 (*1 *2 *2) (-12 (-5 *1 (-682 *2)) (-4 *2 (-1099)))) (-3704 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-644 *5) (-644 *5))) (-5 *4 (-566)) (-5 *2 (-644 *5)) (-5 *1 (-682 *5)) (-4 *5 (-1099)))) (-3704 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-682 *2)) (-4 *2 (-1099)))) (-3780 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-682 *3)) (-4 *3 (-1099)))) (-1611 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-682 *3)) (-4 *3 (-1099)))))
+(-10 -7 (-15 -1611 ((-1 |#1|) |#1|)) (-15 -3780 ((-1 |#1|) |#1|)) (-15 -3704 (|#1| (-1 |#1| |#1|))) (-15 -3704 ((-644 |#1|) (-1 (-644 |#1|) (-644 |#1|)) (-566))) (-15 -4249 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-771))) (-15 -1727 ((-1 |#1| (-771) |#1|) (-1 |#1| (-771) |#1|))))
+((-3326 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-1827 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-2460 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-2788 (((-1 |#2| |#1|) |#2|) 11)))
+(((-683 |#1| |#2|) (-10 -7 (-15 -2788 ((-1 |#2| |#1|) |#2|)) (-15 -1827 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2460 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -3326 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1099) (-1099)) (T -683))
+((-3326 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-5 *2 (-1 *5 *4)) (-5 *1 (-683 *4 *5)))) (-2460 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1099)) (-5 *2 (-1 *5 *4)) (-5 *1 (-683 *4 *5)) (-4 *4 (-1099)))) (-1827 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-5 *2 (-1 *5)) (-5 *1 (-683 *4 *5)))) (-2788 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-683 *4 *3)) (-4 *4 (-1099)) (-4 *3 (-1099)))))
+(-10 -7 (-15 -2788 ((-1 |#2| |#1|) |#2|)) (-15 -1827 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -2460 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -3326 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
+((-2504 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-1576 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-2439 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-3511 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-1745 (((-1 |#3| |#1| |#2|) (-1 |#3| |#2|)) 15)) (* (((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)) 21)))
+(((-684 |#1| |#2| |#3|) (-10 -7 (-15 -1576 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2439 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -3511 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -1745 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -2504 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|)))) (-1099) (-1099) (-1099)) (T -684))
+((* (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-1 *7 *5)) (-5 *1 (-684 *5 *6 *7)))) (-2504 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-684 *4 *5 *6)))) (-1745 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-684 *4 *5 *6)) (-4 *4 (-1099)))) (-3511 (*1 *2 *3) (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1099)) (-4 *6 (-1099)) (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-684 *4 *5 *6)) (-4 *5 (-1099)))) (-2439 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-1 *6 *5)) (-5 *1 (-684 *4 *5 *6)))) (-1576 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1099)) (-4 *4 (-1099)) (-4 *6 (-1099)) (-5 *2 (-1 *6 *5)) (-5 *1 (-684 *5 *4 *6)))))
+(-10 -7 (-15 -1576 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2439 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -3511 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -1745 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -2504 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
+((-1580 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-3152 (((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|) 37) ((|#8| (-1 |#5| |#1|) |#4|) 31)))
+(((-685 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3152 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -3152 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -1580 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|))) (-1049) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|) (-1049) (-375 |#5|) (-375 |#5|) (-687 |#5| |#6| |#7|)) (T -685))
+((-1580 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1049)) (-4 *2 (-1049)) (-4 *6 (-375 *5)) (-4 *7 (-375 *5)) (-4 *8 (-375 *2)) (-4 *9 (-375 *2)) (-5 *1 (-685 *5 *6 *7 *4 *2 *8 *9 *10)) (-4 *4 (-687 *5 *6 *7)) (-4 *10 (-687 *2 *8 *9)))) (-3152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *8 "failed") *5)) (-4 *5 (-1049)) (-4 *8 (-1049)) (-4 *6 (-375 *5)) (-4 *7 (-375 *5)) (-4 *2 (-687 *8 *9 *10)) (-5 *1 (-685 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-687 *5 *6 *7)) (-4 *9 (-375 *8)) (-4 *10 (-375 *8)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *5)) (-4 *5 (-1049)) (-4 *8 (-1049)) (-4 *6 (-375 *5)) (-4 *7 (-375 *5)) (-4 *2 (-687 *8 *9 *10)) (-5 *1 (-685 *5 *6 *7 *4 *8 *9 *10 *2)) (-4 *4 (-687 *5 *6 *7)) (-4 *9 (-375 *8)) (-4 *10 (-375 *8)))))
+(-10 -7 (-15 -3152 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -3152 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -1580 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
+((-2181 (($ (-771) (-771)) 43)) (-3810 (($ $ $) 71)) (-4078 (($ |#3|) 66) (($ $) 67)) (-3194 (((-112) $) 38)) (-2948 (($ $ (-566) (-566)) 82)) (-1605 (($ $ (-566) (-566)) 83)) (-1739 (($ $ (-566) (-566) (-566) (-566)) 88)) (-1300 (($ $) 69)) (-1597 (((-112) $) 15)) (-2236 (($ $ (-566) (-566) $) 89)) (-3916 ((|#2| $ (-566) (-566) |#2|) NIL) (($ $ (-644 (-566)) (-644 (-566)) $) 87)) (-2453 (($ (-771) |#2|) 53)) (-1883 (($ (-644 (-644 |#2|))) 51)) (-2947 (((-644 (-644 |#2|)) $) 78)) (-3319 (($ $ $) 70)) (-2997 (((-3 $ "failed") $ |#2|) 121)) (-4393 ((|#2| $ (-566) (-566)) NIL) ((|#2| $ (-566) (-566) |#2|) NIL) (($ $ (-644 (-566)) (-644 (-566))) 86)) (-1664 (($ (-644 |#2|)) 54) (($ (-644 $)) 56)) (-3478 (((-112) $) 28)) (-3780 (($ |#4|) 61) (((-862) $) NIL)) (-3359 (((-112) $) 40)) (-3062 (($ $ |#2|) 123)) (-3051 (($ $ $) 93) (($ $) 96)) (-3040 (($ $ $) 91)) (** (($ $ (-771)) 110) (($ $ (-566)) 128)) (* (($ $ $) 102) (($ |#2| $) 98) (($ $ |#2|) 99) (($ (-566) $) 101) ((|#4| $ |#4|) 114) ((|#3| |#3| $) 118)))
+(((-686 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3780 ((-862) |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3062 (|#1| |#1| |#2|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-771))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3040 (|#1| |#1| |#1|)) (-15 -2236 (|#1| |#1| (-566) (-566) |#1|)) (-15 -1739 (|#1| |#1| (-566) (-566) (-566) (-566))) (-15 -1605 (|#1| |#1| (-566) (-566))) (-15 -2948 (|#1| |#1| (-566) (-566))) (-15 -3916 (|#1| |#1| (-644 (-566)) (-644 (-566)) |#1|)) (-15 -4393 (|#1| |#1| (-644 (-566)) (-644 (-566)))) (-15 -2947 ((-644 (-644 |#2|)) |#1|)) (-15 -3810 (|#1| |#1| |#1|)) (-15 -3319 (|#1| |#1| |#1|)) (-15 -1300 (|#1| |#1|)) (-15 -4078 (|#1| |#1|)) (-15 -4078 (|#1| |#3|)) (-15 -3780 (|#1| |#4|)) (-15 -1664 (|#1| (-644 |#1|))) (-15 -1664 (|#1| (-644 |#2|))) (-15 -2453 (|#1| (-771) |#2|)) (-15 -1883 (|#1| (-644 (-644 |#2|)))) (-15 -2181 (|#1| (-771) (-771))) (-15 -3359 ((-112) |#1|)) (-15 -3194 ((-112) |#1|)) (-15 -3478 ((-112) |#1|)) (-15 -1597 ((-112) |#1|)) (-15 -3916 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566) (-566)))) (-687 |#2| |#3| |#4|) (-1049) (-375 |#2|) (-375 |#2|)) (T -686))
+NIL
+(-10 -8 (-15 -3780 ((-862) |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3062 (|#1| |#1| |#2|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#2|)) (-15 ** (|#1| |#1| (-771))) (-15 * (|#3| |#3| |#1|)) (-15 * (|#4| |#1| |#4|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3040 (|#1| |#1| |#1|)) (-15 -2236 (|#1| |#1| (-566) (-566) |#1|)) (-15 -1739 (|#1| |#1| (-566) (-566) (-566) (-566))) (-15 -1605 (|#1| |#1| (-566) (-566))) (-15 -2948 (|#1| |#1| (-566) (-566))) (-15 -3916 (|#1| |#1| (-644 (-566)) (-644 (-566)) |#1|)) (-15 -4393 (|#1| |#1| (-644 (-566)) (-644 (-566)))) (-15 -2947 ((-644 (-644 |#2|)) |#1|)) (-15 -3810 (|#1| |#1| |#1|)) (-15 -3319 (|#1| |#1| |#1|)) (-15 -1300 (|#1| |#1|)) (-15 -4078 (|#1| |#1|)) (-15 -4078 (|#1| |#3|)) (-15 -3780 (|#1| |#4|)) (-15 -1664 (|#1| (-644 |#1|))) (-15 -1664 (|#1| (-644 |#2|))) (-15 -2453 (|#1| (-771) |#2|)) (-15 -1883 (|#1| (-644 (-644 |#2|)))) (-15 -2181 (|#1| (-771) (-771))) (-15 -3359 ((-112) |#1|)) (-15 -3194 ((-112) |#1|)) (-15 -3478 ((-112) |#1|)) (-15 -1597 ((-112) |#1|)) (-15 -3916 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566) (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566) (-566))))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2181 (($ (-771) (-771)) 98)) (-3810 (($ $ $) 88)) (-4078 (($ |#2|) 92) (($ $) 91)) (-3194 (((-112) $) 100)) (-2948 (($ $ (-566) (-566)) 84)) (-1605 (($ $ (-566) (-566)) 83)) (-1739 (($ $ (-566) (-566) (-566) (-566)) 82)) (-1300 (($ $) 90)) (-1597 (((-112) $) 102)) (-1574 (((-112) $ (-771)) 8)) (-2236 (($ $ (-566) (-566) $) 81)) (-3916 ((|#1| $ (-566) (-566) |#1|) 45) (($ $ (-644 (-566)) (-644 (-566)) $) 85)) (-2890 (($ $ (-566) |#2|) 43)) (-4293 (($ $ (-566) |#3|) 42)) (-2453 (($ (-771) |#1|) 96)) (-3877 (($) 7 T CONST)) (-1495 (($ $) 68 (|has| |#1| (-308)))) (-4104 ((|#2| $ (-566)) 47)) (-4157 (((-771) $) 67 (|has| |#1| (-558)))) (-3128 ((|#1| $ (-566) (-566) |#1|) 44)) (-3059 ((|#1| $ (-566) (-566)) 49)) (-3799 (((-644 |#1|) $) 31)) (-2736 (((-771) $) 66 (|has| |#1| (-558)))) (-3586 (((-644 |#3|) $) 65 (|has| |#1| (-558)))) (-4301 (((-771) $) 52)) (-4278 (($ (-771) (-771) |#1|) 58)) (-4313 (((-771) $) 51)) (-3501 (((-112) $ (-771)) 9)) (-1647 ((|#1| $) 63 (|has| |#1| (-6 (-4416 "*"))))) (-2615 (((-566) $) 56)) (-1966 (((-566) $) 54)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1653 (((-566) $) 55)) (-3807 (((-566) $) 53)) (-1883 (($ (-644 (-644 |#1|))) 97)) (-3117 (($ (-1 |#1| |#1|) $) 35)) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-2947 (((-644 (-644 |#1|)) $) 87)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2344 (((-3 $ "failed") $) 62 (|has| |#1| (-365)))) (-3319 (($ $ $) 89)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3750 (($ $ |#1|) 57)) (-2997 (((-3 $ "failed") $ |#1|) 70 (|has| |#1| (-558)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ (-566) (-566)) 50) ((|#1| $ (-566) (-566) |#1|) 48) (($ $ (-644 (-566)) (-644 (-566))) 86)) (-1664 (($ (-644 |#1|)) 95) (($ (-644 $)) 94)) (-3478 (((-112) $) 101)) (-1896 ((|#1| $) 64 (|has| |#1| (-6 (-4416 "*"))))) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-1621 ((|#3| $ (-566)) 46)) (-3780 (($ |#3|) 93) (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-3359 (((-112) $) 99)) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3062 (($ $ |#1|) 69 (|has| |#1| (-365)))) (-3051 (($ $ $) 79) (($ $) 78)) (-3040 (($ $ $) 80)) (** (($ $ (-771)) 71) (($ $ (-566)) 61 (|has| |#1| (-365)))) (* (($ $ $) 77) (($ |#1| $) 76) (($ $ |#1|) 75) (($ (-566) $) 74) ((|#3| $ |#3|) 73) ((|#2| |#2| $) 72)) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-687 |#1| |#2| |#3|) (-140) (-1049) (-375 |t#1|) (-375 |t#1|)) (T -687))
-((-4072 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-112)))) (-2742 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-112)))) (-2087 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-112)))) (-2103 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-112)))) (-2140 (*1 *1 *2 *2) (-12 (-5 *2 (-771)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-4198 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3701 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3744 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3744 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-2512 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *2)) (-4 *4 (-375 *3)) (-4 *2 (-375 *3)))) (-3804 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-4 *1 (-687 *3 *2 *4)) (-4 *2 (-375 *3)) (-4 *4 (-375 *3)))) (-3804 (*1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-2589 (*1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-1797 (*1 *1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-2654 (*1 *1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-2503 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-644 (-644 *3))))) (-4386 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-644 (-566))) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3874 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-644 (-566))) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-4270 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-2302 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-1580 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-2242 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3034 (*1 *1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-3047 (*1 *1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-3047 (*1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-687 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *2 (-375 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-687 *3 *2 *4)) (-4 *3 (-1049)) (-4 *2 (-375 *3)) (-4 *4 (-375 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-2972 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (-4 *2 (-558)))) (-3061 (*1 *1 *1 *2) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (-4 *2 (-365)))) (-3071 (*1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (-4 *2 (-308)))) (-1821 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-771)))) (-2481 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-771)))) (-2442 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-644 *5)))) (-1595 (*1 *2 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (|has| *2 (-6 (-4419 "*"))) (-4 *2 (-1049)))) (-1299 (*1 *2 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (|has| *2 (-6 (-4419 "*"))) (-4 *2 (-1049)))) (-2565 (*1 *1 *1) (|partial| -12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (-4 *2 (-365)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-4 *3 (-365)))))
-(-13 (-57 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4418) (-6 -4417) (-15 -4072 ((-112) $)) (-15 -2742 ((-112) $)) (-15 -2087 ((-112) $)) (-15 -2103 ((-112) $)) (-15 -2140 ($ (-771) (-771))) (-15 -4198 ($ (-644 (-644 |t#1|)))) (-15 -3701 ($ (-771) |t#1|)) (-15 -3744 ($ (-644 |t#1|))) (-15 -3744 ($ (-644 $))) (-15 -2512 ($ |t#3|)) (-15 -3804 ($ |t#2|)) (-15 -3804 ($ $)) (-15 -2589 ($ $)) (-15 -1797 ($ $ $)) (-15 -2654 ($ $ $)) (-15 -2503 ((-644 (-644 |t#1|)) $)) (-15 -4386 ($ $ (-644 (-566)) (-644 (-566)))) (-15 -3874 ($ $ (-644 (-566)) (-644 (-566)) $)) (-15 -4270 ($ $ (-566) (-566))) (-15 -2302 ($ $ (-566) (-566))) (-15 -1580 ($ $ (-566) (-566) (-566) (-566))) (-15 -2242 ($ $ (-566) (-566) $)) (-15 -3034 ($ $ $)) (-15 -3047 ($ $ $)) (-15 -3047 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-566) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-771))) (IF (|has| |t#1| (-558)) (-15 -2972 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-365)) (-15 -3061 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-308)) (-15 -3071 ($ $)) |%noBranch|) (IF (|has| |t#1| (-558)) (PROGN (-15 -1821 ((-771) $)) (-15 -2481 ((-771) $)) (-15 -2442 ((-644 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4419 "*"))) (PROGN (-15 -1595 (|t#1| $)) (-15 -1299 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-365)) (PROGN (-15 -2565 ((-3 $ "failed") $)) (-15 ** ($ $ (-566)))) |%noBranch|)))
+((-1597 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-112)))) (-3478 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-112)))) (-3194 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-112)))) (-3359 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-112)))) (-2181 (*1 *1 *2 *2) (-12 (-5 *2 (-771)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-1883 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-2453 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-1664 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-1664 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3780 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *2)) (-4 *4 (-375 *3)) (-4 *2 (-375 *3)))) (-4078 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-4 *1 (-687 *3 *2 *4)) (-4 *2 (-375 *3)) (-4 *4 (-375 *3)))) (-4078 (*1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-1300 (*1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-3319 (*1 *1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-3810 (*1 *1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-2947 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-644 (-644 *3))))) (-4393 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-644 (-566))) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3916 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-644 (-566))) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-2948 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-1605 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-1739 (*1 *1 *1 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-2236 (*1 *1 *1 *2 *2 *1) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-3040 (*1 *1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-3051 (*1 *1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (-3051 (*1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (* (*1 *1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-687 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *2 (-375 *3)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-687 *3 *2 *4)) (-4 *3 (-1049)) (-4 *2 (-375 *3)) (-4 *4 (-375 *3)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))) (-2997 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (-4 *2 (-558)))) (-3062 (*1 *1 *1 *2) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (-4 *2 (-365)))) (-1495 (*1 *1 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (-4 *2 (-308)))) (-4157 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-771)))) (-2736 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-771)))) (-3586 (*1 *2 *1) (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-644 *5)))) (-1896 (*1 *2 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (|has| *2 (-6 (-4416 "*"))) (-4 *2 (-1049)))) (-1647 (*1 *2 *1) (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (|has| *2 (-6 (-4416 "*"))) (-4 *2 (-1049)))) (-2344 (*1 *1 *1) (|partial| -12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (-4 *2 (-365)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-4 *3 (-365)))))
+(-13 (-57 |t#1| |t#2| |t#3|) (-10 -8 (-6 -4415) (-6 -4414) (-15 -1597 ((-112) $)) (-15 -3478 ((-112) $)) (-15 -3194 ((-112) $)) (-15 -3359 ((-112) $)) (-15 -2181 ($ (-771) (-771))) (-15 -1883 ($ (-644 (-644 |t#1|)))) (-15 -2453 ($ (-771) |t#1|)) (-15 -1664 ($ (-644 |t#1|))) (-15 -1664 ($ (-644 $))) (-15 -3780 ($ |t#3|)) (-15 -4078 ($ |t#2|)) (-15 -4078 ($ $)) (-15 -1300 ($ $)) (-15 -3319 ($ $ $)) (-15 -3810 ($ $ $)) (-15 -2947 ((-644 (-644 |t#1|)) $)) (-15 -4393 ($ $ (-644 (-566)) (-644 (-566)))) (-15 -3916 ($ $ (-644 (-566)) (-644 (-566)) $)) (-15 -2948 ($ $ (-566) (-566))) (-15 -1605 ($ $ (-566) (-566))) (-15 -1739 ($ $ (-566) (-566) (-566) (-566))) (-15 -2236 ($ $ (-566) (-566) $)) (-15 -3040 ($ $ $)) (-15 -3051 ($ $ $)) (-15 -3051 ($ $)) (-15 * ($ $ $)) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 * ($ (-566) $)) (-15 * (|t#3| $ |t#3|)) (-15 * (|t#2| |t#2| $)) (-15 ** ($ $ (-771))) (IF (|has| |t#1| (-558)) (-15 -2997 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-365)) (-15 -3062 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-308)) (-15 -1495 ($ $)) |%noBranch|) (IF (|has| |t#1| (-558)) (PROGN (-15 -4157 ((-771) $)) (-15 -2736 ((-771) $)) (-15 -3586 ((-644 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4416 "*"))) (PROGN (-15 -1896 (|t#1| $)) (-15 -1647 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-365)) (PROGN (-15 -2344 ((-3 $ "failed") $)) (-15 ** ($ $ (-566)))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-57 |#1| |#2| |#3|) . T) ((-1214) . T))
-((-3071 ((|#4| |#4|) 97 (|has| |#1| (-308)))) (-1821 (((-771) |#4|) 125 (|has| |#1| (-558)))) (-2481 (((-771) |#4|) 101 (|has| |#1| (-558)))) (-2442 (((-644 |#3|) |#4|) 108 (|has| |#1| (-558)))) (-3732 (((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|) 140 (|has| |#1| (-308)))) (-1299 ((|#1| |#4|) 57)) (-2427 (((-3 |#4| "failed") |#4|) 89 (|has| |#1| (-558)))) (-2565 (((-3 |#4| "failed") |#4|) 105 (|has| |#1| (-365)))) (-1333 ((|#4| |#4|) 93 (|has| |#1| (-558)))) (-2552 ((|#4| |#4| |#1| (-566) (-566)) 65)) (-1836 ((|#4| |#4| (-566) (-566)) 60)) (-3355 ((|#4| |#4| |#1| (-566) (-566)) 70)) (-1595 ((|#1| |#4|) 103)) (-1550 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 94 (|has| |#1| (-558)))))
-(((-688 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1595 (|#1| |#4|)) (-15 -1299 (|#1| |#4|)) (-15 -1836 (|#4| |#4| (-566) (-566))) (-15 -2552 (|#4| |#4| |#1| (-566) (-566))) (-15 -3355 (|#4| |#4| |#1| (-566) (-566))) (IF (|has| |#1| (-558)) (PROGN (-15 -1821 ((-771) |#4|)) (-15 -2481 ((-771) |#4|)) (-15 -2442 ((-644 |#3|) |#4|)) (-15 -1333 (|#4| |#4|)) (-15 -2427 ((-3 |#4| "failed") |#4|)) (-15 -1550 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-308)) (PROGN (-15 -3071 (|#4| |#4|)) (-15 -3732 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -2565 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-172) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|)) (T -688))
-((-2565 (*1 *2 *2) (|partial| -12 (-4 *3 (-365)) (-4 *3 (-172)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-3732 (*1 *2 *3 *3) (-12 (-4 *3 (-308)) (-4 *3 (-172)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-688 *3 *4 *5 *6)) (-4 *6 (-687 *3 *4 *5)))) (-3071 (*1 *2 *2) (-12 (-4 *3 (-308)) (-4 *3 (-172)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-1550 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-688 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-2427 (*1 *2 *2) (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-1333 (*1 *2 *2) (-12 (-4 *3 (-558)) (-4 *3 (-172)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-2442 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-644 *6)) (-5 *1 (-688 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-2481 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-688 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-1821 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-688 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-3355 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-566)) (-4 *3 (-172)) (-4 *5 (-375 *3)) (-4 *6 (-375 *3)) (-5 *1 (-688 *3 *5 *6 *2)) (-4 *2 (-687 *3 *5 *6)))) (-2552 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-566)) (-4 *3 (-172)) (-4 *5 (-375 *3)) (-4 *6 (-375 *3)) (-5 *1 (-688 *3 *5 *6 *2)) (-4 *2 (-687 *3 *5 *6)))) (-1836 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-566)) (-4 *4 (-172)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *1 (-688 *4 *5 *6 *2)) (-4 *2 (-687 *4 *5 *6)))) (-1299 (*1 *2 *3) (-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-172)) (-5 *1 (-688 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5)))) (-1595 (*1 *2 *3) (-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-172)) (-5 *1 (-688 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5)))))
-(-10 -7 (-15 -1595 (|#1| |#4|)) (-15 -1299 (|#1| |#4|)) (-15 -1836 (|#4| |#4| (-566) (-566))) (-15 -2552 (|#4| |#4| |#1| (-566) (-566))) (-15 -3355 (|#4| |#4| |#1| (-566) (-566))) (IF (|has| |#1| (-558)) (PROGN (-15 -1821 ((-771) |#4|)) (-15 -2481 ((-771) |#4|)) (-15 -2442 ((-644 |#3|) |#4|)) (-15 -1333 (|#4| |#4|)) (-15 -2427 ((-3 |#4| "failed") |#4|)) (-15 -1550 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-308)) (PROGN (-15 -3071 (|#4| |#4|)) (-15 -3732 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -2565 ((-3 |#4| "failed") |#4|)) |%noBranch|))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2140 (($ (-771) (-771)) 64)) (-2654 (($ $ $) NIL)) (-3804 (($ (-1264 |#1|)) NIL) (($ $) NIL)) (-2087 (((-112) $) NIL)) (-4270 (($ $ (-566) (-566)) 22)) (-2302 (($ $ (-566) (-566)) NIL)) (-1580 (($ $ (-566) (-566) (-566) (-566)) NIL)) (-2589 (($ $) NIL)) (-4072 (((-112) $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-2242 (($ $ (-566) (-566) $) NIL)) (-3874 ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566)) $) NIL)) (-1878 (($ $ (-566) (-1264 |#1|)) NIL)) (-4158 (($ $ (-566) (-1264 |#1|)) NIL)) (-3701 (($ (-771) |#1|) 37)) (-2342 (($) NIL T CONST)) (-3071 (($ $) 46 (|has| |#1| (-308)))) (-4134 (((-1264 |#1|) $ (-566)) NIL)) (-1821 (((-771) $) 48 (|has| |#1| (-558)))) (-1332 ((|#1| $ (-566) (-566) |#1|) 69)) (-3137 ((|#1| $ (-566) (-566)) NIL)) (-3372 (((-644 |#1|) $) NIL)) (-2481 (((-771) $) 50 (|has| |#1| (-558)))) (-2442 (((-644 (-1264 |#1|)) $) 53 (|has| |#1| (-558)))) (-2042 (((-771) $) 32)) (-4257 (($ (-771) (-771) |#1|) 28)) (-2053 (((-771) $) 33)) (-2744 (((-112) $ (-771)) NIL)) (-1299 ((|#1| $) 44 (|has| |#1| (-6 (-4419 "*"))))) (-3266 (((-566) $) 10)) (-1905 (((-566) $) 11)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-4385 (((-566) $) 14)) (-4106 (((-566) $) 65)) (-4198 (($ (-644 (-644 |#1|))) NIL)) (-1323 (($ (-1 |#1| |#1|) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2503 (((-644 (-644 |#1|)) $) 76)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2565 (((-3 $ "failed") $) 60 (|has| |#1| (-365)))) (-1797 (($ $ $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1720 (($ $ |#1|) NIL)) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-566) (-566)) NIL) ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566))) NIL)) (-3744 (($ (-644 |#1|)) NIL) (($ (-644 $)) NIL) (($ (-1264 |#1|)) 70)) (-2742 (((-112) $) NIL)) (-1595 ((|#1| $) 42 (|has| |#1| (-6 (-4419 "*"))))) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-3134 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-4074 (((-1264 |#1|) $ (-566)) NIL)) (-2512 (($ (-1264 |#1|)) NIL) (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2103 (((-112) $) NIL)) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $ $) NIL) (($ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-771)) 38) (($ $ (-566)) 62 (|has| |#1| (-365)))) (* (($ $ $) 24) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-566) $) NIL) (((-1264 |#1|) $ (-1264 |#1|)) NIL) (((-1264 |#1|) (-1264 |#1|) $) NIL)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-689 |#1|) (-13 (-687 |#1| (-1264 |#1|) (-1264 |#1|)) (-10 -8 (-15 -3744 ($ (-1264 |#1|))) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -2565 ((-3 $ "failed") $)) |%noBranch|))) (-1049)) (T -689))
-((-2565 (*1 *1 *1) (|partial| -12 (-5 *1 (-689 *2)) (-4 *2 (-365)) (-4 *2 (-1049)))) (-3744 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1049)) (-5 *1 (-689 *3)))))
-(-13 (-687 |#1| (-1264 |#1|) (-1264 |#1|)) (-10 -8 (-15 -3744 ($ (-1264 |#1|))) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -2565 ((-3 $ "failed") $)) |%noBranch|)))
-((-3015 (((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|)) 37)) (-3106 (((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|) 34)) (-1510 (((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-771)) 43)) (-1940 (((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|)) 27)) (-1315 (((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|)) 31) (((-689 |#1|) (-689 |#1|) (-689 |#1|)) 29)) (-1882 (((-689 |#1|) (-689 |#1|) |#1| (-689 |#1|)) 33)) (-1543 (((-689 |#1|) (-689 |#1|) (-689 |#1|)) 25)) (** (((-689 |#1|) (-689 |#1|) (-771)) 46)))
-(((-690 |#1|) (-10 -7 (-15 -1543 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1940 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1315 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1315 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1882 ((-689 |#1|) (-689 |#1|) |#1| (-689 |#1|))) (-15 -3106 ((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|)) (-15 -3015 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1510 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-771))) (-15 ** ((-689 |#1|) (-689 |#1|) (-771)))) (-1049)) (T -690))
-((** (*1 *2 *2 *3) (-12 (-5 *2 (-689 *4)) (-5 *3 (-771)) (-4 *4 (-1049)) (-5 *1 (-690 *4)))) (-1510 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-689 *4)) (-5 *3 (-771)) (-4 *4 (-1049)) (-5 *1 (-690 *4)))) (-3015 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-3106 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-1882 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-1315 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-1315 (*1 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-1940 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-1543 (*1 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
-(-10 -7 (-15 -1543 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1940 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1315 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1315 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1882 ((-689 |#1|) (-689 |#1|) |#1| (-689 |#1|))) (-15 -3106 ((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|)) (-15 -3015 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1510 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-771))) (-15 ** ((-689 |#1|) (-689 |#1|) (-771))))
-((-2977 (((-3 |#1| "failed") $) 18)) (-1756 ((|#1| $) NIL)) (-3410 (($) 7 T CONST)) (-3201 (($ |#1|) 8)) (-2512 (($ |#1|) 16) (((-862) $) 23)) (-2473 (((-112) $ (|[\|\|]| |#1|)) 14) (((-112) $ (|[\|\|]| -3410)) 11)) (-3928 ((|#1| $) 15)))
-(((-691 |#1|) (-13 (-1259) (-1038 |#1|) (-613 (-862)) (-10 -8 (-15 -3201 ($ |#1|)) (-15 -2473 ((-112) $ (|[\|\|]| |#1|))) (-15 -2473 ((-112) $ (|[\|\|]| -3410))) (-15 -3928 (|#1| $)) (-15 -3410 ($) -1655))) (-613 (-862))) (T -691))
-((-3201 (*1 *1 *2) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862))))) (-2473 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-613 (-862))) (-5 *2 (-112)) (-5 *1 (-691 *4)))) (-2473 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3410)) (-5 *2 (-112)) (-5 *1 (-691 *4)) (-4 *4 (-613 (-862))))) (-3928 (*1 *2 *1) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862))))) (-3410 (*1 *1) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862))))))
-(-13 (-1259) (-1038 |#1|) (-613 (-862)) (-10 -8 (-15 -3201 ($ |#1|)) (-15 -2473 ((-112) $ (|[\|\|]| |#1|))) (-15 -2473 ((-112) $ (|[\|\|]| -3410))) (-15 -3928 (|#1| $)) (-15 -3410 ($) -1655)))
-((-1736 ((|#2| |#2| |#4|) 33)) (-3945 (((-689 |#2|) |#3| |#4|) 39)) (-2551 (((-689 |#2|) |#2| |#4|) 38)) (-4163 (((-1264 |#2|) |#2| |#4|) 16)) (-1895 ((|#2| |#3| |#4|) 32)) (-2171 (((-689 |#2|) |#3| |#4| (-771) (-771)) 50)) (-2801 (((-689 |#2|) |#2| |#4| (-771)) 49)))
-(((-692 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4163 ((-1264 |#2|) |#2| |#4|)) (-15 -1895 (|#2| |#3| |#4|)) (-15 -1736 (|#2| |#2| |#4|)) (-15 -2551 ((-689 |#2|) |#2| |#4|)) (-15 -2801 ((-689 |#2|) |#2| |#4| (-771))) (-15 -3945 ((-689 |#2|) |#3| |#4|)) (-15 -2171 ((-689 |#2|) |#3| |#4| (-771) (-771)))) (-1099) (-900 |#1|) (-375 |#2|) (-13 (-375 |#1|) (-10 -7 (-6 -4417)))) (T -692))
-((-2171 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-771)) (-4 *6 (-1099)) (-4 *7 (-900 *6)) (-5 *2 (-689 *7)) (-5 *1 (-692 *6 *7 *3 *4)) (-4 *3 (-375 *7)) (-4 *4 (-13 (-375 *6) (-10 -7 (-6 -4417)))))) (-3945 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-4 *6 (-900 *5)) (-5 *2 (-689 *6)) (-5 *1 (-692 *5 *6 *3 *4)) (-4 *3 (-375 *6)) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4417)))))) (-2801 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-771)) (-4 *6 (-1099)) (-4 *3 (-900 *6)) (-5 *2 (-689 *3)) (-5 *1 (-692 *6 *3 *7 *4)) (-4 *7 (-375 *3)) (-4 *4 (-13 (-375 *6) (-10 -7 (-6 -4417)))))) (-2551 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-4 *3 (-900 *5)) (-5 *2 (-689 *3)) (-5 *1 (-692 *5 *3 *6 *4)) (-4 *6 (-375 *3)) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4417)))))) (-1736 (*1 *2 *2 *3) (-12 (-4 *4 (-1099)) (-4 *2 (-900 *4)) (-5 *1 (-692 *4 *2 *5 *3)) (-4 *5 (-375 *2)) (-4 *3 (-13 (-375 *4) (-10 -7 (-6 -4417)))))) (-1895 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-4 *2 (-900 *5)) (-5 *1 (-692 *5 *2 *3 *4)) (-4 *3 (-375 *2)) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4417)))))) (-4163 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-4 *3 (-900 *5)) (-5 *2 (-1264 *3)) (-5 *1 (-692 *5 *3 *6 *4)) (-4 *6 (-375 *3)) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4417)))))))
-(-10 -7 (-15 -4163 ((-1264 |#2|) |#2| |#4|)) (-15 -1895 (|#2| |#3| |#4|)) (-15 -1736 (|#2| |#2| |#4|)) (-15 -2551 ((-689 |#2|) |#2| |#4|)) (-15 -2801 ((-689 |#2|) |#2| |#4| (-771))) (-15 -3945 ((-689 |#2|) |#3| |#4|)) (-15 -2171 ((-689 |#2|) |#3| |#4| (-771) (-771))))
-((-1919 (((-2 (|:| |num| (-689 |#1|)) (|:| |den| |#1|)) (-689 |#2|)) 20)) (-1443 ((|#1| (-689 |#2|)) 9)) (-3774 (((-689 |#1|) (-689 |#2|)) 18)))
-(((-693 |#1| |#2|) (-10 -7 (-15 -1443 (|#1| (-689 |#2|))) (-15 -3774 ((-689 |#1|) (-689 |#2|))) (-15 -1919 ((-2 (|:| |num| (-689 |#1|)) (|:| |den| |#1|)) (-689 |#2|)))) (-558) (-992 |#1|)) (T -693))
-((-1919 (*1 *2 *3) (-12 (-5 *3 (-689 *5)) (-4 *5 (-992 *4)) (-4 *4 (-558)) (-5 *2 (-2 (|:| |num| (-689 *4)) (|:| |den| *4))) (-5 *1 (-693 *4 *5)))) (-3774 (*1 *2 *3) (-12 (-5 *3 (-689 *5)) (-4 *5 (-992 *4)) (-4 *4 (-558)) (-5 *2 (-689 *4)) (-5 *1 (-693 *4 *5)))) (-1443 (*1 *2 *3) (-12 (-5 *3 (-689 *4)) (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-693 *2 *4)))))
-(-10 -7 (-15 -1443 (|#1| (-689 |#2|))) (-15 -3774 ((-689 |#1|) (-689 |#2|))) (-15 -1919 ((-2 (|:| |num| (-689 |#1|)) (|:| |den| |#1|)) (-689 |#2|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3953 (((-689 (-699))) NIL) (((-689 (-699)) (-1264 $)) NIL)) (-3817 (((-699) $) NIL)) (-3235 (($ $) NIL (|has| (-699) (-1199)))) (-3102 (($ $) NIL (|has| (-699) (-1199)))) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-699) (-351)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-699) (-308)) (|has| (-699) (-909))))) (-2857 (($ $) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| (-699) (-909))) (|has| (-699) (-365))))) (-1370 (((-420 $) $) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| (-699) (-909))) (|has| (-699) (-365))))) (-2402 (($ $) NIL (-12 (|has| (-699) (-1002)) (|has| (-699) (-1199))))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-699) (-308)) (|has| (-699) (-909))))) (-1561 (((-112) $ $) NIL (|has| (-699) (-308)))) (-4025 (((-771)) NIL (|has| (-699) (-370)))) (-3215 (($ $) NIL (|has| (-699) (-1199)))) (-3076 (($ $) NIL (|has| (-699) (-1199)))) (-3259 (($ $) NIL (|has| (-699) (-1199)))) (-3123 (($ $) NIL (|has| (-699) (-1199)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-699) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-699) (-1038 (-409 (-566)))))) (-1756 (((-566) $) NIL) (((-699) $) NIL) (((-409 (-566)) $) NIL (|has| (-699) (-1038 (-409 (-566)))))) (-1547 (($ (-1264 (-699))) NIL) (($ (-1264 (-699)) (-1264 $)) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-699) (-351)))) (-2926 (($ $ $) NIL (|has| (-699) (-308)))) (-1929 (((-689 (-699)) $) NIL) (((-689 (-699)) $ (-1264 $)) NIL)) (-1628 (((-689 (-699)) (-689 $)) NIL) (((-2 (|:| -1380 (-689 (-699))) (|:| |vec| (-1264 (-699)))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-699) (-639 (-566)))) (((-689 (-566)) (-689 $)) NIL (|has| (-699) (-639 (-566))))) (-4362 (((-3 $ "failed") (-409 (-1171 (-699)))) NIL (|has| (-699) (-365))) (($ (-1171 (-699))) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2417 (((-699) $) 29)) (-3800 (((-3 (-409 (-566)) "failed") $) NIL (|has| (-699) (-547)))) (-3717 (((-112) $) NIL (|has| (-699) (-547)))) (-3370 (((-409 (-566)) $) NIL (|has| (-699) (-547)))) (-1821 (((-921)) NIL)) (-3335 (($) NIL (|has| (-699) (-370)))) (-2938 (($ $ $) NIL (|has| (-699) (-308)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| (-699) (-308)))) (-3092 (($) NIL (|has| (-699) (-351)))) (-3449 (((-112) $) NIL (|has| (-699) (-351)))) (-3626 (($ $) NIL (|has| (-699) (-351))) (($ $ (-771)) NIL (|has| (-699) (-351)))) (-2635 (((-112) $) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| (-699) (-909))) (|has| (-699) (-365))))) (-1567 (((-2 (|:| |r| (-699)) (|:| |phi| (-699))) $) NIL (-12 (|has| (-699) (-1059)) (|has| (-699) (-1199))))) (-3035 (($) NIL (|has| (-699) (-1199)))) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-699) (-886 (-381)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-699) (-886 (-566))))) (-2716 (((-833 (-921)) $) NIL (|has| (-699) (-351))) (((-921) $) NIL (|has| (-699) (-351)))) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL (-12 (|has| (-699) (-1002)) (|has| (-699) (-1199))))) (-1559 (((-699) $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| (-699) (-351)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-699) (-308)))) (-3929 (((-1171 (-699)) $) NIL (|has| (-699) (-365)))) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3077 (($ (-1 (-699) (-699)) $) NIL)) (-3712 (((-921) $) NIL (|has| (-699) (-370)))) (-3668 (($ $) NIL (|has| (-699) (-1199)))) (-4350 (((-1171 (-699)) $) NIL)) (-2184 (($ (-644 $)) NIL (|has| (-699) (-308))) (($ $ $) NIL (|has| (-699) (-308)))) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| (-699) (-365)))) (-2759 (($) NIL (|has| (-699) (-351)) CONST)) (-2168 (($ (-921)) NIL (|has| (-699) (-370)))) (-3610 (($) NIL)) (-2430 (((-699) $) 31)) (-4033 (((-1119) $) NIL)) (-4067 (($) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| (-699) (-308)))) (-2222 (($ (-644 $)) NIL (|has| (-699) (-308))) (($ $ $) NIL (|has| (-699) (-308)))) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| (-699) (-351)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-699) (-308)) (|has| (-699) (-909))))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-699) (-308)) (|has| (-699) (-909))))) (-2391 (((-420 $) $) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| (-699) (-909))) (|has| (-699) (-365))))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-699) (-308))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| (-699) (-308)))) (-2972 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-699)) NIL (|has| (-699) (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-699) (-308)))) (-3613 (($ $) NIL (|has| (-699) (-1199)))) (-2070 (($ $ (-1175) (-699)) NIL (|has| (-699) (-516 (-1175) (-699)))) (($ $ (-644 (-1175)) (-644 (-699))) NIL (|has| (-699) (-516 (-1175) (-699)))) (($ $ (-644 (-295 (-699)))) NIL (|has| (-699) (-310 (-699)))) (($ $ (-295 (-699))) NIL (|has| (-699) (-310 (-699)))) (($ $ (-699) (-699)) NIL (|has| (-699) (-310 (-699)))) (($ $ (-644 (-699)) (-644 (-699))) NIL (|has| (-699) (-310 (-699))))) (-1813 (((-771) $) NIL (|has| (-699) (-308)))) (-4386 (($ $ (-699)) NIL (|has| (-699) (-287 (-699) (-699))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| (-699) (-308)))) (-2408 (((-699)) NIL) (((-699) (-1264 $)) NIL)) (-3379 (((-3 (-771) "failed") $ $) NIL (|has| (-699) (-351))) (((-771) $) NIL (|has| (-699) (-351)))) (-2862 (($ $ (-1 (-699) (-699))) NIL) (($ $ (-1 (-699) (-699)) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-1175)) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-771)) NIL (|has| (-699) (-233))) (($ $) NIL (|has| (-699) (-233)))) (-3042 (((-689 (-699)) (-1264 $) (-1 (-699) (-699))) NIL (|has| (-699) (-365)))) (-2127 (((-1171 (-699))) NIL)) (-3267 (($ $) NIL (|has| (-699) (-1199)))) (-3133 (($ $) NIL (|has| (-699) (-1199)))) (-1536 (($) NIL (|has| (-699) (-351)))) (-3248 (($ $) NIL (|has| (-699) (-1199)))) (-3112 (($ $) NIL (|has| (-699) (-1199)))) (-3223 (($ $) NIL (|has| (-699) (-1199)))) (-3089 (($ $) NIL (|has| (-699) (-1199)))) (-2770 (((-689 (-699)) (-1264 $)) NIL) (((-1264 (-699)) $) NIL) (((-689 (-699)) (-1264 $) (-1264 $)) NIL) (((-1264 (-699)) $ (-1264 $)) NIL)) (-3134 (((-538) $) NIL (|has| (-699) (-614 (-538)))) (((-169 (-225)) $) NIL (|has| (-699) (-1022))) (((-169 (-381)) $) NIL (|has| (-699) (-1022))) (((-892 (-381)) $) NIL (|has| (-699) (-614 (-892 (-381))))) (((-892 (-566)) $) NIL (|has| (-699) (-614 (-892 (-566))))) (($ (-1171 (-699))) NIL) (((-1171 (-699)) $) NIL) (($ (-1264 (-699))) NIL) (((-1264 (-699)) $) NIL)) (-2032 (($ $) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| $ (-145)) (|has| (-699) (-909))) (|has| (-699) (-351))))) (-3654 (($ (-699) (-699)) 12)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-566)) NIL) (($ (-699)) NIL) (($ (-169 (-381))) 13) (($ (-169 (-566))) 19) (($ (-169 (-699))) 28) (($ (-169 (-701))) 25) (((-169 (-381)) $) 33) (($ (-409 (-566))) NIL (-2805 (|has| (-699) (-1038 (-409 (-566)))) (|has| (-699) (-365))))) (-3842 (($ $) NIL (|has| (-699) (-351))) (((-3 $ "failed") $) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| $ (-145)) (|has| (-699) (-909))) (|has| (-699) (-145))))) (-1963 (((-1171 (-699)) $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) NIL)) (-3302 (($ $) NIL (|has| (-699) (-1199)))) (-3172 (($ $) NIL (|has| (-699) (-1199)))) (-1634 (((-112) $ $) NIL)) (-3279 (($ $) NIL (|has| (-699) (-1199)))) (-3146 (($ $) NIL (|has| (-699) (-1199)))) (-3323 (($ $) NIL (|has| (-699) (-1199)))) (-3194 (($ $) NIL (|has| (-699) (-1199)))) (-2241 (((-699) $) NIL (|has| (-699) (-1199)))) (-1382 (($ $) NIL (|has| (-699) (-1199)))) (-3205 (($ $) NIL (|has| (-699) (-1199)))) (-3313 (($ $) NIL (|has| (-699) (-1199)))) (-3185 (($ $) NIL (|has| (-699) (-1199)))) (-3291 (($ $) NIL (|has| (-699) (-1199)))) (-3160 (($ $) NIL (|has| (-699) (-1199)))) (-1346 (($ $) NIL (|has| (-699) (-1059)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-1 (-699) (-699))) NIL) (($ $ (-1 (-699) (-699)) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-1175)) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-771)) NIL (|has| (-699) (-233))) (($ $) NIL (|has| (-699) (-233)))) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL (|has| (-699) (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ $) NIL (|has| (-699) (-1199))) (($ $ (-409 (-566))) NIL (-12 (|has| (-699) (-1002)) (|has| (-699) (-1199)))) (($ $ (-566)) NIL (|has| (-699) (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ (-699) $) NIL) (($ $ (-699)) NIL) (($ (-409 (-566)) $) NIL (|has| (-699) (-365))) (($ $ (-409 (-566))) NIL (|has| (-699) (-365)))))
-(((-694) (-13 (-389) (-166 (-699)) (-10 -8 (-15 -2512 ($ (-169 (-381)))) (-15 -2512 ($ (-169 (-566)))) (-15 -2512 ($ (-169 (-699)))) (-15 -2512 ($ (-169 (-701)))) (-15 -2512 ((-169 (-381)) $))))) (T -694))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-169 (-381))) (-5 *1 (-694)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-169 (-566))) (-5 *1 (-694)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-169 (-699))) (-5 *1 (-694)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-169 (-701))) (-5 *1 (-694)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-169 (-381))) (-5 *1 (-694)))))
-(-13 (-389) (-166 (-699)) (-10 -8 (-15 -2512 ($ (-169 (-381)))) (-15 -2512 ($ (-169 (-566)))) (-15 -2512 ($ (-169 (-699)))) (-15 -2512 ($ (-169 (-701)))) (-15 -2512 ((-169 (-381)) $))))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) 8)) (-3586 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-4130 (($ $) 63)) (-4093 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3066 (($ |#1| $) 48 (|has| $ (-6 -4417))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4417)))) (-2651 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4417)))) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3119 ((|#1| $) 40)) (-4265 (($ |#1| $) 41) (($ |#1| $ (-771)) 64)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-2109 (((-644 (-2 (|:| -2818 |#1|) (|:| -4044 (-771)))) $) 62)) (-3879 (($) 50) (($ (-644 |#1|)) 49)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 51)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) 43)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-1495 ((|#4| |#4|) 97 (|has| |#1| (-308)))) (-4157 (((-771) |#4|) 125 (|has| |#1| (-558)))) (-2736 (((-771) |#4|) 101 (|has| |#1| (-558)))) (-3586 (((-644 |#3|) |#4|) 108 (|has| |#1| (-558)))) (-1530 (((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|) 140 (|has| |#1| (-308)))) (-1647 ((|#1| |#4|) 57)) (-3460 (((-3 |#4| "failed") |#4|) 89 (|has| |#1| (-558)))) (-2344 (((-3 |#4| "failed") |#4|) 105 (|has| |#1| (-365)))) (-1838 ((|#4| |#4|) 93 (|has| |#1| (-558)))) (-2194 ((|#4| |#4| |#1| (-566) (-566)) 65)) (-2483 ((|#4| |#4| (-566) (-566)) 60)) (-2126 ((|#4| |#4| |#1| (-566) (-566)) 70)) (-1896 ((|#1| |#4|) 103)) (-2643 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 94 (|has| |#1| (-558)))))
+(((-688 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1896 (|#1| |#4|)) (-15 -1647 (|#1| |#4|)) (-15 -2483 (|#4| |#4| (-566) (-566))) (-15 -2194 (|#4| |#4| |#1| (-566) (-566))) (-15 -2126 (|#4| |#4| |#1| (-566) (-566))) (IF (|has| |#1| (-558)) (PROGN (-15 -4157 ((-771) |#4|)) (-15 -2736 ((-771) |#4|)) (-15 -3586 ((-644 |#3|) |#4|)) (-15 -1838 (|#4| |#4|)) (-15 -3460 ((-3 |#4| "failed") |#4|)) (-15 -2643 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-308)) (PROGN (-15 -1495 (|#4| |#4|)) (-15 -1530 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -2344 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-172) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|)) (T -688))
+((-2344 (*1 *2 *2) (|partial| -12 (-4 *3 (-365)) (-4 *3 (-172)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-1530 (*1 *2 *3 *3) (-12 (-4 *3 (-308)) (-4 *3 (-172)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-688 *3 *4 *5 *6)) (-4 *6 (-687 *3 *4 *5)))) (-1495 (*1 *2 *2) (-12 (-4 *3 (-308)) (-4 *3 (-172)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-2643 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4))) (-5 *1 (-688 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-3460 (*1 *2 *2) (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-1838 (*1 *2 *2) (-12 (-4 *3 (-558)) (-4 *3 (-172)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-3586 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-644 *6)) (-5 *1 (-688 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-2736 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-688 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-4157 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-688 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-2126 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-566)) (-4 *3 (-172)) (-4 *5 (-375 *3)) (-4 *6 (-375 *3)) (-5 *1 (-688 *3 *5 *6 *2)) (-4 *2 (-687 *3 *5 *6)))) (-2194 (*1 *2 *2 *3 *4 *4) (-12 (-5 *4 (-566)) (-4 *3 (-172)) (-4 *5 (-375 *3)) (-4 *6 (-375 *3)) (-5 *1 (-688 *3 *5 *6 *2)) (-4 *2 (-687 *3 *5 *6)))) (-2483 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-566)) (-4 *4 (-172)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *1 (-688 *4 *5 *6 *2)) (-4 *2 (-687 *4 *5 *6)))) (-1647 (*1 *2 *3) (-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-172)) (-5 *1 (-688 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5)))) (-1896 (*1 *2 *3) (-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-172)) (-5 *1 (-688 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5)))))
+(-10 -7 (-15 -1896 (|#1| |#4|)) (-15 -1647 (|#1| |#4|)) (-15 -2483 (|#4| |#4| (-566) (-566))) (-15 -2194 (|#4| |#4| |#1| (-566) (-566))) (-15 -2126 (|#4| |#4| |#1| (-566) (-566))) (IF (|has| |#1| (-558)) (PROGN (-15 -4157 ((-771) |#4|)) (-15 -2736 ((-771) |#4|)) (-15 -3586 ((-644 |#3|) |#4|)) (-15 -1838 (|#4| |#4|)) (-15 -3460 ((-3 |#4| "failed") |#4|)) (-15 -2643 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-308)) (PROGN (-15 -1495 (|#4| |#4|)) (-15 -1530 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -2344 ((-3 |#4| "failed") |#4|)) |%noBranch|))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2181 (($ (-771) (-771)) 64)) (-3810 (($ $ $) NIL)) (-4078 (($ (-1264 |#1|)) NIL) (($ $) NIL)) (-3194 (((-112) $) NIL)) (-2948 (($ $ (-566) (-566)) 22)) (-1605 (($ $ (-566) (-566)) NIL)) (-1739 (($ $ (-566) (-566) (-566) (-566)) NIL)) (-1300 (($ $) NIL)) (-1597 (((-112) $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-2236 (($ $ (-566) (-566) $) NIL)) (-3916 ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566)) $) NIL)) (-2890 (($ $ (-566) (-1264 |#1|)) NIL)) (-4293 (($ $ (-566) (-1264 |#1|)) NIL)) (-2453 (($ (-771) |#1|) 37)) (-3877 (($) NIL T CONST)) (-1495 (($ $) 46 (|has| |#1| (-308)))) (-4104 (((-1264 |#1|) $ (-566)) NIL)) (-4157 (((-771) $) 48 (|has| |#1| (-558)))) (-3128 ((|#1| $ (-566) (-566) |#1|) 69)) (-3059 ((|#1| $ (-566) (-566)) NIL)) (-3799 (((-644 |#1|) $) NIL)) (-2736 (((-771) $) 50 (|has| |#1| (-558)))) (-3586 (((-644 (-1264 |#1|)) $) 53 (|has| |#1| (-558)))) (-4301 (((-771) $) 32)) (-4278 (($ (-771) (-771) |#1|) 28)) (-4313 (((-771) $) 33)) (-3501 (((-112) $ (-771)) NIL)) (-1647 ((|#1| $) 44 (|has| |#1| (-6 (-4416 "*"))))) (-2615 (((-566) $) 10)) (-1966 (((-566) $) 11)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1653 (((-566) $) 14)) (-3807 (((-566) $) 65)) (-1883 (($ (-644 (-644 |#1|))) NIL)) (-3117 (($ (-1 |#1| |#1|) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2947 (((-644 (-644 |#1|)) $) 76)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2344 (((-3 $ "failed") $) 60 (|has| |#1| (-365)))) (-3319 (($ $ $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3750 (($ $ |#1|) NIL)) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-566) (-566)) NIL) ((|#1| $ (-566) (-566) |#1|) NIL) (($ $ (-644 (-566)) (-644 (-566))) NIL)) (-1664 (($ (-644 |#1|)) NIL) (($ (-644 $)) NIL) (($ (-1264 |#1|)) 70)) (-3478 (((-112) $) NIL)) (-1896 ((|#1| $) 42 (|has| |#1| (-6 (-4416 "*"))))) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-3204 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-1621 (((-1264 |#1|) $ (-566)) NIL)) (-3780 (($ (-1264 |#1|)) NIL) (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3359 (((-112) $) NIL)) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $ $) NIL) (($ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-771)) 38) (($ $ (-566)) 62 (|has| |#1| (-365)))) (* (($ $ $) 24) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-566) $) NIL) (((-1264 |#1|) $ (-1264 |#1|)) NIL) (((-1264 |#1|) (-1264 |#1|) $) NIL)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-689 |#1|) (-13 (-687 |#1| (-1264 |#1|) (-1264 |#1|)) (-10 -8 (-15 -1664 ($ (-1264 |#1|))) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -2344 ((-3 $ "failed") $)) |%noBranch|))) (-1049)) (T -689))
+((-2344 (*1 *1 *1) (|partial| -12 (-5 *1 (-689 *2)) (-4 *2 (-365)) (-4 *2 (-1049)))) (-1664 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1049)) (-5 *1 (-689 *3)))))
+(-13 (-687 |#1| (-1264 |#1|) (-1264 |#1|)) (-10 -8 (-15 -1664 ($ (-1264 |#1|))) (IF (|has| |#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -2344 ((-3 $ "failed") $)) |%noBranch|)))
+((-2264 (((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|)) 37)) (-3665 (((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|) 34)) (-3451 (((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-771)) 43)) (-2315 (((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|)) 27)) (-1661 (((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|)) 31) (((-689 |#1|) (-689 |#1|) (-689 |#1|)) 29)) (-2934 (((-689 |#1|) (-689 |#1|) |#1| (-689 |#1|)) 33)) (-2569 (((-689 |#1|) (-689 |#1|) (-689 |#1|)) 25)) (** (((-689 |#1|) (-689 |#1|) (-771)) 46)))
+(((-690 |#1|) (-10 -7 (-15 -2569 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -2315 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1661 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1661 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -2934 ((-689 |#1|) (-689 |#1|) |#1| (-689 |#1|))) (-15 -3665 ((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|)) (-15 -2264 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -3451 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-771))) (-15 ** ((-689 |#1|) (-689 |#1|) (-771)))) (-1049)) (T -690))
+((** (*1 *2 *2 *3) (-12 (-5 *2 (-689 *4)) (-5 *3 (-771)) (-4 *4 (-1049)) (-5 *1 (-690 *4)))) (-3451 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-689 *4)) (-5 *3 (-771)) (-4 *4 (-1049)) (-5 *1 (-690 *4)))) (-2264 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-3665 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-2934 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-1661 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-1661 (*1 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-2315 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))) (-2569 (*1 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
+(-10 -7 (-15 -2569 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -2315 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1661 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1661 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -2934 ((-689 |#1|) (-689 |#1|) |#1| (-689 |#1|))) (-15 -3665 ((-689 |#1|) (-689 |#1|) (-689 |#1|) |#1|)) (-15 -2264 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -3451 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-689 |#1|) (-771))) (-15 ** ((-689 |#1|) (-689 |#1|) (-771))))
+((-3066 (((-3 |#1| "failed") $) 18)) (-1867 ((|#1| $) NIL)) (-3435 (($) 7 T CONST)) (-3224 (($ |#1|) 8)) (-3780 (($ |#1|) 16) (((-862) $) 23)) (-2482 (((-112) $ (|[\|\|]| |#1|)) 14) (((-112) $ (|[\|\|]| -3435)) 11)) (-3975 ((|#1| $) 15)))
+(((-691 |#1|) (-13 (-1259) (-1038 |#1|) (-613 (-862)) (-10 -8 (-15 -3224 ($ |#1|)) (-15 -2482 ((-112) $ (|[\|\|]| |#1|))) (-15 -2482 ((-112) $ (|[\|\|]| -3435))) (-15 -3975 (|#1| $)) (-15 -3435 ($) -2460))) (-613 (-862))) (T -691))
+((-3224 (*1 *1 *2) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862))))) (-2482 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-613 (-862))) (-5 *2 (-112)) (-5 *1 (-691 *4)))) (-2482 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3435)) (-5 *2 (-112)) (-5 *1 (-691 *4)) (-4 *4 (-613 (-862))))) (-3975 (*1 *2 *1) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862))))) (-3435 (*1 *1) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862))))))
+(-13 (-1259) (-1038 |#1|) (-613 (-862)) (-10 -8 (-15 -3224 ($ |#1|)) (-15 -2482 ((-112) $ (|[\|\|]| |#1|))) (-15 -2482 ((-112) $ (|[\|\|]| -3435))) (-15 -3975 (|#1| $)) (-15 -3435 ($) -2460)))
+((-3905 ((|#2| |#2| |#4|) 33)) (-2887 (((-689 |#2|) |#3| |#4|) 39)) (-2185 (((-689 |#2|) |#2| |#4|) 38)) (-3169 (((-1264 |#2|) |#2| |#4|) 16)) (-1874 ((|#2| |#3| |#4|) 32)) (-2786 (((-689 |#2|) |#3| |#4| (-771) (-771)) 50)) (-2841 (((-689 |#2|) |#2| |#4| (-771)) 49)))
+(((-692 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3169 ((-1264 |#2|) |#2| |#4|)) (-15 -1874 (|#2| |#3| |#4|)) (-15 -3905 (|#2| |#2| |#4|)) (-15 -2185 ((-689 |#2|) |#2| |#4|)) (-15 -2841 ((-689 |#2|) |#2| |#4| (-771))) (-15 -2887 ((-689 |#2|) |#3| |#4|)) (-15 -2786 ((-689 |#2|) |#3| |#4| (-771) (-771)))) (-1099) (-900 |#1|) (-375 |#2|) (-13 (-375 |#1|) (-10 -7 (-6 -4414)))) (T -692))
+((-2786 (*1 *2 *3 *4 *5 *5) (-12 (-5 *5 (-771)) (-4 *6 (-1099)) (-4 *7 (-900 *6)) (-5 *2 (-689 *7)) (-5 *1 (-692 *6 *7 *3 *4)) (-4 *3 (-375 *7)) (-4 *4 (-13 (-375 *6) (-10 -7 (-6 -4414)))))) (-2887 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-4 *6 (-900 *5)) (-5 *2 (-689 *6)) (-5 *1 (-692 *5 *6 *3 *4)) (-4 *3 (-375 *6)) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4414)))))) (-2841 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-771)) (-4 *6 (-1099)) (-4 *3 (-900 *6)) (-5 *2 (-689 *3)) (-5 *1 (-692 *6 *3 *7 *4)) (-4 *7 (-375 *3)) (-4 *4 (-13 (-375 *6) (-10 -7 (-6 -4414)))))) (-2185 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-4 *3 (-900 *5)) (-5 *2 (-689 *3)) (-5 *1 (-692 *5 *3 *6 *4)) (-4 *6 (-375 *3)) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4414)))))) (-3905 (*1 *2 *2 *3) (-12 (-4 *4 (-1099)) (-4 *2 (-900 *4)) (-5 *1 (-692 *4 *2 *5 *3)) (-4 *5 (-375 *2)) (-4 *3 (-13 (-375 *4) (-10 -7 (-6 -4414)))))) (-1874 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-4 *2 (-900 *5)) (-5 *1 (-692 *5 *2 *3 *4)) (-4 *3 (-375 *2)) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4414)))))) (-3169 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-4 *3 (-900 *5)) (-5 *2 (-1264 *3)) (-5 *1 (-692 *5 *3 *6 *4)) (-4 *6 (-375 *3)) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4414)))))))
+(-10 -7 (-15 -3169 ((-1264 |#2|) |#2| |#4|)) (-15 -1874 (|#2| |#3| |#4|)) (-15 -3905 (|#2| |#2| |#4|)) (-15 -2185 ((-689 |#2|) |#2| |#4|)) (-15 -2841 ((-689 |#2|) |#2| |#4| (-771))) (-15 -2887 ((-689 |#2|) |#3| |#4|)) (-15 -2786 ((-689 |#2|) |#3| |#4| (-771) (-771))))
+((-2110 (((-2 (|:| |num| (-689 |#1|)) (|:| |den| |#1|)) (-689 |#2|)) 20)) (-3981 ((|#1| (-689 |#2|)) 9)) (-3812 (((-689 |#1|) (-689 |#2|)) 18)))
+(((-693 |#1| |#2|) (-10 -7 (-15 -3981 (|#1| (-689 |#2|))) (-15 -3812 ((-689 |#1|) (-689 |#2|))) (-15 -2110 ((-2 (|:| |num| (-689 |#1|)) (|:| |den| |#1|)) (-689 |#2|)))) (-558) (-992 |#1|)) (T -693))
+((-2110 (*1 *2 *3) (-12 (-5 *3 (-689 *5)) (-4 *5 (-992 *4)) (-4 *4 (-558)) (-5 *2 (-2 (|:| |num| (-689 *4)) (|:| |den| *4))) (-5 *1 (-693 *4 *5)))) (-3812 (*1 *2 *3) (-12 (-5 *3 (-689 *5)) (-4 *5 (-992 *4)) (-4 *4 (-558)) (-5 *2 (-689 *4)) (-5 *1 (-693 *4 *5)))) (-3981 (*1 *2 *3) (-12 (-5 *3 (-689 *4)) (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-693 *2 *4)))))
+(-10 -7 (-15 -3981 (|#1| (-689 |#2|))) (-15 -3812 ((-689 |#1|) (-689 |#2|))) (-15 -2110 ((-2 (|:| |num| (-689 |#1|)) (|:| |den| |#1|)) (-689 |#2|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-2965 (((-689 (-699))) NIL) (((-689 (-699)) (-1264 $)) NIL)) (-3834 (((-699) $) NIL)) (-2865 (($ $) NIL (|has| (-699) (-1199)))) (-3939 (($ $) NIL (|has| (-699) (-1199)))) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-699) (-351)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-699) (-308)) (|has| (-699) (-909))))) (-2179 (($ $) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| (-699) (-909))) (|has| (-699) (-365))))) (-3271 (((-420 $) $) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| (-699) (-909))) (|has| (-699) (-365))))) (-2484 (($ $) NIL (-12 (|has| (-699) (-1002)) (|has| (-699) (-1199))))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-699) (-308)) (|has| (-699) (-909))))) (-2738 (((-112) $ $) NIL (|has| (-699) (-308)))) (-4070 (((-771)) NIL (|has| (-699) (-370)))) (-2843 (($ $) NIL (|has| (-699) (-1199)))) (-3915 (($ $) NIL (|has| (-699) (-1199)))) (-2888 (($ $) NIL (|has| (-699) (-1199)))) (-3964 (($ $) NIL (|has| (-699) (-1199)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-699) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-699) (-1038 (-409 (-566)))))) (-1867 (((-566) $) NIL) (((-699) $) NIL) (((-409 (-566)) $) NIL (|has| (-699) (-1038 (-409 (-566)))))) (-2613 (($ (-1264 (-699))) NIL) (($ (-1264 (-699)) (-1264 $)) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-699) (-351)))) (-2949 (($ $ $) NIL (|has| (-699) (-308)))) (-2205 (((-689 (-699)) $) NIL) (((-689 (-699)) $ (-1264 $)) NIL)) (-2210 (((-689 (-699)) (-689 $)) NIL) (((-2 (|:| -4193 (-689 (-699))) (|:| |vec| (-1264 (-699)))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-699) (-639 (-566)))) (((-689 (-566)) (-689 $)) NIL (|has| (-699) (-639 (-566))))) (-1580 (((-3 $ "failed") (-409 (-1171 (-699)))) NIL (|has| (-699) (-365))) (($ (-1171 (-699))) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2495 (((-699) $) 29)) (-4045 (((-3 (-409 (-566)) "failed") $) NIL (|has| (-699) (-547)))) (-1356 (((-112) $) NIL (|has| (-699) (-547)))) (-2269 (((-409 (-566)) $) NIL (|has| (-699) (-547)))) (-4157 (((-921)) NIL)) (-1618 (($) NIL (|has| (-699) (-370)))) (-2960 (($ $ $) NIL (|has| (-699) (-308)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| (-699) (-308)))) (-1676 (($) NIL (|has| (-699) (-351)))) (-3698 (((-112) $) NIL (|has| (-699) (-351)))) (-2901 (($ $) NIL (|has| (-699) (-351))) (($ $ (-771)) NIL (|has| (-699) (-351)))) (-1784 (((-112) $) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| (-699) (-909))) (|has| (-699) (-365))))) (-2796 (((-2 (|:| |r| (-699)) (|:| |phi| (-699))) $) NIL (-12 (|has| (-699) (-1059)) (|has| (-699) (-1199))))) (-3120 (($) NIL (|has| (-699) (-1199)))) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-699) (-886 (-381)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-699) (-886 (-566))))) (-3227 (((-833 (-921)) $) NIL (|has| (-699) (-351))) (((-921) $) NIL (|has| (-699) (-351)))) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL (-12 (|has| (-699) (-1002)) (|has| (-699) (-1199))))) (-2719 (((-699) $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| (-699) (-351)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-699) (-308)))) (-2750 (((-1171 (-699)) $) NIL (|has| (-699) (-365)))) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-3152 (($ (-1 (-699) (-699)) $) NIL)) (-1299 (((-921) $) NIL (|has| (-699) (-370)))) (-3671 (($ $) NIL (|has| (-699) (-1199)))) (-1567 (((-1171 (-699)) $) NIL)) (-2197 (($ (-644 $)) NIL (|has| (-699) (-308))) (($ $ $) NIL (|has| (-699) (-308)))) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| (-699) (-365)))) (-3625 (($) NIL (|has| (-699) (-351)) CONST)) (-2208 (($ (-921)) NIL (|has| (-699) (-370)))) (-2762 (($) NIL)) (-2503 (((-699) $) 31)) (-4056 (((-1119) $) NIL)) (-4152 (($) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| (-699) (-308)))) (-2235 (($ (-644 $)) NIL (|has| (-699) (-308))) (($ $ $) NIL (|has| (-699) (-308)))) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| (-699) (-351)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-699) (-308)) (|has| (-699) (-909))))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-699) (-308)) (|has| (-699) (-909))))) (-2473 (((-420 $) $) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| (-699) (-909))) (|has| (-699) (-365))))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-699) (-308))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| (-699) (-308)))) (-2997 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-699)) NIL (|has| (-699) (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-699) (-308)))) (-4337 (($ $) NIL (|has| (-699) (-1199)))) (-2095 (($ $ (-1175) (-699)) NIL (|has| (-699) (-516 (-1175) (-699)))) (($ $ (-644 (-1175)) (-644 (-699))) NIL (|has| (-699) (-516 (-1175) (-699)))) (($ $ (-644 (-295 (-699)))) NIL (|has| (-699) (-310 (-699)))) (($ $ (-295 (-699))) NIL (|has| (-699) (-310 (-699)))) (($ $ (-699) (-699)) NIL (|has| (-699) (-310 (-699)))) (($ $ (-644 (-699)) (-644 (-699))) NIL (|has| (-699) (-310 (-699))))) (-3470 (((-771) $) NIL (|has| (-699) (-308)))) (-4393 (($ $ (-699)) NIL (|has| (-699) (-287 (-699) (-699))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| (-699) (-308)))) (-3309 (((-699)) NIL) (((-699) (-1264 $)) NIL)) (-2347 (((-3 (-771) "failed") $ $) NIL (|has| (-699) (-351))) (((-771) $) NIL (|has| (-699) (-351)))) (-2578 (($ $ (-1 (-699) (-699))) NIL) (($ $ (-1 (-699) (-699)) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-1175)) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-771)) NIL (|has| (-699) (-233))) (($ $) NIL (|has| (-699) (-233)))) (-4359 (((-689 (-699)) (-1264 $) (-1 (-699) (-699))) NIL (|has| (-699) (-365)))) (-3601 (((-1171 (-699))) NIL)) (-2897 (($ $) NIL (|has| (-699) (-1199)))) (-3974 (($ $) NIL (|has| (-699) (-1199)))) (-2507 (($) NIL (|has| (-699) (-351)))) (-2877 (($ $) NIL (|has| (-699) (-1199)))) (-3951 (($ $) NIL (|has| (-699) (-1199)))) (-2853 (($ $) NIL (|has| (-699) (-1199)))) (-3927 (($ $) NIL (|has| (-699) (-1199)))) (-2543 (((-689 (-699)) (-1264 $)) NIL) (((-1264 (-699)) $) NIL) (((-689 (-699)) (-1264 $) (-1264 $)) NIL) (((-1264 (-699)) $ (-1264 $)) NIL)) (-3204 (((-538) $) NIL (|has| (-699) (-614 (-538)))) (((-169 (-225)) $) NIL (|has| (-699) (-1022))) (((-169 (-381)) $) NIL (|has| (-699) (-1022))) (((-892 (-381)) $) NIL (|has| (-699) (-614 (-892 (-381))))) (((-892 (-566)) $) NIL (|has| (-699) (-614 (-892 (-566))))) (($ (-1171 (-699))) NIL) (((-1171 (-699)) $) NIL) (($ (-1264 (-699))) NIL) (((-1264 (-699)) $) NIL)) (-3850 (($ $) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| $ (-145)) (|has| (-699) (-909))) (|has| (-699) (-351))))) (-3661 (($ (-699) (-699)) 12)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-566)) NIL) (($ (-699)) NIL) (($ (-169 (-381))) 13) (($ (-169 (-566))) 19) (($ (-169 (-699))) 28) (($ (-169 (-701))) 25) (((-169 (-381)) $) 33) (($ (-409 (-566))) NIL (-2805 (|has| (-699) (-1038 (-409 (-566)))) (|has| (-699) (-365))))) (-3226 (($ $) NIL (|has| (-699) (-351))) (((-3 $ "failed") $) NIL (-2805 (-12 (|has| (-699) (-308)) (|has| $ (-145)) (|has| (-699) (-909))) (|has| (-699) (-145))))) (-4370 (((-1171 (-699)) $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) NIL)) (-2931 (($ $) NIL (|has| (-699) (-1199)))) (-4009 (($ $) NIL (|has| (-699) (-1199)))) (-2278 (((-112) $ $) NIL)) (-2907 (($ $) NIL (|has| (-699) (-1199)))) (-3986 (($ $) NIL (|has| (-699) (-1199)))) (-2954 (($ $) NIL (|has| (-699) (-1199)))) (-4033 (($ $) NIL (|has| (-699) (-1199)))) (-2224 (((-699) $) NIL (|has| (-699) (-1199)))) (-3181 (($ $) NIL (|has| (-699) (-1199)))) (-2834 (($ $) NIL (|has| (-699) (-1199)))) (-2943 (($ $) NIL (|has| (-699) (-1199)))) (-4021 (($ $) NIL (|has| (-699) (-1199)))) (-2920 (($ $) NIL (|has| (-699) (-1199)))) (-3997 (($ $) NIL (|has| (-699) (-1199)))) (-3333 (($ $) NIL (|has| (-699) (-1059)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-1 (-699) (-699))) NIL) (($ $ (-1 (-699) (-699)) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-1175)) NIL (|has| (-699) (-900 (-1175)))) (($ $ (-771)) NIL (|has| (-699) (-233))) (($ $) NIL (|has| (-699) (-233)))) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL (|has| (-699) (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ $) NIL (|has| (-699) (-1199))) (($ $ (-409 (-566))) NIL (-12 (|has| (-699) (-1002)) (|has| (-699) (-1199)))) (($ $ (-566)) NIL (|has| (-699) (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ (-699) $) NIL) (($ $ (-699)) NIL) (($ (-409 (-566)) $) NIL (|has| (-699) (-365))) (($ $ (-409 (-566))) NIL (|has| (-699) (-365)))))
+(((-694) (-13 (-389) (-166 (-699)) (-10 -8 (-15 -3780 ($ (-169 (-381)))) (-15 -3780 ($ (-169 (-566)))) (-15 -3780 ($ (-169 (-699)))) (-15 -3780 ($ (-169 (-701)))) (-15 -3780 ((-169 (-381)) $))))) (T -694))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-169 (-381))) (-5 *1 (-694)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-169 (-566))) (-5 *1 (-694)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-169 (-699))) (-5 *1 (-694)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-169 (-701))) (-5 *1 (-694)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-169 (-381))) (-5 *1 (-694)))))
+(-13 (-389) (-166 (-699)) (-10 -8 (-15 -3780 ($ (-169 (-381)))) (-15 -3780 ($ (-169 (-566)))) (-15 -3780 ($ (-169 (-699)))) (-15 -3780 ($ (-169 (-701)))) (-15 -3780 ((-169 (-381)) $))))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) 8)) (-2556 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-4060 (($ $) 63)) (-4133 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1450 (($ |#1| $) 48 (|has| $ (-6 -4414))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4414)))) (-2661 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4414)))) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3765 ((|#1| $) 40)) (-2903 (($ |#1| $) 41) (($ |#1| $ (-771)) 64)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-3423 (((-644 (-2 (|:| -2849 |#1|) (|:| -4067 (-771)))) $) 62)) (-3551 (($) 50) (($ (-644 |#1|)) 49)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 51)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) 43)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-695 |#1|) (-140) (-1099)) (T -695))
-((-4265 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-695 *2)) (-4 *2 (-1099)))) (-4130 (*1 *1 *1) (-12 (-4 *1 (-695 *2)) (-4 *2 (-1099)))) (-2109 (*1 *2 *1) (-12 (-4 *1 (-695 *3)) (-4 *3 (-1099)) (-5 *2 (-644 (-2 (|:| -2818 *3) (|:| -4044 (-771))))))))
-(-13 (-235 |t#1|) (-10 -8 (-15 -4265 ($ |t#1| $ (-771))) (-15 -4130 ($ $)) (-15 -2109 ((-644 (-2 (|:| -2818 |t#1|) (|:| -4044 (-771)))) $))))
+((-2903 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-695 *2)) (-4 *2 (-1099)))) (-4060 (*1 *1 *1) (-12 (-4 *1 (-695 *2)) (-4 *2 (-1099)))) (-3423 (*1 *2 *1) (-12 (-4 *1 (-695 *3)) (-4 *3 (-1099)) (-5 *2 (-644 (-2 (|:| -2849 *3) (|:| -4067 (-771))))))))
+(-13 (-235 |t#1|) (-10 -8 (-15 -2903 ($ |t#1| $ (-771))) (-15 -4060 ($ $)) (-15 -3423 ((-644 (-2 (|:| -2849 |t#1|) (|:| -4067 (-771)))) $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-235 |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-1783 (((-644 |#1|) (-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566)))) (-566)) 66)) (-2220 ((|#1| |#1| (-566)) 62)) (-2222 ((|#1| |#1| |#1| (-566)) 46)) (-2391 (((-644 |#1|) |#1| (-566)) 49)) (-2810 ((|#1| |#1| (-566) |#1| (-566)) 40)) (-3590 (((-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566)))) |#1| (-566)) 61)))
-(((-696 |#1|) (-10 -7 (-15 -2222 (|#1| |#1| |#1| (-566))) (-15 -2220 (|#1| |#1| (-566))) (-15 -2391 ((-644 |#1|) |#1| (-566))) (-15 -3590 ((-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566)))) |#1| (-566))) (-15 -1783 ((-644 |#1|) (-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566)))) (-566))) (-15 -2810 (|#1| |#1| (-566) |#1| (-566)))) (-1240 (-566))) (T -696))
-((-2810 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3)))) (-1783 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-2 (|:| -2391 *5) (|:| -3992 (-566))))) (-5 *4 (-566)) (-4 *5 (-1240 *4)) (-5 *2 (-644 *5)) (-5 *1 (-696 *5)))) (-3590 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-5 *2 (-644 (-2 (|:| -2391 *3) (|:| -3992 *4)))) (-5 *1 (-696 *3)) (-4 *3 (-1240 *4)))) (-2391 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-5 *2 (-644 *3)) (-5 *1 (-696 *3)) (-4 *3 (-1240 *4)))) (-2220 (*1 *2 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3)))) (-2222 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3)))))
-(-10 -7 (-15 -2222 (|#1| |#1| |#1| (-566))) (-15 -2220 (|#1| |#1| (-566))) (-15 -2391 ((-644 |#1|) |#1| (-566))) (-15 -3590 ((-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566)))) |#1| (-566))) (-15 -1783 ((-644 |#1|) (-644 (-2 (|:| -2391 |#1|) (|:| -3992 (-566)))) (-566))) (-15 -2810 (|#1| |#1| (-566) |#1| (-566))))
-((-1998 (((-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225))) 17)) (-3630 (((-1132 (-225)) (-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264))) 56) (((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264))) 58) (((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264))) 60)) (-3369 (((-1132 (-225)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-644 (-264))) NIL)) (-2312 (((-1132 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264))) 61)))
-(((-697) (-10 -7 (-15 -3630 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -3630 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -3630 ((-1132 (-225)) (-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -2312 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -3369 ((-1132 (-225)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -1998 ((-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))) (T -697))
-((-1998 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1 (-225) (-225) (-225) (-225))) (-5 *2 (-1 (-943 (-225)) (-225) (-225))) (-5 *1 (-697)))) (-3369 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-697)))) (-2312 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined")) (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-697)))) (-3630 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-225))) (-5 *5 (-644 (-264))) (-5 *1 (-697)))) (-3630 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-225))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-697)))) (-3630 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined")) (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-697)))))
-(-10 -7 (-15 -3630 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -3630 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -3630 ((-1132 (-225)) (-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -2312 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -3369 ((-1132 (-225)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -1998 ((-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))
-((-2391 (((-420 (-1171 |#4|)) (-1171 |#4|)) 86) (((-420 |#4|) |#4|) 270)))
-(((-698 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2391 ((-420 |#4|) |#4|)) (-15 -2391 ((-420 (-1171 |#4|)) (-1171 |#4|)))) (-850) (-793) (-351) (-949 |#3| |#2| |#1|)) (T -698))
-((-2391 (*1 *2 *3) (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-351)) (-4 *7 (-949 *6 *5 *4)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-698 *4 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-2391 (*1 *2 *3) (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-351)) (-5 *2 (-420 *3)) (-5 *1 (-698 *4 *5 *6 *3)) (-4 *3 (-949 *6 *5 *4)))))
-(-10 -7 (-15 -2391 ((-420 |#4|) |#4|)) (-15 -2391 ((-420 (-1171 |#4|)) (-1171 |#4|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 100)) (-2452 (((-566) $) 34)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-1881 (($ $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-2402 (($ $) NIL)) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL)) (-2342 (($) NIL T CONST)) (-4380 (($ $) NIL)) (-2977 (((-3 (-566) "failed") $) 89) (((-3 (-409 (-566)) "failed") $) 28) (((-3 (-381) "failed") $) 86)) (-1756 (((-566) $) 91) (((-409 (-566)) $) 83) (((-381) $) 84)) (-2926 (($ $ $) 112)) (-1579 (((-3 $ "failed") $) 103)) (-2938 (($ $ $) 111)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-3524 (((-921)) 93) (((-921) (-921)) 92)) (-1684 (((-112) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL)) (-2716 (((-566) $) NIL)) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL)) (-1559 (($ $) NIL)) (-1578 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3459 (((-566) (-566)) 97) (((-566)) 98)) (-1439 (($ $ $) NIL) (($) NIL (-12 (-2426 (|has| $ (-6 -4400))) (-2426 (|has| $ (-6 -4408)))))) (-1837 (((-566) (-566)) 95) (((-566)) 96)) (-3059 (($ $ $) NIL) (($) NIL (-12 (-2426 (|has| $ (-6 -4400))) (-2426 (|has| $ (-6 -4408)))))) (-1728 (((-566) $) 17)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 107)) (-2524 (((-921) (-566)) NIL (|has| $ (-6 -4408)))) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL)) (-4317 (($ $) NIL)) (-2965 (($ (-566) (-566)) NIL) (($ (-566) (-566) (-921)) NIL)) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) 108)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3250 (((-566) $) 24)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 110)) (-3159 (((-921)) NIL) (((-921) (-921)) NIL (|has| $ (-6 -4408)))) (-1870 (((-921) (-566)) NIL (|has| $ (-6 -4408)))) (-3134 (((-381) $) NIL) (((-225) $) NIL) (((-892 (-381)) $) NIL)) (-2512 (((-862) $) 68) (($ (-566)) 79) (($ $) NIL) (($ (-409 (-566))) 82) (($ (-566)) 79) (($ (-409 (-566))) 82) (($ (-381)) 76) (((-381) $) 66) (($ (-701)) 71)) (-3795 (((-771)) 122 T CONST)) (-1425 (($ (-566) (-566) (-921)) 59)) (-1604 (($ $) NIL)) (-3082 (((-921)) NIL) (((-921) (-921)) NIL (|has| $ (-6 -4408)))) (-3122 (((-112) $ $) NIL)) (-3306 (((-921)) 46) (((-921) (-921)) 94)) (-1634 (((-112) $ $) NIL)) (-1346 (($ $) NIL)) (-2485 (($) 37 T CONST)) (-2495 (($) 18 T CONST)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 99)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 121)) (-3061 (($ $ $) 81)) (-3047 (($ $) 118) (($ $ $) 119)) (-3034 (($ $ $) 117)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL) (($ $ (-409 (-566))) 106)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 113) (($ $ $) 104) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
-(((-699) (-13 (-406) (-389) (-365) (-1038 (-381)) (-1038 (-409 (-566))) (-147) (-10 -8 (-15 -3524 ((-921) (-921))) (-15 -3524 ((-921))) (-15 -3306 ((-921) (-921))) (-15 -1837 ((-566) (-566))) (-15 -1837 ((-566))) (-15 -3459 ((-566) (-566))) (-15 -3459 ((-566))) (-15 -2512 ((-381) $)) (-15 -2512 ($ (-701))) (-15 -1728 ((-566) $)) (-15 -3250 ((-566) $)) (-15 -1425 ($ (-566) (-566) (-921)))))) (T -699))
-((-3250 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-1728 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-3524 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699)))) (-3524 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699)))) (-3306 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699)))) (-1837 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-1837 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-3459 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-3459 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-381)) (-5 *1 (-699)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-701)) (-5 *1 (-699)))) (-1425 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-921)) (-5 *1 (-699)))))
-(-13 (-406) (-389) (-365) (-1038 (-381)) (-1038 (-409 (-566))) (-147) (-10 -8 (-15 -3524 ((-921) (-921))) (-15 -3524 ((-921))) (-15 -3306 ((-921) (-921))) (-15 -1837 ((-566) (-566))) (-15 -1837 ((-566))) (-15 -3459 ((-566) (-566))) (-15 -3459 ((-566))) (-15 -2512 ((-381) $)) (-15 -2512 ($ (-701))) (-15 -1728 ((-566) $)) (-15 -3250 ((-566) $)) (-15 -1425 ($ (-566) (-566) (-921)))))
-((-2262 (((-689 |#1|) (-689 |#1|) |#1| |#1|) 88)) (-3071 (((-689 |#1|) (-689 |#1|) |#1|) 67)) (-2960 (((-689 |#1|) (-689 |#1|) |#1|) 89)) (-3716 (((-689 |#1|) (-689 |#1|)) 68)) (-3732 (((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|) 87)))
-(((-700 |#1|) (-10 -7 (-15 -3716 ((-689 |#1|) (-689 |#1|))) (-15 -3071 ((-689 |#1|) (-689 |#1|) |#1|)) (-15 -2960 ((-689 |#1|) (-689 |#1|) |#1|)) (-15 -2262 ((-689 |#1|) (-689 |#1|) |#1| |#1|)) (-15 -3732 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|))) (-308)) (T -700))
-((-3732 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-700 *3)) (-4 *3 (-308)))) (-2262 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))) (-2960 (*1 *2 *2 *3) (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))) (-3071 (*1 *2 *2 *3) (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))) (-3716 (*1 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))))
-(-10 -7 (-15 -3716 ((-689 |#1|) (-689 |#1|))) (-15 -3071 ((-689 |#1|) (-689 |#1|) |#1|)) (-15 -2960 ((-689 |#1|) (-689 |#1|) |#1|)) (-15 -2262 ((-689 |#1|) (-689 |#1|) |#1| |#1|)) (-15 -3732 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-1657 (($ $ $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $ $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL)) (-3096 (($ $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) 31)) (-1756 (((-566) $) 29)) (-2926 (($ $ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3800 (((-3 (-409 (-566)) "failed") $) NIL)) (-3717 (((-112) $) NIL)) (-3370 (((-409 (-566)) $) NIL)) (-3335 (($ $) NIL) (($) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-3481 (($ $ $ $) NIL)) (-2570 (($ $ $) NIL)) (-1684 (((-112) $) NIL)) (-3870 (($ $ $) NIL)) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL)) (-2741 (((-112) $) NIL)) (-2884 (((-112) $) NIL)) (-2546 (((-3 $ "failed") $) NIL)) (-1578 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1839 (($ $ $ $) NIL)) (-1439 (($ $ $) NIL)) (-2979 (((-921) (-921)) 10) (((-921)) 9)) (-3059 (($ $ $) NIL)) (-1623 (($ $) NIL)) (-3822 (($ $) NIL)) (-2184 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-2518 (($ $ $) NIL)) (-2759 (($) NIL T CONST)) (-1863 (($ $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ (-644 $)) NIL) (($ $ $) NIL)) (-3280 (($ $) NIL)) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1693 (((-112) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $) NIL) (($ $ (-771)) NIL)) (-2538 (($ $) NIL)) (-3895 (($ $) NIL)) (-3134 (((-225) $) NIL) (((-381) $) NIL) (((-892 (-566)) $) NIL) (((-538) $) NIL) (((-566) $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) 28) (($ $) NIL) (($ (-566)) 28) (((-317 $) (-317 (-566))) 18)) (-3795 (((-771)) NIL T CONST)) (-1916 (((-112) $ $) NIL)) (-1523 (($ $ $) NIL)) (-3122 (((-112) $ $) NIL)) (-3306 (($) NIL)) (-1634 (((-112) $ $) NIL)) (-2275 (($ $ $ $) NIL)) (-1346 (($ $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $) NIL) (($ $ (-771)) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL)))
-(((-701) (-13 (-389) (-547) (-10 -8 (-15 -2979 ((-921) (-921))) (-15 -2979 ((-921))) (-15 -2512 ((-317 $) (-317 (-566))))))) (T -701))
-((-2979 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-701)))) (-2979 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-701)))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-317 (-566))) (-5 *2 (-317 (-701))) (-5 *1 (-701)))))
-(-13 (-389) (-547) (-10 -8 (-15 -2979 ((-921) (-921))) (-15 -2979 ((-921))) (-15 -2512 ((-317 $) (-317 (-566))))))
-((-1646 (((-1 |#4| |#2| |#3|) |#1| (-1175) (-1175)) 19)) (-3204 (((-1 |#4| |#2| |#3|) (-1175)) 12)))
-(((-702 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3204 ((-1 |#4| |#2| |#3|) (-1175))) (-15 -1646 ((-1 |#4| |#2| |#3|) |#1| (-1175) (-1175)))) (-614 (-538)) (-1214) (-1214) (-1214)) (T -702))
-((-1646 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1175)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-702 *3 *5 *6 *7)) (-4 *3 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)) (-4 *7 (-1214)))) (-3204 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-702 *4 *5 *6 *7)) (-4 *4 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)) (-4 *7 (-1214)))))
-(-10 -7 (-15 -3204 ((-1 |#4| |#2| |#3|) (-1175))) (-15 -1646 ((-1 |#4| |#2| |#3|) |#1| (-1175) (-1175))))
-((-2901 (((-1 (-225) (-225) (-225)) |#1| (-1175) (-1175)) 36) (((-1 (-225) (-225)) |#1| (-1175)) 41)))
-(((-703 |#1|) (-10 -7 (-15 -2901 ((-1 (-225) (-225)) |#1| (-1175))) (-15 -2901 ((-1 (-225) (-225) (-225)) |#1| (-1175) (-1175)))) (-614 (-538))) (T -703))
-((-2901 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1175)) (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-703 *3)) (-4 *3 (-614 (-538))))) (-2901 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-5 *2 (-1 (-225) (-225))) (-5 *1 (-703 *3)) (-4 *3 (-614 (-538))))))
-(-10 -7 (-15 -2901 ((-1 (-225) (-225)) |#1| (-1175))) (-15 -2901 ((-1 (-225) (-225) (-225)) |#1| (-1175) (-1175))))
-((-3277 (((-1175) |#1| (-1175) (-644 (-1175))) 10) (((-1175) |#1| (-1175) (-1175) (-1175)) 13) (((-1175) |#1| (-1175) (-1175)) 12) (((-1175) |#1| (-1175)) 11)))
-(((-704 |#1|) (-10 -7 (-15 -3277 ((-1175) |#1| (-1175))) (-15 -3277 ((-1175) |#1| (-1175) (-1175))) (-15 -3277 ((-1175) |#1| (-1175) (-1175) (-1175))) (-15 -3277 ((-1175) |#1| (-1175) (-644 (-1175))))) (-614 (-538))) (T -704))
-((-3277 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-644 (-1175))) (-5 *2 (-1175)) (-5 *1 (-704 *3)) (-4 *3 (-614 (-538))))) (-3277 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-704 *3)) (-4 *3 (-614 (-538))))) (-3277 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-704 *3)) (-4 *3 (-614 (-538))))) (-3277 (*1 *2 *3 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-704 *3)) (-4 *3 (-614 (-538))))))
-(-10 -7 (-15 -3277 ((-1175) |#1| (-1175))) (-15 -3277 ((-1175) |#1| (-1175) (-1175))) (-15 -3277 ((-1175) |#1| (-1175) (-1175) (-1175))) (-15 -3277 ((-1175) |#1| (-1175) (-644 (-1175)))))
-((-3796 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
-(((-705 |#1| |#2|) (-10 -7 (-15 -3796 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1214) (-1214)) (T -705))
-((-3796 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-705 *3 *4)) (-4 *3 (-1214)) (-4 *4 (-1214)))))
-(-10 -7 (-15 -3796 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
-((-2824 (((-1 |#3| |#2|) (-1175)) 11)) (-1646 (((-1 |#3| |#2|) |#1| (-1175)) 21)))
-(((-706 |#1| |#2| |#3|) (-10 -7 (-15 -2824 ((-1 |#3| |#2|) (-1175))) (-15 -1646 ((-1 |#3| |#2|) |#1| (-1175)))) (-614 (-538)) (-1214) (-1214)) (T -706))
-((-1646 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-5 *2 (-1 *6 *5)) (-5 *1 (-706 *3 *5 *6)) (-4 *3 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)))) (-2824 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1 *6 *5)) (-5 *1 (-706 *4 *5 *6)) (-4 *4 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)))))
-(-10 -7 (-15 -2824 ((-1 |#3| |#2|) (-1175))) (-15 -1646 ((-1 |#3| |#2|) |#1| (-1175))))
-((-1672 (((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#4|)) (-644 |#3|) (-644 |#4|) (-644 (-644 (-2 (|:| -1942 (-771)) (|:| |pcoef| |#4|)))) (-644 (-771)) (-1264 (-644 (-1171 |#3|))) |#3|) 95)) (-2971 (((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#3|)) (-644 |#3|) (-644 |#4|) (-644 (-771)) |#3|) 113)) (-2167 (((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 |#3|) (-644 (-771)) (-644 (-1171 |#4|)) (-1264 (-644 (-1171 |#3|))) |#3|) 47)))
-(((-707 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2167 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 |#3|) (-644 (-771)) (-644 (-1171 |#4|)) (-1264 (-644 (-1171 |#3|))) |#3|)) (-15 -2971 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#3|)) (-644 |#3|) (-644 |#4|) (-644 (-771)) |#3|)) (-15 -1672 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#4|)) (-644 |#3|) (-644 |#4|) (-644 (-644 (-2 (|:| -1942 (-771)) (|:| |pcoef| |#4|)))) (-644 (-771)) (-1264 (-644 (-1171 |#3|))) |#3|))) (-793) (-850) (-308) (-949 |#3| |#1| |#2|)) (T -707))
-((-1672 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-644 (-1171 *13))) (-5 *3 (-1171 *13)) (-5 *4 (-644 *12)) (-5 *5 (-644 *10)) (-5 *6 (-644 *13)) (-5 *7 (-644 (-644 (-2 (|:| -1942 (-771)) (|:| |pcoef| *13))))) (-5 *8 (-644 (-771))) (-5 *9 (-1264 (-644 (-1171 *10)))) (-4 *12 (-850)) (-4 *10 (-308)) (-4 *13 (-949 *10 *11 *12)) (-4 *11 (-793)) (-5 *1 (-707 *11 *12 *10 *13)))) (-2971 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-644 *11)) (-5 *5 (-644 (-1171 *9))) (-5 *6 (-644 *9)) (-5 *7 (-644 *12)) (-5 *8 (-644 (-771))) (-4 *11 (-850)) (-4 *9 (-308)) (-4 *12 (-949 *9 *10 *11)) (-4 *10 (-793)) (-5 *2 (-644 (-1171 *12))) (-5 *1 (-707 *10 *11 *9 *12)) (-5 *3 (-1171 *12)))) (-2167 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-644 (-1171 *11))) (-5 *3 (-1171 *11)) (-5 *4 (-644 *10)) (-5 *5 (-644 *8)) (-5 *6 (-644 (-771))) (-5 *7 (-1264 (-644 (-1171 *8)))) (-4 *10 (-850)) (-4 *8 (-308)) (-4 *11 (-949 *8 *9 *10)) (-4 *9 (-793)) (-5 *1 (-707 *9 *10 *8 *11)))))
-(-10 -7 (-15 -2167 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 |#3|) (-644 (-771)) (-644 (-1171 |#4|)) (-1264 (-644 (-1171 |#3|))) |#3|)) (-15 -2971 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#3|)) (-644 |#3|) (-644 |#4|) (-644 (-771)) |#3|)) (-15 -1672 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#4|)) (-644 |#3|) (-644 |#4|) (-644 (-644 (-2 (|:| -1942 (-771)) (|:| |pcoef| |#4|)))) (-644 (-771)) (-1264 (-644 (-1171 |#3|))) |#3|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-3577 (($ $) 48)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2519 (($ |#1| (-771)) 46)) (-3251 (((-771) $) 50)) (-3557 ((|#1| $) 49)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-3992 (((-771) $) 51)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 45 (|has| |#1| (-172)))) (-2022 ((|#1| $ (-771)) 47)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 53) (($ |#1| $) 52)))
+((-3166 (((-644 |#1|) (-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566)))) (-566)) 66)) (-2017 ((|#1| |#1| (-566)) 62)) (-2235 ((|#1| |#1| |#1| (-566)) 46)) (-2473 (((-644 |#1|) |#1| (-566)) 49)) (-2930 ((|#1| |#1| (-566) |#1| (-566)) 40)) (-2587 (((-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566)))) |#1| (-566)) 61)))
+(((-696 |#1|) (-10 -7 (-15 -2235 (|#1| |#1| |#1| (-566))) (-15 -2017 (|#1| |#1| (-566))) (-15 -2473 ((-644 |#1|) |#1| (-566))) (-15 -2587 ((-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566)))) |#1| (-566))) (-15 -3166 ((-644 |#1|) (-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566)))) (-566))) (-15 -2930 (|#1| |#1| (-566) |#1| (-566)))) (-1240 (-566))) (T -696))
+((-2930 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3)))) (-3166 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-2 (|:| -2473 *5) (|:| -2108 (-566))))) (-5 *4 (-566)) (-4 *5 (-1240 *4)) (-5 *2 (-644 *5)) (-5 *1 (-696 *5)))) (-2587 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-5 *2 (-644 (-2 (|:| -2473 *3) (|:| -2108 *4)))) (-5 *1 (-696 *3)) (-4 *3 (-1240 *4)))) (-2473 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-5 *2 (-644 *3)) (-5 *1 (-696 *3)) (-4 *3 (-1240 *4)))) (-2017 (*1 *2 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3)))) (-2235 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3)))))
+(-10 -7 (-15 -2235 (|#1| |#1| |#1| (-566))) (-15 -2017 (|#1| |#1| (-566))) (-15 -2473 ((-644 |#1|) |#1| (-566))) (-15 -2587 ((-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566)))) |#1| (-566))) (-15 -3166 ((-644 |#1|) (-644 (-2 (|:| -2473 |#1|) (|:| -2108 (-566)))) (-566))) (-15 -2930 (|#1| |#1| (-566) |#1| (-566))))
+((-1662 (((-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225))) 17)) (-2946 (((-1132 (-225)) (-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264))) 56) (((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264))) 58) (((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264))) 60)) (-2260 (((-1132 (-225)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-644 (-264))) NIL)) (-1717 (((-1132 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264))) 61)))
+(((-697) (-10 -7 (-15 -2946 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -2946 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -2946 ((-1132 (-225)) (-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -1717 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -2260 ((-1132 (-225)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -1662 ((-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))) (T -697))
+((-1662 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-1 (-225) (-225) (-225) (-225))) (-5 *2 (-1 (-943 (-225)) (-225) (-225))) (-5 *1 (-697)))) (-2260 (*1 *2 *3 *3 *3 *4 *5 *6) (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225))) (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-697)))) (-1717 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined")) (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-697)))) (-2946 (*1 *2 *2 *3 *4 *4 *5) (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-225))) (-5 *5 (-644 (-264))) (-5 *1 (-697)))) (-2946 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-225))) (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-697)))) (-2946 (*1 *2 *3 *3 *3 *4 *5 *5 *6) (-12 (-5 *3 (-1 (-225) (-225) (-225))) (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined")) (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-697)))))
+(-10 -7 (-15 -2946 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -2946 ((-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -2946 ((-1132 (-225)) (-1132 (-225)) (-1 (-943 (-225)) (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -1717 ((-1132 (-225)) (-1 (-225) (-225) (-225)) (-3 (-1 (-225) (-225) (-225) (-225)) "undefined") (-1093 (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -2260 ((-1132 (-225)) (-317 (-566)) (-317 (-566)) (-317 (-566)) (-1 (-225) (-225)) (-1093 (-225)) (-644 (-264)))) (-15 -1662 ((-1 (-943 (-225)) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225)) (-1 (-225) (-225) (-225) (-225)))))
+((-2473 (((-420 (-1171 |#4|)) (-1171 |#4|)) 86) (((-420 |#4|) |#4|) 270)))
+(((-698 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2473 ((-420 |#4|) |#4|)) (-15 -2473 ((-420 (-1171 |#4|)) (-1171 |#4|)))) (-850) (-793) (-351) (-949 |#3| |#2| |#1|)) (T -698))
+((-2473 (*1 *2 *3) (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-351)) (-4 *7 (-949 *6 *5 *4)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-698 *4 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-2473 (*1 *2 *3) (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-351)) (-5 *2 (-420 *3)) (-5 *1 (-698 *4 *5 *6 *3)) (-4 *3 (-949 *6 *5 *4)))))
+(-10 -7 (-15 -2473 ((-420 |#4|) |#4|)) (-15 -2473 ((-420 (-1171 |#4|)) (-1171 |#4|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 100)) (-2486 (((-566) $) 34)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-2922 (($ $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2484 (($ $) NIL)) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL)) (-3877 (($) NIL T CONST)) (-1591 (($ $) NIL)) (-3066 (((-3 (-566) "failed") $) 89) (((-3 (-409 (-566)) "failed") $) 28) (((-3 (-381) "failed") $) 86)) (-1867 (((-566) $) 91) (((-409 (-566)) $) 83) (((-381) $) 84)) (-2949 (($ $ $) 112)) (-2928 (((-3 $ "failed") $) 103)) (-2960 (($ $ $) 111)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1769 (((-921)) 93) (((-921) (-921)) 92)) (-1533 (((-112) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL)) (-3227 (((-566) $) NIL)) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL)) (-2719 (($ $) NIL)) (-2917 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3795 (((-566) (-566)) 97) (((-566)) 98)) (-1945 (($ $ $) NIL) (($) NIL (-12 (-2436 (|has| $ (-6 -4397))) (-2436 (|has| $ (-6 -4405)))))) (-2494 (((-566) (-566)) 95) (((-566)) 96)) (-2709 (($ $ $) NIL) (($) NIL (-12 (-2436 (|has| $ (-6 -4397))) (-2436 (|has| $ (-6 -4405)))))) (-1791 (((-566) $) 17)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 107)) (-1924 (((-921) (-566)) NIL (|has| $ (-6 -4405)))) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL)) (-2209 (($ $) NIL)) (-2987 (($ (-566) (-566)) NIL) (($ (-566) (-566) (-921)) NIL)) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) 108)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2456 (((-566) $) 24)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 110)) (-4085 (((-921)) NIL) (((-921) (-921)) NIL (|has| $ (-6 -4405)))) (-2813 (((-921) (-566)) NIL (|has| $ (-6 -4405)))) (-3204 (((-381) $) NIL) (((-225) $) NIL) (((-892 (-381)) $) NIL)) (-3780 (((-862) $) 68) (($ (-566)) 79) (($ $) NIL) (($ (-409 (-566))) 82) (($ (-566)) 79) (($ (-409 (-566))) 82) (($ (-381)) 76) (((-381) $) 66) (($ (-701)) 71)) (-3996 (((-771)) 122 T CONST)) (-3809 (($ (-566) (-566) (-921)) 59)) (-1982 (($ $) NIL)) (-1586 (((-921)) NIL) (((-921) (-921)) NIL (|has| $ (-6 -4405)))) (-3801 (((-112) $ $) NIL)) (-3819 (((-921)) 46) (((-921) (-921)) 94)) (-2278 (((-112) $ $) NIL)) (-3333 (($ $) NIL)) (-2493 (($) 37 T CONST)) (-4333 (($) 18 T CONST)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 99)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 121)) (-3062 (($ $ $) 81)) (-3051 (($ $) 118) (($ $ $) 119)) (-3040 (($ $ $) 117)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL) (($ $ (-409 (-566))) 106)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 113) (($ $ $) 104) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
+(((-699) (-13 (-406) (-389) (-365) (-1038 (-381)) (-1038 (-409 (-566))) (-147) (-10 -8 (-15 -1769 ((-921) (-921))) (-15 -1769 ((-921))) (-15 -3819 ((-921) (-921))) (-15 -2494 ((-566) (-566))) (-15 -2494 ((-566))) (-15 -3795 ((-566) (-566))) (-15 -3795 ((-566))) (-15 -3780 ((-381) $)) (-15 -3780 ($ (-701))) (-15 -1791 ((-566) $)) (-15 -2456 ((-566) $)) (-15 -3809 ($ (-566) (-566) (-921)))))) (T -699))
+((-2456 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-1791 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-1769 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699)))) (-1769 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699)))) (-3819 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699)))) (-2494 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-2494 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-3795 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-3795 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-381)) (-5 *1 (-699)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-701)) (-5 *1 (-699)))) (-3809 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-921)) (-5 *1 (-699)))))
+(-13 (-406) (-389) (-365) (-1038 (-381)) (-1038 (-409 (-566))) (-147) (-10 -8 (-15 -1769 ((-921) (-921))) (-15 -1769 ((-921))) (-15 -3819 ((-921) (-921))) (-15 -2494 ((-566) (-566))) (-15 -2494 ((-566))) (-15 -3795 ((-566) (-566))) (-15 -3795 ((-566))) (-15 -3780 ((-381) $)) (-15 -3780 ($ (-701))) (-15 -1791 ((-566) $)) (-15 -2456 ((-566) $)) (-15 -3809 ($ (-566) (-566) (-921)))))
+((-4285 (((-689 |#1|) (-689 |#1|) |#1| |#1|) 88)) (-1495 (((-689 |#1|) (-689 |#1|) |#1|) 67)) (-1855 (((-689 |#1|) (-689 |#1|) |#1|) 89)) (-1343 (((-689 |#1|) (-689 |#1|)) 68)) (-1530 (((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|) 87)))
+(((-700 |#1|) (-10 -7 (-15 -1343 ((-689 |#1|) (-689 |#1|))) (-15 -1495 ((-689 |#1|) (-689 |#1|) |#1|)) (-15 -1855 ((-689 |#1|) (-689 |#1|) |#1|)) (-15 -4285 ((-689 |#1|) (-689 |#1|) |#1| |#1|)) (-15 -1530 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|))) (-308)) (T -700))
+((-1530 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-700 *3)) (-4 *3 (-308)))) (-4285 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))) (-1855 (*1 *2 *2 *3) (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))) (-1495 (*1 *2 *2 *3) (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))) (-1343 (*1 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))))
+(-10 -7 (-15 -1343 ((-689 |#1|) (-689 |#1|))) (-15 -1495 ((-689 |#1|) (-689 |#1|) |#1|)) (-15 -1855 ((-689 |#1|) (-689 |#1|) |#1|)) (-15 -4285 ((-689 |#1|) (-689 |#1|) |#1| |#1|)) (-15 -1530 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4332 (($ $ $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4172 (($ $ $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL)) (-3129 (($ $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) 31)) (-1867 (((-566) $) 29)) (-2949 (($ $ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-4045 (((-3 (-409 (-566)) "failed") $) NIL)) (-1356 (((-112) $) NIL)) (-2269 (((-409 (-566)) $) NIL)) (-1618 (($ $) NIL) (($) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-4012 (($ $ $ $) NIL)) (-2385 (($ $ $) NIL)) (-1533 (((-112) $) NIL)) (-3477 (($ $ $) NIL)) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL)) (-3466 (((-112) $) NIL)) (-2469 (((-112) $) NIL)) (-2133 (((-3 $ "failed") $) NIL)) (-2917 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2513 (($ $ $ $) NIL)) (-1945 (($ $ $) NIL)) (-1977 (((-921) (-921)) 10) (((-921)) 9)) (-2709 (($ $ $) NIL)) (-2428 (($ $) NIL)) (-3945 (($ $) NIL)) (-2197 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-1885 (($ $ $) NIL)) (-3625 (($) NIL T CONST)) (-2637 (($ $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2711 (($ $) NIL)) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1630 (((-112) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $) NIL) (($ $ (-771)) NIL)) (-4090 (($ $) NIL)) (-3940 (($ $) NIL)) (-3204 (((-225) $) NIL) (((-381) $) NIL) (((-892 (-566)) $) NIL) (((-538) $) NIL) (((-566) $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) 28) (($ $) NIL) (($ (-566)) 28) (((-317 $) (-317 (-566))) 18)) (-3996 (((-771)) NIL T CONST)) (-2078 (((-112) $ $) NIL)) (-2378 (($ $ $) NIL)) (-3801 (((-112) $ $) NIL)) (-3819 (($) NIL)) (-2278 (((-112) $ $) NIL)) (-1314 (($ $ $ $) NIL)) (-3333 (($ $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $) NIL) (($ $ (-771)) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL)))
+(((-701) (-13 (-389) (-547) (-10 -8 (-15 -1977 ((-921) (-921))) (-15 -1977 ((-921))) (-15 -3780 ((-317 $) (-317 (-566))))))) (T -701))
+((-1977 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-701)))) (-1977 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-701)))) (-3780 (*1 *2 *3) (-12 (-5 *3 (-317 (-566))) (-5 *2 (-317 (-701))) (-5 *1 (-701)))))
+(-13 (-389) (-547) (-10 -8 (-15 -1977 ((-921) (-921))) (-15 -1977 ((-921))) (-15 -3780 ((-317 $) (-317 (-566))))))
+((-4246 (((-1 |#4| |#2| |#3|) |#1| (-1175) (-1175)) 19)) (-3257 (((-1 |#4| |#2| |#3|) (-1175)) 12)))
+(((-702 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3257 ((-1 |#4| |#2| |#3|) (-1175))) (-15 -4246 ((-1 |#4| |#2| |#3|) |#1| (-1175) (-1175)))) (-614 (-538)) (-1214) (-1214) (-1214)) (T -702))
+((-4246 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1175)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-702 *3 *5 *6 *7)) (-4 *3 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)) (-4 *7 (-1214)))) (-3257 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-702 *4 *5 *6 *7)) (-4 *4 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)) (-4 *7 (-1214)))))
+(-10 -7 (-15 -3257 ((-1 |#4| |#2| |#3|) (-1175))) (-15 -4246 ((-1 |#4| |#2| |#3|) |#1| (-1175) (-1175))))
+((-1384 (((-1 (-225) (-225) (-225)) |#1| (-1175) (-1175)) 36) (((-1 (-225) (-225)) |#1| (-1175)) 41)))
+(((-703 |#1|) (-10 -7 (-15 -1384 ((-1 (-225) (-225)) |#1| (-1175))) (-15 -1384 ((-1 (-225) (-225) (-225)) |#1| (-1175) (-1175)))) (-614 (-538))) (T -703))
+((-1384 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1175)) (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-703 *3)) (-4 *3 (-614 (-538))))) (-1384 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-5 *2 (-1 (-225) (-225))) (-5 *1 (-703 *3)) (-4 *3 (-614 (-538))))))
+(-10 -7 (-15 -1384 ((-1 (-225) (-225)) |#1| (-1175))) (-15 -1384 ((-1 (-225) (-225) (-225)) |#1| (-1175) (-1175))))
+((-3282 (((-1175) |#1| (-1175) (-644 (-1175))) 10) (((-1175) |#1| (-1175) (-1175) (-1175)) 13) (((-1175) |#1| (-1175) (-1175)) 12) (((-1175) |#1| (-1175)) 11)))
+(((-704 |#1|) (-10 -7 (-15 -3282 ((-1175) |#1| (-1175))) (-15 -3282 ((-1175) |#1| (-1175) (-1175))) (-15 -3282 ((-1175) |#1| (-1175) (-1175) (-1175))) (-15 -3282 ((-1175) |#1| (-1175) (-644 (-1175))))) (-614 (-538))) (T -704))
+((-3282 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-644 (-1175))) (-5 *2 (-1175)) (-5 *1 (-704 *3)) (-4 *3 (-614 (-538))))) (-3282 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-704 *3)) (-4 *3 (-614 (-538))))) (-3282 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-704 *3)) (-4 *3 (-614 (-538))))) (-3282 (*1 *2 *3 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-704 *3)) (-4 *3 (-614 (-538))))))
+(-10 -7 (-15 -3282 ((-1175) |#1| (-1175))) (-15 -3282 ((-1175) |#1| (-1175) (-1175))) (-15 -3282 ((-1175) |#1| (-1175) (-1175) (-1175))) (-15 -3282 ((-1175) |#1| (-1175) (-644 (-1175)))))
+((-1459 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
+(((-705 |#1| |#2|) (-10 -7 (-15 -1459 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1214) (-1214)) (T -705))
+((-1459 (*1 *2 *3 *4) (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4))) (-5 *1 (-705 *3 *4)) (-4 *3 (-1214)) (-4 *4 (-1214)))))
+(-10 -7 (-15 -1459 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
+((-3067 (((-1 |#3| |#2|) (-1175)) 11)) (-4246 (((-1 |#3| |#2|) |#1| (-1175)) 21)))
+(((-706 |#1| |#2| |#3|) (-10 -7 (-15 -3067 ((-1 |#3| |#2|) (-1175))) (-15 -4246 ((-1 |#3| |#2|) |#1| (-1175)))) (-614 (-538)) (-1214) (-1214)) (T -706))
+((-4246 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-5 *2 (-1 *6 *5)) (-5 *1 (-706 *3 *5 *6)) (-4 *3 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)))) (-3067 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1 *6 *5)) (-5 *1 (-706 *4 *5 *6)) (-4 *4 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)))))
+(-10 -7 (-15 -3067 ((-1 |#3| |#2|) (-1175))) (-15 -4246 ((-1 |#3| |#2|) |#1| (-1175))))
+((-1404 (((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#4|)) (-644 |#3|) (-644 |#4|) (-644 (-644 (-2 (|:| -2342 (-771)) (|:| |pcoef| |#4|)))) (-644 (-771)) (-1264 (-644 (-1171 |#3|))) |#3|) 95)) (-1934 (((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#3|)) (-644 |#3|) (-644 |#4|) (-644 (-771)) |#3|) 113)) (-2758 (((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 |#3|) (-644 (-771)) (-644 (-1171 |#4|)) (-1264 (-644 (-1171 |#3|))) |#3|) 47)))
+(((-707 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2758 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 |#3|) (-644 (-771)) (-644 (-1171 |#4|)) (-1264 (-644 (-1171 |#3|))) |#3|)) (-15 -1934 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#3|)) (-644 |#3|) (-644 |#4|) (-644 (-771)) |#3|)) (-15 -1404 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#4|)) (-644 |#3|) (-644 |#4|) (-644 (-644 (-2 (|:| -2342 (-771)) (|:| |pcoef| |#4|)))) (-644 (-771)) (-1264 (-644 (-1171 |#3|))) |#3|))) (-793) (-850) (-308) (-949 |#3| |#1| |#2|)) (T -707))
+((-1404 (*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10) (|partial| -12 (-5 *2 (-644 (-1171 *13))) (-5 *3 (-1171 *13)) (-5 *4 (-644 *12)) (-5 *5 (-644 *10)) (-5 *6 (-644 *13)) (-5 *7 (-644 (-644 (-2 (|:| -2342 (-771)) (|:| |pcoef| *13))))) (-5 *8 (-644 (-771))) (-5 *9 (-1264 (-644 (-1171 *10)))) (-4 *12 (-850)) (-4 *10 (-308)) (-4 *13 (-949 *10 *11 *12)) (-4 *11 (-793)) (-5 *1 (-707 *11 *12 *10 *13)))) (-1934 (*1 *2 *3 *4 *5 *6 *7 *8 *9) (|partial| -12 (-5 *4 (-644 *11)) (-5 *5 (-644 (-1171 *9))) (-5 *6 (-644 *9)) (-5 *7 (-644 *12)) (-5 *8 (-644 (-771))) (-4 *11 (-850)) (-4 *9 (-308)) (-4 *12 (-949 *9 *10 *11)) (-4 *10 (-793)) (-5 *2 (-644 (-1171 *12))) (-5 *1 (-707 *10 *11 *9 *12)) (-5 *3 (-1171 *12)))) (-2758 (*1 *2 *3 *4 *5 *6 *2 *7 *8) (|partial| -12 (-5 *2 (-644 (-1171 *11))) (-5 *3 (-1171 *11)) (-5 *4 (-644 *10)) (-5 *5 (-644 *8)) (-5 *6 (-644 (-771))) (-5 *7 (-1264 (-644 (-1171 *8)))) (-4 *10 (-850)) (-4 *8 (-308)) (-4 *11 (-949 *8 *9 *10)) (-4 *9 (-793)) (-5 *1 (-707 *9 *10 *8 *11)))))
+(-10 -7 (-15 -2758 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 |#3|) (-644 (-771)) (-644 (-1171 |#4|)) (-1264 (-644 (-1171 |#3|))) |#3|)) (-15 -1934 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#3|)) (-644 |#3|) (-644 |#4|) (-644 (-771)) |#3|)) (-15 -1404 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-644 |#2|) (-644 (-1171 |#4|)) (-644 |#3|) (-644 |#4|) (-644 (-644 (-2 (|:| -2342 (-771)) (|:| |pcoef| |#4|)))) (-644 (-771)) (-1264 (-644 (-1171 |#3|))) |#3|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-3645 (($ $) 48)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2585 (($ |#1| (-771)) 46)) (-2466 (((-771) $) 50)) (-3626 ((|#1| $) 49)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2108 (((-771) $) 51)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 45 (|has| |#1| (-172)))) (-3756 ((|#1| $ (-771)) 47)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 53) (($ |#1| $) 52)))
(((-708 |#1|) (-140) (-1049)) (T -708))
-((-3992 (*1 *2 *1) (-12 (-4 *1 (-708 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-3251 (*1 *2 *1) (-12 (-4 *1 (-708 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-3557 (*1 *2 *1) (-12 (-4 *1 (-708 *2)) (-4 *2 (-1049)))) (-3577 (*1 *1 *1) (-12 (-4 *1 (-708 *2)) (-4 *2 (-1049)))) (-2022 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-708 *2)) (-4 *2 (-1049)))) (-2519 (*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-708 *2)) (-4 *2 (-1049)))))
-(-13 (-1049) (-111 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (-15 -3992 ((-771) $)) (-15 -3251 ((-771) $)) (-15 -3557 (|t#1| $)) (-15 -3577 ($ $)) (-15 -2022 (|t#1| $ (-771))) (-15 -2519 ($ |t#1| (-771)))))
+((-2108 (*1 *2 *1) (-12 (-4 *1 (-708 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-2466 (*1 *2 *1) (-12 (-4 *1 (-708 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-3626 (*1 *2 *1) (-12 (-4 *1 (-708 *2)) (-4 *2 (-1049)))) (-3645 (*1 *1 *1) (-12 (-4 *1 (-708 *2)) (-4 *2 (-1049)))) (-3756 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-708 *2)) (-4 *2 (-1049)))) (-2585 (*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-708 *2)) (-4 *2 (-1049)))))
+(-13 (-1049) (-111 |t#1| |t#1|) (-10 -8 (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (-15 -2108 ((-771) $)) (-15 -2466 ((-771) $)) (-15 -3626 (|t#1| $)) (-15 -3645 ($ $)) (-15 -3756 (|t#1| $ (-771))) (-15 -2585 ($ |t#1| (-771)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-172)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 |#1|) |has| |#1| (-172)) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 |#1|) |has| |#1| (-172)) ((-717 |#1|) |has| |#1| (-172)) ((-726) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-3077 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
-(((-709 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3077 (|#6| (-1 |#4| |#1|) |#3|))) (-558) (-1240 |#1|) (-1240 (-409 |#2|)) (-558) (-1240 |#4|) (-1240 (-409 |#5|))) (T -709))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-558)) (-4 *7 (-558)) (-4 *6 (-1240 *5)) (-4 *2 (-1240 (-409 *8))) (-5 *1 (-709 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1240 (-409 *6))) (-4 *8 (-1240 *7)))))
-(-10 -7 (-15 -3077 (|#6| (-1 |#4| |#1|) |#3|)))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3746 (((-1157) (-862)) 39)) (-1697 (((-1269) (-1157)) 32)) (-1357 (((-1157) (-862)) 28)) (-2656 (((-1157) (-862)) 29)) (-2512 (((-862) $) NIL) (((-1157) (-862)) 27)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-710) (-13 (-1099) (-10 -7 (-15 -2512 ((-1157) (-862))) (-15 -1357 ((-1157) (-862))) (-15 -2656 ((-1157) (-862))) (-15 -3746 ((-1157) (-862))) (-15 -1697 ((-1269) (-1157)))))) (T -710))
-((-2512 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))) (-1357 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))) (-2656 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))) (-3746 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))) (-1697 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-710)))))
-(-13 (-1099) (-10 -7 (-15 -2512 ((-1157) (-862))) (-15 -1357 ((-1157) (-862))) (-15 -2656 ((-1157) (-862))) (-15 -3746 ((-1157) (-862))) (-15 -1697 ((-1269) (-1157)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-2926 (($ $ $) NIL)) (-4362 (($ |#1| |#2|) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-2741 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-4030 ((|#2| $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-4147 (((-3 $ "failed") $ $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) ((|#1| $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
-(((-711 |#1| |#2| |#3| |#4| |#5|) (-13 (-365) (-10 -8 (-15 -4030 (|#2| $)) (-15 -2512 (|#1| $)) (-15 -4362 ($ |#1| |#2|)) (-15 -4147 ((-3 $ "failed") $ $)))) (-172) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -711))
-((-4030 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-711 *3 *2 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-2512 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-711 *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)))) (-4362 (*1 *1 *2 *3) (-12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-4147 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-365) (-10 -8 (-15 -4030 (|#2| $)) (-15 -2512 (|#1| $)) (-15 -4362 ($ |#1| |#2|)) (-15 -4147 ((-3 $ "failed") $ $))))
-((-2985 (((-112) $ $) 92)) (-3958 (((-112) $) 36)) (-2025 (((-1264 |#1|) $ (-771)) NIL)) (-2540 (((-644 (-1081)) $) NIL)) (-3526 (($ (-1171 |#1|)) NIL)) (-2358 (((-1171 $) $ (-1081)) NIL) (((-1171 |#1|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-1081))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2829 (($ $ $) NIL (|has| |#1| (-558)))) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2857 (($ $) NIL (|has| |#1| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-4025 (((-771)) 56 (|has| |#1| (-370)))) (-4047 (($ $ (-771)) NIL)) (-2284 (($ $ (-771)) NIL)) (-1599 ((|#2| |#2|) 52)) (-2542 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-454)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-1081) "failed") $) NIL)) (-1756 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-1081) $) NIL)) (-1552 (($ $ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $ $) NIL (|has| |#1| (-172)))) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) 40)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-4362 (($ |#2|) 50)) (-1579 (((-3 $ "failed") $) 102)) (-3335 (($) 61 (|has| |#1| (-370)))) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-2762 (($ $ $) NIL)) (-2213 (($ $ $) NIL (|has| |#1| (-558)))) (-2513 (((-2 (|:| -3157 |#1|) (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-558)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-4248 (($ $) NIL (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#1| (-909)))) (-2175 (((-958 $)) 94)) (-2804 (($ $ |#1| (-771) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1081) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1081) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-2716 (((-771) $ $) NIL (|has| |#1| (-558)))) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-1150)))) (-2530 (($ (-1171 |#1|) (-1081)) NIL) (($ (-1171 $) (-1081)) NIL)) (-3432 (($ $ (-771)) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-771)) 88) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-1081)) NIL) (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-4030 ((|#2|) 53)) (-3251 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-2132 (($ (-1 (-771) (-771)) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3840 (((-1171 |#1|) $) NIL)) (-3339 (((-3 (-1081) "failed") $) NIL)) (-3712 (((-921) $) NIL (|has| |#1| (-370)))) (-4350 ((|#2| $) 49)) (-3545 (($ $) NIL)) (-3557 ((|#1| $) 34)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2878 (((-1157) $) NIL)) (-1497 (((-2 (|:| -2760 $) (|:| -1644 $)) $ (-771)) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-1081)) (|:| -3250 (-771))) "failed") $) NIL)) (-4117 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2759 (($) NIL (|has| |#1| (-1150)) CONST)) (-2168 (($ (-921)) NIL (|has| |#1| (-370)))) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 ((|#1| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-4026 (($ $) 93 (|has| |#1| (-351)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-909)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) 101 (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1081) |#1|) NIL) (($ $ (-644 (-1081)) (-644 |#1|)) NIL) (($ $ (-1081) $) NIL) (($ $ (-644 (-1081)) (-644 $)) NIL)) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-409 $) (-409 $) (-409 $)) NIL (|has| |#1| (-558))) ((|#1| (-409 $) |#1|) NIL (|has| |#1| (-365))) (((-409 $) $ (-409 $)) NIL (|has| |#1| (-558)))) (-1876 (((-3 $ "failed") $ (-771)) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 103 (|has| |#1| (-365)))) (-2408 (($ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $) NIL (|has| |#1| (-172)))) (-2862 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3992 (((-771) $) 38) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1081) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3181 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-4229 (((-958 $)) 42)) (-4293 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558))) (((-3 (-409 $) "failed") (-409 $) $) NIL (|has| |#1| (-558)))) (-2512 (((-862) $) 71) (($ (-566)) NIL) (($ |#1|) 68) (($ (-1081)) NIL) (($ |#2|) 78) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-771)) 73) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2485 (($) 25 T CONST)) (-1996 (((-1264 |#1|) $) 86)) (-3731 (($ (-1264 |#1|)) 60)) (-2495 (($) 8 T CONST)) (-2840 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4136 (((-1264 |#1|) $) NIL)) (-2940 (((-112) $ $) 79)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) 82) (($ $ $) NIL)) (-3034 (($ $ $) 39)) (** (($ $ (-921)) NIL) (($ $ (-771)) 97)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 67) (($ $ $) 85) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 65) (($ $ |#1|) NIL)))
-(((-712 |#1| |#2|) (-13 (-1240 |#1|) (-616 |#2|) (-10 -8 (-15 -1599 (|#2| |#2|)) (-15 -4030 (|#2|)) (-15 -4362 ($ |#2|)) (-15 -4350 (|#2| $)) (-15 -1996 ((-1264 |#1|) $)) (-15 -3731 ($ (-1264 |#1|))) (-15 -4136 ((-1264 |#1|) $)) (-15 -2175 ((-958 $))) (-15 -4229 ((-958 $))) (IF (|has| |#1| (-351)) (-15 -4026 ($ $)) |%noBranch|) (IF (|has| |#1| (-370)) (-6 (-370)) |%noBranch|))) (-1049) (-1240 |#1|)) (T -712))
-((-1599 (*1 *2 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-712 *3 *2)) (-4 *2 (-1240 *3)))) (-4030 (*1 *2) (-12 (-4 *2 (-1240 *3)) (-5 *1 (-712 *3 *2)) (-4 *3 (-1049)))) (-4362 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-712 *3 *2)) (-4 *2 (-1240 *3)))) (-4350 (*1 *2 *1) (-12 (-4 *2 (-1240 *3)) (-5 *1 (-712 *3 *2)) (-4 *3 (-1049)))) (-1996 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-5 *2 (-1264 *3)) (-5 *1 (-712 *3 *4)) (-4 *4 (-1240 *3)))) (-3731 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1049)) (-5 *1 (-712 *3 *4)) (-4 *4 (-1240 *3)))) (-4136 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-5 *2 (-1264 *3)) (-5 *1 (-712 *3 *4)) (-4 *4 (-1240 *3)))) (-2175 (*1 *2) (-12 (-4 *3 (-1049)) (-5 *2 (-958 (-712 *3 *4))) (-5 *1 (-712 *3 *4)) (-4 *4 (-1240 *3)))) (-4229 (*1 *2) (-12 (-4 *3 (-1049)) (-5 *2 (-958 (-712 *3 *4))) (-5 *1 (-712 *3 *4)) (-4 *4 (-1240 *3)))) (-4026 (*1 *1 *1) (-12 (-4 *2 (-351)) (-4 *2 (-1049)) (-5 *1 (-712 *2 *3)) (-4 *3 (-1240 *2)))))
-(-13 (-1240 |#1|) (-616 |#2|) (-10 -8 (-15 -1599 (|#2| |#2|)) (-15 -4030 (|#2|)) (-15 -4362 ($ |#2|)) (-15 -4350 (|#2| $)) (-15 -1996 ((-1264 |#1|) $)) (-15 -3731 ($ (-1264 |#1|))) (-15 -4136 ((-1264 |#1|) $)) (-15 -2175 ((-958 $))) (-15 -4229 ((-958 $))) (IF (|has| |#1| (-351)) (-15 -4026 ($ $)) |%noBranch|) (IF (|has| |#1| (-370)) (-6 (-370)) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 ((|#1| $) 13)) (-4033 (((-1119) $) NIL)) (-3250 ((|#2| $) 12)) (-2523 (($ |#1| |#2|) 16)) (-2512 (((-862) $) NIL) (($ (-2 (|:| -2168 |#1|) (|:| -3250 |#2|))) 15) (((-2 (|:| -2168 |#1|) (|:| -3250 |#2|)) $) 14)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 11)))
-(((-713 |#1| |#2| |#3|) (-13 (-850) (-492 (-2 (|:| -2168 |#1|) (|:| -3250 |#2|))) (-10 -8 (-15 -3250 (|#2| $)) (-15 -2168 (|#1| $)) (-15 -2523 ($ |#1| |#2|)))) (-850) (-1099) (-1 (-112) (-2 (|:| -2168 |#1|) (|:| -3250 |#2|)) (-2 (|:| -2168 |#1|) (|:| -3250 |#2|)))) (T -713))
-((-3250 (*1 *2 *1) (-12 (-4 *2 (-1099)) (-5 *1 (-713 *3 *2 *4)) (-4 *3 (-850)) (-14 *4 (-1 (-112) (-2 (|:| -2168 *3) (|:| -3250 *2)) (-2 (|:| -2168 *3) (|:| -3250 *2)))))) (-2168 (*1 *2 *1) (-12 (-4 *2 (-850)) (-5 *1 (-713 *2 *3 *4)) (-4 *3 (-1099)) (-14 *4 (-1 (-112) (-2 (|:| -2168 *2) (|:| -3250 *3)) (-2 (|:| -2168 *2) (|:| -3250 *3)))))) (-2523 (*1 *1 *2 *3) (-12 (-5 *1 (-713 *2 *3 *4)) (-4 *2 (-850)) (-4 *3 (-1099)) (-14 *4 (-1 (-112) (-2 (|:| -2168 *2) (|:| -3250 *3)) (-2 (|:| -2168 *2) (|:| -3250 *3)))))))
-(-13 (-850) (-492 (-2 (|:| -2168 |#1|) (|:| -3250 |#2|))) (-10 -8 (-15 -3250 (|#2| $)) (-15 -2168 (|#1| $)) (-15 -2523 ($ |#1| |#2|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 66)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) 105) (((-3 (-114) "failed") $) 111)) (-1756 ((|#1| $) NIL) (((-114) $) 39)) (-1579 (((-3 $ "failed") $) 106)) (-3832 ((|#2| (-114) |#2|) 93)) (-2741 (((-112) $) NIL)) (-3109 (($ |#1| (-363 (-114))) 14)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2606 (($ $ (-1 |#2| |#2|)) 65)) (-3098 (($ $ (-1 |#2| |#2|)) 44)) (-4386 ((|#2| $ |#2|) 33)) (-2545 ((|#1| |#1|) 121 (|has| |#1| (-172)))) (-2512 (((-862) $) 73) (($ (-566)) 18) (($ |#1|) 17) (($ (-114)) 23)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) 37 T CONST)) (-3122 (((-112) $ $) NIL)) (-1550 (($ $) 115 (|has| |#1| (-172))) (($ $ $) 119 (|has| |#1| (-172)))) (-2485 (($) 21 T CONST)) (-2495 (($) 9 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) 48) (($ $ $) NIL)) (-3034 (($ $ $) 83)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ (-114) (-566)) NIL) (($ $ (-566)) 64)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 114) (($ $ $) 53) (($ |#1| $) 112 (|has| |#1| (-172))) (($ $ |#1|) 113 (|has| |#1| (-172)))))
-(((-714 |#1| |#2|) (-13 (-1049) (-1038 |#1|) (-1038 (-114)) (-287 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -1550 ($ $)) (-15 -1550 ($ $ $)) (-15 -2545 (|#1| |#1|))) |%noBranch|) (-15 -3098 ($ $ (-1 |#2| |#2|))) (-15 -2606 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-566))) (-15 ** ($ $ (-566))) (-15 -3832 (|#2| (-114) |#2|)) (-15 -3109 ($ |#1| (-363 (-114)))))) (-1049) (-648 |#1|)) (T -714))
-((-1550 (*1 *1 *1) (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3)) (-4 *3 (-648 *2)))) (-1550 (*1 *1 *1 *1) (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3)) (-4 *3 (-648 *2)))) (-2545 (*1 *2 *2) (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3)) (-4 *3 (-648 *2)))) (-3098 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-648 *3)) (-4 *3 (-1049)) (-5 *1 (-714 *3 *4)))) (-2606 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-648 *3)) (-4 *3 (-1049)) (-5 *1 (-714 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-566)) (-4 *4 (-1049)) (-5 *1 (-714 *4 *5)) (-4 *5 (-648 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *3 (-1049)) (-5 *1 (-714 *3 *4)) (-4 *4 (-648 *3)))) (-3832 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-4 *4 (-1049)) (-5 *1 (-714 *4 *2)) (-4 *2 (-648 *4)))) (-3109 (*1 *1 *2 *3) (-12 (-5 *3 (-363 (-114))) (-4 *2 (-1049)) (-5 *1 (-714 *2 *4)) (-4 *4 (-648 *2)))))
-(-13 (-1049) (-1038 |#1|) (-1038 (-114)) (-287 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -1550 ($ $)) (-15 -1550 ($ $ $)) (-15 -2545 (|#1| |#1|))) |%noBranch|) (-15 -3098 ($ $ (-1 |#2| |#2|))) (-15 -2606 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-566))) (-15 ** ($ $ (-566))) (-15 -3832 (|#2| (-114) |#2|)) (-15 -3109 ($ |#1| (-363 (-114))))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 33)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-4362 (($ |#1| |#2|) 25)) (-1579 (((-3 $ "failed") $) 51)) (-2741 (((-112) $) 35)) (-4030 ((|#2| $) 12)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 52)) (-4033 (((-1119) $) NIL)) (-4147 (((-3 $ "failed") $ $) 50)) (-2512 (((-862) $) 24) (($ (-566)) 19) ((|#1| $) 13)) (-3795 (((-771)) 28 T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 16 T CONST)) (-2495 (($) 30 T CONST)) (-2940 (((-112) $ $) 41)) (-3047 (($ $) 46) (($ $ $) 40)) (-3034 (($ $ $) 43)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 21) (($ $ $) 20)))
-(((-715 |#1| |#2| |#3| |#4| |#5|) (-13 (-1049) (-10 -8 (-15 -4030 (|#2| $)) (-15 -2512 (|#1| $)) (-15 -4362 ($ |#1| |#2|)) (-15 -4147 ((-3 $ "failed") $ $)) (-15 -1579 ((-3 $ "failed") $)) (-15 -2626 ($ $)))) (-172) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -715))
-((-1579 (*1 *1 *1) (|partial| -12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-4030 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-715 *3 *2 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-2512 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-715 *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)))) (-4362 (*1 *1 *2 *3) (-12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-4147 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-2626 (*1 *1 *1) (-12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-1049) (-10 -8 (-15 -4030 (|#2| $)) (-15 -2512 (|#1| $)) (-15 -4362 ($ |#1| |#2|)) (-15 -4147 ((-3 $ "failed") $ $)) (-15 -1579 ((-3 $ "failed") $)) (-15 -2626 ($ $))))
+((-3152 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
+(((-709 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3152 (|#6| (-1 |#4| |#1|) |#3|))) (-558) (-1240 |#1|) (-1240 (-409 |#2|)) (-558) (-1240 |#4|) (-1240 (-409 |#5|))) (T -709))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-558)) (-4 *7 (-558)) (-4 *6 (-1240 *5)) (-4 *2 (-1240 (-409 *8))) (-5 *1 (-709 *5 *6 *4 *7 *8 *2)) (-4 *4 (-1240 (-409 *6))) (-4 *8 (-1240 *7)))))
+(-10 -7 (-15 -3152 (|#6| (-1 |#4| |#1|) |#3|)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1689 (((-1157) (-862)) 39)) (-1736 (((-1269) (-1157)) 32)) (-3360 (((-1157) (-862)) 28)) (-3829 (((-1157) (-862)) 29)) (-3780 (((-862) $) NIL) (((-1157) (-862)) 27)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-710) (-13 (-1099) (-10 -7 (-15 -3780 ((-1157) (-862))) (-15 -3360 ((-1157) (-862))) (-15 -3829 ((-1157) (-862))) (-15 -1689 ((-1157) (-862))) (-15 -1736 ((-1269) (-1157)))))) (T -710))
+((-3780 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))) (-3360 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))) (-3829 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))) (-1689 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))) (-1736 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-710)))))
+(-13 (-1099) (-10 -7 (-15 -3780 ((-1157) (-862))) (-15 -3360 ((-1157) (-862))) (-15 -3829 ((-1157) (-862))) (-15 -1689 ((-1157) (-862))) (-15 -1736 ((-1269) (-1157)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-2949 (($ $ $) NIL)) (-1580 (($ |#1| |#2|) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-3466 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2468 ((|#2| $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-4214 (((-3 $ "failed") $ $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) ((|#1| $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
+(((-711 |#1| |#2| |#3| |#4| |#5|) (-13 (-365) (-10 -8 (-15 -2468 (|#2| $)) (-15 -3780 (|#1| $)) (-15 -1580 ($ |#1| |#2|)) (-15 -4214 ((-3 $ "failed") $ $)))) (-172) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -711))
+((-2468 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-711 *3 *2 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3780 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-711 *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)))) (-1580 (*1 *1 *2 *3) (-12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-4214 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-365) (-10 -8 (-15 -2468 (|#2| $)) (-15 -3780 (|#1| $)) (-15 -1580 ($ |#1| |#2|)) (-15 -4214 ((-3 $ "failed") $ $))))
+((-3009 (((-112) $ $) 92)) (-3015 (((-112) $) 36)) (-3788 (((-1264 |#1|) $ (-771)) NIL)) (-2608 (((-644 (-1081)) $) NIL)) (-3220 (($ (-1171 |#1|)) NIL)) (-2438 (((-1171 $) $ (-1081)) NIL) (((-1171 |#1|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-1081))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-1911 (($ $ $) NIL (|has| |#1| (-558)))) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2179 (($ $) NIL (|has| |#1| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-4070 (((-771)) 56 (|has| |#1| (-370)))) (-1362 (($ $ (-771)) NIL)) (-1407 (($ $ (-771)) NIL)) (-1929 ((|#2| |#2|) 52)) (-2091 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-454)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-1081) "failed") $) NIL)) (-1867 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-1081) $) NIL)) (-2662 (($ $ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $ $) NIL (|has| |#1| (-172)))) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) 40)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1580 (($ |#2|) 50)) (-2928 (((-3 $ "failed") $) 102)) (-1618 (($) 61 (|has| |#1| (-370)))) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3667 (($ $ $) NIL)) (-1941 (($ $ $) NIL (|has| |#1| (-558)))) (-3048 (((-2 (|:| -3223 |#1|) (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-558)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2755 (($ $) NIL (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#1| (-909)))) (-2831 (((-958 $)) 94)) (-2871 (($ $ |#1| (-771) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1081) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1081) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3227 (((-771) $ $) NIL (|has| |#1| (-558)))) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-1150)))) (-2597 (($ (-1171 |#1|) (-1081)) NIL) (($ (-1171 $) (-1081)) NIL)) (-1644 (($ $ (-771)) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-771)) 88) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-1081)) NIL) (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2468 ((|#2|) 53)) (-2466 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-2443 (($ (-1 (-771) (-771)) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3207 (((-1171 |#1|) $) NIL)) (-1984 (((-3 (-1081) "failed") $) NIL)) (-1299 (((-921) $) NIL (|has| |#1| (-370)))) (-1567 ((|#2| $) 49)) (-3614 (($ $) NIL)) (-3626 ((|#1| $) 34)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2402 (((-1157) $) NIL)) (-3312 (((-2 (|:| -3644 $) (|:| -4228 $)) $ (-771)) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-1081)) (|:| -2456 (-771))) "failed") $) NIL)) (-3921 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3625 (($) NIL (|has| |#1| (-1150)) CONST)) (-2208 (($ (-921)) NIL (|has| |#1| (-370)))) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 ((|#1| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2423 (($ $) 93 (|has| |#1| (-351)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-909)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) 101 (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1081) |#1|) NIL) (($ $ (-644 (-1081)) (-644 |#1|)) NIL) (($ $ (-1081) $) NIL) (($ $ (-644 (-1081)) (-644 $)) NIL)) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-409 $) (-409 $) (-409 $)) NIL (|has| |#1| (-558))) ((|#1| (-409 $) |#1|) NIL (|has| |#1| (-365))) (((-409 $) $ (-409 $)) NIL (|has| |#1| (-558)))) (-2867 (((-3 $ "failed") $ (-771)) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 103 (|has| |#1| (-365)))) (-3309 (($ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $) NIL (|has| |#1| (-172)))) (-2578 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2108 (((-771) $) 38) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1081) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3042 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-2611 (((-958 $)) 42)) (-1970 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558))) (((-3 (-409 $) "failed") (-409 $) $) NIL (|has| |#1| (-558)))) (-3780 (((-862) $) 71) (($ (-566)) NIL) (($ |#1|) 68) (($ (-1081)) NIL) (($ |#2|) 78) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-771)) 73) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2493 (($) 25 T CONST)) (-1636 (((-1264 |#1|) $) 86)) (-1517 (($ (-1264 |#1|)) 60)) (-4333 (($) 8 T CONST)) (-2876 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-4115 (((-1264 |#1|) $) NIL)) (-2950 (((-112) $ $) 79)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) 82) (($ $ $) NIL)) (-3040 (($ $ $) 39)) (** (($ $ (-921)) NIL) (($ $ (-771)) 97)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 67) (($ $ $) 85) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 65) (($ $ |#1|) NIL)))
+(((-712 |#1| |#2|) (-13 (-1240 |#1|) (-616 |#2|) (-10 -8 (-15 -1929 (|#2| |#2|)) (-15 -2468 (|#2|)) (-15 -1580 ($ |#2|)) (-15 -1567 (|#2| $)) (-15 -1636 ((-1264 |#1|) $)) (-15 -1517 ($ (-1264 |#1|))) (-15 -4115 ((-1264 |#1|) $)) (-15 -2831 ((-958 $))) (-15 -2611 ((-958 $))) (IF (|has| |#1| (-351)) (-15 -2423 ($ $)) |%noBranch|) (IF (|has| |#1| (-370)) (-6 (-370)) |%noBranch|))) (-1049) (-1240 |#1|)) (T -712))
+((-1929 (*1 *2 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-712 *3 *2)) (-4 *2 (-1240 *3)))) (-2468 (*1 *2) (-12 (-4 *2 (-1240 *3)) (-5 *1 (-712 *3 *2)) (-4 *3 (-1049)))) (-1580 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-712 *3 *2)) (-4 *2 (-1240 *3)))) (-1567 (*1 *2 *1) (-12 (-4 *2 (-1240 *3)) (-5 *1 (-712 *3 *2)) (-4 *3 (-1049)))) (-1636 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-5 *2 (-1264 *3)) (-5 *1 (-712 *3 *4)) (-4 *4 (-1240 *3)))) (-1517 (*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1049)) (-5 *1 (-712 *3 *4)) (-4 *4 (-1240 *3)))) (-4115 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-5 *2 (-1264 *3)) (-5 *1 (-712 *3 *4)) (-4 *4 (-1240 *3)))) (-2831 (*1 *2) (-12 (-4 *3 (-1049)) (-5 *2 (-958 (-712 *3 *4))) (-5 *1 (-712 *3 *4)) (-4 *4 (-1240 *3)))) (-2611 (*1 *2) (-12 (-4 *3 (-1049)) (-5 *2 (-958 (-712 *3 *4))) (-5 *1 (-712 *3 *4)) (-4 *4 (-1240 *3)))) (-2423 (*1 *1 *1) (-12 (-4 *2 (-351)) (-4 *2 (-1049)) (-5 *1 (-712 *2 *3)) (-4 *3 (-1240 *2)))))
+(-13 (-1240 |#1|) (-616 |#2|) (-10 -8 (-15 -1929 (|#2| |#2|)) (-15 -2468 (|#2|)) (-15 -1580 ($ |#2|)) (-15 -1567 (|#2| $)) (-15 -1636 ((-1264 |#1|) $)) (-15 -1517 ($ (-1264 |#1|))) (-15 -4115 ((-1264 |#1|) $)) (-15 -2831 ((-958 $))) (-15 -2611 ((-958 $))) (IF (|has| |#1| (-351)) (-15 -2423 ($ $)) |%noBranch|) (IF (|has| |#1| (-370)) (-6 (-370)) |%noBranch|)))
+((-3009 (((-112) $ $) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 ((|#1| $) 13)) (-4056 (((-1119) $) NIL)) (-2456 ((|#2| $) 12)) (-3791 (($ |#1| |#2|) 16)) (-3780 (((-862) $) NIL) (($ (-2 (|:| -2208 |#1|) (|:| -2456 |#2|))) 15) (((-2 (|:| -2208 |#1|) (|:| -2456 |#2|)) $) 14)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 11)))
+(((-713 |#1| |#2| |#3|) (-13 (-850) (-492 (-2 (|:| -2208 |#1|) (|:| -2456 |#2|))) (-10 -8 (-15 -2456 (|#2| $)) (-15 -2208 (|#1| $)) (-15 -3791 ($ |#1| |#2|)))) (-850) (-1099) (-1 (-112) (-2 (|:| -2208 |#1|) (|:| -2456 |#2|)) (-2 (|:| -2208 |#1|) (|:| -2456 |#2|)))) (T -713))
+((-2456 (*1 *2 *1) (-12 (-4 *2 (-1099)) (-5 *1 (-713 *3 *2 *4)) (-4 *3 (-850)) (-14 *4 (-1 (-112) (-2 (|:| -2208 *3) (|:| -2456 *2)) (-2 (|:| -2208 *3) (|:| -2456 *2)))))) (-2208 (*1 *2 *1) (-12 (-4 *2 (-850)) (-5 *1 (-713 *2 *3 *4)) (-4 *3 (-1099)) (-14 *4 (-1 (-112) (-2 (|:| -2208 *2) (|:| -2456 *3)) (-2 (|:| -2208 *2) (|:| -2456 *3)))))) (-3791 (*1 *1 *2 *3) (-12 (-5 *1 (-713 *2 *3 *4)) (-4 *2 (-850)) (-4 *3 (-1099)) (-14 *4 (-1 (-112) (-2 (|:| -2208 *2) (|:| -2456 *3)) (-2 (|:| -2208 *2) (|:| -2456 *3)))))))
+(-13 (-850) (-492 (-2 (|:| -2208 |#1|) (|:| -2456 |#2|))) (-10 -8 (-15 -2456 (|#2| $)) (-15 -2208 (|#1| $)) (-15 -3791 ($ |#1| |#2|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 66)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) 105) (((-3 (-114) "failed") $) 111)) (-1867 ((|#1| $) NIL) (((-114) $) 39)) (-2928 (((-3 $ "failed") $) 106)) (-3136 ((|#2| (-114) |#2|) 93)) (-3466 (((-112) $) NIL)) (-3693 (($ |#1| (-363 (-114))) 14)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1474 (($ $ (-1 |#2| |#2|)) 65)) (-1722 (($ $ (-1 |#2| |#2|)) 44)) (-4393 ((|#2| $ |#2|) 33)) (-2122 ((|#1| |#1|) 121 (|has| |#1| (-172)))) (-3780 (((-862) $) 73) (($ (-566)) 18) (($ |#1|) 17) (($ (-114)) 23)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) 37 T CONST)) (-3801 (((-112) $ $) NIL)) (-2643 (($ $) 115 (|has| |#1| (-172))) (($ $ $) 119 (|has| |#1| (-172)))) (-2493 (($) 21 T CONST)) (-4333 (($) 9 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) 48) (($ $ $) NIL)) (-3040 (($ $ $) 83)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ (-114) (-566)) NIL) (($ $ (-566)) 64)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 114) (($ $ $) 53) (($ |#1| $) 112 (|has| |#1| (-172))) (($ $ |#1|) 113 (|has| |#1| (-172)))))
+(((-714 |#1| |#2|) (-13 (-1049) (-1038 |#1|) (-1038 (-114)) (-287 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -2643 ($ $)) (-15 -2643 ($ $ $)) (-15 -2122 (|#1| |#1|))) |%noBranch|) (-15 -1722 ($ $ (-1 |#2| |#2|))) (-15 -1474 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-566))) (-15 ** ($ $ (-566))) (-15 -3136 (|#2| (-114) |#2|)) (-15 -3693 ($ |#1| (-363 (-114)))))) (-1049) (-648 |#1|)) (T -714))
+((-2643 (*1 *1 *1) (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3)) (-4 *3 (-648 *2)))) (-2643 (*1 *1 *1 *1) (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3)) (-4 *3 (-648 *2)))) (-2122 (*1 *2 *2) (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3)) (-4 *3 (-648 *2)))) (-1722 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-648 *3)) (-4 *3 (-1049)) (-5 *1 (-714 *3 *4)))) (-1474 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-648 *3)) (-4 *3 (-1049)) (-5 *1 (-714 *3 *4)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-566)) (-4 *4 (-1049)) (-5 *1 (-714 *4 *5)) (-4 *5 (-648 *4)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *3 (-1049)) (-5 *1 (-714 *3 *4)) (-4 *4 (-648 *3)))) (-3136 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-4 *4 (-1049)) (-5 *1 (-714 *4 *2)) (-4 *2 (-648 *4)))) (-3693 (*1 *1 *2 *3) (-12 (-5 *3 (-363 (-114))) (-4 *2 (-1049)) (-5 *1 (-714 *2 *4)) (-4 *4 (-648 *2)))))
+(-13 (-1049) (-1038 |#1|) (-1038 (-114)) (-287 |#2| |#2|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -2643 ($ $)) (-15 -2643 ($ $ $)) (-15 -2122 (|#1| |#1|))) |%noBranch|) (-15 -1722 ($ $ (-1 |#2| |#2|))) (-15 -1474 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-114) (-566))) (-15 ** ($ $ (-566))) (-15 -3136 (|#2| (-114) |#2|)) (-15 -3693 ($ |#1| (-363 (-114))))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 33)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-1580 (($ |#1| |#2|) 25)) (-2928 (((-3 $ "failed") $) 51)) (-3466 (((-112) $) 35)) (-2468 ((|#2| $) 12)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 52)) (-4056 (((-1119) $) NIL)) (-4214 (((-3 $ "failed") $ $) 50)) (-3780 (((-862) $) 24) (($ (-566)) 19) ((|#1| $) 13)) (-3996 (((-771)) 28 T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 16 T CONST)) (-4333 (($) 30 T CONST)) (-2950 (((-112) $ $) 41)) (-3051 (($ $) 46) (($ $ $) 40)) (-3040 (($ $ $) 43)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 21) (($ $ $) 20)))
+(((-715 |#1| |#2| |#3| |#4| |#5|) (-13 (-1049) (-10 -8 (-15 -2468 (|#2| $)) (-15 -3780 (|#1| $)) (-15 -1580 ($ |#1| |#2|)) (-15 -4214 ((-3 $ "failed") $ $)) (-15 -2928 ((-3 $ "failed") $)) (-15 -3584 ($ $)))) (-172) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -715))
+((-2928 (*1 *1 *1) (|partial| -12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-2468 (*1 *2 *1) (-12 (-4 *2 (-23)) (-5 *1 (-715 *3 *2 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-1 *3 *3 *2)) (-14 *5 (-1 (-3 *2 "failed") *2 *2)) (-14 *6 (-1 (-3 *3 "failed") *3 *3 *2)))) (-3780 (*1 *2 *1) (-12 (-4 *2 (-172)) (-5 *1 (-715 *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)))) (-1580 (*1 *1 *2 *3) (-12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-4214 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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)))) (-3584 (*1 *1 *1) (-12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-1049) (-10 -8 (-15 -2468 (|#2| $)) (-15 -3780 (|#1| $)) (-15 -1580 ($ |#1| |#2|)) (-15 -4214 ((-3 $ "failed") $ $)) (-15 -2928 ((-3 $ "failed") $)) (-15 -3584 ($ $))))
((* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#2| $) NIL) (($ $ |#2|) 9)))
(((-716 |#1| |#2|) (-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|))) (-717 |#2|) (-172)) (T -716))
NIL
(-10 -8 (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
(((-717 |#1|) (-140) (-172)) (T -717))
NIL
(-13 (-111 |t#1| |t#1|) (-640 |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-648 |#1|) . T) ((-640 |#1|) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3096 (($ |#1|) 17) (($ $ |#1|) 20)) (-2863 (($ |#1|) 18) (($ $ |#1|) 21)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-2741 (((-112) $) NIL)) (-1854 (($ |#1| |#1| |#1| |#1|) 8)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 16)) (-4033 (((-1119) $) NIL)) (-2070 ((|#1| $ |#1|) 24) (((-833 |#1|) $ (-833 |#1|)) 32)) (-2032 (($ $ $) NIL)) (-3755 (($ $ $) NIL)) (-2512 (((-862) $) 39)) (-3122 (((-112) $ $) NIL)) (-2495 (($) 9 T CONST)) (-2940 (((-112) $ $) 48)) (-3061 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ $ $) 14)))
-(((-718 |#1|) (-13 (-475) (-10 -8 (-15 -1854 ($ |#1| |#1| |#1| |#1|)) (-15 -3096 ($ |#1|)) (-15 -2863 ($ |#1|)) (-15 -1579 ($)) (-15 -3096 ($ $ |#1|)) (-15 -2863 ($ $ |#1|)) (-15 -1579 ($ $)) (-15 -2070 (|#1| $ |#1|)) (-15 -2070 ((-833 |#1|) $ (-833 |#1|))))) (-365)) (T -718))
-((-1854 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-3096 (*1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-2863 (*1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-1579 (*1 *1) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-3096 (*1 *1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-2863 (*1 *1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-1579 (*1 *1 *1) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-2070 (*1 *2 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-2070 (*1 *2 *1 *2) (-12 (-5 *2 (-833 *3)) (-4 *3 (-365)) (-5 *1 (-718 *3)))))
-(-13 (-475) (-10 -8 (-15 -1854 ($ |#1| |#1| |#1| |#1|)) (-15 -3096 ($ |#1|)) (-15 -2863 ($ |#1|)) (-15 -1579 ($)) (-15 -3096 ($ $ |#1|)) (-15 -2863 ($ $ |#1|)) (-15 -1579 ($ $)) (-15 -2070 (|#1| $ |#1|)) (-15 -2070 ((-833 |#1|) $ (-833 |#1|)))))
-((-2258 (($ $ (-921)) 21)) (-4171 (($ $ (-921)) 22)) (** (($ $ (-921)) 10)))
-(((-719 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-921))) (-15 -4171 (|#1| |#1| (-921))) (-15 -2258 (|#1| |#1| (-921)))) (-720)) (T -719))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-921))) (-15 -4171 (|#1| |#1| (-921))) (-15 -2258 (|#1| |#1| (-921))))
-((-2985 (((-112) $ $) 7)) (-2258 (($ $ (-921)) 16)) (-4171 (($ $ (-921)) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)) (** (($ $ (-921)) 14)) (* (($ $ $) 17)))
+((-3009 (((-112) $ $) NIL)) (-3129 (($ |#1|) 17) (($ $ |#1|) 20)) (-2239 (($ |#1|) 18) (($ $ |#1|) 21)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-3466 (((-112) $) NIL)) (-2667 (($ |#1| |#1| |#1| |#1|) 8)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 16)) (-4056 (((-1119) $) NIL)) (-2095 ((|#1| $ |#1|) 24) (((-833 |#1|) $ (-833 |#1|)) 32)) (-3850 (($ $ $) NIL)) (-1783 (($ $ $) NIL)) (-3780 (((-862) $) 39)) (-3801 (((-112) $ $) NIL)) (-4333 (($) 9 T CONST)) (-2950 (((-112) $ $) 48)) (-3062 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ $ $) 14)))
+(((-718 |#1|) (-13 (-475) (-10 -8 (-15 -2667 ($ |#1| |#1| |#1| |#1|)) (-15 -3129 ($ |#1|)) (-15 -2239 ($ |#1|)) (-15 -2928 ($)) (-15 -3129 ($ $ |#1|)) (-15 -2239 ($ $ |#1|)) (-15 -2928 ($ $)) (-15 -2095 (|#1| $ |#1|)) (-15 -2095 ((-833 |#1|) $ (-833 |#1|))))) (-365)) (T -718))
+((-2667 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-3129 (*1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-2239 (*1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-2928 (*1 *1) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-3129 (*1 *1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-2239 (*1 *1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-2928 (*1 *1 *1) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-2095 (*1 *2 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))) (-2095 (*1 *2 *1 *2) (-12 (-5 *2 (-833 *3)) (-4 *3 (-365)) (-5 *1 (-718 *3)))))
+(-13 (-475) (-10 -8 (-15 -2667 ($ |#1| |#1| |#1| |#1|)) (-15 -3129 ($ |#1|)) (-15 -2239 ($ |#1|)) (-15 -2928 ($)) (-15 -3129 ($ $ |#1|)) (-15 -2239 ($ $ |#1|)) (-15 -2928 ($ $)) (-15 -2095 (|#1| $ |#1|)) (-15 -2095 ((-833 |#1|) $ (-833 |#1|)))))
+((-2400 (($ $ (-921)) 21)) (-3231 (($ $ (-921)) 22)) (** (($ $ (-921)) 10)))
+(((-719 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-921))) (-15 -3231 (|#1| |#1| (-921))) (-15 -2400 (|#1| |#1| (-921)))) (-720)) (T -719))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-921))) (-15 -3231 (|#1| |#1| (-921))) (-15 -2400 (|#1| |#1| (-921))))
+((-3009 (((-112) $ $) 7)) (-2400 (($ $ (-921)) 16)) (-3231 (($ $ (-921)) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)) (** (($ $ (-921)) 14)) (* (($ $ $) 17)))
(((-720) (-140)) (T -720))
-((* (*1 *1 *1 *1) (-4 *1 (-720))) (-2258 (*1 *1 *1 *2) (-12 (-4 *1 (-720)) (-5 *2 (-921)))) (-4171 (*1 *1 *1 *2) (-12 (-4 *1 (-720)) (-5 *2 (-921)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-720)) (-5 *2 (-921)))))
-(-13 (-1099) (-10 -8 (-15 * ($ $ $)) (-15 -2258 ($ $ (-921))) (-15 -4171 ($ $ (-921))) (-15 ** ($ $ (-921)))))
+((* (*1 *1 *1 *1) (-4 *1 (-720))) (-2400 (*1 *1 *1 *2) (-12 (-4 *1 (-720)) (-5 *2 (-921)))) (-3231 (*1 *1 *1 *2) (-12 (-4 *1 (-720)) (-5 *2 (-921)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-720)) (-5 *2 (-921)))))
+(-13 (-1099) (-10 -8 (-15 * ($ $ $)) (-15 -2400 ($ $ (-921))) (-15 -3231 ($ $ (-921))) (-15 ** ($ $ (-921)))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2258 (($ $ (-921)) NIL) (($ $ (-771)) 21)) (-2741 (((-112) $) 10)) (-4171 (($ $ (-921)) NIL) (($ $ (-771)) 22)) (** (($ $ (-921)) NIL) (($ $ (-771)) 16)))
-(((-721 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-771))) (-15 -4171 (|#1| |#1| (-771))) (-15 -2258 (|#1| |#1| (-771))) (-15 -2741 ((-112) |#1|)) (-15 ** (|#1| |#1| (-921))) (-15 -4171 (|#1| |#1| (-921))) (-15 -2258 (|#1| |#1| (-921)))) (-722)) (T -721))
+((-2400 (($ $ (-921)) NIL) (($ $ (-771)) 21)) (-3466 (((-112) $) 10)) (-3231 (($ $ (-921)) NIL) (($ $ (-771)) 22)) (** (($ $ (-921)) NIL) (($ $ (-771)) 16)))
+(((-721 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-771))) (-15 -3231 (|#1| |#1| (-771))) (-15 -2400 (|#1| |#1| (-771))) (-15 -3466 ((-112) |#1|)) (-15 ** (|#1| |#1| (-921))) (-15 -3231 (|#1| |#1| (-921))) (-15 -2400 (|#1| |#1| (-921)))) (-722)) (T -721))
NIL
-(-10 -8 (-15 ** (|#1| |#1| (-771))) (-15 -4171 (|#1| |#1| (-771))) (-15 -2258 (|#1| |#1| (-771))) (-15 -2741 ((-112) |#1|)) (-15 ** (|#1| |#1| (-921))) (-15 -4171 (|#1| |#1| (-921))) (-15 -2258 (|#1| |#1| (-921))))
-((-2985 (((-112) $ $) 7)) (-3152 (((-3 $ "failed") $) 18)) (-2258 (($ $ (-921)) 16) (($ $ (-771)) 23)) (-1579 (((-3 $ "failed") $) 20)) (-2741 (((-112) $) 24)) (-2318 (((-3 $ "failed") $) 19)) (-4171 (($ $ (-921)) 15) (($ $ (-771)) 22)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2495 (($) 25 T CONST)) (-2940 (((-112) $ $) 6)) (** (($ $ (-921)) 14) (($ $ (-771)) 21)) (* (($ $ $) 17)))
+(-10 -8 (-15 ** (|#1| |#1| (-771))) (-15 -3231 (|#1| |#1| (-771))) (-15 -2400 (|#1| |#1| (-771))) (-15 -3466 ((-112) |#1|)) (-15 ** (|#1| |#1| (-921))) (-15 -3231 (|#1| |#1| (-921))) (-15 -2400 (|#1| |#1| (-921))))
+((-3009 (((-112) $ $) 7)) (-4029 (((-3 $ "failed") $) 18)) (-2400 (($ $ (-921)) 16) (($ $ (-771)) 23)) (-2928 (((-3 $ "failed") $) 20)) (-3466 (((-112) $) 24)) (-1787 (((-3 $ "failed") $) 19)) (-3231 (($ $ (-921)) 15) (($ $ (-771)) 22)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-4333 (($) 25 T CONST)) (-2950 (((-112) $ $) 6)) (** (($ $ (-921)) 14) (($ $ (-771)) 21)) (* (($ $ $) 17)))
(((-722) (-140)) (T -722))
-((-2495 (*1 *1) (-4 *1 (-722))) (-2741 (*1 *2 *1) (-12 (-4 *1 (-722)) (-5 *2 (-112)))) (-2258 (*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-771)))) (-4171 (*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-771)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-771)))) (-1579 (*1 *1 *1) (|partial| -4 *1 (-722))) (-2318 (*1 *1 *1) (|partial| -4 *1 (-722))) (-3152 (*1 *1 *1) (|partial| -4 *1 (-722))))
-(-13 (-720) (-10 -8 (-15 (-2495) ($) -1655) (-15 -2741 ((-112) $)) (-15 -2258 ($ $ (-771))) (-15 -4171 ($ $ (-771))) (-15 ** ($ $ (-771))) (-15 -1579 ((-3 $ "failed") $)) (-15 -2318 ((-3 $ "failed") $)) (-15 -3152 ((-3 $ "failed") $))))
+((-4333 (*1 *1) (-4 *1 (-722))) (-3466 (*1 *2 *1) (-12 (-4 *1 (-722)) (-5 *2 (-112)))) (-2400 (*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-771)))) (-3231 (*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-771)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-771)))) (-2928 (*1 *1 *1) (|partial| -4 *1 (-722))) (-1787 (*1 *1 *1) (|partial| -4 *1 (-722))) (-4029 (*1 *1 *1) (|partial| -4 *1 (-722))))
+(-13 (-720) (-10 -8 (-15 (-4333) ($) -2460) (-15 -3466 ((-112) $)) (-15 -2400 ($ $ (-771))) (-15 -3231 ($ $ (-771))) (-15 ** ($ $ (-771))) (-15 -2928 ((-3 $ "failed") $)) (-15 -1787 ((-3 $ "failed") $)) (-15 -4029 ((-3 $ "failed") $))))
(((-102) . T) ((-613 (-862)) . T) ((-720) . T) ((-1099) . T))
-((-4025 (((-771)) 42)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#2| "failed") $) 26)) (-1756 (((-566) $) NIL) (((-409 (-566)) $) NIL) ((|#2| $) 23)) (-4362 (($ |#3|) NIL) (((-3 $ "failed") (-409 |#3|)) 53)) (-1579 (((-3 $ "failed") $) 73)) (-3335 (($) 47)) (-1559 ((|#2| $) 21)) (-4067 (($) 18)) (-2862 (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 61) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)) (-3042 (((-689 |#2|) (-1264 $) (-1 |#2| |#2|)) 68)) (-3134 (((-1264 |#2|) $) NIL) (($ (-1264 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-1963 ((|#3| $) 39)) (-1990 (((-1264 $)) 36)))
-(((-723 |#1| |#2| |#3|) (-10 -8 (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -3335 (|#1|)) (-15 -4025 ((-771))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -3042 ((-689 |#2|) (-1264 |#1|) (-1 |#2| |#2|))) (-15 -4362 ((-3 |#1| "failed") (-409 |#3|))) (-15 -3134 (|#1| |#3|)) (-15 -4362 (|#1| |#3|)) (-15 -4067 (|#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -3134 (|#3| |#1|)) (-15 -3134 (|#1| (-1264 |#2|))) (-15 -3134 ((-1264 |#2|) |#1|)) (-15 -1990 ((-1264 |#1|))) (-15 -1963 (|#3| |#1|)) (-15 -1559 (|#2| |#1|)) (-15 -1579 ((-3 |#1| "failed") |#1|))) (-724 |#2| |#3|) (-172) (-1240 |#2|)) (T -723))
-((-4025 (*1 *2) (-12 (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-771)) (-5 *1 (-723 *3 *4 *5)) (-4 *3 (-724 *4 *5)))))
-(-10 -8 (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -3335 (|#1|)) (-15 -4025 ((-771))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -3042 ((-689 |#2|) (-1264 |#1|) (-1 |#2| |#2|))) (-15 -4362 ((-3 |#1| "failed") (-409 |#3|))) (-15 -3134 (|#1| |#3|)) (-15 -4362 (|#1| |#3|)) (-15 -4067 (|#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -3134 (|#3| |#1|)) (-15 -3134 (|#1| (-1264 |#2|))) (-15 -3134 ((-1264 |#2|) |#1|)) (-15 -1990 ((-1264 |#1|))) (-15 -1963 (|#3| |#1|)) (-15 -1559 (|#2| |#1|)) (-15 -1579 ((-3 |#1| "failed") |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 102 (|has| |#1| (-365)))) (-3653 (($ $) 103 (|has| |#1| (-365)))) (-2152 (((-112) $) 105 (|has| |#1| (-365)))) (-3953 (((-689 |#1|) (-1264 $)) 53) (((-689 |#1|)) 68)) (-3817 ((|#1| $) 59)) (-4324 (((-1187 (-921) (-771)) (-566)) 155 (|has| |#1| (-351)))) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 122 (|has| |#1| (-365)))) (-1370 (((-420 $) $) 123 (|has| |#1| (-365)))) (-1561 (((-112) $ $) 113 (|has| |#1| (-365)))) (-4025 (((-771)) 96 (|has| |#1| (-370)))) (-2342 (($) 18 T CONST)) (-2977 (((-3 (-566) "failed") $) 178 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 176 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 173)) (-1756 (((-566) $) 177 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 175 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 174)) (-1547 (($ (-1264 |#1|) (-1264 $)) 55) (($ (-1264 |#1|)) 71)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-351)))) (-2926 (($ $ $) 117 (|has| |#1| (-365)))) (-1929 (((-689 |#1|) $ (-1264 $)) 60) (((-689 |#1|) $) 66)) (-1628 (((-689 (-566)) (-689 $)) 172 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 171 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 170) (((-689 |#1|) (-689 $)) 169)) (-4362 (($ |#2|) 166) (((-3 $ "failed") (-409 |#2|)) 163 (|has| |#1| (-365)))) (-1579 (((-3 $ "failed") $) 37)) (-1821 (((-921)) 61)) (-3335 (($) 99 (|has| |#1| (-370)))) (-2938 (($ $ $) 116 (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 111 (|has| |#1| (-365)))) (-3092 (($) 157 (|has| |#1| (-351)))) (-3449 (((-112) $) 158 (|has| |#1| (-351)))) (-3626 (($ $ (-771)) 149 (|has| |#1| (-351))) (($ $) 148 (|has| |#1| (-351)))) (-2635 (((-112) $) 124 (|has| |#1| (-365)))) (-2716 (((-921) $) 160 (|has| |#1| (-351))) (((-833 (-921)) $) 146 (|has| |#1| (-351)))) (-2741 (((-112) $) 35)) (-1559 ((|#1| $) 58)) (-2546 (((-3 $ "failed") $) 150 (|has| |#1| (-351)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 120 (|has| |#1| (-365)))) (-3929 ((|#2| $) 51 (|has| |#1| (-365)))) (-3712 (((-921) $) 98 (|has| |#1| (-370)))) (-4350 ((|#2| $) 164)) (-2184 (($ (-644 $)) 109 (|has| |#1| (-365))) (($ $ $) 108 (|has| |#1| (-365)))) (-2878 (((-1157) $) 10)) (-2626 (($ $) 125 (|has| |#1| (-365)))) (-2759 (($) 151 (|has| |#1| (-351)) CONST)) (-2168 (($ (-921)) 97 (|has| |#1| (-370)))) (-4033 (((-1119) $) 11)) (-4067 (($) 168)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 110 (|has| |#1| (-365)))) (-2222 (($ (-644 $)) 107 (|has| |#1| (-365))) (($ $ $) 106 (|has| |#1| (-365)))) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) 154 (|has| |#1| (-351)))) (-2391 (((-420 $) $) 121 (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 118 (|has| |#1| (-365)))) (-2972 (((-3 $ "failed") $ $) 101 (|has| |#1| (-365)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 112 (|has| |#1| (-365)))) (-1813 (((-771) $) 114 (|has| |#1| (-365)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 115 (|has| |#1| (-365)))) (-2408 ((|#1| (-1264 $)) 54) ((|#1|) 67)) (-3379 (((-771) $) 159 (|has| |#1| (-351))) (((-3 (-771) "failed") $ $) 147 (|has| |#1| (-351)))) (-2862 (($ $) 145 (-2805 (-2438 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-771)) 143 (-2805 (-2438 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-1175)) 141 (-2438 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-644 (-1175))) 140 (-2438 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-1175) (-771)) 139 (-2438 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 (-771))) 138 (-2438 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-1 |#1| |#1|) (-771)) 131 (|has| |#1| (-365))) (($ $ (-1 |#1| |#1|)) 130 (|has| |#1| (-365)))) (-3042 (((-689 |#1|) (-1264 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-365)))) (-2127 ((|#2|) 167)) (-1536 (($) 156 (|has| |#1| (-351)))) (-2770 (((-1264 |#1|) $ (-1264 $)) 57) (((-689 |#1|) (-1264 $) (-1264 $)) 56) (((-1264 |#1|) $) 73) (((-689 |#1|) (-1264 $)) 72)) (-3134 (((-1264 |#1|) $) 70) (($ (-1264 |#1|)) 69) ((|#2| $) 179) (($ |#2|) 165)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 153 (|has| |#1| (-351)))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44) (($ $) 100 (|has| |#1| (-365))) (($ (-409 (-566))) 95 (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566))))))) (-3842 (($ $) 152 (|has| |#1| (-351))) (((-3 $ "failed") $) 50 (|has| |#1| (-145)))) (-1963 ((|#2| $) 52)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1990 (((-1264 $)) 74)) (-1634 (((-112) $ $) 104 (|has| |#1| (-365)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $) 144 (-2805 (-2438 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-771)) 142 (-2805 (-2438 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-1175)) 137 (-2438 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-644 (-1175))) 136 (-2438 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-1175) (-771)) 135 (-2438 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 (-771))) 134 (-2438 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-1 |#1| |#1|) (-771)) 133 (|has| |#1| (-365))) (($ $ (-1 |#1| |#1|)) 132 (|has| |#1| (-365)))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 129 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 126 (|has| |#1| (-365)))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ (-409 (-566)) $) 128 (|has| |#1| (-365))) (($ $ (-409 (-566))) 127 (|has| |#1| (-365)))))
+((-4070 (((-771)) 42)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#2| "failed") $) 26)) (-1867 (((-566) $) NIL) (((-409 (-566)) $) NIL) ((|#2| $) 23)) (-1580 (($ |#3|) NIL) (((-3 $ "failed") (-409 |#3|)) 53)) (-2928 (((-3 $ "failed") $) 73)) (-1618 (($) 47)) (-2719 ((|#2| $) 21)) (-4152 (($) 18)) (-2578 (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 61) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)) (-4359 (((-689 |#2|) (-1264 $) (-1 |#2| |#2|)) 68)) (-3204 (((-1264 |#2|) $) NIL) (($ (-1264 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-4370 ((|#3| $) 39)) (-1575 (((-1264 $)) 36)))
+(((-723 |#1| |#2| |#3|) (-10 -8 (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -1618 (|#1|)) (-15 -4070 ((-771))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -4359 ((-689 |#2|) (-1264 |#1|) (-1 |#2| |#2|))) (-15 -1580 ((-3 |#1| "failed") (-409 |#3|))) (-15 -3204 (|#1| |#3|)) (-15 -1580 (|#1| |#3|)) (-15 -4152 (|#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3204 (|#3| |#1|)) (-15 -3204 (|#1| (-1264 |#2|))) (-15 -3204 ((-1264 |#2|) |#1|)) (-15 -1575 ((-1264 |#1|))) (-15 -4370 (|#3| |#1|)) (-15 -2719 (|#2| |#1|)) (-15 -2928 ((-3 |#1| "failed") |#1|))) (-724 |#2| |#3|) (-172) (-1240 |#2|)) (T -723))
+((-4070 (*1 *2) (-12 (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-771)) (-5 *1 (-723 *3 *4 *5)) (-4 *3 (-724 *4 *5)))))
+(-10 -8 (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -1618 (|#1|)) (-15 -4070 ((-771))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -4359 ((-689 |#2|) (-1264 |#1|) (-1 |#2| |#2|))) (-15 -1580 ((-3 |#1| "failed") (-409 |#3|))) (-15 -3204 (|#1| |#3|)) (-15 -1580 (|#1| |#3|)) (-15 -4152 (|#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3204 (|#3| |#1|)) (-15 -3204 (|#1| (-1264 |#2|))) (-15 -3204 ((-1264 |#2|) |#1|)) (-15 -1575 ((-1264 |#1|))) (-15 -4370 (|#3| |#1|)) (-15 -2719 (|#2| |#1|)) (-15 -2928 ((-3 |#1| "failed") |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 102 (|has| |#1| (-365)))) (-1968 (($ $) 103 (|has| |#1| (-365)))) (-2644 (((-112) $) 105 (|has| |#1| (-365)))) (-2965 (((-689 |#1|) (-1264 $)) 53) (((-689 |#1|)) 68)) (-3834 ((|#1| $) 59)) (-2277 (((-1187 (-921) (-771)) (-566)) 155 (|has| |#1| (-351)))) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 122 (|has| |#1| (-365)))) (-3271 (((-420 $) $) 123 (|has| |#1| (-365)))) (-2738 (((-112) $ $) 113 (|has| |#1| (-365)))) (-4070 (((-771)) 96 (|has| |#1| (-370)))) (-3877 (($) 18 T CONST)) (-3066 (((-3 (-566) "failed") $) 178 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 176 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 173)) (-1867 (((-566) $) 177 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 175 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 174)) (-2613 (($ (-1264 |#1|) (-1264 $)) 55) (($ (-1264 |#1|)) 71)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-351)))) (-2949 (($ $ $) 117 (|has| |#1| (-365)))) (-2205 (((-689 |#1|) $ (-1264 $)) 60) (((-689 |#1|) $) 66)) (-2210 (((-689 (-566)) (-689 $)) 172 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 171 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 170) (((-689 |#1|) (-689 $)) 169)) (-1580 (($ |#2|) 166) (((-3 $ "failed") (-409 |#2|)) 163 (|has| |#1| (-365)))) (-2928 (((-3 $ "failed") $) 37)) (-4157 (((-921)) 61)) (-1618 (($) 99 (|has| |#1| (-370)))) (-2960 (($ $ $) 116 (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 111 (|has| |#1| (-365)))) (-1676 (($) 157 (|has| |#1| (-351)))) (-3698 (((-112) $) 158 (|has| |#1| (-351)))) (-2901 (($ $ (-771)) 149 (|has| |#1| (-351))) (($ $) 148 (|has| |#1| (-351)))) (-1784 (((-112) $) 124 (|has| |#1| (-365)))) (-3227 (((-921) $) 160 (|has| |#1| (-351))) (((-833 (-921)) $) 146 (|has| |#1| (-351)))) (-3466 (((-112) $) 35)) (-2719 ((|#1| $) 58)) (-2133 (((-3 $ "failed") $) 150 (|has| |#1| (-351)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 120 (|has| |#1| (-365)))) (-2750 ((|#2| $) 51 (|has| |#1| (-365)))) (-1299 (((-921) $) 98 (|has| |#1| (-370)))) (-1567 ((|#2| $) 164)) (-2197 (($ (-644 $)) 109 (|has| |#1| (-365))) (($ $ $) 108 (|has| |#1| (-365)))) (-2402 (((-1157) $) 10)) (-3584 (($ $) 125 (|has| |#1| (-365)))) (-3625 (($) 151 (|has| |#1| (-351)) CONST)) (-2208 (($ (-921)) 97 (|has| |#1| (-370)))) (-4056 (((-1119) $) 11)) (-4152 (($) 168)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 110 (|has| |#1| (-365)))) (-2235 (($ (-644 $)) 107 (|has| |#1| (-365))) (($ $ $) 106 (|has| |#1| (-365)))) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) 154 (|has| |#1| (-351)))) (-2473 (((-420 $) $) 121 (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 118 (|has| |#1| (-365)))) (-2997 (((-3 $ "failed") $ $) 101 (|has| |#1| (-365)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 112 (|has| |#1| (-365)))) (-3470 (((-771) $) 114 (|has| |#1| (-365)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 115 (|has| |#1| (-365)))) (-3309 ((|#1| (-1264 $)) 54) ((|#1|) 67)) (-2347 (((-771) $) 159 (|has| |#1| (-351))) (((-3 (-771) "failed") $ $) 147 (|has| |#1| (-351)))) (-2578 (($ $) 145 (-2805 (-2447 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-771)) 143 (-2805 (-2447 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-1175)) 141 (-2447 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-644 (-1175))) 140 (-2447 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-1175) (-771)) 139 (-2447 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 (-771))) 138 (-2447 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-1 |#1| |#1|) (-771)) 131 (|has| |#1| (-365))) (($ $ (-1 |#1| |#1|)) 130 (|has| |#1| (-365)))) (-4359 (((-689 |#1|) (-1264 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-365)))) (-3601 ((|#2|) 167)) (-2507 (($) 156 (|has| |#1| (-351)))) (-2543 (((-1264 |#1|) $ (-1264 $)) 57) (((-689 |#1|) (-1264 $) (-1264 $)) 56) (((-1264 |#1|) $) 73) (((-689 |#1|) (-1264 $)) 72)) (-3204 (((-1264 |#1|) $) 70) (($ (-1264 |#1|)) 69) ((|#2| $) 179) (($ |#2|) 165)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 153 (|has| |#1| (-351)))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44) (($ $) 100 (|has| |#1| (-365))) (($ (-409 (-566))) 95 (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566))))))) (-3226 (($ $) 152 (|has| |#1| (-351))) (((-3 $ "failed") $) 50 (|has| |#1| (-145)))) (-4370 ((|#2| $) 52)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-1575 (((-1264 $)) 74)) (-2278 (((-112) $ $) 104 (|has| |#1| (-365)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $) 144 (-2805 (-2447 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-771)) 142 (-2805 (-2447 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-1175)) 137 (-2447 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-644 (-1175))) 136 (-2447 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-1175) (-771)) 135 (-2447 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 (-771))) 134 (-2447 (|has| |#1| (-900 (-1175))) (|has| |#1| (-365)))) (($ $ (-1 |#1| |#1|) (-771)) 133 (|has| |#1| (-365))) (($ $ (-1 |#1| |#1|)) 132 (|has| |#1| (-365)))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 129 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 126 (|has| |#1| (-365)))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ (-409 (-566)) $) 128 (|has| |#1| (-365))) (($ $ (-409 (-566))) 127 (|has| |#1| (-365)))))
(((-724 |#1| |#2|) (-140) (-172) (-1240 |t#1|)) (T -724))
-((-4067 (*1 *1) (-12 (-4 *2 (-172)) (-4 *1 (-724 *2 *3)) (-4 *3 (-1240 *2)))) (-2127 (*1 *2) (-12 (-4 *1 (-724 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3)))) (-4362 (*1 *1 *2) (-12 (-4 *3 (-172)) (-4 *1 (-724 *3 *2)) (-4 *2 (-1240 *3)))) (-3134 (*1 *1 *2) (-12 (-4 *3 (-172)) (-4 *1 (-724 *3 *2)) (-4 *2 (-1240 *3)))) (-4350 (*1 *2 *1) (-12 (-4 *1 (-724 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3)))) (-4362 (*1 *1 *2) (|partial| -12 (-5 *2 (-409 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-365)) (-4 *3 (-172)) (-4 *1 (-724 *3 *4)))) (-3042 (*1 *2 *3 *4) (-12 (-5 *3 (-1264 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-365)) (-4 *1 (-724 *5 *6)) (-4 *5 (-172)) (-4 *6 (-1240 *5)) (-5 *2 (-689 *5)))))
-(-13 (-411 |t#1| |t#2|) (-172) (-614 |t#2|) (-413 |t#1|) (-379 |t#1|) (-10 -8 (-15 -4067 ($)) (-15 -2127 (|t#2|)) (-15 -4362 ($ |t#2|)) (-15 -3134 ($ |t#2|)) (-15 -4350 (|t#2| $)) (IF (|has| |t#1| (-370)) (-6 (-370)) |%noBranch|) (IF (|has| |t#1| (-365)) (PROGN (-6 (-365)) (-6 (-231 |t#1|)) (-15 -4362 ((-3 $ "failed") (-409 |t#2|))) (-15 -3042 ((-689 |t#1|) (-1264 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-351)) (-6 (-351)) |%noBranch|)))
+((-4152 (*1 *1) (-12 (-4 *2 (-172)) (-4 *1 (-724 *2 *3)) (-4 *3 (-1240 *2)))) (-3601 (*1 *2) (-12 (-4 *1 (-724 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3)))) (-1580 (*1 *1 *2) (-12 (-4 *3 (-172)) (-4 *1 (-724 *3 *2)) (-4 *2 (-1240 *3)))) (-3204 (*1 *1 *2) (-12 (-4 *3 (-172)) (-4 *1 (-724 *3 *2)) (-4 *2 (-1240 *3)))) (-1567 (*1 *2 *1) (-12 (-4 *1 (-724 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3)))) (-1580 (*1 *1 *2) (|partial| -12 (-5 *2 (-409 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-365)) (-4 *3 (-172)) (-4 *1 (-724 *3 *4)))) (-4359 (*1 *2 *3 *4) (-12 (-5 *3 (-1264 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-365)) (-4 *1 (-724 *5 *6)) (-4 *5 (-172)) (-4 *6 (-1240 *5)) (-5 *2 (-689 *5)))))
+(-13 (-411 |t#1| |t#2|) (-172) (-614 |t#2|) (-413 |t#1|) (-379 |t#1|) (-10 -8 (-15 -4152 ($)) (-15 -3601 (|t#2|)) (-15 -1580 ($ |t#2|)) (-15 -3204 ($ |t#2|)) (-15 -1567 (|t#2| $)) (IF (|has| |t#1| (-370)) (-6 (-370)) |%noBranch|) (IF (|has| |t#1| (-365)) (PROGN (-6 (-365)) (-6 (-231 |t#1|)) (-15 -1580 ((-3 $ "failed") (-409 |t#2|))) (-15 -4359 ((-689 |t#1|) (-1264 $) (-1 |t#1| |t#1|)))) |%noBranch|) (IF (|has| |t#1| (-351)) (-6 (-351)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-38 |#1|) . T) ((-38 $) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-102) . T) ((-111 #0# #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -2805 (|has| |#1| (-351)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-616 #0#) -2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-351)) (|has| |#1| (-365))) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-616 $) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-613 (-862)) . T) ((-172) . T) ((-614 |#2|) . T) ((-231 |#1|) |has| |#1| (-365)) ((-233) -2805 (|has| |#1| (-351)) (-12 (|has| |#1| (-233)) (|has| |#1| (-365)))) ((-243) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-291) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-308) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-365) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-404) |has| |#1| (-351)) ((-370) -2805 (|has| |#1| (-370)) (|has| |#1| (-351))) ((-351) |has| |#1| (-351)) ((-372 |#1| |#2|) . T) ((-411 |#1| |#2|) . T) ((-379 |#1|) . T) ((-413 |#1|) . T) ((-454) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-558) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-646 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-640 |#1|) . T) ((-640 $) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-639 (-566)) |has| |#1| (-639 (-566))) ((-639 |#1|) . T) ((-717 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-717 |#1|) . T) ((-717 $) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-726) . T) ((-900 (-1175)) -12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175)))) ((-920) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-1038 (-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T) ((-1051 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1056 #0#) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))) ((-1056 |#1|) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1150) |has| |#1| (-351)) ((-1218) -2805 (|has| |#1| (-351)) (|has| |#1| (-365))))
-((-2342 (($) 11)) (-1579 (((-3 $ "failed") $) 14)) (-2741 (((-112) $) 10)) (** (($ $ (-921)) NIL) (($ $ (-771)) 20)))
-(((-725 |#1|) (-10 -8 (-15 -1579 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-771))) (-15 -2741 ((-112) |#1|)) (-15 -2342 (|#1|)) (-15 ** (|#1| |#1| (-921)))) (-726)) (T -725))
+((-3877 (($) 11)) (-2928 (((-3 $ "failed") $) 14)) (-3466 (((-112) $) 10)) (** (($ $ (-921)) NIL) (($ $ (-771)) 20)))
+(((-725 |#1|) (-10 -8 (-15 -2928 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-771))) (-15 -3466 ((-112) |#1|)) (-15 -3877 (|#1|)) (-15 ** (|#1| |#1| (-921)))) (-726)) (T -725))
NIL
-(-10 -8 (-15 -1579 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-771))) (-15 -2741 ((-112) |#1|)) (-15 -2342 (|#1|)) (-15 ** (|#1| |#1| (-921))))
-((-2985 (((-112) $ $) 7)) (-2342 (($) 19 T CONST)) (-1579 (((-3 $ "failed") $) 16)) (-2741 (((-112) $) 18)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2495 (($) 20 T CONST)) (-2940 (((-112) $ $) 6)) (** (($ $ (-921)) 14) (($ $ (-771)) 17)) (* (($ $ $) 15)))
+(-10 -8 (-15 -2928 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-771))) (-15 -3466 ((-112) |#1|)) (-15 -3877 (|#1|)) (-15 ** (|#1| |#1| (-921))))
+((-3009 (((-112) $ $) 7)) (-3877 (($) 19 T CONST)) (-2928 (((-3 $ "failed") $) 16)) (-3466 (((-112) $) 18)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-4333 (($) 20 T CONST)) (-2950 (((-112) $ $) 6)) (** (($ $ (-921)) 14) (($ $ (-771)) 17)) (* (($ $ $) 15)))
(((-726) (-140)) (T -726))
-((-2495 (*1 *1) (-4 *1 (-726))) (-2342 (*1 *1) (-4 *1 (-726))) (-2741 (*1 *2 *1) (-12 (-4 *1 (-726)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-771)))) (-1579 (*1 *1 *1) (|partial| -4 *1 (-726))))
-(-13 (-1111) (-10 -8 (-15 (-2495) ($) -1655) (-15 -2342 ($) -1655) (-15 -2741 ((-112) $)) (-15 ** ($ $ (-771))) (-15 -1579 ((-3 $ "failed") $))))
+((-4333 (*1 *1) (-4 *1 (-726))) (-3877 (*1 *1) (-4 *1 (-726))) (-3466 (*1 *2 *1) (-12 (-4 *1 (-726)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-771)))) (-2928 (*1 *1 *1) (|partial| -4 *1 (-726))))
+(-13 (-1111) (-10 -8 (-15 (-4333) ($) -2460) (-15 -3877 ($) -2460) (-15 -3466 ((-112) $)) (-15 ** ($ $ (-771))) (-15 -2928 ((-3 $ "failed") $))))
(((-102) . T) ((-613 (-862)) . T) ((-1111) . T) ((-1099) . T))
-((-2294 (((-2 (|:| -3792 (-420 |#2|)) (|:| |special| (-420 |#2|))) |#2| (-1 |#2| |#2|)) 39)) (-3473 (((-2 (|:| -3792 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-2111 ((|#2| (-409 |#2|) (-1 |#2| |#2|)) 13)) (-3282 (((-2 (|:| |poly| |#2|) (|:| -3792 (-409 |#2|)) (|:| |special| (-409 |#2|))) (-409 |#2|) (-1 |#2| |#2|)) 48)))
-(((-727 |#1| |#2|) (-10 -7 (-15 -3473 ((-2 (|:| -3792 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -2294 ((-2 (|:| -3792 (-420 |#2|)) (|:| |special| (-420 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -2111 (|#2| (-409 |#2|) (-1 |#2| |#2|))) (-15 -3282 ((-2 (|:| |poly| |#2|) (|:| -3792 (-409 |#2|)) (|:| |special| (-409 |#2|))) (-409 |#2|) (-1 |#2| |#2|)))) (-365) (-1240 |#1|)) (T -727))
-((-3282 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| |poly| *6) (|:| -3792 (-409 *6)) (|:| |special| (-409 *6)))) (-5 *1 (-727 *5 *6)) (-5 *3 (-409 *6)))) (-2111 (*1 *2 *3 *4) (-12 (-5 *3 (-409 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1240 *5)) (-5 *1 (-727 *5 *2)) (-4 *5 (-365)))) (-2294 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| -3792 (-420 *3)) (|:| |special| (-420 *3)))) (-5 *1 (-727 *5 *3)))) (-3473 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| -3792 *3) (|:| |special| *3))) (-5 *1 (-727 *5 *3)))))
-(-10 -7 (-15 -3473 ((-2 (|:| -3792 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -2294 ((-2 (|:| -3792 (-420 |#2|)) (|:| |special| (-420 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -2111 (|#2| (-409 |#2|) (-1 |#2| |#2|))) (-15 -3282 ((-2 (|:| |poly| |#2|) (|:| -3792 (-409 |#2|)) (|:| |special| (-409 |#2|))) (-409 |#2|) (-1 |#2| |#2|))))
-((-3860 ((|#7| (-644 |#5|) |#6|) NIL)) (-3077 ((|#7| (-1 |#5| |#4|) |#6|) 27)))
-(((-728 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -3077 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3860 (|#7| (-644 |#5|) |#6|))) (-850) (-793) (-793) (-1049) (-1049) (-949 |#4| |#2| |#1|) (-949 |#5| |#3| |#1|)) (T -728))
-((-3860 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *9)) (-4 *9 (-1049)) (-4 *5 (-850)) (-4 *6 (-793)) (-4 *8 (-1049)) (-4 *2 (-949 *9 *7 *5)) (-5 *1 (-728 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-793)) (-4 *4 (-949 *8 *6 *5)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1049)) (-4 *9 (-1049)) (-4 *5 (-850)) (-4 *6 (-793)) (-4 *2 (-949 *9 *7 *5)) (-5 *1 (-728 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-793)) (-4 *4 (-949 *8 *6 *5)))))
-(-10 -7 (-15 -3077 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3860 (|#7| (-644 |#5|) |#6|)))
-((-3077 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
-(((-729 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -3077 (|#7| (-1 |#2| |#1|) |#6|))) (-850) (-850) (-793) (-793) (-1049) (-949 |#5| |#3| |#1|) (-949 |#5| |#4| |#2|)) (T -729))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-850)) (-4 *6 (-850)) (-4 *7 (-793)) (-4 *9 (-1049)) (-4 *2 (-949 *9 *8 *6)) (-5 *1 (-729 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-793)) (-4 *4 (-949 *9 *7 *5)))))
-(-10 -7 (-15 -3077 (|#7| (-1 |#2| |#1|) |#6|)))
-((-2391 (((-420 |#4|) |#4|) 42)))
-(((-730 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2391 ((-420 |#4|) |#4|))) (-793) (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)) (-15 -1353 ((-3 $ "failed") (-1175))))) (-308) (-949 (-952 |#3|) |#1| |#2|)) (T -730))
-((-2391 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)) (-15 -1353 ((-3 $ "failed") (-1175)))))) (-4 *6 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-730 *4 *5 *6 *3)) (-4 *3 (-949 (-952 *6) *4 *5)))))
-(-10 -7 (-15 -2391 ((-420 |#4|) |#4|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-864 |#1|)) $) NIL)) (-2358 (((-1171 $) $ (-864 |#1|)) NIL) (((-1171 |#2|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#2| (-558)))) (-3653 (($ $) NIL (|has| |#2| (-558)))) (-2152 (((-112) $) NIL (|has| |#2| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-864 |#1|))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2857 (($ $) NIL (|has| |#2| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#2| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-864 |#1|) "failed") $) NIL)) (-1756 ((|#2| $) NIL) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-864 |#1|) $) NIL)) (-1552 (($ $ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-3577 (($ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#2| (-909)))) (-2804 (($ $ |#2| (-533 (-864 |#1|)) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-2530 (($ (-1171 |#2|) (-864 |#1|)) NIL) (($ (-1171 $) (-864 |#1|)) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#2| (-533 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-864 |#1|)) NIL)) (-3251 (((-533 (-864 |#1|)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-2132 (($ (-1 (-533 (-864 |#1|)) (-533 (-864 |#1|))) $) NIL)) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-3339 (((-3 (-864 |#1|) "failed") $) NIL)) (-3545 (($ $) NIL)) (-3557 ((|#2| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-2878 (((-1157) $) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-864 |#1|)) (|:| -3250 (-771))) "failed") $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 ((|#2| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#2| (-909)))) (-2972 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-558)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-864 |#1|) |#2|) NIL) (($ $ (-644 (-864 |#1|)) (-644 |#2|)) NIL) (($ $ (-864 |#1|) $) NIL) (($ $ (-644 (-864 |#1|)) (-644 $)) NIL)) (-2408 (($ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-2862 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3992 (((-533 (-864 |#1|)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-864 |#1|) (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3181 ((|#2| $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-864 |#1|)) NIL) (($ $) NIL (|has| |#2| (-558))) (($ (-409 (-566))) NIL (-2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566))))))) (-3868 (((-644 |#2|) $) NIL)) (-2022 ((|#2| $ (-533 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#2| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#2| (-558)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#2| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#2| (-38 (-409 (-566))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+((-1513 (((-2 (|:| -3362 (-420 |#2|)) (|:| |special| (-420 |#2|))) |#2| (-1 |#2| |#2|)) 39)) (-3920 (((-2 (|:| -3362 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-3443 ((|#2| (-409 |#2|) (-1 |#2| |#2|)) 13)) (-2731 (((-2 (|:| |poly| |#2|) (|:| -3362 (-409 |#2|)) (|:| |special| (-409 |#2|))) (-409 |#2|) (-1 |#2| |#2|)) 48)))
+(((-727 |#1| |#2|) (-10 -7 (-15 -3920 ((-2 (|:| -3362 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1513 ((-2 (|:| -3362 (-420 |#2|)) (|:| |special| (-420 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3443 (|#2| (-409 |#2|) (-1 |#2| |#2|))) (-15 -2731 ((-2 (|:| |poly| |#2|) (|:| -3362 (-409 |#2|)) (|:| |special| (-409 |#2|))) (-409 |#2|) (-1 |#2| |#2|)))) (-365) (-1240 |#1|)) (T -727))
+((-2731 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| |poly| *6) (|:| -3362 (-409 *6)) (|:| |special| (-409 *6)))) (-5 *1 (-727 *5 *6)) (-5 *3 (-409 *6)))) (-3443 (*1 *2 *3 *4) (-12 (-5 *3 (-409 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1240 *5)) (-5 *1 (-727 *5 *2)) (-4 *5 (-365)))) (-1513 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| -3362 (-420 *3)) (|:| |special| (-420 *3)))) (-5 *1 (-727 *5 *3)))) (-3920 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365)) (-5 *2 (-2 (|:| -3362 *3) (|:| |special| *3))) (-5 *1 (-727 *5 *3)))))
+(-10 -7 (-15 -3920 ((-2 (|:| -3362 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1513 ((-2 (|:| -3362 (-420 |#2|)) (|:| |special| (-420 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3443 (|#2| (-409 |#2|) (-1 |#2| |#2|))) (-15 -2731 ((-2 (|:| |poly| |#2|) (|:| -3362 (-409 |#2|)) (|:| |special| (-409 |#2|))) (-409 |#2|) (-1 |#2| |#2|))))
+((-3898 ((|#7| (-644 |#5|) |#6|) NIL)) (-3152 ((|#7| (-1 |#5| |#4|) |#6|) 27)))
+(((-728 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -3152 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3898 (|#7| (-644 |#5|) |#6|))) (-850) (-793) (-793) (-1049) (-1049) (-949 |#4| |#2| |#1|) (-949 |#5| |#3| |#1|)) (T -728))
+((-3898 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *9)) (-4 *9 (-1049)) (-4 *5 (-850)) (-4 *6 (-793)) (-4 *8 (-1049)) (-4 *2 (-949 *9 *7 *5)) (-5 *1 (-728 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-793)) (-4 *4 (-949 *8 *6 *5)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *9 *8)) (-4 *8 (-1049)) (-4 *9 (-1049)) (-4 *5 (-850)) (-4 *6 (-793)) (-4 *2 (-949 *9 *7 *5)) (-5 *1 (-728 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-793)) (-4 *4 (-949 *8 *6 *5)))))
+(-10 -7 (-15 -3152 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3898 (|#7| (-644 |#5|) |#6|)))
+((-3152 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
+(((-729 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -3152 (|#7| (-1 |#2| |#1|) |#6|))) (-850) (-850) (-793) (-793) (-1049) (-949 |#5| |#3| |#1|) (-949 |#5| |#4| |#2|)) (T -729))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-850)) (-4 *6 (-850)) (-4 *7 (-793)) (-4 *9 (-1049)) (-4 *2 (-949 *9 *8 *6)) (-5 *1 (-729 *5 *6 *7 *8 *9 *4 *2)) (-4 *8 (-793)) (-4 *4 (-949 *9 *7 *5)))))
+(-10 -7 (-15 -3152 (|#7| (-1 |#2| |#1|) |#6|)))
+((-2473 (((-420 |#4|) |#4|) 42)))
+(((-730 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2473 ((-420 |#4|) |#4|))) (-793) (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)) (-15 -1401 ((-3 $ "failed") (-1175))))) (-308) (-949 (-952 |#3|) |#1| |#2|)) (T -730))
+((-2473 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)) (-15 -1401 ((-3 $ "failed") (-1175)))))) (-4 *6 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-730 *4 *5 *6 *3)) (-4 *3 (-949 (-952 *6) *4 *5)))))
+(-10 -7 (-15 -2473 ((-420 |#4|) |#4|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-864 |#1|)) $) NIL)) (-2438 (((-1171 $) $ (-864 |#1|)) NIL) (((-1171 |#2|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#2| (-558)))) (-1968 (($ $) NIL (|has| |#2| (-558)))) (-2644 (((-112) $) NIL (|has| |#2| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-864 |#1|))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2179 (($ $) NIL (|has| |#2| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#2| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-864 |#1|) "failed") $) NIL)) (-1867 ((|#2| $) NIL) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-864 |#1|) $) NIL)) (-2662 (($ $ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-3645 (($ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#2| (-909)))) (-2871 (($ $ |#2| (-533 (-864 |#1|)) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-864 |#1|) (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2597 (($ (-1171 |#2|) (-864 |#1|)) NIL) (($ (-1171 $) (-864 |#1|)) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#2| (-533 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-864 |#1|)) NIL)) (-2466 (((-533 (-864 |#1|)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-2443 (($ (-1 (-533 (-864 |#1|)) (-533 (-864 |#1|))) $) NIL)) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-1984 (((-3 (-864 |#1|) "failed") $) NIL)) (-3614 (($ $) NIL)) (-3626 ((|#2| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-2402 (((-1157) $) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-864 |#1|)) (|:| -2456 (-771))) "failed") $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 ((|#2| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#2| (-909)))) (-2997 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-558)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-864 |#1|) |#2|) NIL) (($ $ (-644 (-864 |#1|)) (-644 |#2|)) NIL) (($ $ (-864 |#1|) $) NIL) (($ $ (-644 (-864 |#1|)) (-644 $)) NIL)) (-3309 (($ $ (-864 |#1|)) NIL (|has| |#2| (-172)))) (-2578 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2108 (((-533 (-864 |#1|)) $) NIL) (((-771) $ (-864 |#1|)) NIL) (((-644 (-771)) $ (-644 (-864 |#1|))) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-864 |#1|) (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-864 |#1|) (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3042 ((|#2| $) NIL (|has| |#2| (-454))) (($ $ (-864 |#1|)) NIL (|has| |#2| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-864 |#1|)) NIL) (($ $) NIL (|has| |#2| (-558))) (($ (-409 (-566))) NIL (-2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566))))))) (-3456 (((-644 |#2|) $) NIL)) (-3756 ((|#2| $ (-533 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#2| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#2| (-558)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-864 |#1|)) NIL) (($ $ (-644 (-864 |#1|))) NIL) (($ $ (-864 |#1|) (-771)) NIL) (($ $ (-644 (-864 |#1|)) (-644 (-771))) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#2| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#2| (-38 (-409 (-566))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
(((-731 |#1| |#2|) (-949 |#2| (-533 (-864 |#1|)) (-864 |#1|)) (-644 (-1175)) (-1049)) (T -731))
NIL
(-949 |#2| (-533 (-864 |#1|)) (-864 |#1|))
-((-2172 (((-2 (|:| -3711 (-952 |#3|)) (|:| -3317 (-952 |#3|))) |#4|) 14)) (-3268 ((|#4| |#4| |#2|) 33)) (-3126 ((|#4| (-409 (-952 |#3|)) |#2|) 64)) (-3496 ((|#4| (-1171 (-952 |#3|)) |#2|) 77)) (-3314 ((|#4| (-1171 |#4|) |#2|) 51)) (-1512 ((|#4| |#4| |#2|) 54)) (-2391 (((-420 |#4|) |#4|) 40)))
-(((-732 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2172 ((-2 (|:| -3711 (-952 |#3|)) (|:| -3317 (-952 |#3|))) |#4|)) (-15 -1512 (|#4| |#4| |#2|)) (-15 -3314 (|#4| (-1171 |#4|) |#2|)) (-15 -3268 (|#4| |#4| |#2|)) (-15 -3496 (|#4| (-1171 (-952 |#3|)) |#2|)) (-15 -3126 (|#4| (-409 (-952 |#3|)) |#2|)) (-15 -2391 ((-420 |#4|) |#4|))) (-793) (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)))) (-558) (-949 (-409 (-952 |#3|)) |#1| |#2|)) (T -732))
-((-2391 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))) (-4 *6 (-558)) (-5 *2 (-420 *3)) (-5 *1 (-732 *4 *5 *6 *3)) (-4 *3 (-949 (-409 (-952 *6)) *4 *5)))) (-3126 (*1 *2 *3 *4) (-12 (-4 *6 (-558)) (-4 *2 (-949 *3 *5 *4)) (-5 *1 (-732 *5 *4 *6 *2)) (-5 *3 (-409 (-952 *6))) (-4 *5 (-793)) (-4 *4 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))))) (-3496 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 (-952 *6))) (-4 *6 (-558)) (-4 *2 (-949 (-409 (-952 *6)) *5 *4)) (-5 *1 (-732 *5 *4 *6 *2)) (-4 *5 (-793)) (-4 *4 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))))) (-3268 (*1 *2 *2 *3) (-12 (-4 *4 (-793)) (-4 *3 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))) (-4 *5 (-558)) (-5 *1 (-732 *4 *3 *5 *2)) (-4 *2 (-949 (-409 (-952 *5)) *4 *3)))) (-3314 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *2)) (-4 *2 (-949 (-409 (-952 *6)) *5 *4)) (-5 *1 (-732 *5 *4 *6 *2)) (-4 *5 (-793)) (-4 *4 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))) (-4 *6 (-558)))) (-1512 (*1 *2 *2 *3) (-12 (-4 *4 (-793)) (-4 *3 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))) (-4 *5 (-558)) (-5 *1 (-732 *4 *3 *5 *2)) (-4 *2 (-949 (-409 (-952 *5)) *4 *3)))) (-2172 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))) (-4 *6 (-558)) (-5 *2 (-2 (|:| -3711 (-952 *6)) (|:| -3317 (-952 *6)))) (-5 *1 (-732 *4 *5 *6 *3)) (-4 *3 (-949 (-409 (-952 *6)) *4 *5)))))
-(-10 -7 (-15 -2172 ((-2 (|:| -3711 (-952 |#3|)) (|:| -3317 (-952 |#3|))) |#4|)) (-15 -1512 (|#4| |#4| |#2|)) (-15 -3314 (|#4| (-1171 |#4|) |#2|)) (-15 -3268 (|#4| |#4| |#2|)) (-15 -3496 (|#4| (-1171 (-952 |#3|)) |#2|)) (-15 -3126 (|#4| (-409 (-952 |#3|)) |#2|)) (-15 -2391 ((-420 |#4|) |#4|)))
-((-2391 (((-420 |#4|) |#4|) 54)))
-(((-733 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2391 ((-420 |#4|) |#4|))) (-793) (-850) (-13 (-308) (-147)) (-949 (-409 |#3|) |#1| |#2|)) (T -733))
-((-2391 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-13 (-308) (-147))) (-5 *2 (-420 *3)) (-5 *1 (-733 *4 *5 *6 *3)) (-4 *3 (-949 (-409 *6) *4 *5)))))
-(-10 -7 (-15 -2391 ((-420 |#4|) |#4|)))
-((-3077 (((-735 |#2| |#3|) (-1 |#2| |#1|) (-735 |#1| |#3|)) 18)))
-(((-734 |#1| |#2| |#3|) (-10 -7 (-15 -3077 ((-735 |#2| |#3|) (-1 |#2| |#1|) (-735 |#1| |#3|)))) (-1049) (-1049) (-726)) (T -734))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-735 *5 *7)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-4 *7 (-726)) (-5 *2 (-735 *6 *7)) (-5 *1 (-734 *5 *6 *7)))))
-(-10 -7 (-15 -3077 ((-735 |#2| |#3|) (-1 |#2| |#1|) (-735 |#1| |#3|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 38)) (-1530 (((-644 (-2 (|:| -3157 |#1|) (|:| -1966 |#2|))) $) 39)) (-4126 (((-3 $ "failed") $ $) NIL)) (-4025 (((-771)) 22 (-12 (|has| |#2| (-370)) (|has| |#1| (-370))))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) 78) (((-3 |#1| "failed") $) 81)) (-1756 ((|#2| $) NIL) ((|#1| $) NIL)) (-3577 (($ $) 104 (|has| |#2| (-850)))) (-1579 (((-3 $ "failed") $) 87)) (-3335 (($) 50 (-12 (|has| |#2| (-370)) (|has| |#1| (-370))))) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) 72)) (-1363 (((-644 $) $) 54)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| |#2|) 17)) (-3077 (($ (-1 |#1| |#1|) $) 70)) (-3712 (((-921) $) 45 (-12 (|has| |#2| (-370)) (|has| |#1| (-370))))) (-3545 ((|#2| $) 103 (|has| |#2| (-850)))) (-3557 ((|#1| $) 102 (|has| |#2| (-850)))) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) 37 (-12 (|has| |#2| (-370)) (|has| |#1| (-370))))) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 101) (($ (-566)) 61) (($ |#2|) 57) (($ |#1|) 58) (($ (-644 (-2 (|:| -3157 |#1|) (|:| -1966 |#2|)))) 11)) (-3868 (((-644 |#1|) $) 56)) (-2022 ((|#1| $ |#2|) 117)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 12 T CONST)) (-2495 (($) 46 T CONST)) (-2940 (((-112) $ $) 107)) (-3047 (($ $) 63) (($ $ $) NIL)) (-3034 (($ $ $) 35)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 68) (($ $ $) 120) (($ |#1| $) 65 (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
-(((-735 |#1| |#2|) (-13 (-1049) (-1038 |#2|) (-1038 |#1|) (-10 -8 (-15 -2519 ($ |#1| |#2|)) (-15 -2022 (|#1| $ |#2|)) (-15 -2512 ($ (-644 (-2 (|:| -3157 |#1|) (|:| -1966 |#2|))))) (-15 -1530 ((-644 (-2 (|:| -3157 |#1|) (|:| -1966 |#2|))) $)) (-15 -3077 ($ (-1 |#1| |#1|) $)) (-15 -4367 ((-112) $)) (-15 -3868 ((-644 |#1|) $)) (-15 -1363 ((-644 $) $)) (-15 -3505 ((-771) $)) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-370)) (IF (|has| |#2| (-370)) (-6 (-370)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-850)) (PROGN (-15 -3545 (|#2| $)) (-15 -3557 (|#1| $)) (-15 -3577 ($ $))) |%noBranch|))) (-1049) (-726)) (T -735))
-((-2519 (*1 *1 *2 *3) (-12 (-5 *1 (-735 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-726)))) (-2022 (*1 *2 *1 *3) (-12 (-4 *2 (-1049)) (-5 *1 (-735 *2 *3)) (-4 *3 (-726)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -3157 *3) (|:| -1966 *4)))) (-4 *3 (-1049)) (-4 *4 (-726)) (-5 *1 (-735 *3 *4)))) (-1530 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| -3157 *3) (|:| -1966 *4)))) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726)))) (-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-735 *3 *4)) (-4 *4 (-726)))) (-4367 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726)))) (-3868 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726)))) (-1363 (*1 *2 *1) (-12 (-5 *2 (-644 (-735 *3 *4))) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726)))) (-3505 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726)))) (-3545 (*1 *2 *1) (-12 (-4 *2 (-726)) (-4 *2 (-850)) (-5 *1 (-735 *3 *2)) (-4 *3 (-1049)))) (-3557 (*1 *2 *1) (-12 (-4 *2 (-1049)) (-5 *1 (-735 *2 *3)) (-4 *3 (-850)) (-4 *3 (-726)))) (-3577 (*1 *1 *1) (-12 (-5 *1 (-735 *2 *3)) (-4 *3 (-850)) (-4 *2 (-1049)) (-4 *3 (-726)))))
-(-13 (-1049) (-1038 |#2|) (-1038 |#1|) (-10 -8 (-15 -2519 ($ |#1| |#2|)) (-15 -2022 (|#1| $ |#2|)) (-15 -2512 ($ (-644 (-2 (|:| -3157 |#1|) (|:| -1966 |#2|))))) (-15 -1530 ((-644 (-2 (|:| -3157 |#1|) (|:| -1966 |#2|))) $)) (-15 -3077 ($ (-1 |#1| |#1|) $)) (-15 -4367 ((-112) $)) (-15 -3868 ((-644 |#1|) $)) (-15 -1363 ((-644 $) $)) (-15 -3505 ((-771) $)) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-370)) (IF (|has| |#2| (-370)) (-6 (-370)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-850)) (PROGN (-15 -3545 (|#2| $)) (-15 -3557 (|#1| $)) (-15 -3577 ($ $))) |%noBranch|)))
-((-2985 (((-112) $ $) 19)) (-1781 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-1757 (($ $ $) 73)) (-2768 (((-112) $ $) 74)) (-3081 (((-112) $ (-771)) 8)) (-1819 (($ (-644 |#1|)) 69) (($) 68)) (-3586 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-4130 (($ $) 63)) (-4093 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3066 (($ |#1| $) 48 (|has| $ (-6 -4417))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4417)))) (-2651 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4417)))) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-3641 (((-112) $ $) 65)) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22)) (-2390 (($ $ $) 70)) (-3119 ((|#1| $) 40)) (-4265 (($ |#1| $) 41) (($ |#1| $ (-771)) 64)) (-4033 (((-1119) $) 21)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-2109 (((-644 (-2 (|:| -2818 |#1|) (|:| -4044 (-771)))) $) 62)) (-3209 (($ $ |#1|) 72) (($ $ $) 71)) (-3879 (($) 50) (($ (-644 |#1|)) 49)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 51)) (-2512 (((-862) $) 18)) (-2465 (($ (-644 |#1|)) 67) (($) 66)) (-3122 (((-112) $ $) 23)) (-3309 (($ (-644 |#1|)) 43)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20)) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-2797 (((-2 (|:| -4385 (-952 |#3|)) (|:| -3013 (-952 |#3|))) |#4|) 14)) (-2625 ((|#4| |#4| |#2|) 33)) (-3831 ((|#4| (-409 (-952 |#3|)) |#2|) 64)) (-4158 ((|#4| (-1171 (-952 |#3|)) |#2|) 77)) (-2975 ((|#4| (-1171 |#4|) |#2|) 51)) (-3474 ((|#4| |#4| |#2|) 54)) (-2473 (((-420 |#4|) |#4|) 40)))
+(((-732 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2797 ((-2 (|:| -4385 (-952 |#3|)) (|:| -3013 (-952 |#3|))) |#4|)) (-15 -3474 (|#4| |#4| |#2|)) (-15 -2975 (|#4| (-1171 |#4|) |#2|)) (-15 -2625 (|#4| |#4| |#2|)) (-15 -4158 (|#4| (-1171 (-952 |#3|)) |#2|)) (-15 -3831 (|#4| (-409 (-952 |#3|)) |#2|)) (-15 -2473 ((-420 |#4|) |#4|))) (-793) (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)))) (-558) (-949 (-409 (-952 |#3|)) |#1| |#2|)) (T -732))
+((-2473 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))) (-4 *6 (-558)) (-5 *2 (-420 *3)) (-5 *1 (-732 *4 *5 *6 *3)) (-4 *3 (-949 (-409 (-952 *6)) *4 *5)))) (-3831 (*1 *2 *3 *4) (-12 (-4 *6 (-558)) (-4 *2 (-949 *3 *5 *4)) (-5 *1 (-732 *5 *4 *6 *2)) (-5 *3 (-409 (-952 *6))) (-4 *5 (-793)) (-4 *4 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))))) (-4158 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 (-952 *6))) (-4 *6 (-558)) (-4 *2 (-949 (-409 (-952 *6)) *5 *4)) (-5 *1 (-732 *5 *4 *6 *2)) (-4 *5 (-793)) (-4 *4 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))))) (-2625 (*1 *2 *2 *3) (-12 (-4 *4 (-793)) (-4 *3 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))) (-4 *5 (-558)) (-5 *1 (-732 *4 *3 *5 *2)) (-4 *2 (-949 (-409 (-952 *5)) *4 *3)))) (-2975 (*1 *2 *3 *4) (-12 (-5 *3 (-1171 *2)) (-4 *2 (-949 (-409 (-952 *6)) *5 *4)) (-5 *1 (-732 *5 *4 *6 *2)) (-4 *5 (-793)) (-4 *4 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))) (-4 *6 (-558)))) (-3474 (*1 *2 *2 *3) (-12 (-4 *4 (-793)) (-4 *3 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))) (-4 *5 (-558)) (-5 *1 (-732 *4 *3 *5 *2)) (-4 *2 (-949 (-409 (-952 *5)) *4 *3)))) (-2797 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))) (-4 *6 (-558)) (-5 *2 (-2 (|:| -4385 (-952 *6)) (|:| -3013 (-952 *6)))) (-5 *1 (-732 *4 *5 *6 *3)) (-4 *3 (-949 (-409 (-952 *6)) *4 *5)))))
+(-10 -7 (-15 -2797 ((-2 (|:| -4385 (-952 |#3|)) (|:| -3013 (-952 |#3|))) |#4|)) (-15 -3474 (|#4| |#4| |#2|)) (-15 -2975 (|#4| (-1171 |#4|) |#2|)) (-15 -2625 (|#4| |#4| |#2|)) (-15 -4158 (|#4| (-1171 (-952 |#3|)) |#2|)) (-15 -3831 (|#4| (-409 (-952 |#3|)) |#2|)) (-15 -2473 ((-420 |#4|) |#4|)))
+((-2473 (((-420 |#4|) |#4|) 54)))
+(((-733 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2473 ((-420 |#4|) |#4|))) (-793) (-850) (-13 (-308) (-147)) (-949 (-409 |#3|) |#1| |#2|)) (T -733))
+((-2473 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-13 (-308) (-147))) (-5 *2 (-420 *3)) (-5 *1 (-733 *4 *5 *6 *3)) (-4 *3 (-949 (-409 *6) *4 *5)))))
+(-10 -7 (-15 -2473 ((-420 |#4|) |#4|)))
+((-3152 (((-735 |#2| |#3|) (-1 |#2| |#1|) (-735 |#1| |#3|)) 18)))
+(((-734 |#1| |#2| |#3|) (-10 -7 (-15 -3152 ((-735 |#2| |#3|) (-1 |#2| |#1|) (-735 |#1| |#3|)))) (-1049) (-1049) (-726)) (T -734))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-735 *5 *7)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-4 *7 (-726)) (-5 *2 (-735 *6 *7)) (-5 *1 (-734 *5 *6 *7)))))
+(-10 -7 (-15 -3152 ((-735 |#2| |#3|) (-1 |#2| |#1|) (-735 |#1| |#3|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 38)) (-2455 (((-644 (-2 (|:| -3223 |#1|) (|:| -2044 |#2|))) $) 39)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4070 (((-771)) 22 (-12 (|has| |#2| (-370)) (|has| |#1| (-370))))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) 78) (((-3 |#1| "failed") $) 81)) (-1867 ((|#2| $) NIL) ((|#1| $) NIL)) (-3645 (($ $) 104 (|has| |#2| (-850)))) (-2928 (((-3 $ "failed") $) 87)) (-1618 (($) 50 (-12 (|has| |#2| (-370)) (|has| |#1| (-370))))) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) 72)) (-2330 (((-644 $) $) 54)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| |#2|) 17)) (-3152 (($ (-1 |#1| |#1|) $) 70)) (-1299 (((-921) $) 45 (-12 (|has| |#2| (-370)) (|has| |#1| (-370))))) (-3614 ((|#2| $) 103 (|has| |#2| (-850)))) (-3626 ((|#1| $) 102 (|has| |#2| (-850)))) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) 37 (-12 (|has| |#2| (-370)) (|has| |#1| (-370))))) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 101) (($ (-566)) 61) (($ |#2|) 57) (($ |#1|) 58) (($ (-644 (-2 (|:| -3223 |#1|) (|:| -2044 |#2|)))) 11)) (-3456 (((-644 |#1|) $) 56)) (-3756 ((|#1| $ |#2|) 117)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 12 T CONST)) (-4333 (($) 46 T CONST)) (-2950 (((-112) $ $) 107)) (-3051 (($ $) 63) (($ $ $) NIL)) (-3040 (($ $ $) 35)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 68) (($ $ $) 120) (($ |#1| $) 65 (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
+(((-735 |#1| |#2|) (-13 (-1049) (-1038 |#2|) (-1038 |#1|) (-10 -8 (-15 -2585 ($ |#1| |#2|)) (-15 -3756 (|#1| $ |#2|)) (-15 -3780 ($ (-644 (-2 (|:| -3223 |#1|) (|:| -2044 |#2|))))) (-15 -2455 ((-644 (-2 (|:| -3223 |#1|) (|:| -2044 |#2|))) $)) (-15 -3152 ($ (-1 |#1| |#1|) $)) (-15 -1453 ((-112) $)) (-15 -3456 ((-644 |#1|) $)) (-15 -2330 ((-644 $) $)) (-15 -4230 ((-771) $)) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-370)) (IF (|has| |#2| (-370)) (-6 (-370)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-850)) (PROGN (-15 -3614 (|#2| $)) (-15 -3626 (|#1| $)) (-15 -3645 ($ $))) |%noBranch|))) (-1049) (-726)) (T -735))
+((-2585 (*1 *1 *2 *3) (-12 (-5 *1 (-735 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-726)))) (-3756 (*1 *2 *1 *3) (-12 (-4 *2 (-1049)) (-5 *1 (-735 *2 *3)) (-4 *3 (-726)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -3223 *3) (|:| -2044 *4)))) (-4 *3 (-1049)) (-4 *4 (-726)) (-5 *1 (-735 *3 *4)))) (-2455 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| -3223 *3) (|:| -2044 *4)))) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726)))) (-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-735 *3 *4)) (-4 *4 (-726)))) (-1453 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726)))) (-3456 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726)))) (-2330 (*1 *2 *1) (-12 (-5 *2 (-644 (-735 *3 *4))) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726)))) (-4230 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726)))) (-3614 (*1 *2 *1) (-12 (-4 *2 (-726)) (-4 *2 (-850)) (-5 *1 (-735 *3 *2)) (-4 *3 (-1049)))) (-3626 (*1 *2 *1) (-12 (-4 *2 (-1049)) (-5 *1 (-735 *2 *3)) (-4 *3 (-850)) (-4 *3 (-726)))) (-3645 (*1 *1 *1) (-12 (-5 *1 (-735 *2 *3)) (-4 *3 (-850)) (-4 *2 (-1049)) (-4 *3 (-726)))))
+(-13 (-1049) (-1038 |#2|) (-1038 |#1|) (-10 -8 (-15 -2585 ($ |#1| |#2|)) (-15 -3756 (|#1| $ |#2|)) (-15 -3780 ($ (-644 (-2 (|:| -3223 |#1|) (|:| -2044 |#2|))))) (-15 -2455 ((-644 (-2 (|:| -3223 |#1|) (|:| -2044 |#2|))) $)) (-15 -3152 ($ (-1 |#1| |#1|) $)) (-15 -1453 ((-112) $)) (-15 -3456 ((-644 |#1|) $)) (-15 -2330 ((-644 $) $)) (-15 -4230 ((-771) $)) (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-370)) (IF (|has| |#2| (-370)) (-6 (-370)) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-850)) (PROGN (-15 -3614 (|#2| $)) (-15 -3626 (|#1| $)) (-15 -3645 ($ $))) |%noBranch|)))
+((-3009 (((-112) $ $) 19)) (-1814 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-4134 (($ $ $) 73)) (-2523 (((-112) $ $) 74)) (-1574 (((-112) $ (-771)) 8)) (-3712 (($ (-644 |#1|)) 69) (($) 68)) (-2556 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-4060 (($ $) 63)) (-4133 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1450 (($ |#1| $) 48 (|has| $ (-6 -4414))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4414)))) (-2661 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4414)))) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1866 (((-112) $ $) 65)) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22)) (-3147 (($ $ $) 70)) (-3765 ((|#1| $) 40)) (-2903 (($ |#1| $) 41) (($ |#1| $ (-771)) 64)) (-4056 (((-1119) $) 21)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-3423 (((-644 (-2 (|:| -2849 |#1|) (|:| -4067 (-771)))) $) 62)) (-3304 (($ $ |#1|) 72) (($ $ $) 71)) (-3551 (($) 50) (($ (-644 |#1|)) 49)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 51)) (-3780 (((-862) $) 18)) (-2535 (($ (-644 |#1|)) 67) (($) 66)) (-3801 (((-112) $ $) 23)) (-2926 (($ (-644 |#1|)) 43)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20)) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-736 |#1|) (-140) (-1099)) (T -736))
NIL
(-13 (-695 |t#1|) (-1097 |t#1|))
(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-613 (-862)) . T) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-235 |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-695 |#1|) . T) ((-1097 |#1|) . T) ((-1099) . T) ((-1214) . T))
-((-2985 (((-112) $ $) NIL)) (-1781 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 95)) (-1757 (($ $ $) 99)) (-2768 (((-112) $ $) 107)) (-3081 (((-112) $ (-771)) NIL)) (-1819 (($ (-644 |#1|)) 26) (($) 17)) (-3586 (($ (-1 (-112) |#1|) $) 83 (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-4130 (($ $) 85)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3066 (($ |#1| $) 70 (|has| $ (-6 -4417))) (($ (-1 (-112) |#1|) $) 77 (|has| $ (-6 -4417))) (($ |#1| $ (-566)) 75) (($ (-1 (-112) |#1|) $ (-566)) 78)) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (($ |#1| $ (-566)) 80) (($ (-1 (-112) |#1|) $ (-566)) 81)) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417)))) (-3372 (((-644 |#1|) $) 32 (|has| $ (-6 -4417)))) (-3641 (((-112) $ $) 106)) (-2328 (($) 15) (($ |#1|) 28) (($ (-644 |#1|)) 23)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) 38)) (-1927 (((-112) |#1| $) 65 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) 88 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 89)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-2390 (($ $ $) 97)) (-3119 ((|#1| $) 62)) (-4265 (($ |#1| $) 63) (($ |#1| $ (-771)) 86)) (-4033 (((-1119) $) NIL)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2658 ((|#1| $) 61)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 56)) (-2954 (($) 14)) (-2109 (((-644 (-2 (|:| -2818 |#1|) (|:| -4044 (-771)))) $) 55)) (-3209 (($ $ |#1|) NIL) (($ $ $) 98)) (-3879 (($) 16) (($ (-644 |#1|)) 25)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) 68 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) 79)) (-3134 (((-538) $) 36 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 22)) (-2512 (((-862) $) 49)) (-2465 (($ (-644 |#1|)) 27) (($) 18)) (-3122 (((-112) $ $) NIL)) (-3309 (($ (-644 |#1|)) 24)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 103)) (-2997 (((-771) $) 67 (|has| $ (-6 -4417)))))
-(((-737 |#1|) (-13 (-736 |#1|) (-10 -8 (-6 -4417) (-6 -4418) (-15 -2328 ($)) (-15 -2328 ($ |#1|)) (-15 -2328 ($ (-644 |#1|))) (-15 -2404 ((-644 |#1|) $)) (-15 -2651 ($ |#1| $ (-566))) (-15 -2651 ($ (-1 (-112) |#1|) $ (-566))) (-15 -3066 ($ |#1| $ (-566))) (-15 -3066 ($ (-1 (-112) |#1|) $ (-566))))) (-1099)) (T -737))
-((-2328 (*1 *1) (-12 (-5 *1 (-737 *2)) (-4 *2 (-1099)))) (-2328 (*1 *1 *2) (-12 (-5 *1 (-737 *2)) (-4 *2 (-1099)))) (-2328 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-737 *3)))) (-2404 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-737 *3)) (-4 *3 (-1099)))) (-2651 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-737 *2)) (-4 *2 (-1099)))) (-2651 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-566)) (-4 *4 (-1099)) (-5 *1 (-737 *4)))) (-3066 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-737 *2)) (-4 *2 (-1099)))) (-3066 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-566)) (-4 *4 (-1099)) (-5 *1 (-737 *4)))))
-(-13 (-736 |#1|) (-10 -8 (-6 -4417) (-6 -4418) (-15 -2328 ($)) (-15 -2328 ($ |#1|)) (-15 -2328 ($ (-644 |#1|))) (-15 -2404 ((-644 |#1|) $)) (-15 -2651 ($ |#1| $ (-566))) (-15 -2651 ($ (-1 (-112) |#1|) $ (-566))) (-15 -3066 ($ |#1| $ (-566))) (-15 -3066 ($ (-1 (-112) |#1|) $ (-566)))))
-((-3765 (((-1269) (-1157)) 8)))
-(((-738) (-10 -7 (-15 -3765 ((-1269) (-1157))))) (T -738))
-((-3765 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-738)))))
-(-10 -7 (-15 -3765 ((-1269) (-1157))))
-((-3468 (((-644 |#1|) (-644 |#1|) (-644 |#1|)) 15)))
-(((-739 |#1|) (-10 -7 (-15 -3468 ((-644 |#1|) (-644 |#1|) (-644 |#1|)))) (-850)) (T -739))
-((-3468 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-739 *3)))))
-(-10 -7 (-15 -3468 ((-644 |#1|) (-644 |#1|) (-644 |#1|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2540 (((-644 |#2|) $) 148)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 141 (|has| |#1| (-558)))) (-3653 (($ $) 140 (|has| |#1| (-558)))) (-2152 (((-112) $) 138 (|has| |#1| (-558)))) (-3235 (($ $) 97 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 80 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) 20)) (-2402 (($ $) 79 (|has| |#1| (-38 (-409 (-566)))))) (-3215 (($ $) 96 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 81 (|has| |#1| (-38 (-409 (-566)))))) (-3259 (($ $) 95 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 82 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) 18 T CONST)) (-3577 (($ $) 132)) (-1579 (((-3 $ "failed") $) 37)) (-3768 (((-952 |#1|) $ (-771)) 110) (((-952 |#1|) $ (-771) (-771)) 109)) (-4039 (((-112) $) 149)) (-3035 (($) 107 (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-771) $ |#2|) 112) (((-771) $ |#2| (-771)) 111)) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 78 (|has| |#1| (-38 (-409 (-566)))))) (-4367 (((-112) $) 130)) (-2519 (($ $ (-644 |#2|) (-644 (-533 |#2|))) 147) (($ $ |#2| (-533 |#2|)) 146) (($ |#1| (-533 |#2|)) 131) (($ $ |#2| (-771)) 114) (($ $ (-644 |#2|) (-644 (-771))) 113)) (-3077 (($ (-1 |#1| |#1|) $) 129)) (-3668 (($ $) 104 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) 127)) (-3557 ((|#1| $) 126)) (-2878 (((-1157) $) 10)) (-4117 (($ $ |#2|) 108 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (((-1119) $) 11)) (-1938 (($ $ (-771)) 115)) (-2972 (((-3 $ "failed") $ $) 142 (|has| |#1| (-558)))) (-3613 (($ $) 105 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (($ $ |#2| $) 123) (($ $ (-644 |#2|) (-644 $)) 122) (($ $ (-644 (-295 $))) 121) (($ $ (-295 $)) 120) (($ $ $ $) 119) (($ $ (-644 $) (-644 $)) 118)) (-2862 (($ $ |#2|) 46) (($ $ (-644 |#2|)) 45) (($ $ |#2| (-771)) 44) (($ $ (-644 |#2|) (-644 (-771))) 43)) (-3992 (((-533 |#2|) $) 128)) (-3267 (($ $) 94 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 83 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 93 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 84 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 92 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 85 (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) 150)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 145 (|has| |#1| (-172))) (($ $) 143 (|has| |#1| (-558))) (($ (-409 (-566))) 135 (|has| |#1| (-38 (-409 (-566)))))) (-2022 ((|#1| $ (-533 |#2|)) 133) (($ $ |#2| (-771)) 117) (($ $ (-644 |#2|) (-644 (-771))) 116)) (-3842 (((-3 $ "failed") $) 144 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-3302 (($ $) 103 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 91 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) 139 (|has| |#1| (-558)))) (-3279 (($ $) 102 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 90 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 101 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 89 (|has| |#1| (-38 (-409 (-566)))))) (-1382 (($ $) 100 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 88 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 99 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 87 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 98 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 86 (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ |#2|) 42) (($ $ (-644 |#2|)) 41) (($ $ |#2| (-771)) 40) (($ $ (-644 |#2|) (-644 (-771))) 39)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 134 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ $) 106 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 77 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 137 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 136 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 125) (($ $ |#1|) 124)))
+((-3009 (((-112) $ $) NIL)) (-1814 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 95)) (-4134 (($ $ $) 99)) (-2523 (((-112) $ $) 107)) (-1574 (((-112) $ (-771)) NIL)) (-3712 (($ (-644 |#1|)) 26) (($) 17)) (-2556 (($ (-1 (-112) |#1|) $) 83 (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-4060 (($ $) 85)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1450 (($ |#1| $) 70 (|has| $ (-6 -4414))) (($ (-1 (-112) |#1|) $) 77 (|has| $ (-6 -4414))) (($ |#1| $ (-566)) 75) (($ (-1 (-112) |#1|) $ (-566)) 78)) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (($ |#1| $ (-566)) 80) (($ (-1 (-112) |#1|) $ (-566)) 81)) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414)))) (-3799 (((-644 |#1|) $) 32 (|has| $ (-6 -4414)))) (-1866 (((-112) $ $) 106)) (-3744 (($) 15) (($ |#1|) 28) (($ (-644 |#1|)) 23)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) 38)) (-2183 (((-112) |#1| $) 65 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) 88 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 89)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-3147 (($ $ $) 97)) (-3765 ((|#1| $) 62)) (-2903 (($ |#1| $) 63) (($ |#1| $ (-771)) 86)) (-4056 (((-1119) $) NIL)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3852 ((|#1| $) 61)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 56)) (-1793 (($) 14)) (-3423 (((-644 (-2 (|:| -2849 |#1|) (|:| -4067 (-771)))) $) 55)) (-3304 (($ $ |#1|) NIL) (($ $ $) 98)) (-3551 (($) 16) (($ (-644 |#1|)) 25)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) 68 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) 79)) (-3204 (((-538) $) 36 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 22)) (-3780 (((-862) $) 49)) (-2535 (($ (-644 |#1|)) 27) (($) 18)) (-3801 (((-112) $ $) NIL)) (-2926 (($ (-644 |#1|)) 24)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 103)) (-3020 (((-771) $) 67 (|has| $ (-6 -4414)))))
+(((-737 |#1|) (-13 (-736 |#1|) (-10 -8 (-6 -4414) (-6 -4415) (-15 -3744 ($)) (-15 -3744 ($ |#1|)) (-15 -3744 ($ (-644 |#1|))) (-15 -3276 ((-644 |#1|) $)) (-15 -2661 ($ |#1| $ (-566))) (-15 -2661 ($ (-1 (-112) |#1|) $ (-566))) (-15 -1450 ($ |#1| $ (-566))) (-15 -1450 ($ (-1 (-112) |#1|) $ (-566))))) (-1099)) (T -737))
+((-3744 (*1 *1) (-12 (-5 *1 (-737 *2)) (-4 *2 (-1099)))) (-3744 (*1 *1 *2) (-12 (-5 *1 (-737 *2)) (-4 *2 (-1099)))) (-3744 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-737 *3)))) (-3276 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-737 *3)) (-4 *3 (-1099)))) (-2661 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-737 *2)) (-4 *2 (-1099)))) (-2661 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-566)) (-4 *4 (-1099)) (-5 *1 (-737 *4)))) (-1450 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-737 *2)) (-4 *2 (-1099)))) (-1450 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-566)) (-4 *4 (-1099)) (-5 *1 (-737 *4)))))
+(-13 (-736 |#1|) (-10 -8 (-6 -4414) (-6 -4415) (-15 -3744 ($)) (-15 -3744 ($ |#1|)) (-15 -3744 ($ (-644 |#1|))) (-15 -3276 ((-644 |#1|) $)) (-15 -2661 ($ |#1| $ (-566))) (-15 -2661 ($ (-1 (-112) |#1|) $ (-566))) (-15 -1450 ($ |#1| $ (-566))) (-15 -1450 ($ (-1 (-112) |#1|) $ (-566)))))
+((-1421 (((-1269) (-1157)) 8)))
+(((-738) (-10 -7 (-15 -1421 ((-1269) (-1157))))) (T -738))
+((-1421 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-738)))))
+(-10 -7 (-15 -1421 ((-1269) (-1157))))
+((-3866 (((-644 |#1|) (-644 |#1|) (-644 |#1|)) 15)))
+(((-739 |#1|) (-10 -7 (-15 -3866 ((-644 |#1|) (-644 |#1|) (-644 |#1|)))) (-850)) (T -739))
+((-3866 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-739 *3)))))
+(-10 -7 (-15 -3866 ((-644 |#1|) (-644 |#1|) (-644 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2608 (((-644 |#2|) $) 148)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 141 (|has| |#1| (-558)))) (-1968 (($ $) 140 (|has| |#1| (-558)))) (-2644 (((-112) $) 138 (|has| |#1| (-558)))) (-2865 (($ $) 97 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 80 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) 20)) (-2484 (($ $) 79 (|has| |#1| (-38 (-409 (-566)))))) (-2843 (($ $) 96 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 81 (|has| |#1| (-38 (-409 (-566)))))) (-2888 (($ $) 95 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 82 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) 18 T CONST)) (-3645 (($ $) 132)) (-2928 (((-3 $ "failed") $) 37)) (-4215 (((-952 |#1|) $ (-771)) 110) (((-952 |#1|) $ (-771) (-771)) 109)) (-4392 (((-112) $) 149)) (-3120 (($) 107 (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-771) $ |#2|) 112) (((-771) $ |#2| (-771)) 111)) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 78 (|has| |#1| (-38 (-409 (-566)))))) (-1453 (((-112) $) 130)) (-2585 (($ $ (-644 |#2|) (-644 (-533 |#2|))) 147) (($ $ |#2| (-533 |#2|)) 146) (($ |#1| (-533 |#2|)) 131) (($ $ |#2| (-771)) 114) (($ $ (-644 |#2|) (-644 (-771))) 113)) (-3152 (($ (-1 |#1| |#1|) $) 129)) (-3671 (($ $) 104 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) 127)) (-3626 ((|#1| $) 126)) (-2402 (((-1157) $) 10)) (-3921 (($ $ |#2|) 108 (|has| |#1| (-38 (-409 (-566)))))) (-4056 (((-1119) $) 11)) (-2295 (($ $ (-771)) 115)) (-2997 (((-3 $ "failed") $ $) 142 (|has| |#1| (-558)))) (-4337 (($ $) 105 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (($ $ |#2| $) 123) (($ $ (-644 |#2|) (-644 $)) 122) (($ $ (-644 (-295 $))) 121) (($ $ (-295 $)) 120) (($ $ $ $) 119) (($ $ (-644 $) (-644 $)) 118)) (-2578 (($ $ |#2|) 46) (($ $ (-644 |#2|)) 45) (($ $ |#2| (-771)) 44) (($ $ (-644 |#2|) (-644 (-771))) 43)) (-2108 (((-533 |#2|) $) 128)) (-2897 (($ $) 94 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 83 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 93 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 84 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 92 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 85 (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) 150)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 145 (|has| |#1| (-172))) (($ $) 143 (|has| |#1| (-558))) (($ (-409 (-566))) 135 (|has| |#1| (-38 (-409 (-566)))))) (-3756 ((|#1| $ (-533 |#2|)) 133) (($ $ |#2| (-771)) 117) (($ $ (-644 |#2|) (-644 (-771))) 116)) (-3226 (((-3 $ "failed") $) 144 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2931 (($ $) 103 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 91 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) 139 (|has| |#1| (-558)))) (-2907 (($ $) 102 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 90 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 101 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 89 (|has| |#1| (-38 (-409 (-566)))))) (-3181 (($ $) 100 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 88 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 99 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 87 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 98 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 86 (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ |#2|) 42) (($ $ (-644 |#2|)) 41) (($ $ |#2| (-771)) 40) (($ $ (-644 |#2|) (-644 (-771))) 39)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 134 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ $) 106 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 77 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 137 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 136 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 125) (($ $ |#1|) 124)))
(((-740 |#1| |#2|) (-140) (-1049) (-850)) (T -740))
-((-2022 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *2)) (-4 *4 (-1049)) (-4 *2 (-850)))) (-2022 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *5)) (-5 *3 (-644 (-771))) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049)) (-4 *5 (-850)))) (-1938 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-740 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-850)))) (-2519 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *2)) (-4 *4 (-1049)) (-4 *2 (-850)))) (-2519 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *5)) (-5 *3 (-644 (-771))) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049)) (-4 *5 (-850)))) (-2716 (*1 *2 *1 *3) (-12 (-4 *1 (-740 *4 *3)) (-4 *4 (-1049)) (-4 *3 (-850)) (-5 *2 (-771)))) (-2716 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-771)) (-4 *1 (-740 *4 *3)) (-4 *4 (-1049)) (-4 *3 (-850)))) (-3768 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049)) (-4 *5 (-850)) (-5 *2 (-952 *4)))) (-3768 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049)) (-4 *5 (-850)) (-5 *2 (-952 *4)))) (-4117 (*1 *1 *1 *2) (-12 (-4 *1 (-740 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-850)) (-4 *3 (-38 (-409 (-566)))))))
-(-13 (-900 |t#2|) (-973 |t#1| (-533 |t#2|) |t#2|) (-516 |t#2| $) (-310 $) (-10 -8 (-15 -2022 ($ $ |t#2| (-771))) (-15 -2022 ($ $ (-644 |t#2|) (-644 (-771)))) (-15 -1938 ($ $ (-771))) (-15 -2519 ($ $ |t#2| (-771))) (-15 -2519 ($ $ (-644 |t#2|) (-644 (-771)))) (-15 -2716 ((-771) $ |t#2|)) (-15 -2716 ((-771) $ |t#2| (-771))) (-15 -3768 ((-952 |t#1|) $ (-771))) (-15 -3768 ((-952 |t#1|) $ (-771) (-771))) (IF (|has| |t#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ($ $ |t#2|)) (-6 (-1002)) (-6 (-1199))) |%noBranch|)))
+((-3756 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *2)) (-4 *4 (-1049)) (-4 *2 (-850)))) (-3756 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *5)) (-5 *3 (-644 (-771))) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049)) (-4 *5 (-850)))) (-2295 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-740 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-850)))) (-2585 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *2)) (-4 *4 (-1049)) (-4 *2 (-850)))) (-2585 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *5)) (-5 *3 (-644 (-771))) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049)) (-4 *5 (-850)))) (-3227 (*1 *2 *1 *3) (-12 (-4 *1 (-740 *4 *3)) (-4 *4 (-1049)) (-4 *3 (-850)) (-5 *2 (-771)))) (-3227 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-771)) (-4 *1 (-740 *4 *3)) (-4 *4 (-1049)) (-4 *3 (-850)))) (-4215 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049)) (-4 *5 (-850)) (-5 *2 (-952 *4)))) (-4215 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049)) (-4 *5 (-850)) (-5 *2 (-952 *4)))) (-3921 (*1 *1 *1 *2) (-12 (-4 *1 (-740 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-850)) (-4 *3 (-38 (-409 (-566)))))))
+(-13 (-900 |t#2|) (-973 |t#1| (-533 |t#2|) |t#2|) (-516 |t#2| $) (-310 $) (-10 -8 (-15 -3756 ($ $ |t#2| (-771))) (-15 -3756 ($ $ (-644 |t#2|) (-644 (-771)))) (-15 -2295 ($ $ (-771))) (-15 -2585 ($ $ |t#2| (-771))) (-15 -2585 ($ $ (-644 |t#2|) (-644 (-771)))) (-15 -3227 ((-771) $ |t#2|)) (-15 -3227 ((-771) $ |t#2| (-771))) (-15 -4215 ((-952 |t#1|) $ (-771))) (-15 -4215 ((-952 |t#1|) $ (-771) (-771))) (IF (|has| |t#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ($ $ |t#2|)) (-6 (-1002)) (-6 (-1199))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-533 |#2|)) . T) ((-25) . T) ((-38 #1=(-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-558)) ((-35) |has| |#1| (-38 (-409 (-566)))) ((-95) |has| |#1| (-38 (-409 (-566)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-409 (-566)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #1#) |has| |#1| (-38 (-409 (-566)))) ((-616 (-566)) . T) ((-616 |#1|) |has| |#1| (-172)) ((-616 $) |has| |#1| (-558)) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-285) |has| |#1| (-38 (-409 (-566)))) ((-291) |has| |#1| (-558)) ((-310 $) . T) ((-495) |has| |#1| (-38 (-409 (-566)))) ((-516 |#2| $) . T) ((-516 $ $) . T) ((-558) |has| |#1| (-558)) ((-646 #1#) |has| |#1| (-38 (-409 (-566)))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #1#) |has| |#1| (-38 (-409 (-566)))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #1#) |has| |#1| (-38 (-409 (-566)))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) |has| |#1| (-558)) ((-717 #1#) |has| |#1| (-38 (-409 (-566)))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) |has| |#1| (-558)) ((-726) . T) ((-900 |#2|) . T) ((-973 |#1| #0# |#2|) . T) ((-1002) |has| |#1| (-38 (-409 (-566)))) ((-1051 #1#) |has| |#1| (-38 (-409 (-566)))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1056 #1#) |has| |#1| (-38 (-409 (-566)))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1199) |has| |#1| (-38 (-409 (-566)))) ((-1202) |has| |#1| (-38 (-409 (-566)))))
-((-2391 (((-420 (-1171 |#4|)) (-1171 |#4|)) 30) (((-420 |#4|) |#4|) 26)))
-(((-741 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2391 ((-420 |#4|) |#4|)) (-15 -2391 ((-420 (-1171 |#4|)) (-1171 |#4|)))) (-850) (-793) (-13 (-308) (-147)) (-949 |#3| |#2| |#1|)) (T -741))
-((-2391 (*1 *2 *3) (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-949 *6 *5 *4)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-741 *4 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-2391 (*1 *2 *3) (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-13 (-308) (-147))) (-5 *2 (-420 *3)) (-5 *1 (-741 *4 *5 *6 *3)) (-4 *3 (-949 *6 *5 *4)))))
-(-10 -7 (-15 -2391 ((-420 |#4|) |#4|)) (-15 -2391 ((-420 (-1171 |#4|)) (-1171 |#4|))))
-((-4107 (((-420 |#4|) |#4| |#2|) 142)) (-3085 (((-420 |#4|) |#4|) NIL)) (-1370 (((-420 (-1171 |#4|)) (-1171 |#4|)) 127) (((-420 |#4|) |#4|) 52)) (-4286 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-644 (-2 (|:| -2391 (-1171 |#4|)) (|:| -3250 (-566)))))) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|))) 81)) (-1551 (((-1171 |#3|) (-1171 |#3|) (-566)) 168)) (-2533 (((-644 (-771)) (-1171 |#4|) (-644 |#2|) (-771)) 75)) (-4350 (((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-1171 |#3|) (-1171 |#3|) |#4| (-644 |#2|) (-644 (-771)) (-644 |#3|)) 79)) (-2851 (((-2 (|:| |upol| (-1171 |#3|)) (|:| |Lval| (-644 |#3|)) (|:| |Lfact| (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566))))) (|:| |ctpol| |#3|)) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|))) 27)) (-2837 (((-2 (|:| -3589 (-1171 |#4|)) (|:| |polval| (-1171 |#3|))) (-1171 |#4|) (-1171 |#3|) (-566)) 72)) (-1880 (((-566) (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566))))) 164)) (-1387 ((|#4| (-566) (-420 |#4|)) 73)) (-2694 (((-112) (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566)))) (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566))))) NIL)))
-(((-742 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1370 ((-420 |#4|) |#4|)) (-15 -1370 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -3085 ((-420 |#4|) |#4|)) (-15 -1880 ((-566) (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566)))))) (-15 -4107 ((-420 |#4|) |#4| |#2|)) (-15 -2837 ((-2 (|:| -3589 (-1171 |#4|)) (|:| |polval| (-1171 |#3|))) (-1171 |#4|) (-1171 |#3|) (-566))) (-15 -4286 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-644 (-2 (|:| -2391 (-1171 |#4|)) (|:| -3250 (-566)))))) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|)))) (-15 -2851 ((-2 (|:| |upol| (-1171 |#3|)) (|:| |Lval| (-644 |#3|)) (|:| |Lfact| (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566))))) (|:| |ctpol| |#3|)) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|)))) (-15 -1387 (|#4| (-566) (-420 |#4|))) (-15 -2694 ((-112) (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566)))) (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566)))))) (-15 -4350 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-1171 |#3|) (-1171 |#3|) |#4| (-644 |#2|) (-644 (-771)) (-644 |#3|))) (-15 -2533 ((-644 (-771)) (-1171 |#4|) (-644 |#2|) (-771))) (-15 -1551 ((-1171 |#3|) (-1171 |#3|) (-566)))) (-793) (-850) (-308) (-949 |#3| |#1| |#2|)) (T -742))
-((-1551 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 *6)) (-5 *3 (-566)) (-4 *6 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))) (-2533 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-4 *7 (-850)) (-4 *9 (-949 *8 *6 *7)) (-4 *6 (-793)) (-4 *8 (-308)) (-5 *2 (-644 (-771))) (-5 *1 (-742 *6 *7 *8 *9)) (-5 *5 (-771)))) (-4350 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1171 *11)) (-5 *6 (-644 *10)) (-5 *7 (-644 (-771))) (-5 *8 (-644 *11)) (-4 *10 (-850)) (-4 *11 (-308)) (-4 *9 (-793)) (-4 *5 (-949 *11 *9 *10)) (-5 *2 (-644 (-1171 *5))) (-5 *1 (-742 *9 *10 *11 *5)) (-5 *3 (-1171 *5)))) (-2694 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-2 (|:| -2391 (-1171 *6)) (|:| -3250 (-566))))) (-4 *6 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))) (-1387 (*1 *2 *3 *4) (-12 (-5 *3 (-566)) (-5 *4 (-420 *2)) (-4 *2 (-949 *7 *5 *6)) (-5 *1 (-742 *5 *6 *7 *2)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-308)))) (-2851 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-5 *5 (-644 (-644 *8))) (-4 *7 (-850)) (-4 *8 (-308)) (-4 *9 (-949 *8 *6 *7)) (-4 *6 (-793)) (-5 *2 (-2 (|:| |upol| (-1171 *8)) (|:| |Lval| (-644 *8)) (|:| |Lfact| (-644 (-2 (|:| -2391 (-1171 *8)) (|:| -3250 (-566))))) (|:| |ctpol| *8))) (-5 *1 (-742 *6 *7 *8 *9)))) (-4286 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-644 *7)) (-5 *5 (-644 (-644 *8))) (-4 *7 (-850)) (-4 *8 (-308)) (-4 *6 (-793)) (-4 *9 (-949 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-644 (-2 (|:| -2391 (-1171 *9)) (|:| -3250 (-566))))))) (-5 *1 (-742 *6 *7 *8 *9)) (-5 *3 (-1171 *9)))) (-2837 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-566)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-308)) (-4 *9 (-949 *8 *6 *7)) (-5 *2 (-2 (|:| -3589 (-1171 *9)) (|:| |polval| (-1171 *8)))) (-5 *1 (-742 *6 *7 *8 *9)) (-5 *3 (-1171 *9)) (-5 *4 (-1171 *8)))) (-4107 (*1 *2 *3 *4) (-12 (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-742 *5 *4 *6 *3)) (-4 *3 (-949 *6 *5 *4)))) (-1880 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -2391 (-1171 *6)) (|:| -3250 (-566))))) (-4 *6 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-566)) (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))) (-3085 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-742 *4 *5 *6 *3)) (-4 *3 (-949 *6 *4 *5)))) (-1370 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-742 *4 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-1370 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-742 *4 *5 *6 *3)) (-4 *3 (-949 *6 *4 *5)))))
-(-10 -7 (-15 -1370 ((-420 |#4|) |#4|)) (-15 -1370 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -3085 ((-420 |#4|) |#4|)) (-15 -1880 ((-566) (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566)))))) (-15 -4107 ((-420 |#4|) |#4| |#2|)) (-15 -2837 ((-2 (|:| -3589 (-1171 |#4|)) (|:| |polval| (-1171 |#3|))) (-1171 |#4|) (-1171 |#3|) (-566))) (-15 -4286 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-644 (-2 (|:| -2391 (-1171 |#4|)) (|:| -3250 (-566)))))) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|)))) (-15 -2851 ((-2 (|:| |upol| (-1171 |#3|)) (|:| |Lval| (-644 |#3|)) (|:| |Lfact| (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566))))) (|:| |ctpol| |#3|)) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|)))) (-15 -1387 (|#4| (-566) (-420 |#4|))) (-15 -2694 ((-112) (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566)))) (-644 (-2 (|:| -2391 (-1171 |#3|)) (|:| -3250 (-566)))))) (-15 -4350 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-1171 |#3|) (-1171 |#3|) |#4| (-644 |#2|) (-644 (-771)) (-644 |#3|))) (-15 -2533 ((-644 (-771)) (-1171 |#4|) (-644 |#2|) (-771))) (-15 -1551 ((-1171 |#3|) (-1171 |#3|) (-566))))
-((-2995 (($ $ (-921)) 17)))
-(((-743 |#1| |#2|) (-10 -8 (-15 -2995 (|#1| |#1| (-921)))) (-744 |#2|) (-172)) (T -743))
-NIL
-(-10 -8 (-15 -2995 (|#1| |#1| (-921))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2258 (($ $ (-921)) 31)) (-2995 (($ $ (-921)) 38)) (-4171 (($ $ (-921)) 32)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-3755 (($ $ $) 28)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-3551 (($ $ $ $) 29)) (-2821 (($ $ $) 27)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 33)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-2473 (((-420 (-1171 |#4|)) (-1171 |#4|)) 30) (((-420 |#4|) |#4|) 26)))
+(((-741 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2473 ((-420 |#4|) |#4|)) (-15 -2473 ((-420 (-1171 |#4|)) (-1171 |#4|)))) (-850) (-793) (-13 (-308) (-147)) (-949 |#3| |#2| |#1|)) (T -741))
+((-2473 (*1 *2 *3) (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-949 *6 *5 *4)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-741 *4 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-2473 (*1 *2 *3) (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-13 (-308) (-147))) (-5 *2 (-420 *3)) (-5 *1 (-741 *4 *5 *6 *3)) (-4 *3 (-949 *6 *5 *4)))))
+(-10 -7 (-15 -2473 ((-420 |#4|) |#4|)) (-15 -2473 ((-420 (-1171 |#4|)) (-1171 |#4|))))
+((-3817 (((-420 |#4|) |#4| |#2|) 142)) (-1612 (((-420 |#4|) |#4|) NIL)) (-3271 (((-420 (-1171 |#4|)) (-1171 |#4|)) 127) (((-420 |#4|) |#4|) 52)) (-3118 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-644 (-2 (|:| -2473 (-1171 |#4|)) (|:| -2456 (-566)))))) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|))) 81)) (-2652 (((-1171 |#3|) (-1171 |#3|) (-566)) 168)) (-2013 (((-644 (-771)) (-1171 |#4|) (-644 |#2|) (-771)) 75)) (-1567 (((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-1171 |#3|) (-1171 |#3|) |#4| (-644 |#2|) (-644 (-771)) (-644 |#3|)) 79)) (-2128 (((-2 (|:| |upol| (-1171 |#3|)) (|:| |Lval| (-644 |#3|)) (|:| |Lfact| (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566))))) (|:| |ctpol| |#3|)) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|))) 27)) (-1985 (((-2 (|:| -2576 (-1171 |#4|)) (|:| |polval| (-1171 |#3|))) (-1171 |#4|) (-1171 |#3|) (-566)) 72)) (-2910 (((-566) (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566))))) 164)) (-1976 ((|#4| (-566) (-420 |#4|)) 73)) (-4209 (((-112) (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566)))) (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566))))) NIL)))
+(((-742 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3271 ((-420 |#4|) |#4|)) (-15 -3271 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -1612 ((-420 |#4|) |#4|)) (-15 -2910 ((-566) (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566)))))) (-15 -3817 ((-420 |#4|) |#4| |#2|)) (-15 -1985 ((-2 (|:| -2576 (-1171 |#4|)) (|:| |polval| (-1171 |#3|))) (-1171 |#4|) (-1171 |#3|) (-566))) (-15 -3118 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-644 (-2 (|:| -2473 (-1171 |#4|)) (|:| -2456 (-566)))))) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|)))) (-15 -2128 ((-2 (|:| |upol| (-1171 |#3|)) (|:| |Lval| (-644 |#3|)) (|:| |Lfact| (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566))))) (|:| |ctpol| |#3|)) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|)))) (-15 -1976 (|#4| (-566) (-420 |#4|))) (-15 -4209 ((-112) (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566)))) (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566)))))) (-15 -1567 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-1171 |#3|) (-1171 |#3|) |#4| (-644 |#2|) (-644 (-771)) (-644 |#3|))) (-15 -2013 ((-644 (-771)) (-1171 |#4|) (-644 |#2|) (-771))) (-15 -2652 ((-1171 |#3|) (-1171 |#3|) (-566)))) (-793) (-850) (-308) (-949 |#3| |#1| |#2|)) (T -742))
+((-2652 (*1 *2 *2 *3) (-12 (-5 *2 (-1171 *6)) (-5 *3 (-566)) (-4 *6 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))) (-2013 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-4 *7 (-850)) (-4 *9 (-949 *8 *6 *7)) (-4 *6 (-793)) (-4 *8 (-308)) (-5 *2 (-644 (-771))) (-5 *1 (-742 *6 *7 *8 *9)) (-5 *5 (-771)))) (-1567 (*1 *2 *3 *4 *4 *5 *6 *7 *8) (|partial| -12 (-5 *4 (-1171 *11)) (-5 *6 (-644 *10)) (-5 *7 (-644 (-771))) (-5 *8 (-644 *11)) (-4 *10 (-850)) (-4 *11 (-308)) (-4 *9 (-793)) (-4 *5 (-949 *11 *9 *10)) (-5 *2 (-644 (-1171 *5))) (-5 *1 (-742 *9 *10 *11 *5)) (-5 *3 (-1171 *5)))) (-4209 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-2 (|:| -2473 (-1171 *6)) (|:| -2456 (-566))))) (-4 *6 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)) (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))) (-1976 (*1 *2 *3 *4) (-12 (-5 *3 (-566)) (-5 *4 (-420 *2)) (-4 *2 (-949 *7 *5 *6)) (-5 *1 (-742 *5 *6 *7 *2)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-308)))) (-2128 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-5 *5 (-644 (-644 *8))) (-4 *7 (-850)) (-4 *8 (-308)) (-4 *9 (-949 *8 *6 *7)) (-4 *6 (-793)) (-5 *2 (-2 (|:| |upol| (-1171 *8)) (|:| |Lval| (-644 *8)) (|:| |Lfact| (-644 (-2 (|:| -2473 (-1171 *8)) (|:| -2456 (-566))))) (|:| |ctpol| *8))) (-5 *1 (-742 *6 *7 *8 *9)))) (-3118 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-644 *7)) (-5 *5 (-644 (-644 *8))) (-4 *7 (-850)) (-4 *8 (-308)) (-4 *6 (-793)) (-4 *9 (-949 *8 *6 *7)) (-5 *2 (-2 (|:| |unitPart| *9) (|:| |suPart| (-644 (-2 (|:| -2473 (-1171 *9)) (|:| -2456 (-566))))))) (-5 *1 (-742 *6 *7 *8 *9)) (-5 *3 (-1171 *9)))) (-1985 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-566)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-308)) (-4 *9 (-949 *8 *6 *7)) (-5 *2 (-2 (|:| -2576 (-1171 *9)) (|:| |polval| (-1171 *8)))) (-5 *1 (-742 *6 *7 *8 *9)) (-5 *3 (-1171 *9)) (-5 *4 (-1171 *8)))) (-3817 (*1 *2 *3 *4) (-12 (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-742 *5 *4 *6 *3)) (-4 *3 (-949 *6 *5 *4)))) (-2910 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -2473 (-1171 *6)) (|:| -2456 (-566))))) (-4 *6 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-566)) (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))) (-1612 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-742 *4 *5 *6 *3)) (-4 *3 (-949 *6 *4 *5)))) (-3271 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-742 *4 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-3271 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-742 *4 *5 *6 *3)) (-4 *3 (-949 *6 *4 *5)))))
+(-10 -7 (-15 -3271 ((-420 |#4|) |#4|)) (-15 -3271 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -1612 ((-420 |#4|) |#4|)) (-15 -2910 ((-566) (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566)))))) (-15 -3817 ((-420 |#4|) |#4| |#2|)) (-15 -1985 ((-2 (|:| -2576 (-1171 |#4|)) (|:| |polval| (-1171 |#3|))) (-1171 |#4|) (-1171 |#3|) (-566))) (-15 -3118 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-644 (-2 (|:| -2473 (-1171 |#4|)) (|:| -2456 (-566)))))) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|)))) (-15 -2128 ((-2 (|:| |upol| (-1171 |#3|)) (|:| |Lval| (-644 |#3|)) (|:| |Lfact| (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566))))) (|:| |ctpol| |#3|)) (-1171 |#4|) (-644 |#2|) (-644 (-644 |#3|)))) (-15 -1976 (|#4| (-566) (-420 |#4|))) (-15 -4209 ((-112) (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566)))) (-644 (-2 (|:| -2473 (-1171 |#3|)) (|:| -2456 (-566)))))) (-15 -1567 ((-3 (-644 (-1171 |#4|)) "failed") (-1171 |#4|) (-1171 |#3|) (-1171 |#3|) |#4| (-644 |#2|) (-644 (-771)) (-644 |#3|))) (-15 -2013 ((-644 (-771)) (-1171 |#4|) (-644 |#2|) (-771))) (-15 -2652 ((-1171 |#3|) (-1171 |#3|) (-566))))
+((-2120 (($ $ (-921)) 17)))
+(((-743 |#1| |#2|) (-10 -8 (-15 -2120 (|#1| |#1| (-921)))) (-744 |#2|) (-172)) (T -743))
+NIL
+(-10 -8 (-15 -2120 (|#1| |#1| (-921))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2400 (($ $ (-921)) 31)) (-2120 (($ $ (-921)) 38)) (-3231 (($ $ (-921)) 32)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-1783 (($ $ $) 28)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-3428 (($ $ $ $) 29)) (-3035 (($ $ $) 27)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 33)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-744 |#1|) (-140) (-172)) (T -744))
-((-2995 (*1 *1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-744 *3)) (-4 *3 (-172)))))
-(-13 (-761) (-717 |t#1|) (-10 -8 (-15 -2995 ($ $ (-921)))))
+((-2120 (*1 *1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-744 *3)) (-4 *3 (-172)))))
+(-13 (-761) (-717 |t#1|) (-10 -8 (-15 -2120 ($ $ (-921)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-648 |#1|) . T) ((-640 |#1|) . T) ((-717 |#1|) . T) ((-720) . T) ((-761) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1099) . T))
-((-4203 (((-1035) (-689 (-225)) (-566) (-112) (-566)) 25)) (-2006 (((-1035) (-689 (-225)) (-566) (-112) (-566)) 24)))
-(((-745) (-10 -7 (-15 -2006 ((-1035) (-689 (-225)) (-566) (-112) (-566))) (-15 -4203 ((-1035) (-689 (-225)) (-566) (-112) (-566))))) (T -745))
-((-4203 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-112)) (-5 *2 (-1035)) (-5 *1 (-745)))) (-2006 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-112)) (-5 *2 (-1035)) (-5 *1 (-745)))))
-(-10 -7 (-15 -2006 ((-1035) (-689 (-225)) (-566) (-112) (-566))) (-15 -4203 ((-1035) (-689 (-225)) (-566) (-112) (-566))))
-((-4226 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-74 FCN)))) 43)) (-2608 (((-1035) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-81 FCN)))) 39)) (-3726 (((-1035) (-225) (-225) (-225) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) 32)))
-(((-746) (-10 -7 (-15 -3726 ((-1035) (-225) (-225) (-225) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))) (-15 -2608 ((-1035) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-81 FCN))))) (-15 -4226 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-74 FCN))))))) (T -746))
-((-4226 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1035)) (-5 *1 (-746)))) (-2608 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1035)) (-5 *1 (-746)))) (-3726 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) (-5 *2 (-1035)) (-5 *1 (-746)))))
-(-10 -7 (-15 -3726 ((-1035) (-225) (-225) (-225) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))) (-15 -2608 ((-1035) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-81 FCN))))) (-15 -4226 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-74 FCN))))))
-((-2499 (((-1035) (-566) (-566) (-689 (-225)) (-566)) 34)) (-1805 (((-1035) (-566) (-566) (-689 (-225)) (-566)) 33)) (-2964 (((-1035) (-566) (-689 (-225)) (-566)) 32)) (-3010 (((-1035) (-566) (-689 (-225)) (-566)) 31)) (-3401 (((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 30)) (-1582 (((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 29)) (-1763 (((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566)) 28)) (-3604 (((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566)) 27)) (-3886 (((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 24)) (-3450 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566)) 23)) (-3359 (((-1035) (-566) (-689 (-225)) (-566)) 22)) (-1692 (((-1035) (-566) (-689 (-225)) (-566)) 21)))
-(((-747) (-10 -7 (-15 -1692 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -3359 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -3450 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3886 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3604 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1763 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1582 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3401 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3010 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -2964 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -1805 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -2499 ((-1035) (-566) (-566) (-689 (-225)) (-566))))) (T -747))
-((-2499 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-1805 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-2964 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-3010 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-3401 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-1582 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-1763 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-3604 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-3886 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-3450 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-3359 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-1692 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))))
-(-10 -7 (-15 -1692 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -3359 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -3450 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3886 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3604 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1763 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1582 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3401 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3010 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -2964 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -1805 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -2499 ((-1035) (-566) (-566) (-689 (-225)) (-566))))
-((-1359 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN)))) 52)) (-2313 (((-1035) (-689 (-225)) (-689 (-225)) (-566) (-566)) 51)) (-2209 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN)))) 50)) (-1727 (((-1035) (-225) (-225) (-566) (-566) (-566) (-566)) 46)) (-1591 (((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) 45)) (-2024 (((-1035) (-225) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) 44)) (-3758 (((-1035) (-225) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) 43)) (-2081 (((-1035) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) 42)) (-2915 (((-1035) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) 38)) (-1920 (((-1035) (-225) (-225) (-566) (-689 (-225)) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) 37)) (-1300 (((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) 33)) (-3644 (((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) 32)))
-(((-748) (-10 -7 (-15 -3644 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))) (-15 -1300 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))) (-15 -1920 ((-1035) (-225) (-225) (-566) (-689 (-225)) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))) (-15 -2915 ((-1035) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))) (-15 -2081 ((-1035) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -3758 ((-1035) (-225) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -2024 ((-1035) (-225) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -1591 ((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -1727 ((-1035) (-225) (-225) (-566) (-566) (-566) (-566))) (-15 -2209 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))) (-15 -2313 ((-1035) (-689 (-225)) (-689 (-225)) (-566) (-566))) (-15 -1359 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))))) (T -748))
-((-1359 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-2313 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-748)))) (-2209 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-1727 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-748)))) (-1591 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-2024 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-3758 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-2081 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-2915 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-1920 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-748)))) (-1300 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-3644 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) (-5 *2 (-1035)) (-5 *1 (-748)))))
-(-10 -7 (-15 -3644 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))) (-15 -1300 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))) (-15 -1920 ((-1035) (-225) (-225) (-566) (-689 (-225)) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))) (-15 -2915 ((-1035) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))) (-15 -2081 ((-1035) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -3758 ((-1035) (-225) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -2024 ((-1035) (-225) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -1591 ((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -1727 ((-1035) (-225) (-225) (-566) (-566) (-566) (-566))) (-15 -2209 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))) (-15 -2313 ((-1035) (-689 (-225)) (-689 (-225)) (-566) (-566))) (-15 -1359 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))))
-((-3472 (((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-390)) (|:| |fp| (-76 G JACOBG JACGEP)))) 76)) (-3596 (((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))) (-390) (-390)) 69) (((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL)))) 68)) (-2161 (((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-85 FCNG)))) 57)) (-4244 (((-1035) (-689 (-225)) (-689 (-225)) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) 50)) (-1674 (((-1035) (-225) (-566) (-566) (-1157) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) 49)) (-3556 (((-1035) (-225) (-566) (-566) (-225) (-1157) (-225) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) 45)) (-3729 (((-1035) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) 42)) (-4237 (((-1035) (-225) (-566) (-566) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) 38)))
-(((-749) (-10 -7 (-15 -4237 ((-1035) (-225) (-566) (-566) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -3729 ((-1035) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))) (-15 -3556 ((-1035) (-225) (-566) (-566) (-225) (-1157) (-225) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -1674 ((-1035) (-225) (-566) (-566) (-1157) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -4244 ((-1035) (-689 (-225)) (-689 (-225)) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))) (-15 -2161 ((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-85 FCNG))))) (-15 -3596 ((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))))) (-15 -3596 ((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))) (-390) (-390))) (-15 -3472 ((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-390)) (|:| |fp| (-76 G JACOBG JACGEP))))))) (T -749))
-((-3472 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-75 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-76 G JACOBG JACGEP)))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-3596 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL)))) (-5 *8 (-390)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-3596 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL)))) (-5 *2 (-1035)) (-5 *1 (-749)))) (-2161 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-84 FCNF)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-4244 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1035)) (-5 *1 (-749)))) (-1674 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-566)) (-5 *5 (-1157)) (-5 *6 (-689 (-225))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-71 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-3556 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-566)) (-5 *5 (-1157)) (-5 *6 (-689 (-225))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-3729 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-4237 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))))
-(-10 -7 (-15 -4237 ((-1035) (-225) (-566) (-566) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -3729 ((-1035) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))) (-15 -3556 ((-1035) (-225) (-566) (-566) (-225) (-1157) (-225) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -1674 ((-1035) (-225) (-566) (-566) (-1157) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -4244 ((-1035) (-689 (-225)) (-689 (-225)) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))) (-15 -2161 ((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-85 FCNG))))) (-15 -3596 ((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))))) (-15 -3596 ((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))) (-390) (-390))) (-15 -3472 ((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-390)) (|:| |fp| (-76 G JACOBG JACGEP))))))
-((-3515 (((-1035) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-675 (-225)) (-566)) 45)) (-4065 (((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-1157) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-83 BNDY)))) 41)) (-3730 (((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 23)))
-(((-750) (-10 -7 (-15 -3730 ((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4065 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-1157) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-83 BNDY))))) (-15 -3515 ((-1035) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-675 (-225)) (-566))))) (T -750))
-((-3515 (*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 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-675 (-225))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-750)))) (-4065 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-1157)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-82 PDEF)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1035)) (-5 *1 (-750)))) (-3730 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-750)))))
-(-10 -7 (-15 -3730 ((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4065 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-1157) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-83 BNDY))))) (-15 -3515 ((-1035) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-675 (-225)) (-566))))
-((-1351 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-689 (-225)) (-225) (-225) (-566)) 35)) (-3070 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-225) (-225) (-566)) 34)) (-3677 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-689 (-225)) (-225) (-225) (-566)) 33)) (-3633 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 29)) (-3202 (((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 28)) (-4223 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566)) 27)) (-3200 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566)) 24)) (-3574 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566)) 23)) (-1970 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566)) 22)) (-3798 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566)) 21)))
-(((-751) (-10 -7 (-15 -3798 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))) (-15 -1970 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3574 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -3200 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -4223 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566))) (-15 -3202 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3633 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3677 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-689 (-225)) (-225) (-225) (-566))) (-15 -3070 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-225) (-225) (-566))) (-15 -1351 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-689 (-225)) (-225) (-225) (-566))))) (T -751))
-((-1351 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-751)))) (-3070 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-751)))) (-3677 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *6 (-225)) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-751)))) (-3633 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))) (-3202 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))) (-4223 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-751)))) (-3200 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))) (-3574 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))) (-1970 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))) (-3798 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))))
-(-10 -7 (-15 -3798 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))) (-15 -1970 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3574 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -3200 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -4223 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566))) (-15 -3202 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3633 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3677 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-689 (-225)) (-225) (-225) (-566))) (-15 -3070 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-225) (-225) (-566))) (-15 -1351 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-689 (-225)) (-225) (-225) (-566))))
-((-1852 (((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566)) 45)) (-4172 (((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-566)) 44)) (-3032 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566)) 43)) (-3705 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 42)) (-1718 (((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566)) 41)) (-3197 (((-1035) (-1157) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566)) 40)) (-1975 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566) (-566) (-566) (-225) (-689 (-225)) (-566)) 39)) (-1600 (((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566))) 38)) (-2078 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566)) 35)) (-3957 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566)) 34)) (-4100 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566)) 33)) (-3107 (((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 32)) (-1823 (((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566)) 31)) (-4221 (((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-566)) 30)) (-4113 (((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-566) (-566) (-566)) 29)) (-3490 (((-1035) (-566) (-566) (-566) (-225) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-566)) (-566) (-566) (-566)) 28)) (-2605 (((-1035) (-566) (-689 (-225)) (-225) (-566)) 24)) (-2986 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 21)))
-(((-752) (-10 -7 (-15 -2986 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2605 ((-1035) (-566) (-689 (-225)) (-225) (-566))) (-15 -3490 ((-1035) (-566) (-566) (-566) (-225) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-566)) (-566) (-566) (-566))) (-15 -4113 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-566) (-566) (-566))) (-15 -4221 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-566))) (-15 -1823 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566))) (-15 -3107 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4100 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566))) (-15 -3957 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566))) (-15 -2078 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1600 ((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566)))) (-15 -1975 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566) (-566) (-566) (-225) (-689 (-225)) (-566))) (-15 -3197 ((-1035) (-1157) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566))) (-15 -1718 ((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3705 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3032 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))) (-15 -4172 ((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1852 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))))) (T -752))
-((-1852 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))) (-4172 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3032 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3705 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))) (-1718 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3197 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-225)) (-5 *7 (-689 (-566))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-1975 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *6 (-225)) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-1600 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-225)) (-5 *7 (-689 (-566))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-2078 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3957 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-4100 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3107 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))) (-1823 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-4221 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-4113 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3490 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-689 (-225))) (-5 *6 (-689 (-566))) (-5 *3 (-566)) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-2605 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-2986 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))))
-(-10 -7 (-15 -2986 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2605 ((-1035) (-566) (-689 (-225)) (-225) (-566))) (-15 -3490 ((-1035) (-566) (-566) (-566) (-225) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-566)) (-566) (-566) (-566))) (-15 -4113 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-566) (-566) (-566))) (-15 -4221 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-566))) (-15 -1823 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566))) (-15 -3107 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4100 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566))) (-15 -3957 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566))) (-15 -2078 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1600 ((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566)))) (-15 -1975 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566) (-566) (-566) (-225) (-689 (-225)) (-566))) (-15 -3197 ((-1035) (-1157) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566))) (-15 -1718 ((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3705 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3032 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))) (-15 -4172 ((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1852 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))))
-((-1415 (((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-566) (-689 (-225)) (-566)) 63)) (-3757 (((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-112) (-225) (-566) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-566) (-566) (-566) (-566) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN)))) 62)) (-2397 (((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-112) (-112) (-566) (-566) (-689 (-225)) (-689 (-566)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-65 QPHESS)))) 58)) (-1522 (((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-566) (-566) (-689 (-225)) (-566)) 51)) (-3967 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-66 FUNCT1)))) 50)) (-3849 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-63 LSFUN2)))) 46)) (-3912 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-79 LSFUN1)))) 42)) (-3458 (((-1035) (-566) (-225) (-225) (-566) (-225) (-112) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN)))) 38)))
-(((-753) (-10 -7 (-15 -3458 ((-1035) (-566) (-225) (-225) (-566) (-225) (-112) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))) (-15 -3912 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-79 LSFUN1))))) (-15 -3849 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-63 LSFUN2))))) (-15 -3967 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-66 FUNCT1))))) (-15 -1522 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-566) (-566) (-689 (-225)) (-566))) (-15 -2397 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-112) (-112) (-566) (-566) (-689 (-225)) (-689 (-566)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-65 QPHESS))))) (-15 -3757 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-112) (-225) (-566) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-566) (-566) (-566) (-566) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))) (-15 -1415 ((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-566) (-689 (-225)) (-566))))) (T -753))
-((-1415 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-753)))) (-3757 (*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 (-689 (-225))) (-5 *5 (-112)) (-5 *6 (-225)) (-5 *7 (-689 (-566))) (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-80 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN)))) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-753)))) (-2397 (*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 (-689 (-225))) (-5 *6 (-112)) (-5 *7 (-689 (-566))) (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-65 QPHESS)))) (-5 *3 (-566)) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-753)))) (-1522 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-112)) (-5 *2 (-1035)) (-5 *1 (-753)))) (-3967 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-66 FUNCT1)))) (-5 *2 (-1035)) (-5 *1 (-753)))) (-3849 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-63 LSFUN2)))) (-5 *2 (-1035)) (-5 *1 (-753)))) (-3912 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-79 LSFUN1)))) (-5 *2 (-1035)) (-5 *1 (-753)))) (-3458 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-566)) (-5 *5 (-112)) (-5 *6 (-689 (-225))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN)))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-753)))))
-(-10 -7 (-15 -3458 ((-1035) (-566) (-225) (-225) (-566) (-225) (-112) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))) (-15 -3912 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-79 LSFUN1))))) (-15 -3849 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-63 LSFUN2))))) (-15 -3967 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-66 FUNCT1))))) (-15 -1522 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-566) (-566) (-689 (-225)) (-566))) (-15 -2397 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-112) (-112) (-566) (-566) (-689 (-225)) (-689 (-566)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-65 QPHESS))))) (-15 -3757 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-112) (-225) (-566) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-566) (-566) (-566) (-566) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))) (-15 -1415 ((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-566) (-689 (-225)) (-566))))
-((-2071 (((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566)) 47)) (-2613 (((-1035) (-1157) (-1157) (-566) (-566) (-689 (-169 (-225))) (-566) (-689 (-169 (-225))) (-566) (-566) (-689 (-169 (-225))) (-566)) 46)) (-2243 (((-1035) (-566) (-566) (-566) (-689 (-169 (-225))) (-566)) 45)) (-3706 (((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 40)) (-4232 (((-1035) (-1157) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-689 (-225)) (-566)) 39)) (-2123 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-566)) 36)) (-1967 (((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566)) 35)) (-4315 (((-1035) (-566) (-566) (-566) (-566) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-225) (-225) (-566)) 34)) (-2723 (((-1035) (-566) (-566) (-566) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-112) (-225) (-112) (-689 (-566)) (-689 (-225)) (-566)) 33)) (-4103 (((-1035) (-566) (-566) (-566) (-566) (-225) (-112) (-112) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-566)) 32)))
-(((-754) (-10 -7 (-15 -4103 ((-1035) (-566) (-566) (-566) (-566) (-225) (-112) (-112) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-566))) (-15 -2723 ((-1035) (-566) (-566) (-566) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-112) (-225) (-112) (-689 (-566)) (-689 (-225)) (-566))) (-15 -4315 ((-1035) (-566) (-566) (-566) (-566) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-225) (-225) (-566))) (-15 -1967 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566))) (-15 -2123 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-566))) (-15 -4232 ((-1035) (-1157) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-689 (-225)) (-566))) (-15 -3706 ((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2243 ((-1035) (-566) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -2613 ((-1035) (-1157) (-1157) (-566) (-566) (-689 (-169 (-225))) (-566) (-689 (-169 (-225))) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -2071 ((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566))))) (T -754))
-((-2071 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-169 (-225)))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-2613 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-169 (-225)))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-2243 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-169 (-225)))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-3706 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-4232 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-2123 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-1967 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-754)))) (-4315 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-644 (-112))) (-5 *5 (-689 (-225))) (-5 *6 (-689 (-566))) (-5 *7 (-225)) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-754)))) (-2723 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-689 (-566))) (-5 *5 (-112)) (-5 *7 (-689 (-225))) (-5 *3 (-566)) (-5 *6 (-225)) (-5 *2 (-1035)) (-5 *1 (-754)))) (-4103 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-644 (-112))) (-5 *7 (-689 (-225))) (-5 *8 (-689 (-566))) (-5 *3 (-566)) (-5 *4 (-225)) (-5 *5 (-112)) (-5 *2 (-1035)) (-5 *1 (-754)))))
-(-10 -7 (-15 -4103 ((-1035) (-566) (-566) (-566) (-566) (-225) (-112) (-112) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-566))) (-15 -2723 ((-1035) (-566) (-566) (-566) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-112) (-225) (-112) (-689 (-566)) (-689 (-225)) (-566))) (-15 -4315 ((-1035) (-566) (-566) (-566) (-566) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-225) (-225) (-566))) (-15 -1967 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566))) (-15 -2123 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-566))) (-15 -4232 ((-1035) (-1157) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-689 (-225)) (-566))) (-15 -3706 ((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2243 ((-1035) (-566) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -2613 ((-1035) (-1157) (-1157) (-566) (-566) (-689 (-169 (-225))) (-566) (-689 (-169 (-225))) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -2071 ((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566))))
-((-1466 (((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566)) 80)) (-3635 (((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566)) 69)) (-4335 (((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE))) (-390)) 56) (((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE)))) 55)) (-3231 (((-1035) (-566) (-566) (-566) (-225) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566)) 37)) (-4373 (((-1035) (-566) (-566) (-225) (-225) (-566) (-566) (-689 (-225)) (-566)) 33)) (-3592 (((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566) (-566)) 30)) (-1696 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 29)) (-2393 (((-1035) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 28)) (-3307 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 27)) (-1702 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566)) 26)) (-4393 (((-1035) (-566) (-566) (-689 (-225)) (-566)) 25)) (-3987 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 24)) (-1977 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 23)) (-1615 (((-1035) (-689 (-225)) (-566) (-566) (-566) (-566)) 22)) (-4010 (((-1035) (-566) (-566) (-689 (-225)) (-566)) 21)))
-(((-755) (-10 -7 (-15 -4010 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -1615 ((-1035) (-689 (-225)) (-566) (-566) (-566) (-566))) (-15 -1977 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3987 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4393 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -1702 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566))) (-15 -3307 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2393 ((-1035) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1696 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3592 ((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566) (-566))) (-15 -4373 ((-1035) (-566) (-566) (-225) (-225) (-566) (-566) (-689 (-225)) (-566))) (-15 -3231 ((-1035) (-566) (-566) (-566) (-225) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4335 ((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE))))) (-15 -4335 ((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE))) (-390))) (-15 -3635 ((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1466 ((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566))))) (T -755))
-((-1466 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-112)) (-5 *5 (-689 (-169 (-225)))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-3635 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-112)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-4335 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-390)) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-4335 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-3231 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-566)) (-5 *5 (-112)) (-5 *6 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-4373 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-3592 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-1696 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-2393 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-3307 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-1702 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-4393 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-3987 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-1977 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-1615 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-4010 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))))
-(-10 -7 (-15 -4010 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -1615 ((-1035) (-689 (-225)) (-566) (-566) (-566) (-566))) (-15 -1977 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3987 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4393 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -1702 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566))) (-15 -3307 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2393 ((-1035) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1696 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3592 ((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566) (-566))) (-15 -4373 ((-1035) (-566) (-566) (-225) (-225) (-566) (-566) (-689 (-225)) (-566))) (-15 -3231 ((-1035) (-566) (-566) (-566) (-225) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4335 ((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE))))) (-15 -4335 ((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE))) (-390))) (-15 -3635 ((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1466 ((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566))))
-((-4275 (((-1035) (-566) (-566) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-70 APROD)))) 64)) (-2484 (((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566)) 60)) (-2594 (((-1035) (-566) (-689 (-225)) (-112) (-225) (-566) (-566) (-566) (-566) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-390)) (|:| |fp| (-73 MSOLVE)))) 59)) (-3189 (((-1035) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566)) 37)) (-3239 (((-1035) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-566)) 36)) (-3747 (((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 33)) (-3686 (((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225))) 32)) (-3959 (((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566)) 28)) (-2007 (((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566)) 27)) (-1971 (((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566)) 26)) (-2090 (((-1035) (-566) (-689 (-169 (-225))) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-566)) 22)))
-(((-756) (-10 -7 (-15 -2090 ((-1035) (-566) (-689 (-169 (-225))) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -1971 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -2007 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -3959 ((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566))) (-15 -3686 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225)))) (-15 -3747 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3239 ((-1035) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3189 ((-1035) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566))) (-15 -2594 ((-1035) (-566) (-689 (-225)) (-112) (-225) (-566) (-566) (-566) (-566) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-390)) (|:| |fp| (-73 MSOLVE))))) (-15 -2484 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566))) (-15 -4275 ((-1035) (-566) (-566) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-70 APROD))))))) (T -756))
-((-4275 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-70 APROD)))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-2484 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-2594 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-112)) (-5 *6 (-225)) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 APROD)))) (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-73 MSOLVE)))) (-5 *2 (-1035)) (-5 *1 (-756)))) (-3189 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-3239 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-3747 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-756)))) (-3686 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-3959 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-2007 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-756)))) (-1971 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-756)))) (-2090 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-169 (-225)))) (-5 *2 (-1035)) (-5 *1 (-756)))))
-(-10 -7 (-15 -2090 ((-1035) (-566) (-689 (-169 (-225))) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -1971 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -2007 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -3959 ((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566))) (-15 -3686 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225)))) (-15 -3747 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3239 ((-1035) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3189 ((-1035) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566))) (-15 -2594 ((-1035) (-566) (-689 (-225)) (-112) (-225) (-566) (-566) (-566) (-566) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-390)) (|:| |fp| (-73 MSOLVE))))) (-15 -2484 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566))) (-15 -4275 ((-1035) (-566) (-566) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-70 APROD))))))
-((-2956 (((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-566) (-689 (-225))) 29)) (-1729 (((-1035) (-1157) (-566) (-566) (-689 (-225))) 28)) (-3825 (((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-225))) 27)) (-3752 (((-1035) (-566) (-566) (-566) (-689 (-225))) 21)))
-(((-757) (-10 -7 (-15 -3752 ((-1035) (-566) (-566) (-566) (-689 (-225)))) (-15 -3825 ((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-225)))) (-15 -1729 ((-1035) (-1157) (-566) (-566) (-689 (-225)))) (-15 -2956 ((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-566) (-689 (-225)))))) (T -757))
-((-2956 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-757)))) (-1729 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-757)))) (-3825 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-689 (-566))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-757)))) (-3752 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-757)))))
-(-10 -7 (-15 -3752 ((-1035) (-566) (-566) (-566) (-689 (-225)))) (-15 -3825 ((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-225)))) (-15 -1729 ((-1035) (-1157) (-566) (-566) (-689 (-225)))) (-15 -2956 ((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-566) (-689 (-225)))))
-((-3138 (((-1035) (-225) (-225) (-225) (-225) (-566)) 62)) (-1549 (((-1035) (-225) (-225) (-225) (-566)) 61)) (-4359 (((-1035) (-225) (-225) (-225) (-566)) 60)) (-2437 (((-1035) (-225) (-225) (-566)) 59)) (-3269 (((-1035) (-225) (-566)) 58)) (-2886 (((-1035) (-225) (-566)) 57)) (-3220 (((-1035) (-225) (-566)) 56)) (-2216 (((-1035) (-225) (-566)) 55)) (-3253 (((-1035) (-225) (-566)) 54)) (-3485 (((-1035) (-225) (-566)) 53)) (-3390 (((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566)) 52)) (-2975 (((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566)) 51)) (-3493 (((-1035) (-225) (-566)) 50)) (-1773 (((-1035) (-225) (-566)) 49)) (-2125 (((-1035) (-225) (-566)) 48)) (-1473 (((-1035) (-225) (-566)) 47)) (-3168 (((-1035) (-566) (-225) (-169 (-225)) (-566) (-1157) (-566)) 46)) (-3295 (((-1035) (-1157) (-169 (-225)) (-1157) (-566)) 45)) (-1355 (((-1035) (-1157) (-169 (-225)) (-1157) (-566)) 44)) (-2791 (((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566)) 43)) (-2395 (((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566)) 42)) (-1444 (((-1035) (-225) (-566)) 39)) (-1699 (((-1035) (-225) (-566)) 38)) (-2731 (((-1035) (-225) (-566)) 37)) (-3167 (((-1035) (-225) (-566)) 36)) (-1483 (((-1035) (-225) (-566)) 35)) (-2611 (((-1035) (-225) (-566)) 34)) (-3360 (((-1035) (-225) (-566)) 33)) (-3538 (((-1035) (-225) (-566)) 32)) (-3045 (((-1035) (-225) (-566)) 31)) (-1568 (((-1035) (-225) (-566)) 30)) (-3072 (((-1035) (-225) (-225) (-225) (-566)) 29)) (-1601 (((-1035) (-225) (-566)) 28)) (-2525 (((-1035) (-225) (-566)) 27)) (-3091 (((-1035) (-225) (-566)) 26)) (-1847 (((-1035) (-225) (-566)) 25)) (-4365 (((-1035) (-225) (-566)) 24)) (-3824 (((-1035) (-169 (-225)) (-566)) 21)))
-(((-758) (-10 -7 (-15 -3824 ((-1035) (-169 (-225)) (-566))) (-15 -4365 ((-1035) (-225) (-566))) (-15 -1847 ((-1035) (-225) (-566))) (-15 -3091 ((-1035) (-225) (-566))) (-15 -2525 ((-1035) (-225) (-566))) (-15 -1601 ((-1035) (-225) (-566))) (-15 -3072 ((-1035) (-225) (-225) (-225) (-566))) (-15 -1568 ((-1035) (-225) (-566))) (-15 -3045 ((-1035) (-225) (-566))) (-15 -3538 ((-1035) (-225) (-566))) (-15 -3360 ((-1035) (-225) (-566))) (-15 -2611 ((-1035) (-225) (-566))) (-15 -1483 ((-1035) (-225) (-566))) (-15 -3167 ((-1035) (-225) (-566))) (-15 -2731 ((-1035) (-225) (-566))) (-15 -1699 ((-1035) (-225) (-566))) (-15 -1444 ((-1035) (-225) (-566))) (-15 -2395 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -2791 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -1355 ((-1035) (-1157) (-169 (-225)) (-1157) (-566))) (-15 -3295 ((-1035) (-1157) (-169 (-225)) (-1157) (-566))) (-15 -3168 ((-1035) (-566) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -1473 ((-1035) (-225) (-566))) (-15 -2125 ((-1035) (-225) (-566))) (-15 -1773 ((-1035) (-225) (-566))) (-15 -3493 ((-1035) (-225) (-566))) (-15 -2975 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -3390 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -3485 ((-1035) (-225) (-566))) (-15 -3253 ((-1035) (-225) (-566))) (-15 -2216 ((-1035) (-225) (-566))) (-15 -3220 ((-1035) (-225) (-566))) (-15 -2886 ((-1035) (-225) (-566))) (-15 -3269 ((-1035) (-225) (-566))) (-15 -2437 ((-1035) (-225) (-225) (-566))) (-15 -4359 ((-1035) (-225) (-225) (-225) (-566))) (-15 -1549 ((-1035) (-225) (-225) (-225) (-566))) (-15 -3138 ((-1035) (-225) (-225) (-225) (-225) (-566))))) (T -758))
-((-3138 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1549 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-4359 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2437 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3269 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2886 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3220 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2216 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3253 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3485 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3390 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157)) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2975 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157)) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3493 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1773 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2125 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1473 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3168 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-566)) (-5 *5 (-169 (-225))) (-5 *6 (-1157)) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3295 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1157)) (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1355 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1157)) (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2791 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157)) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2395 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157)) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1444 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1699 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2731 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3167 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1483 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2611 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3360 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3538 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3045 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1568 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3072 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1601 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2525 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3091 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1847 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-4365 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3824 (*1 *2 *3 *4) (-12 (-5 *3 (-169 (-225))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(-10 -7 (-15 -3824 ((-1035) (-169 (-225)) (-566))) (-15 -4365 ((-1035) (-225) (-566))) (-15 -1847 ((-1035) (-225) (-566))) (-15 -3091 ((-1035) (-225) (-566))) (-15 -2525 ((-1035) (-225) (-566))) (-15 -1601 ((-1035) (-225) (-566))) (-15 -3072 ((-1035) (-225) (-225) (-225) (-566))) (-15 -1568 ((-1035) (-225) (-566))) (-15 -3045 ((-1035) (-225) (-566))) (-15 -3538 ((-1035) (-225) (-566))) (-15 -3360 ((-1035) (-225) (-566))) (-15 -2611 ((-1035) (-225) (-566))) (-15 -1483 ((-1035) (-225) (-566))) (-15 -3167 ((-1035) (-225) (-566))) (-15 -2731 ((-1035) (-225) (-566))) (-15 -1699 ((-1035) (-225) (-566))) (-15 -1444 ((-1035) (-225) (-566))) (-15 -2395 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -2791 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -1355 ((-1035) (-1157) (-169 (-225)) (-1157) (-566))) (-15 -3295 ((-1035) (-1157) (-169 (-225)) (-1157) (-566))) (-15 -3168 ((-1035) (-566) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -1473 ((-1035) (-225) (-566))) (-15 -2125 ((-1035) (-225) (-566))) (-15 -1773 ((-1035) (-225) (-566))) (-15 -3493 ((-1035) (-225) (-566))) (-15 -2975 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -3390 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -3485 ((-1035) (-225) (-566))) (-15 -3253 ((-1035) (-225) (-566))) (-15 -2216 ((-1035) (-225) (-566))) (-15 -3220 ((-1035) (-225) (-566))) (-15 -2886 ((-1035) (-225) (-566))) (-15 -3269 ((-1035) (-225) (-566))) (-15 -2437 ((-1035) (-225) (-225) (-566))) (-15 -4359 ((-1035) (-225) (-225) (-225) (-566))) (-15 -1549 ((-1035) (-225) (-225) (-225) (-566))) (-15 -3138 ((-1035) (-225) (-225) (-225) (-225) (-566))))
-((-1362 (((-1269)) 21)) (-3597 (((-1157)) 32)) (-4173 (((-1157)) 31)) (-3618 (((-1103) (-1175) (-689 (-566))) 46) (((-1103) (-1175) (-689 (-225))) 42)) (-3601 (((-112)) 19)) (-3734 (((-1157) (-1157)) 35)))
-(((-759) (-10 -7 (-15 -4173 ((-1157))) (-15 -3597 ((-1157))) (-15 -3734 ((-1157) (-1157))) (-15 -3618 ((-1103) (-1175) (-689 (-225)))) (-15 -3618 ((-1103) (-1175) (-689 (-566)))) (-15 -3601 ((-112))) (-15 -1362 ((-1269))))) (T -759))
-((-1362 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-759)))) (-3601 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-759)))) (-3618 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-689 (-566))) (-5 *2 (-1103)) (-5 *1 (-759)))) (-3618 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-689 (-225))) (-5 *2 (-1103)) (-5 *1 (-759)))) (-3734 (*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))) (-3597 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))) (-4173 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))))
-(-10 -7 (-15 -4173 ((-1157))) (-15 -3597 ((-1157))) (-15 -3734 ((-1157) (-1157))) (-15 -3618 ((-1103) (-1175) (-689 (-225)))) (-15 -3618 ((-1103) (-1175) (-689 (-566)))) (-15 -3601 ((-112))) (-15 -1362 ((-1269))))
-((-3755 (($ $ $) 10)) (-3551 (($ $ $ $) 9)) (-2821 (($ $ $) 12)))
-(((-760 |#1|) (-10 -8 (-15 -2821 (|#1| |#1| |#1|)) (-15 -3755 (|#1| |#1| |#1|)) (-15 -3551 (|#1| |#1| |#1| |#1|))) (-761)) (T -760))
-NIL
-(-10 -8 (-15 -2821 (|#1| |#1| |#1|)) (-15 -3755 (|#1| |#1| |#1|)) (-15 -3551 (|#1| |#1| |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2258 (($ $ (-921)) 31)) (-4171 (($ $ (-921)) 32)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-3755 (($ $ $) 28)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-3551 (($ $ $ $) 29)) (-2821 (($ $ $) 27)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 33)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 30)))
+((-3547 (((-1035) (-689 (-225)) (-566) (-112) (-566)) 25)) (-1747 (((-1035) (-689 (-225)) (-566) (-112) (-566)) 24)))
+(((-745) (-10 -7 (-15 -1747 ((-1035) (-689 (-225)) (-566) (-112) (-566))) (-15 -3547 ((-1035) (-689 (-225)) (-566) (-112) (-566))))) (T -745))
+((-3547 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-112)) (-5 *2 (-1035)) (-5 *1 (-745)))) (-1747 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-112)) (-5 *2 (-1035)) (-5 *1 (-745)))))
+(-10 -7 (-15 -1747 ((-1035) (-689 (-225)) (-566) (-112) (-566))) (-15 -3547 ((-1035) (-689 (-225)) (-566) (-112) (-566))))
+((-2577 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-74 FCN)))) 43)) (-1496 (((-1035) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-81 FCN)))) 39)) (-1462 (((-1035) (-225) (-225) (-225) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) 32)))
+(((-746) (-10 -7 (-15 -1462 ((-1035) (-225) (-225) (-225) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))) (-15 -1496 ((-1035) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-81 FCN))))) (-15 -2577 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-74 FCN))))))) (T -746))
+((-2577 (*1 *2 *3 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1035)) (-5 *1 (-746)))) (-1496 (*1 *2 *3 *3 *4 *5 *3 *6) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1035)) (-5 *1 (-746)))) (-1462 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) (-5 *2 (-1035)) (-5 *1 (-746)))))
+(-10 -7 (-15 -1462 ((-1035) (-225) (-225) (-225) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))) (-15 -1496 ((-1035) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-81 FCN))))) (-15 -2577 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-74 FCN))))))
+((-2902 (((-1035) (-566) (-566) (-689 (-225)) (-566)) 34)) (-3394 (((-1035) (-566) (-566) (-689 (-225)) (-566)) 33)) (-1875 (((-1035) (-566) (-689 (-225)) (-566)) 32)) (-2229 (((-1035) (-566) (-689 (-225)) (-566)) 31)) (-1304 (((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 30)) (-1764 (((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 29)) (-4174 (((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566)) 28)) (-2707 (((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566)) 27)) (-3613 (((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 24)) (-3705 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566)) 23)) (-2156 (((-1035) (-566) (-689 (-225)) (-566)) 22)) (-1617 (((-1035) (-566) (-689 (-225)) (-566)) 21)))
+(((-747) (-10 -7 (-15 -1617 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -2156 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -3705 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3613 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2707 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4174 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1764 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1304 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2229 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -1875 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -3394 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -2902 ((-1035) (-566) (-566) (-689 (-225)) (-566))))) (T -747))
+((-2902 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-3394 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-1875 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-2229 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-1304 (*1 *2 *3 *3 *4 *5 *5 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-1764 (*1 *2 *3 *3 *4 *5 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-4174 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-2707 (*1 *2 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-3613 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-3705 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-2156 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))) (-1617 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-747)))))
+(-10 -7 (-15 -1617 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -2156 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -3705 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3613 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2707 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4174 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1764 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1304 ((-1035) (-566) (-566) (-1157) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2229 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -1875 ((-1035) (-566) (-689 (-225)) (-566))) (-15 -3394 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -2902 ((-1035) (-566) (-566) (-689 (-225)) (-566))))
+((-3464 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN)))) 52)) (-1728 (((-1035) (-689 (-225)) (-689 (-225)) (-566) (-566)) 51)) (-1909 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN)))) 50)) (-3825 (((-1035) (-225) (-225) (-566) (-566) (-566) (-566)) 46)) (-1858 (((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) 45)) (-3777 (((-1035) (-225) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) 44)) (-1816 (((-1035) (-225) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) 43)) (-3134 (((-1035) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) 42)) (-1526 (((-1035) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) 38)) (-2121 (((-1035) (-225) (-225) (-566) (-689 (-225)) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) 37)) (-2878 (((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) 33)) (-1886 (((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) 32)))
+(((-748) (-10 -7 (-15 -1886 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))) (-15 -2878 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))) (-15 -2121 ((-1035) (-225) (-225) (-566) (-689 (-225)) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))) (-15 -1526 ((-1035) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))) (-15 -3134 ((-1035) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -1816 ((-1035) (-225) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -3777 ((-1035) (-225) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -1858 ((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -3825 ((-1035) (-225) (-225) (-566) (-566) (-566) (-566))) (-15 -1909 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))) (-15 -1728 ((-1035) (-689 (-225)) (-689 (-225)) (-566) (-566))) (-15 -3464 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))))) (T -748))
+((-3464 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-1728 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-748)))) (-1909 (*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-3825 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-748)))) (-1858 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-3777 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-1816 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-3134 (*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-1526 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-2121 (*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6) (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-748)))) (-2878 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) (-5 *2 (-1035)) (-5 *1 (-748)))) (-1886 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) (-5 *2 (-1035)) (-5 *1 (-748)))))
+(-10 -7 (-15 -1886 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))) (-15 -2878 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))) (-15 -2121 ((-1035) (-225) (-225) (-566) (-689 (-225)) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))) (-15 -1526 ((-1035) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))) (-15 -3134 ((-1035) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -1816 ((-1035) (-225) (-225) (-225) (-225) (-566) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -3777 ((-1035) (-225) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -1858 ((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G))))) (-15 -3825 ((-1035) (-225) (-225) (-566) (-566) (-566) (-566))) (-15 -1909 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))) (-15 -1728 ((-1035) (-689 (-225)) (-689 (-225)) (-566) (-566))) (-15 -3464 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-225) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))))
+((-3908 (((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-390)) (|:| |fp| (-76 G JACOBG JACGEP)))) 76)) (-2640 (((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))) (-390) (-390)) 69) (((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL)))) 68)) (-2721 (((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-85 FCNG)))) 57)) (-2737 (((-1035) (-689 (-225)) (-689 (-225)) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) 50)) (-1419 (((-1035) (-225) (-566) (-566) (-1157) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) 49)) (-3471 (((-1035) (-225) (-566) (-566) (-225) (-1157) (-225) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) 45)) (-1497 (((-1035) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) 42)) (-2679 (((-1035) (-225) (-566) (-566) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) 38)))
+(((-749) (-10 -7 (-15 -2679 ((-1035) (-225) (-566) (-566) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -1497 ((-1035) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))) (-15 -3471 ((-1035) (-225) (-566) (-566) (-225) (-1157) (-225) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -1419 ((-1035) (-225) (-566) (-566) (-1157) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -2737 ((-1035) (-689 (-225)) (-689 (-225)) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))) (-15 -2721 ((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-85 FCNG))))) (-15 -2640 ((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))))) (-15 -2640 ((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))) (-390) (-390))) (-15 -3908 ((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-390)) (|:| |fp| (-76 G JACOBG JACGEP))))))) (T -749))
+((-3908 (*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-75 FCN JACOBF JACEPS)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-76 G JACOBG JACGEP)))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-2640 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL)))) (-5 *8 (-390)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-2640 (*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL)))) (-5 *2 (-1035)) (-5 *1 (-749)))) (-2721 (*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7) (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-84 FCNF)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-2737 (*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1035)) (-5 *1 (-749)))) (-1419 (*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10) (-12 (-5 *4 (-566)) (-5 *5 (-1157)) (-5 *6 (-689 (-225))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-71 PEDERV)))) (-5 *10 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-3471 (*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9) (-12 (-5 *4 (-566)) (-5 *5 (-1157)) (-5 *6 (-689 (-225))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G)))) (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-1497 (*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))) (-2679 (*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7) (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT)))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))))
+(-10 -7 (-15 -2679 ((-1035) (-225) (-566) (-566) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -1497 ((-1035) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))) (-15 -3471 ((-1035) (-225) (-566) (-566) (-225) (-1157) (-225) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -1419 ((-1035) (-225) (-566) (-566) (-1157) (-566) (-225) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-71 PEDERV))) (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))) (-15 -2737 ((-1035) (-689 (-225)) (-689 (-225)) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))) (-15 -2721 ((-1035) (-225) (-225) (-566) (-225) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-84 FCNF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-85 FCNG))))) (-15 -2640 ((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))))) (-15 -2640 ((-1035) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))) (-390) (-390))) (-15 -3908 ((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-75 FCN JACOBF JACEPS))) (-3 (|:| |fn| (-390)) (|:| |fp| (-76 G JACOBG JACGEP))))))
+((-3126 (((-1035) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-675 (-225)) (-566)) 45)) (-1527 (((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-1157) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-83 BNDY)))) 41)) (-1507 (((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 23)))
+(((-750) (-10 -7 (-15 -1507 ((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1527 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-1157) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-83 BNDY))))) (-15 -3126 ((-1035) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-675 (-225)) (-566))))) (T -750))
+((-3126 (*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 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-675 (-225))) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-750)))) (-1527 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-1157)) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-82 PDEF)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1035)) (-5 *1 (-750)))) (-1507 (*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-750)))))
+(-10 -7 (-15 -1507 ((-1035) (-566) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1527 ((-1035) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-1157) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-390)) (|:| |fp| (-83 BNDY))))) (-15 -3126 ((-1035) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-675 (-225)) (-566))))
+((-3387 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-689 (-225)) (-225) (-225) (-566)) 35)) (-1481 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-225) (-225) (-566)) 34)) (-2195 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-689 (-225)) (-225) (-225) (-566)) 33)) (-2981 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 29)) (-3233 (((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 28)) (-2558 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566)) 27)) (-3214 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566)) 24)) (-3637 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566)) 23)) (-1342 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566)) 22)) (-4020 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566)) 21)))
+(((-751) (-10 -7 (-15 -4020 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))) (-15 -1342 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3637 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -3214 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -2558 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566))) (-15 -3233 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2981 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2195 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-689 (-225)) (-225) (-225) (-566))) (-15 -1481 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-225) (-225) (-566))) (-15 -3387 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-689 (-225)) (-225) (-225) (-566))))) (T -751))
+((-3387 (*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-751)))) (-1481 (*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-751)))) (-2195 (*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *6 (-225)) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-751)))) (-2981 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))) (-3233 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))) (-2558 (*1 *2 *3 *4 *4 *4 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-751)))) (-3214 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))) (-3637 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))) (-1342 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))) (-4020 (*1 *2 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-751)))))
+(-10 -7 (-15 -4020 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))) (-15 -1342 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3637 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -3214 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -2558 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-225) (-566))) (-15 -3233 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2981 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2195 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-689 (-225)) (-225) (-225) (-566))) (-15 -1481 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-225) (-225) (-566))) (-15 -3387 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-689 (-225)) (-225) (-225) (-566))))
+((-2648 (((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566)) 45)) (-3242 (((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-566)) 44)) (-4280 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566)) 43)) (-4319 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 42)) (-3742 (((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566)) 41)) (-3185 (((-1035) (-1157) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566)) 40)) (-1400 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566) (-566) (-566) (-225) (-689 (-225)) (-566)) 39)) (-1939 (((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566))) 38)) (-3101 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566)) 35)) (-3003 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566)) 34)) (-3745 (((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566)) 33)) (-3672 (((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 32)) (-3554 (((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566)) 31)) (-3726 (((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-566)) 30)) (-3878 (((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-566) (-566) (-566)) 29)) (-4093 (((-1035) (-566) (-566) (-566) (-225) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-566)) (-566) (-566) (-566)) 28)) (-1463 (((-1035) (-566) (-689 (-225)) (-225) (-566)) 24)) (-2045 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 21)))
+(((-752) (-10 -7 (-15 -2045 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1463 ((-1035) (-566) (-689 (-225)) (-225) (-566))) (-15 -4093 ((-1035) (-566) (-566) (-566) (-225) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-566)) (-566) (-566) (-566))) (-15 -3878 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-566) (-566) (-566))) (-15 -3726 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-566))) (-15 -3554 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566))) (-15 -3672 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3745 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566))) (-15 -3003 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566))) (-15 -3101 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1939 ((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566)))) (-15 -1400 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566) (-566) (-566) (-225) (-689 (-225)) (-566))) (-15 -3185 ((-1035) (-1157) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566))) (-15 -3742 ((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4319 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4280 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))) (-15 -3242 ((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2648 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))))) (T -752))
+((-2648 (*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3242 (*1 *2 *3 *3 *3 *4 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-4280 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))) (-4319 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3742 (*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3185 (*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4) (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-225)) (-5 *7 (-689 (-566))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-1400 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *6 (-225)) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-1939 (*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7) (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-225)) (-5 *7 (-689 (-566))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3101 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3003 (*1 *2 *3 *4 *4 *5 *3 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3745 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3672 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3554 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3726 (*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-3878 (*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-4093 (*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3) (-12 (-5 *5 (-689 (-225))) (-5 *6 (-689 (-566))) (-5 *3 (-566)) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-1463 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))) (-2045 (*1 *2 *3 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-752)))))
+(-10 -7 (-15 -2045 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1463 ((-1035) (-566) (-689 (-225)) (-225) (-566))) (-15 -4093 ((-1035) (-566) (-566) (-566) (-225) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-566)) (-566) (-566) (-566))) (-15 -3878 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-566) (-566) (-566))) (-15 -3726 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566) (-566) (-566))) (-15 -3554 ((-1035) (-566) (-225) (-225) (-689 (-225)) (-566) (-566) (-225) (-566))) (-15 -3672 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3745 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566))) (-15 -3003 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566))) (-15 -3101 ((-1035) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1939 ((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566)))) (-15 -1400 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566) (-566) (-566) (-225) (-689 (-225)) (-566))) (-15 -3185 ((-1035) (-1157) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566))) (-15 -3742 ((-1035) (-1157) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4319 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -4280 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))) (-15 -3242 ((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2648 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566) (-689 (-225)) (-689 (-225)) (-566) (-566) (-566))))
+((-3718 (((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-566) (-689 (-225)) (-566)) 63)) (-1806 (((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-112) (-225) (-566) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-566) (-566) (-566) (-566) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN)))) 62)) (-3209 (((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-112) (-112) (-566) (-566) (-689 (-225)) (-689 (-566)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-65 QPHESS)))) 58)) (-2367 (((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-566) (-566) (-689 (-225)) (-566)) 51)) (-3091 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-66 FUNCT1)))) 50)) (-3295 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-63 LSFUN2)))) 46)) (-2635 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-79 LSFUN1)))) 42)) (-3783 (((-1035) (-566) (-225) (-225) (-566) (-225) (-112) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN)))) 38)))
+(((-753) (-10 -7 (-15 -3783 ((-1035) (-566) (-225) (-225) (-566) (-225) (-112) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))) (-15 -2635 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-79 LSFUN1))))) (-15 -3295 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-63 LSFUN2))))) (-15 -3091 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-66 FUNCT1))))) (-15 -2367 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-566) (-566) (-689 (-225)) (-566))) (-15 -3209 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-112) (-112) (-566) (-566) (-689 (-225)) (-689 (-566)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-65 QPHESS))))) (-15 -1806 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-112) (-225) (-566) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-566) (-566) (-566) (-566) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))) (-15 -3718 ((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-566) (-689 (-225)) (-566))))) (T -753))
+((-3718 (*1 *2 *3 *3 *3 *4 *5 *3 *5 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-753)))) (-1806 (*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 (-689 (-225))) (-5 *5 (-112)) (-5 *6 (-225)) (-5 *7 (-689 (-566))) (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-80 CONFUN)))) (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN)))) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-753)))) (-3209 (*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 (-689 (-225))) (-5 *6 (-112)) (-5 *7 (-689 (-566))) (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-65 QPHESS)))) (-5 *3 (-566)) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-753)))) (-2367 (*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-112)) (-5 *2 (-1035)) (-5 *1 (-753)))) (-3091 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-66 FUNCT1)))) (-5 *2 (-1035)) (-5 *1 (-753)))) (-3295 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-63 LSFUN2)))) (-5 *2 (-1035)) (-5 *1 (-753)))) (-2635 (*1 *2 *3 *3 *3 *3 *4 *3 *5) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-79 LSFUN1)))) (-5 *2 (-1035)) (-5 *1 (-753)))) (-3783 (*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7) (-12 (-5 *3 (-566)) (-5 *5 (-112)) (-5 *6 (-689 (-225))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN)))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-753)))))
+(-10 -7 (-15 -3783 ((-1035) (-566) (-225) (-225) (-566) (-225) (-112) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))) (-15 -2635 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-79 LSFUN1))))) (-15 -3295 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-63 LSFUN2))))) (-15 -3091 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-66 FUNCT1))))) (-15 -2367 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-566) (-566) (-689 (-225)) (-566))) (-15 -3209 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-225) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-112) (-112) (-112) (-566) (-566) (-689 (-225)) (-689 (-566)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-65 QPHESS))))) (-15 -1806 ((-1035) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-566) (-112) (-225) (-566) (-225) (-225) (-112) (-225) (-225) (-225) (-225) (-112) (-566) (-566) (-566) (-566) (-566) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-566) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-80 CONFUN))) (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))) (-15 -3718 ((-1035) (-566) (-566) (-566) (-225) (-689 (-225)) (-566) (-689 (-225)) (-566))))
+((-3032 (((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566)) 47)) (-1541 (((-1035) (-1157) (-1157) (-566) (-566) (-689 (-169 (-225))) (-566) (-689 (-169 (-225))) (-566) (-566) (-689 (-169 (-225))) (-566)) 46)) (-2248 (((-1035) (-566) (-566) (-566) (-689 (-169 (-225))) (-566)) 45)) (-4328 (((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 40)) (-2642 (((-1035) (-1157) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-689 (-225)) (-566)) 39)) (-3558 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-566)) 36)) (-1308 (((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566)) 35)) (-2186 (((-1035) (-566) (-566) (-566) (-566) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-225) (-225) (-566)) 34)) (-3296 (((-1035) (-566) (-566) (-566) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-112) (-225) (-112) (-689 (-566)) (-689 (-225)) (-566)) 33)) (-3773 (((-1035) (-566) (-566) (-566) (-566) (-225) (-112) (-112) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-566)) 32)))
+(((-754) (-10 -7 (-15 -3773 ((-1035) (-566) (-566) (-566) (-566) (-225) (-112) (-112) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-566))) (-15 -3296 ((-1035) (-566) (-566) (-566) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-112) (-225) (-112) (-689 (-566)) (-689 (-225)) (-566))) (-15 -2186 ((-1035) (-566) (-566) (-566) (-566) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-225) (-225) (-566))) (-15 -1308 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566))) (-15 -3558 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-566))) (-15 -2642 ((-1035) (-1157) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-689 (-225)) (-566))) (-15 -4328 ((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2248 ((-1035) (-566) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -1541 ((-1035) (-1157) (-1157) (-566) (-566) (-689 (-169 (-225))) (-566) (-689 (-169 (-225))) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -3032 ((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566))))) (T -754))
+((-3032 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-169 (-225)))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-1541 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-169 (-225)))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-2248 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-169 (-225)))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-4328 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-2642 (*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-3558 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-754)))) (-1308 (*1 *2 *3 *4 *3 *5 *3) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-754)))) (-2186 (*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3) (-12 (-5 *4 (-644 (-112))) (-5 *5 (-689 (-225))) (-5 *6 (-689 (-566))) (-5 *7 (-225)) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-754)))) (-3296 (*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3) (-12 (-5 *4 (-689 (-566))) (-5 *5 (-112)) (-5 *7 (-689 (-225))) (-5 *3 (-566)) (-5 *6 (-225)) (-5 *2 (-1035)) (-5 *1 (-754)))) (-3773 (*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3) (-12 (-5 *6 (-644 (-112))) (-5 *7 (-689 (-225))) (-5 *8 (-689 (-566))) (-5 *3 (-566)) (-5 *4 (-225)) (-5 *5 (-112)) (-5 *2 (-1035)) (-5 *1 (-754)))))
+(-10 -7 (-15 -3773 ((-1035) (-566) (-566) (-566) (-566) (-225) (-112) (-112) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-566))) (-15 -3296 ((-1035) (-566) (-566) (-566) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-689 (-566)) (-112) (-225) (-112) (-689 (-566)) (-689 (-225)) (-566))) (-15 -2186 ((-1035) (-566) (-566) (-566) (-566) (-644 (-112)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-225) (-225) (-566))) (-15 -1308 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566))) (-15 -3558 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-566))) (-15 -2642 ((-1035) (-1157) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-689 (-225)) (-566))) (-15 -4328 ((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2248 ((-1035) (-566) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -1541 ((-1035) (-1157) (-1157) (-566) (-566) (-689 (-169 (-225))) (-566) (-689 (-169 (-225))) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -3032 ((-1035) (-1157) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566))))
+((-2998 (((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566)) 80)) (-3006 (((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566)) 69)) (-2398 (((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE))) (-390)) 56) (((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE)))) 55)) (-3499 (((-1035) (-566) (-566) (-566) (-225) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566)) 37)) (-1509 (((-1035) (-566) (-566) (-225) (-225) (-566) (-566) (-689 (-225)) (-566)) 33)) (-2599 (((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566) (-566)) 30)) (-1667 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 29)) (-3167 (((-1035) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 28)) (-2906 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 27)) (-3605 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566)) 26)) (-1738 (((-1035) (-566) (-566) (-689 (-225)) (-566)) 25)) (-2076 (((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 24)) (-1425 (((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566)) 23)) (-2083 (((-1035) (-689 (-225)) (-566) (-566) (-566) (-566)) 22)) (-2272 (((-1035) (-566) (-566) (-689 (-225)) (-566)) 21)))
+(((-755) (-10 -7 (-15 -2272 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -2083 ((-1035) (-689 (-225)) (-566) (-566) (-566) (-566))) (-15 -1425 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2076 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1738 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -3605 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566))) (-15 -2906 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3167 ((-1035) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1667 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2599 ((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566) (-566))) (-15 -1509 ((-1035) (-566) (-566) (-225) (-225) (-566) (-566) (-689 (-225)) (-566))) (-15 -3499 ((-1035) (-566) (-566) (-566) (-225) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2398 ((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE))))) (-15 -2398 ((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE))) (-390))) (-15 -3006 ((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2998 ((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566))))) (T -755))
+((-2998 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-112)) (-5 *5 (-689 (-169 (-225)))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-3006 (*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *4 (-112)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-2398 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-390)) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-2398 (*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT)))) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-3499 (*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3) (-12 (-5 *3 (-566)) (-5 *5 (-112)) (-5 *6 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-1509 (*1 *2 *3 *3 *4 *4 *3 *3 *5 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-2599 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-1667 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-3167 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-2906 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-3605 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-1738 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-2076 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-1425 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))) (-2083 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-755)))) (-2272 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-755)))))
+(-10 -7 (-15 -2272 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -2083 ((-1035) (-689 (-225)) (-566) (-566) (-566) (-566))) (-15 -1425 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2076 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1738 ((-1035) (-566) (-566) (-689 (-225)) (-566))) (-15 -3605 ((-1035) (-566) (-566) (-566) (-566) (-689 (-225)) (-566))) (-15 -2906 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3167 ((-1035) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -1667 ((-1035) (-566) (-566) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2599 ((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566) (-566))) (-15 -1509 ((-1035) (-566) (-566) (-225) (-225) (-566) (-566) (-689 (-225)) (-566))) (-15 -3499 ((-1035) (-566) (-566) (-566) (-225) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2398 ((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE))))) (-15 -2398 ((-1035) (-566) (-566) (-225) (-566) (-566) (-566) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE))) (-390))) (-15 -3006 ((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -2998 ((-1035) (-566) (-566) (-566) (-566) (-566) (-112) (-566) (-112) (-566) (-689 (-169 (-225))) (-689 (-169 (-225))) (-566))))
+((-3008 (((-1035) (-566) (-566) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-70 APROD)))) 64)) (-2763 (((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566)) 60)) (-1344 (((-1035) (-566) (-689 (-225)) (-112) (-225) (-566) (-566) (-566) (-566) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-390)) (|:| |fp| (-73 MSOLVE)))) 59)) (-3122 (((-1035) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566)) 37)) (-3559 (((-1035) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-566)) 36)) (-1699 (((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566)) 33)) (-2296 (((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225))) 32)) (-3022 (((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566)) 28)) (-1759 (((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566)) 27)) (-1353 (((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566)) 26)) (-3225 (((-1035) (-566) (-689 (-169 (-225))) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-566)) 22)))
+(((-756) (-10 -7 (-15 -3225 ((-1035) (-566) (-689 (-169 (-225))) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -1353 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -1759 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -3022 ((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566))) (-15 -2296 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225)))) (-15 -1699 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3559 ((-1035) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3122 ((-1035) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566))) (-15 -1344 ((-1035) (-566) (-689 (-225)) (-112) (-225) (-566) (-566) (-566) (-566) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-390)) (|:| |fp| (-73 MSOLVE))))) (-15 -2763 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566))) (-15 -3008 ((-1035) (-566) (-566) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-70 APROD))))))) (T -756))
+((-3008 (*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-70 APROD)))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-2763 (*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-1344 (*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-112)) (-5 *6 (-225)) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 APROD)))) (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-73 MSOLVE)))) (-5 *2 (-1035)) (-5 *1 (-756)))) (-3122 (*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-3559 (*1 *2 *3 *3 *3 *4 *3 *5 *5 *3) (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-1699 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-756)))) (-2296 (*1 *2 *3 *4 *3 *5 *5 *3 *5 *4) (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-3022 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-756)))) (-1759 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-756)))) (-1353 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-756)))) (-3225 (*1 *2 *3 *4 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-169 (-225)))) (-5 *2 (-1035)) (-5 *1 (-756)))))
+(-10 -7 (-15 -3225 ((-1035) (-566) (-689 (-169 (-225))) (-566) (-566) (-566) (-566) (-689 (-169 (-225))) (-566))) (-15 -1353 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -1759 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-566))) (-15 -3022 ((-1035) (-689 (-225)) (-566) (-689 (-225)) (-566) (-566) (-566))) (-15 -2296 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-566)) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225)))) (-15 -1699 ((-1035) (-566) (-566) (-689 (-225)) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3559 ((-1035) (-566) (-566) (-566) (-225) (-566) (-689 (-225)) (-689 (-225)) (-566))) (-15 -3122 ((-1035) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-566)) (-689 (-225)) (-689 (-566)) (-689 (-566)) (-689 (-225)) (-689 (-225)) (-689 (-566)) (-566))) (-15 -1344 ((-1035) (-566) (-689 (-225)) (-112) (-225) (-566) (-566) (-566) (-566) (-225) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-68 APROD))) (-3 (|:| |fn| (-390)) (|:| |fp| (-73 MSOLVE))))) (-15 -2763 ((-1035) (-566) (-689 (-225)) (-566) (-689 (-225)) (-689 (-566)) (-566) (-689 (-225)) (-566) (-566) (-566) (-566))) (-15 -3008 ((-1035) (-566) (-566) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-689 (-225)) (-566) (-3 (|:| |fn| (-390)) (|:| |fp| (-70 APROD))))))
+((-1813 (((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-566) (-689 (-225))) 29)) (-3835 (((-1035) (-1157) (-566) (-566) (-689 (-225))) 28)) (-4253 (((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-225))) 27)) (-1749 (((-1035) (-566) (-566) (-566) (-689 (-225))) 21)))
+(((-757) (-10 -7 (-15 -1749 ((-1035) (-566) (-566) (-566) (-689 (-225)))) (-15 -4253 ((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-225)))) (-15 -3835 ((-1035) (-1157) (-566) (-566) (-689 (-225)))) (-15 -1813 ((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-566) (-689 (-225)))))) (T -757))
+((-1813 (*1 *2 *3 *4 *4 *5 *4 *4 *5) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-757)))) (-3835 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-757)))) (-4253 (*1 *2 *3 *4 *4 *5 *4 *6 *4 *5) (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-689 (-566))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-757)))) (-1749 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035)) (-5 *1 (-757)))))
+(-10 -7 (-15 -1749 ((-1035) (-566) (-566) (-566) (-689 (-225)))) (-15 -4253 ((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-689 (-566)) (-566) (-689 (-225)))) (-15 -3835 ((-1035) (-1157) (-566) (-566) (-689 (-225)))) (-15 -1813 ((-1035) (-1157) (-566) (-566) (-689 (-225)) (-566) (-566) (-689 (-225)))))
+((-3911 (((-1035) (-225) (-225) (-225) (-225) (-566)) 62)) (-2632 (((-1035) (-225) (-225) (-225) (-566)) 61)) (-1368 (((-1035) (-225) (-225) (-225) (-566)) 60)) (-3555 (((-1035) (-225) (-225) (-566)) 59)) (-2633 (((-1035) (-225) (-566)) 58)) (-2492 (((-1035) (-225) (-566)) 57)) (-3414 (((-1035) (-225) (-566)) 56)) (-1973 (((-1035) (-225) (-566)) 55)) (-2489 (((-1035) (-225) (-566)) 54)) (-4058 (((-1035) (-225) (-566)) 53)) (-4302 (((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566)) 52)) (-1956 (((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566)) 51)) (-4125 (((-1035) (-225) (-566)) 50)) (-3069 (((-1035) (-225) (-566)) 49)) (-3581 (((-1035) (-225) (-566)) 48)) (-3077 (((-1035) (-225) (-566)) 47)) (-4153 (((-1035) (-566) (-225) (-169 (-225)) (-566) (-1157) (-566)) 46)) (-2821 (((-1035) (-1157) (-169 (-225)) (-1157) (-566)) 45)) (-1423 (((-1035) (-1157) (-169 (-225)) (-1157) (-566)) 44)) (-2751 (((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566)) 43)) (-3190 (((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566)) 42)) (-3992 (((-1035) (-225) (-566)) 39)) (-1692 (((-1035) (-225) (-566)) 38)) (-3371 (((-1035) (-225) (-566)) 37)) (-4141 (((-1035) (-225) (-566)) 36)) (-3172 (((-1035) (-225) (-566)) 35)) (-1519 (((-1035) (-225) (-566)) 34)) (-2166 (((-1035) (-225) (-566)) 33)) (-3330 (((-1035) (-225) (-566)) 32)) (-4383 (((-1035) (-225) (-566)) 31)) (-2808 (((-1035) (-225) (-566)) 30)) (-1506 (((-1035) (-225) (-225) (-225) (-566)) 29)) (-1950 (((-1035) (-225) (-566)) 28)) (-1937 (((-1035) (-225) (-566)) 27)) (-1663 (((-1035) (-225) (-566)) 26)) (-2596 (((-1035) (-225) (-566)) 25)) (-1429 (((-1035) (-225) (-566)) 24)) (-4245 (((-1035) (-169 (-225)) (-566)) 21)))
+(((-758) (-10 -7 (-15 -4245 ((-1035) (-169 (-225)) (-566))) (-15 -1429 ((-1035) (-225) (-566))) (-15 -2596 ((-1035) (-225) (-566))) (-15 -1663 ((-1035) (-225) (-566))) (-15 -1937 ((-1035) (-225) (-566))) (-15 -1950 ((-1035) (-225) (-566))) (-15 -1506 ((-1035) (-225) (-225) (-225) (-566))) (-15 -2808 ((-1035) (-225) (-566))) (-15 -4383 ((-1035) (-225) (-566))) (-15 -3330 ((-1035) (-225) (-566))) (-15 -2166 ((-1035) (-225) (-566))) (-15 -1519 ((-1035) (-225) (-566))) (-15 -3172 ((-1035) (-225) (-566))) (-15 -4141 ((-1035) (-225) (-566))) (-15 -3371 ((-1035) (-225) (-566))) (-15 -1692 ((-1035) (-225) (-566))) (-15 -3992 ((-1035) (-225) (-566))) (-15 -3190 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -2751 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -1423 ((-1035) (-1157) (-169 (-225)) (-1157) (-566))) (-15 -2821 ((-1035) (-1157) (-169 (-225)) (-1157) (-566))) (-15 -4153 ((-1035) (-566) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -3077 ((-1035) (-225) (-566))) (-15 -3581 ((-1035) (-225) (-566))) (-15 -3069 ((-1035) (-225) (-566))) (-15 -4125 ((-1035) (-225) (-566))) (-15 -1956 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -4302 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -4058 ((-1035) (-225) (-566))) (-15 -2489 ((-1035) (-225) (-566))) (-15 -1973 ((-1035) (-225) (-566))) (-15 -3414 ((-1035) (-225) (-566))) (-15 -2492 ((-1035) (-225) (-566))) (-15 -2633 ((-1035) (-225) (-566))) (-15 -3555 ((-1035) (-225) (-225) (-566))) (-15 -1368 ((-1035) (-225) (-225) (-225) (-566))) (-15 -2632 ((-1035) (-225) (-225) (-225) (-566))) (-15 -3911 ((-1035) (-225) (-225) (-225) (-225) (-566))))) (T -758))
+((-3911 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2632 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1368 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3555 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2633 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2492 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3414 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1973 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2489 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-4058 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-4302 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157)) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1956 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157)) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-4125 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3069 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3581 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-4153 (*1 *2 *3 *4 *5 *3 *6 *3) (-12 (-5 *3 (-566)) (-5 *5 (-169 (-225))) (-5 *6 (-1157)) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2821 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1157)) (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1423 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1157)) (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2751 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157)) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3190 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157)) (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3992 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1692 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3371 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-4141 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3172 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1519 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2166 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-3330 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-4383 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2808 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1506 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1950 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1937 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1663 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-2596 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-1429 (*1 *2 *3 *4) (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))) (-4245 (*1 *2 *3 *4) (-12 (-5 *3 (-169 (-225))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(-10 -7 (-15 -4245 ((-1035) (-169 (-225)) (-566))) (-15 -1429 ((-1035) (-225) (-566))) (-15 -2596 ((-1035) (-225) (-566))) (-15 -1663 ((-1035) (-225) (-566))) (-15 -1937 ((-1035) (-225) (-566))) (-15 -1950 ((-1035) (-225) (-566))) (-15 -1506 ((-1035) (-225) (-225) (-225) (-566))) (-15 -2808 ((-1035) (-225) (-566))) (-15 -4383 ((-1035) (-225) (-566))) (-15 -3330 ((-1035) (-225) (-566))) (-15 -2166 ((-1035) (-225) (-566))) (-15 -1519 ((-1035) (-225) (-566))) (-15 -3172 ((-1035) (-225) (-566))) (-15 -4141 ((-1035) (-225) (-566))) (-15 -3371 ((-1035) (-225) (-566))) (-15 -1692 ((-1035) (-225) (-566))) (-15 -3992 ((-1035) (-225) (-566))) (-15 -3190 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -2751 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -1423 ((-1035) (-1157) (-169 (-225)) (-1157) (-566))) (-15 -2821 ((-1035) (-1157) (-169 (-225)) (-1157) (-566))) (-15 -4153 ((-1035) (-566) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -3077 ((-1035) (-225) (-566))) (-15 -3581 ((-1035) (-225) (-566))) (-15 -3069 ((-1035) (-225) (-566))) (-15 -4125 ((-1035) (-225) (-566))) (-15 -1956 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -4302 ((-1035) (-225) (-169 (-225)) (-566) (-1157) (-566))) (-15 -4058 ((-1035) (-225) (-566))) (-15 -2489 ((-1035) (-225) (-566))) (-15 -1973 ((-1035) (-225) (-566))) (-15 -3414 ((-1035) (-225) (-566))) (-15 -2492 ((-1035) (-225) (-566))) (-15 -2633 ((-1035) (-225) (-566))) (-15 -3555 ((-1035) (-225) (-225) (-566))) (-15 -1368 ((-1035) (-225) (-225) (-225) (-566))) (-15 -2632 ((-1035) (-225) (-225) (-225) (-566))) (-15 -3911 ((-1035) (-225) (-225) (-225) (-225) (-566))))
+((-4360 (((-1269)) 21)) (-2650 (((-1157)) 32)) (-3253 (((-1157)) 31)) (-2826 (((-1103) (-1175) (-689 (-566))) 46) (((-1103) (-1175) (-689 (-225))) 42)) (-4294 (((-112)) 19)) (-1553 (((-1157) (-1157)) 35)))
+(((-759) (-10 -7 (-15 -3253 ((-1157))) (-15 -2650 ((-1157))) (-15 -1553 ((-1157) (-1157))) (-15 -2826 ((-1103) (-1175) (-689 (-225)))) (-15 -2826 ((-1103) (-1175) (-689 (-566)))) (-15 -4294 ((-112))) (-15 -4360 ((-1269))))) (T -759))
+((-4360 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-759)))) (-4294 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-759)))) (-2826 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-689 (-566))) (-5 *2 (-1103)) (-5 *1 (-759)))) (-2826 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-689 (-225))) (-5 *2 (-1103)) (-5 *1 (-759)))) (-1553 (*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))) (-2650 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))) (-3253 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))))
+(-10 -7 (-15 -3253 ((-1157))) (-15 -2650 ((-1157))) (-15 -1553 ((-1157) (-1157))) (-15 -2826 ((-1103) (-1175) (-689 (-225)))) (-15 -2826 ((-1103) (-1175) (-689 (-566)))) (-15 -4294 ((-112))) (-15 -4360 ((-1269))))
+((-1783 (($ $ $) 10)) (-3428 (($ $ $ $) 9)) (-3035 (($ $ $) 12)))
+(((-760 |#1|) (-10 -8 (-15 -3035 (|#1| |#1| |#1|)) (-15 -1783 (|#1| |#1| |#1|)) (-15 -3428 (|#1| |#1| |#1| |#1|))) (-761)) (T -760))
+NIL
+(-10 -8 (-15 -3035 (|#1| |#1| |#1|)) (-15 -1783 (|#1| |#1| |#1|)) (-15 -3428 (|#1| |#1| |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2400 (($ $ (-921)) 31)) (-3231 (($ $ (-921)) 32)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-1783 (($ $ $) 28)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-3428 (($ $ $ $) 29)) (-3035 (($ $ $) 27)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 33)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 30)))
(((-761) (-140)) (T -761))
-((-3551 (*1 *1 *1 *1 *1) (-4 *1 (-761))) (-3755 (*1 *1 *1 *1) (-4 *1 (-761))) (-2821 (*1 *1 *1 *1) (-4 *1 (-761))))
-(-13 (-21) (-720) (-10 -8 (-15 -3551 ($ $ $ $)) (-15 -3755 ($ $ $)) (-15 -2821 ($ $ $))))
+((-3428 (*1 *1 *1 *1 *1) (-4 *1 (-761))) (-1783 (*1 *1 *1 *1) (-4 *1 (-761))) (-3035 (*1 *1 *1 *1) (-4 *1 (-761))))
+(-13 (-21) (-720) (-10 -8 (-15 -3428 ($ $ $ $)) (-15 -1783 ($ $ $)) (-15 -3035 ($ $ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-720) . T) ((-1099) . T))
-((-2512 (((-862) $) NIL) (($ (-566)) 10)))
-(((-762 |#1|) (-10 -8 (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|))) (-763)) (T -762))
+((-3780 (((-862) $) NIL) (($ (-566)) 10)))
+(((-762 |#1|) (-10 -8 (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|))) (-763)) (T -762))
NIL
-(-10 -8 (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-3152 (((-3 $ "failed") $) 43)) (-2258 (($ $ (-921)) 31) (($ $ (-771)) 38)) (-1579 (((-3 $ "failed") $) 41)) (-2741 (((-112) $) 37)) (-2318 (((-3 $ "failed") $) 42)) (-4171 (($ $ (-921)) 32) (($ $ (-771)) 39)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-3755 (($ $ $) 28)) (-2512 (((-862) $) 12) (($ (-566)) 34)) (-3795 (((-771)) 35 T CONST)) (-3122 (((-112) $ $) 9)) (-3551 (($ $ $ $) 29)) (-2821 (($ $ $) 27)) (-2485 (($) 19 T CONST)) (-2495 (($) 36 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 33) (($ $ (-771)) 40)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 30)))
+(-10 -8 (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-4029 (((-3 $ "failed") $) 43)) (-2400 (($ $ (-921)) 31) (($ $ (-771)) 38)) (-2928 (((-3 $ "failed") $) 41)) (-3466 (((-112) $) 37)) (-1787 (((-3 $ "failed") $) 42)) (-3231 (($ $ (-921)) 32) (($ $ (-771)) 39)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-1783 (($ $ $) 28)) (-3780 (((-862) $) 12) (($ (-566)) 34)) (-3996 (((-771)) 35 T CONST)) (-3801 (((-112) $ $) 9)) (-3428 (($ $ $ $) 29)) (-3035 (($ $ $) 27)) (-2493 (($) 19 T CONST)) (-4333 (($) 36 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 33) (($ $ (-771)) 40)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 30)))
(((-763) (-140)) (T -763))
-((-3795 (*1 *2) (-12 (-4 *1 (-763)) (-5 *2 (-771)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-763)))))
-(-13 (-761) (-722) (-10 -8 (-15 -3795 ((-771)) -1655) (-15 -2512 ($ (-566)))))
+((-3996 (*1 *2) (-12 (-4 *1 (-763)) (-5 *2 (-771)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-763)))))
+(-13 (-761) (-722) (-10 -8 (-15 -3996 ((-771)) -2460) (-15 -3780 ($ (-566)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-720) . T) ((-722) . T) ((-761) . T) ((-1099) . T))
-((-1713 (((-644 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 (-169 |#1|)))))) (-689 (-169 (-409 (-566)))) |#1|) 33)) (-2859 (((-644 (-169 |#1|)) (-689 (-169 (-409 (-566)))) |#1|) 23)) (-1963 (((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566)))) (-1175)) 20) (((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566))))) 19)))
-(((-764 |#1|) (-10 -7 (-15 -1963 ((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566)))))) (-15 -1963 ((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566)))) (-1175))) (-15 -2859 ((-644 (-169 |#1|)) (-689 (-169 (-409 (-566)))) |#1|)) (-15 -1713 ((-644 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 (-169 |#1|)))))) (-689 (-169 (-409 (-566)))) |#1|))) (-13 (-365) (-848))) (T -764))
-((-1713 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *2 (-644 (-2 (|:| |outval| (-169 *4)) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 (-169 *4))))))) (-5 *1 (-764 *4)) (-4 *4 (-13 (-365) (-848))))) (-2859 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *2 (-644 (-169 *4))) (-5 *1 (-764 *4)) (-4 *4 (-13 (-365) (-848))))) (-1963 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *4 (-1175)) (-5 *2 (-952 (-169 (-409 (-566))))) (-5 *1 (-764 *5)) (-4 *5 (-13 (-365) (-848))))) (-1963 (*1 *2 *3) (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *2 (-952 (-169 (-409 (-566))))) (-5 *1 (-764 *4)) (-4 *4 (-13 (-365) (-848))))))
-(-10 -7 (-15 -1963 ((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566)))))) (-15 -1963 ((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566)))) (-1175))) (-15 -2859 ((-644 (-169 |#1|)) (-689 (-169 (-409 (-566)))) |#1|)) (-15 -1713 ((-644 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 (-169 |#1|)))))) (-689 (-169 (-409 (-566)))) |#1|)))
-((-1932 (((-174 (-566)) |#1|) 27)))
-(((-765 |#1|) (-10 -7 (-15 -1932 ((-174 (-566)) |#1|))) (-406)) (T -765))
-((-1932 (*1 *2 *3) (-12 (-5 *2 (-174 (-566))) (-5 *1 (-765 *3)) (-4 *3 (-406)))))
-(-10 -7 (-15 -1932 ((-174 (-566)) |#1|)))
-((-1658 ((|#1| |#1| |#1|) 28)) (-3667 ((|#1| |#1| |#1|) 27)) (-3833 ((|#1| |#1| |#1|) 38)) (-4279 ((|#1| |#1| |#1|) 34)) (-2266 (((-3 |#1| "failed") |#1| |#1|) 31)) (-1931 (((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|) 26)))
-(((-766 |#1| |#2|) (-10 -7 (-15 -1931 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -3667 (|#1| |#1| |#1|)) (-15 -1658 (|#1| |#1| |#1|)) (-15 -2266 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4279 (|#1| |#1| |#1|)) (-15 -3833 (|#1| |#1| |#1|))) (-708 |#2|) (-365)) (T -766))
-((-3833 (*1 *2 *2 *2) (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3)))) (-4279 (*1 *2 *2 *2) (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3)))) (-2266 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3)))) (-1658 (*1 *2 *2 *2) (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3)))) (-3667 (*1 *2 *2 *2) (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3)))) (-1931 (*1 *2 *3 *3) (-12 (-4 *4 (-365)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-766 *3 *4)) (-4 *3 (-708 *4)))))
-(-10 -7 (-15 -1931 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -3667 (|#1| |#1| |#1|)) (-15 -1658 (|#1| |#1| |#1|)) (-15 -2266 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4279 (|#1| |#1| |#1|)) (-15 -3833 (|#1| |#1| |#1|)))
-((-2702 (((-691 (-1222)) $ (-1222)) 26)) (-1734 (((-691 (-551)) $ (-551)) 25)) (-4068 (((-771) $ (-128)) 27)) (-2030 (((-691 (-129)) $ (-129)) 24)) (-3395 (((-691 (-1222)) $) 12)) (-4269 (((-691 (-1220)) $) 8)) (-2625 (((-691 (-1219)) $) 10)) (-2984 (((-691 (-551)) $) 13)) (-1630 (((-691 (-549)) $) 9)) (-1391 (((-691 (-548)) $) 11)) (-3529 (((-771) $ (-128)) 7)) (-2296 (((-691 (-129)) $) 14)) (-3227 (((-112) $) 31)) (-2567 (((-691 $) |#1| (-954)) 32)) (-1459 (($ $) 6)))
+((-3697 (((-644 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 (-169 |#1|)))))) (-689 (-169 (-409 (-566)))) |#1|) 33)) (-2202 (((-644 (-169 |#1|)) (-689 (-169 (-409 (-566)))) |#1|) 23)) (-4370 (((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566)))) (-1175)) 20) (((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566))))) 19)))
+(((-764 |#1|) (-10 -7 (-15 -4370 ((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566)))))) (-15 -4370 ((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566)))) (-1175))) (-15 -2202 ((-644 (-169 |#1|)) (-689 (-169 (-409 (-566)))) |#1|)) (-15 -3697 ((-644 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 (-169 |#1|)))))) (-689 (-169 (-409 (-566)))) |#1|))) (-13 (-365) (-848))) (T -764))
+((-3697 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *2 (-644 (-2 (|:| |outval| (-169 *4)) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 (-169 *4))))))) (-5 *1 (-764 *4)) (-4 *4 (-13 (-365) (-848))))) (-2202 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *2 (-644 (-169 *4))) (-5 *1 (-764 *4)) (-4 *4 (-13 (-365) (-848))))) (-4370 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *4 (-1175)) (-5 *2 (-952 (-169 (-409 (-566))))) (-5 *1 (-764 *5)) (-4 *5 (-13 (-365) (-848))))) (-4370 (*1 *2 *3) (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *2 (-952 (-169 (-409 (-566))))) (-5 *1 (-764 *4)) (-4 *4 (-13 (-365) (-848))))))
+(-10 -7 (-15 -4370 ((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566)))))) (-15 -4370 ((-952 (-169 (-409 (-566)))) (-689 (-169 (-409 (-566)))) (-1175))) (-15 -2202 ((-644 (-169 |#1|)) (-689 (-169 (-409 (-566)))) |#1|)) (-15 -3697 ((-644 (-2 (|:| |outval| (-169 |#1|)) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 (-169 |#1|)))))) (-689 (-169 (-409 (-566)))) |#1|)))
+((-2241 (((-174 (-566)) |#1|) 27)))
+(((-765 |#1|) (-10 -7 (-15 -2241 ((-174 (-566)) |#1|))) (-406)) (T -765))
+((-2241 (*1 *2 *3) (-12 (-5 *2 (-174 (-566))) (-5 *1 (-765 *3)) (-4 *3 (-406)))))
+(-10 -7 (-15 -2241 ((-174 (-566)) |#1|)))
+((-4342 ((|#1| |#1| |#1|) 28)) (-2103 ((|#1| |#1| |#1|) 27)) (-3144 ((|#1| |#1| |#1|) 38)) (-3050 ((|#1| |#1| |#1|) 34)) (-4324 (((-3 |#1| "failed") |#1| |#1|) 31)) (-2230 (((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|) 26)))
+(((-766 |#1| |#2|) (-10 -7 (-15 -2230 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -2103 (|#1| |#1| |#1|)) (-15 -4342 (|#1| |#1| |#1|)) (-15 -4324 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -3144 (|#1| |#1| |#1|))) (-708 |#2|) (-365)) (T -766))
+((-3144 (*1 *2 *2 *2) (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3)))) (-3050 (*1 *2 *2 *2) (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3)))) (-4324 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3)))) (-4342 (*1 *2 *2 *2) (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3)))) (-2103 (*1 *2 *2 *2) (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3)))) (-2230 (*1 *2 *3 *3) (-12 (-4 *4 (-365)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-766 *3 *4)) (-4 *3 (-708 *4)))))
+(-10 -7 (-15 -2230 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -2103 (|#1| |#1| |#1|)) (-15 -4342 (|#1| |#1| |#1|)) (-15 -4324 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -3144 (|#1| |#1| |#1|)))
+((-4273 (((-691 (-1222)) $ (-1222)) 26)) (-3884 (((-691 (-551)) $ (-551)) 25)) (-1549 (((-771) $ (-128)) 27)) (-3832 (((-691 (-129)) $ (-129)) 24)) (-4354 (((-691 (-1222)) $) 12)) (-2937 (((-691 (-1220)) $) 8)) (-1688 (((-691 (-1219)) $) 10)) (-2033 (((-691 (-551)) $) 13)) (-2234 (((-691 (-549)) $) 9)) (-3446 (((-691 (-548)) $) 11)) (-3250 (((-771) $ (-128)) 7)) (-1534 (((-691 (-129)) $) 14)) (-3452 (((-112) $) 31)) (-2351 (((-691 $) |#1| (-954)) 32)) (-4127 (($ $) 6)))
(((-767 |#1|) (-140) (-1099)) (T -767))
-((-2567 (*1 *2 *3 *4) (-12 (-5 *4 (-954)) (-4 *3 (-1099)) (-5 *2 (-691 *1)) (-4 *1 (-767 *3)))) (-3227 (*1 *2 *1) (-12 (-4 *1 (-767 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
-(-13 (-578) (-10 -8 (-15 -2567 ((-691 $) |t#1| (-954))) (-15 -3227 ((-112) $))))
+((-2351 (*1 *2 *3 *4) (-12 (-5 *4 (-954)) (-4 *3 (-1099)) (-5 *2 (-691 *1)) (-4 *1 (-767 *3)))) (-3452 (*1 *2 *1) (-12 (-4 *1 (-767 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
+(-13 (-578) (-10 -8 (-15 -2351 ((-691 $) |t#1| (-954))) (-15 -3452 ((-112) $))))
(((-173) . T) ((-529) . T) ((-578) . T) ((-860) . T))
-((-2147 (((-2 (|:| -1990 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566)))) (-566)) 71)) (-1925 (((-2 (|:| -1990 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566))))) 69)) (-2408 (((-566)) 85)))
-(((-768 |#1| |#2|) (-10 -7 (-15 -2408 ((-566))) (-15 -1925 ((-2 (|:| -1990 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566)))))) (-15 -2147 ((-2 (|:| -1990 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566)))) (-566)))) (-1240 (-566)) (-411 (-566) |#1|)) (T -768))
-((-2147 (*1 *2 *3) (-12 (-5 *3 (-566)) (-4 *4 (-1240 *3)) (-5 *2 (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-5 *1 (-768 *4 *5)) (-4 *5 (-411 *3 *4)))) (-1925 (*1 *2) (-12 (-4 *3 (-1240 (-566))) (-5 *2 (-2 (|:| -1990 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566))))) (-5 *1 (-768 *3 *4)) (-4 *4 (-411 (-566) *3)))) (-2408 (*1 *2) (-12 (-4 *3 (-1240 *2)) (-5 *2 (-566)) (-5 *1 (-768 *3 *4)) (-4 *4 (-411 *2 *3)))))
-(-10 -7 (-15 -2408 ((-566))) (-15 -1925 ((-2 (|:| -1990 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566)))))) (-15 -2147 ((-2 (|:| -1990 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566)))) (-566))))
-((-2985 (((-112) $ $) NIL)) (-1756 (((-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $) 21)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 20) (($ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 13) (($ (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) 18)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-769) (-13 (-1099) (-10 -8 (-15 -2512 ($ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2512 ($ (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2512 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (-15 -1756 ((-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $))))) (T -769))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-769)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-769)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-5 *1 (-769)))) (-1756 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-5 *1 (-769)))))
-(-13 (-1099) (-10 -8 (-15 -2512 ($ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2512 ($ (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -2512 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (-15 -1756 ((-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $))))
-((-1564 (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|))) 18) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175))) 17)) (-2371 (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|))) 20) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175))) 19)))
-(((-770 |#1|) (-10 -7 (-15 -1564 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -1564 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|))))) (-558)) (T -770))
-((-2371 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-770 *4)))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-770 *5)))) (-1564 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-770 *4)))) (-1564 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-770 *5)))))
-(-10 -7 (-15 -1564 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -1564 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3711 (($ $ $) 10)) (-4126 (((-3 $ "failed") $ $) 15)) (-3096 (($ $ (-566)) 11)) (-2342 (($) NIL T CONST)) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($ $) NIL)) (-2938 (($ $ $) NIL)) (-2741 (((-112) $) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2222 (($ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 6 T CONST)) (-2495 (($) NIL T CONST)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ $ $) NIL)))
-(((-771) (-13 (-793) (-726) (-10 -8 (-15 -2938 ($ $ $)) (-15 -2926 ($ $ $)) (-15 -2222 ($ $ $)) (-15 -2347 ((-2 (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -2972 ((-3 $ "failed") $ $)) (-15 -3096 ($ $ (-566))) (-15 -3335 ($ $)) (-6 (-4419 "*"))))) (T -771))
-((-2938 (*1 *1 *1 *1) (-5 *1 (-771))) (-2926 (*1 *1 *1 *1) (-5 *1 (-771))) (-2222 (*1 *1 *1 *1) (-5 *1 (-771))) (-2347 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2760 (-771)) (|:| -1644 (-771)))) (-5 *1 (-771)))) (-2972 (*1 *1 *1 *1) (|partial| -5 *1 (-771))) (-3096 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-771)))) (-3335 (*1 *1 *1) (-5 *1 (-771))))
-(-13 (-793) (-726) (-10 -8 (-15 -2938 ($ $ $)) (-15 -2926 ($ $ $)) (-15 -2222 ($ $ $)) (-15 -2347 ((-2 (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -2972 ((-3 $ "failed") $ $)) (-15 -3096 ($ $ (-566))) (-15 -3335 ($ $)) (-6 (-4419 "*"))))
+((-2593 (((-2 (|:| -1575 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566)))) (-566)) 71)) (-2161 (((-2 (|:| -1575 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566))))) 69)) (-3309 (((-566)) 85)))
+(((-768 |#1| |#2|) (-10 -7 (-15 -3309 ((-566))) (-15 -2161 ((-2 (|:| -1575 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566)))))) (-15 -2593 ((-2 (|:| -1575 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566)))) (-566)))) (-1240 (-566)) (-411 (-566) |#1|)) (T -768))
+((-2593 (*1 *2 *3) (-12 (-5 *3 (-566)) (-4 *4 (-1240 *3)) (-5 *2 (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-5 *1 (-768 *4 *5)) (-4 *5 (-411 *3 *4)))) (-2161 (*1 *2) (-12 (-4 *3 (-1240 (-566))) (-5 *2 (-2 (|:| -1575 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566))))) (-5 *1 (-768 *3 *4)) (-4 *4 (-411 (-566) *3)))) (-3309 (*1 *2) (-12 (-4 *3 (-1240 *2)) (-5 *2 (-566)) (-5 *1 (-768 *3 *4)) (-4 *4 (-411 *2 *3)))))
+(-10 -7 (-15 -3309 ((-566))) (-15 -2161 ((-2 (|:| -1575 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566)))))) (-15 -2593 ((-2 (|:| -1575 (-689 (-566))) (|:| |basisDen| (-566)) (|:| |basisInv| (-689 (-566)))) (-566))))
+((-3009 (((-112) $ $) NIL)) (-1867 (((-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $) 21)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 20) (($ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 13) (($ (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) 18)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-769) (-13 (-1099) (-10 -8 (-15 -3780 ($ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3780 ($ (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3780 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (-15 -1867 ((-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $))))) (T -769))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-769)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-769)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-5 *1 (-769)))) (-1867 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-5 *1 (-769)))))
+(-13 (-1099) (-10 -8 (-15 -3780 ($ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3780 ($ (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3780 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (-15 -1867 ((-3 (|:| |nia| (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| |mdnia| (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) $))))
+((-2766 (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|))) 18) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175))) 17)) (-4159 (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|))) 20) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175))) 19)))
+(((-770 |#1|) (-10 -7 (-15 -2766 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -2766 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|))))) (-558)) (T -770))
+((-4159 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-770 *4)))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-770 *5)))) (-2766 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-770 *4)))) (-2766 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-770 *5)))))
+(-10 -7 (-15 -2766 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -2766 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-952 |#1|)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4385 (($ $ $) 10)) (-4014 (((-3 $ "failed") $ $) 15)) (-3129 (($ $ (-566)) 11)) (-3877 (($) NIL T CONST)) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($ $) NIL)) (-2960 (($ $ $) NIL)) (-3466 (((-112) $) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2235 (($ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 6 T CONST)) (-4333 (($) NIL T CONST)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ $ $) NIL)))
+(((-771) (-13 (-793) (-726) (-10 -8 (-15 -2960 ($ $ $)) (-15 -2949 ($ $ $)) (-15 -2235 ($ $ $)) (-15 -3919 ((-2 (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -2997 ((-3 $ "failed") $ $)) (-15 -3129 ($ $ (-566))) (-15 -1618 ($ $)) (-6 (-4416 "*"))))) (T -771))
+((-2960 (*1 *1 *1 *1) (-5 *1 (-771))) (-2949 (*1 *1 *1 *1) (-5 *1 (-771))) (-2235 (*1 *1 *1 *1) (-5 *1 (-771))) (-3919 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3644 (-771)) (|:| -4228 (-771)))) (-5 *1 (-771)))) (-2997 (*1 *1 *1 *1) (|partial| -5 *1 (-771))) (-3129 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-771)))) (-1618 (*1 *1 *1) (-5 *1 (-771))))
+(-13 (-793) (-726) (-10 -8 (-15 -2960 ($ $ $)) (-15 -2949 ($ $ $)) (-15 -2235 ($ $ $)) (-15 -3919 ((-2 (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -2997 ((-3 $ "failed") $ $)) (-15 -3129 ($ $ (-566))) (-15 -1618 ($ $)) (-6 (-4416 "*"))))
((|Integer|) (>= |#1| 0))
-((-2371 (((-3 |#2| "failed") |#2| |#2| (-114) (-1175)) 37)))
-(((-772 |#1| |#2|) (-10 -7 (-15 -2371 ((-3 |#2| "failed") |#2| |#2| (-114) (-1175)))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)) (-13 (-29 |#1|) (-1199) (-959))) (T -772))
-((-2371 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *1 (-772 *5 *2)) (-4 *2 (-13 (-29 *5) (-1199) (-959))))))
-(-10 -7 (-15 -2371 ((-3 |#2| "failed") |#2| |#2| (-114) (-1175))))
-((-2512 (((-774) |#1|) 8)))
-(((-773 |#1|) (-10 -7 (-15 -2512 ((-774) |#1|))) (-1214)) (T -773))
-((-2512 (*1 *2 *3) (-12 (-5 *2 (-774)) (-5 *1 (-773 *3)) (-4 *3 (-1214)))))
-(-10 -7 (-15 -2512 ((-774) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 7)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 9)))
+((-4159 (((-3 |#2| "failed") |#2| |#2| (-114) (-1175)) 37)))
+(((-772 |#1| |#2|) (-10 -7 (-15 -4159 ((-3 |#2| "failed") |#2| |#2| (-114) (-1175)))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)) (-13 (-29 |#1|) (-1199) (-959))) (T -772))
+((-4159 (*1 *2 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *1 (-772 *5 *2)) (-4 *2 (-13 (-29 *5) (-1199) (-959))))))
+(-10 -7 (-15 -4159 ((-3 |#2| "failed") |#2| |#2| (-114) (-1175))))
+((-3780 (((-774) |#1|) 8)))
+(((-773 |#1|) (-10 -7 (-15 -3780 ((-774) |#1|))) (-1214)) (T -773))
+((-3780 (*1 *2 *3) (-12 (-5 *2 (-774)) (-5 *1 (-773 *3)) (-4 *3 (-1214)))))
+(-10 -7 (-15 -3780 ((-774) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 7)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 9)))
(((-774) (-1099)) (T -774))
NIL
(-1099)
-((-1559 ((|#2| |#4|) 35)))
-(((-775 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1559 (|#2| |#4|))) (-454) (-1240 |#1|) (-724 |#1| |#2|) (-1240 |#3|)) (T -775))
-((-1559 (*1 *2 *3) (-12 (-4 *4 (-454)) (-4 *5 (-724 *4 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-775 *4 *2 *5 *3)) (-4 *3 (-1240 *5)))))
-(-10 -7 (-15 -1559 (|#2| |#4|)))
-((-1579 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 57)) (-3419 (((-1269) (-1157) (-1157) |#4| |#5|) 33)) (-3055 ((|#4| |#4| |#5|) 74)) (-3873 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#5|) 79)) (-2929 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|) 16)))
-(((-776 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1579 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -3055 (|#4| |#4| |#5|)) (-15 -3873 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#5|)) (-15 -3419 ((-1269) (-1157) (-1157) |#4| |#5|)) (-15 -2929 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -776))
-((-2929 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *4)))) (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3419 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1157)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *4 (-1064 *6 *7 *8)) (-5 *2 (-1269)) (-5 *1 (-776 *6 *7 *8 *4 *5)) (-4 *5 (-1070 *6 *7 *8 *4)))) (-3873 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4)))) (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3055 (*1 *2 *2 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *2 (-1064 *4 *5 *6)) (-5 *1 (-776 *4 *5 *6 *2 *3)) (-4 *3 (-1070 *4 *5 *6 *2)))) (-1579 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(-10 -7 (-15 -1579 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -3055 (|#4| |#4| |#5|)) (-15 -3873 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#5|)) (-15 -3419 ((-1269) (-1157) (-1157) |#4| |#5|)) (-15 -2929 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|)))
-((-2977 (((-3 (-1171 (-1171 |#1|)) "failed") |#4|) 53)) (-2637 (((-644 |#4|) |#4|) 24)) (-2752 ((|#4| |#4|) 19)))
-(((-777 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2637 ((-644 |#4|) |#4|)) (-15 -2977 ((-3 (-1171 (-1171 |#1|)) "failed") |#4|)) (-15 -2752 (|#4| |#4|))) (-351) (-330 |#1|) (-1240 |#2|) (-1240 |#3|) (-921)) (T -777))
-((-2752 (*1 *2 *2) (-12 (-4 *3 (-351)) (-4 *4 (-330 *3)) (-4 *5 (-1240 *4)) (-5 *1 (-777 *3 *4 *5 *2 *6)) (-4 *2 (-1240 *5)) (-14 *6 (-921)))) (-2977 (*1 *2 *3) (|partial| -12 (-4 *4 (-351)) (-4 *5 (-330 *4)) (-4 *6 (-1240 *5)) (-5 *2 (-1171 (-1171 *4))) (-5 *1 (-777 *4 *5 *6 *3 *7)) (-4 *3 (-1240 *6)) (-14 *7 (-921)))) (-2637 (*1 *2 *3) (-12 (-4 *4 (-351)) (-4 *5 (-330 *4)) (-4 *6 (-1240 *5)) (-5 *2 (-644 *3)) (-5 *1 (-777 *4 *5 *6 *3 *7)) (-4 *3 (-1240 *6)) (-14 *7 (-921)))))
-(-10 -7 (-15 -2637 ((-644 |#4|) |#4|)) (-15 -2977 ((-3 (-1171 (-1171 |#1|)) "failed") |#4|)) (-15 -2752 (|#4| |#4|)))
-((-2228 (((-2 (|:| |deter| (-644 (-1171 |#5|))) (|:| |dterm| (-644 (-644 (-2 (|:| -1942 (-771)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-644 |#1|)) (|:| |nlead| (-644 |#5|))) (-1171 |#5|) (-644 |#1|) (-644 |#5|)) 75)) (-4346 (((-644 (-771)) |#1|) 20)))
-(((-778 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2228 ((-2 (|:| |deter| (-644 (-1171 |#5|))) (|:| |dterm| (-644 (-644 (-2 (|:| -1942 (-771)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-644 |#1|)) (|:| |nlead| (-644 |#5|))) (-1171 |#5|) (-644 |#1|) (-644 |#5|))) (-15 -4346 ((-644 (-771)) |#1|))) (-1240 |#4|) (-793) (-850) (-308) (-949 |#4| |#2| |#3|)) (T -778))
-((-4346 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-644 (-771))) (-5 *1 (-778 *3 *4 *5 *6 *7)) (-4 *3 (-1240 *6)) (-4 *7 (-949 *6 *4 *5)))) (-2228 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1240 *9)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-308)) (-4 *10 (-949 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-644 (-1171 *10))) (|:| |dterm| (-644 (-644 (-2 (|:| -1942 (-771)) (|:| |pcoef| *10))))) (|:| |nfacts| (-644 *6)) (|:| |nlead| (-644 *10)))) (-5 *1 (-778 *6 *7 *8 *9 *10)) (-5 *3 (-1171 *10)) (-5 *4 (-644 *6)) (-5 *5 (-644 *10)))))
-(-10 -7 (-15 -2228 ((-2 (|:| |deter| (-644 (-1171 |#5|))) (|:| |dterm| (-644 (-644 (-2 (|:| -1942 (-771)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-644 |#1|)) (|:| |nlead| (-644 |#5|))) (-1171 |#5|) (-644 |#1|) (-644 |#5|))) (-15 -4346 ((-644 (-771)) |#1|)))
-((-3289 (((-644 (-2 (|:| |outval| |#1|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#1|))))) (-689 (-409 (-566))) |#1|) 31)) (-3243 (((-644 |#1|) (-689 (-409 (-566))) |#1|) 21)) (-1963 (((-952 (-409 (-566))) (-689 (-409 (-566))) (-1175)) 18) (((-952 (-409 (-566))) (-689 (-409 (-566)))) 17)))
-(((-779 |#1|) (-10 -7 (-15 -1963 ((-952 (-409 (-566))) (-689 (-409 (-566))))) (-15 -1963 ((-952 (-409 (-566))) (-689 (-409 (-566))) (-1175))) (-15 -3243 ((-644 |#1|) (-689 (-409 (-566))) |#1|)) (-15 -3289 ((-644 (-2 (|:| |outval| |#1|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#1|))))) (-689 (-409 (-566))) |#1|))) (-13 (-365) (-848))) (T -779))
-((-3289 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *2 (-644 (-2 (|:| |outval| *4) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 *4)))))) (-5 *1 (-779 *4)) (-4 *4 (-13 (-365) (-848))))) (-3243 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *2 (-644 *4)) (-5 *1 (-779 *4)) (-4 *4 (-13 (-365) (-848))))) (-1963 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *4 (-1175)) (-5 *2 (-952 (-409 (-566)))) (-5 *1 (-779 *5)) (-4 *5 (-13 (-365) (-848))))) (-1963 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *2 (-952 (-409 (-566)))) (-5 *1 (-779 *4)) (-4 *4 (-13 (-365) (-848))))))
-(-10 -7 (-15 -1963 ((-952 (-409 (-566))) (-689 (-409 (-566))))) (-15 -1963 ((-952 (-409 (-566))) (-689 (-409 (-566))) (-1175))) (-15 -3243 ((-644 |#1|) (-689 (-409 (-566))) |#1|)) (-15 -3289 ((-644 (-2 (|:| |outval| |#1|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#1|))))) (-689 (-409 (-566))) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 36)) (-2540 (((-644 |#2|) $) NIL)) (-2358 (((-1171 $) $ |#2|) NIL) (((-1171 |#1|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 |#2|)) NIL)) (-3301 (($ $) 30)) (-3480 (((-112) $ $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2829 (($ $ $) 110 (|has| |#1| (-558)))) (-3331 (((-644 $) $ $) 123 (|has| |#1| (-558)))) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2857 (($ $) NIL (|has| |#1| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-952 (-409 (-566)))) NIL (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175))))) (((-3 $ "failed") (-952 (-566))) NIL (-2805 (-12 (|has| |#1| (-38 (-566))) (|has| |#2| (-614 (-1175))) (-2426 (|has| |#1| (-38 (-409 (-566)))))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175)))))) (((-3 $ "failed") (-952 |#1|)) NIL (-2805 (-12 (|has| |#2| (-614 (-1175))) (-2426 (|has| |#1| (-38 (-409 (-566))))) (-2426 (|has| |#1| (-38 (-566))))) (-12 (|has| |#1| (-38 (-566))) (|has| |#2| (-614 (-1175))) (-2426 (|has| |#1| (-38 (-409 (-566))))) (-2426 (|has| |#1| (-547)))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175))) (-2426 (|has| |#1| (-992 (-566))))))) (((-3 (-1124 |#1| |#2|) "failed") $) 21)) (-1756 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) ((|#2| $) NIL) (($ (-952 (-409 (-566)))) NIL (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175))))) (($ (-952 (-566))) NIL (-2805 (-12 (|has| |#1| (-38 (-566))) (|has| |#2| (-614 (-1175))) (-2426 (|has| |#1| (-38 (-409 (-566)))))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175)))))) (($ (-952 |#1|)) NIL (-2805 (-12 (|has| |#2| (-614 (-1175))) (-2426 (|has| |#1| (-38 (-409 (-566))))) (-2426 (|has| |#1| (-38 (-566))))) (-12 (|has| |#1| (-38 (-566))) (|has| |#2| (-614 (-1175))) (-2426 (|has| |#1| (-38 (-409 (-566))))) (-2426 (|has| |#1| (-547)))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175))) (-2426 (|has| |#1| (-992 (-566))))))) (((-1124 |#1| |#2|) $) NIL)) (-1552 (($ $ $ |#2|) NIL (|has| |#1| (-172))) (($ $ $) 121 (|has| |#1| (-558)))) (-3577 (($ $) NIL) (($ $ |#2|) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-2531 (((-112) $ $) NIL) (((-112) $ (-644 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-1501 (((-112) $) NIL)) (-2513 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 81)) (-1524 (($ $) 136 (|has| |#1| (-454)))) (-4248 (($ $) NIL (|has| |#1| (-454))) (($ $ |#2|) NIL (|has| |#1| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#1| (-909)))) (-1689 (($ $) NIL (|has| |#1| (-558)))) (-2732 (($ $) NIL (|has| |#1| (-558)))) (-3684 (($ $ $) 76) (($ $ $ |#2|) NIL)) (-2151 (($ $ $) 79) (($ $ $ |#2|) NIL)) (-2804 (($ $ |#1| (-533 |#2|) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| |#1| (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| |#1| (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-2741 (((-112) $) 57)) (-3505 (((-771) $) NIL)) (-4260 (((-112) $ $) NIL) (((-112) $ (-644 $)) NIL)) (-3375 (($ $ $ $ $) 107 (|has| |#1| (-558)))) (-1594 ((|#2| $) 22)) (-2530 (($ (-1171 |#1|) |#2|) NIL) (($ (-1171 $) |#2|) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-533 |#2|)) NIL) (($ $ |#2| (-771)) 38) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-1982 (($ $ $) 63)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ |#2|) NIL)) (-1912 (((-112) $) NIL)) (-3251 (((-533 |#2|) $) NIL) (((-771) $ |#2|) NIL) (((-644 (-771)) $ (-644 |#2|)) NIL)) (-1961 (((-771) $) 23)) (-2132 (($ (-1 (-533 |#2|) (-533 |#2|)) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3339 (((-3 |#2| "failed") $) NIL)) (-1533 (($ $) NIL (|has| |#1| (-454)))) (-3262 (($ $) NIL (|has| |#1| (-454)))) (-2017 (((-644 $) $) NIL)) (-2401 (($ $) 39)) (-1506 (($ $) NIL (|has| |#1| (-454)))) (-2224 (((-644 $) $) 43)) (-3708 (($ $) 41)) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL) (($ $ |#2|) 48)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2927 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1812 (-771))) $ $) 96)) (-1992 (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $) 78) (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $ |#2|) NIL)) (-2311 (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -1644 $)) $ $) NIL) (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -1644 $)) $ $ |#2|) NIL)) (-2728 (($ $ $) 83) (($ $ $ |#2|) NIL)) (-2695 (($ $ $) 86) (($ $ $ |#2|) NIL)) (-2878 (((-1157) $) NIL)) (-1624 (($ $ $) 125 (|has| |#1| (-558)))) (-1392 (((-644 $) $) 32)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| |#2|) (|:| -3250 (-771))) "failed") $) NIL)) (-3377 (((-112) $ $) NIL) (((-112) $ (-644 $)) NIL)) (-1687 (($ $ $) NIL)) (-2759 (($ $) 24)) (-2343 (((-112) $ $) NIL)) (-3257 (((-112) $ $) NIL) (((-112) $ (-644 $)) NIL)) (-2930 (($ $ $) NIL)) (-4341 (($ $) 26)) (-4033 (((-1119) $) NIL)) (-2687 (((-2 (|:| -2222 $) (|:| |coef2| $)) $ $) 116 (|has| |#1| (-558)))) (-1948 (((-2 (|:| -2222 $) (|:| |coef1| $)) $ $) 113 (|has| |#1| (-558)))) (-2636 (((-112) $) 56)) (-3531 ((|#1| $) 58)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2222 ((|#1| |#1| $) 133 (|has| |#1| (-454))) (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2298 (((-2 (|:| -2222 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 119 (|has| |#1| (-558)))) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) 98 (|has| |#1| (-558)))) (-2999 (($ $ |#1|) 129 (|has| |#1| (-558))) (($ $ $) NIL (|has| |#1| (-558)))) (-2582 (($ $ |#1|) 128 (|has| |#1| (-558))) (($ $ $) NIL (|has| |#1| (-558)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-644 |#2|) (-644 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-644 |#2|) (-644 $)) NIL)) (-2408 (($ $ |#2|) NIL (|has| |#1| (-172)))) (-2862 (($ $ |#2|) NIL) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-3992 (((-533 |#2|) $) NIL) (((-771) $ |#2|) 45) (((-644 (-771)) $ (-644 |#2|)) NIL)) (-2735 (($ $) NIL)) (-3906 (($ $) 35)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| |#1| (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| |#1| (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| |#1| (-614 (-538))) (|has| |#2| (-614 (-538))))) (($ (-952 (-409 (-566)))) NIL (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175))))) (($ (-952 (-566))) NIL (-2805 (-12 (|has| |#1| (-38 (-566))) (|has| |#2| (-614 (-1175))) (-2426 (|has| |#1| (-38 (-409 (-566)))))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175)))))) (($ (-952 |#1|)) NIL (|has| |#2| (-614 (-1175)))) (((-1157) $) NIL (-12 (|has| |#1| (-1038 (-566))) (|has| |#2| (-614 (-1175))))) (((-952 |#1|) $) NIL (|has| |#2| (-614 (-1175))))) (-3181 ((|#1| $) 132 (|has| |#1| (-454))) (($ $ |#2|) NIL (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-952 |#1|) $) NIL (|has| |#2| (-614 (-1175)))) (((-1124 |#1| |#2|) $) 18) (($ (-1124 |#1| |#2|)) 19) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-533 |#2|)) NIL) (($ $ |#2| (-771)) 47) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2485 (($) 13 T CONST)) (-2548 (((-3 (-112) "failed") $ $) NIL)) (-2495 (($) 37 T CONST)) (-2591 (($ $ $ $ (-771)) 105 (|has| |#1| (-558)))) (-2157 (($ $ $ (-771)) 104 (|has| |#1| (-558)))) (-2840 (($ $ |#2|) NIL) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) 75)) (-3034 (($ $ $) 85)) (** (($ $ (-921)) NIL) (($ $ (-771)) 70)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 62) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 61) (($ $ |#1|) NIL)))
+((-2719 ((|#2| |#4|) 35)))
+(((-775 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2719 (|#2| |#4|))) (-454) (-1240 |#1|) (-724 |#1| |#2|) (-1240 |#3|)) (T -775))
+((-2719 (*1 *2 *3) (-12 (-4 *4 (-454)) (-4 *5 (-724 *4 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-775 *4 *2 *5 *3)) (-4 *3 (-1240 *5)))))
+(-10 -7 (-15 -2719 (|#2| |#4|)))
+((-2928 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 57)) (-1501 (((-1269) (-1157) (-1157) |#4| |#5|) 33)) (-1376 ((|#4| |#4| |#5|) 74)) (-3512 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#5|) 79)) (-1658 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|) 16)))
+(((-776 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2928 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1376 (|#4| |#4| |#5|)) (-15 -3512 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#5|)) (-15 -1501 ((-1269) (-1157) (-1157) |#4| |#5|)) (-15 -1658 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -776))
+((-1658 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *4)))) (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1501 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-1157)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *4 (-1064 *6 *7 *8)) (-5 *2 (-1269)) (-5 *1 (-776 *6 *7 *8 *4 *5)) (-4 *5 (-1070 *6 *7 *8 *4)))) (-3512 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4)))) (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1376 (*1 *2 *2 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *2 (-1064 *4 *5 *6)) (-5 *1 (-776 *4 *5 *6 *2 *3)) (-4 *3 (-1070 *4 *5 *6 *2)))) (-2928 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3))) (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(-10 -7 (-15 -2928 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -1376 (|#4| |#4| |#5|)) (-15 -3512 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#5|)) (-15 -1501 ((-1269) (-1157) (-1157) |#4| |#5|)) (-15 -1658 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|)))
+((-3066 (((-3 (-1171 (-1171 |#1|)) "failed") |#4|) 53)) (-1796 (((-644 |#4|) |#4|) 24)) (-3583 ((|#4| |#4|) 19)))
+(((-777 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1796 ((-644 |#4|) |#4|)) (-15 -3066 ((-3 (-1171 (-1171 |#1|)) "failed") |#4|)) (-15 -3583 (|#4| |#4|))) (-351) (-330 |#1|) (-1240 |#2|) (-1240 |#3|) (-921)) (T -777))
+((-3583 (*1 *2 *2) (-12 (-4 *3 (-351)) (-4 *4 (-330 *3)) (-4 *5 (-1240 *4)) (-5 *1 (-777 *3 *4 *5 *2 *6)) (-4 *2 (-1240 *5)) (-14 *6 (-921)))) (-3066 (*1 *2 *3) (|partial| -12 (-4 *4 (-351)) (-4 *5 (-330 *4)) (-4 *6 (-1240 *5)) (-5 *2 (-1171 (-1171 *4))) (-5 *1 (-777 *4 *5 *6 *3 *7)) (-4 *3 (-1240 *6)) (-14 *7 (-921)))) (-1796 (*1 *2 *3) (-12 (-4 *4 (-351)) (-4 *5 (-330 *4)) (-4 *6 (-1240 *5)) (-5 *2 (-644 *3)) (-5 *1 (-777 *4 *5 *6 *3 *7)) (-4 *3 (-1240 *6)) (-14 *7 (-921)))))
+(-10 -7 (-15 -1796 ((-644 |#4|) |#4|)) (-15 -3066 ((-3 (-1171 (-1171 |#1|)) "failed") |#4|)) (-15 -3583 (|#4| |#4|)))
+((-2097 (((-2 (|:| |deter| (-644 (-1171 |#5|))) (|:| |dterm| (-644 (-644 (-2 (|:| -2342 (-771)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-644 |#1|)) (|:| |nlead| (-644 |#5|))) (-1171 |#5|) (-644 |#1|) (-644 |#5|)) 75)) (-2517 (((-644 (-771)) |#1|) 20)))
+(((-778 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2097 ((-2 (|:| |deter| (-644 (-1171 |#5|))) (|:| |dterm| (-644 (-644 (-2 (|:| -2342 (-771)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-644 |#1|)) (|:| |nlead| (-644 |#5|))) (-1171 |#5|) (-644 |#1|) (-644 |#5|))) (-15 -2517 ((-644 (-771)) |#1|))) (-1240 |#4|) (-793) (-850) (-308) (-949 |#4| |#2| |#3|)) (T -778))
+((-2517 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-644 (-771))) (-5 *1 (-778 *3 *4 *5 *6 *7)) (-4 *3 (-1240 *6)) (-4 *7 (-949 *6 *4 *5)))) (-2097 (*1 *2 *3 *4 *5) (-12 (-4 *6 (-1240 *9)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-308)) (-4 *10 (-949 *9 *7 *8)) (-5 *2 (-2 (|:| |deter| (-644 (-1171 *10))) (|:| |dterm| (-644 (-644 (-2 (|:| -2342 (-771)) (|:| |pcoef| *10))))) (|:| |nfacts| (-644 *6)) (|:| |nlead| (-644 *10)))) (-5 *1 (-778 *6 *7 *8 *9 *10)) (-5 *3 (-1171 *10)) (-5 *4 (-644 *6)) (-5 *5 (-644 *10)))))
+(-10 -7 (-15 -2097 ((-2 (|:| |deter| (-644 (-1171 |#5|))) (|:| |dterm| (-644 (-644 (-2 (|:| -2342 (-771)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-644 |#1|)) (|:| |nlead| (-644 |#5|))) (-1171 |#5|) (-644 |#1|) (-644 |#5|))) (-15 -2517 ((-644 (-771)) |#1|)))
+((-2787 (((-644 (-2 (|:| |outval| |#1|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#1|))))) (-689 (-409 (-566))) |#1|) 31)) (-3592 (((-644 |#1|) (-689 (-409 (-566))) |#1|) 21)) (-4370 (((-952 (-409 (-566))) (-689 (-409 (-566))) (-1175)) 18) (((-952 (-409 (-566))) (-689 (-409 (-566)))) 17)))
+(((-779 |#1|) (-10 -7 (-15 -4370 ((-952 (-409 (-566))) (-689 (-409 (-566))))) (-15 -4370 ((-952 (-409 (-566))) (-689 (-409 (-566))) (-1175))) (-15 -3592 ((-644 |#1|) (-689 (-409 (-566))) |#1|)) (-15 -2787 ((-644 (-2 (|:| |outval| |#1|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#1|))))) (-689 (-409 (-566))) |#1|))) (-13 (-365) (-848))) (T -779))
+((-2787 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *2 (-644 (-2 (|:| |outval| *4) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 *4)))))) (-5 *1 (-779 *4)) (-4 *4 (-13 (-365) (-848))))) (-3592 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *2 (-644 *4)) (-5 *1 (-779 *4)) (-4 *4 (-13 (-365) (-848))))) (-4370 (*1 *2 *3 *4) (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *4 (-1175)) (-5 *2 (-952 (-409 (-566)))) (-5 *1 (-779 *5)) (-4 *5 (-13 (-365) (-848))))) (-4370 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *2 (-952 (-409 (-566)))) (-5 *1 (-779 *4)) (-4 *4 (-13 (-365) (-848))))))
+(-10 -7 (-15 -4370 ((-952 (-409 (-566))) (-689 (-409 (-566))))) (-15 -4370 ((-952 (-409 (-566))) (-689 (-409 (-566))) (-1175))) (-15 -3592 ((-644 |#1|) (-689 (-409 (-566))) |#1|)) (-15 -2787 ((-644 (-2 (|:| |outval| |#1|) (|:| |outmult| (-566)) (|:| |outvect| (-644 (-689 |#1|))))) (-689 (-409 (-566))) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 36)) (-2608 (((-644 |#2|) $) NIL)) (-2438 (((-1171 $) $ |#2|) NIL) (((-1171 |#1|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 |#2|)) NIL)) (-4043 (($ $) 30)) (-4001 (((-112) $ $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-1911 (($ $ $) 110 (|has| |#1| (-558)))) (-1919 (((-644 $) $ $) 123 (|has| |#1| (-558)))) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2179 (($ $) NIL (|has| |#1| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 |#2| "failed") $) NIL) (((-3 $ "failed") (-952 (-409 (-566)))) NIL (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175))))) (((-3 $ "failed") (-952 (-566))) NIL (-2805 (-12 (|has| |#1| (-38 (-566))) (|has| |#2| (-614 (-1175))) (-2436 (|has| |#1| (-38 (-409 (-566)))))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175)))))) (((-3 $ "failed") (-952 |#1|)) NIL (-2805 (-12 (|has| |#2| (-614 (-1175))) (-2436 (|has| |#1| (-38 (-409 (-566))))) (-2436 (|has| |#1| (-38 (-566))))) (-12 (|has| |#1| (-38 (-566))) (|has| |#2| (-614 (-1175))) (-2436 (|has| |#1| (-38 (-409 (-566))))) (-2436 (|has| |#1| (-547)))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175))) (-2436 (|has| |#1| (-992 (-566))))))) (((-3 (-1124 |#1| |#2|) "failed") $) 21)) (-1867 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) ((|#2| $) NIL) (($ (-952 (-409 (-566)))) NIL (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175))))) (($ (-952 (-566))) NIL (-2805 (-12 (|has| |#1| (-38 (-566))) (|has| |#2| (-614 (-1175))) (-2436 (|has| |#1| (-38 (-409 (-566)))))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175)))))) (($ (-952 |#1|)) NIL (-2805 (-12 (|has| |#2| (-614 (-1175))) (-2436 (|has| |#1| (-38 (-409 (-566))))) (-2436 (|has| |#1| (-38 (-566))))) (-12 (|has| |#1| (-38 (-566))) (|has| |#2| (-614 (-1175))) (-2436 (|has| |#1| (-38 (-409 (-566))))) (-2436 (|has| |#1| (-547)))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175))) (-2436 (|has| |#1| (-992 (-566))))))) (((-1124 |#1| |#2|) $) NIL)) (-2662 (($ $ $ |#2|) NIL (|has| |#1| (-172))) (($ $ $) 121 (|has| |#1| (-558)))) (-3645 (($ $) NIL) (($ $ |#2|) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1991 (((-112) $ $) NIL) (((-112) $ (-644 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-3357 (((-112) $) NIL)) (-3048 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 81)) (-2389 (($ $) 136 (|has| |#1| (-454)))) (-2755 (($ $) NIL (|has| |#1| (-454))) (($ $ |#2|) NIL (|has| |#1| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#1| (-909)))) (-1593 (($ $) NIL (|has| |#1| (-558)))) (-3382 (($ $) NIL (|has| |#1| (-558)))) (-2275 (($ $ $) 76) (($ $ $ |#2|) NIL)) (-2634 (($ $ $) 79) (($ $ $ |#2|) NIL)) (-2871 (($ $ |#1| (-533 |#2|) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| |#1| (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| |#1| (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-3466 (((-112) $) 57)) (-4230 (((-771) $) NIL)) (-2848 (((-112) $ $) NIL) (((-112) $ (-644 $)) NIL)) (-2312 (($ $ $ $ $) 107 (|has| |#1| (-558)))) (-1887 ((|#2| $) 22)) (-2597 (($ (-1171 |#1|) |#2|) NIL) (($ (-1171 $) |#2|) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-533 |#2|)) NIL) (($ $ |#2| (-771)) 38) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-1482 (($ $ $) 63)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ |#2|) NIL)) (-2046 (((-112) $) NIL)) (-2466 (((-533 |#2|) $) NIL) (((-771) $ |#2|) NIL) (((-644 (-771)) $ (-644 |#2|)) NIL)) (-4348 (((-771) $) 23)) (-2443 (($ (-1 (-533 |#2|) (-533 |#2|)) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1984 (((-3 |#2| "failed") $) NIL)) (-2488 (($ $) NIL (|has| |#1| (-454)))) (-2571 (($ $) NIL (|has| |#1| (-454)))) (-3720 (((-644 $) $) NIL)) (-3251 (($ $) 39)) (-3412 (($ $) NIL (|has| |#1| (-454)))) (-2053 (((-644 $) $) 43)) (-4349 (($ $) 41)) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL) (($ $ |#2|) 48)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-1634 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3458 (-771))) $ $) 96)) (-1599 (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $) 78) (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $ |#2|) NIL)) (-1705 (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -4228 $)) $ $) NIL) (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -4228 $)) $ $ |#2|) NIL)) (-3348 (($ $ $) 83) (($ $ $ |#2|) NIL)) (-4218 (($ $ $) 86) (($ $ $ |#2|) NIL)) (-2402 (((-1157) $) NIL)) (-2165 (($ $ $) 125 (|has| |#1| (-558)))) (-3457 (((-644 $) $) 32)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| |#2|) (|:| -2456 (-771))) "failed") $) NIL)) (-2337 (((-112) $ $) NIL) (((-112) $ (-644 $)) NIL)) (-1569 (($ $ $) NIL)) (-3625 (($ $) 24)) (-3886 (((-112) $ $) NIL)) (-2531 (((-112) $ $) NIL) (((-112) $ (-644 $)) NIL)) (-1671 (($ $ $) NIL)) (-2464 (($ $) 26)) (-4056 (((-1119) $) NIL)) (-4155 (((-2 (|:| -2235 $) (|:| |coef2| $)) $ $) 116 (|has| |#1| (-558)))) (-4243 (((-2 (|:| -2235 $) (|:| |coef1| $)) $ $) 113 (|has| |#1| (-558)))) (-3595 (((-112) $) 56)) (-3604 ((|#1| $) 58)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2235 ((|#1| |#1| $) 133 (|has| |#1| (-454))) (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-909)))) (-1558 (((-2 (|:| -2235 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 119 (|has| |#1| (-558)))) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) 98 (|has| |#1| (-558)))) (-2131 (($ $ |#1|) 129 (|has| |#1| (-558))) (($ $ $) NIL (|has| |#1| (-558)))) (-4341 (($ $ |#1|) 128 (|has| |#1| (-558))) (($ $ $) NIL (|has| |#1| (-558)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-644 |#2|) (-644 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-644 |#2|) (-644 $)) NIL)) (-3309 (($ $ |#2|) NIL (|has| |#1| (-172)))) (-2578 (($ $ |#2|) NIL) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-2108 (((-533 |#2|) $) NIL) (((-771) $ |#2|) 45) (((-644 (-771)) $ (-644 |#2|)) NIL)) (-3403 (($ $) NIL)) (-2595 (($ $) 35)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| |#1| (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| |#1| (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| |#1| (-614 (-538))) (|has| |#2| (-614 (-538))))) (($ (-952 (-409 (-566)))) NIL (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175))))) (($ (-952 (-566))) NIL (-2805 (-12 (|has| |#1| (-38 (-566))) (|has| |#2| (-614 (-1175))) (-2436 (|has| |#1| (-38 (-409 (-566)))))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#2| (-614 (-1175)))))) (($ (-952 |#1|)) NIL (|has| |#2| (-614 (-1175)))) (((-1157) $) NIL (-12 (|has| |#1| (-1038 (-566))) (|has| |#2| (-614 (-1175))))) (((-952 |#1|) $) NIL (|has| |#2| (-614 (-1175))))) (-3042 ((|#1| $) 132 (|has| |#1| (-454))) (($ $ |#2|) NIL (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ |#2|) NIL) (((-952 |#1|) $) NIL (|has| |#2| (-614 (-1175)))) (((-1124 |#1| |#2|) $) 18) (($ (-1124 |#1| |#2|)) 19) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-533 |#2|)) NIL) (($ $ |#2| (-771)) 47) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2493 (($) 13 T CONST)) (-2152 (((-3 (-112) "failed") $ $) NIL)) (-4333 (($) 37 T CONST)) (-1310 (($ $ $ $ (-771)) 105 (|has| |#1| (-558)))) (-2693 (($ $ $ (-771)) 104 (|has| |#1| (-558)))) (-2876 (($ $ |#2|) NIL) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) 75)) (-3040 (($ $ $) 85)) (** (($ $ (-921)) NIL) (($ $ (-771)) 70)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 62) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 61) (($ $ |#1|) NIL)))
(((-780 |#1| |#2|) (-13 (-1064 |#1| (-533 |#2|) |#2|) (-613 (-1124 |#1| |#2|)) (-1038 (-1124 |#1| |#2|))) (-1049) (-850)) (T -780))
NIL
(-13 (-1064 |#1| (-533 |#2|) |#2|) (-613 (-1124 |#1| |#2|)) (-1038 (-1124 |#1| |#2|)))
-((-3077 (((-782 |#2|) (-1 |#2| |#1|) (-782 |#1|)) 13)))
-(((-781 |#1| |#2|) (-10 -7 (-15 -3077 ((-782 |#2|) (-1 |#2| |#1|) (-782 |#1|)))) (-1049) (-1049)) (T -781))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-782 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-5 *2 (-782 *6)) (-5 *1 (-781 *5 *6)))))
-(-10 -7 (-15 -3077 ((-782 |#2|) (-1 |#2| |#1|) (-782 |#1|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 12)) (-2025 (((-1264 |#1|) $ (-771)) NIL)) (-2540 (((-644 (-1081)) $) NIL)) (-3526 (($ (-1171 |#1|)) NIL)) (-2358 (((-1171 $) $ (-1081)) NIL) (((-1171 |#1|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-1081))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-4187 (((-644 $) $ $) 54 (|has| |#1| (-558)))) (-2829 (($ $ $) 50 (|has| |#1| (-558)))) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2857 (($ $) NIL (|has| |#1| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-4047 (($ $ (-771)) NIL)) (-2284 (($ $ (-771)) NIL)) (-2542 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-454)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-1081) "failed") $) NIL) (((-3 (-1171 |#1|) "failed") $) 10)) (-1756 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-1081) $) NIL) (((-1171 |#1|) $) NIL)) (-1552 (($ $ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $ $) 58 (|has| |#1| (-172)))) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-2762 (($ $ $) NIL)) (-2213 (($ $ $) 87 (|has| |#1| (-558)))) (-2513 (((-2 (|:| -3157 |#1|) (|:| -2760 $) (|:| -1644 $)) $ $) 86 (|has| |#1| (-558)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-4248 (($ $) NIL (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#1| (-909)))) (-2804 (($ $ |#1| (-771) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1081) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1081) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-2716 (((-771) $ $) NIL (|has| |#1| (-558)))) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-1150)))) (-2530 (($ (-1171 |#1|) (-1081)) NIL) (($ (-1171 $) (-1081)) NIL)) (-3432 (($ $ (-771)) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-771)) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-1982 (($ $ $) 27)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-1081)) NIL) (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3251 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-2132 (($ (-1 (-771) (-771)) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3840 (((-1171 |#1|) $) NIL)) (-3339 (((-3 (-1081) "failed") $) NIL)) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2927 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1812 (-771))) $ $) 37)) (-2046 (($ $ $) 41)) (-3334 (($ $ $) 47)) (-1992 (((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $) 46)) (-2878 (((-1157) $) NIL)) (-1624 (($ $ $) 56 (|has| |#1| (-558)))) (-1497 (((-2 (|:| -2760 $) (|:| -1644 $)) $ (-771)) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-1081)) (|:| -3250 (-771))) "failed") $) NIL)) (-4117 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2759 (($) NIL (|has| |#1| (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-2687 (((-2 (|:| -2222 $) (|:| |coef2| $)) $ $) 82 (|has| |#1| (-558)))) (-1948 (((-2 (|:| -2222 $) (|:| |coef1| $)) $ $) 78 (|has| |#1| (-558)))) (-1367 (((-2 (|:| -1552 |#1|) (|:| |coef2| $)) $ $) 70 (|has| |#1| (-558)))) (-3397 (((-2 (|:| -1552 |#1|) (|:| |coef1| $)) $ $) 66 (|has| |#1| (-558)))) (-2636 (((-112) $) 13)) (-3531 ((|#1| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-1441 (($ $ (-771) |#1| $) 26)) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2298 (((-2 (|:| -2222 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 74 (|has| |#1| (-558)))) (-4144 (((-2 (|:| -1552 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 62 (|has| |#1| (-558)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1081) |#1|) NIL) (($ $ (-644 (-1081)) (-644 |#1|)) NIL) (($ $ (-1081) $) NIL) (($ $ (-644 (-1081)) (-644 $)) NIL)) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-409 $) (-409 $) (-409 $)) NIL (|has| |#1| (-558))) ((|#1| (-409 $) |#1|) NIL (|has| |#1| (-365))) (((-409 $) $ (-409 $)) NIL (|has| |#1| (-558)))) (-1876 (((-3 $ "failed") $ (-771)) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2408 (($ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $) NIL (|has| |#1| (-172)))) (-2862 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3992 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1081) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3181 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-4293 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558))) (((-3 (-409 $) "failed") (-409 $) $) NIL (|has| |#1| (-558)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-1081)) NIL) (((-1171 |#1|) $) 7) (($ (-1171 |#1|)) 8) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-771)) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2485 (($) 28 T CONST)) (-2495 (($) 32 T CONST)) (-2840 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) 40) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 31) (($ $ |#1|) NIL)))
-(((-782 |#1|) (-13 (-1240 |#1|) (-613 (-1171 |#1|)) (-1038 (-1171 |#1|)) (-10 -8 (-15 -1441 ($ $ (-771) |#1| $)) (-15 -1982 ($ $ $)) (-15 -2927 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1812 (-771))) $ $)) (-15 -2046 ($ $ $)) (-15 -1992 ((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -3334 ($ $ $)) (IF (|has| |#1| (-558)) (PROGN (-15 -4187 ((-644 $) $ $)) (-15 -1624 ($ $ $)) (-15 -2298 ((-2 (|:| -2222 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1948 ((-2 (|:| -2222 $) (|:| |coef1| $)) $ $)) (-15 -2687 ((-2 (|:| -2222 $) (|:| |coef2| $)) $ $)) (-15 -4144 ((-2 (|:| -1552 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3397 ((-2 (|:| -1552 |#1|) (|:| |coef1| $)) $ $)) (-15 -1367 ((-2 (|:| -1552 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1049)) (T -782))
-((-1441 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-771)) (-5 *1 (-782 *3)) (-4 *3 (-1049)))) (-1982 (*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049)))) (-2927 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-782 *3)) (|:| |polden| *3) (|:| -1812 (-771)))) (-5 *1 (-782 *3)) (-4 *3 (-1049)))) (-2046 (*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049)))) (-1992 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3157 *3) (|:| |gap| (-771)) (|:| -2760 (-782 *3)) (|:| -1644 (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-1049)))) (-3334 (*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049)))) (-4187 (*1 *2 *1 *1) (-12 (-5 *2 (-644 (-782 *3))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-1624 (*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-558)) (-4 *2 (-1049)))) (-2298 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2222 (-782 *3)) (|:| |coef1| (-782 *3)) (|:| |coef2| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-1948 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2222 (-782 *3)) (|:| |coef1| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-2687 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2222 (-782 *3)) (|:| |coef2| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-4144 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1552 *3) (|:| |coef1| (-782 *3)) (|:| |coef2| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-3397 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1552 *3) (|:| |coef1| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-1367 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1552 *3) (|:| |coef2| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))))
-(-13 (-1240 |#1|) (-613 (-1171 |#1|)) (-1038 (-1171 |#1|)) (-10 -8 (-15 -1441 ($ $ (-771) |#1| $)) (-15 -1982 ($ $ $)) (-15 -2927 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1812 (-771))) $ $)) (-15 -2046 ($ $ $)) (-15 -1992 ((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -3334 ($ $ $)) (IF (|has| |#1| (-558)) (PROGN (-15 -4187 ((-644 $) $ $)) (-15 -1624 ($ $ $)) (-15 -2298 ((-2 (|:| -2222 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1948 ((-2 (|:| -2222 $) (|:| |coef1| $)) $ $)) (-15 -2687 ((-2 (|:| -2222 $) (|:| |coef2| $)) $ $)) (-15 -4144 ((-2 (|:| -1552 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -3397 ((-2 (|:| -1552 |#1|) (|:| |coef1| $)) $ $)) (-15 -1367 ((-2 (|:| -1552 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
-((-2182 ((|#1| (-771) |#1|) 33 (|has| |#1| (-38 (-409 (-566)))))) (-3252 ((|#1| (-771) |#1|) 23)) (-1930 ((|#1| (-771) |#1|) 35 (|has| |#1| (-38 (-409 (-566)))))))
-(((-783 |#1|) (-10 -7 (-15 -3252 (|#1| (-771) |#1|)) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -1930 (|#1| (-771) |#1|)) (-15 -2182 (|#1| (-771) |#1|))) |%noBranch|)) (-172)) (T -783))
-((-2182 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-172)))) (-1930 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-172)))) (-3252 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-172)))))
-(-10 -7 (-15 -3252 (|#1| (-771) |#1|)) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -1930 (|#1| (-771) |#1|)) (-15 -2182 (|#1| (-771) |#1|))) |%noBranch|))
-((-2985 (((-112) $ $) 7)) (-2072 (((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 |#4|)))) (-644 |#4|)) 86)) (-1725 (((-644 $) (-644 |#4|)) 87) (((-644 $) (-644 |#4|) (-112)) 112)) (-2540 (((-644 |#3|) $) 34)) (-2598 (((-112) $) 27)) (-2740 (((-112) $) 18 (|has| |#1| (-558)))) (-4390 (((-112) |#4| $) 102) (((-112) $) 98)) (-3761 ((|#4| |#4| $) 93)) (-2857 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| $) 127)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) 28)) (-3081 (((-112) $ (-771)) 45)) (-4186 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4417))) (((-3 |#4| "failed") $ |#3|) 80)) (-2342 (($) 46 T CONST)) (-4179 (((-112) $) 23 (|has| |#1| (-558)))) (-4184 (((-112) $ $) 25 (|has| |#1| (-558)))) (-1576 (((-112) $ $) 24 (|has| |#1| (-558)))) (-2398 (((-112) $) 26 (|has| |#1| (-558)))) (-3772 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2380 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) 37)) (-1756 (($ (-644 |#4|)) 36)) (-4076 (((-3 $ "failed") $) 83)) (-2668 ((|#4| |#4| $) 90)) (-4093 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-4200 ((|#4| |#4| $) 88)) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4417))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-3810 (((-2 (|:| -1673 (-644 |#4|)) (|:| -3509 (-644 |#4|))) $) 106)) (-3422 (((-112) |#4| $) 137)) (-2192 (((-112) |#4| $) 134)) (-1602 (((-112) |#4| $) 138) (((-112) $) 135)) (-3372 (((-644 |#4|) $) 53 (|has| $ (-6 -4417)))) (-4260 (((-112) |#4| $) 105) (((-112) $) 104)) (-1594 ((|#3| $) 35)) (-2744 (((-112) $ (-771)) 44)) (-2404 (((-644 |#4|) $) 54 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) 48)) (-3097 (((-644 |#3|) $) 33)) (-3492 (((-112) |#3| $) 32)) (-3882 (((-112) $ (-771)) 43)) (-2878 (((-1157) $) 10)) (-2501 (((-3 |#4| (-644 $)) |#4| |#4| $) 129)) (-1624 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| |#4| $) 128)) (-2670 (((-3 |#4| "failed") $) 84)) (-2909 (((-644 $) |#4| $) 130)) (-4343 (((-3 (-112) (-644 $)) |#4| $) 133)) (-2620 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2390 (((-644 $) |#4| $) 126) (((-644 $) (-644 |#4|) $) 125) (((-644 $) (-644 |#4|) (-644 $)) 124) (((-644 $) |#4| (-644 $)) 123)) (-1937 (($ |#4| $) 118) (($ (-644 |#4|) $) 117)) (-1798 (((-644 |#4|) $) 108)) (-3377 (((-112) |#4| $) 100) (((-112) $) 96)) (-1687 ((|#4| |#4| $) 91)) (-2343 (((-112) $ $) 111)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-3257 (((-112) |#4| $) 101) (((-112) $) 97)) (-2930 ((|#4| |#4| $) 92)) (-4033 (((-1119) $) 11)) (-4062 (((-3 |#4| "failed") $) 85)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1583 (((-3 $ "failed") $ |#4|) 79)) (-1938 (($ $ |#4|) 78) (((-644 $) |#4| $) 116) (((-644 $) |#4| (-644 $)) 115) (((-644 $) (-644 |#4|) $) 114) (((-644 $) (-644 |#4|) (-644 $)) 113)) (-2822 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) 39)) (-4194 (((-112) $) 42)) (-2954 (($) 41)) (-3992 (((-771) $) 107)) (-4044 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4417)))) (-3895 (($ $) 40)) (-3134 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-2523 (($ (-644 |#4|)) 61)) (-1945 (($ $ |#3|) 29)) (-1398 (($ $ |#3|) 31)) (-2280 (($ $) 89)) (-4287 (($ $ |#3|) 30)) (-2512 (((-862) $) 12) (((-644 |#4|) $) 38)) (-2748 (((-771) $) 77 (|has| |#3| (-370)))) (-3122 (((-112) $ $) 9)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3130 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) 99)) (-1848 (((-644 $) |#4| $) 122) (((-644 $) |#4| (-644 $)) 121) (((-644 $) (-644 |#4|) $) 120) (((-644 $) (-644 |#4|) (-644 $)) 119)) (-3427 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4417)))) (-1427 (((-644 |#3|) $) 82)) (-1737 (((-112) |#4| $) 136)) (-1369 (((-112) |#3| $) 81)) (-2940 (((-112) $ $) 6)) (-2997 (((-771) $) 47 (|has| $ (-6 -4417)))))
+((-3152 (((-782 |#2|) (-1 |#2| |#1|) (-782 |#1|)) 13)))
+(((-781 |#1| |#2|) (-10 -7 (-15 -3152 ((-782 |#2|) (-1 |#2| |#1|) (-782 |#1|)))) (-1049) (-1049)) (T -781))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-782 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-5 *2 (-782 *6)) (-5 *1 (-781 *5 *6)))))
+(-10 -7 (-15 -3152 ((-782 |#2|) (-1 |#2| |#1|) (-782 |#1|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 12)) (-3788 (((-1264 |#1|) $ (-771)) NIL)) (-2608 (((-644 (-1081)) $) NIL)) (-3220 (($ (-1171 |#1|)) NIL)) (-2438 (((-1171 $) $ (-1081)) NIL) (((-1171 |#1|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-1081))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3388 (((-644 $) $ $) 54 (|has| |#1| (-558)))) (-1911 (($ $ $) 50 (|has| |#1| (-558)))) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2179 (($ $) NIL (|has| |#1| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-1362 (($ $ (-771)) NIL)) (-1407 (($ $ (-771)) NIL)) (-2091 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-454)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-1081) "failed") $) NIL) (((-3 (-1171 |#1|) "failed") $) 10)) (-1867 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-1081) $) NIL) (((-1171 |#1|) $) NIL)) (-2662 (($ $ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $ $) 58 (|has| |#1| (-172)))) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3667 (($ $ $) NIL)) (-1941 (($ $ $) 87 (|has| |#1| (-558)))) (-3048 (((-2 (|:| -3223 |#1|) (|:| -3644 $) (|:| -4228 $)) $ $) 86 (|has| |#1| (-558)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2755 (($ $) NIL (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#1| (-909)))) (-2871 (($ $ |#1| (-771) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1081) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1081) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3227 (((-771) $ $) NIL (|has| |#1| (-558)))) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-1150)))) (-2597 (($ (-1171 |#1|) (-1081)) NIL) (($ (-1171 $) (-1081)) NIL)) (-1644 (($ $ (-771)) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-771)) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-1482 (($ $ $) 27)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-1081)) NIL) (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2466 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-2443 (($ (-1 (-771) (-771)) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3207 (((-1171 |#1|) $) NIL)) (-1984 (((-3 (-1081) "failed") $) NIL)) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-1634 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3458 (-771))) $ $) 37)) (-3993 (($ $ $) 41)) (-1952 (($ $ $) 47)) (-1599 (((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $) 46)) (-2402 (((-1157) $) NIL)) (-2165 (($ $ $) 56 (|has| |#1| (-558)))) (-3312 (((-2 (|:| -3644 $) (|:| -4228 $)) $ (-771)) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-1081)) (|:| -2456 (-771))) "failed") $) NIL)) (-3921 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3625 (($) NIL (|has| |#1| (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-4155 (((-2 (|:| -2235 $) (|:| |coef2| $)) $ $) 82 (|has| |#1| (-558)))) (-4243 (((-2 (|:| -2235 $) (|:| |coef1| $)) $ $) 78 (|has| |#1| (-558)))) (-2027 (((-2 (|:| -2662 |#1|) (|:| |coef2| $)) $ $) 70 (|has| |#1| (-558)))) (-4364 (((-2 (|:| -2662 |#1|) (|:| |coef1| $)) $ $) 66 (|has| |#1| (-558)))) (-3595 (((-112) $) 13)) (-3604 ((|#1| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-3959 (($ $ (-771) |#1| $) 26)) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-909)))) (-1558 (((-2 (|:| -2235 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 74 (|has| |#1| (-558)))) (-4187 (((-2 (|:| -2662 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 62 (|has| |#1| (-558)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1081) |#1|) NIL) (($ $ (-644 (-1081)) (-644 |#1|)) NIL) (($ $ (-1081) $) NIL) (($ $ (-644 (-1081)) (-644 $)) NIL)) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-409 $) (-409 $) (-409 $)) NIL (|has| |#1| (-558))) ((|#1| (-409 $) |#1|) NIL (|has| |#1| (-365))) (((-409 $) $ (-409 $)) NIL (|has| |#1| (-558)))) (-2867 (((-3 $ "failed") $ (-771)) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-3309 (($ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $) NIL (|has| |#1| (-172)))) (-2578 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2108 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1081) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3042 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-1970 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558))) (((-3 (-409 $) "failed") (-409 $) $) NIL (|has| |#1| (-558)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-1081)) NIL) (((-1171 |#1|) $) 7) (($ (-1171 |#1|)) 8) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-771)) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2493 (($) 28 T CONST)) (-4333 (($) 32 T CONST)) (-2876 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) 40) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 31) (($ $ |#1|) NIL)))
+(((-782 |#1|) (-13 (-1240 |#1|) (-613 (-1171 |#1|)) (-1038 (-1171 |#1|)) (-10 -8 (-15 -3959 ($ $ (-771) |#1| $)) (-15 -1482 ($ $ $)) (-15 -1634 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3458 (-771))) $ $)) (-15 -3993 ($ $ $)) (-15 -1599 ((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -1952 ($ $ $)) (IF (|has| |#1| (-558)) (PROGN (-15 -3388 ((-644 $) $ $)) (-15 -2165 ($ $ $)) (-15 -1558 ((-2 (|:| -2235 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4243 ((-2 (|:| -2235 $) (|:| |coef1| $)) $ $)) (-15 -4155 ((-2 (|:| -2235 $) (|:| |coef2| $)) $ $)) (-15 -4187 ((-2 (|:| -2662 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4364 ((-2 (|:| -2662 |#1|) (|:| |coef1| $)) $ $)) (-15 -2027 ((-2 (|:| -2662 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1049)) (T -782))
+((-3959 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-771)) (-5 *1 (-782 *3)) (-4 *3 (-1049)))) (-1482 (*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049)))) (-1634 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-782 *3)) (|:| |polden| *3) (|:| -3458 (-771)))) (-5 *1 (-782 *3)) (-4 *3 (-1049)))) (-3993 (*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049)))) (-1599 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3223 *3) (|:| |gap| (-771)) (|:| -3644 (-782 *3)) (|:| -4228 (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-1049)))) (-1952 (*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049)))) (-3388 (*1 *2 *1 *1) (-12 (-5 *2 (-644 (-782 *3))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-2165 (*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-558)) (-4 *2 (-1049)))) (-1558 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2235 (-782 *3)) (|:| |coef1| (-782 *3)) (|:| |coef2| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-4243 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2235 (-782 *3)) (|:| |coef1| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-4155 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2235 (-782 *3)) (|:| |coef2| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-4187 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2662 *3) (|:| |coef1| (-782 *3)) (|:| |coef2| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-4364 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2662 *3) (|:| |coef1| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))) (-2027 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2662 *3) (|:| |coef2| (-782 *3)))) (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))))
+(-13 (-1240 |#1|) (-613 (-1171 |#1|)) (-1038 (-1171 |#1|)) (-10 -8 (-15 -3959 ($ $ (-771) |#1| $)) (-15 -1482 ($ $ $)) (-15 -1634 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -3458 (-771))) $ $)) (-15 -3993 ($ $ $)) (-15 -1599 ((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -1952 ($ $ $)) (IF (|has| |#1| (-558)) (PROGN (-15 -3388 ((-644 $) $ $)) (-15 -2165 ($ $ $)) (-15 -1558 ((-2 (|:| -2235 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4243 ((-2 (|:| -2235 $) (|:| |coef1| $)) $ $)) (-15 -4155 ((-2 (|:| -2235 $) (|:| |coef2| $)) $ $)) (-15 -4187 ((-2 (|:| -2662 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4364 ((-2 (|:| -2662 |#1|) (|:| |coef1| $)) $ $)) (-15 -2027 ((-2 (|:| -2662 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
+((-2894 ((|#1| (-771) |#1|) 33 (|has| |#1| (-38 (-409 (-566)))))) (-2478 ((|#1| (-771) |#1|) 23)) (-2218 ((|#1| (-771) |#1|) 35 (|has| |#1| (-38 (-409 (-566)))))))
+(((-783 |#1|) (-10 -7 (-15 -2478 (|#1| (-771) |#1|)) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -2218 (|#1| (-771) |#1|)) (-15 -2894 (|#1| (-771) |#1|))) |%noBranch|)) (-172)) (T -783))
+((-2894 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-172)))) (-2218 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-172)))) (-2478 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-172)))))
+(-10 -7 (-15 -2478 (|#1| (-771) |#1|)) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -2218 (|#1| (-771) |#1|)) (-15 -2894 (|#1| (-771) |#1|))) |%noBranch|))
+((-3009 (((-112) $ $) 7)) (-3043 (((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 |#4|)))) (-644 |#4|)) 86)) (-3804 (((-644 $) (-644 |#4|)) 87) (((-644 $) (-644 |#4|) (-112)) 112)) (-2608 (((-644 |#3|) $) 34)) (-1390 (((-112) $) 27)) (-3455 (((-112) $) 18 (|has| |#1| (-558)))) (-1702 (((-112) |#4| $) 102) (((-112) $) 98)) (-3713 ((|#4| |#4| $) 93)) (-2179 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| $) 127)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) 28)) (-1574 (((-112) $ (-771)) 45)) (-1386 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4414))) (((-3 |#4| "failed") $ |#3|) 80)) (-3877 (($) 46 T CONST)) (-3310 (((-112) $) 23 (|has| |#1| (-558)))) (-3367 (((-112) $ $) 25 (|has| |#1| (-558)))) (-2895 (((-112) $ $) 24 (|has| |#1| (-558)))) (-3219 (((-112) $) 26 (|has| |#1| (-558)))) (-3790 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-4239 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) 37)) (-1867 (($ (-644 |#4|)) 36)) (-4112 (((-3 $ "failed") $) 83)) (-3963 ((|#4| |#4| $) 90)) (-4133 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-1991 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-3517 ((|#4| |#4| $) 88)) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4414))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-4143 (((-2 (|:| -1713 (-644 |#4|)) (|:| -3537 (-644 |#4|))) $) 106)) (-1535 (((-112) |#4| $) 137)) (-2976 (((-112) |#4| $) 134)) (-1961 (((-112) |#4| $) 138) (((-112) $) 135)) (-3799 (((-644 |#4|) $) 53 (|has| $ (-6 -4414)))) (-2848 (((-112) |#4| $) 105) (((-112) $) 104)) (-1887 ((|#3| $) 35)) (-3501 (((-112) $ (-771)) 44)) (-3276 (((-644 |#4|) $) 54 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) 48)) (-1711 (((-644 |#3|) $) 33)) (-4113 (((-112) |#3| $) 32)) (-3582 (((-112) $ (-771)) 43)) (-2402 (((-1157) $) 10)) (-2924 (((-3 |#4| (-644 $)) |#4| |#4| $) 129)) (-2165 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| |#4| $) 128)) (-2680 (((-3 |#4| "failed") $) 84)) (-1468 (((-644 $) |#4| $) 130)) (-2487 (((-3 (-112) (-644 $)) |#4| $) 133)) (-1627 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-3147 (((-644 $) |#4| $) 126) (((-644 $) (-644 |#4|) $) 125) (((-644 $) (-644 |#4|) (-644 $)) 124) (((-644 $) |#4| (-644 $)) 123)) (-2284 (($ |#4| $) 118) (($ (-644 |#4|) $) 117)) (-3329 (((-644 |#4|) $) 108)) (-2337 (((-112) |#4| $) 100) (((-112) $) 96)) (-1569 ((|#4| |#4| $) 91)) (-3886 (((-112) $ $) 111)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $) 101) (((-112) $) 97)) (-1671 ((|#4| |#4| $) 92)) (-4056 (((-1119) $) 11)) (-4101 (((-3 |#4| "failed") $) 85)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1775 (((-3 $ "failed") $ |#4|) 79)) (-2295 (($ $ |#4|) 78) (((-644 $) |#4| $) 116) (((-644 $) |#4| (-644 $)) 115) (((-644 $) (-644 |#4|) $) 114) (((-644 $) (-644 |#4|) (-644 $)) 113)) (-3044 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) 39)) (-3461 (((-112) $) 42)) (-1793 (($) 41)) (-2108 (((-771) $) 107)) (-4067 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4414)))) (-3940 (($ $) 40)) (-3204 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-3791 (($ (-644 |#4|)) 61)) (-2363 (($ $ |#3|) 29)) (-3513 (($ $ |#3|) 31)) (-1360 (($ $) 89)) (-3130 (($ $ |#3|) 30)) (-3780 (((-862) $) 12) (((-644 |#4|) $) 38)) (-3542 (((-771) $) 77 (|has| |#3| (-370)))) (-3801 (((-112) $ $) 9)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3870 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) 99)) (-2607 (((-644 $) |#4| $) 122) (((-644 $) |#4| (-644 $)) 121) (((-644 $) (-644 |#4|) $) 120) (((-644 $) (-644 |#4|) (-644 $)) 119)) (-1583 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4414)))) (-3830 (((-644 |#3|) $) 82)) (-3917 (((-112) |#4| $) 136)) (-3258 (((-112) |#3| $) 81)) (-2950 (((-112) $ $) 6)) (-3020 (((-771) $) 47 (|has| $ (-6 -4414)))))
(((-784 |#1| |#2| |#3| |#4|) (-140) (-454) (-793) (-850) (-1064 |t#1| |t#2| |t#3|)) (T -784))
NIL
(-13 (-1070 |t#1| |t#2| |t#3| |t#4|))
(((-34) . T) ((-102) . T) ((-613 (-644 |#4|)) . T) ((-613 (-862)) . T) ((-151 |#4|) . T) ((-614 (-538)) |has| |#4| (-614 (-538))) ((-310 |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-491 |#4|) . T) ((-516 |#4| |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-976 |#1| |#2| |#3| |#4|) . T) ((-1070 |#1| |#2| |#3| |#4|) . T) ((-1099) . T) ((-1207 |#1| |#2| |#3| |#4|) . T) ((-1214) . T))
-((-3030 (((-3 (-381) "failed") (-317 |#1|) (-921)) 62 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-381) "failed") (-317 |#1|)) 54 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-381) "failed") (-409 (-952 |#1|)) (-921)) 41 (|has| |#1| (-558))) (((-3 (-381) "failed") (-409 (-952 |#1|))) 40 (|has| |#1| (-558))) (((-3 (-381) "failed") (-952 |#1|) (-921)) 31 (|has| |#1| (-1049))) (((-3 (-381) "failed") (-952 |#1|)) 30 (|has| |#1| (-1049)))) (-3920 (((-381) (-317 |#1|) (-921)) 99 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-381) (-317 |#1|)) 94 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-381) (-409 (-952 |#1|)) (-921)) 91 (|has| |#1| (-558))) (((-381) (-409 (-952 |#1|))) 90 (|has| |#1| (-558))) (((-381) (-952 |#1|) (-921)) 86 (|has| |#1| (-1049))) (((-381) (-952 |#1|)) 85 (|has| |#1| (-1049))) (((-381) |#1| (-921)) 76) (((-381) |#1|) 22)) (-2236 (((-3 (-169 (-381)) "failed") (-317 (-169 |#1|)) (-921)) 71 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-169 (-381)) "failed") (-317 (-169 |#1|))) 70 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-169 (-381)) "failed") (-317 |#1|) (-921)) 63 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-169 (-381)) "failed") (-317 |#1|)) 61 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|))) (-921)) 46 (|has| |#1| (-558))) (((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|)))) 45 (|has| |#1| (-558))) (((-3 (-169 (-381)) "failed") (-409 (-952 |#1|)) (-921)) 39 (|has| |#1| (-558))) (((-3 (-169 (-381)) "failed") (-409 (-952 |#1|))) 38 (|has| |#1| (-558))) (((-3 (-169 (-381)) "failed") (-952 |#1|) (-921)) 28 (|has| |#1| (-1049))) (((-3 (-169 (-381)) "failed") (-952 |#1|)) 26 (|has| |#1| (-1049))) (((-3 (-169 (-381)) "failed") (-952 (-169 |#1|)) (-921)) 18 (|has| |#1| (-172))) (((-3 (-169 (-381)) "failed") (-952 (-169 |#1|))) 15 (|has| |#1| (-172)))) (-2303 (((-169 (-381)) (-317 (-169 |#1|)) (-921)) 102 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-169 (-381)) (-317 (-169 |#1|))) 101 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-169 (-381)) (-317 |#1|) (-921)) 100 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-169 (-381)) (-317 |#1|)) 98 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-169 (-381)) (-409 (-952 (-169 |#1|))) (-921)) 93 (|has| |#1| (-558))) (((-169 (-381)) (-409 (-952 (-169 |#1|)))) 92 (|has| |#1| (-558))) (((-169 (-381)) (-409 (-952 |#1|)) (-921)) 89 (|has| |#1| (-558))) (((-169 (-381)) (-409 (-952 |#1|))) 88 (|has| |#1| (-558))) (((-169 (-381)) (-952 |#1|) (-921)) 84 (|has| |#1| (-1049))) (((-169 (-381)) (-952 |#1|)) 83 (|has| |#1| (-1049))) (((-169 (-381)) (-952 (-169 |#1|)) (-921)) 78 (|has| |#1| (-172))) (((-169 (-381)) (-952 (-169 |#1|))) 77 (|has| |#1| (-172))) (((-169 (-381)) (-169 |#1|) (-921)) 80 (|has| |#1| (-172))) (((-169 (-381)) (-169 |#1|)) 79 (|has| |#1| (-172))) (((-169 (-381)) |#1| (-921)) 27) (((-169 (-381)) |#1|) 25)))
-(((-785 |#1|) (-10 -7 (-15 -3920 ((-381) |#1|)) (-15 -3920 ((-381) |#1| (-921))) (-15 -2303 ((-169 (-381)) |#1|)) (-15 -2303 ((-169 (-381)) |#1| (-921))) (IF (|has| |#1| (-172)) (PROGN (-15 -2303 ((-169 (-381)) (-169 |#1|))) (-15 -2303 ((-169 (-381)) (-169 |#1|) (-921))) (-15 -2303 ((-169 (-381)) (-952 (-169 |#1|)))) (-15 -2303 ((-169 (-381)) (-952 (-169 |#1|)) (-921)))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-15 -3920 ((-381) (-952 |#1|))) (-15 -3920 ((-381) (-952 |#1|) (-921))) (-15 -2303 ((-169 (-381)) (-952 |#1|))) (-15 -2303 ((-169 (-381)) (-952 |#1|) (-921)))) |%noBranch|) (IF (|has| |#1| (-558)) (PROGN (-15 -3920 ((-381) (-409 (-952 |#1|)))) (-15 -3920 ((-381) (-409 (-952 |#1|)) (-921))) (-15 -2303 ((-169 (-381)) (-409 (-952 |#1|)))) (-15 -2303 ((-169 (-381)) (-409 (-952 |#1|)) (-921))) (-15 -2303 ((-169 (-381)) (-409 (-952 (-169 |#1|))))) (-15 -2303 ((-169 (-381)) (-409 (-952 (-169 |#1|))) (-921))) (IF (|has| |#1| (-850)) (PROGN (-15 -3920 ((-381) (-317 |#1|))) (-15 -3920 ((-381) (-317 |#1|) (-921))) (-15 -2303 ((-169 (-381)) (-317 |#1|))) (-15 -2303 ((-169 (-381)) (-317 |#1|) (-921))) (-15 -2303 ((-169 (-381)) (-317 (-169 |#1|)))) (-15 -2303 ((-169 (-381)) (-317 (-169 |#1|)) (-921)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-15 -2236 ((-3 (-169 (-381)) "failed") (-952 (-169 |#1|)))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-952 (-169 |#1|)) (-921)))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-15 -3030 ((-3 (-381) "failed") (-952 |#1|))) (-15 -3030 ((-3 (-381) "failed") (-952 |#1|) (-921))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-952 |#1|))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-952 |#1|) (-921)))) |%noBranch|) (IF (|has| |#1| (-558)) (PROGN (-15 -3030 ((-3 (-381) "failed") (-409 (-952 |#1|)))) (-15 -3030 ((-3 (-381) "failed") (-409 (-952 |#1|)) (-921))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-409 (-952 |#1|)))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-409 (-952 |#1|)) (-921))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|))))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|))) (-921))) (IF (|has| |#1| (-850)) (PROGN (-15 -3030 ((-3 (-381) "failed") (-317 |#1|))) (-15 -3030 ((-3 (-381) "failed") (-317 |#1|) (-921))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-317 |#1|))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-317 |#1|) (-921))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-317 (-169 |#1|)))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-317 (-169 |#1|)) (-921)))) |%noBranch|)) |%noBranch|)) (-614 (-381))) (T -785))
-((-2236 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-317 (-169 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2236 (*1 *2 *3) (|partial| -12 (-5 *3 (-317 (-169 *4))) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2236 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2236 (*1 *2 *3) (|partial| -12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-3030 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-3030 (*1 *2 *3) (|partial| -12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2236 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-409 (-952 (-169 *5)))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2236 (*1 *2 *3) (|partial| -12 (-5 *3 (-409 (-952 (-169 *4)))) (-4 *4 (-558)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2236 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2236 (*1 *2 *3) (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-3030 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-3030 (*1 *2 *3) (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2236 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2236 (*1 *2 *3) (|partial| -12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-3030 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-3030 (*1 *2 *3) (|partial| -12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2236 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-952 (-169 *5))) (-5 *4 (-921)) (-4 *5 (-172)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2236 (*1 *2 *3) (|partial| -12 (-5 *3 (-952 (-169 *4))) (-4 *4 (-172)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2303 (*1 *2 *3 *4) (-12 (-5 *3 (-317 (-169 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2303 (*1 *2 *3) (-12 (-5 *3 (-317 (-169 *4))) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2303 (*1 *2 *3 *4) (-12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2303 (*1 *2 *3) (-12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-3920 (*1 *2 *3 *4) (-12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-3920 (*1 *2 *3) (-12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2303 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 (-169 *5)))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2303 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 (-169 *4)))) (-4 *4 (-558)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2303 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2303 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-3920 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-3920 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2303 (*1 *2 *3 *4) (-12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2303 (*1 *2 *3) (-12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-3920 (*1 *2 *3 *4) (-12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-3920 (*1 *2 *3) (-12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2303 (*1 *2 *3 *4) (-12 (-5 *3 (-952 (-169 *5))) (-5 *4 (-921)) (-4 *5 (-172)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2303 (*1 *2 *3) (-12 (-5 *3 (-952 (-169 *4))) (-4 *4 (-172)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2303 (*1 *2 *3 *4) (-12 (-5 *3 (-169 *5)) (-5 *4 (-921)) (-4 *5 (-172)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2303 (*1 *2 *3) (-12 (-5 *3 (-169 *4)) (-4 *4 (-172)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2303 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-5 *2 (-169 (-381))) (-5 *1 (-785 *3)) (-4 *3 (-614 (-381))))) (-2303 (*1 *2 *3) (-12 (-5 *2 (-169 (-381))) (-5 *1 (-785 *3)) (-4 *3 (-614 (-381))))) (-3920 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-5 *2 (-381)) (-5 *1 (-785 *3)) (-4 *3 (-614 *2)))) (-3920 (*1 *2 *3) (-12 (-5 *2 (-381)) (-5 *1 (-785 *3)) (-4 *3 (-614 *2)))))
-(-10 -7 (-15 -3920 ((-381) |#1|)) (-15 -3920 ((-381) |#1| (-921))) (-15 -2303 ((-169 (-381)) |#1|)) (-15 -2303 ((-169 (-381)) |#1| (-921))) (IF (|has| |#1| (-172)) (PROGN (-15 -2303 ((-169 (-381)) (-169 |#1|))) (-15 -2303 ((-169 (-381)) (-169 |#1|) (-921))) (-15 -2303 ((-169 (-381)) (-952 (-169 |#1|)))) (-15 -2303 ((-169 (-381)) (-952 (-169 |#1|)) (-921)))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-15 -3920 ((-381) (-952 |#1|))) (-15 -3920 ((-381) (-952 |#1|) (-921))) (-15 -2303 ((-169 (-381)) (-952 |#1|))) (-15 -2303 ((-169 (-381)) (-952 |#1|) (-921)))) |%noBranch|) (IF (|has| |#1| (-558)) (PROGN (-15 -3920 ((-381) (-409 (-952 |#1|)))) (-15 -3920 ((-381) (-409 (-952 |#1|)) (-921))) (-15 -2303 ((-169 (-381)) (-409 (-952 |#1|)))) (-15 -2303 ((-169 (-381)) (-409 (-952 |#1|)) (-921))) (-15 -2303 ((-169 (-381)) (-409 (-952 (-169 |#1|))))) (-15 -2303 ((-169 (-381)) (-409 (-952 (-169 |#1|))) (-921))) (IF (|has| |#1| (-850)) (PROGN (-15 -3920 ((-381) (-317 |#1|))) (-15 -3920 ((-381) (-317 |#1|) (-921))) (-15 -2303 ((-169 (-381)) (-317 |#1|))) (-15 -2303 ((-169 (-381)) (-317 |#1|) (-921))) (-15 -2303 ((-169 (-381)) (-317 (-169 |#1|)))) (-15 -2303 ((-169 (-381)) (-317 (-169 |#1|)) (-921)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-15 -2236 ((-3 (-169 (-381)) "failed") (-952 (-169 |#1|)))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-952 (-169 |#1|)) (-921)))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-15 -3030 ((-3 (-381) "failed") (-952 |#1|))) (-15 -3030 ((-3 (-381) "failed") (-952 |#1|) (-921))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-952 |#1|))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-952 |#1|) (-921)))) |%noBranch|) (IF (|has| |#1| (-558)) (PROGN (-15 -3030 ((-3 (-381) "failed") (-409 (-952 |#1|)))) (-15 -3030 ((-3 (-381) "failed") (-409 (-952 |#1|)) (-921))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-409 (-952 |#1|)))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-409 (-952 |#1|)) (-921))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|))))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|))) (-921))) (IF (|has| |#1| (-850)) (PROGN (-15 -3030 ((-3 (-381) "failed") (-317 |#1|))) (-15 -3030 ((-3 (-381) "failed") (-317 |#1|) (-921))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-317 |#1|))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-317 |#1|) (-921))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-317 (-169 |#1|)))) (-15 -2236 ((-3 (-169 (-381)) "failed") (-317 (-169 |#1|)) (-921)))) |%noBranch|)) |%noBranch|))
-((-4052 (((-921) (-1157)) 92)) (-2036 (((-3 (-381) "failed") (-1157)) 36)) (-4016 (((-381) (-1157)) 34)) (-3899 (((-921) (-1157)) 63)) (-2058 (((-1157) (-921)) 75)) (-2029 (((-1157) (-921)) 62)))
-(((-786) (-10 -7 (-15 -2029 ((-1157) (-921))) (-15 -3899 ((-921) (-1157))) (-15 -2058 ((-1157) (-921))) (-15 -4052 ((-921) (-1157))) (-15 -4016 ((-381) (-1157))) (-15 -2036 ((-3 (-381) "failed") (-1157))))) (T -786))
-((-2036 (*1 *2 *3) (|partial| -12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-786)))) (-4016 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-786)))) (-4052 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-921)) (-5 *1 (-786)))) (-2058 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1157)) (-5 *1 (-786)))) (-3899 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-921)) (-5 *1 (-786)))) (-2029 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1157)) (-5 *1 (-786)))))
-(-10 -7 (-15 -2029 ((-1157) (-921))) (-15 -3899 ((-921) (-1157))) (-15 -2058 ((-1157) (-921))) (-15 -4052 ((-921) (-1157))) (-15 -4016 ((-381) (-1157))) (-15 -2036 ((-3 (-381) "failed") (-1157))))
-((-2985 (((-112) $ $) 7)) (-1780 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 16) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 14)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 17) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-4259 (((-3 (-381) "failed") (-317 |#1|) (-921)) 62 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-381) "failed") (-317 |#1|)) 54 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-381) "failed") (-409 (-952 |#1|)) (-921)) 41 (|has| |#1| (-558))) (((-3 (-381) "failed") (-409 (-952 |#1|))) 40 (|has| |#1| (-558))) (((-3 (-381) "failed") (-952 |#1|) (-921)) 31 (|has| |#1| (-1049))) (((-3 (-381) "failed") (-952 |#1|)) 30 (|has| |#1| (-1049)))) (-4371 (((-381) (-317 |#1|) (-921)) 99 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-381) (-317 |#1|)) 94 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-381) (-409 (-952 |#1|)) (-921)) 91 (|has| |#1| (-558))) (((-381) (-409 (-952 |#1|))) 90 (|has| |#1| (-558))) (((-381) (-952 |#1|) (-921)) 86 (|has| |#1| (-1049))) (((-381) (-952 |#1|)) 85 (|has| |#1| (-1049))) (((-381) |#1| (-921)) 76) (((-381) |#1|) 22)) (-2167 (((-3 (-169 (-381)) "failed") (-317 (-169 |#1|)) (-921)) 71 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-169 (-381)) "failed") (-317 (-169 |#1|))) 70 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-169 (-381)) "failed") (-317 |#1|) (-921)) 63 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-169 (-381)) "failed") (-317 |#1|)) 61 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|))) (-921)) 46 (|has| |#1| (-558))) (((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|)))) 45 (|has| |#1| (-558))) (((-3 (-169 (-381)) "failed") (-409 (-952 |#1|)) (-921)) 39 (|has| |#1| (-558))) (((-3 (-169 (-381)) "failed") (-409 (-952 |#1|))) 38 (|has| |#1| (-558))) (((-3 (-169 (-381)) "failed") (-952 |#1|) (-921)) 28 (|has| |#1| (-1049))) (((-3 (-169 (-381)) "failed") (-952 |#1|)) 26 (|has| |#1| (-1049))) (((-3 (-169 (-381)) "failed") (-952 (-169 |#1|)) (-921)) 18 (|has| |#1| (-172))) (((-3 (-169 (-381)) "failed") (-952 (-169 |#1|))) 15 (|has| |#1| (-172)))) (-2383 (((-169 (-381)) (-317 (-169 |#1|)) (-921)) 102 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-169 (-381)) (-317 (-169 |#1|))) 101 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-169 (-381)) (-317 |#1|) (-921)) 100 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-169 (-381)) (-317 |#1|)) 98 (-12 (|has| |#1| (-558)) (|has| |#1| (-850)))) (((-169 (-381)) (-409 (-952 (-169 |#1|))) (-921)) 93 (|has| |#1| (-558))) (((-169 (-381)) (-409 (-952 (-169 |#1|)))) 92 (|has| |#1| (-558))) (((-169 (-381)) (-409 (-952 |#1|)) (-921)) 89 (|has| |#1| (-558))) (((-169 (-381)) (-409 (-952 |#1|))) 88 (|has| |#1| (-558))) (((-169 (-381)) (-952 |#1|) (-921)) 84 (|has| |#1| (-1049))) (((-169 (-381)) (-952 |#1|)) 83 (|has| |#1| (-1049))) (((-169 (-381)) (-952 (-169 |#1|)) (-921)) 78 (|has| |#1| (-172))) (((-169 (-381)) (-952 (-169 |#1|))) 77 (|has| |#1| (-172))) (((-169 (-381)) (-169 |#1|) (-921)) 80 (|has| |#1| (-172))) (((-169 (-381)) (-169 |#1|)) 79 (|has| |#1| (-172))) (((-169 (-381)) |#1| (-921)) 27) (((-169 (-381)) |#1|) 25)))
+(((-785 |#1|) (-10 -7 (-15 -4371 ((-381) |#1|)) (-15 -4371 ((-381) |#1| (-921))) (-15 -2383 ((-169 (-381)) |#1|)) (-15 -2383 ((-169 (-381)) |#1| (-921))) (IF (|has| |#1| (-172)) (PROGN (-15 -2383 ((-169 (-381)) (-169 |#1|))) (-15 -2383 ((-169 (-381)) (-169 |#1|) (-921))) (-15 -2383 ((-169 (-381)) (-952 (-169 |#1|)))) (-15 -2383 ((-169 (-381)) (-952 (-169 |#1|)) (-921)))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-15 -4371 ((-381) (-952 |#1|))) (-15 -4371 ((-381) (-952 |#1|) (-921))) (-15 -2383 ((-169 (-381)) (-952 |#1|))) (-15 -2383 ((-169 (-381)) (-952 |#1|) (-921)))) |%noBranch|) (IF (|has| |#1| (-558)) (PROGN (-15 -4371 ((-381) (-409 (-952 |#1|)))) (-15 -4371 ((-381) (-409 (-952 |#1|)) (-921))) (-15 -2383 ((-169 (-381)) (-409 (-952 |#1|)))) (-15 -2383 ((-169 (-381)) (-409 (-952 |#1|)) (-921))) (-15 -2383 ((-169 (-381)) (-409 (-952 (-169 |#1|))))) (-15 -2383 ((-169 (-381)) (-409 (-952 (-169 |#1|))) (-921))) (IF (|has| |#1| (-850)) (PROGN (-15 -4371 ((-381) (-317 |#1|))) (-15 -4371 ((-381) (-317 |#1|) (-921))) (-15 -2383 ((-169 (-381)) (-317 |#1|))) (-15 -2383 ((-169 (-381)) (-317 |#1|) (-921))) (-15 -2383 ((-169 (-381)) (-317 (-169 |#1|)))) (-15 -2383 ((-169 (-381)) (-317 (-169 |#1|)) (-921)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-15 -2167 ((-3 (-169 (-381)) "failed") (-952 (-169 |#1|)))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-952 (-169 |#1|)) (-921)))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-15 -4259 ((-3 (-381) "failed") (-952 |#1|))) (-15 -4259 ((-3 (-381) "failed") (-952 |#1|) (-921))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-952 |#1|))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-952 |#1|) (-921)))) |%noBranch|) (IF (|has| |#1| (-558)) (PROGN (-15 -4259 ((-3 (-381) "failed") (-409 (-952 |#1|)))) (-15 -4259 ((-3 (-381) "failed") (-409 (-952 |#1|)) (-921))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-409 (-952 |#1|)))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-409 (-952 |#1|)) (-921))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|))))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|))) (-921))) (IF (|has| |#1| (-850)) (PROGN (-15 -4259 ((-3 (-381) "failed") (-317 |#1|))) (-15 -4259 ((-3 (-381) "failed") (-317 |#1|) (-921))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-317 |#1|))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-317 |#1|) (-921))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-317 (-169 |#1|)))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-317 (-169 |#1|)) (-921)))) |%noBranch|)) |%noBranch|)) (-614 (-381))) (T -785))
+((-2167 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-317 (-169 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2167 (*1 *2 *3) (|partial| -12 (-5 *3 (-317 (-169 *4))) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2167 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2167 (*1 *2 *3) (|partial| -12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-4259 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-4259 (*1 *2 *3) (|partial| -12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2167 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-409 (-952 (-169 *5)))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2167 (*1 *2 *3) (|partial| -12 (-5 *3 (-409 (-952 (-169 *4)))) (-4 *4 (-558)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2167 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2167 (*1 *2 *3) (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-4259 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-4259 (*1 *2 *3) (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2167 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2167 (*1 *2 *3) (|partial| -12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-4259 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-4259 (*1 *2 *3) (|partial| -12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2167 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-952 (-169 *5))) (-5 *4 (-921)) (-4 *5 (-172)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2167 (*1 *2 *3) (|partial| -12 (-5 *3 (-952 (-169 *4))) (-4 *4 (-172)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2383 (*1 *2 *3 *4) (-12 (-5 *3 (-317 (-169 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2383 (*1 *2 *3) (-12 (-5 *3 (-317 (-169 *4))) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2383 (*1 *2 *3 *4) (-12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2383 (*1 *2 *3) (-12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-4371 (*1 *2 *3 *4) (-12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-4371 (*1 *2 *3) (-12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2383 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 (-169 *5)))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2383 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 (-169 *4)))) (-4 *4 (-558)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2383 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2383 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-4371 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-4371 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2383 (*1 *2 *3 *4) (-12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2383 (*1 *2 *3) (-12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-4371 (*1 *2 *3 *4) (-12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049)) (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))) (-4371 (*1 *2 *3) (-12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4)))) (-2383 (*1 *2 *3 *4) (-12 (-5 *3 (-952 (-169 *5))) (-5 *4 (-921)) (-4 *5 (-172)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2383 (*1 *2 *3) (-12 (-5 *3 (-952 (-169 *4))) (-4 *4 (-172)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2383 (*1 *2 *3 *4) (-12 (-5 *3 (-169 *5)) (-5 *4 (-921)) (-4 *5 (-172)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *5)))) (-2383 (*1 *2 *3) (-12 (-5 *3 (-169 *4)) (-4 *4 (-172)) (-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4)))) (-2383 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-5 *2 (-169 (-381))) (-5 *1 (-785 *3)) (-4 *3 (-614 (-381))))) (-2383 (*1 *2 *3) (-12 (-5 *2 (-169 (-381))) (-5 *1 (-785 *3)) (-4 *3 (-614 (-381))))) (-4371 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-5 *2 (-381)) (-5 *1 (-785 *3)) (-4 *3 (-614 *2)))) (-4371 (*1 *2 *3) (-12 (-5 *2 (-381)) (-5 *1 (-785 *3)) (-4 *3 (-614 *2)))))
+(-10 -7 (-15 -4371 ((-381) |#1|)) (-15 -4371 ((-381) |#1| (-921))) (-15 -2383 ((-169 (-381)) |#1|)) (-15 -2383 ((-169 (-381)) |#1| (-921))) (IF (|has| |#1| (-172)) (PROGN (-15 -2383 ((-169 (-381)) (-169 |#1|))) (-15 -2383 ((-169 (-381)) (-169 |#1|) (-921))) (-15 -2383 ((-169 (-381)) (-952 (-169 |#1|)))) (-15 -2383 ((-169 (-381)) (-952 (-169 |#1|)) (-921)))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-15 -4371 ((-381) (-952 |#1|))) (-15 -4371 ((-381) (-952 |#1|) (-921))) (-15 -2383 ((-169 (-381)) (-952 |#1|))) (-15 -2383 ((-169 (-381)) (-952 |#1|) (-921)))) |%noBranch|) (IF (|has| |#1| (-558)) (PROGN (-15 -4371 ((-381) (-409 (-952 |#1|)))) (-15 -4371 ((-381) (-409 (-952 |#1|)) (-921))) (-15 -2383 ((-169 (-381)) (-409 (-952 |#1|)))) (-15 -2383 ((-169 (-381)) (-409 (-952 |#1|)) (-921))) (-15 -2383 ((-169 (-381)) (-409 (-952 (-169 |#1|))))) (-15 -2383 ((-169 (-381)) (-409 (-952 (-169 |#1|))) (-921))) (IF (|has| |#1| (-850)) (PROGN (-15 -4371 ((-381) (-317 |#1|))) (-15 -4371 ((-381) (-317 |#1|) (-921))) (-15 -2383 ((-169 (-381)) (-317 |#1|))) (-15 -2383 ((-169 (-381)) (-317 |#1|) (-921))) (-15 -2383 ((-169 (-381)) (-317 (-169 |#1|)))) (-15 -2383 ((-169 (-381)) (-317 (-169 |#1|)) (-921)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-15 -2167 ((-3 (-169 (-381)) "failed") (-952 (-169 |#1|)))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-952 (-169 |#1|)) (-921)))) |%noBranch|) (IF (|has| |#1| (-1049)) (PROGN (-15 -4259 ((-3 (-381) "failed") (-952 |#1|))) (-15 -4259 ((-3 (-381) "failed") (-952 |#1|) (-921))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-952 |#1|))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-952 |#1|) (-921)))) |%noBranch|) (IF (|has| |#1| (-558)) (PROGN (-15 -4259 ((-3 (-381) "failed") (-409 (-952 |#1|)))) (-15 -4259 ((-3 (-381) "failed") (-409 (-952 |#1|)) (-921))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-409 (-952 |#1|)))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-409 (-952 |#1|)) (-921))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|))))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-409 (-952 (-169 |#1|))) (-921))) (IF (|has| |#1| (-850)) (PROGN (-15 -4259 ((-3 (-381) "failed") (-317 |#1|))) (-15 -4259 ((-3 (-381) "failed") (-317 |#1|) (-921))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-317 |#1|))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-317 |#1|) (-921))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-317 (-169 |#1|)))) (-15 -2167 ((-3 (-169 (-381)) "failed") (-317 (-169 |#1|)) (-921)))) |%noBranch|)) |%noBranch|))
+((-1405 (((-921) (-1157)) 92)) (-3890 (((-3 (-381) "failed") (-1157)) 36)) (-2339 (((-381) (-1157)) 34)) (-2522 (((-921) (-1157)) 63)) (-4107 (((-1157) (-921)) 75)) (-3822 (((-1157) (-921)) 62)))
+(((-786) (-10 -7 (-15 -3822 ((-1157) (-921))) (-15 -2522 ((-921) (-1157))) (-15 -4107 ((-1157) (-921))) (-15 -1405 ((-921) (-1157))) (-15 -2339 ((-381) (-1157))) (-15 -3890 ((-3 (-381) "failed") (-1157))))) (T -786))
+((-3890 (*1 *2 *3) (|partial| -12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-786)))) (-2339 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-786)))) (-1405 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-921)) (-5 *1 (-786)))) (-4107 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1157)) (-5 *1 (-786)))) (-2522 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-921)) (-5 *1 (-786)))) (-3822 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1157)) (-5 *1 (-786)))))
+(-10 -7 (-15 -3822 ((-1157) (-921))) (-15 -2522 ((-921) (-1157))) (-15 -4107 ((-1157) (-921))) (-15 -1405 ((-921) (-1157))) (-15 -2339 ((-381) (-1157))) (-15 -3890 ((-3 (-381) "failed") (-1157))))
+((-3009 (((-112) $ $) 7)) (-3145 (((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 16) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)) 14)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 17) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-787) (-140)) (T -787))
-((-2092 (*1 *2 *3 *4) (-12 (-4 *1 (-787)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035)))))) (-1780 (*1 *2 *3 *2) (-12 (-4 *1 (-787)) (-5 *2 (-1035)) (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-2092 (*1 *2 *3 *4) (-12 (-4 *1 (-787)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035)))))) (-1780 (*1 *2 *3 *2) (-12 (-4 *1 (-787)) (-5 *2 (-1035)) (-5 *3 (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))))
-(-13 (-1099) (-10 -7 (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1780 ((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1780 ((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)))))
+((-3245 (*1 *2 *3 *4) (-12 (-4 *1 (-787)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035)))))) (-3145 (*1 *2 *3 *2) (-12 (-4 *1 (-787)) (-5 *2 (-1035)) (-5 *3 (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))) (-3245 (*1 *2 *3 *4) (-12 (-4 *1 (-787)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035)))))) (-3145 (*1 *2 *3 *2) (-12 (-4 *1 (-787)) (-5 *2 (-1035)) (-5 *3 (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))))
+(-13 (-1099) (-10 -7 (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3145 ((-1035) (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225))) (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)) (|:| |extra| (-1035))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3145 ((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) (-1035)))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2388 (((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3836 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381))) 55) (((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3836 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381))) 52)) (-2240 (((-1269) (-1264 (-381)) (-566) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381))) 61)) (-4196 (((-1269) (-1264 (-381)) (-566) (-381) (-381) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381))) 50)) (-1555 (((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381))) 63) (((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381))) 62)))
-(((-788) (-10 -7 (-15 -1555 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -1555 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)))) (-15 -4196 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -2388 ((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3836 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -2388 ((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3836 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)))) (-15 -2240 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))))) (T -788))
-((-2240 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))) (-2388 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-566)) (-5 *6 (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3836 (-381)))) (-5 *7 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))) (-2388 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-566)) (-5 *6 (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3836 (-381)))) (-5 *7 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))) (-4196 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))) (-1555 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))) (-1555 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))))
-(-10 -7 (-15 -1555 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -1555 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)))) (-15 -4196 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -2388 ((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3836 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -2388 ((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3836 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)))) (-15 -2240 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))))
-((-1926 (((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 66)) (-2661 (((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 42)) (-2617 (((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 65)) (-3766 (((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 40)) (-1588 (((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 64)) (-4054 (((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 26)) (-1667 (((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566)) 43)) (-4255 (((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566)) 41)) (-3570 (((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566)) 39)))
-(((-789) (-10 -7 (-15 -3570 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -4255 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -1667 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -4054 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -3766 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -2661 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -1588 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -2617 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -1926 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))))) (T -789))
-((-1926 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-2617 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-1588 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-2661 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-3766 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-4054 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-1667 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-4255 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-3570 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))))
-(-10 -7 (-15 -3570 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -4255 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -1667 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -4054 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -3766 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -2661 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -1588 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -2617 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -1926 ((-2 (|:| -2212 (-381)) (|:| -1457 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))))
-((-4094 (((-1209 |#1|) |#1| (-225) (-566)) 69)))
-(((-790 |#1|) (-10 -7 (-15 -4094 ((-1209 |#1|) |#1| (-225) (-566)))) (-974)) (T -790))
-((-4094 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-225)) (-5 *5 (-566)) (-5 *2 (-1209 *3)) (-5 *1 (-790 *3)) (-4 *3 (-974)))))
-(-10 -7 (-15 -4094 ((-1209 |#1|) |#1| (-225) (-566))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 25)) (-4126 (((-3 $ "failed") $ $) 27)) (-2342 (($) 24 T CONST)) (-1439 (($ $ $) 14)) (-3059 (($ $ $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 23 T CONST)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)) (-3047 (($ $ $) 31) (($ $) 30)) (-3034 (($ $ $) 21)) (* (($ (-921) $) 22) (($ (-771) $) 26) (($ (-566) $) 29)))
+((-3127 (((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3873 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381))) 55) (((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3873 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381))) 52)) (-2211 (((-1269) (-1264 (-381)) (-566) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381))) 61)) (-3483 (((-1269) (-1264 (-381)) (-566) (-381) (-381) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381))) 50)) (-2681 (((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381))) 63) (((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381))) 62)))
+(((-788) (-10 -7 (-15 -2681 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -2681 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)))) (-15 -3483 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -3127 ((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3873 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -3127 ((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3873 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)))) (-15 -2211 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))))) (T -788))
+((-2211 (*1 *2 *3 *4 *5 *5 *4 *6) (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))) (-3127 (*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3) (-12 (-5 *4 (-566)) (-5 *6 (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3873 (-381)))) (-5 *7 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))) (-3127 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-566)) (-5 *6 (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3873 (-381)))) (-5 *7 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))) (-3483 (*1 *2 *3 *4 *5 *5 *5 *5 *4 *6) (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))) (-2681 (*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3) (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))) (-2681 (*1 *2 *3 *4 *5 *5 *6) (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381))) (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269)) (-5 *1 (-788)))))
+(-10 -7 (-15 -2681 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -2681 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)))) (-15 -3483 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -3127 ((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3873 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))) (-15 -3127 ((-1269) (-1264 (-381)) (-566) (-381) (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3873 (-381))) (-381) (-1264 (-381)) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)) (-1264 (-381)))) (-15 -2211 ((-1269) (-1264 (-381)) (-566) (-381) (-381) (-566) (-1 (-1269) (-1264 (-381)) (-1264 (-381)) (-381)))))
+((-2171 (((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 66)) (-3883 (((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 42)) (-1589 (((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 65)) (-3748 (((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 40)) (-1830 (((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 64)) (-1434 (((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566)) 26)) (-1346 (((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566)) 43)) (-2817 (((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566)) 41)) (-3596 (((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566)) 39)))
+(((-789) (-10 -7 (-15 -3596 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -2817 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -1346 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -1434 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -3748 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -3883 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -1830 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -1589 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -2171 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))))) (T -789))
+((-2171 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-1589 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-1830 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-3883 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-3748 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-1434 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-1346 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-2817 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))) (-3596 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381)) (-5 *2 (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566)) (|:| |success| (-112)))) (-5 *1 (-789)) (-5 *5 (-566)))))
+(-10 -7 (-15 -3596 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -2817 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -1346 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566) (-566))) (-15 -1434 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -3748 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -3883 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -1830 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -1589 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))) (-15 -2171 ((-2 (|:| -2252 (-381)) (|:| -1499 (-381)) (|:| |totalpts| (-566)) (|:| |success| (-112))) (-1 (-381) (-381)) (-381) (-381) (-381) (-381) (-566) (-566))))
+((-1823 (((-1209 |#1|) |#1| (-225) (-566)) 69)))
+(((-790 |#1|) (-10 -7 (-15 -1823 ((-1209 |#1|) |#1| (-225) (-566)))) (-974)) (T -790))
+((-1823 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-225)) (-5 *5 (-566)) (-5 *2 (-1209 *3)) (-5 *1 (-790 *3)) (-4 *3 (-974)))))
+(-10 -7 (-15 -1823 ((-1209 |#1|) |#1| (-225) (-566))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 25)) (-4014 (((-3 $ "failed") $ $) 27)) (-3877 (($) 24 T CONST)) (-1945 (($ $ $) 14)) (-2709 (($ $ $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 23 T CONST)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)) (-3051 (($ $ $) 31) (($ $) 30)) (-3040 (($ $ $) 21)) (* (($ (-921) $) 22) (($ (-771) $) 26) (($ (-566) $) 29)))
(((-791) (-140)) (T -791))
NIL
(-13 (-795) (-21))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-792) . T) ((-794) . T) ((-795) . T) ((-850) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 25)) (-2342 (($) 24 T CONST)) (-1439 (($ $ $) 14)) (-3059 (($ $ $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 23 T CONST)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)) (-3034 (($ $ $) 21)) (* (($ (-921) $) 22) (($ (-771) $) 26)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 25)) (-3877 (($) 24 T CONST)) (-1945 (($ $ $) 14)) (-2709 (($ $ $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 23 T CONST)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)) (-3040 (($ $ $) 21)) (* (($ (-921) $) 22) (($ (-771) $) 26)))
(((-792) (-140)) (T -792))
NIL
(-13 (-794) (-23))
(((-23) . T) ((-25) . T) ((-102) . T) ((-613 (-862)) . T) ((-794) . T) ((-850) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 25)) (-3711 (($ $ $) 28)) (-4126 (((-3 $ "failed") $ $) 27)) (-2342 (($) 24 T CONST)) (-1439 (($ $ $) 14)) (-3059 (($ $ $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 23 T CONST)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)) (-3034 (($ $ $) 21)) (* (($ (-921) $) 22) (($ (-771) $) 26)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 25)) (-4385 (($ $ $) 28)) (-4014 (((-3 $ "failed") $ $) 27)) (-3877 (($) 24 T CONST)) (-1945 (($ $ $) 14)) (-2709 (($ $ $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 23 T CONST)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)) (-3040 (($ $ $) 21)) (* (($ (-921) $) 22) (($ (-771) $) 26)))
(((-793) (-140)) (T -793))
-((-3711 (*1 *1 *1 *1) (-4 *1 (-793))))
-(-13 (-795) (-10 -8 (-15 -3711 ($ $ $))))
+((-4385 (*1 *1 *1 *1) (-4 *1 (-793))))
+(-13 (-795) (-10 -8 (-15 -4385 ($ $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-792) . T) ((-794) . T) ((-795) . T) ((-850) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 7)) (-1439 (($ $ $) 14)) (-3059 (($ $ $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)) (-3034 (($ $ $) 21)) (* (($ (-921) $) 22)))
+((-3009 (((-112) $ $) 7)) (-1945 (($ $ $) 14)) (-2709 (($ $ $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)) (-3040 (($ $ $) 21)) (* (($ (-921) $) 22)))
(((-794) (-140)) (T -794))
NIL
(-13 (-850) (-25))
(((-25) . T) ((-102) . T) ((-613 (-862)) . T) ((-850) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 25)) (-4126 (((-3 $ "failed") $ $) 27)) (-2342 (($) 24 T CONST)) (-1439 (($ $ $) 14)) (-3059 (($ $ $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 23 T CONST)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)) (-3034 (($ $ $) 21)) (* (($ (-921) $) 22) (($ (-771) $) 26)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 25)) (-4014 (((-3 $ "failed") $ $) 27)) (-3877 (($) 24 T CONST)) (-1945 (($ $ $) 14)) (-2709 (($ $ $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 23 T CONST)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)) (-3040 (($ $ $) 21)) (* (($ (-921) $) 22) (($ (-771) $) 26)))
(((-795) (-140)) (T -795))
NIL
(-13 (-792) (-131))
(((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-792) . T) ((-794) . T) ((-850) . T) ((-1099) . T))
-((-3958 (((-112) $) 42)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-1756 (((-566) $) NIL) (((-409 (-566)) $) NIL) ((|#2| $) 43)) (-3800 (((-3 (-409 (-566)) "failed") $) 78)) (-3717 (((-112) $) 72)) (-3370 (((-409 (-566)) $) 76)) (-1559 ((|#2| $) 26)) (-3077 (($ (-1 |#2| |#2|) $) 23)) (-2626 (($ $) 58)) (-3134 (((-538) $) 67)) (-2032 (($ $) 21)) (-2512 (((-862) $) 53) (($ (-566)) 40) (($ |#2|) 38) (($ (-409 (-566))) NIL)) (-3795 (((-771)) 10)) (-1346 ((|#2| $) 71)) (-2940 (((-112) $ $) 30)) (-2962 (((-112) $ $) 69)) (-3047 (($ $) 32) (($ $ $) NIL)) (-3034 (($ $ $) 31)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 36) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 33)))
-(((-796 |#1| |#2|) (-10 -8 (-15 -2962 ((-112) |#1| |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -2626 (|#1| |#1|)) (-15 -3800 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3370 ((-409 (-566)) |#1|)) (-15 -3717 ((-112) |#1|)) (-15 -1346 (|#2| |#1|)) (-15 -1559 (|#2| |#1|)) (-15 -2032 (|#1| |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -2512 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-566))) (-15 * (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 -3958 ((-112) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3034 (|#1| |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|))) (-797 |#2|) (-172)) (T -796))
-((-3795 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-796 *3 *4)) (-4 *3 (-797 *4)))))
-(-10 -8 (-15 -2962 ((-112) |#1| |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -2626 (|#1| |#1|)) (-15 -3800 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3370 ((-409 (-566)) |#1|)) (-15 -3717 ((-112) |#1|)) (-15 -1346 (|#2| |#1|)) (-15 -1559 (|#2| |#1|)) (-15 -2032 (|#1| |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -2512 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-566))) (-15 * (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 -3958 ((-112) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3034 (|#1| |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-4025 (((-771)) 58 (|has| |#1| (-370)))) (-2342 (($) 18 T CONST)) (-2977 (((-3 (-566) "failed") $) 100 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 97 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 94)) (-1756 (((-566) $) 99 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 96 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 95)) (-1579 (((-3 $ "failed") $) 37)) (-2417 ((|#1| $) 84)) (-3800 (((-3 (-409 (-566)) "failed") $) 71 (|has| |#1| (-547)))) (-3717 (((-112) $) 73 (|has| |#1| (-547)))) (-3370 (((-409 (-566)) $) 72 (|has| |#1| (-547)))) (-3335 (($) 61 (|has| |#1| (-370)))) (-2741 (((-112) $) 35)) (-3571 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 75)) (-1559 ((|#1| $) 76)) (-1439 (($ $ $) 67 (|has| |#1| (-850)))) (-3059 (($ $ $) 66 (|has| |#1| (-850)))) (-3077 (($ (-1 |#1| |#1|) $) 86)) (-3712 (((-921) $) 60 (|has| |#1| (-370)))) (-2878 (((-1157) $) 10)) (-2626 (($ $) 70 (|has| |#1| (-365)))) (-2168 (($ (-921)) 59 (|has| |#1| (-370)))) (-4338 ((|#1| $) 81)) (-2678 ((|#1| $) 82)) (-1790 ((|#1| $) 83)) (-2044 ((|#1| $) 77)) (-4042 ((|#1| $) 78)) (-2200 ((|#1| $) 79)) (-2037 ((|#1| $) 80)) (-4033 (((-1119) $) 11)) (-2070 (($ $ (-644 |#1|) (-644 |#1|)) 92 (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) 91 (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) 90 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) 89 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 88 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) 87 (|has| |#1| (-516 (-1175) |#1|)))) (-4386 (($ $ |#1|) 93 (|has| |#1| (-287 |#1| |#1|)))) (-3134 (((-538) $) 68 (|has| |#1| (-614 (-538))))) (-2032 (($ $) 85)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44) (($ (-409 (-566))) 98 (|has| |#1| (-1038 (-409 (-566)))))) (-3842 (((-3 $ "failed") $) 69 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1346 ((|#1| $) 74 (|has| |#1| (-1059)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2998 (((-112) $ $) 64 (|has| |#1| (-850)))) (-2974 (((-112) $ $) 63 (|has| |#1| (-850)))) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 65 (|has| |#1| (-850)))) (-2962 (((-112) $ $) 62 (|has| |#1| (-850)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+((-3015 (((-112) $) 42)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-1867 (((-566) $) NIL) (((-409 (-566)) $) NIL) ((|#2| $) 43)) (-4045 (((-3 (-409 (-566)) "failed") $) 78)) (-1356 (((-112) $) 72)) (-2269 (((-409 (-566)) $) 76)) (-2719 ((|#2| $) 26)) (-3152 (($ (-1 |#2| |#2|) $) 23)) (-3584 (($ $) 58)) (-3204 (((-538) $) 67)) (-3850 (($ $) 21)) (-3780 (((-862) $) 53) (($ (-566)) 40) (($ |#2|) 38) (($ (-409 (-566))) NIL)) (-3996 (((-771)) 10)) (-3333 ((|#2| $) 71)) (-2950 (((-112) $ $) 30)) (-2972 (((-112) $ $) 69)) (-3051 (($ $) 32) (($ $ $) NIL)) (-3040 (($ $ $) 31)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 36) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 33)))
+(((-796 |#1| |#2|) (-10 -8 (-15 -2972 ((-112) |#1| |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3584 (|#1| |#1|)) (-15 -4045 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2269 ((-409 (-566)) |#1|)) (-15 -1356 ((-112) |#1|)) (-15 -3333 (|#2| |#1|)) (-15 -2719 (|#2| |#1|)) (-15 -3850 (|#1| |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3780 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-566))) (-15 * (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 -3015 ((-112) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3040 (|#1| |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|))) (-797 |#2|) (-172)) (T -796))
+((-3996 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-796 *3 *4)) (-4 *3 (-797 *4)))))
+(-10 -8 (-15 -2972 ((-112) |#1| |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3584 (|#1| |#1|)) (-15 -4045 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2269 ((-409 (-566)) |#1|)) (-15 -1356 ((-112) |#1|)) (-15 -3333 (|#2| |#1|)) (-15 -2719 (|#2| |#1|)) (-15 -3850 (|#1| |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3780 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-566))) (-15 * (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 -3015 ((-112) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3040 (|#1| |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-4070 (((-771)) 58 (|has| |#1| (-370)))) (-3877 (($) 18 T CONST)) (-3066 (((-3 (-566) "failed") $) 100 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 97 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 94)) (-1867 (((-566) $) 99 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 96 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 95)) (-2928 (((-3 $ "failed") $) 37)) (-2495 ((|#1| $) 84)) (-4045 (((-3 (-409 (-566)) "failed") $) 71 (|has| |#1| (-547)))) (-1356 (((-112) $) 73 (|has| |#1| (-547)))) (-2269 (((-409 (-566)) $) 72 (|has| |#1| (-547)))) (-1618 (($) 61 (|has| |#1| (-370)))) (-3466 (((-112) $) 35)) (-3606 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 75)) (-2719 ((|#1| $) 76)) (-1945 (($ $ $) 67 (|has| |#1| (-850)))) (-2709 (($ $ $) 66 (|has| |#1| (-850)))) (-3152 (($ (-1 |#1| |#1|) $) 86)) (-1299 (((-921) $) 60 (|has| |#1| (-370)))) (-2402 (((-1157) $) 10)) (-3584 (($ $) 70 (|has| |#1| (-365)))) (-2208 (($ (-921)) 59 (|has| |#1| (-370)))) (-2430 ((|#1| $) 81)) (-4055 ((|#1| $) 82)) (-3237 ((|#1| $) 83)) (-3970 ((|#1| $) 77)) (-1329 ((|#1| $) 78)) (-1850 ((|#1| $) 79)) (-3901 ((|#1| $) 80)) (-4056 (((-1119) $) 11)) (-2095 (($ $ (-644 |#1|) (-644 |#1|)) 92 (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) 91 (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) 90 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) 89 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 88 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) 87 (|has| |#1| (-516 (-1175) |#1|)))) (-4393 (($ $ |#1|) 93 (|has| |#1| (-287 |#1| |#1|)))) (-3204 (((-538) $) 68 (|has| |#1| (-614 (-538))))) (-3850 (($ $) 85)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44) (($ (-409 (-566))) 98 (|has| |#1| (-1038 (-409 (-566)))))) (-3226 (((-3 $ "failed") $) 69 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-3333 ((|#1| $) 74 (|has| |#1| (-1059)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-3010 (((-112) $ $) 64 (|has| |#1| (-850)))) (-2984 (((-112) $ $) 63 (|has| |#1| (-850)))) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 65 (|has| |#1| (-850)))) (-2972 (((-112) $ $) 62 (|has| |#1| (-850)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
(((-797 |#1|) (-140) (-172)) (T -797))
-((-2032 (*1 *1 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-2417 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-1790 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-2678 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-4338 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-2037 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-2200 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-4042 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-2044 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-1559 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-3571 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-1346 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)) (-4 *2 (-1059)))) (-3717 (*1 *2 *1) (-12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112)))) (-3370 (*1 *2 *1) (-12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))) (-3800 (*1 *2 *1) (|partial| -12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))) (-2626 (*1 *1 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)) (-4 *2 (-365)))))
-(-13 (-38 |t#1|) (-413 |t#1|) (-340 |t#1|) (-10 -8 (-15 -2032 ($ $)) (-15 -2417 (|t#1| $)) (-15 -1790 (|t#1| $)) (-15 -2678 (|t#1| $)) (-15 -4338 (|t#1| $)) (-15 -2037 (|t#1| $)) (-15 -2200 (|t#1| $)) (-15 -4042 (|t#1| $)) (-15 -2044 (|t#1| $)) (-15 -1559 (|t#1| $)) (-15 -3571 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-370)) (-6 (-370)) |%noBranch|) (IF (|has| |t#1| (-850)) (-6 (-850)) |%noBranch|) (IF (|has| |t#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1059)) (-15 -1346 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-547)) (PROGN (-15 -3717 ((-112) $)) (-15 -3370 ((-409 (-566)) $)) (-15 -3800 ((-3 (-409 (-566)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-365)) (-15 -2626 ($ $)) |%noBranch|)))
+((-3850 (*1 *1 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-2495 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-3237 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-4055 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-2430 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-3901 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-1850 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-1329 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-3970 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-2719 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-3606 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))) (-3333 (*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)) (-4 *2 (-1059)))) (-1356 (*1 *2 *1) (-12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112)))) (-2269 (*1 *2 *1) (-12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))) (-4045 (*1 *2 *1) (|partial| -12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))) (-3584 (*1 *1 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)) (-4 *2 (-365)))))
+(-13 (-38 |t#1|) (-413 |t#1|) (-340 |t#1|) (-10 -8 (-15 -3850 ($ $)) (-15 -2495 (|t#1| $)) (-15 -3237 (|t#1| $)) (-15 -4055 (|t#1| $)) (-15 -2430 (|t#1| $)) (-15 -3901 (|t#1| $)) (-15 -1850 (|t#1| $)) (-15 -1329 (|t#1| $)) (-15 -3970 (|t#1| $)) (-15 -2719 (|t#1| $)) (-15 -3606 ($ |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1| |t#1|)) (IF (|has| |t#1| (-370)) (-6 (-370)) |%noBranch|) (IF (|has| |t#1| (-850)) (-6 (-850)) |%noBranch|) (IF (|has| |t#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1059)) (-15 -3333 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-547)) (PROGN (-15 -1356 ((-112) $)) (-15 -2269 ((-409 (-566)) $)) (-15 -4045 ((-3 (-409 (-566)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-365)) (-15 -3584 ($ $)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0=(-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-287 |#1| $) |has| |#1| (-287 |#1| |#1|)) ((-310 |#1|) |has| |#1| (-310 |#1|)) ((-370) |has| |#1| (-370)) ((-340 |#1|) . T) ((-413 |#1|) . T) ((-516 (-1175) |#1|) |has| |#1| (-516 (-1175) |#1|)) ((-516 |#1| |#1|) |has| |#1| (-310 |#1|)) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 |#1|) . T) ((-717 |#1|) . T) ((-726) . T) ((-850) |has| |#1| (-850)) ((-1038 #0#) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-3077 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
-(((-798 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3077 (|#3| (-1 |#4| |#2|) |#1|))) (-797 |#2|) (-172) (-797 |#4|) (-172)) (T -798))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-797 *6)) (-5 *1 (-798 *4 *5 *2 *6)) (-4 *4 (-797 *5)))))
-(-10 -7 (-15 -3077 (|#3| (-1 |#4| |#2|) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-4025 (((-771)) NIL (|has| |#1| (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL) (((-3 (-999 |#1|) "failed") $) 35) (((-3 (-566) "failed") $) NIL (-2805 (|has| (-999 |#1|) (-1038 (-566))) (|has| |#1| (-1038 (-566))))) (((-3 (-409 (-566)) "failed") $) NIL (-2805 (|has| (-999 |#1|) (-1038 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-1756 ((|#1| $) NIL) (((-999 |#1|) $) 33) (((-566) $) NIL (-2805 (|has| (-999 |#1|) (-1038 (-566))) (|has| |#1| (-1038 (-566))))) (((-409 (-566)) $) NIL (-2805 (|has| (-999 |#1|) (-1038 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-1579 (((-3 $ "failed") $) NIL)) (-2417 ((|#1| $) 16)) (-3800 (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-547)))) (-3717 (((-112) $) NIL (|has| |#1| (-547)))) (-3370 (((-409 (-566)) $) NIL (|has| |#1| (-547)))) (-3335 (($) NIL (|has| |#1| (-370)))) (-2741 (((-112) $) NIL)) (-3571 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-999 |#1|) (-999 |#1|)) 29)) (-1559 ((|#1| $) NIL)) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3712 (((-921) $) NIL (|has| |#1| (-370)))) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| |#1| (-365)))) (-2168 (($ (-921)) NIL (|has| |#1| (-370)))) (-4338 ((|#1| $) 22)) (-2678 ((|#1| $) 20)) (-1790 ((|#1| $) 18)) (-2044 ((|#1| $) 26)) (-4042 ((|#1| $) 25)) (-2200 ((|#1| $) 24)) (-2037 ((|#1| $) 23)) (-4033 (((-1119) $) NIL)) (-2070 (($ $ (-644 |#1|) (-644 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-516 (-1175) |#1|)))) (-4386 (($ $ |#1|) NIL (|has| |#1| (-287 |#1| |#1|)))) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2032 (($ $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-999 |#1|)) 30) (($ (-409 (-566))) NIL (-2805 (|has| (-999 |#1|) (-1038 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1346 ((|#1| $) NIL (|has| |#1| (-1059)))) (-2485 (($) 8 T CONST)) (-2495 (($) 12 T CONST)) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-799 |#1|) (-13 (-797 |#1|) (-413 (-999 |#1|)) (-10 -8 (-15 -3571 ($ (-999 |#1|) (-999 |#1|))))) (-172)) (T -799))
-((-3571 (*1 *1 *2 *2) (-12 (-5 *2 (-999 *3)) (-4 *3 (-172)) (-5 *1 (-799 *3)))))
-(-13 (-797 |#1|) (-413 (-999 |#1|)) (-10 -8 (-15 -3571 ($ (-999 |#1|) (-999 |#1|)))))
-((-2985 (((-112) $ $) 7)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-1802 (((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 14)) (-2940 (((-112) $ $) 6)))
+((-3152 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
+(((-798 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3152 (|#3| (-1 |#4| |#2|) |#1|))) (-797 |#2|) (-172) (-797 |#4|) (-172)) (T -798))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-797 *6)) (-5 *1 (-798 *4 *5 *2 *6)) (-4 *4 (-797 *5)))))
+(-10 -7 (-15 -3152 (|#3| (-1 |#4| |#2|) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4070 (((-771)) NIL (|has| |#1| (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL) (((-3 (-999 |#1|) "failed") $) 35) (((-3 (-566) "failed") $) NIL (-2805 (|has| (-999 |#1|) (-1038 (-566))) (|has| |#1| (-1038 (-566))))) (((-3 (-409 (-566)) "failed") $) NIL (-2805 (|has| (-999 |#1|) (-1038 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-1867 ((|#1| $) NIL) (((-999 |#1|) $) 33) (((-566) $) NIL (-2805 (|has| (-999 |#1|) (-1038 (-566))) (|has| |#1| (-1038 (-566))))) (((-409 (-566)) $) NIL (-2805 (|has| (-999 |#1|) (-1038 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-2928 (((-3 $ "failed") $) NIL)) (-2495 ((|#1| $) 16)) (-4045 (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-547)))) (-1356 (((-112) $) NIL (|has| |#1| (-547)))) (-2269 (((-409 (-566)) $) NIL (|has| |#1| (-547)))) (-1618 (($) NIL (|has| |#1| (-370)))) (-3466 (((-112) $) NIL)) (-3606 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-999 |#1|) (-999 |#1|)) 29)) (-2719 ((|#1| $) NIL)) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1299 (((-921) $) NIL (|has| |#1| (-370)))) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-365)))) (-2208 (($ (-921)) NIL (|has| |#1| (-370)))) (-2430 ((|#1| $) 22)) (-4055 ((|#1| $) 20)) (-3237 ((|#1| $) 18)) (-3970 ((|#1| $) 26)) (-1329 ((|#1| $) 25)) (-1850 ((|#1| $) 24)) (-3901 ((|#1| $) 23)) (-4056 (((-1119) $) NIL)) (-2095 (($ $ (-644 |#1|) (-644 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-516 (-1175) |#1|)))) (-4393 (($ $ |#1|) NIL (|has| |#1| (-287 |#1| |#1|)))) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3850 (($ $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-999 |#1|)) 30) (($ (-409 (-566))) NIL (-2805 (|has| (-999 |#1|) (-1038 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-3333 ((|#1| $) NIL (|has| |#1| (-1059)))) (-2493 (($) 8 T CONST)) (-4333 (($) 12 T CONST)) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 40) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-799 |#1|) (-13 (-797 |#1|) (-413 (-999 |#1|)) (-10 -8 (-15 -3606 ($ (-999 |#1|) (-999 |#1|))))) (-172)) (T -799))
+((-3606 (*1 *1 *2 *2) (-12 (-5 *2 (-999 *3)) (-4 *3 (-172)) (-5 *1 (-799 *3)))))
+(-13 (-797 |#1|) (-413 (-999 |#1|)) (-10 -8 (-15 -3606 ($ (-999 |#1|) (-999 |#1|)))))
+((-3009 (((-112) $ $) 7)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-3363 (((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 14)) (-2950 (((-112) $ $) 6)))
(((-800) (-140)) (T -800))
-((-2092 (*1 *2 *3 *4) (-12 (-4 *1 (-800)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)))))) (-1802 (*1 *2 *3) (-12 (-4 *1 (-800)) (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-1035)))))
-(-13 (-1099) (-10 -7 (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1802 ((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))))
+((-3245 (*1 *2 *3 *4) (-12 (-4 *1 (-800)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)))))) (-3363 (*1 *2 *3) (-12 (-4 *1 (-800)) (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-1035)))))
+(-13 (-1099) (-10 -7 (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -3363 ((-1035) (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-3237 (((-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) |#3| |#2| (-1175)) 19)))
-(((-801 |#1| |#2| |#3|) (-10 -7 (-15 -3237 ((-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) |#3| |#2| (-1175)))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)) (-13 (-29 |#1|) (-1199) (-959)) (-656 |#2|)) (T -801))
-((-3237 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1175)) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-4 *4 (-13 (-29 *6) (-1199) (-959))) (-5 *2 (-2 (|:| |particular| *4) (|:| -1990 (-644 *4)))) (-5 *1 (-801 *6 *4 *3)) (-4 *3 (-656 *4)))))
-(-10 -7 (-15 -3237 ((-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) |#3| |#2| (-1175))))
-((-2371 (((-3 |#2| "failed") |#2| (-114) (-295 |#2|) (-644 |#2|)) 28) (((-3 |#2| "failed") (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) |#2| "failed") |#2| (-114) (-1175)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) |#2| "failed") (-295 |#2|) (-114) (-1175)) 18) (((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1990 (-644 (-1264 |#2|)))) "failed") (-644 |#2|) (-644 (-114)) (-1175)) 24) (((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1990 (-644 (-1264 |#2|)))) "failed") (-644 (-295 |#2|)) (-644 (-114)) (-1175)) 26) (((-3 (-644 (-1264 |#2|)) "failed") (-689 |#2|) (-1175)) 37) (((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1990 (-644 (-1264 |#2|)))) "failed") (-689 |#2|) (-1264 |#2|) (-1175)) 35)))
-(((-802 |#1| |#2|) (-10 -7 (-15 -2371 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1990 (-644 (-1264 |#2|)))) "failed") (-689 |#2|) (-1264 |#2|) (-1175))) (-15 -2371 ((-3 (-644 (-1264 |#2|)) "failed") (-689 |#2|) (-1175))) (-15 -2371 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1990 (-644 (-1264 |#2|)))) "failed") (-644 (-295 |#2|)) (-644 (-114)) (-1175))) (-15 -2371 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1990 (-644 (-1264 |#2|)))) "failed") (-644 |#2|) (-644 (-114)) (-1175))) (-15 -2371 ((-3 (-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) |#2| "failed") (-295 |#2|) (-114) (-1175))) (-15 -2371 ((-3 (-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) |#2| "failed") |#2| (-114) (-1175))) (-15 -2371 ((-3 |#2| "failed") (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|))) (-15 -2371 ((-3 |#2| "failed") |#2| (-114) (-295 |#2|) (-644 |#2|)))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)) (-13 (-29 |#1|) (-1199) (-959))) (T -802))
-((-2371 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-295 *2)) (-5 *5 (-644 *2)) (-4 *2 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *1 (-802 *6 *2)))) (-2371 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-295 *2)) (-5 *4 (-114)) (-5 *5 (-644 *2)) (-4 *2 (-13 (-29 *6) (-1199) (-959))) (-5 *1 (-802 *6 *2)) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))))) (-2371 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-114)) (-5 *5 (-1175)) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -1990 (-644 *3))) *3 "failed")) (-5 *1 (-802 *6 *3)) (-4 *3 (-13 (-29 *6) (-1199) (-959))))) (-2371 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-295 *7)) (-5 *4 (-114)) (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -1990 (-644 *7))) *7 "failed")) (-5 *1 (-802 *6 *7)))) (-2371 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-644 *7)) (-5 *4 (-644 (-114))) (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-2 (|:| |particular| (-1264 *7)) (|:| -1990 (-644 (-1264 *7))))) (-5 *1 (-802 *6 *7)))) (-2371 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-644 (-295 *7))) (-5 *4 (-644 (-114))) (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-2 (|:| |particular| (-1264 *7)) (|:| -1990 (-644 (-1264 *7))))) (-5 *1 (-802 *6 *7)))) (-2371 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-689 *6)) (-5 *4 (-1175)) (-4 *6 (-13 (-29 *5) (-1199) (-959))) (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-1264 *6))) (-5 *1 (-802 *5 *6)))) (-2371 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-689 *7)) (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-2 (|:| |particular| (-1264 *7)) (|:| -1990 (-644 (-1264 *7))))) (-5 *1 (-802 *6 *7)) (-5 *4 (-1264 *7)))))
-(-10 -7 (-15 -2371 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1990 (-644 (-1264 |#2|)))) "failed") (-689 |#2|) (-1264 |#2|) (-1175))) (-15 -2371 ((-3 (-644 (-1264 |#2|)) "failed") (-689 |#2|) (-1175))) (-15 -2371 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1990 (-644 (-1264 |#2|)))) "failed") (-644 (-295 |#2|)) (-644 (-114)) (-1175))) (-15 -2371 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1990 (-644 (-1264 |#2|)))) "failed") (-644 |#2|) (-644 (-114)) (-1175))) (-15 -2371 ((-3 (-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) |#2| "failed") (-295 |#2|) (-114) (-1175))) (-15 -2371 ((-3 (-2 (|:| |particular| |#2|) (|:| -1990 (-644 |#2|))) |#2| "failed") |#2| (-114) (-1175))) (-15 -2371 ((-3 |#2| "failed") (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|))) (-15 -2371 ((-3 |#2| "failed") |#2| (-114) (-295 |#2|) (-644 |#2|))))
-((-3722 (($) 9)) (-2684 (((-3 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 31)) (-3949 (((-644 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $) 28)) (-4265 (($ (-2 (|:| -2010 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))))) 25)) (-3487 (($ (-644 (-2 (|:| -2010 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))))) 23)) (-2903 (((-1269)) 12)))
-(((-803) (-10 -8 (-15 -3722 ($)) (-15 -2903 ((-1269))) (-15 -3949 ((-644 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -3487 ($ (-644 (-2 (|:| -2010 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))))))) (-15 -4265 ($ (-2 (|:| -2010 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))))) (-15 -2684 ((-3 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -803))
-((-2684 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))) (-5 *1 (-803)))) (-4265 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2010 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))))) (-5 *1 (-803)))) (-3487 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2010 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))))) (-5 *1 (-803)))) (-3949 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-5 *1 (-803)))) (-2903 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-803)))) (-3722 (*1 *1) (-5 *1 (-803))))
-(-10 -8 (-15 -3722 ($)) (-15 -2903 ((-1269))) (-15 -3949 ((-644 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -3487 ($ (-644 (-2 (|:| -2010 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))))))) (-15 -4265 ($ (-2 (|:| -2010 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2818 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))))) (-15 -2684 ((-3 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
-((-1395 ((|#2| |#2| (-1175)) 17)) (-2558 ((|#2| |#2| (-1175)) 56)) (-2614 (((-1 |#2| |#2|) (-1175)) 11)))
-(((-804 |#1| |#2|) (-10 -7 (-15 -1395 (|#2| |#2| (-1175))) (-15 -2558 (|#2| |#2| (-1175))) (-15 -2614 ((-1 |#2| |#2|) (-1175)))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)) (-13 (-29 |#1|) (-1199) (-959))) (T -804))
-((-2614 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-1 *5 *5)) (-5 *1 (-804 *4 *5)) (-4 *5 (-13 (-29 *4) (-1199) (-959))))) (-2558 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *1 (-804 *4 *2)) (-4 *2 (-13 (-29 *4) (-1199) (-959))))) (-1395 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *1 (-804 *4 *2)) (-4 *2 (-13 (-29 *4) (-1199) (-959))))))
-(-10 -7 (-15 -1395 (|#2| |#2| (-1175))) (-15 -2558 (|#2| |#2| (-1175))) (-15 -2614 ((-1 |#2| |#2|) (-1175))))
-((-2371 (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381) (-381)) 131) (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381)) 132) (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-644 (-381)) (-381)) 134) (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-381)) 136) (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-381)) 137) (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381))) 139) (((-1035) (-808) (-1062)) 123) (((-1035) (-808)) 124)) (-2092 (((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808) (-1062)) 83) (((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808)) 85)))
-(((-805) (-10 -7 (-15 -2371 ((-1035) (-808))) (-15 -2371 ((-1035) (-808) (-1062))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-381))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-381))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-644 (-381)) (-381))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381) (-381))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808) (-1062))))) (T -805))
-((-2092 (*1 *2 *3 *4) (-12 (-5 *3 (-808)) (-5 *4 (-1062)) (-5 *2 (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-805)))) (-2092 (*1 *2 *3) (-12 (-5 *3 (-808)) (-5 *2 (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-805)))) (-2371 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381))) (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-2371 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381))) (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-2371 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-2371 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381))) (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-2371 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-2371 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-808)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-2371 (*1 *2 *3) (-12 (-5 *3 (-808)) (-5 *2 (-1035)) (-5 *1 (-805)))))
-(-10 -7 (-15 -2371 ((-1035) (-808))) (-15 -2371 ((-1035) (-808) (-1062))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-381))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-381))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-644 (-381)) (-381))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381))) (-15 -2371 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381) (-381))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808) (-1062))))
-((-2369 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1990 (-644 |#4|))) (-653 |#4|) |#4|) 35)))
-(((-806 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2369 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1990 (-644 |#4|))) (-653 |#4|) |#4|))) (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -806))
-((-2369 (*1 *2 *3 *4) (-12 (-5 *3 (-653 *4)) (-4 *4 (-344 *5 *6 *7)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4)))) (-5 *1 (-806 *5 *6 *7 *4)))))
-(-10 -7 (-15 -2369 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1990 (-644 |#4|))) (-653 |#4|) |#4|)))
-((-1919 (((-2 (|:| -3525 |#3|) (|:| |rh| (-644 (-409 |#2|)))) |#4| (-644 (-409 |#2|))) 53)) (-2877 (((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#4| |#2|) 62) (((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#4|) 61) (((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#3| |#2|) 20) (((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#3|) 21)) (-2782 ((|#2| |#4| |#1|) 63) ((|#2| |#3| |#1|) 28)) (-3108 ((|#2| |#3| (-644 (-409 |#2|))) 113) (((-3 |#2| "failed") |#3| (-409 |#2|)) 109)))
-(((-807 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3108 ((-3 |#2| "failed") |#3| (-409 |#2|))) (-15 -3108 (|#2| |#3| (-644 (-409 |#2|)))) (-15 -2877 ((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#3|)) (-15 -2877 ((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#3| |#2|)) (-15 -2782 (|#2| |#3| |#1|)) (-15 -2877 ((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#4|)) (-15 -2877 ((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#4| |#2|)) (-15 -2782 (|#2| |#4| |#1|)) (-15 -1919 ((-2 (|:| -3525 |#3|) (|:| |rh| (-644 (-409 |#2|)))) |#4| (-644 (-409 |#2|))))) (-13 (-365) (-147) (-1038 (-409 (-566)))) (-1240 |#1|) (-656 |#2|) (-656 (-409 |#2|))) (T -807))
-((-1919 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-2 (|:| -3525 *7) (|:| |rh| (-644 (-409 *6))))) (-5 *1 (-807 *5 *6 *7 *3)) (-5 *4 (-644 (-409 *6))) (-4 *7 (-656 *6)) (-4 *3 (-656 (-409 *6))))) (-2782 (*1 *2 *3 *4) (-12 (-4 *2 (-1240 *4)) (-5 *1 (-807 *4 *2 *5 *3)) (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-656 *2)) (-4 *3 (-656 (-409 *2))))) (-2877 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *4 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -2420 *4) (|:| -2077 *4)))) (-5 *1 (-807 *5 *4 *6 *3)) (-4 *6 (-656 *4)) (-4 *3 (-656 (-409 *4))))) (-2877 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-2 (|:| -2420 *5) (|:| -2077 *5)))) (-5 *1 (-807 *4 *5 *6 *3)) (-4 *6 (-656 *5)) (-4 *3 (-656 (-409 *5))))) (-2782 (*1 *2 *3 *4) (-12 (-4 *2 (-1240 *4)) (-5 *1 (-807 *4 *2 *3 *5)) (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2)) (-4 *5 (-656 (-409 *2))))) (-2877 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *4 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -2420 *4) (|:| -2077 *4)))) (-5 *1 (-807 *5 *4 *3 *6)) (-4 *3 (-656 *4)) (-4 *6 (-656 (-409 *4))))) (-2877 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-2 (|:| -2420 *5) (|:| -2077 *5)))) (-5 *1 (-807 *4 *5 *3 *6)) (-4 *3 (-656 *5)) (-4 *6 (-656 (-409 *5))))) (-3108 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-409 *2))) (-4 *2 (-1240 *5)) (-5 *1 (-807 *5 *2 *3 *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2)) (-4 *6 (-656 (-409 *2))))) (-3108 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-409 *2)) (-4 *2 (-1240 *5)) (-5 *1 (-807 *5 *2 *3 *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2)) (-4 *6 (-656 *4)))))
-(-10 -7 (-15 -3108 ((-3 |#2| "failed") |#3| (-409 |#2|))) (-15 -3108 (|#2| |#3| (-644 (-409 |#2|)))) (-15 -2877 ((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#3|)) (-15 -2877 ((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#3| |#2|)) (-15 -2782 (|#2| |#3| |#1|)) (-15 -2877 ((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#4|)) (-15 -2877 ((-644 (-2 (|:| -2420 |#2|) (|:| -2077 |#2|))) |#4| |#2|)) (-15 -2782 (|#2| |#4| |#1|)) (-15 -1919 ((-2 (|:| -3525 |#3|) (|:| |rh| (-644 (-409 |#2|)))) |#4| (-644 (-409 |#2|)))))
-((-2985 (((-112) $ $) NIL)) (-1756 (((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $) 13)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 15) (($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 12)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-808) (-13 (-1099) (-10 -8 (-15 -2512 ($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1756 ((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $))))) (T -808))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-808)))) (-1756 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-808)))))
-(-13 (-1099) (-10 -8 (-15 -2512 ($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1756 ((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $))))
-((-4205 (((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -3525 |#3|))) |#3| (-1 (-644 |#2|) |#2| (-1171 |#2|)) (-1 (-420 |#2|) |#2|)) 157)) (-3631 (((-644 (-2 (|:| |poly| |#2|) (|:| -3525 |#3|))) |#3| (-1 (-644 |#1|) |#2|)) 56)) (-2076 (((-644 (-2 (|:| |deg| (-771)) (|:| -3525 |#2|))) |#3|) 127)) (-4339 ((|#2| |#3|) 45)) (-2324 (((-644 (-2 (|:| -1655 |#1|) (|:| -3525 |#3|))) |#3| (-1 (-644 |#1|) |#2|)) 105)) (-1698 ((|#3| |#3| (-409 |#2|)) 76) ((|#3| |#3| |#2|) 102)))
-(((-809 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4339 (|#2| |#3|)) (-15 -2076 ((-644 (-2 (|:| |deg| (-771)) (|:| -3525 |#2|))) |#3|)) (-15 -2324 ((-644 (-2 (|:| -1655 |#1|) (|:| -3525 |#3|))) |#3| (-1 (-644 |#1|) |#2|))) (-15 -3631 ((-644 (-2 (|:| |poly| |#2|) (|:| -3525 |#3|))) |#3| (-1 (-644 |#1|) |#2|))) (-15 -4205 ((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -3525 |#3|))) |#3| (-1 (-644 |#2|) |#2| (-1171 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -1698 (|#3| |#3| |#2|)) (-15 -1698 (|#3| |#3| (-409 |#2|)))) (-13 (-365) (-147) (-1038 (-409 (-566)))) (-1240 |#1|) (-656 |#2|) (-656 (-409 |#2|))) (T -809))
-((-1698 (*1 *2 *2 *3) (-12 (-5 *3 (-409 *5)) (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *1 (-809 *4 *5 *2 *6)) (-4 *2 (-656 *5)) (-4 *6 (-656 *3)))) (-1698 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-1240 *4)) (-5 *1 (-809 *4 *3 *2 *5)) (-4 *2 (-656 *3)) (-4 *5 (-656 (-409 *3))))) (-4205 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-644 *7) *7 (-1171 *7))) (-5 *5 (-1 (-420 *7) *7)) (-4 *7 (-1240 *6)) (-4 *6 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-5 *2 (-644 (-2 (|:| |frac| (-409 *7)) (|:| -3525 *3)))) (-5 *1 (-809 *6 *7 *3 *8)) (-4 *3 (-656 *7)) (-4 *8 (-656 (-409 *7))))) (-3631 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-2 (|:| |poly| *6) (|:| -3525 *3)))) (-5 *1 (-809 *5 *6 *3 *7)) (-4 *3 (-656 *6)) (-4 *7 (-656 (-409 *6))))) (-2324 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -1655 *5) (|:| -3525 *3)))) (-5 *1 (-809 *5 *6 *3 *7)) (-4 *3 (-656 *6)) (-4 *7 (-656 (-409 *6))))) (-2076 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-2 (|:| |deg| (-771)) (|:| -3525 *5)))) (-5 *1 (-809 *4 *5 *3 *6)) (-4 *3 (-656 *5)) (-4 *6 (-656 (-409 *5))))) (-4339 (*1 *2 *3) (-12 (-4 *2 (-1240 *4)) (-5 *1 (-809 *4 *2 *3 *5)) (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2)) (-4 *5 (-656 (-409 *2))))))
-(-10 -7 (-15 -4339 (|#2| |#3|)) (-15 -2076 ((-644 (-2 (|:| |deg| (-771)) (|:| -3525 |#2|))) |#3|)) (-15 -2324 ((-644 (-2 (|:| -1655 |#1|) (|:| -3525 |#3|))) |#3| (-1 (-644 |#1|) |#2|))) (-15 -3631 ((-644 (-2 (|:| |poly| |#2|) (|:| -3525 |#3|))) |#3| (-1 (-644 |#1|) |#2|))) (-15 -4205 ((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -3525 |#3|))) |#3| (-1 (-644 |#2|) |#2| (-1171 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -1698 (|#3| |#3| |#2|)) (-15 -1698 (|#3| |#3| (-409 |#2|))))
-((-4066 (((-2 (|:| -1990 (-644 (-409 |#2|))) (|:| -1380 (-689 |#1|))) (-654 |#2| (-409 |#2|)) (-644 (-409 |#2|))) 149) (((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1990 (-644 (-409 |#2|)))) (-654 |#2| (-409 |#2|)) (-409 |#2|)) 148) (((-2 (|:| -1990 (-644 (-409 |#2|))) (|:| -1380 (-689 |#1|))) (-653 (-409 |#2|)) (-644 (-409 |#2|))) 143) (((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1990 (-644 (-409 |#2|)))) (-653 (-409 |#2|)) (-409 |#2|)) 141)) (-3158 ((|#2| (-654 |#2| (-409 |#2|))) 89) ((|#2| (-653 (-409 |#2|))) 92)))
-(((-810 |#1| |#2|) (-10 -7 (-15 -4066 ((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1990 (-644 (-409 |#2|)))) (-653 (-409 |#2|)) (-409 |#2|))) (-15 -4066 ((-2 (|:| -1990 (-644 (-409 |#2|))) (|:| -1380 (-689 |#1|))) (-653 (-409 |#2|)) (-644 (-409 |#2|)))) (-15 -4066 ((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1990 (-644 (-409 |#2|)))) (-654 |#2| (-409 |#2|)) (-409 |#2|))) (-15 -4066 ((-2 (|:| -1990 (-644 (-409 |#2|))) (|:| -1380 (-689 |#1|))) (-654 |#2| (-409 |#2|)) (-644 (-409 |#2|)))) (-15 -3158 (|#2| (-653 (-409 |#2|)))) (-15 -3158 (|#2| (-654 |#2| (-409 |#2|))))) (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))) (-1240 |#1|)) (T -810))
-((-3158 (*1 *2 *3) (-12 (-5 *3 (-654 *2 (-409 *2))) (-4 *2 (-1240 *4)) (-5 *1 (-810 *4 *2)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))))) (-3158 (*1 *2 *3) (-12 (-5 *3 (-653 (-409 *2))) (-4 *2 (-1240 *4)) (-5 *1 (-810 *4 *2)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))))) (-4066 (*1 *2 *3 *4) (-12 (-5 *3 (-654 *6 (-409 *6))) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-2 (|:| -1990 (-644 (-409 *6))) (|:| -1380 (-689 *5)))) (-5 *1 (-810 *5 *6)) (-5 *4 (-644 (-409 *6))))) (-4066 (*1 *2 *3 *4) (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-409 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4)))) (-5 *1 (-810 *5 *6)))) (-4066 (*1 *2 *3 *4) (-12 (-5 *3 (-653 (-409 *6))) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-2 (|:| -1990 (-644 (-409 *6))) (|:| -1380 (-689 *5)))) (-5 *1 (-810 *5 *6)) (-5 *4 (-644 (-409 *6))))) (-4066 (*1 *2 *3 *4) (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-409 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4)))) (-5 *1 (-810 *5 *6)))))
-(-10 -7 (-15 -4066 ((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1990 (-644 (-409 |#2|)))) (-653 (-409 |#2|)) (-409 |#2|))) (-15 -4066 ((-2 (|:| -1990 (-644 (-409 |#2|))) (|:| -1380 (-689 |#1|))) (-653 (-409 |#2|)) (-644 (-409 |#2|)))) (-15 -4066 ((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1990 (-644 (-409 |#2|)))) (-654 |#2| (-409 |#2|)) (-409 |#2|))) (-15 -4066 ((-2 (|:| -1990 (-644 (-409 |#2|))) (|:| -1380 (-689 |#1|))) (-654 |#2| (-409 |#2|)) (-644 (-409 |#2|)))) (-15 -3158 (|#2| (-653 (-409 |#2|)))) (-15 -3158 (|#2| (-654 |#2| (-409 |#2|)))))
-((-1376 (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) |#5| |#4|) 52)))
-(((-811 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1376 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) |#5| |#4|))) (-365) (-656 |#1|) (-1240 |#1|) (-724 |#1| |#3|) (-656 |#4|)) (T -811))
-((-1376 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *7 (-1240 *5)) (-4 *4 (-724 *5 *7)) (-5 *2 (-2 (|:| -1380 (-689 *6)) (|:| |vec| (-1264 *5)))) (-5 *1 (-811 *5 *6 *7 *4 *3)) (-4 *6 (-656 *5)) (-4 *3 (-656 *4)))))
-(-10 -7 (-15 -1376 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) |#5| |#4|)))
-((-4205 (((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -3525 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|)) 47)) (-4207 (((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|)) 171 (|has| |#1| (-27))) (((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|))) 168 (|has| |#1| (-27))) (((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-420 |#2|) |#2|)) 172 (|has| |#1| (-27))) (((-644 (-409 |#2|)) (-653 (-409 |#2|))) 170 (|has| |#1| (-27))) (((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|)) 38) (((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|)) 39) (((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|)) 36) (((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|)) 37)) (-3631 (((-644 (-2 (|:| |poly| |#2|) (|:| -3525 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|)) 99)))
-(((-812 |#1| |#2|) (-10 -7 (-15 -4207 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (-15 -4207 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|))) (-15 -4207 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (-15 -4207 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|))) (-15 -4205 ((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -3525 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -3631 ((-644 (-2 (|:| |poly| |#2|) (|:| -3525 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -4207 ((-644 (-409 |#2|)) (-653 (-409 |#2|)))) (-15 -4207 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -4207 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)))) (-15 -4207 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|)))) |%noBranch|)) (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))) (-1240 |#1|)) (T -812))
-((-4207 (*1 *2 *3 *4) (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6)))) (-4207 (*1 *2 *3) (-12 (-5 *3 (-654 *5 (-409 *5))) (-4 *5 (-1240 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-644 (-409 *5))) (-5 *1 (-812 *4 *5)))) (-4207 (*1 *2 *3 *4) (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6)))) (-4207 (*1 *2 *3) (-12 (-5 *3 (-653 (-409 *5))) (-4 *5 (-1240 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-644 (-409 *5))) (-5 *1 (-812 *4 *5)))) (-3631 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-2 (|:| |poly| *6) (|:| -3525 (-654 *6 (-409 *6)))))) (-5 *1 (-812 *5 *6)) (-5 *3 (-654 *6 (-409 *6))))) (-4205 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-644 (-2 (|:| |frac| (-409 *6)) (|:| -3525 (-654 *6 (-409 *6)))))) (-5 *1 (-812 *5 *6)) (-5 *3 (-654 *6 (-409 *6))))) (-4207 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-654 *7 (-409 *7))) (-5 *4 (-1 (-644 *6) *7)) (-5 *5 (-1 (-420 *7) *7)) (-4 *6 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *7 (-1240 *6)) (-5 *2 (-644 (-409 *7))) (-5 *1 (-812 *6 *7)))) (-4207 (*1 *2 *3 *4) (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6)))) (-4207 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-653 (-409 *7))) (-5 *4 (-1 (-644 *6) *7)) (-5 *5 (-1 (-420 *7) *7)) (-4 *6 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *7 (-1240 *6)) (-5 *2 (-644 (-409 *7))) (-5 *1 (-812 *6 *7)))) (-4207 (*1 *2 *3 *4) (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6)))))
-(-10 -7 (-15 -4207 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (-15 -4207 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|))) (-15 -4207 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (-15 -4207 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|))) (-15 -4205 ((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -3525 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -3631 ((-644 (-2 (|:| |poly| |#2|) (|:| -3525 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -4207 ((-644 (-409 |#2|)) (-653 (-409 |#2|)))) (-15 -4207 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -4207 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)))) (-15 -4207 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|)))) |%noBranch|))
-((-3806 (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) (-689 |#2|) (-1264 |#1|)) 110) (((-2 (|:| A (-689 |#1|)) (|:| |eqs| (-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)) (|:| -3525 |#2|) (|:| |rh| |#1|))))) (-689 |#1|) (-1264 |#1|)) 15)) (-1564 (((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|)))) (-689 |#2|) (-1264 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1990 (-644 |#1|))) |#2| |#1|)) 116)) (-2371 (((-3 (-2 (|:| |particular| (-1264 |#1|)) (|:| -1990 (-689 |#1|))) "failed") (-689 |#1|) (-1264 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1990 (-644 |#1|))) "failed") |#2| |#1|)) 52)))
-(((-813 |#1| |#2|) (-10 -7 (-15 -3806 ((-2 (|:| A (-689 |#1|)) (|:| |eqs| (-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)) (|:| -3525 |#2|) (|:| |rh| |#1|))))) (-689 |#1|) (-1264 |#1|))) (-15 -3806 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) (-689 |#2|) (-1264 |#1|))) (-15 -2371 ((-3 (-2 (|:| |particular| (-1264 |#1|)) (|:| -1990 (-689 |#1|))) "failed") (-689 |#1|) (-1264 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1990 (-644 |#1|))) "failed") |#2| |#1|))) (-15 -1564 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|)))) (-689 |#2|) (-1264 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1990 (-644 |#1|))) |#2| |#1|)))) (-365) (-656 |#1|)) (T -813))
-((-1564 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -1990 (-644 *6))) *7 *6)) (-4 *6 (-365)) (-4 *7 (-656 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1264 *6) "failed")) (|:| -1990 (-644 (-1264 *6))))) (-5 *1 (-813 *6 *7)) (-5 *4 (-1264 *6)))) (-2371 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -1990 (-644 *6))) "failed") *7 *6)) (-4 *6 (-365)) (-4 *7 (-656 *6)) (-5 *2 (-2 (|:| |particular| (-1264 *6)) (|:| -1990 (-689 *6)))) (-5 *1 (-813 *6 *7)) (-5 *3 (-689 *6)) (-5 *4 (-1264 *6)))) (-3806 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *6 (-656 *5)) (-5 *2 (-2 (|:| -1380 (-689 *6)) (|:| |vec| (-1264 *5)))) (-5 *1 (-813 *5 *6)) (-5 *3 (-689 *6)) (-5 *4 (-1264 *5)))) (-3806 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-5 *2 (-2 (|:| A (-689 *5)) (|:| |eqs| (-644 (-2 (|:| C (-689 *5)) (|:| |g| (-1264 *5)) (|:| -3525 *6) (|:| |rh| *5)))))) (-5 *1 (-813 *5 *6)) (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)) (-4 *6 (-656 *5)))))
-(-10 -7 (-15 -3806 ((-2 (|:| A (-689 |#1|)) (|:| |eqs| (-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)) (|:| -3525 |#2|) (|:| |rh| |#1|))))) (-689 |#1|) (-1264 |#1|))) (-15 -3806 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) (-689 |#2|) (-1264 |#1|))) (-15 -2371 ((-3 (-2 (|:| |particular| (-1264 |#1|)) (|:| -1990 (-689 |#1|))) "failed") (-689 |#1|) (-1264 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1990 (-644 |#1|))) "failed") |#2| |#1|))) (-15 -1564 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1990 (-644 (-1264 |#1|)))) (-689 |#2|) (-1264 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1990 (-644 |#1|))) |#2| |#1|))))
-((-4212 (((-689 |#1|) (-644 |#1|) (-771)) 14) (((-689 |#1|) (-644 |#1|)) 15)) (-4185 (((-3 (-1264 |#1|) "failed") |#2| |#1| (-644 |#1|)) 39)) (-1462 (((-3 |#1| "failed") |#2| |#1| (-644 |#1|) (-1 |#1| |#1|)) 46)))
-(((-814 |#1| |#2|) (-10 -7 (-15 -4212 ((-689 |#1|) (-644 |#1|))) (-15 -4212 ((-689 |#1|) (-644 |#1|) (-771))) (-15 -4185 ((-3 (-1264 |#1|) "failed") |#2| |#1| (-644 |#1|))) (-15 -1462 ((-3 |#1| "failed") |#2| |#1| (-644 |#1|) (-1 |#1| |#1|)))) (-365) (-656 |#1|)) (T -814))
-((-1462 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-644 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-365)) (-5 *1 (-814 *2 *3)) (-4 *3 (-656 *2)))) (-4185 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-644 *4)) (-4 *4 (-365)) (-5 *2 (-1264 *4)) (-5 *1 (-814 *4 *3)) (-4 *3 (-656 *4)))) (-4212 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-771)) (-4 *5 (-365)) (-5 *2 (-689 *5)) (-5 *1 (-814 *5 *6)) (-4 *6 (-656 *5)))) (-4212 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-365)) (-5 *2 (-689 *4)) (-5 *1 (-814 *4 *5)) (-4 *5 (-656 *4)))))
-(-10 -7 (-15 -4212 ((-689 |#1|) (-644 |#1|))) (-15 -4212 ((-689 |#1|) (-644 |#1|) (-771))) (-15 -4185 ((-3 (-1264 |#1|) "failed") |#2| |#1| (-644 |#1|))) (-15 -1462 ((-3 |#1| "failed") |#2| |#1| (-644 |#1|) (-1 |#1| |#1|))))
-((-2985 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-3958 (((-112) $) NIL (|has| |#2| (-131)))) (-3639 (($ (-921)) NIL (|has| |#2| (-1049)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-3711 (($ $ $) NIL (|has| |#2| (-793)))) (-4126 (((-3 $ "failed") $ $) NIL (|has| |#2| (-131)))) (-3081 (((-112) $ (-771)) NIL)) (-4025 (((-771)) NIL (|has| |#2| (-370)))) (-2807 (((-566) $) NIL (|has| |#2| (-848)))) (-3874 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1099)))) (-1756 (((-566) $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) ((|#2| $) NIL (|has| |#2| (-1099)))) (-1628 (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL (|has| |#2| (-1049))) (((-689 |#2|) (-689 $)) NIL (|has| |#2| (-1049)))) (-1579 (((-3 $ "failed") $) NIL (|has| |#2| (-726)))) (-3335 (($) NIL (|has| |#2| (-370)))) (-1332 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#2| $ (-566)) NIL)) (-1684 (((-112) $) NIL (|has| |#2| (-848)))) (-3372 (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-2741 (((-112) $) NIL (|has| |#2| (-726)))) (-1578 (((-112) $) NIL (|has| |#2| (-848)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2404 (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-1323 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-3712 (((-921) $) NIL (|has| |#2| (-370)))) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#2| (-1099)))) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-2168 (($ (-921)) NIL (|has| |#2| (-370)))) (-4033 (((-1119) $) NIL (|has| |#2| (-1099)))) (-4062 ((|#2| $) NIL (|has| (-566) (-850)))) (-1720 (($ $ |#2|) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#2| $ (-566) |#2|) NIL) ((|#2| $ (-566)) NIL)) (-1452 ((|#2| $ $) NIL (|has| |#2| (-1049)))) (-2440 (($ (-1264 |#2|)) NIL)) (-1909 (((-134)) NIL (|has| |#2| (-365)))) (-2862 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-4044 (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-1264 |#2|) $) NIL) (($ (-566)) NIL (-2805 (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) (|has| |#2| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (($ |#2|) NIL (|has| |#2| (-1099))) (((-862) $) NIL (|has| |#2| (-613 (-862))))) (-3795 (((-771)) NIL (|has| |#2| (-1049)) CONST)) (-3122 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-3427 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-1346 (($ $) NIL (|has| |#2| (-848)))) (-2485 (($) NIL (|has| |#2| (-131)) CONST)) (-2495 (($) NIL (|has| |#2| (-726)) CONST)) (-2840 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-2998 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2974 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2940 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-2987 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2962 (((-112) $ $) 11 (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3061 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3047 (($ $ $) NIL (|has| |#2| (-1049))) (($ $) NIL (|has| |#2| (-1049)))) (-3034 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-771)) NIL (|has| |#2| (-726))) (($ $ (-921)) NIL (|has| |#2| (-726)))) (* (($ (-566) $) NIL (|has| |#2| (-1049))) (($ $ $) NIL (|has| |#2| (-726))) (($ $ |#2|) NIL (|has| |#2| (-726))) (($ |#2| $) NIL (|has| |#2| (-726))) (($ (-771) $) NIL (|has| |#2| (-131))) (($ (-921) $) NIL (|has| |#2| (-25)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3539 (((-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) |#3| |#2| (-1175)) 19)))
+(((-801 |#1| |#2| |#3|) (-10 -7 (-15 -3539 ((-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) |#3| |#2| (-1175)))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)) (-13 (-29 |#1|) (-1199) (-959)) (-656 |#2|)) (T -801))
+((-3539 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-1175)) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-4 *4 (-13 (-29 *6) (-1199) (-959))) (-5 *2 (-2 (|:| |particular| *4) (|:| -1575 (-644 *4)))) (-5 *1 (-801 *6 *4 *3)) (-4 *3 (-656 *4)))))
+(-10 -7 (-15 -3539 ((-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) |#3| |#2| (-1175))))
+((-4159 (((-3 |#2| "failed") |#2| (-114) (-295 |#2|) (-644 |#2|)) 28) (((-3 |#2| "failed") (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|)) 29) (((-3 (-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) |#2| "failed") |#2| (-114) (-1175)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) |#2| "failed") (-295 |#2|) (-114) (-1175)) 18) (((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1575 (-644 (-1264 |#2|)))) "failed") (-644 |#2|) (-644 (-114)) (-1175)) 24) (((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1575 (-644 (-1264 |#2|)))) "failed") (-644 (-295 |#2|)) (-644 (-114)) (-1175)) 26) (((-3 (-644 (-1264 |#2|)) "failed") (-689 |#2|) (-1175)) 37) (((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1575 (-644 (-1264 |#2|)))) "failed") (-689 |#2|) (-1264 |#2|) (-1175)) 35)))
+(((-802 |#1| |#2|) (-10 -7 (-15 -4159 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1575 (-644 (-1264 |#2|)))) "failed") (-689 |#2|) (-1264 |#2|) (-1175))) (-15 -4159 ((-3 (-644 (-1264 |#2|)) "failed") (-689 |#2|) (-1175))) (-15 -4159 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1575 (-644 (-1264 |#2|)))) "failed") (-644 (-295 |#2|)) (-644 (-114)) (-1175))) (-15 -4159 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1575 (-644 (-1264 |#2|)))) "failed") (-644 |#2|) (-644 (-114)) (-1175))) (-15 -4159 ((-3 (-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) |#2| "failed") (-295 |#2|) (-114) (-1175))) (-15 -4159 ((-3 (-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) |#2| "failed") |#2| (-114) (-1175))) (-15 -4159 ((-3 |#2| "failed") (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|))) (-15 -4159 ((-3 |#2| "failed") |#2| (-114) (-295 |#2|) (-644 |#2|)))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)) (-13 (-29 |#1|) (-1199) (-959))) (T -802))
+((-4159 (*1 *2 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-114)) (-5 *4 (-295 *2)) (-5 *5 (-644 *2)) (-4 *2 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *1 (-802 *6 *2)))) (-4159 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-295 *2)) (-5 *4 (-114)) (-5 *5 (-644 *2)) (-4 *2 (-13 (-29 *6) (-1199) (-959))) (-5 *1 (-802 *6 *2)) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))))) (-4159 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-114)) (-5 *5 (-1175)) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-3 (-2 (|:| |particular| *3) (|:| -1575 (-644 *3))) *3 "failed")) (-5 *1 (-802 *6 *3)) (-4 *3 (-13 (-29 *6) (-1199) (-959))))) (-4159 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-295 *7)) (-5 *4 (-114)) (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-3 (-2 (|:| |particular| *7) (|:| -1575 (-644 *7))) *7 "failed")) (-5 *1 (-802 *6 *7)))) (-4159 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-644 *7)) (-5 *4 (-644 (-114))) (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-2 (|:| |particular| (-1264 *7)) (|:| -1575 (-644 (-1264 *7))))) (-5 *1 (-802 *6 *7)))) (-4159 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-644 (-295 *7))) (-5 *4 (-644 (-114))) (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-2 (|:| |particular| (-1264 *7)) (|:| -1575 (-644 (-1264 *7))))) (-5 *1 (-802 *6 *7)))) (-4159 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-689 *6)) (-5 *4 (-1175)) (-4 *6 (-13 (-29 *5) (-1199) (-959))) (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-1264 *6))) (-5 *1 (-802 *5 *6)))) (-4159 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *3 (-689 *7)) (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959))) (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-2 (|:| |particular| (-1264 *7)) (|:| -1575 (-644 (-1264 *7))))) (-5 *1 (-802 *6 *7)) (-5 *4 (-1264 *7)))))
+(-10 -7 (-15 -4159 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1575 (-644 (-1264 |#2|)))) "failed") (-689 |#2|) (-1264 |#2|) (-1175))) (-15 -4159 ((-3 (-644 (-1264 |#2|)) "failed") (-689 |#2|) (-1175))) (-15 -4159 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1575 (-644 (-1264 |#2|)))) "failed") (-644 (-295 |#2|)) (-644 (-114)) (-1175))) (-15 -4159 ((-3 (-2 (|:| |particular| (-1264 |#2|)) (|:| -1575 (-644 (-1264 |#2|)))) "failed") (-644 |#2|) (-644 (-114)) (-1175))) (-15 -4159 ((-3 (-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) |#2| "failed") (-295 |#2|) (-114) (-1175))) (-15 -4159 ((-3 (-2 (|:| |particular| |#2|) (|:| -1575 (-644 |#2|))) |#2| "failed") |#2| (-114) (-1175))) (-15 -4159 ((-3 |#2| "failed") (-295 |#2|) (-114) (-295 |#2|) (-644 |#2|))) (-15 -4159 ((-3 |#2| "failed") |#2| (-114) (-295 |#2|) (-644 |#2|))))
+((-1415 (($) 9)) (-4120 (((-3 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 31)) (-4314 (((-644 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $) 28)) (-2903 (($ (-2 (|:| -2050 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))))) 25)) (-4081 (($ (-644 (-2 (|:| -2050 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))))) 23)) (-1408 (((-1269)) 12)))
+(((-803) (-10 -8 (-15 -1415 ($)) (-15 -1408 ((-1269))) (-15 -4314 ((-644 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -4081 ($ (-644 (-2 (|:| -2050 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))))))) (-15 -2903 ($ (-2 (|:| -2050 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))))) (-15 -4120 ((-3 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))) (T -803))
+((-4120 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *2 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))) (-5 *1 (-803)))) (-2903 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2050 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))))) (-5 *1 (-803)))) (-4081 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2050 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))))) (-5 *1 (-803)))) (-4314 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-5 *1 (-803)))) (-1408 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-803)))) (-1415 (*1 *1) (-5 *1 (-803))))
+(-10 -8 (-15 -1415 ($)) (-15 -1408 ((-1269))) (-15 -4314 ((-644 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) $)) (-15 -4081 ($ (-644 (-2 (|:| -2050 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381)))))))) (-15 -2903 ($ (-2 (|:| -2050 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (|:| -2849 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))))))) (-15 -4120 ((-3 (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381)) (|:| |expense| (-381)) (|:| |accuracy| (-381)) (|:| |intermediateResults| (-381))) "failed") (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
+((-3762 ((|#2| |#2| (-1175)) 17)) (-2265 ((|#2| |#2| (-1175)) 56)) (-1554 (((-1 |#2| |#2|) (-1175)) 11)))
+(((-804 |#1| |#2|) (-10 -7 (-15 -3762 (|#2| |#2| (-1175))) (-15 -2265 (|#2| |#2| (-1175))) (-15 -1554 ((-1 |#2| |#2|) (-1175)))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)) (-13 (-29 |#1|) (-1199) (-959))) (T -804))
+((-1554 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-1 *5 *5)) (-5 *1 (-804 *4 *5)) (-4 *5 (-13 (-29 *4) (-1199) (-959))))) (-2265 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *1 (-804 *4 *2)) (-4 *2 (-13 (-29 *4) (-1199) (-959))))) (-3762 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *1 (-804 *4 *2)) (-4 *2 (-13 (-29 *4) (-1199) (-959))))))
+(-10 -7 (-15 -3762 (|#2| |#2| (-1175))) (-15 -2265 (|#2| |#2| (-1175))) (-15 -1554 ((-1 |#2| |#2|) (-1175))))
+((-4159 (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381) (-381)) 131) (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381)) 132) (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-644 (-381)) (-381)) 134) (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-381)) 136) (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-381)) 137) (((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381))) 139) (((-1035) (-808) (-1062)) 123) (((-1035) (-808)) 124)) (-3245 (((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808) (-1062)) 83) (((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808)) 85)))
+(((-805) (-10 -7 (-15 -4159 ((-1035) (-808))) (-15 -4159 ((-1035) (-808) (-1062))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-381))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-381))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-644 (-381)) (-381))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381) (-381))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808) (-1062))))) (T -805))
+((-3245 (*1 *2 *3 *4) (-12 (-5 *3 (-808)) (-5 *4 (-1062)) (-5 *2 (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-805)))) (-3245 (*1 *2 *3) (-12 (-5 *3 (-808)) (-5 *2 (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-805)))) (-4159 (*1 *2 *3 *4 *4 *5 *6 *5 *4 *4) (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381))) (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-4159 (*1 *2 *3 *4 *4 *5 *6 *5 *4) (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381))) (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-4159 (*1 *2 *3 *4 *4 *5 *5 *4) (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-4159 (*1 *2 *3 *4 *4 *5 *6 *4) (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381))) (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-4159 (*1 *2 *3 *4 *4 *5 *4) (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-4159 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-808)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-805)))) (-4159 (*1 *2 *3) (-12 (-5 *3 (-808)) (-5 *2 (-1035)) (-5 *1 (-805)))))
+(-10 -7 (-15 -4159 ((-1035) (-808))) (-15 -4159 ((-1035) (-808) (-1062))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-381))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-381))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-644 (-381)) (-381))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381))) (-15 -4159 ((-1035) (-1264 (-317 (-381))) (-381) (-381) (-644 (-381)) (-317 (-381)) (-644 (-381)) (-381) (-381))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-808) (-1062))))
+((-4148 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1575 (-644 |#4|))) (-653 |#4|) |#4|) 35)))
+(((-806 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4148 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1575 (-644 |#4|))) (-653 |#4|) |#4|))) (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|)) (T -806))
+((-4148 (*1 *2 *3 *4) (-12 (-5 *3 (-653 *4)) (-4 *4 (-344 *5 *6 *7)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4)))) (-5 *1 (-806 *5 *6 *7 *4)))))
+(-10 -7 (-15 -4148 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1575 (-644 |#4|))) (-653 |#4|) |#4|)))
+((-2110 (((-2 (|:| -4257 |#3|) (|:| |rh| (-644 (-409 |#2|)))) |#4| (-644 (-409 |#2|))) 53)) (-2392 (((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#4| |#2|) 62) (((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#4|) 61) (((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#3| |#2|) 20) (((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#3|) 21)) (-2665 ((|#2| |#4| |#1|) 63) ((|#2| |#3| |#1|) 28)) (-3682 ((|#2| |#3| (-644 (-409 |#2|))) 113) (((-3 |#2| "failed") |#3| (-409 |#2|)) 109)))
+(((-807 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3682 ((-3 |#2| "failed") |#3| (-409 |#2|))) (-15 -3682 (|#2| |#3| (-644 (-409 |#2|)))) (-15 -2392 ((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#3|)) (-15 -2392 ((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#3| |#2|)) (-15 -2665 (|#2| |#3| |#1|)) (-15 -2392 ((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#4|)) (-15 -2392 ((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#4| |#2|)) (-15 -2665 (|#2| |#4| |#1|)) (-15 -2110 ((-2 (|:| -4257 |#3|) (|:| |rh| (-644 (-409 |#2|)))) |#4| (-644 (-409 |#2|))))) (-13 (-365) (-147) (-1038 (-409 (-566)))) (-1240 |#1|) (-656 |#2|) (-656 (-409 |#2|))) (T -807))
+((-2110 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-2 (|:| -4257 *7) (|:| |rh| (-644 (-409 *6))))) (-5 *1 (-807 *5 *6 *7 *3)) (-5 *4 (-644 (-409 *6))) (-4 *7 (-656 *6)) (-4 *3 (-656 (-409 *6))))) (-2665 (*1 *2 *3 *4) (-12 (-4 *2 (-1240 *4)) (-5 *1 (-807 *4 *2 *5 *3)) (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-656 *2)) (-4 *3 (-656 (-409 *2))))) (-2392 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *4 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -3174 *4) (|:| -2175 *4)))) (-5 *1 (-807 *5 *4 *6 *3)) (-4 *6 (-656 *4)) (-4 *3 (-656 (-409 *4))))) (-2392 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-2 (|:| -3174 *5) (|:| -2175 *5)))) (-5 *1 (-807 *4 *5 *6 *3)) (-4 *6 (-656 *5)) (-4 *3 (-656 (-409 *5))))) (-2665 (*1 *2 *3 *4) (-12 (-4 *2 (-1240 *4)) (-5 *1 (-807 *4 *2 *3 *5)) (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2)) (-4 *5 (-656 (-409 *2))))) (-2392 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *4 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -3174 *4) (|:| -2175 *4)))) (-5 *1 (-807 *5 *4 *3 *6)) (-4 *3 (-656 *4)) (-4 *6 (-656 (-409 *4))))) (-2392 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-2 (|:| -3174 *5) (|:| -2175 *5)))) (-5 *1 (-807 *4 *5 *3 *6)) (-4 *3 (-656 *5)) (-4 *6 (-656 (-409 *5))))) (-3682 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-409 *2))) (-4 *2 (-1240 *5)) (-5 *1 (-807 *5 *2 *3 *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2)) (-4 *6 (-656 (-409 *2))))) (-3682 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-409 *2)) (-4 *2 (-1240 *5)) (-5 *1 (-807 *5 *2 *3 *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2)) (-4 *6 (-656 *4)))))
+(-10 -7 (-15 -3682 ((-3 |#2| "failed") |#3| (-409 |#2|))) (-15 -3682 (|#2| |#3| (-644 (-409 |#2|)))) (-15 -2392 ((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#3|)) (-15 -2392 ((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#3| |#2|)) (-15 -2665 (|#2| |#3| |#1|)) (-15 -2392 ((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#4|)) (-15 -2392 ((-644 (-2 (|:| -3174 |#2|) (|:| -2175 |#2|))) |#4| |#2|)) (-15 -2665 (|#2| |#4| |#1|)) (-15 -2110 ((-2 (|:| -4257 |#3|) (|:| |rh| (-644 (-409 |#2|)))) |#4| (-644 (-409 |#2|)))))
+((-3009 (((-112) $ $) NIL)) (-1867 (((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $) 13)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 15) (($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) 12)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-808) (-13 (-1099) (-10 -8 (-15 -3780 ($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1867 ((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $))))) (T -808))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-808)))) (-1867 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225)))) (-5 *1 (-808)))))
+(-13 (-1099) (-10 -8 (-15 -3780 ($ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))))) (-15 -1867 ((-2 (|:| |xinit| (-225)) (|:| |xend| (-225)) (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225))) (|:| |abserr| (-225)) (|:| |relerr| (-225))) $))))
+((-3566 (((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -4257 |#3|))) |#3| (-1 (-644 |#2|) |#2| (-1171 |#2|)) (-1 (-420 |#2|) |#2|)) 157)) (-2958 (((-644 (-2 (|:| |poly| |#2|) (|:| -4257 |#3|))) |#3| (-1 (-644 |#1|) |#2|)) 56)) (-3089 (((-644 (-2 (|:| |deg| (-771)) (|:| -4257 |#2|))) |#3|) 127)) (-2442 ((|#2| |#3|) 45)) (-3706 (((-644 (-2 (|:| -2460 |#1|) (|:| -4257 |#3|))) |#3| (-1 (-644 |#1|) |#2|)) 105)) (-1680 ((|#3| |#3| (-409 |#2|)) 76) ((|#3| |#3| |#2|) 102)))
+(((-809 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2442 (|#2| |#3|)) (-15 -3089 ((-644 (-2 (|:| |deg| (-771)) (|:| -4257 |#2|))) |#3|)) (-15 -3706 ((-644 (-2 (|:| -2460 |#1|) (|:| -4257 |#3|))) |#3| (-1 (-644 |#1|) |#2|))) (-15 -2958 ((-644 (-2 (|:| |poly| |#2|) (|:| -4257 |#3|))) |#3| (-1 (-644 |#1|) |#2|))) (-15 -3566 ((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -4257 |#3|))) |#3| (-1 (-644 |#2|) |#2| (-1171 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -1680 (|#3| |#3| |#2|)) (-15 -1680 (|#3| |#3| (-409 |#2|)))) (-13 (-365) (-147) (-1038 (-409 (-566)))) (-1240 |#1|) (-656 |#2|) (-656 (-409 |#2|))) (T -809))
+((-1680 (*1 *2 *2 *3) (-12 (-5 *3 (-409 *5)) (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *1 (-809 *4 *5 *2 *6)) (-4 *2 (-656 *5)) (-4 *6 (-656 *3)))) (-1680 (*1 *2 *2 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-1240 *4)) (-5 *1 (-809 *4 *3 *2 *5)) (-4 *2 (-656 *3)) (-4 *5 (-656 (-409 *3))))) (-3566 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 (-644 *7) *7 (-1171 *7))) (-5 *5 (-1 (-420 *7) *7)) (-4 *7 (-1240 *6)) (-4 *6 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-5 *2 (-644 (-2 (|:| |frac| (-409 *7)) (|:| -4257 *3)))) (-5 *1 (-809 *6 *7 *3 *8)) (-4 *3 (-656 *7)) (-4 *8 (-656 (-409 *7))))) (-2958 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-2 (|:| |poly| *6) (|:| -4257 *3)))) (-5 *1 (-809 *5 *6 *3 *7)) (-4 *3 (-656 *6)) (-4 *7 (-656 (-409 *6))))) (-3706 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -2460 *5) (|:| -4257 *3)))) (-5 *1 (-809 *5 *6 *3 *7)) (-4 *3 (-656 *6)) (-4 *7 (-656 (-409 *6))))) (-3089 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-2 (|:| |deg| (-771)) (|:| -4257 *5)))) (-5 *1 (-809 *4 *5 *3 *6)) (-4 *3 (-656 *5)) (-4 *6 (-656 (-409 *5))))) (-2442 (*1 *2 *3) (-12 (-4 *2 (-1240 *4)) (-5 *1 (-809 *4 *2 *3 *5)) (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2)) (-4 *5 (-656 (-409 *2))))))
+(-10 -7 (-15 -2442 (|#2| |#3|)) (-15 -3089 ((-644 (-2 (|:| |deg| (-771)) (|:| -4257 |#2|))) |#3|)) (-15 -3706 ((-644 (-2 (|:| -2460 |#1|) (|:| -4257 |#3|))) |#3| (-1 (-644 |#1|) |#2|))) (-15 -2958 ((-644 (-2 (|:| |poly| |#2|) (|:| -4257 |#3|))) |#3| (-1 (-644 |#1|) |#2|))) (-15 -3566 ((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -4257 |#3|))) |#3| (-1 (-644 |#2|) |#2| (-1171 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -1680 (|#3| |#3| |#2|)) (-15 -1680 (|#3| |#3| (-409 |#2|))))
+((-1536 (((-2 (|:| -1575 (-644 (-409 |#2|))) (|:| -4193 (-689 |#1|))) (-654 |#2| (-409 |#2|)) (-644 (-409 |#2|))) 149) (((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1575 (-644 (-409 |#2|)))) (-654 |#2| (-409 |#2|)) (-409 |#2|)) 148) (((-2 (|:| -1575 (-644 (-409 |#2|))) (|:| -4193 (-689 |#1|))) (-653 (-409 |#2|)) (-644 (-409 |#2|))) 143) (((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1575 (-644 (-409 |#2|)))) (-653 (-409 |#2|)) (-409 |#2|)) 141)) (-4076 ((|#2| (-654 |#2| (-409 |#2|))) 89) ((|#2| (-653 (-409 |#2|))) 92)))
+(((-810 |#1| |#2|) (-10 -7 (-15 -1536 ((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1575 (-644 (-409 |#2|)))) (-653 (-409 |#2|)) (-409 |#2|))) (-15 -1536 ((-2 (|:| -1575 (-644 (-409 |#2|))) (|:| -4193 (-689 |#1|))) (-653 (-409 |#2|)) (-644 (-409 |#2|)))) (-15 -1536 ((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1575 (-644 (-409 |#2|)))) (-654 |#2| (-409 |#2|)) (-409 |#2|))) (-15 -1536 ((-2 (|:| -1575 (-644 (-409 |#2|))) (|:| -4193 (-689 |#1|))) (-654 |#2| (-409 |#2|)) (-644 (-409 |#2|)))) (-15 -4076 (|#2| (-653 (-409 |#2|)))) (-15 -4076 (|#2| (-654 |#2| (-409 |#2|))))) (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))) (-1240 |#1|)) (T -810))
+((-4076 (*1 *2 *3) (-12 (-5 *3 (-654 *2 (-409 *2))) (-4 *2 (-1240 *4)) (-5 *1 (-810 *4 *2)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))))) (-4076 (*1 *2 *3) (-12 (-5 *3 (-653 (-409 *2))) (-4 *2 (-1240 *4)) (-5 *1 (-810 *4 *2)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))))) (-1536 (*1 *2 *3 *4) (-12 (-5 *3 (-654 *6 (-409 *6))) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-2 (|:| -1575 (-644 (-409 *6))) (|:| -4193 (-689 *5)))) (-5 *1 (-810 *5 *6)) (-5 *4 (-644 (-409 *6))))) (-1536 (*1 *2 *3 *4) (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-409 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4)))) (-5 *1 (-810 *5 *6)))) (-1536 (*1 *2 *3 *4) (-12 (-5 *3 (-653 (-409 *6))) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-2 (|:| -1575 (-644 (-409 *6))) (|:| -4193 (-689 *5)))) (-5 *1 (-810 *5 *6)) (-5 *4 (-644 (-409 *6))))) (-1536 (*1 *2 *3 *4) (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-409 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4)))) (-5 *1 (-810 *5 *6)))))
+(-10 -7 (-15 -1536 ((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1575 (-644 (-409 |#2|)))) (-653 (-409 |#2|)) (-409 |#2|))) (-15 -1536 ((-2 (|:| -1575 (-644 (-409 |#2|))) (|:| -4193 (-689 |#1|))) (-653 (-409 |#2|)) (-644 (-409 |#2|)))) (-15 -1536 ((-2 (|:| |particular| (-3 (-409 |#2|) "failed")) (|:| -1575 (-644 (-409 |#2|)))) (-654 |#2| (-409 |#2|)) (-409 |#2|))) (-15 -1536 ((-2 (|:| -1575 (-644 (-409 |#2|))) (|:| -4193 (-689 |#1|))) (-654 |#2| (-409 |#2|)) (-644 (-409 |#2|)))) (-15 -4076 (|#2| (-653 (-409 |#2|)))) (-15 -4076 (|#2| (-654 |#2| (-409 |#2|)))))
+((-4178 (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) |#5| |#4|) 52)))
+(((-811 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4178 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) |#5| |#4|))) (-365) (-656 |#1|) (-1240 |#1|) (-724 |#1| |#3|) (-656 |#4|)) (T -811))
+((-4178 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *7 (-1240 *5)) (-4 *4 (-724 *5 *7)) (-5 *2 (-2 (|:| -4193 (-689 *6)) (|:| |vec| (-1264 *5)))) (-5 *1 (-811 *5 *6 *7 *4 *3)) (-4 *6 (-656 *5)) (-4 *3 (-656 *4)))))
+(-10 -7 (-15 -4178 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) |#5| |#4|)))
+((-3566 (((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -4257 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|)) 47)) (-3588 (((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|)) 171 (|has| |#1| (-27))) (((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|))) 168 (|has| |#1| (-27))) (((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-420 |#2|) |#2|)) 172 (|has| |#1| (-27))) (((-644 (-409 |#2|)) (-653 (-409 |#2|))) 170 (|has| |#1| (-27))) (((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|)) 38) (((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|)) 39) (((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|)) 36) (((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|)) 37)) (-2958 (((-644 (-2 (|:| |poly| |#2|) (|:| -4257 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|)) 99)))
+(((-812 |#1| |#2|) (-10 -7 (-15 -3588 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (-15 -3588 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|))) (-15 -3588 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (-15 -3588 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|))) (-15 -3566 ((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -4257 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -2958 ((-644 (-2 (|:| |poly| |#2|) (|:| -4257 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3588 ((-644 (-409 |#2|)) (-653 (-409 |#2|)))) (-15 -3588 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -3588 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)))) (-15 -3588 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|)))) |%noBranch|)) (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))) (-1240 |#1|)) (T -812))
+((-3588 (*1 *2 *3 *4) (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6)))) (-3588 (*1 *2 *3) (-12 (-5 *3 (-654 *5 (-409 *5))) (-4 *5 (-1240 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-644 (-409 *5))) (-5 *1 (-812 *4 *5)))) (-3588 (*1 *2 *3 *4) (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5)) (-4 *5 (-27)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6)))) (-3588 (*1 *2 *3) (-12 (-5 *3 (-653 (-409 *5))) (-4 *5 (-1240 *4)) (-4 *4 (-27)) (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-644 (-409 *5))) (-5 *1 (-812 *4 *5)))) (-2958 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-2 (|:| |poly| *6) (|:| -4257 (-654 *6 (-409 *6)))))) (-5 *1 (-812 *5 *6)) (-5 *3 (-654 *6 (-409 *6))))) (-3566 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-5 *2 (-644 (-2 (|:| |frac| (-409 *6)) (|:| -4257 (-654 *6 (-409 *6)))))) (-5 *1 (-812 *5 *6)) (-5 *3 (-654 *6 (-409 *6))))) (-3588 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-654 *7 (-409 *7))) (-5 *4 (-1 (-644 *6) *7)) (-5 *5 (-1 (-420 *7) *7)) (-4 *6 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *7 (-1240 *6)) (-5 *2 (-644 (-409 *7))) (-5 *1 (-812 *6 *7)))) (-3588 (*1 *2 *3 *4) (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6)))) (-3588 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-653 (-409 *7))) (-5 *4 (-1 (-644 *6) *7)) (-5 *5 (-1 (-420 *7) *7)) (-4 *6 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *7 (-1240 *6)) (-5 *2 (-644 (-409 *7))) (-5 *1 (-812 *6 *7)))) (-3588 (*1 *2 *3 *4) (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-1 (-644 *5) *6)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5)) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6)))))
+(-10 -7 (-15 -3588 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (-15 -3588 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|))) (-15 -3588 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (-15 -3588 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|) (-1 (-420 |#2|) |#2|))) (-15 -3566 ((-644 (-2 (|:| |frac| (-409 |#2|)) (|:| -4257 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -2958 ((-644 (-2 (|:| |poly| |#2|) (|:| -4257 (-654 |#2| (-409 |#2|))))) (-654 |#2| (-409 |#2|)) (-1 (-644 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3588 ((-644 (-409 |#2|)) (-653 (-409 |#2|)))) (-15 -3588 ((-644 (-409 |#2|)) (-653 (-409 |#2|)) (-1 (-420 |#2|) |#2|))) (-15 -3588 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)))) (-15 -3588 ((-644 (-409 |#2|)) (-654 |#2| (-409 |#2|)) (-1 (-420 |#2|) |#2|)))) |%noBranch|))
+((-4099 (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) (-689 |#2|) (-1264 |#1|)) 110) (((-2 (|:| A (-689 |#1|)) (|:| |eqs| (-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)) (|:| -4257 |#2|) (|:| |rh| |#1|))))) (-689 |#1|) (-1264 |#1|)) 15)) (-2766 (((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|)))) (-689 |#2|) (-1264 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1575 (-644 |#1|))) |#2| |#1|)) 116)) (-4159 (((-3 (-2 (|:| |particular| (-1264 |#1|)) (|:| -1575 (-689 |#1|))) "failed") (-689 |#1|) (-1264 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1575 (-644 |#1|))) "failed") |#2| |#1|)) 52)))
+(((-813 |#1| |#2|) (-10 -7 (-15 -4099 ((-2 (|:| A (-689 |#1|)) (|:| |eqs| (-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)) (|:| -4257 |#2|) (|:| |rh| |#1|))))) (-689 |#1|) (-1264 |#1|))) (-15 -4099 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) (-689 |#2|) (-1264 |#1|))) (-15 -4159 ((-3 (-2 (|:| |particular| (-1264 |#1|)) (|:| -1575 (-689 |#1|))) "failed") (-689 |#1|) (-1264 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1575 (-644 |#1|))) "failed") |#2| |#1|))) (-15 -2766 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|)))) (-689 |#2|) (-1264 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1575 (-644 |#1|))) |#2| |#1|)))) (-365) (-656 |#1|)) (T -813))
+((-2766 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -1575 (-644 *6))) *7 *6)) (-4 *6 (-365)) (-4 *7 (-656 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1264 *6) "failed")) (|:| -1575 (-644 (-1264 *6))))) (-5 *1 (-813 *6 *7)) (-5 *4 (-1264 *6)))) (-4159 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -1575 (-644 *6))) "failed") *7 *6)) (-4 *6 (-365)) (-4 *7 (-656 *6)) (-5 *2 (-2 (|:| |particular| (-1264 *6)) (|:| -1575 (-689 *6)))) (-5 *1 (-813 *6 *7)) (-5 *3 (-689 *6)) (-5 *4 (-1264 *6)))) (-4099 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-4 *6 (-656 *5)) (-5 *2 (-2 (|:| -4193 (-689 *6)) (|:| |vec| (-1264 *5)))) (-5 *1 (-813 *5 *6)) (-5 *3 (-689 *6)) (-5 *4 (-1264 *5)))) (-4099 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-5 *2 (-2 (|:| A (-689 *5)) (|:| |eqs| (-644 (-2 (|:| C (-689 *5)) (|:| |g| (-1264 *5)) (|:| -4257 *6) (|:| |rh| *5)))))) (-5 *1 (-813 *5 *6)) (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)) (-4 *6 (-656 *5)))))
+(-10 -7 (-15 -4099 ((-2 (|:| A (-689 |#1|)) (|:| |eqs| (-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)) (|:| -4257 |#2|) (|:| |rh| |#1|))))) (-689 |#1|) (-1264 |#1|))) (-15 -4099 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#1|))) (-689 |#2|) (-1264 |#1|))) (-15 -4159 ((-3 (-2 (|:| |particular| (-1264 |#1|)) (|:| -1575 (-689 |#1|))) "failed") (-689 |#1|) (-1264 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1575 (-644 |#1|))) "failed") |#2| |#1|))) (-15 -2766 ((-2 (|:| |particular| (-3 (-1264 |#1|) "failed")) (|:| -1575 (-644 (-1264 |#1|)))) (-689 |#2|) (-1264 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1575 (-644 |#1|))) |#2| |#1|))))
+((-3639 (((-689 |#1|) (-644 |#1|) (-771)) 14) (((-689 |#1|) (-644 |#1|)) 15)) (-3377 (((-3 (-1264 |#1|) "failed") |#2| |#1| (-644 |#1|)) 39)) (-2951 (((-3 |#1| "failed") |#2| |#1| (-644 |#1|) (-1 |#1| |#1|)) 46)))
+(((-814 |#1| |#2|) (-10 -7 (-15 -3639 ((-689 |#1|) (-644 |#1|))) (-15 -3639 ((-689 |#1|) (-644 |#1|) (-771))) (-15 -3377 ((-3 (-1264 |#1|) "failed") |#2| |#1| (-644 |#1|))) (-15 -2951 ((-3 |#1| "failed") |#2| |#1| (-644 |#1|) (-1 |#1| |#1|)))) (-365) (-656 |#1|)) (T -814))
+((-2951 (*1 *2 *3 *2 *4 *5) (|partial| -12 (-5 *4 (-644 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-365)) (-5 *1 (-814 *2 *3)) (-4 *3 (-656 *2)))) (-3377 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-644 *4)) (-4 *4 (-365)) (-5 *2 (-1264 *4)) (-5 *1 (-814 *4 *3)) (-4 *3 (-656 *4)))) (-3639 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-771)) (-4 *5 (-365)) (-5 *2 (-689 *5)) (-5 *1 (-814 *5 *6)) (-4 *6 (-656 *5)))) (-3639 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-365)) (-5 *2 (-689 *4)) (-5 *1 (-814 *4 *5)) (-4 *5 (-656 *4)))))
+(-10 -7 (-15 -3639 ((-689 |#1|) (-644 |#1|))) (-15 -3639 ((-689 |#1|) (-644 |#1|) (-771))) (-15 -3377 ((-3 (-1264 |#1|) "failed") |#2| |#1| (-644 |#1|))) (-15 -2951 ((-3 |#1| "failed") |#2| |#1| (-644 |#1|) (-1 |#1| |#1|))))
+((-3009 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-3015 (((-112) $) NIL (|has| |#2| (-131)))) (-3047 (($ (-921)) NIL (|has| |#2| (-1049)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-4385 (($ $ $) NIL (|has| |#2| (-793)))) (-4014 (((-3 $ "failed") $ $) NIL (|has| |#2| (-131)))) (-1574 (((-112) $ (-771)) NIL)) (-4070 (((-771)) NIL (|has| |#2| (-370)))) (-2899 (((-566) $) NIL (|has| |#2| (-848)))) (-3916 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (((-3 |#2| "failed") $) NIL (|has| |#2| (-1099)))) (-1867 (((-566) $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) ((|#2| $) NIL (|has| |#2| (-1099)))) (-2210 (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#2| (-1049)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL (|has| |#2| (-1049))) (((-689 |#2|) (-689 $)) NIL (|has| |#2| (-1049)))) (-2928 (((-3 $ "failed") $) NIL (|has| |#2| (-726)))) (-1618 (($) NIL (|has| |#2| (-370)))) (-3128 ((|#2| $ (-566) |#2|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#2| $ (-566)) NIL)) (-1533 (((-112) $) NIL (|has| |#2| (-848)))) (-3799 (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-3466 (((-112) $) NIL (|has| |#2| (-726)))) (-2917 (((-112) $) NIL (|has| |#2| (-848)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3276 (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3117 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-1299 (((-921) $) NIL (|has| |#2| (-370)))) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#2| (-1099)))) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-2208 (($ (-921)) NIL (|has| |#2| (-370)))) (-4056 (((-1119) $) NIL (|has| |#2| (-1099)))) (-4101 ((|#2| $) NIL (|has| (-566) (-850)))) (-3750 (($ $ |#2|) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#2| $ (-566) |#2|) NIL) ((|#2| $ (-566)) NIL)) (-4086 ((|#2| $ $) NIL (|has| |#2| (-1049)))) (-2512 (($ (-1264 |#2|)) NIL)) (-2012 (((-134)) NIL (|has| |#2| (-365)))) (-2578 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-4067 (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-1264 |#2|) $) NIL) (($ (-566)) NIL (-2805 (-12 (|has| |#2| (-1038 (-566))) (|has| |#2| (-1099))) (|has| |#2| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#2| (-1038 (-409 (-566)))) (|has| |#2| (-1099)))) (($ |#2|) NIL (|has| |#2| (-1099))) (((-862) $) NIL (|has| |#2| (-613 (-862))))) (-3996 (((-771)) NIL (|has| |#2| (-1049)) CONST)) (-3801 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-1583 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3333 (($ $) NIL (|has| |#2| (-848)))) (-2493 (($) NIL (|has| |#2| (-131)) CONST)) (-4333 (($) NIL (|has| |#2| (-726)) CONST)) (-2876 (($ $) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#2| (-233)) (|has| |#2| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#2| (-900 (-1175))) (|has| |#2| (-1049)))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#2| (-1049))) (($ $ (-1 |#2| |#2|)) NIL (|has| |#2| (-1049)))) (-3010 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2984 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2950 (((-112) $ $) NIL (|has| |#2| (-1099)))) (-2999 (((-112) $ $) NIL (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-2972 (((-112) $ $) 11 (-2805 (|has| |#2| (-793)) (|has| |#2| (-848))))) (-3062 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3051 (($ $ $) NIL (|has| |#2| (-1049))) (($ $) NIL (|has| |#2| (-1049)))) (-3040 (($ $ $) NIL (|has| |#2| (-25)))) (** (($ $ (-771)) NIL (|has| |#2| (-726))) (($ $ (-921)) NIL (|has| |#2| (-726)))) (* (($ (-566) $) NIL (|has| |#2| (-1049))) (($ $ $) NIL (|has| |#2| (-726))) (($ $ |#2|) NIL (|has| |#2| (-726))) (($ |#2| $) NIL (|has| |#2| (-726))) (($ (-771) $) NIL (|has| |#2| (-131))) (($ (-921) $) NIL (|has| |#2| (-25)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-815 |#1| |#2| |#3|) (-238 |#1| |#2|) (-771) (-793) (-1 (-112) (-1264 |#2|) (-1264 |#2|))) (T -815))
NIL
(-238 |#1| |#2|)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3598 (((-644 (-771)) $) NIL) (((-644 (-771)) $ (-1175)) NIL)) (-3467 (((-771) $) NIL) (((-771) $ (-1175)) NIL)) (-2540 (((-644 (-818 (-1175))) $) NIL)) (-2358 (((-1171 $) $ (-818 (-1175))) NIL) (((-1171 |#1|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-818 (-1175)))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2857 (($ $) NIL (|has| |#1| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-3456 (($ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-818 (-1175)) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL) (((-3 (-1124 |#1| (-1175)) "failed") $) NIL)) (-1756 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-818 (-1175)) $) NIL) (((-1175) $) NIL) (((-1124 |#1| (-1175)) $) NIL)) (-1552 (($ $ $ (-818 (-1175))) NIL (|has| |#1| (-172)))) (-3577 (($ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#1| (-454))) (($ $ (-818 (-1175))) NIL (|has| |#1| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#1| (-909)))) (-2804 (($ $ |#1| (-533 (-818 (-1175))) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-818 (-1175)) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-818 (-1175)) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-2716 (((-771) $ (-1175)) NIL) (((-771) $) NIL)) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-2530 (($ (-1171 |#1|) (-818 (-1175))) NIL) (($ (-1171 $) (-818 (-1175))) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-533 (-818 (-1175)))) NIL) (($ $ (-818 (-1175)) (-771)) NIL) (($ $ (-644 (-818 (-1175))) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-818 (-1175))) NIL)) (-3251 (((-533 (-818 (-1175))) $) NIL) (((-771) $ (-818 (-1175))) NIL) (((-644 (-771)) $ (-644 (-818 (-1175)))) NIL)) (-2132 (($ (-1 (-533 (-818 (-1175))) (-533 (-818 (-1175)))) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3646 (((-1 $ (-771)) (-1175)) NIL) (((-1 $ (-771)) $) NIL (|has| |#1| (-233)))) (-3339 (((-3 (-818 (-1175)) "failed") $) NIL)) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-3919 (((-818 (-1175)) $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2878 (((-1157) $) NIL)) (-1726 (((-112) $) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-818 (-1175))) (|:| -3250 (-771))) "failed") $) NIL)) (-1960 (($ $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 ((|#1| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-818 (-1175)) |#1|) NIL) (($ $ (-644 (-818 (-1175))) (-644 |#1|)) NIL) (($ $ (-818 (-1175)) $) NIL) (($ $ (-644 (-818 (-1175))) (-644 $)) NIL) (($ $ (-1175) $) NIL (|has| |#1| (-233))) (($ $ (-644 (-1175)) (-644 $)) NIL (|has| |#1| (-233))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-233))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-233)))) (-2408 (($ $ (-818 (-1175))) NIL (|has| |#1| (-172)))) (-2862 (($ $ (-818 (-1175))) NIL) (($ $ (-644 (-818 (-1175)))) NIL) (($ $ (-818 (-1175)) (-771)) NIL) (($ $ (-644 (-818 (-1175))) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1496 (((-644 (-1175)) $) NIL)) (-3992 (((-533 (-818 (-1175))) $) NIL) (((-771) $ (-818 (-1175))) NIL) (((-644 (-771)) $ (-644 (-818 (-1175)))) NIL) (((-771) $ (-1175)) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-818 (-1175)) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-818 (-1175)) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-818 (-1175)) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3181 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ (-818 (-1175))) NIL (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-818 (-1175))) NIL) (($ (-1175)) NIL) (($ (-1124 |#1| (-1175))) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-533 (-818 (-1175)))) NIL) (($ $ (-818 (-1175)) (-771)) NIL) (($ $ (-644 (-818 (-1175))) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-818 (-1175))) NIL) (($ $ (-644 (-818 (-1175)))) NIL) (($ $ (-818 (-1175)) (-771)) NIL) (($ $ (-644 (-818 (-1175))) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2658 (((-644 (-771)) $) NIL) (((-644 (-771)) $ (-1175)) NIL)) (-3856 (((-771) $) NIL) (((-771) $ (-1175)) NIL)) (-2608 (((-644 (-818 (-1175))) $) NIL)) (-2438 (((-1171 $) $ (-818 (-1175))) NIL) (((-1171 |#1|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-818 (-1175)))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2179 (($ $) NIL (|has| |#1| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-3759 (($ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-818 (-1175)) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL) (((-3 (-1124 |#1| (-1175)) "failed") $) NIL)) (-1867 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-818 (-1175)) $) NIL) (((-1175) $) NIL) (((-1124 |#1| (-1175)) $) NIL)) (-2662 (($ $ $ (-818 (-1175))) NIL (|has| |#1| (-172)))) (-3645 (($ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#1| (-454))) (($ $ (-818 (-1175))) NIL (|has| |#1| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#1| (-909)))) (-2871 (($ $ |#1| (-533 (-818 (-1175))) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-818 (-1175)) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-818 (-1175)) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3227 (((-771) $ (-1175)) NIL) (((-771) $) NIL)) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2597 (($ (-1171 |#1|) (-818 (-1175))) NIL) (($ (-1171 $) (-818 (-1175))) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-533 (-818 (-1175)))) NIL) (($ $ (-818 (-1175)) (-771)) NIL) (($ $ (-644 (-818 (-1175))) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-818 (-1175))) NIL)) (-2466 (((-533 (-818 (-1175))) $) NIL) (((-771) $ (-818 (-1175))) NIL) (((-644 (-771)) $ (-644 (-818 (-1175)))) NIL)) (-2443 (($ (-1 (-533 (-818 (-1175))) (-533 (-818 (-1175)))) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1894 (((-1 $ (-771)) (-1175)) NIL) (((-1 $ (-771)) $) NIL (|has| |#1| (-233)))) (-1984 (((-3 (-818 (-1175)) "failed") $) NIL)) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-4144 (((-818 (-1175)) $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2402 (((-1157) $) NIL)) (-3814 (((-112) $) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-818 (-1175))) (|:| -2456 (-771))) "failed") $) NIL)) (-1486 (($ $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 ((|#1| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-818 (-1175)) |#1|) NIL) (($ $ (-644 (-818 (-1175))) (-644 |#1|)) NIL) (($ $ (-818 (-1175)) $) NIL) (($ $ (-644 (-818 (-1175))) (-644 $)) NIL) (($ $ (-1175) $) NIL (|has| |#1| (-233))) (($ $ (-644 (-1175)) (-644 $)) NIL (|has| |#1| (-233))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-233))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-233)))) (-3309 (($ $ (-818 (-1175))) NIL (|has| |#1| (-172)))) (-2578 (($ $ (-818 (-1175))) NIL) (($ $ (-644 (-818 (-1175)))) NIL) (($ $ (-818 (-1175)) (-771)) NIL) (($ $ (-644 (-818 (-1175))) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3302 (((-644 (-1175)) $) NIL)) (-2108 (((-533 (-818 (-1175))) $) NIL) (((-771) $ (-818 (-1175))) NIL) (((-644 (-771)) $ (-644 (-818 (-1175)))) NIL) (((-771) $ (-1175)) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-818 (-1175)) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-818 (-1175)) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-818 (-1175)) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3042 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ (-818 (-1175))) NIL (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-818 (-1175))) NIL) (($ (-1175)) NIL) (($ (-1124 |#1| (-1175))) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-533 (-818 (-1175)))) NIL) (($ $ (-818 (-1175)) (-771)) NIL) (($ $ (-644 (-818 (-1175))) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-818 (-1175))) NIL) (($ $ (-644 (-818 (-1175)))) NIL) (($ $ (-818 (-1175)) (-771)) NIL) (($ $ (-644 (-818 (-1175))) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-816 |#1|) (-13 (-254 |#1| (-1175) (-818 (-1175)) (-533 (-818 (-1175)))) (-1038 (-1124 |#1| (-1175)))) (-1049)) (T -816))
NIL
(-13 (-254 |#1| (-1175) (-818 (-1175)) (-533 (-818 (-1175)))) (-1038 (-1124 |#1| (-1175))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#2| (-365)))) (-3653 (($ $) NIL (|has| |#2| (-365)))) (-2152 (((-112) $) NIL (|has| |#2| (-365)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL (|has| |#2| (-365)))) (-1370 (((-420 $) $) NIL (|has| |#2| (-365)))) (-1561 (((-112) $ $) NIL (|has| |#2| (-365)))) (-2342 (($) NIL T CONST)) (-2926 (($ $ $) NIL (|has| |#2| (-365)))) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL (|has| |#2| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#2| (-365)))) (-2635 (((-112) $) NIL (|has| |#2| (-365)))) (-2741 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#2| (-365)))) (-2184 (($ (-644 $)) NIL (|has| |#2| (-365))) (($ $ $) NIL (|has| |#2| (-365)))) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 20 (|has| |#2| (-365)))) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#2| (-365))) (($ $ $) NIL (|has| |#2| (-365)))) (-2391 (((-420 $) $) NIL (|has| |#2| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#2| (-365)))) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#2| (-365)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#2| (-365)))) (-1813 (((-771) $) NIL (|has| |#2| (-365)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#2| (-365)))) (-2862 (($ $ (-771)) NIL) (($ $) 13)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-409 (-566))) NIL (|has| |#2| (-365))) (($ $) NIL (|has| |#2| (-365)))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#2| (-365)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-771)) NIL) (($ $) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) 15 (|has| |#2| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL) (($ $ (-566)) 18 (|has| |#2| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-409 (-566)) $) NIL (|has| |#2| (-365))) (($ $ (-409 (-566))) NIL (|has| |#2| (-365)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#2| (-365)))) (-1968 (($ $) NIL (|has| |#2| (-365)))) (-2644 (((-112) $) NIL (|has| |#2| (-365)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL (|has| |#2| (-365)))) (-3271 (((-420 $) $) NIL (|has| |#2| (-365)))) (-2738 (((-112) $ $) NIL (|has| |#2| (-365)))) (-3877 (($) NIL T CONST)) (-2949 (($ $ $) NIL (|has| |#2| (-365)))) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL (|has| |#2| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#2| (-365)))) (-1784 (((-112) $) NIL (|has| |#2| (-365)))) (-3466 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#2| (-365)))) (-2197 (($ (-644 $)) NIL (|has| |#2| (-365))) (($ $ $) NIL (|has| |#2| (-365)))) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 20 (|has| |#2| (-365)))) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#2| (-365))) (($ $ $) NIL (|has| |#2| (-365)))) (-2473 (((-420 $) $) NIL (|has| |#2| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#2| (-365)))) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#2| (-365)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#2| (-365)))) (-3470 (((-771) $) NIL (|has| |#2| (-365)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#2| (-365)))) (-2578 (($ $ (-771)) NIL) (($ $) 13)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-409 (-566))) NIL (|has| |#2| (-365))) (($ $) NIL (|has| |#2| (-365)))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#2| (-365)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-771)) NIL) (($ $) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) 15 (|has| |#2| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL) (($ $ (-566)) 18 (|has| |#2| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ $) NIL) (($ (-409 (-566)) $) NIL (|has| |#2| (-365))) (($ $ (-409 (-566))) NIL (|has| |#2| (-365)))))
(((-817 |#1| |#2| |#3|) (-13 (-111 $ $) (-233) (-492 |#2|) (-10 -7 (IF (|has| |#2| (-365)) (-6 (-365)) |%noBranch|))) (-1099) (-900 |#1|) |#1|) (T -817))
NIL
(-13 (-111 $ $) (-233) (-492 |#2|) (-10 -7 (IF (|has| |#2| (-365)) (-6 (-365)) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-3467 (((-771) $) NIL)) (-1353 ((|#1| $) 10)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-2716 (((-771) $) 11)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3646 (($ |#1| (-771)) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2862 (($ $) NIL) (($ $ (-771)) NIL)) (-2512 (((-862) $) NIL) (($ |#1|) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3856 (((-771) $) NIL)) (-1401 ((|#1| $) 10)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-3227 (((-771) $) 11)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-1894 (($ |#1| (-771)) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2578 (($ $) NIL) (($ $ (-771)) NIL)) (-3780 (((-862) $) NIL) (($ |#1|) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
(((-818 |#1|) (-267 |#1|) (-850)) (T -818))
NIL
(-267 |#1|)
-((-2985 (((-112) $ $) NIL)) (-1719 (((-644 |#1|) $) 38)) (-4025 (((-771) $) NIL)) (-2342 (($) NIL T CONST)) (-2847 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 28)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-4076 (($ $) 42)) (-1579 (((-3 $ "failed") $) NIL)) (-3093 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-2741 (((-112) $) NIL)) (-2647 ((|#1| $ (-566)) NIL)) (-1571 (((-771) $ (-566)) NIL)) (-1867 (($ $) 54)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-1388 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 25)) (-3605 (((-112) $ $) 51)) (-3822 (((-771) $) 34)) (-2878 (((-1157) $) NIL)) (-2009 (($ $ $) NIL)) (-1997 (($ $ $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 ((|#1| $) 41)) (-4236 (((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-771)))) $) NIL)) (-2961 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-2512 (((-862) $) NIL) (($ |#1|) NIL)) (-3122 (((-112) $ $) NIL)) (-2495 (($) 20 T CONST)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 53)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ |#1| (-771)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-819 |#1|) (-13 (-846) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-771))) (-15 -4062 (|#1| $)) (-15 -4076 ($ $)) (-15 -1867 ($ $)) (-15 -3605 ((-112) $ $)) (-15 -1997 ($ $ $)) (-15 -2009 ($ $ $)) (-15 -1388 ((-3 $ "failed") $ $)) (-15 -2847 ((-3 $ "failed") $ $)) (-15 -1388 ((-3 $ "failed") $ |#1|)) (-15 -2847 ((-3 $ "failed") $ |#1|)) (-15 -2961 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3093 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -4025 ((-771) $)) (-15 -1571 ((-771) $ (-566))) (-15 -2647 (|#1| $ (-566))) (-15 -4236 ((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-771)))) $)) (-15 -3822 ((-771) $)) (-15 -1719 ((-644 |#1|) $)))) (-850)) (T -819))
-((* (*1 *1 *2 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-4062 (*1 *2 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-4076 (*1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-1867 (*1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-3605 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-1997 (*1 *1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-2009 (*1 *1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-1388 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-2847 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-1388 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-2847 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-2961 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-819 *3)) (|:| |rm| (-819 *3)))) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-3093 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-819 *3)) (|:| |mm| (-819 *3)) (|:| |rm| (-819 *3)))) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-4025 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-1571 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-771)) (-5 *1 (-819 *4)) (-4 *4 (-850)))) (-2647 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-4236 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 (-771))))) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-3822 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-1719 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-819 *3)) (-4 *3 (-850)))))
-(-13 (-846) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-771))) (-15 -4062 (|#1| $)) (-15 -4076 ($ $)) (-15 -1867 ($ $)) (-15 -3605 ((-112) $ $)) (-15 -1997 ($ $ $)) (-15 -2009 ($ $ $)) (-15 -1388 ((-3 $ "failed") $ $)) (-15 -2847 ((-3 $ "failed") $ $)) (-15 -1388 ((-3 $ "failed") $ |#1|)) (-15 -2847 ((-3 $ "failed") $ |#1|)) (-15 -2961 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3093 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -4025 ((-771) $)) (-15 -1571 ((-771) $ (-566))) (-15 -2647 (|#1| $ (-566))) (-15 -4236 ((-644 (-2 (|:| |gen| |#1|) (|:| -3613 (-771)))) $)) (-15 -3822 ((-771) $)) (-15 -1719 ((-644 |#1|) $))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2807 (((-566) $) 59)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-1684 (((-112) $) 57)) (-2741 (((-112) $) 35)) (-1578 (((-112) $) 58)) (-1439 (($ $ $) 56)) (-3059 (($ $ $) 55)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2972 (((-3 $ "failed") $ $) 48)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-1346 (($ $) 60)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2998 (((-112) $ $) 53)) (-2974 (((-112) $ $) 52)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 54)) (-2962 (((-112) $ $) 51)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3009 (((-112) $ $) NIL)) (-1824 (((-644 |#1|) $) 38)) (-4070 (((-771) $) NIL)) (-3877 (($) NIL T CONST)) (-2087 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 28)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-4112 (($ $) 42)) (-2928 (((-3 $ "failed") $) NIL)) (-1687 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-3466 (((-112) $) NIL)) (-3749 ((|#1| $ (-566)) NIL)) (-2840 (((-771) $ (-566)) NIL)) (-2781 (($ $) 54)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-1987 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 25)) (-2716 (((-112) $ $) 51)) (-3945 (((-771) $) 34)) (-2402 (((-1157) $) NIL)) (-3654 (($ $ $) NIL)) (-1649 (($ $ $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 ((|#1| $) 41)) (-2670 (((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-771)))) $) NIL)) (-2983 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-3780 (((-862) $) NIL) (($ |#1|) NIL)) (-3801 (((-112) $ $) NIL)) (-4333 (($) 20 T CONST)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 53)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ |#1| (-771)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-819 |#1|) (-13 (-846) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-771))) (-15 -4101 (|#1| $)) (-15 -4112 ($ $)) (-15 -2781 ($ $)) (-15 -2716 ((-112) $ $)) (-15 -1649 ($ $ $)) (-15 -3654 ($ $ $)) (-15 -1987 ((-3 $ "failed") $ $)) (-15 -2087 ((-3 $ "failed") $ $)) (-15 -1987 ((-3 $ "failed") $ |#1|)) (-15 -2087 ((-3 $ "failed") $ |#1|)) (-15 -2983 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1687 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -4070 ((-771) $)) (-15 -2840 ((-771) $ (-566))) (-15 -3749 (|#1| $ (-566))) (-15 -2670 ((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-771)))) $)) (-15 -3945 ((-771) $)) (-15 -1824 ((-644 |#1|) $)))) (-850)) (T -819))
+((* (*1 *1 *2 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (* (*1 *1 *1 *2) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (** (*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-4101 (*1 *2 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-4112 (*1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-2781 (*1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-2716 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-1649 (*1 *1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-3654 (*1 *1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-1987 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-2087 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-1987 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-2087 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-2983 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-819 *3)) (|:| |rm| (-819 *3)))) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-1687 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |lm| (-819 *3)) (|:| |mm| (-819 *3)) (|:| |rm| (-819 *3)))) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-4070 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-2840 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-771)) (-5 *1 (-819 *4)) (-4 *4 (-850)))) (-3749 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-819 *2)) (-4 *2 (-850)))) (-2670 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 (-771))))) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-3945 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-819 *3)) (-4 *3 (-850)))) (-1824 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-819 *3)) (-4 *3 (-850)))))
+(-13 (-846) (-1038 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-771))) (-15 -4101 (|#1| $)) (-15 -4112 ($ $)) (-15 -2781 ($ $)) (-15 -2716 ((-112) $ $)) (-15 -1649 ($ $ $)) (-15 -3654 ($ $ $)) (-15 -1987 ((-3 $ "failed") $ $)) (-15 -2087 ((-3 $ "failed") $ $)) (-15 -1987 ((-3 $ "failed") $ |#1|)) (-15 -2087 ((-3 $ "failed") $ |#1|)) (-15 -2983 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1687 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -4070 ((-771) $)) (-15 -2840 ((-771) $ (-566))) (-15 -3749 (|#1| $ (-566))) (-15 -2670 ((-644 (-2 (|:| |gen| |#1|) (|:| -4337 (-771)))) $)) (-15 -3945 ((-771) $)) (-15 -1824 ((-644 |#1|) $))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-2899 (((-566) $) 59)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-1533 (((-112) $) 57)) (-3466 (((-112) $) 35)) (-2917 (((-112) $) 58)) (-1945 (($ $ $) 56)) (-2709 (($ $ $) 55)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2997 (((-3 $ "failed") $ $) 48)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-3333 (($ $) 60)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-3010 (((-112) $ $) 53)) (-2984 (((-112) $ $) 52)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 54)) (-2972 (((-112) $ $) 51)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-820) (-140)) (T -820))
NIL
(-13 (-558) (-848))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-291) . T) ((-558) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-717 $) . T) ((-726) . T) ((-791) . T) ((-792) . T) ((-794) . T) ((-795) . T) ((-848) . T) ((-850) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2528 (($ (-1119)) 7)) (-2237 (((-112) $ (-1157) (-1119)) 15)) (-2786 (((-822) $) 12)) (-2095 (((-822) $) 11)) (-3562 (((-1269) $) 9)) (-3739 (((-112) $ (-1119)) 16)))
-(((-821) (-10 -8 (-15 -2528 ($ (-1119))) (-15 -3562 ((-1269) $)) (-15 -2095 ((-822) $)) (-15 -2786 ((-822) $)) (-15 -2237 ((-112) $ (-1157) (-1119))) (-15 -3739 ((-112) $ (-1119))))) (T -821))
-((-3739 (*1 *2 *1 *3) (-12 (-5 *3 (-1119)) (-5 *2 (-112)) (-5 *1 (-821)))) (-2237 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-1119)) (-5 *2 (-112)) (-5 *1 (-821)))) (-2786 (*1 *2 *1) (-12 (-5 *2 (-822)) (-5 *1 (-821)))) (-2095 (*1 *2 *1) (-12 (-5 *2 (-822)) (-5 *1 (-821)))) (-3562 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-821)))) (-2528 (*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-821)))))
-(-10 -8 (-15 -2528 ($ (-1119))) (-15 -3562 ((-1269) $)) (-15 -2095 ((-822) $)) (-15 -2786 ((-822) $)) (-15 -2237 ((-112) $ (-1157) (-1119))) (-15 -3739 ((-112) $ (-1119))))
-((-1651 (((-1269) $ (-823)) 12)) (-1631 (((-1269) $ (-1175)) 32)) (-2119 (((-1269) $ (-1157) (-1157)) 34)) (-2281 (((-1269) $ (-1157)) 33)) (-1341 (((-1269) $) 19)) (-2396 (((-1269) $ (-566)) 28)) (-1866 (((-1269) $ (-225)) 30)) (-2188 (((-1269) $) 18)) (-3012 (((-1269) $) 26)) (-2602 (((-1269) $) 25)) (-2020 (((-1269) $) 23)) (-3255 (((-1269) $) 24)) (-1411 (((-1269) $) 22)) (-2584 (((-1269) $) 21)) (-3547 (((-1269) $) 20)) (-1730 (((-1269) $) 16)) (-3315 (((-1269) $) 17)) (-2219 (((-1269) $) 15)) (-2568 (((-1269) $) 14)) (-4342 (((-1269) $) 13)) (-2712 (($ (-1157) (-823)) 9)) (-4125 (($ (-1157) (-1157) (-823)) 8)) (-3623 (((-1175) $) 51)) (-1851 (((-1175) $) 55)) (-1980 (((-2 (|:| |cd| (-1157)) (|:| -2628 (-1157))) $) 54)) (-3763 (((-1157) $) 52)) (-3748 (((-1269) $) 41)) (-1814 (((-566) $) 49)) (-3297 (((-225) $) 50)) (-3169 (((-1269) $) 40)) (-3249 (((-1269) $) 48)) (-3457 (((-1269) $) 47)) (-1744 (((-1269) $) 45)) (-3414 (((-1269) $) 46)) (-2708 (((-1269) $) 44)) (-4063 (((-1269) $) 43)) (-3479 (((-1269) $) 42)) (-3365 (((-1269) $) 38)) (-1577 (((-1269) $) 39)) (-4383 (((-1269) $) 37)) (-3579 (((-1269) $) 36)) (-4252 (((-1269) $) 35)) (-1527 (((-1269) $) 11)))
-(((-822) (-10 -8 (-15 -4125 ($ (-1157) (-1157) (-823))) (-15 -2712 ($ (-1157) (-823))) (-15 -1527 ((-1269) $)) (-15 -1651 ((-1269) $ (-823))) (-15 -4342 ((-1269) $)) (-15 -2568 ((-1269) $)) (-15 -2219 ((-1269) $)) (-15 -1730 ((-1269) $)) (-15 -3315 ((-1269) $)) (-15 -2188 ((-1269) $)) (-15 -1341 ((-1269) $)) (-15 -3547 ((-1269) $)) (-15 -2584 ((-1269) $)) (-15 -1411 ((-1269) $)) (-15 -2020 ((-1269) $)) (-15 -3255 ((-1269) $)) (-15 -2602 ((-1269) $)) (-15 -3012 ((-1269) $)) (-15 -2396 ((-1269) $ (-566))) (-15 -1866 ((-1269) $ (-225))) (-15 -1631 ((-1269) $ (-1175))) (-15 -2281 ((-1269) $ (-1157))) (-15 -2119 ((-1269) $ (-1157) (-1157))) (-15 -4252 ((-1269) $)) (-15 -3579 ((-1269) $)) (-15 -4383 ((-1269) $)) (-15 -3365 ((-1269) $)) (-15 -1577 ((-1269) $)) (-15 -3169 ((-1269) $)) (-15 -3748 ((-1269) $)) (-15 -3479 ((-1269) $)) (-15 -4063 ((-1269) $)) (-15 -2708 ((-1269) $)) (-15 -1744 ((-1269) $)) (-15 -3414 ((-1269) $)) (-15 -3457 ((-1269) $)) (-15 -3249 ((-1269) $)) (-15 -1814 ((-566) $)) (-15 -3297 ((-225) $)) (-15 -3623 ((-1175) $)) (-15 -3763 ((-1157) $)) (-15 -1980 ((-2 (|:| |cd| (-1157)) (|:| -2628 (-1157))) $)) (-15 -1851 ((-1175) $)))) (T -822))
-((-1851 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-822)))) (-1980 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1157)) (|:| -2628 (-1157)))) (-5 *1 (-822)))) (-3763 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-822)))) (-3623 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-822)))) (-3297 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-822)))) (-1814 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-822)))) (-3249 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3457 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3414 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1744 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2708 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-4063 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3479 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3748 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3169 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1577 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3365 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-4383 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3579 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-4252 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2119 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-2281 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-1631 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-1866 (*1 *2 *1 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-2396 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-3012 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2602 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3255 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2020 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1411 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2584 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3547 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1341 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2188 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3315 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1730 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2219 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2568 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-4342 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1651 (*1 *2 *1 *3) (-12 (-5 *3 (-823)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-1527 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2712 (*1 *1 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-823)) (-5 *1 (-822)))) (-4125 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-823)) (-5 *1 (-822)))))
-(-10 -8 (-15 -4125 ($ (-1157) (-1157) (-823))) (-15 -2712 ($ (-1157) (-823))) (-15 -1527 ((-1269) $)) (-15 -1651 ((-1269) $ (-823))) (-15 -4342 ((-1269) $)) (-15 -2568 ((-1269) $)) (-15 -2219 ((-1269) $)) (-15 -1730 ((-1269) $)) (-15 -3315 ((-1269) $)) (-15 -2188 ((-1269) $)) (-15 -1341 ((-1269) $)) (-15 -3547 ((-1269) $)) (-15 -2584 ((-1269) $)) (-15 -1411 ((-1269) $)) (-15 -2020 ((-1269) $)) (-15 -3255 ((-1269) $)) (-15 -2602 ((-1269) $)) (-15 -3012 ((-1269) $)) (-15 -2396 ((-1269) $ (-566))) (-15 -1866 ((-1269) $ (-225))) (-15 -1631 ((-1269) $ (-1175))) (-15 -2281 ((-1269) $ (-1157))) (-15 -2119 ((-1269) $ (-1157) (-1157))) (-15 -4252 ((-1269) $)) (-15 -3579 ((-1269) $)) (-15 -4383 ((-1269) $)) (-15 -3365 ((-1269) $)) (-15 -1577 ((-1269) $)) (-15 -3169 ((-1269) $)) (-15 -3748 ((-1269) $)) (-15 -3479 ((-1269) $)) (-15 -4063 ((-1269) $)) (-15 -2708 ((-1269) $)) (-15 -1744 ((-1269) $)) (-15 -3414 ((-1269) $)) (-15 -3457 ((-1269) $)) (-15 -3249 ((-1269) $)) (-15 -1814 ((-566) $)) (-15 -3297 ((-225) $)) (-15 -3623 ((-1175) $)) (-15 -3763 ((-1157) $)) (-15 -1980 ((-2 (|:| |cd| (-1157)) (|:| -2628 (-1157))) $)) (-15 -1851 ((-1175) $)))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 13)) (-3122 (((-112) $ $) NIL)) (-3903 (($) 16)) (-2323 (($) 14)) (-2469 (($) 17)) (-3647 (($) 15)) (-2940 (((-112) $ $) 9)))
-(((-823) (-13 (-1099) (-10 -8 (-15 -2323 ($)) (-15 -3903 ($)) (-15 -2469 ($)) (-15 -3647 ($))))) (T -823))
-((-2323 (*1 *1) (-5 *1 (-823))) (-3903 (*1 *1) (-5 *1 (-823))) (-2469 (*1 *1) (-5 *1 (-823))) (-3647 (*1 *1) (-5 *1 (-823))))
-(-13 (-1099) (-10 -8 (-15 -2323 ($)) (-15 -3903 ($)) (-15 -2469 ($)) (-15 -3647 ($))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 23) (($ (-1175)) 19)) (-3122 (((-112) $ $) NIL)) (-3691 (((-112) $) 10)) (-4210 (((-112) $) 9)) (-2325 (((-112) $) 11)) (-1572 (((-112) $) 8)) (-2940 (((-112) $ $) 21)))
-(((-824) (-13 (-1099) (-10 -8 (-15 -2512 ($ (-1175))) (-15 -1572 ((-112) $)) (-15 -4210 ((-112) $)) (-15 -3691 ((-112) $)) (-15 -2325 ((-112) $))))) (T -824))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-824)))) (-1572 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))) (-3691 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))) (-2325 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))))
-(-13 (-1099) (-10 -8 (-15 -2512 ($ (-1175))) (-15 -1572 ((-112) $)) (-15 -4210 ((-112) $)) (-15 -3691 ((-112) $)) (-15 -2325 ((-112) $))))
-((-2985 (((-112) $ $) NIL)) (-4264 (($ (-824) (-644 (-1175))) 32)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1360 (((-824) $) 33)) (-1494 (((-644 (-1175)) $) 34)) (-2512 (((-862) $) 31)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-825) (-13 (-1099) (-10 -8 (-15 -1360 ((-824) $)) (-15 -1494 ((-644 (-1175)) $)) (-15 -4264 ($ (-824) (-644 (-1175))))))) (T -825))
-((-1360 (*1 *2 *1) (-12 (-5 *2 (-824)) (-5 *1 (-825)))) (-1494 (*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-825)))) (-4264 (*1 *1 *2 *3) (-12 (-5 *2 (-824)) (-5 *3 (-644 (-1175))) (-5 *1 (-825)))))
-(-13 (-1099) (-10 -8 (-15 -1360 ((-824) $)) (-15 -1494 ((-644 (-1175)) $)) (-15 -4264 ($ (-824) (-644 (-1175))))))
-((-2178 (((-1269) (-822) (-317 |#1|) (-112)) 24) (((-1269) (-822) (-317 |#1|)) 90) (((-1157) (-317 |#1|) (-112)) 89) (((-1157) (-317 |#1|)) 88)))
-(((-826 |#1|) (-10 -7 (-15 -2178 ((-1157) (-317 |#1|))) (-15 -2178 ((-1157) (-317 |#1|) (-112))) (-15 -2178 ((-1269) (-822) (-317 |#1|))) (-15 -2178 ((-1269) (-822) (-317 |#1|) (-112)))) (-13 (-828) (-1049))) (T -826))
-((-2178 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-822)) (-5 *4 (-317 *6)) (-5 *5 (-112)) (-4 *6 (-13 (-828) (-1049))) (-5 *2 (-1269)) (-5 *1 (-826 *6)))) (-2178 (*1 *2 *3 *4) (-12 (-5 *3 (-822)) (-5 *4 (-317 *5)) (-4 *5 (-13 (-828) (-1049))) (-5 *2 (-1269)) (-5 *1 (-826 *5)))) (-2178 (*1 *2 *3 *4) (-12 (-5 *3 (-317 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-828) (-1049))) (-5 *2 (-1157)) (-5 *1 (-826 *5)))) (-2178 (*1 *2 *3) (-12 (-5 *3 (-317 *4)) (-4 *4 (-13 (-828) (-1049))) (-5 *2 (-1157)) (-5 *1 (-826 *4)))))
-(-10 -7 (-15 -2178 ((-1157) (-317 |#1|))) (-15 -2178 ((-1157) (-317 |#1|) (-112))) (-15 -2178 ((-1269) (-822) (-317 |#1|))) (-15 -2178 ((-1269) (-822) (-317 |#1|) (-112))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2660 ((|#1| $) 10)) (-1706 (($ |#1|) 9)) (-2741 (((-112) $) NIL)) (-2519 (($ |#2| (-771)) NIL)) (-3251 (((-771) $) NIL)) (-3557 ((|#2| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2862 (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-3992 (((-771) $) NIL)) (-2512 (((-862) $) 17) (($ (-566)) NIL) (($ |#2|) NIL (|has| |#2| (-172)))) (-2022 ((|#2| $ (-771)) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
-(((-827 |#1| |#2|) (-13 (-708 |#2|) (-10 -8 (IF (|has| |#1| (-233)) (-6 (-233)) |%noBranch|) (-15 -1706 ($ |#1|)) (-15 -2660 (|#1| $)))) (-708 |#2|) (-1049)) (T -827))
-((-1706 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-827 *2 *3)) (-4 *2 (-708 *3)))) (-2660 (*1 *2 *1) (-12 (-4 *2 (-708 *3)) (-5 *1 (-827 *2 *3)) (-4 *3 (-1049)))))
-(-13 (-708 |#2|) (-10 -8 (IF (|has| |#1| (-233)) (-6 (-233)) |%noBranch|) (-15 -1706 ($ |#1|)) (-15 -2660 (|#1| $))))
-((-2178 (((-1269) (-822) $ (-112)) 9) (((-1269) (-822) $) 8) (((-1157) $ (-112)) 7) (((-1157) $) 6)))
+((-1969 (($ (-1119)) 7)) (-2178 (((-112) $ (-1157) (-1119)) 15)) (-2703 (((-822) $) 12)) (-3283 (((-822) $) 11)) (-3525 (((-1269) $) 9)) (-1614 (((-112) $ (-1119)) 16)))
+(((-821) (-10 -8 (-15 -1969 ($ (-1119))) (-15 -3525 ((-1269) $)) (-15 -3283 ((-822) $)) (-15 -2703 ((-822) $)) (-15 -2178 ((-112) $ (-1157) (-1119))) (-15 -1614 ((-112) $ (-1119))))) (T -821))
+((-1614 (*1 *2 *1 *3) (-12 (-5 *3 (-1119)) (-5 *2 (-112)) (-5 *1 (-821)))) (-2178 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-1119)) (-5 *2 (-112)) (-5 *1 (-821)))) (-2703 (*1 *2 *1) (-12 (-5 *2 (-822)) (-5 *1 (-821)))) (-3283 (*1 *2 *1) (-12 (-5 *2 (-822)) (-5 *1 (-821)))) (-3525 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-821)))) (-1969 (*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-821)))))
+(-10 -8 (-15 -1969 ($ (-1119))) (-15 -3525 ((-1269) $)) (-15 -3283 ((-822) $)) (-15 -2703 ((-822) $)) (-15 -2178 ((-112) $ (-1157) (-1119))) (-15 -1614 ((-112) $ (-1119))))
+((-4290 (((-1269) $ (-823)) 12)) (-2246 (((-1269) $ (-1175)) 32)) (-3521 (((-1269) $ (-1157) (-1157)) 34)) (-1371 (((-1269) $ (-1157)) 33)) (-3279 (((-1269) $) 19)) (-3199 (((-1269) $ (-566)) 28)) (-2771 (((-1269) $ (-225)) 30)) (-2941 (((-1269) $) 18)) (-2240 (((-1269) $) 26)) (-1428 (((-1269) $) 25)) (-3738 (((-1269) $) 23)) (-2509 (((-1269) $) 24)) (-3681 (((-1269) $) 22)) (-4361 (((-1269) $) 21)) (-3396 (((-1269) $) 20)) (-3844 (((-1269) $) 16)) (-2989 (((-1269) $) 17)) (-2006 (((-1269) $) 15)) (-2364 (((-1269) $) 14)) (-2476 (((-1269) $) 13)) (-3186 (($ (-1157) (-823)) 9)) (-4002 (($ (-1157) (-1157) (-823)) 8)) (-2868 (((-1175) $) 51)) (-2638 (((-1175) $) 55)) (-1460 (((-2 (|:| |cd| (-1157)) (|:| -2639 (-1157))) $) 54)) (-3731 (((-1157) $) 52)) (-1712 (((-1269) $) 41)) (-3480 (((-566) $) 49)) (-2832 (((-225) $) 50)) (-4162 (((-1269) $) 40)) (-2446 (((-1269) $) 48)) (-3771 (((-1269) $) 47)) (-3998 (((-1269) $) 45)) (-1446 (((-1269) $) 46)) (-3153 (((-1269) $) 44)) (-1503 (((-1269) $) 43)) (-3990 (((-1269) $) 42)) (-2225 (((-1269) $) 38)) (-2905 (((-1269) $) 39)) (-1628 (((-1269) $) 37)) (-2485 (((-1269) $) 36)) (-2784 (((-1269) $) 35)) (-2421 (((-1269) $) 11)))
+(((-822) (-10 -8 (-15 -4002 ($ (-1157) (-1157) (-823))) (-15 -3186 ($ (-1157) (-823))) (-15 -2421 ((-1269) $)) (-15 -4290 ((-1269) $ (-823))) (-15 -2476 ((-1269) $)) (-15 -2364 ((-1269) $)) (-15 -2006 ((-1269) $)) (-15 -3844 ((-1269) $)) (-15 -2989 ((-1269) $)) (-15 -2941 ((-1269) $)) (-15 -3279 ((-1269) $)) (-15 -3396 ((-1269) $)) (-15 -4361 ((-1269) $)) (-15 -3681 ((-1269) $)) (-15 -3738 ((-1269) $)) (-15 -2509 ((-1269) $)) (-15 -1428 ((-1269) $)) (-15 -2240 ((-1269) $)) (-15 -3199 ((-1269) $ (-566))) (-15 -2771 ((-1269) $ (-225))) (-15 -2246 ((-1269) $ (-1175))) (-15 -1371 ((-1269) $ (-1157))) (-15 -3521 ((-1269) $ (-1157) (-1157))) (-15 -2784 ((-1269) $)) (-15 -2485 ((-1269) $)) (-15 -1628 ((-1269) $)) (-15 -2225 ((-1269) $)) (-15 -2905 ((-1269) $)) (-15 -4162 ((-1269) $)) (-15 -1712 ((-1269) $)) (-15 -3990 ((-1269) $)) (-15 -1503 ((-1269) $)) (-15 -3153 ((-1269) $)) (-15 -3998 ((-1269) $)) (-15 -1446 ((-1269) $)) (-15 -3771 ((-1269) $)) (-15 -2446 ((-1269) $)) (-15 -3480 ((-566) $)) (-15 -2832 ((-225) $)) (-15 -2868 ((-1175) $)) (-15 -3731 ((-1157) $)) (-15 -1460 ((-2 (|:| |cd| (-1157)) (|:| -2639 (-1157))) $)) (-15 -2638 ((-1175) $)))) (T -822))
+((-2638 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-822)))) (-1460 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1157)) (|:| -2639 (-1157)))) (-5 *1 (-822)))) (-3731 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-822)))) (-2868 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-822)))) (-2832 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-822)))) (-3480 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-822)))) (-2446 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3771 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1446 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3998 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3153 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1503 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3990 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1712 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-4162 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2905 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2225 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1628 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2485 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2784 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3521 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-1371 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-2246 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-2771 (*1 *2 *1 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-3199 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-2240 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-1428 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2509 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3738 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3681 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-4361 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3396 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3279 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2941 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2989 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3844 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2006 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2364 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-2476 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-4290 (*1 *2 *1 *3) (-12 (-5 *3 (-823)) (-5 *2 (-1269)) (-5 *1 (-822)))) (-2421 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))) (-3186 (*1 *1 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-823)) (-5 *1 (-822)))) (-4002 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-823)) (-5 *1 (-822)))))
+(-10 -8 (-15 -4002 ($ (-1157) (-1157) (-823))) (-15 -3186 ($ (-1157) (-823))) (-15 -2421 ((-1269) $)) (-15 -4290 ((-1269) $ (-823))) (-15 -2476 ((-1269) $)) (-15 -2364 ((-1269) $)) (-15 -2006 ((-1269) $)) (-15 -3844 ((-1269) $)) (-15 -2989 ((-1269) $)) (-15 -2941 ((-1269) $)) (-15 -3279 ((-1269) $)) (-15 -3396 ((-1269) $)) (-15 -4361 ((-1269) $)) (-15 -3681 ((-1269) $)) (-15 -3738 ((-1269) $)) (-15 -2509 ((-1269) $)) (-15 -1428 ((-1269) $)) (-15 -2240 ((-1269) $)) (-15 -3199 ((-1269) $ (-566))) (-15 -2771 ((-1269) $ (-225))) (-15 -2246 ((-1269) $ (-1175))) (-15 -1371 ((-1269) $ (-1157))) (-15 -3521 ((-1269) $ (-1157) (-1157))) (-15 -2784 ((-1269) $)) (-15 -2485 ((-1269) $)) (-15 -1628 ((-1269) $)) (-15 -2225 ((-1269) $)) (-15 -2905 ((-1269) $)) (-15 -4162 ((-1269) $)) (-15 -1712 ((-1269) $)) (-15 -3990 ((-1269) $)) (-15 -1503 ((-1269) $)) (-15 -3153 ((-1269) $)) (-15 -3998 ((-1269) $)) (-15 -1446 ((-1269) $)) (-15 -3771 ((-1269) $)) (-15 -2446 ((-1269) $)) (-15 -3480 ((-566) $)) (-15 -2832 ((-225) $)) (-15 -2868 ((-1175) $)) (-15 -3731 ((-1157) $)) (-15 -1460 ((-2 (|:| |cd| (-1157)) (|:| -2639 (-1157))) $)) (-15 -2638 ((-1175) $)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 13)) (-3801 (((-112) $ $) NIL)) (-2562 (($) 16)) (-3699 (($) 14)) (-2641 (($) 17)) (-1906 (($) 15)) (-2950 (((-112) $ $) 9)))
+(((-823) (-13 (-1099) (-10 -8 (-15 -3699 ($)) (-15 -2562 ($)) (-15 -2641 ($)) (-15 -1906 ($))))) (T -823))
+((-3699 (*1 *1) (-5 *1 (-823))) (-2562 (*1 *1) (-5 *1 (-823))) (-2641 (*1 *1) (-5 *1 (-823))) (-1906 (*1 *1) (-5 *1 (-823))))
+(-13 (-1099) (-10 -8 (-15 -3699 ($)) (-15 -2562 ($)) (-15 -2641 ($)) (-15 -1906 ($))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 23) (($ (-1175)) 19)) (-3801 (((-112) $ $) NIL)) (-2354 (((-112) $) 10)) (-3619 (((-112) $) 9)) (-3715 (((-112) $) 11)) (-2851 (((-112) $) 8)) (-2950 (((-112) $ $) 21)))
+(((-824) (-13 (-1099) (-10 -8 (-15 -3780 ($ (-1175))) (-15 -2851 ((-112) $)) (-15 -3619 ((-112) $)) (-15 -2354 ((-112) $)) (-15 -3715 ((-112) $))))) (T -824))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-824)))) (-2851 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))) (-3619 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))) (-2354 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))) (-3715 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))))
+(-13 (-1099) (-10 -8 (-15 -3780 ($ (-1175))) (-15 -2851 ((-112) $)) (-15 -3619 ((-112) $)) (-15 -2354 ((-112) $)) (-15 -3715 ((-112) $))))
+((-3009 (((-112) $ $) NIL)) (-2893 (($ (-824) (-644 (-1175))) 32)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4351 (((-824) $) 33)) (-3281 (((-644 (-1175)) $) 34)) (-3780 (((-862) $) 31)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-825) (-13 (-1099) (-10 -8 (-15 -4351 ((-824) $)) (-15 -3281 ((-644 (-1175)) $)) (-15 -2893 ($ (-824) (-644 (-1175))))))) (T -825))
+((-4351 (*1 *2 *1) (-12 (-5 *2 (-824)) (-5 *1 (-825)))) (-3281 (*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-825)))) (-2893 (*1 *1 *2 *3) (-12 (-5 *2 (-824)) (-5 *3 (-644 (-1175))) (-5 *1 (-825)))))
+(-13 (-1099) (-10 -8 (-15 -4351 ((-824) $)) (-15 -3281 ((-644 (-1175)) $)) (-15 -2893 ($ (-824) (-644 (-1175))))))
+((-2852 (((-1269) (-822) (-317 |#1|) (-112)) 24) (((-1269) (-822) (-317 |#1|)) 90) (((-1157) (-317 |#1|) (-112)) 89) (((-1157) (-317 |#1|)) 88)))
+(((-826 |#1|) (-10 -7 (-15 -2852 ((-1157) (-317 |#1|))) (-15 -2852 ((-1157) (-317 |#1|) (-112))) (-15 -2852 ((-1269) (-822) (-317 |#1|))) (-15 -2852 ((-1269) (-822) (-317 |#1|) (-112)))) (-13 (-828) (-1049))) (T -826))
+((-2852 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-822)) (-5 *4 (-317 *6)) (-5 *5 (-112)) (-4 *6 (-13 (-828) (-1049))) (-5 *2 (-1269)) (-5 *1 (-826 *6)))) (-2852 (*1 *2 *3 *4) (-12 (-5 *3 (-822)) (-5 *4 (-317 *5)) (-4 *5 (-13 (-828) (-1049))) (-5 *2 (-1269)) (-5 *1 (-826 *5)))) (-2852 (*1 *2 *3 *4) (-12 (-5 *3 (-317 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-828) (-1049))) (-5 *2 (-1157)) (-5 *1 (-826 *5)))) (-2852 (*1 *2 *3) (-12 (-5 *3 (-317 *4)) (-4 *4 (-13 (-828) (-1049))) (-5 *2 (-1157)) (-5 *1 (-826 *4)))))
+(-10 -7 (-15 -2852 ((-1157) (-317 |#1|))) (-15 -2852 ((-1157) (-317 |#1|) (-112))) (-15 -2852 ((-1269) (-822) (-317 |#1|))) (-15 -2852 ((-1269) (-822) (-317 |#1|) (-112))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-3871 ((|#1| $) 10)) (-1746 (($ |#1|) 9)) (-3466 (((-112) $) NIL)) (-2585 (($ |#2| (-771)) NIL)) (-2466 (((-771) $) NIL)) (-3626 ((|#2| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2578 (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-2108 (((-771) $) NIL)) (-3780 (((-862) $) 17) (($ (-566)) NIL) (($ |#2|) NIL (|has| |#2| (-172)))) (-3756 ((|#2| $ (-771)) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $) NIL (|has| |#1| (-233)))) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 12) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+(((-827 |#1| |#2|) (-13 (-708 |#2|) (-10 -8 (IF (|has| |#1| (-233)) (-6 (-233)) |%noBranch|) (-15 -1746 ($ |#1|)) (-15 -3871 (|#1| $)))) (-708 |#2|) (-1049)) (T -827))
+((-1746 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-827 *2 *3)) (-4 *2 (-708 *3)))) (-3871 (*1 *2 *1) (-12 (-4 *2 (-708 *3)) (-5 *1 (-827 *2 *3)) (-4 *3 (-1049)))))
+(-13 (-708 |#2|) (-10 -8 (IF (|has| |#1| (-233)) (-6 (-233)) |%noBranch|) (-15 -1746 ($ |#1|)) (-15 -3871 (|#1| $))))
+((-2852 (((-1269) (-822) $ (-112)) 9) (((-1269) (-822) $) 8) (((-1157) $ (-112)) 7) (((-1157) $) 6)))
(((-828) (-140)) (T -828))
-((-2178 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-828)) (-5 *3 (-822)) (-5 *4 (-112)) (-5 *2 (-1269)))) (-2178 (*1 *2 *3 *1) (-12 (-4 *1 (-828)) (-5 *3 (-822)) (-5 *2 (-1269)))) (-2178 (*1 *2 *1 *3) (-12 (-4 *1 (-828)) (-5 *3 (-112)) (-5 *2 (-1157)))) (-2178 (*1 *2 *1) (-12 (-4 *1 (-828)) (-5 *2 (-1157)))))
-(-13 (-10 -8 (-15 -2178 ((-1157) $)) (-15 -2178 ((-1157) $ (-112))) (-15 -2178 ((-1269) (-822) $)) (-15 -2178 ((-1269) (-822) $ (-112)))))
-((-3727 (((-313) (-1157) (-1157)) 12)) (-3703 (((-112) (-1157) (-1157)) 34)) (-3140 (((-112) (-1157)) 33)) (-2526 (((-52) (-1157)) 25)) (-2724 (((-52) (-1157)) 23)) (-2942 (((-52) (-822)) 17)) (-2084 (((-644 (-1157)) (-1157)) 28)) (-3846 (((-644 (-1157))) 27)))
-(((-829) (-10 -7 (-15 -2942 ((-52) (-822))) (-15 -2724 ((-52) (-1157))) (-15 -2526 ((-52) (-1157))) (-15 -3846 ((-644 (-1157)))) (-15 -2084 ((-644 (-1157)) (-1157))) (-15 -3140 ((-112) (-1157))) (-15 -3703 ((-112) (-1157) (-1157))) (-15 -3727 ((-313) (-1157) (-1157))))) (T -829))
-((-3727 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-829)))) (-3703 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-112)) (-5 *1 (-829)))) (-3140 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-112)) (-5 *1 (-829)))) (-2084 (*1 *2 *3) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-829)) (-5 *3 (-1157)))) (-3846 (*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-829)))) (-2526 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-829)))) (-2724 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-829)))) (-2942 (*1 *2 *3) (-12 (-5 *3 (-822)) (-5 *2 (-52)) (-5 *1 (-829)))))
-(-10 -7 (-15 -2942 ((-52) (-822))) (-15 -2724 ((-52) (-1157))) (-15 -2526 ((-52) (-1157))) (-15 -3846 ((-644 (-1157)))) (-15 -2084 ((-644 (-1157)) (-1157))) (-15 -3140 ((-112) (-1157))) (-15 -3703 ((-112) (-1157) (-1157))) (-15 -3727 ((-313) (-1157) (-1157))))
-((-2985 (((-112) $ $) 19)) (-1781 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-1757 (($ $ $) 73)) (-2768 (((-112) $ $) 74)) (-3081 (((-112) $ (-771)) 8)) (-1819 (($ (-644 |#1|)) 69) (($) 68)) (-3586 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-4130 (($ $) 63)) (-4093 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3066 (($ |#1| $) 48 (|has| $ (-6 -4417))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4417)))) (-2651 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4417)))) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-3641 (((-112) $ $) 65)) (-2744 (((-112) $ (-771)) 9)) (-1439 ((|#1| $) 79)) (-1865 (($ $ $) 82)) (-3132 (($ $ $) 81)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3059 ((|#1| $) 80)) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22)) (-2390 (($ $ $) 70)) (-3119 ((|#1| $) 40)) (-4265 (($ |#1| $) 41) (($ |#1| $ (-771)) 64)) (-4033 (((-1119) $) 21)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-2109 (((-644 (-2 (|:| -2818 |#1|) (|:| -4044 (-771)))) $) 62)) (-3209 (($ $ |#1|) 72) (($ $ $) 71)) (-3879 (($) 50) (($ (-644 |#1|)) 49)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 51)) (-2512 (((-862) $) 18)) (-2465 (($ (-644 |#1|)) 67) (($) 66)) (-3122 (((-112) $ $) 23)) (-3309 (($ (-644 |#1|)) 43)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20)) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-2852 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-828)) (-5 *3 (-822)) (-5 *4 (-112)) (-5 *2 (-1269)))) (-2852 (*1 *2 *3 *1) (-12 (-4 *1 (-828)) (-5 *3 (-822)) (-5 *2 (-1269)))) (-2852 (*1 *2 *1 *3) (-12 (-4 *1 (-828)) (-5 *3 (-112)) (-5 *2 (-1157)))) (-2852 (*1 *2 *1) (-12 (-4 *1 (-828)) (-5 *2 (-1157)))))
+(-13 (-10 -8 (-15 -2852 ((-1157) $)) (-15 -2852 ((-1157) $ (-112))) (-15 -2852 ((-1269) (-822) $)) (-15 -2852 ((-1269) (-822) $ (-112)))))
+((-1473 (((-313) (-1157) (-1157)) 12)) (-4309 (((-112) (-1157) (-1157)) 34)) (-3936 (((-112) (-1157)) 33)) (-1948 (((-52) (-1157)) 25)) (-3305 (((-52) (-1157)) 23)) (-1779 (((-52) (-822)) 17)) (-3161 (((-644 (-1157)) (-1157)) 28)) (-3273 (((-644 (-1157))) 27)))
+(((-829) (-10 -7 (-15 -1779 ((-52) (-822))) (-15 -3305 ((-52) (-1157))) (-15 -1948 ((-52) (-1157))) (-15 -3273 ((-644 (-1157)))) (-15 -3161 ((-644 (-1157)) (-1157))) (-15 -3936 ((-112) (-1157))) (-15 -4309 ((-112) (-1157) (-1157))) (-15 -1473 ((-313) (-1157) (-1157))))) (T -829))
+((-1473 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-829)))) (-4309 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-112)) (-5 *1 (-829)))) (-3936 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-112)) (-5 *1 (-829)))) (-3161 (*1 *2 *3) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-829)) (-5 *3 (-1157)))) (-3273 (*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-829)))) (-1948 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-829)))) (-3305 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-829)))) (-1779 (*1 *2 *3) (-12 (-5 *3 (-822)) (-5 *2 (-52)) (-5 *1 (-829)))))
+(-10 -7 (-15 -1779 ((-52) (-822))) (-15 -3305 ((-52) (-1157))) (-15 -1948 ((-52) (-1157))) (-15 -3273 ((-644 (-1157)))) (-15 -3161 ((-644 (-1157)) (-1157))) (-15 -3936 ((-112) (-1157))) (-15 -4309 ((-112) (-1157) (-1157))) (-15 -1473 ((-313) (-1157) (-1157))))
+((-3009 (((-112) $ $) 19)) (-1814 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-4134 (($ $ $) 73)) (-2523 (((-112) $ $) 74)) (-1574 (((-112) $ (-771)) 8)) (-3712 (($ (-644 |#1|)) 69) (($) 68)) (-2556 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-4060 (($ $) 63)) (-4133 (($ $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1450 (($ |#1| $) 48 (|has| $ (-6 -4414))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4414)))) (-2661 (($ |#1| $) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4414)))) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1866 (((-112) $ $) 65)) (-3501 (((-112) $ (-771)) 9)) (-1945 ((|#1| $) 79)) (-2761 (($ $ $) 82)) (-3891 (($ $ $) 81)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2709 ((|#1| $) 80)) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22)) (-3147 (($ $ $) 70)) (-3765 ((|#1| $) 40)) (-2903 (($ |#1| $) 41) (($ |#1| $ (-771)) 64)) (-4056 (((-1119) $) 21)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-3423 (((-644 (-2 (|:| -2849 |#1|) (|:| -4067 (-771)))) $) 62)) (-3304 (($ $ |#1|) 72) (($ $ $) 71)) (-3551 (($) 50) (($ (-644 |#1|)) 49)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 60 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 51)) (-3780 (((-862) $) 18)) (-2535 (($ (-644 |#1|)) 67) (($) 66)) (-3801 (((-112) $ $) 23)) (-2926 (($ (-644 |#1|)) 43)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20)) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-830 |#1|) (-140) (-850)) (T -830))
-((-1439 (*1 *2 *1) (-12 (-4 *1 (-830 *2)) (-4 *2 (-850)))))
-(-13 (-736 |t#1|) (-968 |t#1|) (-10 -8 (-15 -1439 (|t#1| $))))
+((-1945 (*1 *2 *1) (-12 (-4 *1 (-830 *2)) (-4 *2 (-850)))))
+(-13 (-736 |t#1|) (-968 |t#1|) (-10 -8 (-15 -1945 (|t#1| $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) . T) ((-613 (-862)) . T) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-235 |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-695 |#1|) . T) ((-736 |#1|) . T) ((-968 |#1|) . T) ((-1097 |#1|) . T) ((-1099) . T) ((-1214) . T))
-((-2479 (((-1269) (-1119) (-1119)) 48)) (-3234 (((-1269) (-821) (-52)) 45)) (-3402 (((-52) (-821)) 16)))
-(((-831) (-10 -7 (-15 -3402 ((-52) (-821))) (-15 -3234 ((-1269) (-821) (-52))) (-15 -2479 ((-1269) (-1119) (-1119))))) (T -831))
-((-2479 (*1 *2 *3 *3) (-12 (-5 *3 (-1119)) (-5 *2 (-1269)) (-5 *1 (-831)))) (-3234 (*1 *2 *3 *4) (-12 (-5 *3 (-821)) (-5 *4 (-52)) (-5 *2 (-1269)) (-5 *1 (-831)))) (-3402 (*1 *2 *3) (-12 (-5 *3 (-821)) (-5 *2 (-52)) (-5 *1 (-831)))))
-(-10 -7 (-15 -3402 ((-52) (-821))) (-15 -3234 ((-1269) (-821) (-52))) (-15 -2479 ((-1269) (-1119) (-1119))))
-((-3077 (((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|) (-833 |#2|)) 12) (((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|)) 13)))
-(((-832 |#1| |#2|) (-10 -7 (-15 -3077 ((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|))) (-15 -3077 ((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|) (-833 |#2|)))) (-1099) (-1099)) (T -832))
-((-3077 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-833 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-833 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *1 (-832 *5 *6)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-833 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-833 *6)) (-5 *1 (-832 *5 *6)))))
-(-10 -7 (-15 -3077 ((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|))) (-15 -3077 ((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|) (-833 |#2|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL (|has| |#1| (-21)))) (-4126 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2807 (((-566) $) NIL (|has| |#1| (-848)))) (-2342 (($) NIL (|has| |#1| (-21)) CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 15)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 9)) (-1579 (((-3 $ "failed") $) 42 (|has| |#1| (-848)))) (-3800 (((-3 (-409 (-566)) "failed") $) 52 (|has| |#1| (-547)))) (-3717 (((-112) $) 46 (|has| |#1| (-547)))) (-3370 (((-409 (-566)) $) 49 (|has| |#1| (-547)))) (-1684 (((-112) $) NIL (|has| |#1| (-848)))) (-2741 (((-112) $) NIL (|has| |#1| (-848)))) (-1578 (((-112) $) NIL (|has| |#1| (-848)))) (-1439 (($ $ $) NIL (|has| |#1| (-848)))) (-3059 (($ $ $) NIL (|has| |#1| (-848)))) (-2878 (((-1157) $) NIL)) (-3048 (($) 13)) (-2907 (((-112) $) 12)) (-4033 (((-1119) $) NIL)) (-1358 (((-112) $) 11)) (-2512 (((-862) $) 18) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) 8) (($ (-566)) NIL (-2805 (|has| |#1| (-848)) (|has| |#1| (-1038 (-566)))))) (-3795 (((-771)) 36 (|has| |#1| (-848)) CONST)) (-3122 (((-112) $ $) 54)) (-1346 (($ $) NIL (|has| |#1| (-848)))) (-2485 (($) 23 (|has| |#1| (-21)) CONST)) (-2495 (($) 33 (|has| |#1| (-848)) CONST)) (-2998 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2940 (((-112) $ $) 21)) (-2987 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2962 (((-112) $ $) 45 (|has| |#1| (-848)))) (-3047 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 29 (|has| |#1| (-21)))) (-3034 (($ $ $) 31 (|has| |#1| (-21)))) (** (($ $ (-921)) NIL (|has| |#1| (-848))) (($ $ (-771)) NIL (|has| |#1| (-848)))) (* (($ $ $) 39 (|has| |#1| (-848))) (($ (-566) $) 27 (|has| |#1| (-21))) (($ (-771) $) NIL (|has| |#1| (-21))) (($ (-921) $) NIL (|has| |#1| (-21)))))
-(((-833 |#1|) (-13 (-1099) (-413 |#1|) (-10 -8 (-15 -3048 ($)) (-15 -1358 ((-112) $)) (-15 -2907 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -3717 ((-112) $)) (-15 -3370 ((-409 (-566)) $)) (-15 -3800 ((-3 (-409 (-566)) "failed") $))) |%noBranch|))) (-1099)) (T -833))
-((-3048 (*1 *1) (-12 (-5 *1 (-833 *2)) (-4 *2 (-1099)))) (-1358 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-1099)))) (-2907 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-1099)))) (-3717 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))) (-3370 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-833 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))) (-3800 (*1 *2 *1) (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-833 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))))
-(-13 (-1099) (-413 |#1|) (-10 -8 (-15 -3048 ($)) (-15 -1358 ((-112) $)) (-15 -2907 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -3717 ((-112) $)) (-15 -3370 ((-409 (-566)) $)) (-15 -3800 ((-3 (-409 (-566)) "failed") $))) |%noBranch|)))
-((-2181 (((-112) $ |#2|) 14)) (-2512 (((-862) $) 11)))
-(((-834 |#1| |#2|) (-10 -8 (-15 -2181 ((-112) |#1| |#2|)) (-15 -2512 ((-862) |#1|))) (-835 |#2|) (-1099)) (T -834))
-NIL
-(-10 -8 (-15 -2181 ((-112) |#1| |#2|)) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-2628 ((|#1| $) 16)) (-2878 (((-1157) $) 10)) (-2181 (((-112) $ |#1|) 14)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-1965 (((-55) $) 15)) (-2940 (((-112) $ $) 6)))
+((-2717 (((-1269) (-1119) (-1119)) 48)) (-3529 (((-1269) (-821) (-52)) 45)) (-1315 (((-52) (-821)) 16)))
+(((-831) (-10 -7 (-15 -1315 ((-52) (-821))) (-15 -3529 ((-1269) (-821) (-52))) (-15 -2717 ((-1269) (-1119) (-1119))))) (T -831))
+((-2717 (*1 *2 *3 *3) (-12 (-5 *3 (-1119)) (-5 *2 (-1269)) (-5 *1 (-831)))) (-3529 (*1 *2 *3 *4) (-12 (-5 *3 (-821)) (-5 *4 (-52)) (-5 *2 (-1269)) (-5 *1 (-831)))) (-1315 (*1 *2 *3) (-12 (-5 *3 (-821)) (-5 *2 (-52)) (-5 *1 (-831)))))
+(-10 -7 (-15 -1315 ((-52) (-821))) (-15 -3529 ((-1269) (-821) (-52))) (-15 -2717 ((-1269) (-1119) (-1119))))
+((-3152 (((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|) (-833 |#2|)) 12) (((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|)) 13)))
+(((-832 |#1| |#2|) (-10 -7 (-15 -3152 ((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|))) (-15 -3152 ((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|) (-833 |#2|)))) (-1099) (-1099)) (T -832))
+((-3152 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-833 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-833 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *1 (-832 *5 *6)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-833 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-833 *6)) (-5 *1 (-832 *5 *6)))))
+(-10 -7 (-15 -3152 ((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|))) (-15 -3152 ((-833 |#2|) (-1 |#2| |#1|) (-833 |#1|) (-833 |#2|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL (|has| |#1| (-21)))) (-4014 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2899 (((-566) $) NIL (|has| |#1| (-848)))) (-3877 (($) NIL (|has| |#1| (-21)) CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 15)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 9)) (-2928 (((-3 $ "failed") $) 42 (|has| |#1| (-848)))) (-4045 (((-3 (-409 (-566)) "failed") $) 52 (|has| |#1| (-547)))) (-1356 (((-112) $) 46 (|has| |#1| (-547)))) (-2269 (((-409 (-566)) $) 49 (|has| |#1| (-547)))) (-1533 (((-112) $) NIL (|has| |#1| (-848)))) (-3466 (((-112) $) NIL (|has| |#1| (-848)))) (-2917 (((-112) $) NIL (|has| |#1| (-848)))) (-1945 (($ $ $) NIL (|has| |#1| (-848)))) (-2709 (($ $ $) NIL (|has| |#1| (-848)))) (-2402 (((-1157) $) NIL)) (-3131 (($) 13)) (-1447 (((-112) $) 12)) (-4056 (((-1119) $) NIL)) (-3453 (((-112) $) 11)) (-3780 (((-862) $) 18) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) 8) (($ (-566)) NIL (-2805 (|has| |#1| (-848)) (|has| |#1| (-1038 (-566)))))) (-3996 (((-771)) 36 (|has| |#1| (-848)) CONST)) (-3801 (((-112) $ $) 54)) (-3333 (($ $) NIL (|has| |#1| (-848)))) (-2493 (($) 23 (|has| |#1| (-21)) CONST)) (-4333 (($) 33 (|has| |#1| (-848)) CONST)) (-3010 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2950 (((-112) $ $) 21)) (-2999 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2972 (((-112) $ $) 45 (|has| |#1| (-848)))) (-3051 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 29 (|has| |#1| (-21)))) (-3040 (($ $ $) 31 (|has| |#1| (-21)))) (** (($ $ (-921)) NIL (|has| |#1| (-848))) (($ $ (-771)) NIL (|has| |#1| (-848)))) (* (($ $ $) 39 (|has| |#1| (-848))) (($ (-566) $) 27 (|has| |#1| (-21))) (($ (-771) $) NIL (|has| |#1| (-21))) (($ (-921) $) NIL (|has| |#1| (-21)))))
+(((-833 |#1|) (-13 (-1099) (-413 |#1|) (-10 -8 (-15 -3131 ($)) (-15 -3453 ((-112) $)) (-15 -1447 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -1356 ((-112) $)) (-15 -2269 ((-409 (-566)) $)) (-15 -4045 ((-3 (-409 (-566)) "failed") $))) |%noBranch|))) (-1099)) (T -833))
+((-3131 (*1 *1) (-12 (-5 *1 (-833 *2)) (-4 *2 (-1099)))) (-3453 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-1099)))) (-1447 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-1099)))) (-1356 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))) (-2269 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-833 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))) (-4045 (*1 *2 *1) (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-833 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))))
+(-13 (-1099) (-413 |#1|) (-10 -8 (-15 -3131 ($)) (-15 -3453 ((-112) $)) (-15 -1447 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -1356 ((-112) $)) (-15 -2269 ((-409 (-566)) $)) (-15 -4045 ((-3 (-409 (-566)) "failed") $))) |%noBranch|)))
+((-2885 (((-112) $ |#2|) 14)) (-3780 (((-862) $) 11)))
+(((-834 |#1| |#2|) (-10 -8 (-15 -2885 ((-112) |#1| |#2|)) (-15 -3780 ((-862) |#1|))) (-835 |#2|) (-1099)) (T -834))
+NIL
+(-10 -8 (-15 -2885 ((-112) |#1| |#2|)) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-2639 ((|#1| $) 16)) (-2402 (((-1157) $) 10)) (-2885 (((-112) $ |#1|) 14)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-1297 (((-55) $) 15)) (-2950 (((-112) $ $) 6)))
(((-835 |#1|) (-140) (-1099)) (T -835))
-((-2628 (*1 *2 *1) (-12 (-4 *1 (-835 *2)) (-4 *2 (-1099)))) (-1965 (*1 *2 *1) (-12 (-4 *1 (-835 *3)) (-4 *3 (-1099)) (-5 *2 (-55)))) (-2181 (*1 *2 *1 *3) (-12 (-4 *1 (-835 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
-(-13 (-1099) (-10 -8 (-15 -2628 (|t#1| $)) (-15 -1965 ((-55) $)) (-15 -2181 ((-112) $ |t#1|))))
+((-2639 (*1 *2 *1) (-12 (-4 *1 (-835 *2)) (-4 *2 (-1099)))) (-1297 (*1 *2 *1) (-12 (-4 *1 (-835 *3)) (-4 *3 (-1099)) (-5 *2 (-55)))) (-2885 (*1 *2 *1 *3) (-12 (-4 *1 (-835 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
+(-13 (-1099) (-10 -8 (-15 -2639 (|t#1| $)) (-15 -1297 ((-55) $)) (-15 -2885 ((-112) $ |t#1|))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL) (((-3 (-114) "failed") $) NIL)) (-1756 ((|#1| $) NIL) (((-114) $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3832 ((|#1| (-114) |#1|) NIL)) (-2741 (((-112) $) NIL)) (-3109 (($ |#1| (-363 (-114))) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2606 (($ $ (-1 |#1| |#1|)) NIL)) (-3098 (($ $ (-1 |#1| |#1|)) NIL)) (-4386 ((|#1| $ |#1|) NIL)) (-2545 ((|#1| |#1|) NIL (|has| |#1| (-172)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-114)) NIL)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1550 (($ $) NIL (|has| |#1| (-172))) (($ $ $) NIL (|has| |#1| (-172)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ (-114) (-566)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
-(((-836 |#1|) (-13 (-1049) (-1038 |#1|) (-1038 (-114)) (-287 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -1550 ($ $)) (-15 -1550 ($ $ $)) (-15 -2545 (|#1| |#1|))) |%noBranch|) (-15 -3098 ($ $ (-1 |#1| |#1|))) (-15 -2606 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-566))) (-15 ** ($ $ (-566))) (-15 -3832 (|#1| (-114) |#1|)) (-15 -3109 ($ |#1| (-363 (-114)))))) (-1049)) (T -836))
-((-1550 (*1 *1 *1) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049)))) (-1550 (*1 *1 *1 *1) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049)))) (-2545 (*1 *2 *2) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049)))) (-3098 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-836 *3)))) (-2606 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-836 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-566)) (-5 *1 (-836 *4)) (-4 *4 (-1049)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-836 *3)) (-4 *3 (-1049)))) (-3832 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-836 *2)) (-4 *2 (-1049)))) (-3109 (*1 *1 *2 *3) (-12 (-5 *3 (-363 (-114))) (-5 *1 (-836 *2)) (-4 *2 (-1049)))))
-(-13 (-1049) (-1038 |#1|) (-1038 (-114)) (-287 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -1550 ($ $)) (-15 -1550 ($ $ $)) (-15 -2545 (|#1| |#1|))) |%noBranch|) (-15 -3098 ($ $ (-1 |#1| |#1|))) (-15 -2606 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-566))) (-15 ** ($ $ (-566))) (-15 -3832 (|#1| (-114) |#1|)) (-15 -3109 ($ |#1| (-363 (-114))))))
-((-2120 (((-214 (-504)) (-1157)) 9)))
-(((-837) (-10 -7 (-15 -2120 ((-214 (-504)) (-1157))))) (T -837))
-((-2120 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-214 (-504))) (-5 *1 (-837)))))
-(-10 -7 (-15 -2120 ((-214 (-504)) (-1157))))
-((-2985 (((-112) $ $) NIL)) (-3011 (((-1117) $) 10)) (-2628 (((-508) $) 9)) (-2878 (((-1157) $) NIL)) (-2181 (((-112) $ (-508)) NIL)) (-4033 (((-1119) $) NIL)) (-2523 (($ (-508) (-1117)) 8)) (-2512 (((-862) $) 25)) (-3122 (((-112) $ $) NIL)) (-1965 (((-55) $) 20)) (-2940 (((-112) $ $) 12)))
-(((-838) (-13 (-835 (-508)) (-10 -8 (-15 -3011 ((-1117) $)) (-15 -2523 ($ (-508) (-1117)))))) (T -838))
-((-3011 (*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-838)))) (-2523 (*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1117)) (-5 *1 (-838)))))
-(-13 (-835 (-508)) (-10 -8 (-15 -3011 ((-1117) $)) (-15 -2523 ($ (-508) (-1117)))))
-((-2985 (((-112) $ $) 7)) (-2444 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) 15) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 14)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 17) (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) 16)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL) (((-3 (-114) "failed") $) NIL)) (-1867 ((|#1| $) NIL) (((-114) $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-3136 ((|#1| (-114) |#1|) NIL)) (-3466 (((-112) $) NIL)) (-3693 (($ |#1| (-363 (-114))) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1474 (($ $ (-1 |#1| |#1|)) NIL)) (-1722 (($ $ (-1 |#1| |#1|)) NIL)) (-4393 ((|#1| $ |#1|) NIL)) (-2122 ((|#1| |#1|) NIL (|has| |#1| (-172)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-114)) NIL)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2643 (($ $) NIL (|has| |#1| (-172))) (($ $ $) NIL (|has| |#1| (-172)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ (-114) (-566)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
+(((-836 |#1|) (-13 (-1049) (-1038 |#1|) (-1038 (-114)) (-287 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -2643 ($ $)) (-15 -2643 ($ $ $)) (-15 -2122 (|#1| |#1|))) |%noBranch|) (-15 -1722 ($ $ (-1 |#1| |#1|))) (-15 -1474 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-566))) (-15 ** ($ $ (-566))) (-15 -3136 (|#1| (-114) |#1|)) (-15 -3693 ($ |#1| (-363 (-114)))))) (-1049)) (T -836))
+((-2643 (*1 *1 *1) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049)))) (-2643 (*1 *1 *1 *1) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049)))) (-2122 (*1 *2 *2) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049)))) (-1722 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-836 *3)))) (-1474 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-836 *3)))) (** (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-566)) (-5 *1 (-836 *4)) (-4 *4 (-1049)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-836 *3)) (-4 *3 (-1049)))) (-3136 (*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-836 *2)) (-4 *2 (-1049)))) (-3693 (*1 *1 *2 *3) (-12 (-5 *3 (-363 (-114))) (-5 *1 (-836 *2)) (-4 *2 (-1049)))))
+(-13 (-1049) (-1038 |#1|) (-1038 (-114)) (-287 |#1| |#1|) (-10 -8 (IF (|has| |#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |#1| (-172)) (PROGN (-6 (-38 |#1|)) (-15 -2643 ($ $)) (-15 -2643 ($ $ $)) (-15 -2122 (|#1| |#1|))) |%noBranch|) (-15 -1722 ($ $ (-1 |#1| |#1|))) (-15 -1474 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-114) (-566))) (-15 ** ($ $ (-566))) (-15 -3136 (|#1| (-114) |#1|)) (-15 -3693 ($ |#1| (-363 (-114))))))
+((-3530 (((-214 (-504)) (-1157)) 9)))
+(((-837) (-10 -7 (-15 -3530 ((-214 (-504)) (-1157))))) (T -837))
+((-3530 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-214 (-504))) (-5 *1 (-837)))))
+(-10 -7 (-15 -3530 ((-214 (-504)) (-1157))))
+((-3009 (((-112) $ $) NIL)) (-3049 (((-1117) $) 10)) (-2639 (((-508) $) 9)) (-2402 (((-1157) $) NIL)) (-2885 (((-112) $ (-508)) NIL)) (-4056 (((-1119) $) NIL)) (-3791 (($ (-508) (-1117)) 8)) (-3780 (((-862) $) 25)) (-3801 (((-112) $ $) NIL)) (-1297 (((-55) $) 20)) (-2950 (((-112) $ $) 12)))
+(((-838) (-13 (-835 (-508)) (-10 -8 (-15 -3049 ((-1117) $)) (-15 -3791 ($ (-508) (-1117)))))) (T -838))
+((-3049 (*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-838)))) (-3791 (*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1117)) (-5 *1 (-838)))))
+(-13 (-835 (-508)) (-10 -8 (-15 -3049 ((-1117) $)) (-15 -3791 ($ (-508) (-1117)))))
+((-3009 (((-112) $ $) 7)) (-3607 (((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) 15) (((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 14)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 17) (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) 16)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-839) (-140)) (T -839))
-((-2092 (*1 *2 *3 *4) (-12 (-4 *1 (-839)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (-5 *2 (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)))))) (-2092 (*1 *2 *3 *4) (-12 (-4 *1 (-839)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) (-5 *2 (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)))))) (-2444 (*1 *2 *3) (-12 (-4 *1 (-839)) (-5 *3 (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) (-5 *2 (-1035)))) (-2444 (*1 *2 *3) (-12 (-4 *1 (-839)) (-5 *3 (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (-5 *2 (-1035)))))
-(-13 (-1099) (-10 -7 (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) (-15 -2444 ((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) (-15 -2444 ((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))))))
+((-3245 (*1 *2 *3 *4) (-12 (-4 *1 (-839)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (-5 *2 (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)))))) (-3245 (*1 *2 *3 *4) (-12 (-4 *1 (-839)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) (-5 *2 (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)))))) (-3607 (*1 *2 *3) (-12 (-4 *1 (-839)) (-5 *3 (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) (-5 *2 (-1035)))) (-3607 (*1 *2 *3) (-12 (-4 *1 (-839)) (-5 *3 (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (-5 *2 (-1035)))))
+(-13 (-1099) (-10 -7 (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) (-15 -3607 ((-1035) (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) (-15 -3607 ((-1035) (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-1936 (((-1035) (-644 (-317 (-381))) (-644 (-381))) 169) (((-1035) (-317 (-381)) (-644 (-381))) 167) (((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-843 (-381)))) 165) (((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-317 (-381))) (-644 (-843 (-381)))) 163) (((-1035) (-841)) 128) (((-1035) (-841) (-1062)) 127)) (-2092 (((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841) (-1062)) 88) (((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841)) 90)) (-2920 (((-1035) (-644 (-317 (-381))) (-644 (-381))) 170) (((-1035) (-841)) 153)))
-(((-840) (-10 -7 (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841) (-1062))) (-15 -1936 ((-1035) (-841) (-1062))) (-15 -1936 ((-1035) (-841))) (-15 -2920 ((-1035) (-841))) (-15 -1936 ((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-317 (-381))) (-644 (-843 (-381))))) (-15 -1936 ((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-843 (-381))))) (-15 -1936 ((-1035) (-317 (-381)) (-644 (-381)))) (-15 -1936 ((-1035) (-644 (-317 (-381))) (-644 (-381)))) (-15 -2920 ((-1035) (-644 (-317 (-381))) (-644 (-381)))))) (T -840))
-((-2920 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-317 (-381)))) (-5 *4 (-644 (-381))) (-5 *2 (-1035)) (-5 *1 (-840)))) (-1936 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-317 (-381)))) (-5 *4 (-644 (-381))) (-5 *2 (-1035)) (-5 *1 (-840)))) (-1936 (*1 *2 *3 *4) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-381))) (-5 *2 (-1035)) (-5 *1 (-840)))) (-1936 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-381))) (-5 *5 (-644 (-843 (-381)))) (-5 *2 (-1035)) (-5 *1 (-840)))) (-1936 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-644 (-381))) (-5 *5 (-644 (-843 (-381)))) (-5 *6 (-644 (-317 (-381)))) (-5 *3 (-317 (-381))) (-5 *2 (-1035)) (-5 *1 (-840)))) (-2920 (*1 *2 *3) (-12 (-5 *3 (-841)) (-5 *2 (-1035)) (-5 *1 (-840)))) (-1936 (*1 *2 *3) (-12 (-5 *3 (-841)) (-5 *2 (-1035)) (-5 *1 (-840)))) (-1936 (*1 *2 *3 *4) (-12 (-5 *3 (-841)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-840)))) (-2092 (*1 *2 *3 *4) (-12 (-5 *3 (-841)) (-5 *4 (-1062)) (-5 *2 (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-840)))) (-2092 (*1 *2 *3) (-12 (-5 *3 (-841)) (-5 *2 (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-840)))))
-(-10 -7 (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841) (-1062))) (-15 -1936 ((-1035) (-841) (-1062))) (-15 -1936 ((-1035) (-841))) (-15 -2920 ((-1035) (-841))) (-15 -1936 ((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-317 (-381))) (-644 (-843 (-381))))) (-15 -1936 ((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-843 (-381))))) (-15 -1936 ((-1035) (-317 (-381)) (-644 (-381)))) (-15 -1936 ((-1035) (-644 (-317 (-381))) (-644 (-381)))) (-15 -2920 ((-1035) (-644 (-317 (-381))) (-644 (-381)))))
-((-2985 (((-112) $ $) NIL)) (-1756 (((-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) $) 21)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 20) (($ (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 14) (($ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))))) 18)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-841) (-13 (-1099) (-10 -8 (-15 -2512 ($ (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))))) (-15 -2512 ($ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) (-15 -2512 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))))) (-15 -1756 ((-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) $))))) (T -841))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (-5 *1 (-841)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))) (-5 *1 (-841)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))))) (-5 *1 (-841)))) (-1756 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225))))))) (-5 *1 (-841)))))
-(-13 (-1099) (-10 -8 (-15 -2512 ($ (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))))) (-15 -2512 ($ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) (-15 -2512 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))))) (-15 -1756 ((-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))) $))))
-((-3077 (((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|) (-843 |#2|) (-843 |#2|)) 13) (((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|)) 14)))
-(((-842 |#1| |#2|) (-10 -7 (-15 -3077 ((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|))) (-15 -3077 ((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|) (-843 |#2|) (-843 |#2|)))) (-1099) (-1099)) (T -842))
-((-3077 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-843 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-843 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *1 (-842 *5 *6)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-843 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-843 *6)) (-5 *1 (-842 *5 *6)))))
-(-10 -7 (-15 -3077 ((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|))) (-15 -3077 ((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|) (-843 |#2|) (-843 |#2|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL (|has| |#1| (-21)))) (-3915 (((-1119) $) 31)) (-4126 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2807 (((-566) $) NIL (|has| |#1| (-848)))) (-2342 (($) NIL (|has| |#1| (-21)) CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 18)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 9)) (-1579 (((-3 $ "failed") $) 58 (|has| |#1| (-848)))) (-3800 (((-3 (-409 (-566)) "failed") $) 65 (|has| |#1| (-547)))) (-3717 (((-112) $) 60 (|has| |#1| (-547)))) (-3370 (((-409 (-566)) $) 63 (|has| |#1| (-547)))) (-1684 (((-112) $) NIL (|has| |#1| (-848)))) (-2911 (($) 14)) (-2741 (((-112) $) NIL (|has| |#1| (-848)))) (-1578 (((-112) $) NIL (|has| |#1| (-848)))) (-2923 (($) 16)) (-1439 (($ $ $) NIL (|has| |#1| (-848)))) (-3059 (($ $ $) NIL (|has| |#1| (-848)))) (-2878 (((-1157) $) NIL)) (-2907 (((-112) $) 12)) (-4033 (((-1119) $) NIL)) (-1358 (((-112) $) 11)) (-2512 (((-862) $) 24) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) 8) (($ (-566)) NIL (-2805 (|has| |#1| (-848)) (|has| |#1| (-1038 (-566)))))) (-3795 (((-771)) 51 (|has| |#1| (-848)) CONST)) (-3122 (((-112) $ $) NIL)) (-1346 (($ $) NIL (|has| |#1| (-848)))) (-2485 (($) 37 (|has| |#1| (-21)) CONST)) (-2495 (($) 48 (|has| |#1| (-848)) CONST)) (-2998 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2940 (((-112) $ $) 35)) (-2987 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2962 (((-112) $ $) 59 (|has| |#1| (-848)))) (-3047 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 44 (|has| |#1| (-21)))) (-3034 (($ $ $) 46 (|has| |#1| (-21)))) (** (($ $ (-921)) NIL (|has| |#1| (-848))) (($ $ (-771)) NIL (|has| |#1| (-848)))) (* (($ $ $) 55 (|has| |#1| (-848))) (($ (-566) $) 42 (|has| |#1| (-21))) (($ (-771) $) NIL (|has| |#1| (-21))) (($ (-921) $) NIL (|has| |#1| (-21)))))
-(((-843 |#1|) (-13 (-1099) (-413 |#1|) (-10 -8 (-15 -2911 ($)) (-15 -2923 ($)) (-15 -1358 ((-112) $)) (-15 -2907 ((-112) $)) (-15 -3915 ((-1119) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -3717 ((-112) $)) (-15 -3370 ((-409 (-566)) $)) (-15 -3800 ((-3 (-409 (-566)) "failed") $))) |%noBranch|))) (-1099)) (T -843))
-((-2911 (*1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-1099)))) (-2923 (*1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-1099)))) (-1358 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))) (-2907 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))) (-3915 (*1 *2 *1) (-12 (-5 *2 (-1119)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))) (-3717 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))) (-3370 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-843 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))) (-3800 (*1 *2 *1) (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-843 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))))
-(-13 (-1099) (-413 |#1|) (-10 -8 (-15 -2911 ($)) (-15 -2923 ($)) (-15 -1358 ((-112) $)) (-15 -2907 ((-112) $)) (-15 -3915 ((-1119) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -3717 ((-112) $)) (-15 -3370 ((-409 (-566)) $)) (-15 -3800 ((-3 (-409 (-566)) "failed") $))) |%noBranch|)))
-((-2985 (((-112) $ $) 7)) (-4025 (((-771)) 23)) (-3335 (($) 26)) (-1439 (($ $ $) 14) (($) 22 T CONST)) (-3059 (($ $ $) 15) (($) 21 T CONST)) (-3712 (((-921) $) 25)) (-2878 (((-1157) $) 10)) (-2168 (($ (-921)) 24)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)))
+((-3629 (((-1035) (-644 (-317 (-381))) (-644 (-381))) 169) (((-1035) (-317 (-381)) (-644 (-381))) 167) (((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-843 (-381)))) 165) (((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-317 (-381))) (-644 (-843 (-381)))) 163) (((-1035) (-841)) 128) (((-1035) (-841) (-1062)) 127)) (-3245 (((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841) (-1062)) 88) (((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841)) 90)) (-1572 (((-1035) (-644 (-317 (-381))) (-644 (-381))) 170) (((-1035) (-841)) 153)))
+(((-840) (-10 -7 (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841) (-1062))) (-15 -3629 ((-1035) (-841) (-1062))) (-15 -3629 ((-1035) (-841))) (-15 -1572 ((-1035) (-841))) (-15 -3629 ((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-317 (-381))) (-644 (-843 (-381))))) (-15 -3629 ((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-843 (-381))))) (-15 -3629 ((-1035) (-317 (-381)) (-644 (-381)))) (-15 -3629 ((-1035) (-644 (-317 (-381))) (-644 (-381)))) (-15 -1572 ((-1035) (-644 (-317 (-381))) (-644 (-381)))))) (T -840))
+((-1572 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-317 (-381)))) (-5 *4 (-644 (-381))) (-5 *2 (-1035)) (-5 *1 (-840)))) (-3629 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-317 (-381)))) (-5 *4 (-644 (-381))) (-5 *2 (-1035)) (-5 *1 (-840)))) (-3629 (*1 *2 *3 *4) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-381))) (-5 *2 (-1035)) (-5 *1 (-840)))) (-3629 (*1 *2 *3 *4 *5 *5) (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-381))) (-5 *5 (-644 (-843 (-381)))) (-5 *2 (-1035)) (-5 *1 (-840)))) (-3629 (*1 *2 *3 *4 *5 *6 *5) (-12 (-5 *4 (-644 (-381))) (-5 *5 (-644 (-843 (-381)))) (-5 *6 (-644 (-317 (-381)))) (-5 *3 (-317 (-381))) (-5 *2 (-1035)) (-5 *1 (-840)))) (-1572 (*1 *2 *3) (-12 (-5 *3 (-841)) (-5 *2 (-1035)) (-5 *1 (-840)))) (-3629 (*1 *2 *3) (-12 (-5 *3 (-841)) (-5 *2 (-1035)) (-5 *1 (-840)))) (-3629 (*1 *2 *3 *4) (-12 (-5 *3 (-841)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-840)))) (-3245 (*1 *2 *3 *4) (-12 (-5 *3 (-841)) (-5 *4 (-1062)) (-5 *2 (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-840)))) (-3245 (*1 *2 *3) (-12 (-5 *3 (-841)) (-5 *2 (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-840)))))
+(-10 -7 (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-841) (-1062))) (-15 -3629 ((-1035) (-841) (-1062))) (-15 -3629 ((-1035) (-841))) (-15 -1572 ((-1035) (-841))) (-15 -3629 ((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-317 (-381))) (-644 (-843 (-381))))) (-15 -3629 ((-1035) (-317 (-381)) (-644 (-381)) (-644 (-843 (-381))) (-644 (-843 (-381))))) (-15 -3629 ((-1035) (-317 (-381)) (-644 (-381)))) (-15 -3629 ((-1035) (-644 (-317 (-381))) (-644 (-381)))) (-15 -1572 ((-1035) (-644 (-317 (-381))) (-644 (-381)))))
+((-3009 (((-112) $ $) NIL)) (-1867 (((-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) $) 21)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 20) (($ (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) 14) (($ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))))) 18)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-841) (-13 (-1099) (-10 -8 (-15 -3780 ($ (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))))) (-15 -3780 ($ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) (-15 -3780 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))))) (-15 -1867 ((-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) $))))) (T -841))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (-5 *1 (-841)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))) (-5 *1 (-841)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))))) (-5 *1 (-841)))) (-1867 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225))))))) (-5 *1 (-841)))))
+(-13 (-1099) (-10 -8 (-15 -3780 ($ (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225))))))) (-15 -3780 ($ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) (-15 -3780 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))))) (-15 -1867 ((-3 (|:| |noa| (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225))) (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225)))) (|:| |ub| (-644 (-843 (-225)))))) (|:| |lsa| (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))) $))))
+((-3152 (((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|) (-843 |#2|) (-843 |#2|)) 13) (((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|)) 14)))
+(((-842 |#1| |#2|) (-10 -7 (-15 -3152 ((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|))) (-15 -3152 ((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|) (-843 |#2|) (-843 |#2|)))) (-1099) (-1099)) (T -842))
+((-3152 (*1 *2 *3 *4 *2 *2) (-12 (-5 *2 (-843 *6)) (-5 *3 (-1 *6 *5)) (-5 *4 (-843 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *1 (-842 *5 *6)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-843 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-843 *6)) (-5 *1 (-842 *5 *6)))))
+(-10 -7 (-15 -3152 ((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|))) (-15 -3152 ((-843 |#2|) (-1 |#2| |#1|) (-843 |#1|) (-843 |#2|) (-843 |#2|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL (|has| |#1| (-21)))) (-2655 (((-1119) $) 31)) (-4014 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-2899 (((-566) $) NIL (|has| |#1| (-848)))) (-3877 (($) NIL (|has| |#1| (-21)) CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 18)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 9)) (-2928 (((-3 $ "failed") $) 58 (|has| |#1| (-848)))) (-4045 (((-3 (-409 (-566)) "failed") $) 65 (|has| |#1| (-547)))) (-1356 (((-112) $) 60 (|has| |#1| (-547)))) (-2269 (((-409 (-566)) $) 63 (|has| |#1| (-547)))) (-1533 (((-112) $) NIL (|has| |#1| (-848)))) (-2933 (($) 14)) (-3466 (((-112) $) NIL (|has| |#1| (-848)))) (-2917 (((-112) $) NIL (|has| |#1| (-848)))) (-2944 (($) 16)) (-1945 (($ $ $) NIL (|has| |#1| (-848)))) (-2709 (($ $ $) NIL (|has| |#1| (-848)))) (-2402 (((-1157) $) NIL)) (-1447 (((-112) $) 12)) (-4056 (((-1119) $) NIL)) (-3453 (((-112) $) 11)) (-3780 (((-862) $) 24) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) 8) (($ (-566)) NIL (-2805 (|has| |#1| (-848)) (|has| |#1| (-1038 (-566)))))) (-3996 (((-771)) 51 (|has| |#1| (-848)) CONST)) (-3801 (((-112) $ $) NIL)) (-3333 (($ $) NIL (|has| |#1| (-848)))) (-2493 (($) 37 (|has| |#1| (-21)) CONST)) (-4333 (($) 48 (|has| |#1| (-848)) CONST)) (-3010 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2950 (((-112) $ $) 35)) (-2999 (((-112) $ $) NIL (|has| |#1| (-848)))) (-2972 (((-112) $ $) 59 (|has| |#1| (-848)))) (-3051 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 44 (|has| |#1| (-21)))) (-3040 (($ $ $) 46 (|has| |#1| (-21)))) (** (($ $ (-921)) NIL (|has| |#1| (-848))) (($ $ (-771)) NIL (|has| |#1| (-848)))) (* (($ $ $) 55 (|has| |#1| (-848))) (($ (-566) $) 42 (|has| |#1| (-21))) (($ (-771) $) NIL (|has| |#1| (-21))) (($ (-921) $) NIL (|has| |#1| (-21)))))
+(((-843 |#1|) (-13 (-1099) (-413 |#1|) (-10 -8 (-15 -2933 ($)) (-15 -2944 ($)) (-15 -3453 ((-112) $)) (-15 -1447 ((-112) $)) (-15 -2655 ((-1119) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -1356 ((-112) $)) (-15 -2269 ((-409 (-566)) $)) (-15 -4045 ((-3 (-409 (-566)) "failed") $))) |%noBranch|))) (-1099)) (T -843))
+((-2933 (*1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-1099)))) (-2944 (*1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-1099)))) (-3453 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))) (-1447 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))) (-2655 (*1 *2 *1) (-12 (-5 *2 (-1119)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))) (-1356 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))) (-2269 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-843 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))) (-4045 (*1 *2 *1) (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-843 *3)) (-4 *3 (-547)) (-4 *3 (-1099)))))
+(-13 (-1099) (-413 |#1|) (-10 -8 (-15 -2933 ($)) (-15 -2944 ($)) (-15 -3453 ((-112) $)) (-15 -1447 ((-112) $)) (-15 -2655 ((-1119) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-848)) |%noBranch|) (IF (|has| |#1| (-547)) (PROGN (-15 -1356 ((-112) $)) (-15 -2269 ((-409 (-566)) $)) (-15 -4045 ((-3 (-409 (-566)) "failed") $))) |%noBranch|)))
+((-3009 (((-112) $ $) 7)) (-4070 (((-771)) 23)) (-1618 (($) 26)) (-1945 (($ $ $) 14) (($) 22 T CONST)) (-2709 (($ $ $) 15) (($) 21 T CONST)) (-1299 (((-921) $) 25)) (-2402 (((-1157) $) 10)) (-2208 (($ (-921)) 24)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)))
(((-844) (-140)) (T -844))
-((-1439 (*1 *1) (-4 *1 (-844))) (-3059 (*1 *1) (-4 *1 (-844))))
-(-13 (-850) (-370) (-10 -8 (-15 -1439 ($) -1655) (-15 -3059 ($) -1655)))
+((-1945 (*1 *1) (-4 *1 (-844))) (-2709 (*1 *1) (-4 *1 (-844))))
+(-13 (-850) (-370) (-10 -8 (-15 -1945 ($) -2460) (-15 -2709 ($) -2460)))
(((-102) . T) ((-613 (-862)) . T) ((-370) . T) ((-850) . T) ((-1099) . T))
-((-2638 (((-112) (-1264 |#2|) (-1264 |#2|)) 23)) (-1393 (((-112) (-1264 |#2|) (-1264 |#2|)) 24)) (-1868 (((-112) (-1264 |#2|) (-1264 |#2|)) 20)))
-(((-845 |#1| |#2|) (-10 -7 (-15 -1868 ((-112) (-1264 |#2|) (-1264 |#2|))) (-15 -2638 ((-112) (-1264 |#2|) (-1264 |#2|))) (-15 -1393 ((-112) (-1264 |#2|) (-1264 |#2|)))) (-771) (-792)) (T -845))
-((-1393 (*1 *2 *3 *3) (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112)) (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))) (-2638 (*1 *2 *3 *3) (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112)) (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))) (-1868 (*1 *2 *3 *3) (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112)) (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))))
-(-10 -7 (-15 -1868 ((-112) (-1264 |#2|) (-1264 |#2|))) (-15 -2638 ((-112) (-1264 |#2|) (-1264 |#2|))) (-15 -1393 ((-112) (-1264 |#2|) (-1264 |#2|))))
-((-2985 (((-112) $ $) 7)) (-2342 (($) 24 T CONST)) (-1579 (((-3 $ "failed") $) 27)) (-2741 (((-112) $) 25)) (-1439 (($ $ $) 14)) (-3059 (($ $ $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2495 (($) 23 T CONST)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)) (** (($ $ (-921)) 22) (($ $ (-771)) 26)) (* (($ $ $) 21)))
+((-1807 (((-112) (-1264 |#2|) (-1264 |#2|)) 23)) (-3468 (((-112) (-1264 |#2|) (-1264 |#2|)) 24)) (-2791 (((-112) (-1264 |#2|) (-1264 |#2|)) 20)))
+(((-845 |#1| |#2|) (-10 -7 (-15 -2791 ((-112) (-1264 |#2|) (-1264 |#2|))) (-15 -1807 ((-112) (-1264 |#2|) (-1264 |#2|))) (-15 -3468 ((-112) (-1264 |#2|) (-1264 |#2|)))) (-771) (-792)) (T -845))
+((-3468 (*1 *2 *3 *3) (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112)) (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))) (-1807 (*1 *2 *3 *3) (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112)) (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))) (-2791 (*1 *2 *3 *3) (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112)) (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))))
+(-10 -7 (-15 -2791 ((-112) (-1264 |#2|) (-1264 |#2|))) (-15 -1807 ((-112) (-1264 |#2|) (-1264 |#2|))) (-15 -3468 ((-112) (-1264 |#2|) (-1264 |#2|))))
+((-3009 (((-112) $ $) 7)) (-3877 (($) 24 T CONST)) (-2928 (((-3 $ "failed") $) 27)) (-3466 (((-112) $) 25)) (-1945 (($ $ $) 14)) (-2709 (($ $ $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-4333 (($) 23 T CONST)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)) (** (($ $ (-921)) 22) (($ $ (-771)) 26)) (* (($ $ $) 21)))
(((-846) (-140)) (T -846))
NIL
(-13 (-857) (-726))
(((-102) . T) ((-613 (-862)) . T) ((-726) . T) ((-857) . T) ((-850) . T) ((-1111) . T) ((-1099) . T))
-((-2807 (((-566) $) 21)) (-1684 (((-112) $) 10)) (-1578 (((-112) $) 12)) (-1346 (($ $) 23)))
-(((-847 |#1|) (-10 -8 (-15 -1346 (|#1| |#1|)) (-15 -2807 ((-566) |#1|)) (-15 -1578 ((-112) |#1|)) (-15 -1684 ((-112) |#1|))) (-848)) (T -847))
+((-2899 (((-566) $) 21)) (-1533 (((-112) $) 10)) (-2917 (((-112) $) 12)) (-3333 (($ $) 23)))
+(((-847 |#1|) (-10 -8 (-15 -3333 (|#1| |#1|)) (-15 -2899 ((-566) |#1|)) (-15 -2917 ((-112) |#1|)) (-15 -1533 ((-112) |#1|))) (-848)) (T -847))
NIL
-(-10 -8 (-15 -1346 (|#1| |#1|)) (-15 -2807 ((-566) |#1|)) (-15 -1578 ((-112) |#1|)) (-15 -1684 ((-112) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 25)) (-4126 (((-3 $ "failed") $ $) 27)) (-2807 (((-566) $) 37)) (-2342 (($) 24 T CONST)) (-1579 (((-3 $ "failed") $) 42)) (-1684 (((-112) $) 39)) (-2741 (((-112) $) 44)) (-1578 (((-112) $) 38)) (-1439 (($ $ $) 14)) (-3059 (($ $ $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 46)) (-3795 (((-771)) 47 T CONST)) (-3122 (((-112) $ $) 9)) (-1346 (($ $) 36)) (-2485 (($) 23 T CONST)) (-2495 (($) 45 T CONST)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)) (-3047 (($ $ $) 31) (($ $) 30)) (-3034 (($ $ $) 21)) (** (($ $ (-771)) 43) (($ $ (-921)) 40)) (* (($ (-921) $) 22) (($ (-771) $) 26) (($ (-566) $) 29) (($ $ $) 41)))
+(-10 -8 (-15 -3333 (|#1| |#1|)) (-15 -2899 ((-566) |#1|)) (-15 -2917 ((-112) |#1|)) (-15 -1533 ((-112) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 25)) (-4014 (((-3 $ "failed") $ $) 27)) (-2899 (((-566) $) 37)) (-3877 (($) 24 T CONST)) (-2928 (((-3 $ "failed") $) 42)) (-1533 (((-112) $) 39)) (-3466 (((-112) $) 44)) (-2917 (((-112) $) 38)) (-1945 (($ $ $) 14)) (-2709 (($ $ $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 46)) (-3996 (((-771)) 47 T CONST)) (-3801 (((-112) $ $) 9)) (-3333 (($ $) 36)) (-2493 (($) 23 T CONST)) (-4333 (($) 45 T CONST)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)) (-3051 (($ $ $) 31) (($ $) 30)) (-3040 (($ $ $) 21)) (** (($ $ (-771)) 43) (($ $ (-921)) 40)) (* (($ (-921) $) 22) (($ (-771) $) 26) (($ (-566) $) 29) (($ $ $) 41)))
(((-848) (-140)) (T -848))
-((-1684 (*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-112)))) (-1578 (*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-112)))) (-2807 (*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-566)))) (-1346 (*1 *1 *1) (-4 *1 (-848))))
-(-13 (-791) (-1049) (-726) (-10 -8 (-15 -1684 ((-112) $)) (-15 -1578 ((-112) $)) (-15 -2807 ((-566) $)) (-15 -1346 ($ $))))
+((-1533 (*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-112)))) (-2917 (*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-112)))) (-2899 (*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-566)))) (-3333 (*1 *1 *1) (-4 *1 (-848))))
+(-13 (-791) (-1049) (-726) (-10 -8 (-15 -1533 ((-112) $)) (-15 -2917 ((-112) $)) (-15 -2899 ((-566) $)) (-15 -3333 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-726) . T) ((-791) . T) ((-792) . T) ((-794) . T) ((-795) . T) ((-850) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-1439 (($ $ $) 12)) (-3059 (($ $ $) 11)) (-3122 (((-112) $ $) 9)) (-2998 (((-112) $ $) 15)) (-2974 (((-112) $ $) 13)) (-2987 (((-112) $ $) 16)))
-(((-849 |#1|) (-10 -8 (-15 -1439 (|#1| |#1| |#1|)) (-15 -3059 (|#1| |#1| |#1|)) (-15 -2987 ((-112) |#1| |#1|)) (-15 -2998 ((-112) |#1| |#1|)) (-15 -2974 ((-112) |#1| |#1|)) (-15 -3122 ((-112) |#1| |#1|))) (-850)) (T -849))
+((-1945 (($ $ $) 12)) (-2709 (($ $ $) 11)) (-3801 (((-112) $ $) 9)) (-3010 (((-112) $ $) 15)) (-2984 (((-112) $ $) 13)) (-2999 (((-112) $ $) 16)))
+(((-849 |#1|) (-10 -8 (-15 -1945 (|#1| |#1| |#1|)) (-15 -2709 (|#1| |#1| |#1|)) (-15 -2999 ((-112) |#1| |#1|)) (-15 -3010 ((-112) |#1| |#1|)) (-15 -2984 ((-112) |#1| |#1|)) (-15 -3801 ((-112) |#1| |#1|))) (-850)) (T -849))
NIL
-(-10 -8 (-15 -1439 (|#1| |#1| |#1|)) (-15 -3059 (|#1| |#1| |#1|)) (-15 -2987 ((-112) |#1| |#1|)) (-15 -2998 ((-112) |#1| |#1|)) (-15 -2974 ((-112) |#1| |#1|)) (-15 -3122 ((-112) |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-1439 (($ $ $) 14)) (-3059 (($ $ $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)))
+(-10 -8 (-15 -1945 (|#1| |#1| |#1|)) (-15 -2709 (|#1| |#1| |#1|)) (-15 -2999 ((-112) |#1| |#1|)) (-15 -3010 ((-112) |#1| |#1|)) (-15 -2984 ((-112) |#1| |#1|)) (-15 -3801 ((-112) |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-1945 (($ $ $) 14)) (-2709 (($ $ $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)))
(((-850) (-140)) (T -850))
-((-2962 (*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112)))) (-2974 (*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112)))) (-2998 (*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112)))) (-2987 (*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112)))) (-3059 (*1 *1 *1 *1) (-4 *1 (-850))) (-1439 (*1 *1 *1 *1) (-4 *1 (-850))))
-(-13 (-1099) (-10 -8 (-15 -2962 ((-112) $ $)) (-15 -2974 ((-112) $ $)) (-15 -2998 ((-112) $ $)) (-15 -2987 ((-112) $ $)) (-15 -3059 ($ $ $)) (-15 -1439 ($ $ $))))
+((-2972 (*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112)))) (-2984 (*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112)))) (-3010 (*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112)))) (-2999 (*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112)))) (-2709 (*1 *1 *1 *1) (-4 *1 (-850))) (-1945 (*1 *1 *1 *1) (-4 *1 (-850))))
+(-13 (-1099) (-10 -8 (-15 -2972 ((-112) $ $)) (-15 -2984 ((-112) $ $)) (-15 -3010 ((-112) $ $)) (-15 -2999 ((-112) $ $)) (-15 -2709 ($ $ $)) (-15 -1945 ($ $ $))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-3985 (($ $ $) 49)) (-3773 (($ $ $) 48)) (-3046 (($ $ $) 46)) (-4133 (($ $ $) 55)) (-1815 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 50)) (-2705 (((-3 $ "failed") $ $) 53)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#2| "failed") $) 29)) (-4248 (($ $) 39)) (-1658 (($ $ $) 43)) (-3667 (($ $ $) 42)) (-3833 (($ $ $) 51)) (-4279 (($ $ $) 57)) (-2334 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 45)) (-2266 (((-3 $ "failed") $ $) 52)) (-2972 (((-3 $ "failed") $ |#2|) 32)) (-3181 ((|#2| $) 36)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL) (($ |#2|) 13)) (-3868 (((-644 |#2|) $) 21)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 25)))
-(((-851 |#1| |#2|) (-10 -8 (-15 -3833 (|#1| |#1| |#1|)) (-15 -1815 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4067 |#1|)) |#1| |#1|)) (-15 -4133 (|#1| |#1| |#1|)) (-15 -2705 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3985 (|#1| |#1| |#1|)) (-15 -3773 (|#1| |#1| |#1|)) (-15 -3046 (|#1| |#1| |#1|)) (-15 -2334 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4067 |#1|)) |#1| |#1|)) (-15 -4279 (|#1| |#1| |#1|)) (-15 -2266 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1658 (|#1| |#1| |#1|)) (-15 -3667 (|#1| |#1| |#1|)) (-15 -4248 (|#1| |#1|)) (-15 -3181 (|#2| |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3868 ((-644 |#2|) |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2512 (|#1| (-566))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -2512 ((-862) |#1|))) (-852 |#2|) (-1049)) (T -851))
+((-2055 (($ $ $) 49)) (-3803 (($ $ $) 48)) (-1298 (($ $ $) 46)) (-4094 (($ $ $) 55)) (-3492 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 50)) (-3124 (((-3 $ "failed") $ $) 53)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#2| "failed") $) 29)) (-2755 (($ $) 39)) (-4342 (($ $ $) 43)) (-2103 (($ $ $) 42)) (-3144 (($ $ $) 51)) (-3050 (($ $ $) 57)) (-3805 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 45)) (-4324 (((-3 $ "failed") $ $) 52)) (-2997 (((-3 $ "failed") $ |#2|) 32)) (-3042 ((|#2| $) 36)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL) (($ |#2|) 13)) (-3456 (((-644 |#2|) $) 21)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 25)))
+(((-851 |#1| |#2|) (-10 -8 (-15 -3144 (|#1| |#1| |#1|)) (-15 -3492 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4152 |#1|)) |#1| |#1|)) (-15 -4094 (|#1| |#1| |#1|)) (-15 -3124 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2055 (|#1| |#1| |#1|)) (-15 -3803 (|#1| |#1| |#1|)) (-15 -1298 (|#1| |#1| |#1|)) (-15 -3805 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4152 |#1|)) |#1| |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -4324 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4342 (|#1| |#1| |#1|)) (-15 -2103 (|#1| |#1| |#1|)) (-15 -2755 (|#1| |#1|)) (-15 -3042 (|#2| |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3456 ((-644 |#2|) |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3780 (|#1| (-566))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3780 ((-862) |#1|))) (-852 |#2|) (-1049)) (T -851))
NIL
-(-10 -8 (-15 -3833 (|#1| |#1| |#1|)) (-15 -1815 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4067 |#1|)) |#1| |#1|)) (-15 -4133 (|#1| |#1| |#1|)) (-15 -2705 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3985 (|#1| |#1| |#1|)) (-15 -3773 (|#1| |#1| |#1|)) (-15 -3046 (|#1| |#1| |#1|)) (-15 -2334 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4067 |#1|)) |#1| |#1|)) (-15 -4279 (|#1| |#1| |#1|)) (-15 -2266 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1658 (|#1| |#1| |#1|)) (-15 -3667 (|#1| |#1| |#1|)) (-15 -4248 (|#1| |#1|)) (-15 -3181 (|#2| |#1|)) (-15 -2972 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3868 ((-644 |#2|) |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2512 (|#1| (-566))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-3985 (($ $ $) 50 (|has| |#1| (-365)))) (-3773 (($ $ $) 51 (|has| |#1| (-365)))) (-3046 (($ $ $) 53 (|has| |#1| (-365)))) (-4133 (($ $ $) 48 (|has| |#1| (-365)))) (-1815 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 47 (|has| |#1| (-365)))) (-2705 (((-3 $ "failed") $ $) 49 (|has| |#1| (-365)))) (-2121 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 52 (|has| |#1| (-365)))) (-2977 (((-3 (-566) "failed") $) 80 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 77 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 74)) (-1756 (((-566) $) 79 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 76 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 75)) (-3577 (($ $) 69)) (-1579 (((-3 $ "failed") $) 37)) (-4248 (($ $) 60 (|has| |#1| (-454)))) (-2741 (((-112) $) 35)) (-2519 (($ |#1| (-771)) 67)) (-4045 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 62 (|has| |#1| (-558)))) (-1301 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63 (|has| |#1| (-558)))) (-3251 (((-771) $) 71)) (-1658 (($ $ $) 57 (|has| |#1| (-365)))) (-3667 (($ $ $) 58 (|has| |#1| (-365)))) (-3833 (($ $ $) 46 (|has| |#1| (-365)))) (-4279 (($ $ $) 55 (|has| |#1| (-365)))) (-2334 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 54 (|has| |#1| (-365)))) (-2266 (((-3 $ "failed") $ $) 56 (|has| |#1| (-365)))) (-1931 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 59 (|has| |#1| (-365)))) (-3557 ((|#1| $) 70)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2972 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-558)))) (-3992 (((-771) $) 72)) (-3181 ((|#1| $) 61 (|has| |#1| (-454)))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 78 (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) 73)) (-3868 (((-644 |#1|) $) 66)) (-2022 ((|#1| $ (-771)) 68)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-4002 ((|#1| $ |#1| |#1|) 65)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
+(-10 -8 (-15 -3144 (|#1| |#1| |#1|)) (-15 -3492 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4152 |#1|)) |#1| |#1|)) (-15 -4094 (|#1| |#1| |#1|)) (-15 -3124 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2055 (|#1| |#1| |#1|)) (-15 -3803 (|#1| |#1| |#1|)) (-15 -1298 (|#1| |#1| |#1|)) (-15 -3805 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -4152 |#1|)) |#1| |#1|)) (-15 -3050 (|#1| |#1| |#1|)) (-15 -4324 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4342 (|#1| |#1| |#1|)) (-15 -2103 (|#1| |#1| |#1|)) (-15 -2755 (|#1| |#1|)) (-15 -3042 (|#2| |#1|)) (-15 -2997 ((-3 |#1| "failed") |#1| |#2|)) (-15 -3456 ((-644 |#2|) |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3780 (|#1| (-566))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2055 (($ $ $) 50 (|has| |#1| (-365)))) (-3803 (($ $ $) 51 (|has| |#1| (-365)))) (-1298 (($ $ $) 53 (|has| |#1| (-365)))) (-4094 (($ $ $) 48 (|has| |#1| (-365)))) (-3492 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 47 (|has| |#1| (-365)))) (-3124 (((-3 $ "failed") $ $) 49 (|has| |#1| (-365)))) (-3540 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 52 (|has| |#1| (-365)))) (-3066 (((-3 (-566) "failed") $) 80 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 77 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 74)) (-1867 (((-566) $) 79 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 76 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 75)) (-3645 (($ $) 69)) (-2928 (((-3 $ "failed") $) 37)) (-2755 (($ $) 60 (|has| |#1| (-454)))) (-3466 (((-112) $) 35)) (-2585 (($ |#1| (-771)) 67)) (-1338 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 62 (|has| |#1| (-558)))) (-2889 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63 (|has| |#1| (-558)))) (-2466 (((-771) $) 71)) (-4342 (($ $ $) 57 (|has| |#1| (-365)))) (-2103 (($ $ $) 58 (|has| |#1| (-365)))) (-3144 (($ $ $) 46 (|has| |#1| (-365)))) (-3050 (($ $ $) 55 (|has| |#1| (-365)))) (-3805 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 54 (|has| |#1| (-365)))) (-4324 (((-3 $ "failed") $ $) 56 (|has| |#1| (-365)))) (-2230 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 59 (|has| |#1| (-365)))) (-3626 ((|#1| $) 70)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2997 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-558)))) (-2108 (((-771) $) 72)) (-3042 ((|#1| $) 61 (|has| |#1| (-454)))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 78 (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) 73)) (-3456 (((-644 |#1|) $) 66)) (-3756 ((|#1| $ (-771)) 68)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-4046 ((|#1| $ |#1| |#1|) 65)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
(((-852 |#1|) (-140) (-1049)) (T -852))
-((-3992 (*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-3251 (*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-3557 (*1 *2 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)))) (-3577 (*1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)))) (-2022 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-852 *2)) (-4 *2 (-1049)))) (-2519 (*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-852 *2)) (-4 *2 (-1049)))) (-3868 (*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-644 *3)))) (-4002 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)))) (-2972 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))) (-1301 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-852 *3)))) (-4045 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-852 *3)))) (-3181 (*1 *2 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-454)))) (-4248 (*1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-454)))) (-1931 (*1 *2 *1 *1) (-12 (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-852 *3)))) (-3667 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-1658 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-2266 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-4279 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-2334 (*1 *2 *1 *1) (-12 (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4067 *1))) (-4 *1 (-852 *3)))) (-3046 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-2121 (*1 *2 *1 *1) (-12 (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-852 *3)))) (-3773 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-3985 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-2705 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-4133 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-1815 (*1 *2 *1 *1) (-12 (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4067 *1))) (-4 *1 (-852 *3)))) (-3833 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(-13 (-1049) (-111 |t#1| |t#1|) (-413 |t#1|) (-10 -8 (-15 -3992 ((-771) $)) (-15 -3251 ((-771) $)) (-15 -3557 (|t#1| $)) (-15 -3577 ($ $)) (-15 -2022 (|t#1| $ (-771))) (-15 -2519 ($ |t#1| (-771))) (-15 -3868 ((-644 |t#1|) $)) (-15 -4002 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-558)) (PROGN (-15 -2972 ((-3 $ "failed") $ |t#1|)) (-15 -1301 ((-2 (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -4045 ((-2 (|:| -2760 $) (|:| -1644 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-454)) (PROGN (-15 -3181 (|t#1| $)) (-15 -4248 ($ $))) |%noBranch|) (IF (|has| |t#1| (-365)) (PROGN (-15 -1931 ((-2 (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -3667 ($ $ $)) (-15 -1658 ($ $ $)) (-15 -2266 ((-3 $ "failed") $ $)) (-15 -4279 ($ $ $)) (-15 -2334 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $)) (-15 -3046 ($ $ $)) (-15 -2121 ((-2 (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -3773 ($ $ $)) (-15 -3985 ($ $ $)) (-15 -2705 ((-3 $ "failed") $ $)) (-15 -4133 ($ $ $)) (-15 -1815 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $)) (-15 -3833 ($ $ $))) |%noBranch|)))
+((-2108 (*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-2466 (*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-3626 (*1 *2 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)))) (-3645 (*1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)))) (-3756 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-852 *2)) (-4 *2 (-1049)))) (-2585 (*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-852 *2)) (-4 *2 (-1049)))) (-3456 (*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-644 *3)))) (-4046 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)))) (-2997 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))) (-2889 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-852 *3)))) (-1338 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-852 *3)))) (-3042 (*1 *2 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-454)))) (-2755 (*1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-454)))) (-2230 (*1 *2 *1 *1) (-12 (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-852 *3)))) (-2103 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-4342 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-4324 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-3050 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-3805 (*1 *2 *1 *1) (-12 (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4152 *1))) (-4 *1 (-852 *3)))) (-1298 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-3540 (*1 *2 *1 *1) (-12 (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-852 *3)))) (-3803 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-2055 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-3124 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-4094 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-3492 (*1 *2 *1 *1) (-12 (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4152 *1))) (-4 *1 (-852 *3)))) (-3144 (*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(-13 (-1049) (-111 |t#1| |t#1|) (-413 |t#1|) (-10 -8 (-15 -2108 ((-771) $)) (-15 -2466 ((-771) $)) (-15 -3626 (|t#1| $)) (-15 -3645 ($ $)) (-15 -3756 (|t#1| $ (-771))) (-15 -2585 ($ |t#1| (-771))) (-15 -3456 ((-644 |t#1|) $)) (-15 -4046 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-558)) (PROGN (-15 -2997 ((-3 $ "failed") $ |t#1|)) (-15 -2889 ((-2 (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -1338 ((-2 (|:| -3644 $) (|:| -4228 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-454)) (PROGN (-15 -3042 (|t#1| $)) (-15 -2755 ($ $))) |%noBranch|) (IF (|has| |t#1| (-365)) (PROGN (-15 -2230 ((-2 (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -2103 ($ $ $)) (-15 -4342 ($ $ $)) (-15 -4324 ((-3 $ "failed") $ $)) (-15 -3050 ($ $ $)) (-15 -3805 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $)) (-15 -1298 ($ $ $)) (-15 -3540 ((-2 (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -3803 ($ $ $)) (-15 -2055 ($ $ $)) (-15 -3124 ((-3 $ "failed") $ $)) (-15 -4094 ($ $ $)) (-15 -3492 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $)) (-15 -3144 ($ $ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-172)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-616 #0=(-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-413 |#1|) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 |#1|) |has| |#1| (-172)) ((-717 |#1|) |has| |#1| (-172)) ((-726) . T) ((-1038 #0#) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-1923 ((|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|)) 20)) (-2121 (((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|)) 49 (|has| |#1| (-365)))) (-4045 (((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|)) 46 (|has| |#1| (-558)))) (-1301 (((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|)) 45 (|has| |#1| (-558)))) (-1931 (((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|)) 48 (|has| |#1| (-365)))) (-4002 ((|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|)) 36)))
-(((-853 |#1| |#2|) (-10 -7 (-15 -1923 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -4002 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-558)) (PROGN (-15 -1301 ((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -4045 ((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -1931 ((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2121 ((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|)) (-1049) (-852 |#1|)) (T -853))
-((-2121 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-365)) (-4 *5 (-1049)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-853 *5 *3)) (-4 *3 (-852 *5)))) (-1931 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-365)) (-4 *5 (-1049)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-853 *5 *3)) (-4 *3 (-852 *5)))) (-4045 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-558)) (-4 *5 (-1049)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-853 *5 *3)) (-4 *3 (-852 *5)))) (-1301 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-558)) (-4 *5 (-1049)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-853 *5 *3)) (-4 *3 (-852 *5)))) (-4002 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1049)) (-5 *1 (-853 *2 *3)) (-4 *3 (-852 *2)))) (-1923 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1049)) (-5 *1 (-853 *5 *2)) (-4 *2 (-852 *5)))))
-(-10 -7 (-15 -1923 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -4002 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-558)) (PROGN (-15 -1301 ((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -4045 ((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -1931 ((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2121 ((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3985 (($ $ $) NIL (|has| |#1| (-365)))) (-3773 (($ $ $) NIL (|has| |#1| (-365)))) (-3046 (($ $ $) NIL (|has| |#1| (-365)))) (-4133 (($ $ $) NIL (|has| |#1| (-365)))) (-1815 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2705 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-2121 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 34 (|has| |#1| (-365)))) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#1| (-454)))) (-3834 (((-862) $ (-862)) NIL)) (-2741 (((-112) $) NIL)) (-2519 (($ |#1| (-771)) NIL)) (-4045 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 30 (|has| |#1| (-558)))) (-1301 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 28 (|has| |#1| (-558)))) (-3251 (((-771) $) NIL)) (-1658 (($ $ $) NIL (|has| |#1| (-365)))) (-3667 (($ $ $) NIL (|has| |#1| (-365)))) (-3833 (($ $ $) NIL (|has| |#1| (-365)))) (-4279 (($ $ $) NIL (|has| |#1| (-365)))) (-2334 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2266 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-1931 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 32 (|has| |#1| (-365)))) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-3992 (((-771) $) NIL)) (-3181 ((|#1| $) NIL (|has| |#1| (-454)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) NIL)) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-771)) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-4002 ((|#1| $ |#1| |#1|) 15)) (-2485 (($) NIL T CONST)) (-2495 (($) 23 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) 19) (($ $ (-771)) 24)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
-(((-854 |#1| |#2| |#3|) (-13 (-852 |#1|) (-10 -8 (-15 -3834 ((-862) $ (-862))))) (-1049) (-99 |#1|) (-1 |#1| |#1|)) (T -854))
-((-3834 (*1 *2 *1 *2) (-12 (-5 *2 (-862)) (-5 *1 (-854 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3)))))
-(-13 (-852 |#1|) (-10 -8 (-15 -3834 ((-862) $ (-862)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-3985 (($ $ $) NIL (|has| |#2| (-365)))) (-3773 (($ $ $) NIL (|has| |#2| (-365)))) (-3046 (($ $ $) NIL (|has| |#2| (-365)))) (-4133 (($ $ $) NIL (|has| |#2| (-365)))) (-1815 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#2| (-365)))) (-2705 (((-3 $ "failed") $ $) NIL (|has| |#2| (-365)))) (-2121 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#2| (-365)))) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 |#2| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) ((|#2| $) NIL)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#2| (-454)))) (-2741 (((-112) $) NIL)) (-2519 (($ |#2| (-771)) 17)) (-4045 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#2| (-558)))) (-1301 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#2| (-558)))) (-3251 (((-771) $) NIL)) (-1658 (($ $ $) NIL (|has| |#2| (-365)))) (-3667 (($ $ $) NIL (|has| |#2| (-365)))) (-3833 (($ $ $) NIL (|has| |#2| (-365)))) (-4279 (($ $ $) NIL (|has| |#2| (-365)))) (-2334 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#2| (-365)))) (-2266 (((-3 $ "failed") $ $) NIL (|has| |#2| (-365)))) (-1931 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#2| (-365)))) (-3557 ((|#2| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2972 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558)))) (-3992 (((-771) $) NIL)) (-3181 ((|#2| $) NIL (|has| |#2| (-454)))) (-2512 (((-862) $) 24) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#2| (-1038 (-409 (-566))))) (($ |#2|) NIL) (($ (-1260 |#1|)) 19)) (-3868 (((-644 |#2|) $) NIL)) (-2022 ((|#2| $ (-771)) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-4002 ((|#2| $ |#2| |#2|) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) 13 T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+((-1999 ((|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|)) 20)) (-3540 (((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|)) 49 (|has| |#1| (-365)))) (-1338 (((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|)) 46 (|has| |#1| (-558)))) (-2889 (((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|)) 45 (|has| |#1| (-558)))) (-2230 (((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|)) 48 (|has| |#1| (-365)))) (-4046 ((|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|)) 36)))
+(((-853 |#1| |#2|) (-10 -7 (-15 -1999 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -4046 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-558)) (PROGN (-15 -2889 ((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1338 ((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -2230 ((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -3540 ((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|)) (-1049) (-852 |#1|)) (T -853))
+((-3540 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-365)) (-4 *5 (-1049)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-853 *5 *3)) (-4 *3 (-852 *5)))) (-2230 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-365)) (-4 *5 (-1049)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-853 *5 *3)) (-4 *3 (-852 *5)))) (-1338 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-558)) (-4 *5 (-1049)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-853 *5 *3)) (-4 *3 (-852 *5)))) (-2889 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-558)) (-4 *5 (-1049)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-853 *5 *3)) (-4 *3 (-852 *5)))) (-4046 (*1 *2 *3 *2 *2 *4 *5) (-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1049)) (-5 *1 (-853 *2 *3)) (-4 *3 (-852 *2)))) (-1999 (*1 *2 *2 *2 *3 *4) (-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1049)) (-5 *1 (-853 *5 *2)) (-4 *2 (-852 *5)))))
+(-10 -7 (-15 -1999 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -4046 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-558)) (PROGN (-15 -2889 ((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -1338 ((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -2230 ((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -3540 ((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-2055 (($ $ $) NIL (|has| |#1| (-365)))) (-3803 (($ $ $) NIL (|has| |#1| (-365)))) (-1298 (($ $ $) NIL (|has| |#1| (-365)))) (-4094 (($ $ $) NIL (|has| |#1| (-365)))) (-3492 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-3124 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-3540 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 34 (|has| |#1| (-365)))) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#1| (-454)))) (-3154 (((-862) $ (-862)) NIL)) (-3466 (((-112) $) NIL)) (-2585 (($ |#1| (-771)) NIL)) (-1338 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 30 (|has| |#1| (-558)))) (-2889 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 28 (|has| |#1| (-558)))) (-2466 (((-771) $) NIL)) (-4342 (($ $ $) NIL (|has| |#1| (-365)))) (-2103 (($ $ $) NIL (|has| |#1| (-365)))) (-3144 (($ $ $) NIL (|has| |#1| (-365)))) (-3050 (($ $ $) NIL (|has| |#1| (-365)))) (-3805 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-4324 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-2230 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 32 (|has| |#1| (-365)))) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-2108 (((-771) $) NIL)) (-3042 ((|#1| $) NIL (|has| |#1| (-454)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-1038 (-409 (-566))))) (($ |#1|) NIL)) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-771)) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-4046 ((|#1| $ |#1| |#1|) 15)) (-2493 (($) NIL T CONST)) (-4333 (($) 23 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) 19) (($ $ (-771)) 24)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 13) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+(((-854 |#1| |#2| |#3|) (-13 (-852 |#1|) (-10 -8 (-15 -3154 ((-862) $ (-862))))) (-1049) (-99 |#1|) (-1 |#1| |#1|)) (T -854))
+((-3154 (*1 *2 *1 *2) (-12 (-5 *2 (-862)) (-5 *1 (-854 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3)))))
+(-13 (-852 |#1|) (-10 -8 (-15 -3154 ((-862) $ (-862)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-2055 (($ $ $) NIL (|has| |#2| (-365)))) (-3803 (($ $ $) NIL (|has| |#2| (-365)))) (-1298 (($ $ $) NIL (|has| |#2| (-365)))) (-4094 (($ $ $) NIL (|has| |#2| (-365)))) (-3492 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#2| (-365)))) (-3124 (((-3 $ "failed") $ $) NIL (|has| |#2| (-365)))) (-3540 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#2| (-365)))) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 |#2| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) ((|#2| $) NIL)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#2| (-454)))) (-3466 (((-112) $) NIL)) (-2585 (($ |#2| (-771)) 17)) (-1338 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#2| (-558)))) (-2889 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#2| (-558)))) (-2466 (((-771) $) NIL)) (-4342 (($ $ $) NIL (|has| |#2| (-365)))) (-2103 (($ $ $) NIL (|has| |#2| (-365)))) (-3144 (($ $ $) NIL (|has| |#2| (-365)))) (-3050 (($ $ $) NIL (|has| |#2| (-365)))) (-3805 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#2| (-365)))) (-4324 (((-3 $ "failed") $ $) NIL (|has| |#2| (-365)))) (-2230 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#2| (-365)))) (-3626 ((|#2| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2997 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558)))) (-2108 (((-771) $) NIL)) (-3042 ((|#2| $) NIL (|has| |#2| (-454)))) (-3780 (((-862) $) 24) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#2| (-1038 (-409 (-566))))) (($ |#2|) NIL) (($ (-1260 |#1|)) 19)) (-3456 (((-644 |#2|) $) NIL)) (-3756 ((|#2| $ (-771)) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-4046 ((|#2| $ |#2| |#2|) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) 13 T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
(((-855 |#1| |#2| |#3| |#4|) (-13 (-852 |#2|) (-616 (-1260 |#1|))) (-1175) (-1049) (-99 |#2|) (-1 |#2| |#2|)) (T -855))
NIL
(-13 (-852 |#2|) (-616 (-1260 |#1|)))
-((-3411 ((|#1| (-771) |#1|) 48 (|has| |#1| (-38 (-409 (-566)))))) (-1557 ((|#1| (-771) (-771) |#1|) 39) ((|#1| (-771) |#1|) 27)) (-1342 ((|#1| (-771) |#1|) 43)) (-1855 ((|#1| (-771) |#1|) 41)) (-1445 ((|#1| (-771) |#1|) 40)))
-(((-856 |#1|) (-10 -7 (-15 -1445 (|#1| (-771) |#1|)) (-15 -1855 (|#1| (-771) |#1|)) (-15 -1342 (|#1| (-771) |#1|)) (-15 -1557 (|#1| (-771) |#1|)) (-15 -1557 (|#1| (-771) (-771) |#1|)) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3411 (|#1| (-771) |#1|)) |%noBranch|)) (-172)) (T -856))
-((-3411 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-172)))) (-1557 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))) (-1557 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))) (-1342 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))) (-1855 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))) (-1445 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))))
-(-10 -7 (-15 -1445 (|#1| (-771) |#1|)) (-15 -1855 (|#1| (-771) |#1|)) (-15 -1342 (|#1| (-771) |#1|)) (-15 -1557 (|#1| (-771) |#1|)) (-15 -1557 (|#1| (-771) (-771) |#1|)) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3411 (|#1| (-771) |#1|)) |%noBranch|))
-((-2985 (((-112) $ $) 7)) (-1439 (($ $ $) 14)) (-3059 (($ $ $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2998 (((-112) $ $) 17)) (-2974 (((-112) $ $) 18)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 16)) (-2962 (((-112) $ $) 19)) (** (($ $ (-921)) 22)) (* (($ $ $) 21)))
+((-1406 ((|#1| (-771) |#1|) 48 (|has| |#1| (-38 (-409 (-566)))))) (-2700 ((|#1| (-771) (-771) |#1|) 39) ((|#1| (-771) |#1|) 27)) (-3291 ((|#1| (-771) |#1|) 43)) (-2676 ((|#1| (-771) |#1|) 41)) (-4004 ((|#1| (-771) |#1|) 40)))
+(((-856 |#1|) (-10 -7 (-15 -4004 (|#1| (-771) |#1|)) (-15 -2676 (|#1| (-771) |#1|)) (-15 -3291 (|#1| (-771) |#1|)) (-15 -2700 (|#1| (-771) |#1|)) (-15 -2700 (|#1| (-771) (-771) |#1|)) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -1406 (|#1| (-771) |#1|)) |%noBranch|)) (-172)) (T -856))
+((-1406 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-172)))) (-2700 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))) (-2700 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))) (-3291 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))) (-2676 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))) (-4004 (*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))))
+(-10 -7 (-15 -4004 (|#1| (-771) |#1|)) (-15 -2676 (|#1| (-771) |#1|)) (-15 -3291 (|#1| (-771) |#1|)) (-15 -2700 (|#1| (-771) |#1|)) (-15 -2700 (|#1| (-771) (-771) |#1|)) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -1406 (|#1| (-771) |#1|)) |%noBranch|))
+((-3009 (((-112) $ $) 7)) (-1945 (($ $ $) 14)) (-2709 (($ $ $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-3010 (((-112) $ $) 17)) (-2984 (((-112) $ $) 18)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 16)) (-2972 (((-112) $ $) 19)) (** (($ $ (-921)) 22)) (* (($ $ $) 21)))
(((-857) (-140)) (T -857))
NIL
(-13 (-850) (-1111))
(((-102) . T) ((-613 (-862)) . T) ((-850) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-2212 (((-566) $) 14)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 20) (($ (-566)) 13)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 9)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 11)))
-(((-858) (-13 (-850) (-10 -8 (-15 -2512 ($ (-566))) (-15 -2212 ((-566) $))))) (T -858))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-858)))) (-2212 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-858)))))
-(-13 (-850) (-10 -8 (-15 -2512 ($ (-566))) (-15 -2212 ((-566) $))))
-((-2702 (((-691 (-1222)) $ (-1222)) 15)) (-1734 (((-691 (-551)) $ (-551)) 12)) (-4068 (((-771) $ (-128)) 30)))
-(((-859 |#1|) (-10 -8 (-15 -4068 ((-771) |#1| (-128))) (-15 -2702 ((-691 (-1222)) |#1| (-1222))) (-15 -1734 ((-691 (-551)) |#1| (-551)))) (-860)) (T -859))
-NIL
-(-10 -8 (-15 -4068 ((-771) |#1| (-128))) (-15 -2702 ((-691 (-1222)) |#1| (-1222))) (-15 -1734 ((-691 (-551)) |#1| (-551))))
-((-2702 (((-691 (-1222)) $ (-1222)) 8)) (-1734 (((-691 (-551)) $ (-551)) 9)) (-4068 (((-771) $ (-128)) 7)) (-2030 (((-691 (-129)) $ (-129)) 10)) (-1459 (($ $) 6)))
+((-3009 (((-112) $ $) NIL)) (-2252 (((-566) $) 14)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 20) (($ (-566)) 13)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 9)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 11)))
+(((-858) (-13 (-850) (-10 -8 (-15 -3780 ($ (-566))) (-15 -2252 ((-566) $))))) (T -858))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-858)))) (-2252 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-858)))))
+(-13 (-850) (-10 -8 (-15 -3780 ($ (-566))) (-15 -2252 ((-566) $))))
+((-4273 (((-691 (-1222)) $ (-1222)) 15)) (-3884 (((-691 (-551)) $ (-551)) 12)) (-1549 (((-771) $ (-128)) 30)))
+(((-859 |#1|) (-10 -8 (-15 -1549 ((-771) |#1| (-128))) (-15 -4273 ((-691 (-1222)) |#1| (-1222))) (-15 -3884 ((-691 (-551)) |#1| (-551)))) (-860)) (T -859))
+NIL
+(-10 -8 (-15 -1549 ((-771) |#1| (-128))) (-15 -4273 ((-691 (-1222)) |#1| (-1222))) (-15 -3884 ((-691 (-551)) |#1| (-551))))
+((-4273 (((-691 (-1222)) $ (-1222)) 8)) (-3884 (((-691 (-551)) $ (-551)) 9)) (-1549 (((-771) $ (-128)) 7)) (-3832 (((-691 (-129)) $ (-129)) 10)) (-4127 (($ $) 6)))
(((-860) (-140)) (T -860))
-((-2030 (*1 *2 *1 *3) (-12 (-4 *1 (-860)) (-5 *2 (-691 (-129))) (-5 *3 (-129)))) (-1734 (*1 *2 *1 *3) (-12 (-4 *1 (-860)) (-5 *2 (-691 (-551))) (-5 *3 (-551)))) (-2702 (*1 *2 *1 *3) (-12 (-4 *1 (-860)) (-5 *2 (-691 (-1222))) (-5 *3 (-1222)))) (-4068 (*1 *2 *1 *3) (-12 (-4 *1 (-860)) (-5 *3 (-128)) (-5 *2 (-771)))))
-(-13 (-173) (-10 -8 (-15 -2030 ((-691 (-129)) $ (-129))) (-15 -1734 ((-691 (-551)) $ (-551))) (-15 -2702 ((-691 (-1222)) $ (-1222))) (-15 -4068 ((-771) $ (-128)))))
+((-3832 (*1 *2 *1 *3) (-12 (-4 *1 (-860)) (-5 *2 (-691 (-129))) (-5 *3 (-129)))) (-3884 (*1 *2 *1 *3) (-12 (-4 *1 (-860)) (-5 *2 (-691 (-551))) (-5 *3 (-551)))) (-4273 (*1 *2 *1 *3) (-12 (-4 *1 (-860)) (-5 *2 (-691 (-1222))) (-5 *3 (-1222)))) (-1549 (*1 *2 *1 *3) (-12 (-4 *1 (-860)) (-5 *3 (-128)) (-5 *2 (-771)))))
+(-13 (-173) (-10 -8 (-15 -3832 ((-691 (-129)) $ (-129))) (-15 -3884 ((-691 (-551)) $ (-551))) (-15 -4273 ((-691 (-1222)) $ (-1222))) (-15 -1549 ((-771) $ (-128)))))
(((-173) . T))
-((-2702 (((-691 (-1222)) $ (-1222)) NIL)) (-1734 (((-691 (-551)) $ (-551)) NIL)) (-4068 (((-771) $ (-128)) NIL)) (-2030 (((-691 (-129)) $ (-129)) 22)) (-1412 (($ (-390)) 12) (($ (-1157)) 14)) (-3218 (((-112) $) 19)) (-2512 (((-862) $) 26)) (-1459 (($ $) 23)))
-(((-861) (-13 (-860) (-613 (-862)) (-10 -8 (-15 -1412 ($ (-390))) (-15 -1412 ($ (-1157))) (-15 -3218 ((-112) $))))) (T -861))
-((-1412 (*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-861)))) (-1412 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-861)))) (-3218 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-861)))))
-(-13 (-860) (-613 (-862)) (-10 -8 (-15 -1412 ($ (-390))) (-15 -1412 ($ (-1157))) (-15 -3218 ((-112) $))))
-((-2985 (((-112) $ $) NIL) (($ $ $) 85)) (-3358 (($ $ $) 125)) (-3463 (((-566) $) 31) (((-566)) 36)) (-2576 (($ (-566)) 53)) (-3998 (($ $ $) 54) (($ (-644 $)) 84)) (-1586 (($ $ (-644 $)) 82)) (-1955 (((-566) $) 34)) (-2018 (($ $ $) 73)) (-3698 (($ $) 140) (($ $ $) 141) (($ $ $ $) 142)) (-2394 (((-566) $) 33)) (-1553 (($ $ $) 72)) (-4318 (($ $) 114)) (-3214 (($ $ $) 129)) (-3942 (($ (-644 $)) 61)) (-3831 (($ $ (-644 $)) 79)) (-4340 (($ (-566) (-566)) 55)) (-3791 (($ $) 126) (($ $ $) 127)) (-4368 (($ $ (-566)) 43) (($ $) 46)) (-2926 (($ $ $) 97)) (-2945 (($ $ $) 132)) (-1603 (($ $) 115)) (-2938 (($ $ $) 98)) (-2133 (($ $) 143) (($ $ $) 144) (($ $ $ $) 145)) (-2932 (((-1269) $) 10)) (-3930 (($ $) 118) (($ $ (-771)) 122)) (-3143 (($ $ $) 75)) (-1722 (($ $ $) 74)) (-3541 (($ $ (-644 $)) 110)) (-2351 (($ $ $) 113)) (-3024 (($ (-644 $)) 59)) (-4334 (($ $) 70) (($ (-644 $)) 71)) (-2252 (($ $ $) 123)) (-2050 (($ $) 116)) (-3837 (($ $ $) 128)) (-3834 (($ (-566)) 21) (($ (-1175)) 23) (($ (-1157)) 30) (($ (-225)) 25)) (-2450 (($ $ $) 101)) (-2426 (($ $) 102)) (-4300 (((-1269) (-1157)) 15)) (-1759 (($ (-1157)) 14)) (-4198 (($ (-644 (-644 $))) 58)) (-4357 (($ $ (-566)) 42) (($ $) 45)) (-2878 (((-1157) $) NIL)) (-1456 (($ $ $) 131)) (-1395 (($ $) 146) (($ $ $) 147) (($ $ $ $) 148)) (-1611 (((-112) $) 108)) (-4321 (($ $ (-644 $)) 111) (($ $ $ $) 112)) (-1545 (($ (-566)) 39)) (-3173 (((-566) $) 32) (((-566)) 35)) (-2210 (($ $ $) 40) (($ (-644 $)) 83)) (-4033 (((-1119) $) NIL)) (-2972 (($ $ $) 99)) (-2954 (($) 13)) (-4386 (($ $ (-644 $)) 109)) (-4325 (((-1157) (-1157)) 8)) (-1452 (($ $) 117) (($ $ (-771)) 121)) (-2961 (($ $ $) 96)) (-2862 (($ $ (-771)) 139)) (-3857 (($ (-644 $)) 60)) (-2512 (((-862) $) 19)) (-2420 (($ $ (-566)) 41) (($ $) 44)) (-3049 (($ $) 68) (($ (-644 $)) 69)) (-2465 (($ $) 66) (($ (-644 $)) 67)) (-3236 (($ $) 124)) (-2812 (($ (-644 $)) 65)) (-1523 (($ $ $) 105)) (-3122 (((-112) $ $) NIL)) (-1879 (($ $ $) 130)) (-2438 (($ $ $) 100)) (-3619 (($ $ $) 103) (($ $) 104)) (-2998 (($ $ $) 89)) (-2974 (($ $ $) 87)) (-2940 (((-112) $ $) 16) (($ $ $) 17)) (-2987 (($ $ $) 88)) (-2962 (($ $ $) 86)) (-3061 (($ $ $) 94)) (-3047 (($ $ $) 91) (($ $) 92)) (-3034 (($ $ $) 90)) (** (($ $ $) 95)) (* (($ $ $) 93)))
-(((-862) (-13 (-1099) (-10 -8 (-15 -2932 ((-1269) $)) (-15 -1759 ($ (-1157))) (-15 -4300 ((-1269) (-1157))) (-15 -3834 ($ (-566))) (-15 -3834 ($ (-1175))) (-15 -3834 ($ (-1157))) (-15 -3834 ($ (-225))) (-15 -2954 ($)) (-15 -4325 ((-1157) (-1157))) (-15 -3463 ((-566) $)) (-15 -3173 ((-566) $)) (-15 -3463 ((-566))) (-15 -3173 ((-566))) (-15 -2394 ((-566) $)) (-15 -1955 ((-566) $)) (-15 -1545 ($ (-566))) (-15 -2576 ($ (-566))) (-15 -4340 ($ (-566) (-566))) (-15 -4357 ($ $ (-566))) (-15 -4368 ($ $ (-566))) (-15 -2420 ($ $ (-566))) (-15 -4357 ($ $)) (-15 -4368 ($ $)) (-15 -2420 ($ $)) (-15 -2210 ($ $ $)) (-15 -3998 ($ $ $)) (-15 -2210 ($ (-644 $))) (-15 -3998 ($ (-644 $))) (-15 -3541 ($ $ (-644 $))) (-15 -4321 ($ $ (-644 $))) (-15 -4321 ($ $ $ $)) (-15 -2351 ($ $ $)) (-15 -1611 ((-112) $)) (-15 -4386 ($ $ (-644 $))) (-15 -4318 ($ $)) (-15 -1456 ($ $ $)) (-15 -3236 ($ $)) (-15 -4198 ($ (-644 (-644 $)))) (-15 -3358 ($ $ $)) (-15 -3791 ($ $)) (-15 -3791 ($ $ $)) (-15 -3837 ($ $ $)) (-15 -3214 ($ $ $)) (-15 -1879 ($ $ $)) (-15 -2945 ($ $ $)) (-15 -2862 ($ $ (-771))) (-15 -1523 ($ $ $)) (-15 -1553 ($ $ $)) (-15 -2018 ($ $ $)) (-15 -1722 ($ $ $)) (-15 -3143 ($ $ $)) (-15 -3831 ($ $ (-644 $))) (-15 -1586 ($ $ (-644 $))) (-15 -1603 ($ $)) (-15 -1452 ($ $)) (-15 -1452 ($ $ (-771))) (-15 -3930 ($ $)) (-15 -3930 ($ $ (-771))) (-15 -2050 ($ $)) (-15 -2252 ($ $ $)) (-15 -3698 ($ $)) (-15 -3698 ($ $ $)) (-15 -3698 ($ $ $ $)) (-15 -2133 ($ $)) (-15 -2133 ($ $ $)) (-15 -2133 ($ $ $ $)) (-15 -1395 ($ $)) (-15 -1395 ($ $ $)) (-15 -1395 ($ $ $ $)) (-15 -2465 ($ $)) (-15 -2465 ($ (-644 $))) (-15 -3049 ($ $)) (-15 -3049 ($ (-644 $))) (-15 -4334 ($ $)) (-15 -4334 ($ (-644 $))) (-15 -3024 ($ (-644 $))) (-15 -3857 ($ (-644 $))) (-15 -3942 ($ (-644 $))) (-15 -2812 ($ (-644 $))) (-15 -2940 ($ $ $)) (-15 -2985 ($ $ $)) (-15 -2962 ($ $ $)) (-15 -2974 ($ $ $)) (-15 -2987 ($ $ $)) (-15 -2998 ($ $ $)) (-15 -3034 ($ $ $)) (-15 -3047 ($ $ $)) (-15 -3047 ($ $)) (-15 * ($ $ $)) (-15 -3061 ($ $ $)) (-15 ** ($ $ $)) (-15 -2961 ($ $ $)) (-15 -2926 ($ $ $)) (-15 -2938 ($ $ $)) (-15 -2972 ($ $ $)) (-15 -2438 ($ $ $)) (-15 -2450 ($ $ $)) (-15 -2426 ($ $)) (-15 -3619 ($ $ $)) (-15 -3619 ($ $))))) (T -862))
-((-2932 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-862)))) (-1759 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862)))) (-4300 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-862)))) (-3834 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-3834 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-862)))) (-3834 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862)))) (-3834 (*1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-862)))) (-2954 (*1 *1) (-5 *1 (-862))) (-4325 (*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862)))) (-3463 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-3173 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-3463 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-3173 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-2394 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-1955 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-1545 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-2576 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-4340 (*1 *1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-4357 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-4368 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-2420 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-4357 (*1 *1 *1) (-5 *1 (-862))) (-4368 (*1 *1 *1) (-5 *1 (-862))) (-2420 (*1 *1 *1) (-5 *1 (-862))) (-2210 (*1 *1 *1 *1) (-5 *1 (-862))) (-3998 (*1 *1 *1 *1) (-5 *1 (-862))) (-2210 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-3998 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-3541 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-4321 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-4321 (*1 *1 *1 *1 *1) (-5 *1 (-862))) (-2351 (*1 *1 *1 *1) (-5 *1 (-862))) (-1611 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-862)))) (-4386 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-4318 (*1 *1 *1) (-5 *1 (-862))) (-1456 (*1 *1 *1 *1) (-5 *1 (-862))) (-3236 (*1 *1 *1) (-5 *1 (-862))) (-4198 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-862)))) (-5 *1 (-862)))) (-3358 (*1 *1 *1 *1) (-5 *1 (-862))) (-3791 (*1 *1 *1) (-5 *1 (-862))) (-3791 (*1 *1 *1 *1) (-5 *1 (-862))) (-3837 (*1 *1 *1 *1) (-5 *1 (-862))) (-3214 (*1 *1 *1 *1) (-5 *1 (-862))) (-1879 (*1 *1 *1 *1) (-5 *1 (-862))) (-2945 (*1 *1 *1 *1) (-5 *1 (-862))) (-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862)))) (-1523 (*1 *1 *1 *1) (-5 *1 (-862))) (-1553 (*1 *1 *1 *1) (-5 *1 (-862))) (-2018 (*1 *1 *1 *1) (-5 *1 (-862))) (-1722 (*1 *1 *1 *1) (-5 *1 (-862))) (-3143 (*1 *1 *1 *1) (-5 *1 (-862))) (-3831 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-1586 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-1603 (*1 *1 *1) (-5 *1 (-862))) (-1452 (*1 *1 *1) (-5 *1 (-862))) (-1452 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862)))) (-3930 (*1 *1 *1) (-5 *1 (-862))) (-3930 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862)))) (-2050 (*1 *1 *1) (-5 *1 (-862))) (-2252 (*1 *1 *1 *1) (-5 *1 (-862))) (-3698 (*1 *1 *1) (-5 *1 (-862))) (-3698 (*1 *1 *1 *1) (-5 *1 (-862))) (-3698 (*1 *1 *1 *1 *1) (-5 *1 (-862))) (-2133 (*1 *1 *1) (-5 *1 (-862))) (-2133 (*1 *1 *1 *1) (-5 *1 (-862))) (-2133 (*1 *1 *1 *1 *1) (-5 *1 (-862))) (-1395 (*1 *1 *1) (-5 *1 (-862))) (-1395 (*1 *1 *1 *1) (-5 *1 (-862))) (-1395 (*1 *1 *1 *1 *1) (-5 *1 (-862))) (-2465 (*1 *1 *1) (-5 *1 (-862))) (-2465 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-3049 (*1 *1 *1) (-5 *1 (-862))) (-3049 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-4334 (*1 *1 *1) (-5 *1 (-862))) (-4334 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-3024 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-3857 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-3942 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-2812 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-2940 (*1 *1 *1 *1) (-5 *1 (-862))) (-2985 (*1 *1 *1 *1) (-5 *1 (-862))) (-2962 (*1 *1 *1 *1) (-5 *1 (-862))) (-2974 (*1 *1 *1 *1) (-5 *1 (-862))) (-2987 (*1 *1 *1 *1) (-5 *1 (-862))) (-2998 (*1 *1 *1 *1) (-5 *1 (-862))) (-3034 (*1 *1 *1 *1) (-5 *1 (-862))) (-3047 (*1 *1 *1 *1) (-5 *1 (-862))) (-3047 (*1 *1 *1) (-5 *1 (-862))) (* (*1 *1 *1 *1) (-5 *1 (-862))) (-3061 (*1 *1 *1 *1) (-5 *1 (-862))) (** (*1 *1 *1 *1) (-5 *1 (-862))) (-2961 (*1 *1 *1 *1) (-5 *1 (-862))) (-2926 (*1 *1 *1 *1) (-5 *1 (-862))) (-2938 (*1 *1 *1 *1) (-5 *1 (-862))) (-2972 (*1 *1 *1 *1) (-5 *1 (-862))) (-2438 (*1 *1 *1 *1) (-5 *1 (-862))) (-2450 (*1 *1 *1 *1) (-5 *1 (-862))) (-2426 (*1 *1 *1) (-5 *1 (-862))) (-3619 (*1 *1 *1 *1) (-5 *1 (-862))) (-3619 (*1 *1 *1) (-5 *1 (-862))))
-(-13 (-1099) (-10 -8 (-15 -2932 ((-1269) $)) (-15 -1759 ($ (-1157))) (-15 -4300 ((-1269) (-1157))) (-15 -3834 ($ (-566))) (-15 -3834 ($ (-1175))) (-15 -3834 ($ (-1157))) (-15 -3834 ($ (-225))) (-15 -2954 ($)) (-15 -4325 ((-1157) (-1157))) (-15 -3463 ((-566) $)) (-15 -3173 ((-566) $)) (-15 -3463 ((-566))) (-15 -3173 ((-566))) (-15 -2394 ((-566) $)) (-15 -1955 ((-566) $)) (-15 -1545 ($ (-566))) (-15 -2576 ($ (-566))) (-15 -4340 ($ (-566) (-566))) (-15 -4357 ($ $ (-566))) (-15 -4368 ($ $ (-566))) (-15 -2420 ($ $ (-566))) (-15 -4357 ($ $)) (-15 -4368 ($ $)) (-15 -2420 ($ $)) (-15 -2210 ($ $ $)) (-15 -3998 ($ $ $)) (-15 -2210 ($ (-644 $))) (-15 -3998 ($ (-644 $))) (-15 -3541 ($ $ (-644 $))) (-15 -4321 ($ $ (-644 $))) (-15 -4321 ($ $ $ $)) (-15 -2351 ($ $ $)) (-15 -1611 ((-112) $)) (-15 -4386 ($ $ (-644 $))) (-15 -4318 ($ $)) (-15 -1456 ($ $ $)) (-15 -3236 ($ $)) (-15 -4198 ($ (-644 (-644 $)))) (-15 -3358 ($ $ $)) (-15 -3791 ($ $)) (-15 -3791 ($ $ $)) (-15 -3837 ($ $ $)) (-15 -3214 ($ $ $)) (-15 -1879 ($ $ $)) (-15 -2945 ($ $ $)) (-15 -2862 ($ $ (-771))) (-15 -1523 ($ $ $)) (-15 -1553 ($ $ $)) (-15 -2018 ($ $ $)) (-15 -1722 ($ $ $)) (-15 -3143 ($ $ $)) (-15 -3831 ($ $ (-644 $))) (-15 -1586 ($ $ (-644 $))) (-15 -1603 ($ $)) (-15 -1452 ($ $)) (-15 -1452 ($ $ (-771))) (-15 -3930 ($ $)) (-15 -3930 ($ $ (-771))) (-15 -2050 ($ $)) (-15 -2252 ($ $ $)) (-15 -3698 ($ $)) (-15 -3698 ($ $ $)) (-15 -3698 ($ $ $ $)) (-15 -2133 ($ $)) (-15 -2133 ($ $ $)) (-15 -2133 ($ $ $ $)) (-15 -1395 ($ $)) (-15 -1395 ($ $ $)) (-15 -1395 ($ $ $ $)) (-15 -2465 ($ $)) (-15 -2465 ($ (-644 $))) (-15 -3049 ($ $)) (-15 -3049 ($ (-644 $))) (-15 -4334 ($ $)) (-15 -4334 ($ (-644 $))) (-15 -3024 ($ (-644 $))) (-15 -3857 ($ (-644 $))) (-15 -3942 ($ (-644 $))) (-15 -2812 ($ (-644 $))) (-15 -2940 ($ $ $)) (-15 -2985 ($ $ $)) (-15 -2962 ($ $ $)) (-15 -2974 ($ $ $)) (-15 -2987 ($ $ $)) (-15 -2998 ($ $ $)) (-15 -3034 ($ $ $)) (-15 -3047 ($ $ $)) (-15 -3047 ($ $)) (-15 * ($ $ $)) (-15 -3061 ($ $ $)) (-15 ** ($ $ $)) (-15 -2961 ($ $ $)) (-15 -2926 ($ $ $)) (-15 -2938 ($ $ $)) (-15 -2972 ($ $ $)) (-15 -2438 ($ $ $)) (-15 -2450 ($ $ $)) (-15 -2426 ($ $)) (-15 -3619 ($ $ $)) (-15 -3619 ($ $))))
-((-2701 (((-1269) (-644 (-52))) 24)) (-3587 (((-1269) (-1157) (-862)) 14) (((-1269) (-862)) 9) (((-1269) (-1157)) 11)))
-(((-863) (-10 -7 (-15 -3587 ((-1269) (-1157))) (-15 -3587 ((-1269) (-862))) (-15 -3587 ((-1269) (-1157) (-862))) (-15 -2701 ((-1269) (-644 (-52)))))) (T -863))
-((-2701 (*1 *2 *3) (-12 (-5 *3 (-644 (-52))) (-5 *2 (-1269)) (-5 *1 (-863)))) (-3587 (*1 *2 *3 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-862)) (-5 *2 (-1269)) (-5 *1 (-863)))) (-3587 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-863)))) (-3587 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-863)))))
-(-10 -7 (-15 -3587 ((-1269) (-1157))) (-15 -3587 ((-1269) (-862))) (-15 -3587 ((-1269) (-1157) (-862))) (-15 -2701 ((-1269) (-644 (-52)))))
-((-2985 (((-112) $ $) NIL)) (-1353 (((-3 $ "failed") (-1175)) 39)) (-4025 (((-771)) 32)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3712 (((-921) $) 29)) (-2878 (((-1157) $) 46)) (-2168 (($ (-921)) 28)) (-4033 (((-1119) $) NIL)) (-3134 (((-1175) $) 13) (((-538) $) 19) (((-892 (-381)) $) 26) (((-892 (-566)) $) 22)) (-2512 (((-862) $) 16)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 43)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 41)))
-(((-864 |#1|) (-13 (-844) (-614 (-1175)) (-614 (-538)) (-614 (-892 (-381))) (-614 (-892 (-566))) (-10 -8 (-15 -1353 ((-3 $ "failed") (-1175))))) (-644 (-1175))) (T -864))
-((-1353 (*1 *1 *2) (|partial| -12 (-5 *2 (-1175)) (-5 *1 (-864 *3)) (-14 *3 (-644 *2)))))
-(-13 (-844) (-614 (-1175)) (-614 (-538)) (-614 (-892 (-381))) (-614 (-892 (-566))) (-10 -8 (-15 -1353 ((-3 $ "failed") (-1175)))))
-((-2985 (((-112) $ $) NIL)) (-2628 (((-508) $) 9)) (-2404 (((-644 (-441)) $) 13)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 21)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 16)))
-(((-865) (-13 (-1099) (-10 -8 (-15 -2628 ((-508) $)) (-15 -2404 ((-644 (-441)) $))))) (T -865))
-((-2628 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-865)))) (-2404 (*1 *2 *1) (-12 (-5 *2 (-644 (-441))) (-5 *1 (-865)))))
-(-13 (-1099) (-10 -8 (-15 -2628 ((-508) $)) (-15 -2404 ((-644 (-441)) $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ (-952 |#1|)) NIL) (((-952 |#1|) $) NIL) (($ |#1|) NIL (|has| |#1| (-172)))) (-3795 (((-771)) NIL T CONST)) (-2968 (((-1269) (-771)) NIL)) (-3122 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3061 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
-(((-866 |#1| |#2| |#3| |#4|) (-13 (-1049) (-492 (-952 |#1|)) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -3061 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2968 ((-1269) (-771))))) (-1049) (-644 (-1175)) (-644 (-771)) (-771)) (T -866))
-((-3061 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-866 *2 *3 *4 *5)) (-4 *2 (-365)) (-4 *2 (-1049)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-771))) (-14 *5 (-771)))) (-2968 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-866 *4 *5 *6 *7)) (-4 *4 (-1049)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 *3)) (-14 *7 *3))))
-(-13 (-1049) (-492 (-952 |#1|)) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -3061 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2968 ((-1269) (-771)))))
-((-1438 (((-3 (-174 |#3|) "failed") (-771) (-771) |#2| |#2|) 43)) (-1731 (((-3 (-409 |#3|) "failed") (-771) (-771) |#2| |#2|) 34)))
-(((-867 |#1| |#2| |#3|) (-10 -7 (-15 -1731 ((-3 (-409 |#3|) "failed") (-771) (-771) |#2| |#2|)) (-15 -1438 ((-3 (-174 |#3|) "failed") (-771) (-771) |#2| |#2|))) (-365) (-1255 |#1|) (-1240 |#1|)) (T -867))
-((-1438 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-771)) (-4 *5 (-365)) (-5 *2 (-174 *6)) (-5 *1 (-867 *5 *4 *6)) (-4 *4 (-1255 *5)) (-4 *6 (-1240 *5)))) (-1731 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-771)) (-4 *5 (-365)) (-5 *2 (-409 *6)) (-5 *1 (-867 *5 *4 *6)) (-4 *4 (-1255 *5)) (-4 *6 (-1240 *5)))))
-(-10 -7 (-15 -1731 ((-3 (-409 |#3|) "failed") (-771) (-771) |#2| |#2|)) (-15 -1438 ((-3 (-174 |#3|) "failed") (-771) (-771) |#2| |#2|)))
-((-1731 (((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|)) 30) (((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) 28)))
-(((-868 |#1| |#2| |#3|) (-10 -7 (-15 -1731 ((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|))) (-15 -1731 ((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|)))) (-365) (-1175) |#1|) (T -868))
-((-1731 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-771)) (-5 *4 (-1256 *5 *6 *7)) (-4 *5 (-365)) (-14 *6 (-1175)) (-14 *7 *5) (-5 *2 (-409 (-1237 *6 *5))) (-5 *1 (-868 *5 *6 *7)))) (-1731 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-771)) (-5 *4 (-1256 *5 *6 *7)) (-4 *5 (-365)) (-14 *6 (-1175)) (-14 *7 *5) (-5 *2 (-409 (-1237 *6 *5))) (-5 *1 (-868 *5 *6 *7)))))
-(-10 -7 (-15 -1731 ((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|))) (-15 -1731 ((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2402 (($ $ (-566)) 68)) (-1561 (((-112) $ $) 65)) (-2342 (($) 18 T CONST)) (-3791 (($ (-1171 (-566)) (-566)) 67)) (-2926 (($ $ $) 61)) (-1579 (((-3 $ "failed") $) 37)) (-3384 (($ $) 70)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-2716 (((-771) $) 75)) (-2741 (((-112) $) 35)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-4030 (((-566)) 72)) (-3692 (((-566) $) 71)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-1938 (($ $ (-566)) 74)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1813 (((-771) $) 64)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-3159 (((-1155 (-566)) $) 76)) (-1973 (($ $) 73)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-3645 (((-566) $ (-566)) 69)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-4273 (((-691 (-1222)) $ (-1222)) NIL)) (-3884 (((-691 (-551)) $ (-551)) NIL)) (-1549 (((-771) $ (-128)) NIL)) (-3832 (((-691 (-129)) $ (-129)) 22)) (-3692 (($ (-390)) 12) (($ (-1157)) 14)) (-3390 (((-112) $) 19)) (-3780 (((-862) $) 26)) (-4127 (($ $) 23)))
+(((-861) (-13 (-860) (-613 (-862)) (-10 -8 (-15 -3692 ($ (-390))) (-15 -3692 ($ (-1157))) (-15 -3390 ((-112) $))))) (T -861))
+((-3692 (*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-861)))) (-3692 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-861)))) (-3390 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-861)))))
+(-13 (-860) (-613 (-862)) (-10 -8 (-15 -3692 ($ (-390))) (-15 -3692 ($ (-1157))) (-15 -3390 ((-112) $))))
+((-3009 (((-112) $ $) NIL) (($ $ $) 85)) (-2146 (($ $ $) 125)) (-3496 (((-566) $) 31) (((-566)) 36)) (-2441 (($ (-566)) 53)) (-2159 (($ $ $) 54) (($ (-644 $)) 84)) (-1809 (($ $ (-644 $)) 82)) (-4307 (((-566) $) 34)) (-4192 (($ $ $) 73)) (-1441 (($ $) 140) (($ $ $) 141) (($ $ $ $) 142)) (-3179 (((-566) $) 33)) (-2671 (($ $ $) 72)) (-4336 (($ $) 114)) (-3358 (($ $ $) 129)) (-2854 (($ (-644 $)) 61)) (-3957 (($ $ (-644 $)) 79)) (-2454 (($ (-566) (-566)) 55)) (-3972 (($ $) 126) (($ $ $) 127)) (-4394 (($ $ (-566)) 43) (($ $) 46)) (-2949 (($ $ $) 97)) (-1801 (($ $ $) 132)) (-1971 (($ $) 115)) (-2960 (($ $ $) 98)) (-2457 (($ $) 143) (($ $ $) 144) (($ $ $ $) 145)) (-2978 (((-1269) $) 10)) (-2760 (($ $) 118) (($ $ (-771)) 122)) (-3960 (($ $ $) 75)) (-3770 (($ $ $) 74)) (-4271 (($ $ (-644 $)) 110)) (-3966 (($ $ $) 113)) (-2362 (($ (-644 $)) 59)) (-2388 (($ $) 70) (($ (-644 $)) 71)) (-2336 (($ $ $) 123)) (-4030 (($ $) 116)) (-3176 (($ $ $) 128)) (-3154 (($ (-566)) 21) (($ (-1175)) 23) (($ (-1157)) 30) (($ (-225)) 25)) (-2461 (($ $ $) 101)) (-2436 (($ $) 102)) (-2036 (((-1269) (-1157)) 15)) (-1817 (($ (-1157)) 14)) (-1883 (($ (-644 (-644 $))) 58)) (-4380 (($ $ (-566)) 42) (($ $) 45)) (-2402 (((-1157) $) NIL)) (-1520 (($ $ $) 131)) (-3762 (($ $) 146) (($ $ $) 147) (($ $ $ $) 148)) (-2417 (((-112) $) 108)) (-2244 (($ $ (-644 $)) 111) (($ $ $ $) 112)) (-2591 (($ (-566)) 39)) (-3906 (((-566) $) 32) (((-566)) 35)) (-1918 (($ $ $) 40) (($ (-644 $)) 83)) (-4056 (((-1119) $) NIL)) (-2997 (($ $ $) 99)) (-1793 (($) 13)) (-4393 (($ $ (-644 $)) 109)) (-2287 (((-1157) (-1157)) 8)) (-4086 (($ $) 117) (($ $ (-771)) 121)) (-2983 (($ $ $) 96)) (-2578 (($ $ (-771)) 139)) (-3372 (($ (-644 $)) 60)) (-3780 (((-862) $) 19)) (-3174 (($ $ (-566)) 41) (($ $) 44)) (-1309 (($ $) 68) (($ (-644 $)) 69)) (-2535 (($ $) 66) (($ (-644 $)) 67)) (-1442 (($ $) 124)) (-2955 (($ (-644 $)) 65)) (-2378 (($ $ $) 105)) (-3801 (((-112) $ $) NIL)) (-2900 (($ $ $) 130)) (-2447 (($ $ $) 100)) (-3646 (($ $ $) 103) (($ $) 104)) (-3010 (($ $ $) 89)) (-2984 (($ $ $) 87)) (-2950 (((-112) $ $) 16) (($ $ $) 17)) (-2999 (($ $ $) 88)) (-2972 (($ $ $) 86)) (-3062 (($ $ $) 94)) (-3051 (($ $ $) 91) (($ $) 92)) (-3040 (($ $ $) 90)) (** (($ $ $) 95)) (* (($ $ $) 93)))
+(((-862) (-13 (-1099) (-10 -8 (-15 -2978 ((-1269) $)) (-15 -1817 ($ (-1157))) (-15 -2036 ((-1269) (-1157))) (-15 -3154 ($ (-566))) (-15 -3154 ($ (-1175))) (-15 -3154 ($ (-1157))) (-15 -3154 ($ (-225))) (-15 -1793 ($)) (-15 -2287 ((-1157) (-1157))) (-15 -3496 ((-566) $)) (-15 -3906 ((-566) $)) (-15 -3496 ((-566))) (-15 -3906 ((-566))) (-15 -3179 ((-566) $)) (-15 -4307 ((-566) $)) (-15 -2591 ($ (-566))) (-15 -2441 ($ (-566))) (-15 -2454 ($ (-566) (-566))) (-15 -4380 ($ $ (-566))) (-15 -4394 ($ $ (-566))) (-15 -3174 ($ $ (-566))) (-15 -4380 ($ $)) (-15 -4394 ($ $)) (-15 -3174 ($ $)) (-15 -1918 ($ $ $)) (-15 -2159 ($ $ $)) (-15 -1918 ($ (-644 $))) (-15 -2159 ($ (-644 $))) (-15 -4271 ($ $ (-644 $))) (-15 -2244 ($ $ (-644 $))) (-15 -2244 ($ $ $ $)) (-15 -3966 ($ $ $)) (-15 -2417 ((-112) $)) (-15 -4393 ($ $ (-644 $))) (-15 -4336 ($ $)) (-15 -1520 ($ $ $)) (-15 -1442 ($ $)) (-15 -1883 ($ (-644 (-644 $)))) (-15 -2146 ($ $ $)) (-15 -3972 ($ $)) (-15 -3972 ($ $ $)) (-15 -3176 ($ $ $)) (-15 -3358 ($ $ $)) (-15 -2900 ($ $ $)) (-15 -1801 ($ $ $)) (-15 -2578 ($ $ (-771))) (-15 -2378 ($ $ $)) (-15 -2671 ($ $ $)) (-15 -4192 ($ $ $)) (-15 -3770 ($ $ $)) (-15 -3960 ($ $ $)) (-15 -3957 ($ $ (-644 $))) (-15 -1809 ($ $ (-644 $))) (-15 -1971 ($ $)) (-15 -4086 ($ $)) (-15 -4086 ($ $ (-771))) (-15 -2760 ($ $)) (-15 -2760 ($ $ (-771))) (-15 -4030 ($ $)) (-15 -2336 ($ $ $)) (-15 -1441 ($ $)) (-15 -1441 ($ $ $)) (-15 -1441 ($ $ $ $)) (-15 -2457 ($ $)) (-15 -2457 ($ $ $)) (-15 -2457 ($ $ $ $)) (-15 -3762 ($ $)) (-15 -3762 ($ $ $)) (-15 -3762 ($ $ $ $)) (-15 -2535 ($ $)) (-15 -2535 ($ (-644 $))) (-15 -1309 ($ $)) (-15 -1309 ($ (-644 $))) (-15 -2388 ($ $)) (-15 -2388 ($ (-644 $))) (-15 -2362 ($ (-644 $))) (-15 -3372 ($ (-644 $))) (-15 -2854 ($ (-644 $))) (-15 -2955 ($ (-644 $))) (-15 -2950 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -2972 ($ $ $)) (-15 -2984 ($ $ $)) (-15 -2999 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -3040 ($ $ $)) (-15 -3051 ($ $ $)) (-15 -3051 ($ $)) (-15 * ($ $ $)) (-15 -3062 ($ $ $)) (-15 ** ($ $ $)) (-15 -2983 ($ $ $)) (-15 -2949 ($ $ $)) (-15 -2960 ($ $ $)) (-15 -2997 ($ $ $)) (-15 -2447 ($ $ $)) (-15 -2461 ($ $ $)) (-15 -2436 ($ $)) (-15 -3646 ($ $ $)) (-15 -3646 ($ $))))) (T -862))
+((-2978 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-862)))) (-1817 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862)))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-862)))) (-3154 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-3154 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-862)))) (-3154 (*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862)))) (-3154 (*1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-862)))) (-1793 (*1 *1) (-5 *1 (-862))) (-2287 (*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862)))) (-3496 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-3906 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-3496 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-3906 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-3179 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-4307 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-2591 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-2441 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-2454 (*1 *1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-4380 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-4394 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-3174 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))) (-4380 (*1 *1 *1) (-5 *1 (-862))) (-4394 (*1 *1 *1) (-5 *1 (-862))) (-3174 (*1 *1 *1) (-5 *1 (-862))) (-1918 (*1 *1 *1 *1) (-5 *1 (-862))) (-2159 (*1 *1 *1 *1) (-5 *1 (-862))) (-1918 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-2159 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-4271 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-2244 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-2244 (*1 *1 *1 *1 *1) (-5 *1 (-862))) (-3966 (*1 *1 *1 *1) (-5 *1 (-862))) (-2417 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-862)))) (-4393 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-4336 (*1 *1 *1) (-5 *1 (-862))) (-1520 (*1 *1 *1 *1) (-5 *1 (-862))) (-1442 (*1 *1 *1) (-5 *1 (-862))) (-1883 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-862)))) (-5 *1 (-862)))) (-2146 (*1 *1 *1 *1) (-5 *1 (-862))) (-3972 (*1 *1 *1) (-5 *1 (-862))) (-3972 (*1 *1 *1 *1) (-5 *1 (-862))) (-3176 (*1 *1 *1 *1) (-5 *1 (-862))) (-3358 (*1 *1 *1 *1) (-5 *1 (-862))) (-2900 (*1 *1 *1 *1) (-5 *1 (-862))) (-1801 (*1 *1 *1 *1) (-5 *1 (-862))) (-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862)))) (-2378 (*1 *1 *1 *1) (-5 *1 (-862))) (-2671 (*1 *1 *1 *1) (-5 *1 (-862))) (-4192 (*1 *1 *1 *1) (-5 *1 (-862))) (-3770 (*1 *1 *1 *1) (-5 *1 (-862))) (-3960 (*1 *1 *1 *1) (-5 *1 (-862))) (-3957 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-1809 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-1971 (*1 *1 *1) (-5 *1 (-862))) (-4086 (*1 *1 *1) (-5 *1 (-862))) (-4086 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862)))) (-2760 (*1 *1 *1) (-5 *1 (-862))) (-2760 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862)))) (-4030 (*1 *1 *1) (-5 *1 (-862))) (-2336 (*1 *1 *1 *1) (-5 *1 (-862))) (-1441 (*1 *1 *1) (-5 *1 (-862))) (-1441 (*1 *1 *1 *1) (-5 *1 (-862))) (-1441 (*1 *1 *1 *1 *1) (-5 *1 (-862))) (-2457 (*1 *1 *1) (-5 *1 (-862))) (-2457 (*1 *1 *1 *1) (-5 *1 (-862))) (-2457 (*1 *1 *1 *1 *1) (-5 *1 (-862))) (-3762 (*1 *1 *1) (-5 *1 (-862))) (-3762 (*1 *1 *1 *1) (-5 *1 (-862))) (-3762 (*1 *1 *1 *1 *1) (-5 *1 (-862))) (-2535 (*1 *1 *1) (-5 *1 (-862))) (-2535 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-1309 (*1 *1 *1) (-5 *1 (-862))) (-1309 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-2388 (*1 *1 *1) (-5 *1 (-862))) (-2388 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-2362 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-3372 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-2854 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-2955 (*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))) (-2950 (*1 *1 *1 *1) (-5 *1 (-862))) (-3009 (*1 *1 *1 *1) (-5 *1 (-862))) (-2972 (*1 *1 *1 *1) (-5 *1 (-862))) (-2984 (*1 *1 *1 *1) (-5 *1 (-862))) (-2999 (*1 *1 *1 *1) (-5 *1 (-862))) (-3010 (*1 *1 *1 *1) (-5 *1 (-862))) (-3040 (*1 *1 *1 *1) (-5 *1 (-862))) (-3051 (*1 *1 *1 *1) (-5 *1 (-862))) (-3051 (*1 *1 *1) (-5 *1 (-862))) (* (*1 *1 *1 *1) (-5 *1 (-862))) (-3062 (*1 *1 *1 *1) (-5 *1 (-862))) (** (*1 *1 *1 *1) (-5 *1 (-862))) (-2983 (*1 *1 *1 *1) (-5 *1 (-862))) (-2949 (*1 *1 *1 *1) (-5 *1 (-862))) (-2960 (*1 *1 *1 *1) (-5 *1 (-862))) (-2997 (*1 *1 *1 *1) (-5 *1 (-862))) (-2447 (*1 *1 *1 *1) (-5 *1 (-862))) (-2461 (*1 *1 *1 *1) (-5 *1 (-862))) (-2436 (*1 *1 *1) (-5 *1 (-862))) (-3646 (*1 *1 *1 *1) (-5 *1 (-862))) (-3646 (*1 *1 *1) (-5 *1 (-862))))
+(-13 (-1099) (-10 -8 (-15 -2978 ((-1269) $)) (-15 -1817 ($ (-1157))) (-15 -2036 ((-1269) (-1157))) (-15 -3154 ($ (-566))) (-15 -3154 ($ (-1175))) (-15 -3154 ($ (-1157))) (-15 -3154 ($ (-225))) (-15 -1793 ($)) (-15 -2287 ((-1157) (-1157))) (-15 -3496 ((-566) $)) (-15 -3906 ((-566) $)) (-15 -3496 ((-566))) (-15 -3906 ((-566))) (-15 -3179 ((-566) $)) (-15 -4307 ((-566) $)) (-15 -2591 ($ (-566))) (-15 -2441 ($ (-566))) (-15 -2454 ($ (-566) (-566))) (-15 -4380 ($ $ (-566))) (-15 -4394 ($ $ (-566))) (-15 -3174 ($ $ (-566))) (-15 -4380 ($ $)) (-15 -4394 ($ $)) (-15 -3174 ($ $)) (-15 -1918 ($ $ $)) (-15 -2159 ($ $ $)) (-15 -1918 ($ (-644 $))) (-15 -2159 ($ (-644 $))) (-15 -4271 ($ $ (-644 $))) (-15 -2244 ($ $ (-644 $))) (-15 -2244 ($ $ $ $)) (-15 -3966 ($ $ $)) (-15 -2417 ((-112) $)) (-15 -4393 ($ $ (-644 $))) (-15 -4336 ($ $)) (-15 -1520 ($ $ $)) (-15 -1442 ($ $)) (-15 -1883 ($ (-644 (-644 $)))) (-15 -2146 ($ $ $)) (-15 -3972 ($ $)) (-15 -3972 ($ $ $)) (-15 -3176 ($ $ $)) (-15 -3358 ($ $ $)) (-15 -2900 ($ $ $)) (-15 -1801 ($ $ $)) (-15 -2578 ($ $ (-771))) (-15 -2378 ($ $ $)) (-15 -2671 ($ $ $)) (-15 -4192 ($ $ $)) (-15 -3770 ($ $ $)) (-15 -3960 ($ $ $)) (-15 -3957 ($ $ (-644 $))) (-15 -1809 ($ $ (-644 $))) (-15 -1971 ($ $)) (-15 -4086 ($ $)) (-15 -4086 ($ $ (-771))) (-15 -2760 ($ $)) (-15 -2760 ($ $ (-771))) (-15 -4030 ($ $)) (-15 -2336 ($ $ $)) (-15 -1441 ($ $)) (-15 -1441 ($ $ $)) (-15 -1441 ($ $ $ $)) (-15 -2457 ($ $)) (-15 -2457 ($ $ $)) (-15 -2457 ($ $ $ $)) (-15 -3762 ($ $)) (-15 -3762 ($ $ $)) (-15 -3762 ($ $ $ $)) (-15 -2535 ($ $)) (-15 -2535 ($ (-644 $))) (-15 -1309 ($ $)) (-15 -1309 ($ (-644 $))) (-15 -2388 ($ $)) (-15 -2388 ($ (-644 $))) (-15 -2362 ($ (-644 $))) (-15 -3372 ($ (-644 $))) (-15 -2854 ($ (-644 $))) (-15 -2955 ($ (-644 $))) (-15 -2950 ($ $ $)) (-15 -3009 ($ $ $)) (-15 -2972 ($ $ $)) (-15 -2984 ($ $ $)) (-15 -2999 ($ $ $)) (-15 -3010 ($ $ $)) (-15 -3040 ($ $ $)) (-15 -3051 ($ $ $)) (-15 -3051 ($ $)) (-15 * ($ $ $)) (-15 -3062 ($ $ $)) (-15 ** ($ $ $)) (-15 -2983 ($ $ $)) (-15 -2949 ($ $ $)) (-15 -2960 ($ $ $)) (-15 -2997 ($ $ $)) (-15 -2447 ($ $ $)) (-15 -2461 ($ $ $)) (-15 -2436 ($ $)) (-15 -3646 ($ $ $)) (-15 -3646 ($ $))))
+((-3469 (((-1269) (-644 (-52))) 24)) (-4312 (((-1269) (-1157) (-862)) 14) (((-1269) (-862)) 9) (((-1269) (-1157)) 11)))
+(((-863) (-10 -7 (-15 -4312 ((-1269) (-1157))) (-15 -4312 ((-1269) (-862))) (-15 -4312 ((-1269) (-1157) (-862))) (-15 -3469 ((-1269) (-644 (-52)))))) (T -863))
+((-3469 (*1 *2 *3) (-12 (-5 *3 (-644 (-52))) (-5 *2 (-1269)) (-5 *1 (-863)))) (-4312 (*1 *2 *3 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-862)) (-5 *2 (-1269)) (-5 *1 (-863)))) (-4312 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-863)))) (-4312 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-863)))))
+(-10 -7 (-15 -4312 ((-1269) (-1157))) (-15 -4312 ((-1269) (-862))) (-15 -4312 ((-1269) (-1157) (-862))) (-15 -3469 ((-1269) (-644 (-52)))))
+((-3009 (((-112) $ $) NIL)) (-1401 (((-3 $ "failed") (-1175)) 39)) (-4070 (((-771)) 32)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1299 (((-921) $) 29)) (-2402 (((-1157) $) 46)) (-2208 (($ (-921)) 28)) (-4056 (((-1119) $) NIL)) (-3204 (((-1175) $) 13) (((-538) $) 19) (((-892 (-381)) $) 26) (((-892 (-566)) $) 22)) (-3780 (((-862) $) 16)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 43)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 41)))
+(((-864 |#1|) (-13 (-844) (-614 (-1175)) (-614 (-538)) (-614 (-892 (-381))) (-614 (-892 (-566))) (-10 -8 (-15 -1401 ((-3 $ "failed") (-1175))))) (-644 (-1175))) (T -864))
+((-1401 (*1 *1 *2) (|partial| -12 (-5 *2 (-1175)) (-5 *1 (-864 *3)) (-14 *3 (-644 *2)))))
+(-13 (-844) (-614 (-1175)) (-614 (-538)) (-614 (-892 (-381))) (-614 (-892 (-566))) (-10 -8 (-15 -1401 ((-3 $ "failed") (-1175)))))
+((-3009 (((-112) $ $) NIL)) (-2639 (((-508) $) 9)) (-3276 (((-644 (-441)) $) 13)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 21)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 16)))
+(((-865) (-13 (-1099) (-10 -8 (-15 -2639 ((-508) $)) (-15 -3276 ((-644 (-441)) $))))) (T -865))
+((-2639 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-865)))) (-3276 (*1 *2 *1) (-12 (-5 *2 (-644 (-441))) (-5 *1 (-865)))))
+(-13 (-1099) (-10 -8 (-15 -2639 ((-508) $)) (-15 -3276 ((-644 (-441)) $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ (-952 |#1|)) NIL) (((-952 |#1|) $) NIL) (($ |#1|) NIL (|has| |#1| (-172)))) (-3996 (((-771)) NIL T CONST)) (-1904 (((-1269) (-771)) NIL)) (-3801 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3062 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
+(((-866 |#1| |#2| |#3| |#4|) (-13 (-1049) (-492 (-952 |#1|)) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -3062 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1904 ((-1269) (-771))))) (-1049) (-644 (-1175)) (-644 (-771)) (-771)) (T -866))
+((-3062 (*1 *1 *1 *1) (|partial| -12 (-5 *1 (-866 *2 *3 *4 *5)) (-4 *2 (-365)) (-4 *2 (-1049)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-771))) (-14 *5 (-771)))) (-1904 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-866 *4 *5 *6 *7)) (-4 *4 (-1049)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 *3)) (-14 *7 *3))))
+(-13 (-1049) (-492 (-952 |#1|)) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -3062 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1904 ((-1269) (-771)))))
+((-3934 (((-3 (-174 |#3|) "failed") (-771) (-771) |#2| |#2|) 43)) (-3854 (((-3 (-409 |#3|) "failed") (-771) (-771) |#2| |#2|) 34)))
+(((-867 |#1| |#2| |#3|) (-10 -7 (-15 -3854 ((-3 (-409 |#3|) "failed") (-771) (-771) |#2| |#2|)) (-15 -3934 ((-3 (-174 |#3|) "failed") (-771) (-771) |#2| |#2|))) (-365) (-1255 |#1|) (-1240 |#1|)) (T -867))
+((-3934 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-771)) (-4 *5 (-365)) (-5 *2 (-174 *6)) (-5 *1 (-867 *5 *4 *6)) (-4 *4 (-1255 *5)) (-4 *6 (-1240 *5)))) (-3854 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-771)) (-4 *5 (-365)) (-5 *2 (-409 *6)) (-5 *1 (-867 *5 *4 *6)) (-4 *4 (-1255 *5)) (-4 *6 (-1240 *5)))))
+(-10 -7 (-15 -3854 ((-3 (-409 |#3|) "failed") (-771) (-771) |#2| |#2|)) (-15 -3934 ((-3 (-174 |#3|) "failed") (-771) (-771) |#2| |#2|)))
+((-3854 (((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|)) 30) (((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) 28)))
+(((-868 |#1| |#2| |#3|) (-10 -7 (-15 -3854 ((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|))) (-15 -3854 ((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|)))) (-365) (-1175) |#1|) (T -868))
+((-3854 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *3 (-771)) (-5 *4 (-1256 *5 *6 *7)) (-4 *5 (-365)) (-14 *6 (-1175)) (-14 *7 *5) (-5 *2 (-409 (-1237 *6 *5))) (-5 *1 (-868 *5 *6 *7)))) (-3854 (*1 *2 *3 *3 *4 *4) (|partial| -12 (-5 *3 (-771)) (-5 *4 (-1256 *5 *6 *7)) (-4 *5 (-365)) (-14 *6 (-1175)) (-14 *7 *5) (-5 *2 (-409 (-1237 *6 *5))) (-5 *1 (-868 *5 *6 *7)))))
+(-10 -7 (-15 -3854 ((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|))) (-15 -3854 ((-3 (-409 (-1237 |#2| |#1|)) "failed") (-771) (-771) (-1256 |#1| |#2| |#3|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-2484 (($ $ (-566)) 68)) (-2738 (((-112) $ $) 65)) (-3877 (($) 18 T CONST)) (-3972 (($ (-1171 (-566)) (-566)) 67)) (-2949 (($ $ $) 61)) (-2928 (((-3 $ "failed") $) 37)) (-2401 (($ $) 70)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-3227 (((-771) $) 75)) (-3466 (((-112) $) 35)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2468 (((-566)) 72)) (-2365 (((-566) $) 71)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2295 (($ $ (-566)) 74)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3470 (((-771) $) 64)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-4085 (((-1155 (-566)) $) 76)) (-1377 (($ $) 73)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-3651 (((-566) $ (-566)) 69)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-869 |#1|) (-140) (-566)) (T -869))
-((-3159 (*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-1155 (-566))))) (-2716 (*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-771)))) (-1938 (*1 *1 *1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))) (-1973 (*1 *1 *1) (-4 *1 (-869 *2))) (-4030 (*1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))) (-3692 (*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))) (-3384 (*1 *1 *1) (-4 *1 (-869 *2))) (-3645 (*1 *2 *1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))) (-2402 (*1 *1 *1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))) (-3791 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *3 (-566)) (-4 *1 (-869 *4)))))
-(-13 (-308) (-147) (-10 -8 (-15 -3159 ((-1155 (-566)) $)) (-15 -2716 ((-771) $)) (-15 -1938 ($ $ (-566))) (-15 -1973 ($ $)) (-15 -4030 ((-566))) (-15 -3692 ((-566) $)) (-15 -3384 ($ $)) (-15 -3645 ((-566) $ (-566))) (-15 -2402 ($ $ (-566))) (-15 -3791 ($ (-1171 (-566)) (-566)))))
+((-4085 (*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-1155 (-566))))) (-3227 (*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-771)))) (-2295 (*1 *1 *1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))) (-1377 (*1 *1 *1) (-4 *1 (-869 *2))) (-2468 (*1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))) (-2365 (*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))) (-2401 (*1 *1 *1) (-4 *1 (-869 *2))) (-3651 (*1 *2 *1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))) (-2484 (*1 *1 *1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))) (-3972 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *3 (-566)) (-4 *1 (-869 *4)))))
+(-13 (-308) (-147) (-10 -8 (-15 -4085 ((-1155 (-566)) $)) (-15 -3227 ((-771) $)) (-15 -2295 ($ $ (-566))) (-15 -1377 ($ $)) (-15 -2468 ((-566))) (-15 -2365 ((-566) $)) (-15 -2401 ($ $)) (-15 -3651 ((-566) $ (-566))) (-15 -2484 ($ $ (-566))) (-15 -3972 ($ (-1171 (-566)) (-566)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-147) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-291) . T) ((-308) . T) ((-454) . T) ((-558) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-717 $) . T) ((-726) . T) ((-920) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2402 (($ $ (-566)) NIL)) (-1561 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-3791 (($ (-1171 (-566)) (-566)) NIL)) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3384 (($ $) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2716 (((-771) $) NIL)) (-2741 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-4030 (((-566)) NIL)) (-3692 (((-566) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-1938 (($ $ (-566)) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3159 (((-1155 (-566)) $) NIL)) (-1973 (($ $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-3645 (((-566) $ (-566)) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2484 (($ $ (-566)) NIL)) (-2738 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-3972 (($ (-1171 (-566)) (-566)) NIL)) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2401 (($ $) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-3227 (((-771) $) NIL)) (-3466 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2468 (((-566)) NIL)) (-2365 (((-566) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2295 (($ $ (-566)) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-4085 (((-1155 (-566)) $) NIL)) (-1377 (($ $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3651 (((-566) $ (-566)) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL)))
(((-870 |#1|) (-869 |#1|) (-566)) (T -870))
NIL
(-869 |#1|)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2452 (((-870 |#1|) $) NIL (|has| (-870 |#1|) (-308)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-870 |#1|) (-909)))) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-870 |#1|) (-909)))) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL (|has| (-870 |#1|) (-820)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-870 |#1|) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-870 |#1|) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-870 |#1|) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-870 |#1|) (-1038 (-566))))) (-1756 (((-870 |#1|) $) NIL) (((-1175) $) NIL (|has| (-870 |#1|) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-870 |#1|) (-1038 (-566)))) (((-566) $) NIL (|has| (-870 |#1|) (-1038 (-566))))) (-1669 (($ $) NIL) (($ (-566) $) NIL)) (-2926 (($ $ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| (-870 |#1|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-870 |#1|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-870 |#1|))) (|:| |vec| (-1264 (-870 |#1|)))) (-689 $) (-1264 $)) NIL) (((-689 (-870 |#1|)) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-870 |#1|) (-547)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-1684 (((-112) $) NIL (|has| (-870 |#1|) (-820)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-870 |#1|) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-870 |#1|) (-886 (-381))))) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL)) (-3001 (((-870 |#1|) $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| (-870 |#1|) (-1150)))) (-1578 (((-112) $) NIL (|has| (-870 |#1|) (-820)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL (|has| (-870 |#1|) (-850)))) (-3059 (($ $ $) NIL (|has| (-870 |#1|) (-850)))) (-3077 (($ (-1 (-870 |#1|) (-870 |#1|)) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-870 |#1|) (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL (|has| (-870 |#1|) (-308)))) (-4317 (((-870 |#1|) $) NIL (|has| (-870 |#1|) (-547)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-870 |#1|) (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-870 |#1|) (-909)))) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2070 (($ $ (-644 (-870 |#1|)) (-644 (-870 |#1|))) NIL (|has| (-870 |#1|) (-310 (-870 |#1|)))) (($ $ (-870 |#1|) (-870 |#1|)) NIL (|has| (-870 |#1|) (-310 (-870 |#1|)))) (($ $ (-295 (-870 |#1|))) NIL (|has| (-870 |#1|) (-310 (-870 |#1|)))) (($ $ (-644 (-295 (-870 |#1|)))) NIL (|has| (-870 |#1|) (-310 (-870 |#1|)))) (($ $ (-644 (-1175)) (-644 (-870 |#1|))) NIL (|has| (-870 |#1|) (-516 (-1175) (-870 |#1|)))) (($ $ (-1175) (-870 |#1|)) NIL (|has| (-870 |#1|) (-516 (-1175) (-870 |#1|))))) (-1813 (((-771) $) NIL)) (-4386 (($ $ (-870 |#1|)) NIL (|has| (-870 |#1|) (-287 (-870 |#1|) (-870 |#1|))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $) NIL (|has| (-870 |#1|) (-233))) (($ $ (-771)) NIL (|has| (-870 |#1|) (-233))) (($ $ (-1175)) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-1 (-870 |#1|) (-870 |#1|)) (-771)) NIL) (($ $ (-1 (-870 |#1|) (-870 |#1|))) NIL)) (-3413 (($ $) NIL)) (-3013 (((-870 |#1|) $) NIL)) (-3134 (((-892 (-566)) $) NIL (|has| (-870 |#1|) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-870 |#1|) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-870 |#1|) (-614 (-538)))) (((-381) $) NIL (|has| (-870 |#1|) (-1022))) (((-225) $) NIL (|has| (-870 |#1|) (-1022)))) (-1932 (((-174 (-409 (-566))) $) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-870 |#1|) (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-870 |#1|)) NIL) (($ (-1175)) NIL (|has| (-870 |#1|) (-1038 (-1175))))) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-870 |#1|) (-909))) (|has| (-870 |#1|) (-145))))) (-3795 (((-771)) NIL T CONST)) (-1604 (((-870 |#1|) $) NIL (|has| (-870 |#1|) (-547)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-3645 (((-409 (-566)) $ (-566)) NIL)) (-1346 (($ $) NIL (|has| (-870 |#1|) (-820)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $) NIL (|has| (-870 |#1|) (-233))) (($ $ (-771)) NIL (|has| (-870 |#1|) (-233))) (($ $ (-1175)) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-1 (-870 |#1|) (-870 |#1|)) (-771)) NIL) (($ $ (-1 (-870 |#1|) (-870 |#1|))) NIL)) (-2998 (((-112) $ $) NIL (|has| (-870 |#1|) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-870 |#1|) (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| (-870 |#1|) (-850)))) (-2962 (((-112) $ $) NIL (|has| (-870 |#1|) (-850)))) (-3061 (($ $ $) NIL) (($ (-870 |#1|) (-870 |#1|)) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-870 |#1|) $) NIL) (($ $ (-870 |#1|)) NIL)))
-(((-871 |#1|) (-13 (-992 (-870 |#1|)) (-10 -8 (-15 -3645 ((-409 (-566)) $ (-566))) (-15 -1932 ((-174 (-409 (-566))) $)) (-15 -1669 ($ $)) (-15 -1669 ($ (-566) $)))) (-566)) (T -871))
-((-3645 (*1 *2 *1 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-871 *4)) (-14 *4 *3) (-5 *3 (-566)))) (-1932 (*1 *2 *1) (-12 (-5 *2 (-174 (-409 (-566)))) (-5 *1 (-871 *3)) (-14 *3 (-566)))) (-1669 (*1 *1 *1) (-12 (-5 *1 (-871 *2)) (-14 *2 (-566)))) (-1669 (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-871 *3)) (-14 *3 *2))))
-(-13 (-992 (-870 |#1|)) (-10 -8 (-15 -3645 ((-409 (-566)) $ (-566))) (-15 -1932 ((-174 (-409 (-566))) $)) (-15 -1669 ($ $)) (-15 -1669 ($ (-566) $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2452 ((|#2| $) NIL (|has| |#2| (-308)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL (|has| |#2| (-820)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| |#2| (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566))))) (-1756 ((|#2| $) NIL) (((-1175) $) NIL (|has| |#2| (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-566)))) (((-566) $) NIL (|has| |#2| (-1038 (-566))))) (-1669 (($ $) 35) (($ (-566) $) 38)) (-2926 (($ $ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) 64)) (-3335 (($) NIL (|has| |#2| (-547)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-1684 (((-112) $) NIL (|has| |#2| (-820)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| |#2| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| |#2| (-886 (-381))))) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL)) (-3001 ((|#2| $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| |#2| (-1150)))) (-1578 (((-112) $) NIL (|has| |#2| (-820)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL (|has| |#2| (-850)))) (-3059 (($ $ $) NIL (|has| |#2| (-850)))) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 60)) (-2759 (($) NIL (|has| |#2| (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL (|has| |#2| (-308)))) (-4317 ((|#2| $) NIL (|has| |#2| (-547)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2070 (($ $ (-644 |#2|) (-644 |#2|)) NIL (|has| |#2| (-310 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-310 |#2|))) (($ $ (-295 |#2|)) NIL (|has| |#2| (-310 |#2|))) (($ $ (-644 (-295 |#2|))) NIL (|has| |#2| (-310 |#2|))) (($ $ (-644 (-1175)) (-644 |#2|)) NIL (|has| |#2| (-516 (-1175) |#2|))) (($ $ (-1175) |#2|) NIL (|has| |#2| (-516 (-1175) |#2|)))) (-1813 (((-771) $) NIL)) (-4386 (($ $ |#2|) NIL (|has| |#2| (-287 |#2| |#2|)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $) NIL (|has| |#2| (-233))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-3413 (($ $) NIL)) (-3013 ((|#2| $) NIL)) (-3134 (((-892 (-566)) $) NIL (|has| |#2| (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| |#2| (-614 (-892 (-381))))) (((-538) $) NIL (|has| |#2| (-614 (-538)))) (((-381) $) NIL (|has| |#2| (-1022))) (((-225) $) NIL (|has| |#2| (-1022)))) (-1932 (((-174 (-409 (-566))) $) 78)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-2512 (((-862) $) 108) (($ (-566)) 20) (($ $) NIL) (($ (-409 (-566))) 25) (($ |#2|) 19) (($ (-1175)) NIL (|has| |#2| (-1038 (-1175))))) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3795 (((-771)) NIL T CONST)) (-1604 ((|#2| $) NIL (|has| |#2| (-547)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-3645 (((-409 (-566)) $ (-566)) 71)) (-1346 (($ $) NIL (|has| |#2| (-820)))) (-2485 (($) 15 T CONST)) (-2495 (($) 17 T CONST)) (-2840 (($ $) NIL (|has| |#2| (-233))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2998 (((-112) $ $) NIL (|has| |#2| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#2| (-850)))) (-2940 (((-112) $ $) 46)) (-2987 (((-112) $ $) NIL (|has| |#2| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#2| (-850)))) (-3061 (($ $ $) 24) (($ |#2| |#2|) 65)) (-3047 (($ $) 50) (($ $ $) 52)) (-3034 (($ $ $) 48)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 61)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 53) (($ $ $) 55) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ |#2| $) 66) (($ $ |#2|) NIL)))
-(((-872 |#1| |#2|) (-13 (-992 |#2|) (-10 -8 (-15 -3645 ((-409 (-566)) $ (-566))) (-15 -1932 ((-174 (-409 (-566))) $)) (-15 -1669 ($ $)) (-15 -1669 ($ (-566) $)))) (-566) (-869 |#1|)) (T -872))
-((-3645 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-409 (-566))) (-5 *1 (-872 *4 *5)) (-5 *3 (-566)) (-4 *5 (-869 *4)))) (-1932 (*1 *2 *1) (-12 (-14 *3 (-566)) (-5 *2 (-174 (-409 (-566)))) (-5 *1 (-872 *3 *4)) (-4 *4 (-869 *3)))) (-1669 (*1 *1 *1) (-12 (-14 *2 (-566)) (-5 *1 (-872 *2 *3)) (-4 *3 (-869 *2)))) (-1669 (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-14 *3 *2) (-5 *1 (-872 *3 *4)) (-4 *4 (-869 *3)))))
-(-13 (-992 |#2|) (-10 -8 (-15 -3645 ((-409 (-566)) $ (-566))) (-15 -1932 ((-174 (-409 (-566))) $)) (-15 -1669 ($ $)) (-15 -1669 ($ (-566) $))))
-((-2985 (((-112) $ $) NIL (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099))))) (-4299 ((|#2| $) 12)) (-2206 (($ |#1| |#2|) 9)) (-2878 (((-1157) $) NIL (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099))))) (-4033 (((-1119) $) NIL (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099))))) (-4062 ((|#1| $) 11)) (-2523 (($ |#1| |#2|) 10)) (-2512 (((-862) $) 18 (-2805 (-12 (|has| |#1| (-613 (-862))) (|has| |#2| (-613 (-862)))) (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099)))))) (-3122 (((-112) $ $) NIL (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099))))) (-2940 (((-112) $ $) 23 (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099))))))
-(((-873 |#1| |#2|) (-13 (-1214) (-10 -8 (IF (|has| |#1| (-613 (-862))) (IF (|has| |#2| (-613 (-862))) (-6 (-613 (-862))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1099)) (IF (|has| |#2| (-1099)) (-6 (-1099)) |%noBranch|) |%noBranch|) (-15 -2206 ($ |#1| |#2|)) (-15 -2523 ($ |#1| |#2|)) (-15 -4062 (|#1| $)) (-15 -4299 (|#2| $)))) (-1214) (-1214)) (T -873))
-((-2206 (*1 *1 *2 *3) (-12 (-5 *1 (-873 *2 *3)) (-4 *2 (-1214)) (-4 *3 (-1214)))) (-2523 (*1 *1 *2 *3) (-12 (-5 *1 (-873 *2 *3)) (-4 *2 (-1214)) (-4 *3 (-1214)))) (-4062 (*1 *2 *1) (-12 (-4 *2 (-1214)) (-5 *1 (-873 *2 *3)) (-4 *3 (-1214)))) (-4299 (*1 *2 *1) (-12 (-4 *2 (-1214)) (-5 *1 (-873 *3 *2)) (-4 *3 (-1214)))))
-(-13 (-1214) (-10 -8 (IF (|has| |#1| (-613 (-862))) (IF (|has| |#2| (-613 (-862))) (-6 (-613 (-862))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1099)) (IF (|has| |#2| (-1099)) (-6 (-1099)) |%noBranch|) |%noBranch|) (-15 -2206 ($ |#1| |#2|)) (-15 -2523 ($ |#1| |#2|)) (-15 -4062 (|#1| $)) (-15 -4299 (|#2| $))))
-((-2985 (((-112) $ $) NIL)) (-1829 (((-566) $) 16)) (-1478 (($ (-157)) 13)) (-3073 (($ (-157)) 14)) (-2878 (((-1157) $) NIL)) (-1648 (((-157) $) 15)) (-4033 (((-1119) $) NIL)) (-2293 (($ (-157)) 11)) (-1389 (($ (-157)) 10)) (-2512 (((-862) $) 24) (($ (-157)) 17)) (-3240 (($ (-157)) 12)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-874) (-13 (-1099) (-10 -8 (-15 -1389 ($ (-157))) (-15 -2293 ($ (-157))) (-15 -3240 ($ (-157))) (-15 -1478 ($ (-157))) (-15 -3073 ($ (-157))) (-15 -1648 ((-157) $)) (-15 -1829 ((-566) $)) (-15 -2512 ($ (-157)))))) (T -874))
-((-1389 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-2293 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-3240 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-1478 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-3073 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-1648 (*1 *2 *1) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-1829 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-874)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
-(-13 (-1099) (-10 -8 (-15 -1389 ($ (-157))) (-15 -2293 ($ (-157))) (-15 -3240 ($ (-157))) (-15 -1478 ($ (-157))) (-15 -3073 ($ (-157))) (-15 -1648 ((-157) $)) (-15 -1829 ((-566) $)) (-15 -2512 ($ (-157)))))
-((-2512 (((-317 (-566)) (-409 (-952 (-48)))) 23) (((-317 (-566)) (-952 (-48))) 18)))
-(((-875) (-10 -7 (-15 -2512 ((-317 (-566)) (-952 (-48)))) (-15 -2512 ((-317 (-566)) (-409 (-952 (-48))))))) (T -875))
-((-2512 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 (-48)))) (-5 *2 (-317 (-566))) (-5 *1 (-875)))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-952 (-48))) (-5 *2 (-317 (-566))) (-5 *1 (-875)))))
-(-10 -7 (-15 -2512 ((-317 (-566)) (-952 (-48)))) (-15 -2512 ((-317 (-566)) (-409 (-952 (-48))))))
-((-3077 (((-877 |#2|) (-1 |#2| |#1|) (-877 |#1|)) 15)))
-(((-876 |#1| |#2|) (-10 -7 (-15 -3077 ((-877 |#2|) (-1 |#2| |#1|) (-877 |#1|)))) (-1214) (-1214)) (T -876))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-877 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-877 *6)) (-5 *1 (-876 *5 *6)))))
-(-10 -7 (-15 -3077 ((-877 |#2|) (-1 |#2| |#1|) (-877 |#1|))))
-((-2136 (($ |#1| |#1|) 8)) (-3709 ((|#1| $ (-771)) 15)))
-(((-877 |#1|) (-10 -8 (-15 -2136 ($ |#1| |#1|)) (-15 -3709 (|#1| $ (-771)))) (-1214)) (T -877))
-((-3709 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-877 *2)) (-4 *2 (-1214)))) (-2136 (*1 *1 *2 *2) (-12 (-5 *1 (-877 *2)) (-4 *2 (-1214)))))
-(-10 -8 (-15 -2136 ($ |#1| |#1|)) (-15 -3709 (|#1| $ (-771))))
-((-3077 (((-879 |#2|) (-1 |#2| |#1|) (-879 |#1|)) 15)))
-(((-878 |#1| |#2|) (-10 -7 (-15 -3077 ((-879 |#2|) (-1 |#2| |#1|) (-879 |#1|)))) (-1214) (-1214)) (T -878))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-879 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-879 *6)) (-5 *1 (-878 *5 *6)))))
-(-10 -7 (-15 -3077 ((-879 |#2|) (-1 |#2| |#1|) (-879 |#1|))))
-((-2136 (($ |#1| |#1| |#1|) 8)) (-3709 ((|#1| $ (-771)) 15)))
-(((-879 |#1|) (-10 -8 (-15 -2136 ($ |#1| |#1| |#1|)) (-15 -3709 (|#1| $ (-771)))) (-1214)) (T -879))
-((-3709 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-879 *2)) (-4 *2 (-1214)))) (-2136 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-879 *2)) (-4 *2 (-1214)))))
-(-10 -8 (-15 -2136 ($ |#1| |#1| |#1|)) (-15 -3709 (|#1| $ (-771))))
-((-4139 (((-644 (-1180)) (-1157)) 9)))
-(((-880) (-10 -7 (-15 -4139 ((-644 (-1180)) (-1157))))) (T -880))
-((-4139 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-644 (-1180))) (-5 *1 (-880)))))
-(-10 -7 (-15 -4139 ((-644 (-1180)) (-1157))))
-((-3077 (((-882 |#2|) (-1 |#2| |#1|) (-882 |#1|)) 15)))
-(((-881 |#1| |#2|) (-10 -7 (-15 -3077 ((-882 |#2|) (-1 |#2| |#1|) (-882 |#1|)))) (-1214) (-1214)) (T -881))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-882 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-882 *6)) (-5 *1 (-881 *5 *6)))))
-(-10 -7 (-15 -3077 ((-882 |#2|) (-1 |#2| |#1|) (-882 |#1|))))
-((-2355 (($ |#1| |#1| |#1|) 8)) (-3709 ((|#1| $ (-771)) 15)))
-(((-882 |#1|) (-10 -8 (-15 -2355 ($ |#1| |#1| |#1|)) (-15 -3709 (|#1| $ (-771)))) (-1214)) (T -882))
-((-3709 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-882 *2)) (-4 *2 (-1214)))) (-2355 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-882 *2)) (-4 *2 (-1214)))))
-(-10 -8 (-15 -2355 ($ |#1| |#1| |#1|)) (-15 -3709 (|#1| $ (-771))))
-((-2991 (((-1155 (-644 (-566))) (-644 (-566)) (-1155 (-644 (-566)))) 48)) (-3387 (((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566))) 44)) (-3431 (((-1155 (-644 (-566))) (-644 (-566))) 58) (((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566))) 56)) (-1606 (((-1155 (-644 (-566))) (-566)) 59)) (-3682 (((-1155 (-644 (-566))) (-566) (-566)) 34) (((-1155 (-644 (-566))) (-566)) 23) (((-1155 (-644 (-566))) (-566) (-566) (-566)) 19)) (-2574 (((-1155 (-644 (-566))) (-1155 (-644 (-566)))) 42)) (-2032 (((-644 (-566)) (-644 (-566))) 41)))
-(((-883) (-10 -7 (-15 -3682 ((-1155 (-644 (-566))) (-566) (-566) (-566))) (-15 -3682 ((-1155 (-644 (-566))) (-566))) (-15 -3682 ((-1155 (-644 (-566))) (-566) (-566))) (-15 -2032 ((-644 (-566)) (-644 (-566)))) (-15 -2574 ((-1155 (-644 (-566))) (-1155 (-644 (-566))))) (-15 -3387 ((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566)))) (-15 -2991 ((-1155 (-644 (-566))) (-644 (-566)) (-1155 (-644 (-566))))) (-15 -3431 ((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566)))) (-15 -3431 ((-1155 (-644 (-566))) (-644 (-566)))) (-15 -1606 ((-1155 (-644 (-566))) (-566))))) (T -883))
-((-1606 (*1 *2 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))) (-3431 (*1 *2 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-644 (-566))))) (-3431 (*1 *2 *3 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-644 (-566))))) (-2991 (*1 *2 *3 *2) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *3 (-644 (-566))) (-5 *1 (-883)))) (-3387 (*1 *2 *3 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-644 (-566))))) (-2574 (*1 *2 *2) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)))) (-2032 (*1 *2 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-883)))) (-3682 (*1 *2 *3 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))) (-3682 (*1 *2 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))) (-3682 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))))
-(-10 -7 (-15 -3682 ((-1155 (-644 (-566))) (-566) (-566) (-566))) (-15 -3682 ((-1155 (-644 (-566))) (-566))) (-15 -3682 ((-1155 (-644 (-566))) (-566) (-566))) (-15 -2032 ((-644 (-566)) (-644 (-566)))) (-15 -2574 ((-1155 (-644 (-566))) (-1155 (-644 (-566))))) (-15 -3387 ((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566)))) (-15 -2991 ((-1155 (-644 (-566))) (-644 (-566)) (-1155 (-644 (-566))))) (-15 -3431 ((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566)))) (-15 -3431 ((-1155 (-644 (-566))) (-644 (-566)))) (-15 -1606 ((-1155 (-644 (-566))) (-566))))
-((-3134 (((-892 (-381)) $) 9 (|has| |#1| (-614 (-892 (-381))))) (((-892 (-566)) $) 8 (|has| |#1| (-614 (-892 (-566)))))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2486 (((-870 |#1|) $) NIL (|has| (-870 |#1|) (-308)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-870 |#1|) (-909)))) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-870 |#1|) (-909)))) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL (|has| (-870 |#1|) (-820)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-870 |#1|) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| (-870 |#1|) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-870 |#1|) (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| (-870 |#1|) (-1038 (-566))))) (-1867 (((-870 |#1|) $) NIL) (((-1175) $) NIL (|has| (-870 |#1|) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-870 |#1|) (-1038 (-566)))) (((-566) $) NIL (|has| (-870 |#1|) (-1038 (-566))))) (-1370 (($ $) NIL) (($ (-566) $) NIL)) (-2949 (($ $ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| (-870 |#1|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-870 |#1|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-870 |#1|))) (|:| |vec| (-1264 (-870 |#1|)))) (-689 $) (-1264 $)) NIL) (((-689 (-870 |#1|)) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-870 |#1|) (-547)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1533 (((-112) $) NIL (|has| (-870 |#1|) (-820)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-870 |#1|) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-870 |#1|) (-886 (-381))))) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL)) (-3088 (((-870 |#1|) $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| (-870 |#1|) (-1150)))) (-2917 (((-112) $) NIL (|has| (-870 |#1|) (-820)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL (|has| (-870 |#1|) (-850)))) (-2709 (($ $ $) NIL (|has| (-870 |#1|) (-850)))) (-3152 (($ (-1 (-870 |#1|) (-870 |#1|)) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-870 |#1|) (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL (|has| (-870 |#1|) (-308)))) (-2209 (((-870 |#1|) $) NIL (|has| (-870 |#1|) (-547)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-870 |#1|) (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-870 |#1|) (-909)))) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2095 (($ $ (-644 (-870 |#1|)) (-644 (-870 |#1|))) NIL (|has| (-870 |#1|) (-310 (-870 |#1|)))) (($ $ (-870 |#1|) (-870 |#1|)) NIL (|has| (-870 |#1|) (-310 (-870 |#1|)))) (($ $ (-295 (-870 |#1|))) NIL (|has| (-870 |#1|) (-310 (-870 |#1|)))) (($ $ (-644 (-295 (-870 |#1|)))) NIL (|has| (-870 |#1|) (-310 (-870 |#1|)))) (($ $ (-644 (-1175)) (-644 (-870 |#1|))) NIL (|has| (-870 |#1|) (-516 (-1175) (-870 |#1|)))) (($ $ (-1175) (-870 |#1|)) NIL (|has| (-870 |#1|) (-516 (-1175) (-870 |#1|))))) (-3470 (((-771) $) NIL)) (-4393 (($ $ (-870 |#1|)) NIL (|has| (-870 |#1|) (-287 (-870 |#1|) (-870 |#1|))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $) NIL (|has| (-870 |#1|) (-233))) (($ $ (-771)) NIL (|has| (-870 |#1|) (-233))) (($ $ (-1175)) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-1 (-870 |#1|) (-870 |#1|)) (-771)) NIL) (($ $ (-1 (-870 |#1|) (-870 |#1|))) NIL)) (-1431 (($ $) NIL)) (-3100 (((-870 |#1|) $) NIL)) (-3204 (((-892 (-566)) $) NIL (|has| (-870 |#1|) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-870 |#1|) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-870 |#1|) (-614 (-538)))) (((-381) $) NIL (|has| (-870 |#1|) (-1022))) (((-225) $) NIL (|has| (-870 |#1|) (-1022)))) (-2241 (((-174 (-409 (-566))) $) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-870 |#1|) (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL) (($ (-870 |#1|)) NIL) (($ (-1175)) NIL (|has| (-870 |#1|) (-1038 (-1175))))) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-870 |#1|) (-909))) (|has| (-870 |#1|) (-145))))) (-3996 (((-771)) NIL T CONST)) (-1982 (((-870 |#1|) $) NIL (|has| (-870 |#1|) (-547)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3651 (((-409 (-566)) $ (-566)) NIL)) (-3333 (($ $) NIL (|has| (-870 |#1|) (-820)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $) NIL (|has| (-870 |#1|) (-233))) (($ $ (-771)) NIL (|has| (-870 |#1|) (-233))) (($ $ (-1175)) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-870 |#1|) (-900 (-1175)))) (($ $ (-1 (-870 |#1|) (-870 |#1|)) (-771)) NIL) (($ $ (-1 (-870 |#1|) (-870 |#1|))) NIL)) (-3010 (((-112) $ $) NIL (|has| (-870 |#1|) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-870 |#1|) (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| (-870 |#1|) (-850)))) (-2972 (((-112) $ $) NIL (|has| (-870 |#1|) (-850)))) (-3062 (($ $ $) NIL) (($ (-870 |#1|) (-870 |#1|)) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-870 |#1|) $) NIL) (($ $ (-870 |#1|)) NIL)))
+(((-871 |#1|) (-13 (-992 (-870 |#1|)) (-10 -8 (-15 -3651 ((-409 (-566)) $ (-566))) (-15 -2241 ((-174 (-409 (-566))) $)) (-15 -1370 ($ $)) (-15 -1370 ($ (-566) $)))) (-566)) (T -871))
+((-3651 (*1 *2 *1 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-871 *4)) (-14 *4 *3) (-5 *3 (-566)))) (-2241 (*1 *2 *1) (-12 (-5 *2 (-174 (-409 (-566)))) (-5 *1 (-871 *3)) (-14 *3 (-566)))) (-1370 (*1 *1 *1) (-12 (-5 *1 (-871 *2)) (-14 *2 (-566)))) (-1370 (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-871 *3)) (-14 *3 *2))))
+(-13 (-992 (-870 |#1|)) (-10 -8 (-15 -3651 ((-409 (-566)) $ (-566))) (-15 -2241 ((-174 (-409 (-566))) $)) (-15 -1370 ($ $)) (-15 -1370 ($ (-566) $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2486 ((|#2| $) NIL (|has| |#2| (-308)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL (|has| |#2| (-820)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (|has| |#2| (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566))))) (-1867 ((|#2| $) NIL) (((-1175) $) NIL (|has| |#2| (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-566)))) (((-566) $) NIL (|has| |#2| (-1038 (-566))))) (-1370 (($ $) 35) (($ (-566) $) 38)) (-2949 (($ $ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) 64)) (-1618 (($) NIL (|has| |#2| (-547)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1533 (((-112) $) NIL (|has| |#2| (-820)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| |#2| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| |#2| (-886 (-381))))) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL)) (-3088 ((|#2| $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| |#2| (-1150)))) (-2917 (((-112) $) NIL (|has| |#2| (-820)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL (|has| |#2| (-850)))) (-2709 (($ $ $) NIL (|has| |#2| (-850)))) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 60)) (-3625 (($) NIL (|has| |#2| (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL (|has| |#2| (-308)))) (-2209 ((|#2| $) NIL (|has| |#2| (-547)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2095 (($ $ (-644 |#2|) (-644 |#2|)) NIL (|has| |#2| (-310 |#2|))) (($ $ |#2| |#2|) NIL (|has| |#2| (-310 |#2|))) (($ $ (-295 |#2|)) NIL (|has| |#2| (-310 |#2|))) (($ $ (-644 (-295 |#2|))) NIL (|has| |#2| (-310 |#2|))) (($ $ (-644 (-1175)) (-644 |#2|)) NIL (|has| |#2| (-516 (-1175) |#2|))) (($ $ (-1175) |#2|) NIL (|has| |#2| (-516 (-1175) |#2|)))) (-3470 (((-771) $) NIL)) (-4393 (($ $ |#2|) NIL (|has| |#2| (-287 |#2| |#2|)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $) NIL (|has| |#2| (-233))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-1431 (($ $) NIL)) (-3100 ((|#2| $) NIL)) (-3204 (((-892 (-566)) $) NIL (|has| |#2| (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| |#2| (-614 (-892 (-381))))) (((-538) $) NIL (|has| |#2| (-614 (-538)))) (((-381) $) NIL (|has| |#2| (-1022))) (((-225) $) NIL (|has| |#2| (-1022)))) (-2241 (((-174 (-409 (-566))) $) 78)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-3780 (((-862) $) 108) (($ (-566)) 20) (($ $) NIL) (($ (-409 (-566))) 25) (($ |#2|) 19) (($ (-1175)) NIL (|has| |#2| (-1038 (-1175))))) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3996 (((-771)) NIL T CONST)) (-1982 ((|#2| $) NIL (|has| |#2| (-547)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3651 (((-409 (-566)) $ (-566)) 71)) (-3333 (($ $) NIL (|has| |#2| (-820)))) (-2493 (($) 15 T CONST)) (-4333 (($) 17 T CONST)) (-2876 (($ $) NIL (|has| |#2| (-233))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-3010 (((-112) $ $) NIL (|has| |#2| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#2| (-850)))) (-2950 (((-112) $ $) 46)) (-2999 (((-112) $ $) NIL (|has| |#2| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#2| (-850)))) (-3062 (($ $ $) 24) (($ |#2| |#2|) 65)) (-3051 (($ $) 50) (($ $ $) 52)) (-3040 (($ $ $) 48)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) 61)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 53) (($ $ $) 55) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ |#2| $) 66) (($ $ |#2|) NIL)))
+(((-872 |#1| |#2|) (-13 (-992 |#2|) (-10 -8 (-15 -3651 ((-409 (-566)) $ (-566))) (-15 -2241 ((-174 (-409 (-566))) $)) (-15 -1370 ($ $)) (-15 -1370 ($ (-566) $)))) (-566) (-869 |#1|)) (T -872))
+((-3651 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-409 (-566))) (-5 *1 (-872 *4 *5)) (-5 *3 (-566)) (-4 *5 (-869 *4)))) (-2241 (*1 *2 *1) (-12 (-14 *3 (-566)) (-5 *2 (-174 (-409 (-566)))) (-5 *1 (-872 *3 *4)) (-4 *4 (-869 *3)))) (-1370 (*1 *1 *1) (-12 (-14 *2 (-566)) (-5 *1 (-872 *2 *3)) (-4 *3 (-869 *2)))) (-1370 (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-14 *3 *2) (-5 *1 (-872 *3 *4)) (-4 *4 (-869 *3)))))
+(-13 (-992 |#2|) (-10 -8 (-15 -3651 ((-409 (-566)) $ (-566))) (-15 -2241 ((-174 (-409 (-566))) $)) (-15 -1370 ($ $)) (-15 -1370 ($ (-566) $))))
+((-3009 (((-112) $ $) NIL (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099))))) (-4358 ((|#2| $) 12)) (-2245 (($ |#1| |#2|) 9)) (-2402 (((-1157) $) NIL (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099))))) (-4056 (((-1119) $) NIL (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099))))) (-4101 ((|#1| $) 11)) (-3791 (($ |#1| |#2|) 10)) (-3780 (((-862) $) 18 (-2805 (-12 (|has| |#1| (-613 (-862))) (|has| |#2| (-613 (-862)))) (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099)))))) (-3801 (((-112) $ $) NIL (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099))))) (-2950 (((-112) $ $) 23 (-12 (|has| |#1| (-1099)) (|has| |#2| (-1099))))))
+(((-873 |#1| |#2|) (-13 (-1214) (-10 -8 (IF (|has| |#1| (-613 (-862))) (IF (|has| |#2| (-613 (-862))) (-6 (-613 (-862))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1099)) (IF (|has| |#2| (-1099)) (-6 (-1099)) |%noBranch|) |%noBranch|) (-15 -2245 ($ |#1| |#2|)) (-15 -3791 ($ |#1| |#2|)) (-15 -4101 (|#1| $)) (-15 -4358 (|#2| $)))) (-1214) (-1214)) (T -873))
+((-2245 (*1 *1 *2 *3) (-12 (-5 *1 (-873 *2 *3)) (-4 *2 (-1214)) (-4 *3 (-1214)))) (-3791 (*1 *1 *2 *3) (-12 (-5 *1 (-873 *2 *3)) (-4 *2 (-1214)) (-4 *3 (-1214)))) (-4101 (*1 *2 *1) (-12 (-4 *2 (-1214)) (-5 *1 (-873 *2 *3)) (-4 *3 (-1214)))) (-4358 (*1 *2 *1) (-12 (-4 *2 (-1214)) (-5 *1 (-873 *3 *2)) (-4 *3 (-1214)))))
+(-13 (-1214) (-10 -8 (IF (|has| |#1| (-613 (-862))) (IF (|has| |#2| (-613 (-862))) (-6 (-613 (-862))) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-1099)) (IF (|has| |#2| (-1099)) (-6 (-1099)) |%noBranch|) |%noBranch|) (-15 -2245 ($ |#1| |#2|)) (-15 -3791 ($ |#1| |#2|)) (-15 -4101 (|#1| $)) (-15 -4358 (|#2| $))))
+((-3009 (((-112) $ $) NIL)) (-2405 (((-566) $) 16)) (-3119 (($ (-157)) 13)) (-1518 (($ (-157)) 14)) (-2402 (((-1157) $) NIL)) (-4263 (((-157) $) 15)) (-4056 (((-1119) $) NIL)) (-4225 (($ (-157)) 11)) (-1998 (($ (-157)) 10)) (-3780 (((-862) $) 24) (($ (-157)) 17)) (-3238 (($ (-157)) 12)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-874) (-13 (-1099) (-10 -8 (-15 -1998 ($ (-157))) (-15 -4225 ($ (-157))) (-15 -3238 ($ (-157))) (-15 -3119 ($ (-157))) (-15 -1518 ($ (-157))) (-15 -4263 ((-157) $)) (-15 -2405 ((-566) $)) (-15 -3780 ($ (-157)))))) (T -874))
+((-1998 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-4225 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-3238 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-3119 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-1518 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-4263 (*1 *2 *1) (-12 (-5 *2 (-157)) (-5 *1 (-874)))) (-2405 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-874)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
+(-13 (-1099) (-10 -8 (-15 -1998 ($ (-157))) (-15 -4225 ($ (-157))) (-15 -3238 ($ (-157))) (-15 -3119 ($ (-157))) (-15 -1518 ($ (-157))) (-15 -4263 ((-157) $)) (-15 -2405 ((-566) $)) (-15 -3780 ($ (-157)))))
+((-3780 (((-317 (-566)) (-409 (-952 (-48)))) 23) (((-317 (-566)) (-952 (-48))) 18)))
+(((-875) (-10 -7 (-15 -3780 ((-317 (-566)) (-952 (-48)))) (-15 -3780 ((-317 (-566)) (-409 (-952 (-48))))))) (T -875))
+((-3780 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 (-48)))) (-5 *2 (-317 (-566))) (-5 *1 (-875)))) (-3780 (*1 *2 *3) (-12 (-5 *3 (-952 (-48))) (-5 *2 (-317 (-566))) (-5 *1 (-875)))))
+(-10 -7 (-15 -3780 ((-317 (-566)) (-952 (-48)))) (-15 -3780 ((-317 (-566)) (-409 (-952 (-48))))))
+((-3152 (((-877 |#2|) (-1 |#2| |#1|) (-877 |#1|)) 15)))
+(((-876 |#1| |#2|) (-10 -7 (-15 -3152 ((-877 |#2|) (-1 |#2| |#1|) (-877 |#1|)))) (-1214) (-1214)) (T -876))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-877 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-877 *6)) (-5 *1 (-876 *5 *6)))))
+(-10 -7 (-15 -3152 ((-877 |#2|) (-1 |#2| |#1|) (-877 |#1|))))
+((-2490 (($ |#1| |#1|) 8)) (-4362 ((|#1| $ (-771)) 15)))
+(((-877 |#1|) (-10 -8 (-15 -2490 ($ |#1| |#1|)) (-15 -4362 (|#1| $ (-771)))) (-1214)) (T -877))
+((-4362 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-877 *2)) (-4 *2 (-1214)))) (-2490 (*1 *1 *2 *2) (-12 (-5 *1 (-877 *2)) (-4 *2 (-1214)))))
+(-10 -8 (-15 -2490 ($ |#1| |#1|)) (-15 -4362 (|#1| $ (-771))))
+((-3152 (((-879 |#2|) (-1 |#2| |#1|) (-879 |#1|)) 15)))
+(((-878 |#1| |#2|) (-10 -7 (-15 -3152 ((-879 |#2|) (-1 |#2| |#1|) (-879 |#1|)))) (-1214) (-1214)) (T -878))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-879 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-879 *6)) (-5 *1 (-878 *5 *6)))))
+(-10 -7 (-15 -3152 ((-879 |#2|) (-1 |#2| |#1|) (-879 |#1|))))
+((-2490 (($ |#1| |#1| |#1|) 8)) (-4362 ((|#1| $ (-771)) 15)))
+(((-879 |#1|) (-10 -8 (-15 -2490 ($ |#1| |#1| |#1|)) (-15 -4362 (|#1| $ (-771)))) (-1214)) (T -879))
+((-4362 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-879 *2)) (-4 *2 (-1214)))) (-2490 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-879 *2)) (-4 *2 (-1214)))))
+(-10 -8 (-15 -2490 ($ |#1| |#1| |#1|)) (-15 -4362 (|#1| $ (-771))))
+((-4149 (((-644 (-1180)) (-1157)) 9)))
+(((-880) (-10 -7 (-15 -4149 ((-644 (-1180)) (-1157))))) (T -880))
+((-4149 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-644 (-1180))) (-5 *1 (-880)))))
+(-10 -7 (-15 -4149 ((-644 (-1180)) (-1157))))
+((-3152 (((-882 |#2|) (-1 |#2| |#1|) (-882 |#1|)) 15)))
+(((-881 |#1| |#2|) (-10 -7 (-15 -3152 ((-882 |#2|) (-1 |#2| |#1|) (-882 |#1|)))) (-1214) (-1214)) (T -881))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-882 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-882 *6)) (-5 *1 (-881 *5 *6)))))
+(-10 -7 (-15 -3152 ((-882 |#2|) (-1 |#2| |#1|) (-882 |#1|))))
+((-4013 (($ |#1| |#1| |#1|) 8)) (-4362 ((|#1| $ (-771)) 15)))
+(((-882 |#1|) (-10 -8 (-15 -4013 ($ |#1| |#1| |#1|)) (-15 -4362 (|#1| $ (-771)))) (-1214)) (T -882))
+((-4362 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-882 *2)) (-4 *2 (-1214)))) (-4013 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-882 *2)) (-4 *2 (-1214)))))
+(-10 -8 (-15 -4013 ($ |#1| |#1| |#1|)) (-15 -4362 (|#1| $ (-771))))
+((-2079 (((-1155 (-644 (-566))) (-644 (-566)) (-1155 (-644 (-566)))) 48)) (-4275 (((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566))) 44)) (-1632 (((-1155 (-644 (-566))) (-644 (-566))) 58) (((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566))) 56)) (-2005 (((-1155 (-644 (-566))) (-566)) 59)) (-2256 (((-1155 (-644 (-566))) (-566) (-566)) 34) (((-1155 (-644 (-566))) (-566)) 23) (((-1155 (-644 (-566))) (-566) (-566) (-566)) 19)) (-2418 (((-1155 (-644 (-566))) (-1155 (-644 (-566)))) 42)) (-3850 (((-644 (-566)) (-644 (-566))) 41)))
+(((-883) (-10 -7 (-15 -2256 ((-1155 (-644 (-566))) (-566) (-566) (-566))) (-15 -2256 ((-1155 (-644 (-566))) (-566))) (-15 -2256 ((-1155 (-644 (-566))) (-566) (-566))) (-15 -3850 ((-644 (-566)) (-644 (-566)))) (-15 -2418 ((-1155 (-644 (-566))) (-1155 (-644 (-566))))) (-15 -4275 ((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566)))) (-15 -2079 ((-1155 (-644 (-566))) (-644 (-566)) (-1155 (-644 (-566))))) (-15 -1632 ((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566)))) (-15 -1632 ((-1155 (-644 (-566))) (-644 (-566)))) (-15 -2005 ((-1155 (-644 (-566))) (-566))))) (T -883))
+((-2005 (*1 *2 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))) (-1632 (*1 *2 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-644 (-566))))) (-1632 (*1 *2 *3 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-644 (-566))))) (-2079 (*1 *2 *3 *2) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *3 (-644 (-566))) (-5 *1 (-883)))) (-4275 (*1 *2 *3 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-644 (-566))))) (-2418 (*1 *2 *2) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)))) (-3850 (*1 *2 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-883)))) (-2256 (*1 *2 *3 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))) (-2256 (*1 *2 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))) (-2256 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))))
+(-10 -7 (-15 -2256 ((-1155 (-644 (-566))) (-566) (-566) (-566))) (-15 -2256 ((-1155 (-644 (-566))) (-566))) (-15 -2256 ((-1155 (-644 (-566))) (-566) (-566))) (-15 -3850 ((-644 (-566)) (-644 (-566)))) (-15 -2418 ((-1155 (-644 (-566))) (-1155 (-644 (-566))))) (-15 -4275 ((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566)))) (-15 -2079 ((-1155 (-644 (-566))) (-644 (-566)) (-1155 (-644 (-566))))) (-15 -1632 ((-1155 (-644 (-566))) (-644 (-566)) (-644 (-566)))) (-15 -1632 ((-1155 (-644 (-566))) (-644 (-566)))) (-15 -2005 ((-1155 (-644 (-566))) (-566))))
+((-3204 (((-892 (-381)) $) 9 (|has| |#1| (-614 (-892 (-381))))) (((-892 (-566)) $) 8 (|has| |#1| (-614 (-892 (-566)))))))
(((-884 |#1|) (-140) (-1214)) (T -884))
NIL
(-13 (-10 -7 (IF (|has| |t#1| (-614 (-892 (-566)))) (-6 (-614 (-892 (-566)))) |%noBranch|) (IF (|has| |t#1| (-614 (-892 (-381)))) (-6 (-614 (-892 (-381)))) |%noBranch|)))
(((-614 (-892 (-381))) |has| |#1| (-614 (-892 (-381)))) ((-614 (-892 (-566))) |has| |#1| (-614 (-892 (-566)))))
-((-2985 (((-112) $ $) NIL)) (-4257 (($) 14)) (-1485 (($ (-889 |#1| |#2|) (-889 |#1| |#3|)) 28)) (-1903 (((-889 |#1| |#3|) $) 16)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1436 (((-112) $) 22)) (-3272 (($) 19)) (-2512 (((-862) $) 31)) (-3122 (((-112) $ $) NIL)) (-2704 (((-889 |#1| |#2|) $) 15)) (-2940 (((-112) $ $) 26)))
-(((-885 |#1| |#2| |#3|) (-13 (-1099) (-10 -8 (-15 -1436 ((-112) $)) (-15 -3272 ($)) (-15 -4257 ($)) (-15 -1485 ($ (-889 |#1| |#2|) (-889 |#1| |#3|))) (-15 -2704 ((-889 |#1| |#2|) $)) (-15 -1903 ((-889 |#1| |#3|) $)))) (-1099) (-1099) (-666 |#2|)) (T -885))
-((-1436 (*1 *2 *1) (-12 (-4 *4 (-1099)) (-5 *2 (-112)) (-5 *1 (-885 *3 *4 *5)) (-4 *3 (-1099)) (-4 *5 (-666 *4)))) (-3272 (*1 *1) (-12 (-4 *3 (-1099)) (-5 *1 (-885 *2 *3 *4)) (-4 *2 (-1099)) (-4 *4 (-666 *3)))) (-4257 (*1 *1) (-12 (-4 *3 (-1099)) (-5 *1 (-885 *2 *3 *4)) (-4 *2 (-1099)) (-4 *4 (-666 *3)))) (-1485 (*1 *1 *2 *3) (-12 (-5 *2 (-889 *4 *5)) (-5 *3 (-889 *4 *6)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-666 *5)) (-5 *1 (-885 *4 *5 *6)))) (-2704 (*1 *2 *1) (-12 (-4 *4 (-1099)) (-5 *2 (-889 *3 *4)) (-5 *1 (-885 *3 *4 *5)) (-4 *3 (-1099)) (-4 *5 (-666 *4)))) (-1903 (*1 *2 *1) (-12 (-4 *4 (-1099)) (-5 *2 (-889 *3 *5)) (-5 *1 (-885 *3 *4 *5)) (-4 *3 (-1099)) (-4 *5 (-666 *4)))))
-(-13 (-1099) (-10 -8 (-15 -1436 ((-112) $)) (-15 -3272 ($)) (-15 -4257 ($)) (-15 -1485 ($ (-889 |#1| |#2|) (-889 |#1| |#3|))) (-15 -2704 ((-889 |#1| |#2|) $)) (-15 -1903 ((-889 |#1| |#3|) $))))
-((-2985 (((-112) $ $) 7)) (-1356 (((-889 |#1| $) $ (-892 |#1|) (-889 |#1| $)) 14)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-3009 (((-112) $ $) NIL)) (-4278 (($) 14)) (-3192 (($ (-889 |#1| |#2|) (-889 |#1| |#3|)) 28)) (-4221 (((-889 |#1| |#3|) $) 16)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3910 (((-112) $) 22)) (-3261 (($) 19)) (-3780 (((-862) $) 31)) (-3801 (((-112) $ $) NIL)) (-3113 (((-889 |#1| |#2|) $) 15)) (-2950 (((-112) $ $) 26)))
+(((-885 |#1| |#2| |#3|) (-13 (-1099) (-10 -8 (-15 -3910 ((-112) $)) (-15 -3261 ($)) (-15 -4278 ($)) (-15 -3192 ($ (-889 |#1| |#2|) (-889 |#1| |#3|))) (-15 -3113 ((-889 |#1| |#2|) $)) (-15 -4221 ((-889 |#1| |#3|) $)))) (-1099) (-1099) (-666 |#2|)) (T -885))
+((-3910 (*1 *2 *1) (-12 (-4 *4 (-1099)) (-5 *2 (-112)) (-5 *1 (-885 *3 *4 *5)) (-4 *3 (-1099)) (-4 *5 (-666 *4)))) (-3261 (*1 *1) (-12 (-4 *3 (-1099)) (-5 *1 (-885 *2 *3 *4)) (-4 *2 (-1099)) (-4 *4 (-666 *3)))) (-4278 (*1 *1) (-12 (-4 *3 (-1099)) (-5 *1 (-885 *2 *3 *4)) (-4 *2 (-1099)) (-4 *4 (-666 *3)))) (-3192 (*1 *1 *2 *3) (-12 (-5 *2 (-889 *4 *5)) (-5 *3 (-889 *4 *6)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-666 *5)) (-5 *1 (-885 *4 *5 *6)))) (-3113 (*1 *2 *1) (-12 (-4 *4 (-1099)) (-5 *2 (-889 *3 *4)) (-5 *1 (-885 *3 *4 *5)) (-4 *3 (-1099)) (-4 *5 (-666 *4)))) (-4221 (*1 *2 *1) (-12 (-4 *4 (-1099)) (-5 *2 (-889 *3 *5)) (-5 *1 (-885 *3 *4 *5)) (-4 *3 (-1099)) (-4 *5 (-666 *4)))))
+(-13 (-1099) (-10 -8 (-15 -3910 ((-112) $)) (-15 -3261 ($)) (-15 -4278 ($)) (-15 -3192 ($ (-889 |#1| |#2|) (-889 |#1| |#3|))) (-15 -3113 ((-889 |#1| |#2|) $)) (-15 -4221 ((-889 |#1| |#3|) $))))
+((-3009 (((-112) $ $) 7)) (-1525 (((-889 |#1| $) $ (-892 |#1|) (-889 |#1| $)) 14)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-886 |#1|) (-140) (-1099)) (T -886))
-((-1356 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-889 *4 *1)) (-5 *3 (-892 *4)) (-4 *1 (-886 *4)) (-4 *4 (-1099)))))
-(-13 (-1099) (-10 -8 (-15 -1356 ((-889 |t#1| $) $ (-892 |t#1|) (-889 |t#1| $)))))
+((-1525 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-889 *4 *1)) (-5 *3 (-892 *4)) (-4 *1 (-886 *4)) (-4 *4 (-1099)))))
+(-13 (-1099) (-10 -8 (-15 -1525 ((-889 |t#1| $) $ (-892 |t#1|) (-889 |t#1| $)))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2181 (((-112) (-644 |#2|) |#3|) 23) (((-112) |#2| |#3|) 18)) (-3972 (((-889 |#1| |#2|) |#2| |#3|) 45 (-12 (-2426 (|has| |#2| (-1038 (-1175)))) (-2426 (|has| |#2| (-1049))))) (((-644 (-295 (-952 |#2|))) |#2| |#3|) 44 (-12 (|has| |#2| (-1049)) (-2426 (|has| |#2| (-1038 (-1175)))))) (((-644 (-295 |#2|)) |#2| |#3|) 36 (|has| |#2| (-1038 (-1175)))) (((-885 |#1| |#2| (-644 |#2|)) (-644 |#2|) |#3|) 21)))
-(((-887 |#1| |#2| |#3|) (-10 -7 (-15 -2181 ((-112) |#2| |#3|)) (-15 -2181 ((-112) (-644 |#2|) |#3|)) (-15 -3972 ((-885 |#1| |#2| (-644 |#2|)) (-644 |#2|) |#3|)) (IF (|has| |#2| (-1038 (-1175))) (-15 -3972 ((-644 (-295 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1049)) (-15 -3972 ((-644 (-295 (-952 |#2|))) |#2| |#3|)) (-15 -3972 ((-889 |#1| |#2|) |#2| |#3|))))) (-1099) (-886 |#1|) (-614 (-892 |#1|))) (T -887))
-((-3972 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-5 *2 (-889 *5 *3)) (-5 *1 (-887 *5 *3 *4)) (-2426 (-4 *3 (-1038 (-1175)))) (-2426 (-4 *3 (-1049))) (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5))))) (-3972 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-5 *2 (-644 (-295 (-952 *3)))) (-5 *1 (-887 *5 *3 *4)) (-4 *3 (-1049)) (-2426 (-4 *3 (-1038 (-1175)))) (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5))))) (-3972 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-5 *2 (-644 (-295 *3))) (-5 *1 (-887 *5 *3 *4)) (-4 *3 (-1038 (-1175))) (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5))))) (-3972 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-4 *6 (-886 *5)) (-5 *2 (-885 *5 *6 (-644 *6))) (-5 *1 (-887 *5 *6 *4)) (-5 *3 (-644 *6)) (-4 *4 (-614 (-892 *5))))) (-2181 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *6)) (-4 *6 (-886 *5)) (-4 *5 (-1099)) (-5 *2 (-112)) (-5 *1 (-887 *5 *6 *4)) (-4 *4 (-614 (-892 *5))))) (-2181 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-5 *2 (-112)) (-5 *1 (-887 *5 *3 *4)) (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5))))))
-(-10 -7 (-15 -2181 ((-112) |#2| |#3|)) (-15 -2181 ((-112) (-644 |#2|) |#3|)) (-15 -3972 ((-885 |#1| |#2| (-644 |#2|)) (-644 |#2|) |#3|)) (IF (|has| |#2| (-1038 (-1175))) (-15 -3972 ((-644 (-295 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1049)) (-15 -3972 ((-644 (-295 (-952 |#2|))) |#2| |#3|)) (-15 -3972 ((-889 |#1| |#2|) |#2| |#3|)))))
-((-3077 (((-889 |#1| |#3|) (-1 |#3| |#2|) (-889 |#1| |#2|)) 22)))
-(((-888 |#1| |#2| |#3|) (-10 -7 (-15 -3077 ((-889 |#1| |#3|) (-1 |#3| |#2|) (-889 |#1| |#2|)))) (-1099) (-1099) (-1099)) (T -888))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-889 *5 *6)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-889 *5 *7)) (-5 *1 (-888 *5 *6 *7)))))
-(-10 -7 (-15 -3077 ((-889 |#1| |#3|) (-1 |#3| |#2|) (-889 |#1| |#2|))))
-((-2985 (((-112) $ $) NIL)) (-1781 (($ $ $) 40)) (-3756 (((-3 (-112) "failed") $ (-892 |#1|)) 37)) (-4257 (($) 12)) (-2878 (((-1157) $) NIL)) (-3977 (($ (-892 |#1|) |#2| $) 20)) (-4033 (((-1119) $) NIL)) (-2912 (((-3 |#2| "failed") (-892 |#1|) $) 51)) (-1436 (((-112) $) 15)) (-3272 (($) 13)) (-2477 (((-644 (-2 (|:| -2010 (-1175)) (|:| -2818 |#2|))) $) 25)) (-2523 (($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 |#2|)))) 23)) (-2512 (((-862) $) 45)) (-3122 (((-112) $ $) NIL)) (-2854 (($ (-892 |#1|) |#2| $ |#2|) 49)) (-4230 (($ (-892 |#1|) |#2| $) 48)) (-2940 (((-112) $ $) 42)))
-(((-889 |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -1436 ((-112) $)) (-15 -3272 ($)) (-15 -4257 ($)) (-15 -1781 ($ $ $)) (-15 -2912 ((-3 |#2| "failed") (-892 |#1|) $)) (-15 -4230 ($ (-892 |#1|) |#2| $)) (-15 -3977 ($ (-892 |#1|) |#2| $)) (-15 -2854 ($ (-892 |#1|) |#2| $ |#2|)) (-15 -2477 ((-644 (-2 (|:| -2010 (-1175)) (|:| -2818 |#2|))) $)) (-15 -2523 ($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 |#2|))))) (-15 -3756 ((-3 (-112) "failed") $ (-892 |#1|))))) (-1099) (-1099)) (T -889))
-((-1436 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-889 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-3272 (*1 *1) (-12 (-5 *1 (-889 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-4257 (*1 *1) (-12 (-5 *1 (-889 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-1781 (*1 *1 *1 *1) (-12 (-5 *1 (-889 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-2912 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-4 *2 (-1099)) (-5 *1 (-889 *4 *2)))) (-4230 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3)) (-4 *3 (-1099)))) (-3977 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3)) (-4 *3 (-1099)))) (-2854 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3)) (-4 *3 (-1099)))) (-2477 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 *4)))) (-5 *1 (-889 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-2523 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 *4)))) (-4 *4 (-1099)) (-5 *1 (-889 *3 *4)) (-4 *3 (-1099)))) (-3756 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-112)) (-5 *1 (-889 *4 *5)) (-4 *5 (-1099)))))
-(-13 (-1099) (-10 -8 (-15 -1436 ((-112) $)) (-15 -3272 ($)) (-15 -4257 ($)) (-15 -1781 ($ $ $)) (-15 -2912 ((-3 |#2| "failed") (-892 |#1|) $)) (-15 -4230 ($ (-892 |#1|) |#2| $)) (-15 -3977 ($ (-892 |#1|) |#2| $)) (-15 -2854 ($ (-892 |#1|) |#2| $ |#2|)) (-15 -2477 ((-644 (-2 (|:| -2010 (-1175)) (|:| -2818 |#2|))) $)) (-15 -2523 ($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 |#2|))))) (-15 -3756 ((-3 (-112) "failed") $ (-892 |#1|)))))
-((-2197 (((-892 |#1|) (-892 |#1|) (-644 (-1175)) (-1 (-112) (-644 |#2|))) 32) (((-892 |#1|) (-892 |#1|) (-644 (-1 (-112) |#2|))) 46) (((-892 |#1|) (-892 |#1|) (-1 (-112) |#2|)) 35)) (-3756 (((-112) (-644 |#2|) (-892 |#1|)) 42) (((-112) |#2| (-892 |#1|)) 36)) (-4043 (((-1 (-112) |#2|) (-892 |#1|)) 16)) (-1740 (((-644 |#2|) (-892 |#1|)) 24)) (-3670 (((-892 |#1|) (-892 |#1|) |#2|) 20)))
-(((-890 |#1| |#2|) (-10 -7 (-15 -2197 ((-892 |#1|) (-892 |#1|) (-1 (-112) |#2|))) (-15 -2197 ((-892 |#1|) (-892 |#1|) (-644 (-1 (-112) |#2|)))) (-15 -2197 ((-892 |#1|) (-892 |#1|) (-644 (-1175)) (-1 (-112) (-644 |#2|)))) (-15 -4043 ((-1 (-112) |#2|) (-892 |#1|))) (-15 -3756 ((-112) |#2| (-892 |#1|))) (-15 -3756 ((-112) (-644 |#2|) (-892 |#1|))) (-15 -3670 ((-892 |#1|) (-892 |#1|) |#2|)) (-15 -1740 ((-644 |#2|) (-892 |#1|)))) (-1099) (-1214)) (T -890))
-((-1740 (*1 *2 *3) (-12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-644 *5)) (-5 *1 (-890 *4 *5)) (-4 *5 (-1214)))) (-3670 (*1 *2 *2 *3) (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-890 *4 *3)) (-4 *3 (-1214)))) (-3756 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-4 *6 (-1214)) (-5 *2 (-112)) (-5 *1 (-890 *5 *6)))) (-3756 (*1 *2 *3 *4) (-12 (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-5 *2 (-112)) (-5 *1 (-890 *5 *3)) (-4 *3 (-1214)))) (-4043 (*1 *2 *3) (-12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-890 *4 *5)) (-4 *5 (-1214)))) (-2197 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-892 *5)) (-5 *3 (-644 (-1175))) (-5 *4 (-1 (-112) (-644 *6))) (-4 *5 (-1099)) (-4 *6 (-1214)) (-5 *1 (-890 *5 *6)))) (-2197 (*1 *2 *2 *3) (-12 (-5 *2 (-892 *4)) (-5 *3 (-644 (-1 (-112) *5))) (-4 *4 (-1099)) (-4 *5 (-1214)) (-5 *1 (-890 *4 *5)))) (-2197 (*1 *2 *2 *3) (-12 (-5 *2 (-892 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1099)) (-4 *5 (-1214)) (-5 *1 (-890 *4 *5)))))
-(-10 -7 (-15 -2197 ((-892 |#1|) (-892 |#1|) (-1 (-112) |#2|))) (-15 -2197 ((-892 |#1|) (-892 |#1|) (-644 (-1 (-112) |#2|)))) (-15 -2197 ((-892 |#1|) (-892 |#1|) (-644 (-1175)) (-1 (-112) (-644 |#2|)))) (-15 -4043 ((-1 (-112) |#2|) (-892 |#1|))) (-15 -3756 ((-112) |#2| (-892 |#1|))) (-15 -3756 ((-112) (-644 |#2|) (-892 |#1|))) (-15 -3670 ((-892 |#1|) (-892 |#1|) |#2|)) (-15 -1740 ((-644 |#2|) (-892 |#1|))))
-((-3077 (((-892 |#2|) (-1 |#2| |#1|) (-892 |#1|)) 19)))
-(((-891 |#1| |#2|) (-10 -7 (-15 -3077 ((-892 |#2|) (-1 |#2| |#1|) (-892 |#1|)))) (-1099) (-1099)) (T -891))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-892 *6)) (-5 *1 (-891 *5 *6)))))
-(-10 -7 (-15 -3077 ((-892 |#2|) (-1 |#2| |#1|) (-892 |#1|))))
-((-2985 (((-112) $ $) NIL)) (-2663 (($ $ (-644 (-52))) 74)) (-2540 (((-644 $) $) 138)) (-3514 (((-2 (|:| |var| (-644 (-1175))) (|:| |pred| (-52))) $) 30)) (-1739 (((-112) $) 35)) (-3347 (($ $ (-644 (-1175)) (-52)) 31)) (-4116 (($ $ (-644 (-52))) 73)) (-2977 (((-3 |#1| "failed") $) 71) (((-3 (-1175) "failed") $) 162)) (-1756 ((|#1| $) 68) (((-1175) $) NIL)) (-3274 (($ $) 126)) (-2672 (((-112) $) 55)) (-1344 (((-644 (-52)) $) 50)) (-3429 (($ (-1175) (-112) (-112) (-112)) 75)) (-3261 (((-3 (-644 $) "failed") (-644 $)) 82)) (-1511 (((-112) $) 58)) (-3110 (((-112) $) 57)) (-2878 (((-1157) $) NIL)) (-2692 (((-3 (-644 $) "failed") $) 41)) (-3113 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 48)) (-3658 (((-3 (-2 (|:| |val| $) (|:| -3250 $)) "failed") $) 97)) (-1853 (((-3 (-644 $) "failed") $) 40)) (-2034 (((-3 (-644 $) "failed") $ (-114)) 124) (((-3 (-2 (|:| -1706 (-114)) (|:| |arg| (-644 $))) "failed") $) 107)) (-2852 (((-3 (-644 $) "failed") $) 42)) (-3285 (((-3 (-2 (|:| |val| $) (|:| -3250 (-771))) "failed") $) 45)) (-2256 (((-112) $) 34)) (-4033 (((-1119) $) NIL)) (-1394 (((-112) $) 28)) (-4060 (((-112) $) 52)) (-1766 (((-644 (-52)) $) 130)) (-1635 (((-112) $) 56)) (-4386 (($ (-114) (-644 $)) 104)) (-2753 (((-771) $) 33)) (-3895 (($ $) 72)) (-3134 (($ (-644 $)) 69)) (-4167 (((-112) $) 32)) (-2512 (((-862) $) 63) (($ |#1|) 23) (($ (-1175)) 76)) (-3122 (((-112) $ $) NIL)) (-3670 (($ $ (-52)) 129)) (-2485 (($) 103 T CONST)) (-2495 (($) 83 T CONST)) (-2940 (((-112) $ $) 93)) (-3061 (($ $ $) 117)) (-3034 (($ $ $) 121)) (** (($ $ (-771)) 115) (($ $ $) 64)) (* (($ $ $) 122)))
-(((-892 |#1|) (-13 (-1099) (-1038 |#1|) (-1038 (-1175)) (-10 -8 (-15 0 ($) -1655) (-15 1 ($) -1655) (-15 -1853 ((-3 (-644 $) "failed") $)) (-15 -2692 ((-3 (-644 $) "failed") $)) (-15 -2034 ((-3 (-644 $) "failed") $ (-114))) (-15 -2034 ((-3 (-2 (|:| -1706 (-114)) (|:| |arg| (-644 $))) "failed") $)) (-15 -3285 ((-3 (-2 (|:| |val| $) (|:| -3250 (-771))) "failed") $)) (-15 -3113 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2852 ((-3 (-644 $) "failed") $)) (-15 -3658 ((-3 (-2 (|:| |val| $) (|:| -3250 $)) "failed") $)) (-15 -4386 ($ (-114) (-644 $))) (-15 -3034 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-771))) (-15 ** ($ $ $)) (-15 -3061 ($ $ $)) (-15 -2753 ((-771) $)) (-15 -3134 ($ (-644 $))) (-15 -3895 ($ $)) (-15 -2256 ((-112) $)) (-15 -2672 ((-112) $)) (-15 -1739 ((-112) $)) (-15 -4167 ((-112) $)) (-15 -1635 ((-112) $)) (-15 -3110 ((-112) $)) (-15 -1511 ((-112) $)) (-15 -4060 ((-112) $)) (-15 -1344 ((-644 (-52)) $)) (-15 -4116 ($ $ (-644 (-52)))) (-15 -2663 ($ $ (-644 (-52)))) (-15 -3429 ($ (-1175) (-112) (-112) (-112))) (-15 -3347 ($ $ (-644 (-1175)) (-52))) (-15 -3514 ((-2 (|:| |var| (-644 (-1175))) (|:| |pred| (-52))) $)) (-15 -1394 ((-112) $)) (-15 -3274 ($ $)) (-15 -3670 ($ $ (-52))) (-15 -1766 ((-644 (-52)) $)) (-15 -2540 ((-644 $) $)) (-15 -3261 ((-3 (-644 $) "failed") (-644 $))))) (-1099)) (T -892))
-((-2485 (*1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-2495 (*1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-1853 (*1 *2 *1) (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2692 (*1 *2 *1) (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2034 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-644 (-892 *4))) (-5 *1 (-892 *4)) (-4 *4 (-1099)))) (-2034 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -1706 (-114)) (|:| |arg| (-644 (-892 *3))))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3285 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-892 *3)) (|:| -3250 (-771)))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3113 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-892 *3)) (|:| |den| (-892 *3)))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2852 (*1 *2 *1) (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3658 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-892 *3)) (|:| -3250 (-892 *3)))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-4386 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-644 (-892 *4))) (-5 *1 (-892 *4)) (-4 *4 (-1099)))) (-3034 (*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-3061 (*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-2753 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3134 (*1 *1 *2) (-12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3895 (*1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-2256 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2672 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-1739 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-4167 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-1635 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3110 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-1511 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-4060 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-1344 (*1 *2 *1) (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-4116 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2663 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3429 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-112)) (-5 *1 (-892 *4)) (-4 *4 (-1099)))) (-3347 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-52)) (-5 *1 (-892 *4)) (-4 *4 (-1099)))) (-3514 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-644 (-1175))) (|:| |pred| (-52)))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-1394 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3274 (*1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-3670 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-1766 (*1 *2 *1) (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2540 (*1 *2 *1) (-12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3261 (*1 *2 *2) (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(-13 (-1099) (-1038 |#1|) (-1038 (-1175)) (-10 -8 (-15 (-2485) ($) -1655) (-15 (-2495) ($) -1655) (-15 -1853 ((-3 (-644 $) "failed") $)) (-15 -2692 ((-3 (-644 $) "failed") $)) (-15 -2034 ((-3 (-644 $) "failed") $ (-114))) (-15 -2034 ((-3 (-2 (|:| -1706 (-114)) (|:| |arg| (-644 $))) "failed") $)) (-15 -3285 ((-3 (-2 (|:| |val| $) (|:| -3250 (-771))) "failed") $)) (-15 -3113 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2852 ((-3 (-644 $) "failed") $)) (-15 -3658 ((-3 (-2 (|:| |val| $) (|:| -3250 $)) "failed") $)) (-15 -4386 ($ (-114) (-644 $))) (-15 -3034 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-771))) (-15 ** ($ $ $)) (-15 -3061 ($ $ $)) (-15 -2753 ((-771) $)) (-15 -3134 ($ (-644 $))) (-15 -3895 ($ $)) (-15 -2256 ((-112) $)) (-15 -2672 ((-112) $)) (-15 -1739 ((-112) $)) (-15 -4167 ((-112) $)) (-15 -1635 ((-112) $)) (-15 -3110 ((-112) $)) (-15 -1511 ((-112) $)) (-15 -4060 ((-112) $)) (-15 -1344 ((-644 (-52)) $)) (-15 -4116 ($ $ (-644 (-52)))) (-15 -2663 ($ $ (-644 (-52)))) (-15 -3429 ($ (-1175) (-112) (-112) (-112))) (-15 -3347 ($ $ (-644 (-1175)) (-52))) (-15 -3514 ((-2 (|:| |var| (-644 (-1175))) (|:| |pred| (-52))) $)) (-15 -1394 ((-112) $)) (-15 -3274 ($ $)) (-15 -3670 ($ $ (-52))) (-15 -1766 ((-644 (-52)) $)) (-15 -2540 ((-644 $) $)) (-15 -3261 ((-3 (-644 $) "failed") (-644 $)))))
-((-2985 (((-112) $ $) NIL)) (-1719 (((-644 |#1|) $) 19)) (-4353 (((-112) $) 49)) (-2977 (((-3 (-672 |#1|) "failed") $) 56)) (-1756 (((-672 |#1|) $) 54)) (-4076 (($ $) 23)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3822 (((-771) $) 61)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 (((-672 |#1|) $) 21)) (-2512 (((-862) $) 47) (($ (-672 |#1|)) 26) (((-819 |#1|) $) 36) (($ |#1|) 25)) (-3122 (((-112) $ $) NIL)) (-2495 (($) 9 T CONST)) (-1521 (((-644 (-672 |#1|)) $) 28)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 12)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 67)))
-(((-893 |#1|) (-13 (-850) (-1038 (-672 |#1|)) (-10 -8 (-15 1 ($) -1655) (-15 -2512 ((-819 |#1|) $)) (-15 -2512 ($ |#1|)) (-15 -4062 ((-672 |#1|) $)) (-15 -3822 ((-771) $)) (-15 -1521 ((-644 (-672 |#1|)) $)) (-15 -4076 ($ $)) (-15 -4353 ((-112) $)) (-15 -1719 ((-644 |#1|) $)))) (-850)) (T -893))
-((-2495 (*1 *1) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-893 *3)) (-4 *3 (-850)))) (-2512 (*1 *1 *2) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850)))) (-4062 (*1 *2 *1) (-12 (-5 *2 (-672 *3)) (-5 *1 (-893 *3)) (-4 *3 (-850)))) (-3822 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-893 *3)) (-4 *3 (-850)))) (-1521 (*1 *2 *1) (-12 (-5 *2 (-644 (-672 *3))) (-5 *1 (-893 *3)) (-4 *3 (-850)))) (-4076 (*1 *1 *1) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850)))) (-4353 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-893 *3)) (-4 *3 (-850)))) (-1719 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-893 *3)) (-4 *3 (-850)))))
-(-13 (-850) (-1038 (-672 |#1|)) (-10 -8 (-15 (-2495) ($) -1655) (-15 -2512 ((-819 |#1|) $)) (-15 -2512 ($ |#1|)) (-15 -4062 ((-672 |#1|) $)) (-15 -3822 ((-771) $)) (-15 -1521 ((-644 (-672 |#1|)) $)) (-15 -4076 ($ $)) (-15 -4353 ((-112) $)) (-15 -1719 ((-644 |#1|) $))))
-((-1803 ((|#1| |#1| |#1|) 19)))
-(((-894 |#1| |#2|) (-10 -7 (-15 -1803 (|#1| |#1| |#1|))) (-1240 |#2|) (-1049)) (T -894))
-((-1803 (*1 *2 *2 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-894 *2 *3)) (-4 *2 (-1240 *3)))))
-(-10 -7 (-15 -1803 (|#1| |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-2092 (((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-3687 (((-1035) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 14)) (-2940 (((-112) $ $) 6)))
+((-2885 (((-112) (-644 |#2|) |#3|) 23) (((-112) |#2| |#3|) 18)) (-1920 (((-889 |#1| |#2|) |#2| |#3|) 45 (-12 (-2436 (|has| |#2| (-1038 (-1175)))) (-2436 (|has| |#2| (-1049))))) (((-644 (-295 (-952 |#2|))) |#2| |#3|) 44 (-12 (|has| |#2| (-1049)) (-2436 (|has| |#2| (-1038 (-1175)))))) (((-644 (-295 |#2|)) |#2| |#3|) 36 (|has| |#2| (-1038 (-1175)))) (((-885 |#1| |#2| (-644 |#2|)) (-644 |#2|) |#3|) 21)))
+(((-887 |#1| |#2| |#3|) (-10 -7 (-15 -2885 ((-112) |#2| |#3|)) (-15 -2885 ((-112) (-644 |#2|) |#3|)) (-15 -1920 ((-885 |#1| |#2| (-644 |#2|)) (-644 |#2|) |#3|)) (IF (|has| |#2| (-1038 (-1175))) (-15 -1920 ((-644 (-295 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1049)) (-15 -1920 ((-644 (-295 (-952 |#2|))) |#2| |#3|)) (-15 -1920 ((-889 |#1| |#2|) |#2| |#3|))))) (-1099) (-886 |#1|) (-614 (-892 |#1|))) (T -887))
+((-1920 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-5 *2 (-889 *5 *3)) (-5 *1 (-887 *5 *3 *4)) (-2436 (-4 *3 (-1038 (-1175)))) (-2436 (-4 *3 (-1049))) (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5))))) (-1920 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-5 *2 (-644 (-295 (-952 *3)))) (-5 *1 (-887 *5 *3 *4)) (-4 *3 (-1049)) (-2436 (-4 *3 (-1038 (-1175)))) (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5))))) (-1920 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-5 *2 (-644 (-295 *3))) (-5 *1 (-887 *5 *3 *4)) (-4 *3 (-1038 (-1175))) (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5))))) (-1920 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-4 *6 (-886 *5)) (-5 *2 (-885 *5 *6 (-644 *6))) (-5 *1 (-887 *5 *6 *4)) (-5 *3 (-644 *6)) (-4 *4 (-614 (-892 *5))))) (-2885 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *6)) (-4 *6 (-886 *5)) (-4 *5 (-1099)) (-5 *2 (-112)) (-5 *1 (-887 *5 *6 *4)) (-4 *4 (-614 (-892 *5))))) (-2885 (*1 *2 *3 *4) (-12 (-4 *5 (-1099)) (-5 *2 (-112)) (-5 *1 (-887 *5 *3 *4)) (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5))))))
+(-10 -7 (-15 -2885 ((-112) |#2| |#3|)) (-15 -2885 ((-112) (-644 |#2|) |#3|)) (-15 -1920 ((-885 |#1| |#2| (-644 |#2|)) (-644 |#2|) |#3|)) (IF (|has| |#2| (-1038 (-1175))) (-15 -1920 ((-644 (-295 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1049)) (-15 -1920 ((-644 (-295 (-952 |#2|))) |#2| |#3|)) (-15 -1920 ((-889 |#1| |#2|) |#2| |#3|)))))
+((-3152 (((-889 |#1| |#3|) (-1 |#3| |#2|) (-889 |#1| |#2|)) 22)))
+(((-888 |#1| |#2| |#3|) (-10 -7 (-15 -3152 ((-889 |#1| |#3|) (-1 |#3| |#2|) (-889 |#1| |#2|)))) (-1099) (-1099) (-1099)) (T -888))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *7 *6)) (-5 *4 (-889 *5 *6)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-889 *5 *7)) (-5 *1 (-888 *5 *6 *7)))))
+(-10 -7 (-15 -3152 ((-889 |#1| |#3|) (-1 |#3| |#2|) (-889 |#1| |#2|))))
+((-3009 (((-112) $ $) NIL)) (-1814 (($ $ $) 40)) (-1797 (((-3 (-112) "failed") $ (-892 |#1|)) 37)) (-4278 (($) 12)) (-2402 (((-1157) $) NIL)) (-1965 (($ (-892 |#1|) |#2| $) 20)) (-4056 (((-1119) $) NIL)) (-1490 (((-3 |#2| "failed") (-892 |#1|) $) 51)) (-3910 (((-112) $) 15)) (-3261 (($) 13)) (-2545 (((-644 (-2 (|:| -2050 (-1175)) (|:| -2849 |#2|))) $) 25)) (-3791 (($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 |#2|)))) 23)) (-3780 (((-862) $) 45)) (-3801 (((-112) $ $) NIL)) (-2149 (($ (-892 |#1|) |#2| $ |#2|) 49)) (-2622 (($ (-892 |#1|) |#2| $) 48)) (-2950 (((-112) $ $) 42)))
+(((-889 |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -3910 ((-112) $)) (-15 -3261 ($)) (-15 -4278 ($)) (-15 -1814 ($ $ $)) (-15 -1490 ((-3 |#2| "failed") (-892 |#1|) $)) (-15 -2622 ($ (-892 |#1|) |#2| $)) (-15 -1965 ($ (-892 |#1|) |#2| $)) (-15 -2149 ($ (-892 |#1|) |#2| $ |#2|)) (-15 -2545 ((-644 (-2 (|:| -2050 (-1175)) (|:| -2849 |#2|))) $)) (-15 -3791 ($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 |#2|))))) (-15 -1797 ((-3 (-112) "failed") $ (-892 |#1|))))) (-1099) (-1099)) (T -889))
+((-3910 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-889 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-3261 (*1 *1) (-12 (-5 *1 (-889 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-4278 (*1 *1) (-12 (-5 *1 (-889 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-1814 (*1 *1 *1 *1) (-12 (-5 *1 (-889 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-1490 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-4 *2 (-1099)) (-5 *1 (-889 *4 *2)))) (-2622 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3)) (-4 *3 (-1099)))) (-1965 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3)) (-4 *3 (-1099)))) (-2149 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3)) (-4 *3 (-1099)))) (-2545 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 *4)))) (-5 *1 (-889 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-3791 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 *4)))) (-4 *4 (-1099)) (-5 *1 (-889 *3 *4)) (-4 *3 (-1099)))) (-1797 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-112)) (-5 *1 (-889 *4 *5)) (-4 *5 (-1099)))))
+(-13 (-1099) (-10 -8 (-15 -3910 ((-112) $)) (-15 -3261 ($)) (-15 -4278 ($)) (-15 -1814 ($ $ $)) (-15 -1490 ((-3 |#2| "failed") (-892 |#1|) $)) (-15 -2622 ($ (-892 |#1|) |#2| $)) (-15 -1965 ($ (-892 |#1|) |#2| $)) (-15 -2149 ($ (-892 |#1|) |#2| $ |#2|)) (-15 -2545 ((-644 (-2 (|:| -2050 (-1175)) (|:| -2849 |#2|))) $)) (-15 -3791 ($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 |#2|))))) (-15 -1797 ((-3 (-112) "failed") $ (-892 |#1|)))))
+((-3055 (((-892 |#1|) (-892 |#1|) (-644 (-1175)) (-1 (-112) (-644 |#2|))) 32) (((-892 |#1|) (-892 |#1|) (-644 (-1 (-112) |#2|))) 46) (((-892 |#1|) (-892 |#1|) (-1 (-112) |#2|)) 35)) (-1797 (((-112) (-644 |#2|) (-892 |#1|)) 42) (((-112) |#2| (-892 |#1|)) 36)) (-4330 (((-1 (-112) |#2|) (-892 |#1|)) 16)) (-3953 (((-644 |#2|) (-892 |#1|)) 24)) (-2123 (((-892 |#1|) (-892 |#1|) |#2|) 20)))
+(((-890 |#1| |#2|) (-10 -7 (-15 -3055 ((-892 |#1|) (-892 |#1|) (-1 (-112) |#2|))) (-15 -3055 ((-892 |#1|) (-892 |#1|) (-644 (-1 (-112) |#2|)))) (-15 -3055 ((-892 |#1|) (-892 |#1|) (-644 (-1175)) (-1 (-112) (-644 |#2|)))) (-15 -4330 ((-1 (-112) |#2|) (-892 |#1|))) (-15 -1797 ((-112) |#2| (-892 |#1|))) (-15 -1797 ((-112) (-644 |#2|) (-892 |#1|))) (-15 -2123 ((-892 |#1|) (-892 |#1|) |#2|)) (-15 -3953 ((-644 |#2|) (-892 |#1|)))) (-1099) (-1214)) (T -890))
+((-3953 (*1 *2 *3) (-12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-644 *5)) (-5 *1 (-890 *4 *5)) (-4 *5 (-1214)))) (-2123 (*1 *2 *2 *3) (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-890 *4 *3)) (-4 *3 (-1214)))) (-1797 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-4 *6 (-1214)) (-5 *2 (-112)) (-5 *1 (-890 *5 *6)))) (-1797 (*1 *2 *3 *4) (-12 (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-5 *2 (-112)) (-5 *1 (-890 *5 *3)) (-4 *3 (-1214)))) (-4330 (*1 *2 *3) (-12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-890 *4 *5)) (-4 *5 (-1214)))) (-3055 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-892 *5)) (-5 *3 (-644 (-1175))) (-5 *4 (-1 (-112) (-644 *6))) (-4 *5 (-1099)) (-4 *6 (-1214)) (-5 *1 (-890 *5 *6)))) (-3055 (*1 *2 *2 *3) (-12 (-5 *2 (-892 *4)) (-5 *3 (-644 (-1 (-112) *5))) (-4 *4 (-1099)) (-4 *5 (-1214)) (-5 *1 (-890 *4 *5)))) (-3055 (*1 *2 *2 *3) (-12 (-5 *2 (-892 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1099)) (-4 *5 (-1214)) (-5 *1 (-890 *4 *5)))))
+(-10 -7 (-15 -3055 ((-892 |#1|) (-892 |#1|) (-1 (-112) |#2|))) (-15 -3055 ((-892 |#1|) (-892 |#1|) (-644 (-1 (-112) |#2|)))) (-15 -3055 ((-892 |#1|) (-892 |#1|) (-644 (-1175)) (-1 (-112) (-644 |#2|)))) (-15 -4330 ((-1 (-112) |#2|) (-892 |#1|))) (-15 -1797 ((-112) |#2| (-892 |#1|))) (-15 -1797 ((-112) (-644 |#2|) (-892 |#1|))) (-15 -2123 ((-892 |#1|) (-892 |#1|) |#2|)) (-15 -3953 ((-644 |#2|) (-892 |#1|))))
+((-3152 (((-892 |#2|) (-1 |#2| |#1|) (-892 |#1|)) 19)))
+(((-891 |#1| |#2|) (-10 -7 (-15 -3152 ((-892 |#2|) (-1 |#2| |#1|) (-892 |#1|)))) (-1099) (-1099)) (T -891))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-5 *2 (-892 *6)) (-5 *1 (-891 *5 *6)))))
+(-10 -7 (-15 -3152 ((-892 |#2|) (-1 |#2| |#1|) (-892 |#1|))))
+((-3009 (((-112) $ $) NIL)) (-3903 (($ $ (-644 (-52))) 74)) (-2608 (((-644 $) $) 138)) (-3115 (((-2 (|:| |var| (-644 (-1175))) (|:| |pred| (-52))) $) 30)) (-3941 (((-112) $) 35)) (-2052 (($ $ (-644 (-1175)) (-52)) 31)) (-3909 (($ $ (-644 (-52))) 73)) (-3066 (((-3 |#1| "failed") $) 71) (((-3 (-1175) "failed") $) 162)) (-1867 ((|#1| $) 68) (((-1175) $) NIL)) (-2673 (($ $) 126)) (-3995 (((-112) $) 55)) (-3311 (((-644 (-52)) $) 50)) (-1606 (($ (-1175) (-112) (-112) (-112)) 75)) (-2560 (((-3 (-644 $) "failed") (-644 $)) 82)) (-3463 (((-112) $) 58)) (-3702 (((-112) $) 57)) (-2402 (((-1157) $) NIL)) (-4201 (((-3 (-644 $) "failed") $) 41)) (-3855 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 48)) (-2014 (((-3 (-2 (|:| |val| $) (|:| -2456 $)) "failed") $) 97)) (-2657 (((-3 (-644 $) "failed") $) 40)) (-3869 (((-3 (-644 $) "failed") $ (-114)) 124) (((-3 (-2 (|:| -1746 (-114)) (|:| |arg| (-644 $))) "failed") $) 107)) (-2138 (((-3 (-644 $) "failed") $) 42)) (-2749 (((-3 (-2 (|:| |val| $) (|:| -2456 (-771))) "failed") $) 45)) (-2380 (((-112) $) 34)) (-4056 (((-1119) $) NIL)) (-3479 (((-112) $) 28)) (-1480 (((-112) $) 52)) (-3005 (((-644 (-52)) $) 130)) (-2288 (((-112) $) 56)) (-4393 (($ (-114) (-644 $)) 104)) (-1677 (((-771) $) 33)) (-3940 (($ $) 72)) (-3204 (($ (-644 $)) 69)) (-3201 (((-112) $) 32)) (-3780 (((-862) $) 63) (($ |#1|) 23) (($ (-1175)) 76)) (-3801 (((-112) $ $) NIL)) (-2123 (($ $ (-52)) 129)) (-2493 (($) 103 T CONST)) (-4333 (($) 83 T CONST)) (-2950 (((-112) $ $) 93)) (-3062 (($ $ $) 117)) (-3040 (($ $ $) 121)) (** (($ $ (-771)) 115) (($ $ $) 64)) (* (($ $ $) 122)))
+(((-892 |#1|) (-13 (-1099) (-1038 |#1|) (-1038 (-1175)) (-10 -8 (-15 0 ($) -2460) (-15 1 ($) -2460) (-15 -2657 ((-3 (-644 $) "failed") $)) (-15 -4201 ((-3 (-644 $) "failed") $)) (-15 -3869 ((-3 (-644 $) "failed") $ (-114))) (-15 -3869 ((-3 (-2 (|:| -1746 (-114)) (|:| |arg| (-644 $))) "failed") $)) (-15 -2749 ((-3 (-2 (|:| |val| $) (|:| -2456 (-771))) "failed") $)) (-15 -3855 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2138 ((-3 (-644 $) "failed") $)) (-15 -2014 ((-3 (-2 (|:| |val| $) (|:| -2456 $)) "failed") $)) (-15 -4393 ($ (-114) (-644 $))) (-15 -3040 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-771))) (-15 ** ($ $ $)) (-15 -3062 ($ $ $)) (-15 -1677 ((-771) $)) (-15 -3204 ($ (-644 $))) (-15 -3940 ($ $)) (-15 -2380 ((-112) $)) (-15 -3995 ((-112) $)) (-15 -3941 ((-112) $)) (-15 -3201 ((-112) $)) (-15 -2288 ((-112) $)) (-15 -3702 ((-112) $)) (-15 -3463 ((-112) $)) (-15 -1480 ((-112) $)) (-15 -3311 ((-644 (-52)) $)) (-15 -3909 ($ $ (-644 (-52)))) (-15 -3903 ($ $ (-644 (-52)))) (-15 -1606 ($ (-1175) (-112) (-112) (-112))) (-15 -2052 ($ $ (-644 (-1175)) (-52))) (-15 -3115 ((-2 (|:| |var| (-644 (-1175))) (|:| |pred| (-52))) $)) (-15 -3479 ((-112) $)) (-15 -2673 ($ $)) (-15 -2123 ($ $ (-52))) (-15 -3005 ((-644 (-52)) $)) (-15 -2608 ((-644 $) $)) (-15 -2560 ((-3 (-644 $) "failed") (-644 $))))) (-1099)) (T -892))
+((-2493 (*1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-4333 (*1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-2657 (*1 *2 *1) (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-4201 (*1 *2 *1) (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3869 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-114)) (-5 *2 (-644 (-892 *4))) (-5 *1 (-892 *4)) (-4 *4 (-1099)))) (-3869 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -1746 (-114)) (|:| |arg| (-644 (-892 *3))))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2749 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-892 *3)) (|:| -2456 (-771)))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3855 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-892 *3)) (|:| |den| (-892 *3)))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2138 (*1 *2 *1) (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2014 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-892 *3)) (|:| -2456 (-892 *3)))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-4393 (*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-644 (-892 *4))) (-5 *1 (-892 *4)) (-4 *4 (-1099)))) (-3040 (*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (* (*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (** (*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-3062 (*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-1677 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3940 (*1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-2380 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3995 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3941 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3201 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2288 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3702 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3463 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-1480 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3311 (*1 *2 *1) (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3909 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3903 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-1606 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-112)) (-5 *1 (-892 *4)) (-4 *4 (-1099)))) (-2052 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-52)) (-5 *1 (-892 *4)) (-4 *4 (-1099)))) (-3115 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-644 (-1175))) (|:| |pred| (-52)))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3479 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2673 (*1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))) (-2123 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-3005 (*1 *2 *1) (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2608 (*1 *2 *1) (-12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))) (-2560 (*1 *2 *2) (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(-13 (-1099) (-1038 |#1|) (-1038 (-1175)) (-10 -8 (-15 (-2493) ($) -2460) (-15 (-4333) ($) -2460) (-15 -2657 ((-3 (-644 $) "failed") $)) (-15 -4201 ((-3 (-644 $) "failed") $)) (-15 -3869 ((-3 (-644 $) "failed") $ (-114))) (-15 -3869 ((-3 (-2 (|:| -1746 (-114)) (|:| |arg| (-644 $))) "failed") $)) (-15 -2749 ((-3 (-2 (|:| |val| $) (|:| -2456 (-771))) "failed") $)) (-15 -3855 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2138 ((-3 (-644 $) "failed") $)) (-15 -2014 ((-3 (-2 (|:| |val| $) (|:| -2456 $)) "failed") $)) (-15 -4393 ($ (-114) (-644 $))) (-15 -3040 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-771))) (-15 ** ($ $ $)) (-15 -3062 ($ $ $)) (-15 -1677 ((-771) $)) (-15 -3204 ($ (-644 $))) (-15 -3940 ($ $)) (-15 -2380 ((-112) $)) (-15 -3995 ((-112) $)) (-15 -3941 ((-112) $)) (-15 -3201 ((-112) $)) (-15 -2288 ((-112) $)) (-15 -3702 ((-112) $)) (-15 -3463 ((-112) $)) (-15 -1480 ((-112) $)) (-15 -3311 ((-644 (-52)) $)) (-15 -3909 ($ $ (-644 (-52)))) (-15 -3903 ($ $ (-644 (-52)))) (-15 -1606 ($ (-1175) (-112) (-112) (-112))) (-15 -2052 ($ $ (-644 (-1175)) (-52))) (-15 -3115 ((-2 (|:| |var| (-644 (-1175))) (|:| |pred| (-52))) $)) (-15 -3479 ((-112) $)) (-15 -2673 ($ $)) (-15 -2123 ($ $ (-52))) (-15 -3005 ((-644 (-52)) $)) (-15 -2608 ((-644 $) $)) (-15 -2560 ((-3 (-644 $) "failed") (-644 $)))))
+((-3009 (((-112) $ $) NIL)) (-1824 (((-644 |#1|) $) 19)) (-1323 (((-112) $) 49)) (-3066 (((-3 (-672 |#1|) "failed") $) 56)) (-1867 (((-672 |#1|) $) 54)) (-4112 (($ $) 23)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-3945 (((-771) $) 61)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 (((-672 |#1|) $) 21)) (-3780 (((-862) $) 47) (($ (-672 |#1|)) 26) (((-819 |#1|) $) 36) (($ |#1|) 25)) (-3801 (((-112) $ $) NIL)) (-4333 (($) 9 T CONST)) (-2356 (((-644 (-672 |#1|)) $) 28)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 12)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 67)))
+(((-893 |#1|) (-13 (-850) (-1038 (-672 |#1|)) (-10 -8 (-15 1 ($) -2460) (-15 -3780 ((-819 |#1|) $)) (-15 -3780 ($ |#1|)) (-15 -4101 ((-672 |#1|) $)) (-15 -3945 ((-771) $)) (-15 -2356 ((-644 (-672 |#1|)) $)) (-15 -4112 ($ $)) (-15 -1323 ((-112) $)) (-15 -1824 ((-644 |#1|) $)))) (-850)) (T -893))
+((-4333 (*1 *1) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-893 *3)) (-4 *3 (-850)))) (-3780 (*1 *1 *2) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850)))) (-4101 (*1 *2 *1) (-12 (-5 *2 (-672 *3)) (-5 *1 (-893 *3)) (-4 *3 (-850)))) (-3945 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-893 *3)) (-4 *3 (-850)))) (-2356 (*1 *2 *1) (-12 (-5 *2 (-644 (-672 *3))) (-5 *1 (-893 *3)) (-4 *3 (-850)))) (-4112 (*1 *1 *1) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850)))) (-1323 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-893 *3)) (-4 *3 (-850)))) (-1824 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-893 *3)) (-4 *3 (-850)))))
+(-13 (-850) (-1038 (-672 |#1|)) (-10 -8 (-15 (-4333) ($) -2460) (-15 -3780 ((-819 |#1|) $)) (-15 -3780 ($ |#1|)) (-15 -4101 ((-672 |#1|) $)) (-15 -3945 ((-771) $)) (-15 -2356 ((-644 (-672 |#1|)) $)) (-15 -4112 ($ $)) (-15 -1323 ((-112) $)) (-15 -1824 ((-644 |#1|) $))))
+((-3374 ((|#1| |#1| |#1|) 19)))
+(((-894 |#1| |#2|) (-10 -7 (-15 -3374 (|#1| |#1| |#1|))) (-1240 |#2|) (-1049)) (T -894))
+((-3374 (*1 *2 *2 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-894 *2 *3)) (-4 *2 (-1240 *3)))))
+(-10 -7 (-15 -3374 (|#1| |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3245 (((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2308 (((-1035) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 14)) (-2950 (((-112) $ $) 6)))
(((-895) (-140)) (T -895))
-((-2092 (*1 *2 *3 *4) (-12 (-4 *1 (-895)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) (-5 *2 (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157)))))) (-3687 (*1 *2 *3) (-12 (-4 *1 (-895)) (-5 *3 (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) (-5 *2 (-1035)))))
-(-13 (-1099) (-10 -7 (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))))) (-15 -3687 ((-1035) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))))))
+((-3245 (*1 *2 *3 *4) (-12 (-4 *1 (-895)) (-5 *3 (-1062)) (-5 *4 (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) (-5 *2 (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157)))))) (-2308 (*1 *2 *3) (-12 (-4 *1 (-895)) (-5 *3 (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) (-5 *2 (-1035)))))
+(-13 (-1099) (-10 -7 (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))) (-1062) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))))) (-15 -2308 ((-1035) (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-4003 ((|#1| |#1| (-771)) 29)) (-2489 (((-3 |#1| "failed") |#1| |#1|) 26)) (-3282 (((-3 (-2 (|:| -4357 |#1|) (|:| -4368 |#1|)) "failed") |#1| (-771) (-771)) 32) (((-644 |#1|) |#1|) 39)))
-(((-896 |#1| |#2|) (-10 -7 (-15 -3282 ((-644 |#1|) |#1|)) (-15 -3282 ((-3 (-2 (|:| -4357 |#1|) (|:| -4368 |#1|)) "failed") |#1| (-771) (-771))) (-15 -2489 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4003 (|#1| |#1| (-771)))) (-1240 |#2|) (-365)) (T -896))
-((-4003 (*1 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-365)) (-5 *1 (-896 *2 *4)) (-4 *2 (-1240 *4)))) (-2489 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-365)) (-5 *1 (-896 *2 *3)) (-4 *2 (-1240 *3)))) (-3282 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-771)) (-4 *5 (-365)) (-5 *2 (-2 (|:| -4357 *3) (|:| -4368 *3))) (-5 *1 (-896 *3 *5)) (-4 *3 (-1240 *5)))) (-3282 (*1 *2 *3) (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1240 *4)))))
-(-10 -7 (-15 -3282 ((-644 |#1|) |#1|)) (-15 -3282 ((-3 (-2 (|:| -4357 |#1|) (|:| -4368 |#1|)) "failed") |#1| (-771) (-771))) (-15 -2489 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4003 (|#1| |#1| (-771))))
-((-2371 (((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157)) 106) (((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157) (-225)) 102) (((-1035) (-898) (-1062)) 94) (((-1035) (-898)) 95)) (-2092 (((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898) (-1062)) 65) (((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898)) 67)))
-(((-897) (-10 -7 (-15 -2371 ((-1035) (-898))) (-15 -2371 ((-1035) (-898) (-1062))) (-15 -2371 ((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157) (-225))) (-15 -2371 ((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898) (-1062))))) (T -897))
-((-2092 (*1 *2 *3 *4) (-12 (-5 *3 (-898)) (-5 *4 (-1062)) (-5 *2 (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-897)))) (-2092 (*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-897)))) (-2371 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-771)) (-5 *6 (-644 (-644 (-317 *3)))) (-5 *7 (-1157)) (-5 *5 (-644 (-317 (-381)))) (-5 *3 (-381)) (-5 *2 (-1035)) (-5 *1 (-897)))) (-2371 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-771)) (-5 *6 (-644 (-644 (-317 *3)))) (-5 *7 (-1157)) (-5 *8 (-225)) (-5 *5 (-644 (-317 (-381)))) (-5 *3 (-381)) (-5 *2 (-1035)) (-5 *1 (-897)))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-898)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-897)))) (-2371 (*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-1035)) (-5 *1 (-897)))))
-(-10 -7 (-15 -2371 ((-1035) (-898))) (-15 -2371 ((-1035) (-898) (-1062))) (-15 -2371 ((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157) (-225))) (-15 -2371 ((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898))) (-15 -2092 ((-2 (|:| -2092 (-381)) (|:| -2628 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898) (-1062))))
-((-2985 (((-112) $ $) NIL)) (-1756 (((-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))) $) 19)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 21) (($ (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 18)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-898) (-13 (-1099) (-10 -8 (-15 -2512 ($ (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))))) (-15 -1756 ((-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))) $))))) (T -898))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) (-5 *1 (-898)))) (-1756 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) (-5 *1 (-898)))))
-(-13 (-1099) (-10 -8 (-15 -2512 ($ (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))))) (-15 -1756 ((-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))) $))))
-((-2862 (($ $ |#2|) NIL) (($ $ (-644 |#2|)) 10) (($ $ |#2| (-771)) 15) (($ $ (-644 |#2|) (-644 (-771))) 18)) (-2840 (($ $ |#2|) 19) (($ $ (-644 |#2|)) 21) (($ $ |#2| (-771)) 22) (($ $ (-644 |#2|) (-644 (-771))) 24)))
-(((-899 |#1| |#2|) (-10 -8 (-15 -2840 (|#1| |#1| (-644 |#2|) (-644 (-771)))) (-15 -2840 (|#1| |#1| |#2| (-771))) (-15 -2840 (|#1| |#1| (-644 |#2|))) (-15 -2840 (|#1| |#1| |#2|)) (-15 -2862 (|#1| |#1| (-644 |#2|) (-644 (-771)))) (-15 -2862 (|#1| |#1| |#2| (-771))) (-15 -2862 (|#1| |#1| (-644 |#2|))) (-15 -2862 (|#1| |#1| |#2|))) (-900 |#2|) (-1099)) (T -899))
-NIL
-(-10 -8 (-15 -2840 (|#1| |#1| (-644 |#2|) (-644 (-771)))) (-15 -2840 (|#1| |#1| |#2| (-771))) (-15 -2840 (|#1| |#1| (-644 |#2|))) (-15 -2840 (|#1| |#1| |#2|)) (-15 -2862 (|#1| |#1| (-644 |#2|) (-644 (-771)))) (-15 -2862 (|#1| |#1| |#2| (-771))) (-15 -2862 (|#1| |#1| (-644 |#2|))) (-15 -2862 (|#1| |#1| |#2|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2862 (($ $ |#1|) 46) (($ $ (-644 |#1|)) 45) (($ $ |#1| (-771)) 44) (($ $ (-644 |#1|) (-644 (-771))) 43)) (-2512 (((-862) $) 12) (($ (-566)) 33)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ |#1|) 42) (($ $ (-644 |#1|)) 41) (($ $ |#1| (-771)) 40) (($ $ (-644 |#1|) (-644 (-771))) 39)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-2191 ((|#1| |#1| (-771)) 29)) (-2804 (((-3 |#1| "failed") |#1| |#1|) 26)) (-2731 (((-3 (-2 (|:| -4380 |#1|) (|:| -4394 |#1|)) "failed") |#1| (-771) (-771)) 32) (((-644 |#1|) |#1|) 39)))
+(((-896 |#1| |#2|) (-10 -7 (-15 -2731 ((-644 |#1|) |#1|)) (-15 -2731 ((-3 (-2 (|:| -4380 |#1|) (|:| -4394 |#1|)) "failed") |#1| (-771) (-771))) (-15 -2804 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2191 (|#1| |#1| (-771)))) (-1240 |#2|) (-365)) (T -896))
+((-2191 (*1 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-365)) (-5 *1 (-896 *2 *4)) (-4 *2 (-1240 *4)))) (-2804 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-365)) (-5 *1 (-896 *2 *3)) (-4 *2 (-1240 *3)))) (-2731 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-771)) (-4 *5 (-365)) (-5 *2 (-2 (|:| -4380 *3) (|:| -4394 *3))) (-5 *1 (-896 *3 *5)) (-4 *3 (-1240 *5)))) (-2731 (*1 *2 *3) (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1240 *4)))))
+(-10 -7 (-15 -2731 ((-644 |#1|) |#1|)) (-15 -2731 ((-3 (-2 (|:| -4380 |#1|) (|:| -4394 |#1|)) "failed") |#1| (-771) (-771))) (-15 -2804 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2191 (|#1| |#1| (-771))))
+((-4159 (((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157)) 106) (((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157) (-225)) 102) (((-1035) (-898) (-1062)) 94) (((-1035) (-898)) 95)) (-3245 (((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898) (-1062)) 65) (((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898)) 67)))
+(((-897) (-10 -7 (-15 -4159 ((-1035) (-898))) (-15 -4159 ((-1035) (-898) (-1062))) (-15 -4159 ((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157) (-225))) (-15 -4159 ((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898) (-1062))))) (T -897))
+((-3245 (*1 *2 *3 *4) (-12 (-5 *3 (-898)) (-5 *4 (-1062)) (-5 *2 (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-897)))) (-3245 (*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157))))) (-5 *1 (-897)))) (-4159 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7) (-12 (-5 *4 (-771)) (-5 *6 (-644 (-644 (-317 *3)))) (-5 *7 (-1157)) (-5 *5 (-644 (-317 (-381)))) (-5 *3 (-381)) (-5 *2 (-1035)) (-5 *1 (-897)))) (-4159 (*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8) (-12 (-5 *4 (-771)) (-5 *6 (-644 (-644 (-317 *3)))) (-5 *7 (-1157)) (-5 *8 (-225)) (-5 *5 (-644 (-317 (-381)))) (-5 *3 (-381)) (-5 *2 (-1035)) (-5 *1 (-897)))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-898)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-897)))) (-4159 (*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-1035)) (-5 *1 (-897)))))
+(-10 -7 (-15 -4159 ((-1035) (-898))) (-15 -4159 ((-1035) (-898) (-1062))) (-15 -4159 ((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157) (-225))) (-15 -4159 ((-1035) (-381) (-381) (-381) (-381) (-771) (-771) (-644 (-317 (-381))) (-644 (-644 (-317 (-381)))) (-1157))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898))) (-15 -3245 ((-2 (|:| -3245 (-381)) (|:| -2639 (-1157)) (|:| |explanations| (-644 (-1157)))) (-898) (-1062))))
+((-3009 (((-112) $ $) NIL)) (-1867 (((-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))) $) 19)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 21) (($ (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) 18)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-898) (-13 (-1099) (-10 -8 (-15 -3780 ($ (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))))) (-15 -1867 ((-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))) $))))) (T -898))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) (-5 *1 (-898)))) (-1867 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225)))) (-5 *1 (-898)))))
+(-13 (-1099) (-10 -8 (-15 -3780 ($ (-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))))) (-15 -1867 ((-2 (|:| |pde| (-644 (-317 (-225)))) (|:| |constraints| (-644 (-2 (|:| |start| (-225)) (|:| |finish| (-225)) (|:| |grid| (-771)) (|:| |boundaryType| (-566)) (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225)))))) (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157)) (|:| |tol| (-225))) $))))
+((-2578 (($ $ |#2|) NIL) (($ $ (-644 |#2|)) 10) (($ $ |#2| (-771)) 15) (($ $ (-644 |#2|) (-644 (-771))) 18)) (-2876 (($ $ |#2|) 19) (($ $ (-644 |#2|)) 21) (($ $ |#2| (-771)) 22) (($ $ (-644 |#2|) (-644 (-771))) 24)))
+(((-899 |#1| |#2|) (-10 -8 (-15 -2876 (|#1| |#1| (-644 |#2|) (-644 (-771)))) (-15 -2876 (|#1| |#1| |#2| (-771))) (-15 -2876 (|#1| |#1| (-644 |#2|))) (-15 -2876 (|#1| |#1| |#2|)) (-15 -2578 (|#1| |#1| (-644 |#2|) (-644 (-771)))) (-15 -2578 (|#1| |#1| |#2| (-771))) (-15 -2578 (|#1| |#1| (-644 |#2|))) (-15 -2578 (|#1| |#1| |#2|))) (-900 |#2|) (-1099)) (T -899))
+NIL
+(-10 -8 (-15 -2876 (|#1| |#1| (-644 |#2|) (-644 (-771)))) (-15 -2876 (|#1| |#1| |#2| (-771))) (-15 -2876 (|#1| |#1| (-644 |#2|))) (-15 -2876 (|#1| |#1| |#2|)) (-15 -2578 (|#1| |#1| (-644 |#2|) (-644 (-771)))) (-15 -2578 (|#1| |#1| |#2| (-771))) (-15 -2578 (|#1| |#1| (-644 |#2|))) (-15 -2578 (|#1| |#1| |#2|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2578 (($ $ |#1|) 46) (($ $ (-644 |#1|)) 45) (($ $ |#1| (-771)) 44) (($ $ (-644 |#1|) (-644 (-771))) 43)) (-3780 (((-862) $) 12) (($ (-566)) 33)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ |#1|) 42) (($ $ (-644 |#1|)) 41) (($ $ |#1| (-771)) 40) (($ $ (-644 |#1|) (-644 (-771))) 39)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-900 |#1|) (-140) (-1099)) (T -900))
-((-2862 (*1 *1 *1 *2) (-12 (-4 *1 (-900 *2)) (-4 *2 (-1099)))) (-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *1 (-900 *3)) (-4 *3 (-1099)))) (-2862 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-900 *2)) (-4 *2 (-1099)))) (-2862 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *4)) (-5 *3 (-644 (-771))) (-4 *1 (-900 *4)) (-4 *4 (-1099)))) (-2840 (*1 *1 *1 *2) (-12 (-4 *1 (-900 *2)) (-4 *2 (-1099)))) (-2840 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *1 (-900 *3)) (-4 *3 (-1099)))) (-2840 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-900 *2)) (-4 *2 (-1099)))) (-2840 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *4)) (-5 *3 (-644 (-771))) (-4 *1 (-900 *4)) (-4 *4 (-1099)))))
-(-13 (-1049) (-10 -8 (-15 -2862 ($ $ |t#1|)) (-15 -2862 ($ $ (-644 |t#1|))) (-15 -2862 ($ $ |t#1| (-771))) (-15 -2862 ($ $ (-644 |t#1|) (-644 (-771)))) (-15 -2840 ($ $ |t#1|)) (-15 -2840 ($ $ (-644 |t#1|))) (-15 -2840 ($ $ |t#1| (-771))) (-15 -2840 ($ $ (-644 |t#1|) (-644 (-771))))))
+((-2578 (*1 *1 *1 *2) (-12 (-4 *1 (-900 *2)) (-4 *2 (-1099)))) (-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *1 (-900 *3)) (-4 *3 (-1099)))) (-2578 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-900 *2)) (-4 *2 (-1099)))) (-2578 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *4)) (-5 *3 (-644 (-771))) (-4 *1 (-900 *4)) (-4 *4 (-1099)))) (-2876 (*1 *1 *1 *2) (-12 (-4 *1 (-900 *2)) (-4 *2 (-1099)))) (-2876 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *1 (-900 *3)) (-4 *3 (-1099)))) (-2876 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-900 *2)) (-4 *2 (-1099)))) (-2876 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *4)) (-5 *3 (-644 (-771))) (-4 *1 (-900 *4)) (-4 *4 (-1099)))))
+(-13 (-1049) (-10 -8 (-15 -2578 ($ $ |t#1|)) (-15 -2578 ($ $ (-644 |t#1|))) (-15 -2578 ($ $ |t#1| (-771))) (-15 -2578 ($ $ (-644 |t#1|) (-644 (-771)))) (-15 -2876 ($ $ |t#1|)) (-15 -2876 ($ $ (-644 |t#1|))) (-15 -2876 ($ $ |t#1| (-771))) (-15 -2876 ($ $ (-644 |t#1|) (-644 (-771))))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-726) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2212 ((|#1| $) 26)) (-3081 (((-112) $ (-771)) NIL)) (-3087 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-2094 (($ $ $) NIL (|has| $ (-6 -4418)))) (-4235 (($ $ $) NIL (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4418))) (($ $ "left" $) NIL (|has| $ (-6 -4418))) (($ $ "right" $) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-4368 (($ $) 25)) (-3068 (($ |#1|) 12) (($ $ $) 17)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) NIL)) (-4129 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-4357 (($ $) 23)) (-2996 (((-644 |#1|) $) NIL)) (-2783 (((-112) $) 20)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-1442 (((-566) $ $) NIL)) (-1313 (((-112) $) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-1200 |#1|) $) 9) (((-862) $) 29 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) NIL)) (-2105 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 21 (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-901 |#1|) (-13 (-119 |#1|) (-613 (-1200 |#1|)) (-10 -8 (-15 -3068 ($ |#1|)) (-15 -3068 ($ $ $)))) (-1099)) (T -901))
-((-3068 (*1 *1 *2) (-12 (-5 *1 (-901 *2)) (-4 *2 (-1099)))) (-3068 (*1 *1 *1 *1) (-12 (-5 *1 (-901 *2)) (-4 *2 (-1099)))))
-(-13 (-119 |#1|) (-613 (-1200 |#1|)) (-10 -8 (-15 -3068 ($ |#1|)) (-15 -3068 ($ $ $))))
-((-1933 ((|#2| (-1141 |#1| |#2|)) 53)))
-(((-902 |#1| |#2|) (-10 -7 (-15 -1933 (|#2| (-1141 |#1| |#2|)))) (-921) (-13 (-1049) (-10 -7 (-6 (-4419 "*"))))) (T -902))
-((-1933 (*1 *2 *3) (-12 (-5 *3 (-1141 *4 *2)) (-14 *4 (-921)) (-4 *2 (-13 (-1049) (-10 -7 (-6 (-4419 "*"))))) (-5 *1 (-902 *4 *2)))))
-(-10 -7 (-15 -1933 (|#2| (-1141 |#1| |#2|))))
-((-2985 (((-112) $ $) 7)) (-2342 (($) 19 T CONST)) (-1579 (((-3 $ "failed") $) 16)) (-4080 (((-1101 |#1|) $ |#1|) 33)) (-2741 (((-112) $) 18)) (-1439 (($ $ $) 31 (-2805 (|has| |#1| (-850)) (|has| |#1| (-370))))) (-3059 (($ $ $) 30 (-2805 (|has| |#1| (-850)) (|has| |#1| (-370))))) (-2878 (((-1157) $) 10)) (-2626 (($ $) 25)) (-4033 (((-1119) $) 11)) (-2070 ((|#1| $ |#1|) 35)) (-4386 ((|#1| $ |#1|) 34)) (-3470 (($ (-644 (-644 |#1|))) 36)) (-2767 (($ (-644 |#1|)) 37)) (-2032 (($ $ $) 22)) (-3755 (($ $ $) 21)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2495 (($) 20 T CONST)) (-2998 (((-112) $ $) 28 (-2805 (|has| |#1| (-850)) (|has| |#1| (-370))))) (-2974 (((-112) $ $) 27 (-2805 (|has| |#1| (-850)) (|has| |#1| (-370))))) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 29 (-2805 (|has| |#1| (-850)) (|has| |#1| (-370))))) (-2962 (((-112) $ $) 32)) (-3061 (($ $ $) 24)) (** (($ $ (-921)) 14) (($ $ (-771)) 17) (($ $ (-566)) 23)) (* (($ $ $) 15)))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2252 ((|#1| $) 26)) (-1574 (((-112) $ (-771)) NIL)) (-1637 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-3267 (($ $ $) NIL (|has| $ (-6 -4415)))) (-2660 (($ $ $) NIL (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4415))) (($ $ "left" $) NIL (|has| $ (-6 -4415))) (($ $ "right" $) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-4394 (($ $) 25)) (-3818 (($ |#1|) 12) (($ $ $) 17)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) NIL)) (-4050 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-4380 (($ $) 23)) (-3318 (((-644 |#1|) $) NIL)) (-2675 (((-112) $) 20)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3969 (((-566) $ $) NIL)) (-1638 (((-112) $) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-1200 |#1|) $) 9) (((-862) $) 29 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) NIL)) (-3381 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 21 (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-901 |#1|) (-13 (-119 |#1|) (-613 (-1200 |#1|)) (-10 -8 (-15 -3818 ($ |#1|)) (-15 -3818 ($ $ $)))) (-1099)) (T -901))
+((-3818 (*1 *1 *2) (-12 (-5 *1 (-901 *2)) (-4 *2 (-1099)))) (-3818 (*1 *1 *1 *1) (-12 (-5 *1 (-901 *2)) (-4 *2 (-1099)))))
+(-13 (-119 |#1|) (-613 (-1200 |#1|)) (-10 -8 (-15 -3818 ($ |#1|)) (-15 -3818 ($ $ $))))
+((-2254 ((|#2| (-1141 |#1| |#2|)) 53)))
+(((-902 |#1| |#2|) (-10 -7 (-15 -2254 (|#2| (-1141 |#1| |#2|)))) (-921) (-13 (-1049) (-10 -7 (-6 (-4416 "*"))))) (T -902))
+((-2254 (*1 *2 *3) (-12 (-5 *3 (-1141 *4 *2)) (-14 *4 (-921)) (-4 *2 (-13 (-1049) (-10 -7 (-6 (-4416 "*"))))) (-5 *1 (-902 *4 *2)))))
+(-10 -7 (-15 -2254 (|#2| (-1141 |#1| |#2|))))
+((-3009 (((-112) $ $) 7)) (-3877 (($) 19 T CONST)) (-2928 (((-3 $ "failed") $) 16)) (-1683 (((-1101 |#1|) $ |#1|) 33)) (-3466 (((-112) $) 18)) (-1945 (($ $ $) 31 (-2805 (|has| |#1| (-850)) (|has| |#1| (-370))))) (-2709 (($ $ $) 30 (-2805 (|has| |#1| (-850)) (|has| |#1| (-370))))) (-2402 (((-1157) $) 10)) (-3584 (($ $) 25)) (-4056 (((-1119) $) 11)) (-2095 ((|#1| $ |#1|) 35)) (-4393 ((|#1| $ |#1|) 34)) (-3885 (($ (-644 (-644 |#1|))) 36)) (-2510 (($ (-644 |#1|)) 37)) (-3850 (($ $ $) 22)) (-1783 (($ $ $) 21)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-4333 (($) 20 T CONST)) (-3010 (((-112) $ $) 28 (-2805 (|has| |#1| (-850)) (|has| |#1| (-370))))) (-2984 (((-112) $ $) 27 (-2805 (|has| |#1| (-850)) (|has| |#1| (-370))))) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 29 (-2805 (|has| |#1| (-850)) (|has| |#1| (-370))))) (-2972 (((-112) $ $) 32)) (-3062 (($ $ $) 24)) (** (($ $ (-921)) 14) (($ $ (-771)) 17) (($ $ (-566)) 23)) (* (($ $ $) 15)))
(((-903 |#1|) (-140) (-1099)) (T -903))
-((-2767 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-903 *3)))) (-3470 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-4 *1 (-903 *3)))) (-2070 (*1 *2 *1 *2) (-12 (-4 *1 (-903 *2)) (-4 *2 (-1099)))) (-4386 (*1 *2 *1 *2) (-12 (-4 *1 (-903 *2)) (-4 *2 (-1099)))) (-4080 (*1 *2 *1 *3) (-12 (-4 *1 (-903 *3)) (-4 *3 (-1099)) (-5 *2 (-1101 *3)))) (-2962 (*1 *2 *1 *1) (-12 (-4 *1 (-903 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
-(-13 (-475) (-10 -8 (-15 -2767 ($ (-644 |t#1|))) (-15 -3470 ($ (-644 (-644 |t#1|)))) (-15 -2070 (|t#1| $ |t#1|)) (-15 -4386 (|t#1| $ |t#1|)) (-15 -4080 ((-1101 |t#1|) $ |t#1|)) (-15 -2962 ((-112) $ $)) (IF (|has| |t#1| (-850)) (-6 (-850)) |%noBranch|) (IF (|has| |t#1| (-370)) (-6 (-850)) |%noBranch|)))
+((-2510 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-903 *3)))) (-3885 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-4 *1 (-903 *3)))) (-2095 (*1 *2 *1 *2) (-12 (-4 *1 (-903 *2)) (-4 *2 (-1099)))) (-4393 (*1 *2 *1 *2) (-12 (-4 *1 (-903 *2)) (-4 *2 (-1099)))) (-1683 (*1 *2 *1 *3) (-12 (-4 *1 (-903 *3)) (-4 *3 (-1099)) (-5 *2 (-1101 *3)))) (-2972 (*1 *2 *1 *1) (-12 (-4 *1 (-903 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
+(-13 (-475) (-10 -8 (-15 -2510 ($ (-644 |t#1|))) (-15 -3885 ($ (-644 (-644 |t#1|)))) (-15 -2095 (|t#1| $ |t#1|)) (-15 -4393 (|t#1| $ |t#1|)) (-15 -1683 ((-1101 |t#1|) $ |t#1|)) (-15 -2972 ((-112) $ $)) (IF (|has| |t#1| (-850)) (-6 (-850)) |%noBranch|) (IF (|has| |t#1| (-370)) (-6 (-850)) |%noBranch|)))
(((-102) . T) ((-613 (-862)) . T) ((-475) . T) ((-726) . T) ((-850) -2805 (|has| |#1| (-850)) (|has| |#1| (-370))) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-1816 (((-644 (-644 (-771))) $) 165)) (-1663 (((-644 (-771)) (-905 |#1|) $) 193)) (-1733 (((-644 (-771)) (-905 |#1|) $) 194)) (-3455 (((-644 (-905 |#1|)) $) 154)) (-3335 (((-905 |#1|) $ (-566)) 159) (((-905 |#1|) $) 160)) (-3241 (($ (-644 (-905 |#1|))) 167)) (-2716 (((-771) $) 161)) (-1435 (((-1101 (-1101 |#1|)) $) 191)) (-4080 (((-1101 |#1|) $ |#1|) 182) (((-1101 (-1101 |#1|)) $ (-1101 |#1|)) 202) (((-1101 (-644 |#1|)) $ (-644 |#1|)) 205)) (-1991 (((-1101 |#1|) $) 157)) (-1927 (((-112) (-905 |#1|) $) 143)) (-2878 (((-1157) $) NIL)) (-3212 (((-1269) $) 147) (((-1269) $ (-566) (-566)) 206)) (-4033 (((-1119) $) NIL)) (-1476 (((-644 (-905 |#1|)) $) 148)) (-4386 (((-905 |#1|) $ (-771)) 155)) (-3992 (((-771) $) 162)) (-2512 (((-862) $) 179) (((-644 (-905 |#1|)) $) 28) (($ (-644 (-905 |#1|))) 166)) (-3122 (((-112) $ $) NIL)) (-3306 (((-644 |#1|) $) 164)) (-2940 (((-112) $ $) 199)) (-2987 (((-112) $ $) 197)) (-2962 (((-112) $ $) 196)))
-(((-904 |#1|) (-13 (-1099) (-10 -8 (-15 -2512 ((-644 (-905 |#1|)) $)) (-15 -1476 ((-644 (-905 |#1|)) $)) (-15 -4386 ((-905 |#1|) $ (-771))) (-15 -3335 ((-905 |#1|) $ (-566))) (-15 -3335 ((-905 |#1|) $)) (-15 -2716 ((-771) $)) (-15 -3992 ((-771) $)) (-15 -3306 ((-644 |#1|) $)) (-15 -3455 ((-644 (-905 |#1|)) $)) (-15 -1816 ((-644 (-644 (-771))) $)) (-15 -2512 ($ (-644 (-905 |#1|)))) (-15 -3241 ($ (-644 (-905 |#1|)))) (-15 -4080 ((-1101 |#1|) $ |#1|)) (-15 -1435 ((-1101 (-1101 |#1|)) $)) (-15 -4080 ((-1101 (-1101 |#1|)) $ (-1101 |#1|))) (-15 -4080 ((-1101 (-644 |#1|)) $ (-644 |#1|))) (-15 -1927 ((-112) (-905 |#1|) $)) (-15 -1663 ((-644 (-771)) (-905 |#1|) $)) (-15 -1733 ((-644 (-771)) (-905 |#1|) $)) (-15 -1991 ((-1101 |#1|) $)) (-15 -2962 ((-112) $ $)) (-15 -2987 ((-112) $ $)) (-15 -3212 ((-1269) $)) (-15 -3212 ((-1269) $ (-566) (-566))))) (-1099)) (T -904))
-((-2512 (*1 *2 *1) (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-1476 (*1 *2 *1) (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-905 *4)) (-5 *1 (-904 *4)) (-4 *4 (-1099)))) (-3335 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-905 *4)) (-5 *1 (-904 *4)) (-4 *4 (-1099)))) (-3335 (*1 *2 *1) (-12 (-5 *2 (-905 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-2716 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3992 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3306 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3455 (*1 *2 *1) (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-1816 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-771)))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-905 *3))) (-4 *3 (-1099)) (-5 *1 (-904 *3)))) (-3241 (*1 *1 *2) (-12 (-5 *2 (-644 (-905 *3))) (-4 *3 (-1099)) (-5 *1 (-904 *3)))) (-4080 (*1 *2 *1 *3) (-12 (-5 *2 (-1101 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-1435 (*1 *2 *1) (-12 (-5 *2 (-1101 (-1101 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-4080 (*1 *2 *1 *3) (-12 (-4 *4 (-1099)) (-5 *2 (-1101 (-1101 *4))) (-5 *1 (-904 *4)) (-5 *3 (-1101 *4)))) (-4080 (*1 *2 *1 *3) (-12 (-4 *4 (-1099)) (-5 *2 (-1101 (-644 *4))) (-5 *1 (-904 *4)) (-5 *3 (-644 *4)))) (-1927 (*1 *2 *3 *1) (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-112)) (-5 *1 (-904 *4)))) (-1663 (*1 *2 *3 *1) (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-644 (-771))) (-5 *1 (-904 *4)))) (-1733 (*1 *2 *3 *1) (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-644 (-771))) (-5 *1 (-904 *4)))) (-1991 (*1 *2 *1) (-12 (-5 *2 (-1101 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-2962 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-2987 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3212 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3212 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-904 *4)) (-4 *4 (-1099)))))
-(-13 (-1099) (-10 -8 (-15 -2512 ((-644 (-905 |#1|)) $)) (-15 -1476 ((-644 (-905 |#1|)) $)) (-15 -4386 ((-905 |#1|) $ (-771))) (-15 -3335 ((-905 |#1|) $ (-566))) (-15 -3335 ((-905 |#1|) $)) (-15 -2716 ((-771) $)) (-15 -3992 ((-771) $)) (-15 -3306 ((-644 |#1|) $)) (-15 -3455 ((-644 (-905 |#1|)) $)) (-15 -1816 ((-644 (-644 (-771))) $)) (-15 -2512 ($ (-644 (-905 |#1|)))) (-15 -3241 ($ (-644 (-905 |#1|)))) (-15 -4080 ((-1101 |#1|) $ |#1|)) (-15 -1435 ((-1101 (-1101 |#1|)) $)) (-15 -4080 ((-1101 (-1101 |#1|)) $ (-1101 |#1|))) (-15 -4080 ((-1101 (-644 |#1|)) $ (-644 |#1|))) (-15 -1927 ((-112) (-905 |#1|) $)) (-15 -1663 ((-644 (-771)) (-905 |#1|) $)) (-15 -1733 ((-644 (-771)) (-905 |#1|) $)) (-15 -1991 ((-1101 |#1|) $)) (-15 -2962 ((-112) $ $)) (-15 -2987 ((-112) $ $)) (-15 -3212 ((-1269) $)) (-15 -3212 ((-1269) $ (-566) (-566)))))
-((-2985 (((-112) $ $) NIL)) (-3290 (((-644 $) (-644 $)) 105)) (-2807 (((-566) $) 86)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL)) (-2716 (((-771) $) 83)) (-4080 (((-1101 |#1|) $ |#1|) 74)) (-2741 (((-112) $) NIL)) (-2884 (((-112) $) 90)) (-1484 (((-771) $) 87)) (-1991 (((-1101 |#1|) $) 63)) (-1439 (($ $ $) NIL (-2805 (|has| |#1| (-370)) (|has| |#1| (-850))))) (-3059 (($ $ $) NIL (-2805 (|has| |#1| (-370)) (|has| |#1| (-850))))) (-4378 (((-2 (|:| |preimage| (-644 |#1|)) (|:| |image| (-644 |#1|))) $) 58)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 133)) (-4033 (((-1119) $) NIL)) (-2233 (((-1101 |#1|) $) 141 (|has| |#1| (-370)))) (-1693 (((-112) $) 84)) (-2070 ((|#1| $ |#1|) 72)) (-4386 ((|#1| $ |#1|) 135)) (-3992 (((-771) $) 65)) (-3470 (($ (-644 (-644 |#1|))) 120)) (-2432 (((-971) $) 78)) (-2767 (($ (-644 |#1|)) 35)) (-2032 (($ $ $) NIL)) (-3755 (($ $ $) NIL)) (-4075 (($ (-644 (-644 |#1|))) 60)) (-4073 (($ (-644 (-644 |#1|))) 125)) (-2714 (($ (-644 |#1|)) 137)) (-2512 (((-862) $) 119) (($ (-644 (-644 |#1|))) 93) (($ (-644 |#1|)) 94)) (-3122 (((-112) $ $) NIL)) (-2495 (($) 27 T CONST)) (-2998 (((-112) $ $) NIL (-2805 (|has| |#1| (-370)) (|has| |#1| (-850))))) (-2974 (((-112) $ $) NIL (-2805 (|has| |#1| (-370)) (|has| |#1| (-850))))) (-2940 (((-112) $ $) 70)) (-2987 (((-112) $ $) NIL (-2805 (|has| |#1| (-370)) (|has| |#1| (-850))))) (-2962 (((-112) $ $) 92)) (-3061 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ $ $) 36)))
-(((-905 |#1|) (-13 (-903 |#1|) (-10 -8 (-15 -4378 ((-2 (|:| |preimage| (-644 |#1|)) (|:| |image| (-644 |#1|))) $)) (-15 -4075 ($ (-644 (-644 |#1|)))) (-15 -2512 ($ (-644 (-644 |#1|)))) (-15 -2512 ($ (-644 |#1|))) (-15 -4073 ($ (-644 (-644 |#1|)))) (-15 -3992 ((-771) $)) (-15 -1991 ((-1101 |#1|) $)) (-15 -2432 ((-971) $)) (-15 -2716 ((-771) $)) (-15 -1484 ((-771) $)) (-15 -2807 ((-566) $)) (-15 -1693 ((-112) $)) (-15 -2884 ((-112) $)) (-15 -3290 ((-644 $) (-644 $))) (IF (|has| |#1| (-370)) (-15 -2233 ((-1101 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-547)) (-15 -2714 ($ (-644 |#1|))) (IF (|has| |#1| (-370)) (-15 -2714 ($ (-644 |#1|))) |%noBranch|)))) (-1099)) (T -905))
-((-4378 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-644 *3)) (|:| |image| (-644 *3)))) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-4075 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-905 *3)))) (-4073 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3)))) (-3992 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-1991 (*1 *2 *1) (-12 (-5 *2 (-1101 *3)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-2432 (*1 *2 *1) (-12 (-5 *2 (-971)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-2716 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-1484 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-2807 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-1693 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-2884 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-3290 (*1 *2 *2) (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-2233 (*1 *2 *1) (-12 (-5 *2 (-1101 *3)) (-5 *1 (-905 *3)) (-4 *3 (-370)) (-4 *3 (-1099)))) (-2714 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-905 *3)))))
-(-13 (-903 |#1|) (-10 -8 (-15 -4378 ((-2 (|:| |preimage| (-644 |#1|)) (|:| |image| (-644 |#1|))) $)) (-15 -4075 ($ (-644 (-644 |#1|)))) (-15 -2512 ($ (-644 (-644 |#1|)))) (-15 -2512 ($ (-644 |#1|))) (-15 -4073 ($ (-644 (-644 |#1|)))) (-15 -3992 ((-771) $)) (-15 -1991 ((-1101 |#1|) $)) (-15 -2432 ((-971) $)) (-15 -2716 ((-771) $)) (-15 -1484 ((-771) $)) (-15 -2807 ((-566) $)) (-15 -1693 ((-112) $)) (-15 -2884 ((-112) $)) (-15 -3290 ((-644 $) (-644 $))) (IF (|has| |#1| (-370)) (-15 -2233 ((-1101 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-547)) (-15 -2714 ($ (-644 |#1|))) (IF (|has| |#1| (-370)) (-15 -2714 ($ (-644 |#1|))) |%noBranch|))))
-((-1864 (((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|)) 159)) (-3924 ((|#1|) 97)) (-2288 (((-420 (-1171 |#4|)) (-1171 |#4|)) 168)) (-3966 (((-420 (-1171 |#4|)) (-644 |#3|) (-1171 |#4|)) 84)) (-4215 (((-420 (-1171 |#4|)) (-1171 |#4|)) 178)) (-2823 (((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|) |#3|) 113)))
-(((-906 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1864 ((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|))) (-15 -4215 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -2288 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -3924 (|#1|)) (-15 -2823 ((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|) |#3|)) (-15 -3966 ((-420 (-1171 |#4|)) (-644 |#3|) (-1171 |#4|)))) (-909) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -906))
-((-3966 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *7)) (-4 *7 (-850)) (-4 *5 (-909)) (-4 *6 (-793)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-420 (-1171 *8))) (-5 *1 (-906 *5 *6 *7 *8)) (-5 *4 (-1171 *8)))) (-2823 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-644 (-1171 *7))) (-5 *3 (-1171 *7)) (-4 *7 (-949 *5 *6 *4)) (-4 *5 (-909)) (-4 *6 (-793)) (-4 *4 (-850)) (-5 *1 (-906 *5 *6 *4 *7)))) (-3924 (*1 *2) (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-909)) (-5 *1 (-906 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-2288 (*1 *2 *3) (-12 (-4 *4 (-909)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-4215 (*1 *2 *3) (-12 (-4 *4 (-909)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-1864 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 *7))) (-5 *3 (-1171 *7)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-909)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-906 *4 *5 *6 *7)))))
-(-10 -7 (-15 -1864 ((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|))) (-15 -4215 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -2288 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -3924 (|#1|)) (-15 -2823 ((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|) |#3|)) (-15 -3966 ((-420 (-1171 |#4|)) (-644 |#3|) (-1171 |#4|))))
-((-1864 (((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|)) 41)) (-3924 ((|#1|) 75)) (-2288 (((-420 (-1171 |#2|)) (-1171 |#2|)) 124)) (-3966 (((-420 (-1171 |#2|)) (-1171 |#2|)) 108)) (-4215 (((-420 (-1171 |#2|)) (-1171 |#2|)) 135)))
-(((-907 |#1| |#2|) (-10 -7 (-15 -1864 ((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|))) (-15 -4215 ((-420 (-1171 |#2|)) (-1171 |#2|))) (-15 -2288 ((-420 (-1171 |#2|)) (-1171 |#2|))) (-15 -3924 (|#1|)) (-15 -3966 ((-420 (-1171 |#2|)) (-1171 |#2|)))) (-909) (-1240 |#1|)) (T -907))
-((-3966 (*1 *2 *3) (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5))) (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))) (-3924 (*1 *2) (-12 (-4 *2 (-909)) (-5 *1 (-907 *2 *3)) (-4 *3 (-1240 *2)))) (-2288 (*1 *2 *3) (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5))) (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))) (-4215 (*1 *2 *3) (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5))) (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))) (-1864 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 *5))) (-5 *3 (-1171 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-909)) (-5 *1 (-907 *4 *5)))))
-(-10 -7 (-15 -1864 ((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|))) (-15 -4215 ((-420 (-1171 |#2|)) (-1171 |#2|))) (-15 -2288 ((-420 (-1171 |#2|)) (-1171 |#2|))) (-15 -3924 (|#1|)) (-15 -3966 ((-420 (-1171 |#2|)) (-1171 |#2|))))
-((-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 42)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 18)) (-3842 (((-3 $ "failed") $) 36)))
-(((-908 |#1|) (-10 -8 (-15 -3842 ((-3 |#1| "failed") |#1|)) (-15 -1348 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -4319 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|)))) (-909)) (T -908))
-NIL
-(-10 -8 (-15 -3842 ((-3 |#1| "failed") |#1|)) (-15 -1348 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -4319 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2055 (((-420 (-1171 $)) (-1171 $)) 66)) (-2857 (($ $) 57)) (-1370 (((-420 $) $) 58)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 63)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2635 (((-112) $) 59)) (-2741 (((-112) $) 35)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-1647 (((-420 (-1171 $)) (-1171 $)) 64)) (-4138 (((-420 (-1171 $)) (-1171 $)) 65)) (-2391 (((-420 $) $) 56)) (-2972 (((-3 $ "failed") $ $) 48)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 62 (|has| $ (-145)))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3842 (((-3 $ "failed") $) 61 (|has| $ (-145)))) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3009 (((-112) $ $) NIL)) (-3503 (((-644 (-644 (-771))) $) 165)) (-1303 (((-644 (-771)) (-905 |#1|) $) 193)) (-3875 (((-644 (-771)) (-905 |#1|) $) 194)) (-3751 (((-644 (-905 |#1|)) $) 154)) (-1618 (((-905 |#1|) $ (-566)) 159) (((-905 |#1|) $) 160)) (-3569 (($ (-644 (-905 |#1|))) 167)) (-3227 (((-771) $) 161)) (-3899 (((-1101 (-1101 |#1|)) $) 191)) (-1683 (((-1101 |#1|) $ |#1|) 182) (((-1101 (-1101 |#1|)) $ (-1101 |#1|)) 202) (((-1101 (-644 |#1|)) $ (-644 |#1|)) 205)) (-1587 (((-1101 |#1|) $) 157)) (-2183 (((-112) (-905 |#1|) $) 143)) (-2402 (((-1157) $) NIL)) (-3335 (((-1269) $) 147) (((-1269) $ (-566) (-566)) 206)) (-4056 (((-1119) $) NIL)) (-3099 (((-644 (-905 |#1|)) $) 148)) (-4393 (((-905 |#1|) $ (-771)) 155)) (-2108 (((-771) $) 162)) (-3780 (((-862) $) 179) (((-644 (-905 |#1|)) $) 28) (($ (-644 (-905 |#1|))) 166)) (-3801 (((-112) $ $) NIL)) (-3819 (((-644 |#1|) $) 164)) (-2950 (((-112) $ $) 199)) (-2999 (((-112) $ $) 197)) (-2972 (((-112) $ $) 196)))
+(((-904 |#1|) (-13 (-1099) (-10 -8 (-15 -3780 ((-644 (-905 |#1|)) $)) (-15 -3099 ((-644 (-905 |#1|)) $)) (-15 -4393 ((-905 |#1|) $ (-771))) (-15 -1618 ((-905 |#1|) $ (-566))) (-15 -1618 ((-905 |#1|) $)) (-15 -3227 ((-771) $)) (-15 -2108 ((-771) $)) (-15 -3819 ((-644 |#1|) $)) (-15 -3751 ((-644 (-905 |#1|)) $)) (-15 -3503 ((-644 (-644 (-771))) $)) (-15 -3780 ($ (-644 (-905 |#1|)))) (-15 -3569 ($ (-644 (-905 |#1|)))) (-15 -1683 ((-1101 |#1|) $ |#1|)) (-15 -3899 ((-1101 (-1101 |#1|)) $)) (-15 -1683 ((-1101 (-1101 |#1|)) $ (-1101 |#1|))) (-15 -1683 ((-1101 (-644 |#1|)) $ (-644 |#1|))) (-15 -2183 ((-112) (-905 |#1|) $)) (-15 -1303 ((-644 (-771)) (-905 |#1|) $)) (-15 -3875 ((-644 (-771)) (-905 |#1|) $)) (-15 -1587 ((-1101 |#1|) $)) (-15 -2972 ((-112) $ $)) (-15 -2999 ((-112) $ $)) (-15 -3335 ((-1269) $)) (-15 -3335 ((-1269) $ (-566) (-566))))) (-1099)) (T -904))
+((-3780 (*1 *2 *1) (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3099 (*1 *2 *1) (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-905 *4)) (-5 *1 (-904 *4)) (-4 *4 (-1099)))) (-1618 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-905 *4)) (-5 *1 (-904 *4)) (-4 *4 (-1099)))) (-1618 (*1 *2 *1) (-12 (-5 *2 (-905 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3227 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-2108 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3819 (*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3751 (*1 *2 *1) (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3503 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-771)))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-905 *3))) (-4 *3 (-1099)) (-5 *1 (-904 *3)))) (-3569 (*1 *1 *2) (-12 (-5 *2 (-644 (-905 *3))) (-4 *3 (-1099)) (-5 *1 (-904 *3)))) (-1683 (*1 *2 *1 *3) (-12 (-5 *2 (-1101 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3899 (*1 *2 *1) (-12 (-5 *2 (-1101 (-1101 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-1683 (*1 *2 *1 *3) (-12 (-4 *4 (-1099)) (-5 *2 (-1101 (-1101 *4))) (-5 *1 (-904 *4)) (-5 *3 (-1101 *4)))) (-1683 (*1 *2 *1 *3) (-12 (-4 *4 (-1099)) (-5 *2 (-1101 (-644 *4))) (-5 *1 (-904 *4)) (-5 *3 (-644 *4)))) (-2183 (*1 *2 *3 *1) (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-112)) (-5 *1 (-904 *4)))) (-1303 (*1 *2 *3 *1) (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-644 (-771))) (-5 *1 (-904 *4)))) (-3875 (*1 *2 *3 *1) (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-644 (-771))) (-5 *1 (-904 *4)))) (-1587 (*1 *2 *1) (-12 (-5 *2 (-1101 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-2972 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-2999 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3335 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))) (-3335 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-904 *4)) (-4 *4 (-1099)))))
+(-13 (-1099) (-10 -8 (-15 -3780 ((-644 (-905 |#1|)) $)) (-15 -3099 ((-644 (-905 |#1|)) $)) (-15 -4393 ((-905 |#1|) $ (-771))) (-15 -1618 ((-905 |#1|) $ (-566))) (-15 -1618 ((-905 |#1|) $)) (-15 -3227 ((-771) $)) (-15 -2108 ((-771) $)) (-15 -3819 ((-644 |#1|) $)) (-15 -3751 ((-644 (-905 |#1|)) $)) (-15 -3503 ((-644 (-644 (-771))) $)) (-15 -3780 ($ (-644 (-905 |#1|)))) (-15 -3569 ($ (-644 (-905 |#1|)))) (-15 -1683 ((-1101 |#1|) $ |#1|)) (-15 -3899 ((-1101 (-1101 |#1|)) $)) (-15 -1683 ((-1101 (-1101 |#1|)) $ (-1101 |#1|))) (-15 -1683 ((-1101 (-644 |#1|)) $ (-644 |#1|))) (-15 -2183 ((-112) (-905 |#1|) $)) (-15 -1303 ((-644 (-771)) (-905 |#1|) $)) (-15 -3875 ((-644 (-771)) (-905 |#1|) $)) (-15 -1587 ((-1101 |#1|) $)) (-15 -2972 ((-112) $ $)) (-15 -2999 ((-112) $ $)) (-15 -3335 ((-1269) $)) (-15 -3335 ((-1269) $ (-566) (-566)))))
+((-3009 (((-112) $ $) NIL)) (-1568 (((-644 $) (-644 $)) 105)) (-2899 (((-566) $) 86)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL)) (-3227 (((-771) $) 83)) (-1683 (((-1101 |#1|) $ |#1|) 74)) (-3466 (((-112) $) NIL)) (-2469 (((-112) $) 90)) (-3183 (((-771) $) 87)) (-1587 (((-1101 |#1|) $) 63)) (-1945 (($ $ $) NIL (-2805 (|has| |#1| (-370)) (|has| |#1| (-850))))) (-2709 (($ $ $) NIL (-2805 (|has| |#1| (-370)) (|has| |#1| (-850))))) (-1566 (((-2 (|:| |preimage| (-644 |#1|)) (|:| |image| (-644 |#1|))) $) 58)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 133)) (-4056 (((-1119) $) NIL)) (-2147 (((-1101 |#1|) $) 141 (|has| |#1| (-370)))) (-1630 (((-112) $) 84)) (-2095 ((|#1| $ |#1|) 72)) (-4393 ((|#1| $ |#1|) 135)) (-2108 (((-771) $) 65)) (-3885 (($ (-644 (-644 |#1|))) 120)) (-3505 (((-971) $) 78)) (-2510 (($ (-644 |#1|)) 35)) (-3850 (($ $ $) NIL)) (-1783 (($ $ $) NIL)) (-1633 (($ (-644 (-644 |#1|))) 60)) (-1607 (($ (-644 (-644 |#1|))) 125)) (-3206 (($ (-644 |#1|)) 137)) (-3780 (((-862) $) 119) (($ (-644 (-644 |#1|))) 93) (($ (-644 |#1|)) 94)) (-3801 (((-112) $ $) NIL)) (-4333 (($) 27 T CONST)) (-3010 (((-112) $ $) NIL (-2805 (|has| |#1| (-370)) (|has| |#1| (-850))))) (-2984 (((-112) $ $) NIL (-2805 (|has| |#1| (-370)) (|has| |#1| (-850))))) (-2950 (((-112) $ $) 70)) (-2999 (((-112) $ $) NIL (-2805 (|has| |#1| (-370)) (|has| |#1| (-850))))) (-2972 (((-112) $ $) 92)) (-3062 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ $ $) 36)))
+(((-905 |#1|) (-13 (-903 |#1|) (-10 -8 (-15 -1566 ((-2 (|:| |preimage| (-644 |#1|)) (|:| |image| (-644 |#1|))) $)) (-15 -1633 ($ (-644 (-644 |#1|)))) (-15 -3780 ($ (-644 (-644 |#1|)))) (-15 -3780 ($ (-644 |#1|))) (-15 -1607 ($ (-644 (-644 |#1|)))) (-15 -2108 ((-771) $)) (-15 -1587 ((-1101 |#1|) $)) (-15 -3505 ((-971) $)) (-15 -3227 ((-771) $)) (-15 -3183 ((-771) $)) (-15 -2899 ((-566) $)) (-15 -1630 ((-112) $)) (-15 -2469 ((-112) $)) (-15 -1568 ((-644 $) (-644 $))) (IF (|has| |#1| (-370)) (-15 -2147 ((-1101 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-547)) (-15 -3206 ($ (-644 |#1|))) (IF (|has| |#1| (-370)) (-15 -3206 ($ (-644 |#1|))) |%noBranch|)))) (-1099)) (T -905))
+((-1566 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-644 *3)) (|:| |image| (-644 *3)))) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-1633 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-905 *3)))) (-1607 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3)))) (-2108 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-1587 (*1 *2 *1) (-12 (-5 *2 (-1101 *3)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-3505 (*1 *2 *1) (-12 (-5 *2 (-971)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-3227 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-3183 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-2899 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-1630 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-2469 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-1568 (*1 *2 *2) (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-905 *3)) (-4 *3 (-1099)))) (-2147 (*1 *2 *1) (-12 (-5 *2 (-1101 *3)) (-5 *1 (-905 *3)) (-4 *3 (-370)) (-4 *3 (-1099)))) (-3206 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-905 *3)))))
+(-13 (-903 |#1|) (-10 -8 (-15 -1566 ((-2 (|:| |preimage| (-644 |#1|)) (|:| |image| (-644 |#1|))) $)) (-15 -1633 ($ (-644 (-644 |#1|)))) (-15 -3780 ($ (-644 (-644 |#1|)))) (-15 -3780 ($ (-644 |#1|))) (-15 -1607 ($ (-644 (-644 |#1|)))) (-15 -2108 ((-771) $)) (-15 -1587 ((-1101 |#1|) $)) (-15 -3505 ((-971) $)) (-15 -3227 ((-771) $)) (-15 -3183 ((-771) $)) (-15 -2899 ((-566) $)) (-15 -1630 ((-112) $)) (-15 -2469 ((-112) $)) (-15 -1568 ((-644 $) (-644 $))) (IF (|has| |#1| (-370)) (-15 -2147 ((-1101 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-547)) (-15 -3206 ($ (-644 |#1|))) (IF (|has| |#1| (-370)) (-15 -3206 ($ (-644 |#1|))) |%noBranch|))))
+((-2752 (((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|)) 159)) (-2723 ((|#1|) 97)) (-1456 (((-420 (-1171 |#4|)) (-1171 |#4|)) 168)) (-3081 (((-420 (-1171 |#4|)) (-644 |#3|) (-1171 |#4|)) 84)) (-3669 (((-420 (-1171 |#4|)) (-1171 |#4|)) 178)) (-3056 (((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|) |#3|) 113)))
+(((-906 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2752 ((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|))) (-15 -3669 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -1456 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -2723 (|#1|)) (-15 -3056 ((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|) |#3|)) (-15 -3081 ((-420 (-1171 |#4|)) (-644 |#3|) (-1171 |#4|)))) (-909) (-793) (-850) (-949 |#1| |#2| |#3|)) (T -906))
+((-3081 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *7)) (-4 *7 (-850)) (-4 *5 (-909)) (-4 *6 (-793)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-420 (-1171 *8))) (-5 *1 (-906 *5 *6 *7 *8)) (-5 *4 (-1171 *8)))) (-3056 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *2 (-644 (-1171 *7))) (-5 *3 (-1171 *7)) (-4 *7 (-949 *5 *6 *4)) (-4 *5 (-909)) (-4 *6 (-793)) (-4 *4 (-850)) (-5 *1 (-906 *5 *6 *4 *7)))) (-2723 (*1 *2) (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-909)) (-5 *1 (-906 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))) (-1456 (*1 *2 *3) (-12 (-4 *4 (-909)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-3669 (*1 *2 *3) (-12 (-4 *4 (-909)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-420 (-1171 *7))) (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-1171 *7)))) (-2752 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 *7))) (-5 *3 (-1171 *7)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-909)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-906 *4 *5 *6 *7)))))
+(-10 -7 (-15 -2752 ((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|))) (-15 -3669 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -1456 ((-420 (-1171 |#4|)) (-1171 |#4|))) (-15 -2723 (|#1|)) (-15 -3056 ((-3 (-644 (-1171 |#4|)) "failed") (-644 (-1171 |#4|)) (-1171 |#4|) |#3|)) (-15 -3081 ((-420 (-1171 |#4|)) (-644 |#3|) (-1171 |#4|))))
+((-2752 (((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|)) 41)) (-2723 ((|#1|) 75)) (-1456 (((-420 (-1171 |#2|)) (-1171 |#2|)) 124)) (-3081 (((-420 (-1171 |#2|)) (-1171 |#2|)) 108)) (-3669 (((-420 (-1171 |#2|)) (-1171 |#2|)) 135)))
+(((-907 |#1| |#2|) (-10 -7 (-15 -2752 ((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|))) (-15 -3669 ((-420 (-1171 |#2|)) (-1171 |#2|))) (-15 -1456 ((-420 (-1171 |#2|)) (-1171 |#2|))) (-15 -2723 (|#1|)) (-15 -3081 ((-420 (-1171 |#2|)) (-1171 |#2|)))) (-909) (-1240 |#1|)) (T -907))
+((-3081 (*1 *2 *3) (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5))) (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))) (-2723 (*1 *2) (-12 (-4 *2 (-909)) (-5 *1 (-907 *2 *3)) (-4 *3 (-1240 *2)))) (-1456 (*1 *2 *3) (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5))) (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))) (-3669 (*1 *2 *3) (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5))) (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))) (-2752 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 *5))) (-5 *3 (-1171 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-909)) (-5 *1 (-907 *4 *5)))))
+(-10 -7 (-15 -2752 ((-3 (-644 (-1171 |#2|)) "failed") (-644 (-1171 |#2|)) (-1171 |#2|))) (-15 -3669 ((-420 (-1171 |#2|)) (-1171 |#2|))) (-15 -1456 ((-420 (-1171 |#2|)) (-1171 |#2|))) (-15 -2723 (|#1|)) (-15 -3081 ((-420 (-1171 |#2|)) (-1171 |#2|))))
+((-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 42)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 18)) (-3226 (((-3 $ "failed") $) 36)))
+(((-908 |#1|) (-10 -8 (-15 -3226 ((-3 |#1| "failed") |#1|)) (-15 -3354 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -2221 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|)))) (-909)) (T -908))
+NIL
+(-10 -8 (-15 -3226 ((-3 |#1| "failed") |#1|)) (-15 -3354 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -2221 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-4077 (((-420 (-1171 $)) (-1171 $)) 66)) (-2179 (($ $) 57)) (-3271 (((-420 $) $) 58)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 63)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-1784 (((-112) $) 59)) (-3466 (((-112) $) 35)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-4255 (((-420 (-1171 $)) (-1171 $)) 64)) (-4137 (((-420 (-1171 $)) (-1171 $)) 65)) (-2473 (((-420 $) $) 56)) (-2997 (((-3 $ "failed") $ $) 48)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 62 (|has| $ (-145)))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3226 (((-3 $ "failed") $) 61 (|has| $ (-145)))) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-909) (-140)) (T -909))
-((-4319 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-909)))) (-2055 (*1 *2 *3) (-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))) (-4138 (*1 *2 *3) (-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))) (-1647 (*1 *2 *3) (-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))) (-1348 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 *1))) (-5 *3 (-1171 *1)) (-4 *1 (-909)))) (-3273 (*1 *2 *3) (|partial| -12 (-5 *3 (-689 *1)) (-4 *1 (-145)) (-4 *1 (-909)) (-5 *2 (-1264 *1)))) (-3842 (*1 *1 *1) (|partial| -12 (-4 *1 (-145)) (-4 *1 (-909)))))
-(-13 (-1218) (-10 -8 (-15 -2055 ((-420 (-1171 $)) (-1171 $))) (-15 -4138 ((-420 (-1171 $)) (-1171 $))) (-15 -1647 ((-420 (-1171 $)) (-1171 $))) (-15 -4319 ((-1171 $) (-1171 $) (-1171 $))) (-15 -1348 ((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $))) (IF (|has| $ (-145)) (PROGN (-15 -3273 ((-3 (-1264 $) "failed") (-689 $))) (-15 -3842 ((-3 $ "failed") $))) |%noBranch|)))
+((-2221 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-909)))) (-4077 (*1 *2 *3) (-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))) (-4137 (*1 *2 *3) (-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))) (-4255 (*1 *2 *3) (-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))) (-3354 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-644 (-1171 *1))) (-5 *3 (-1171 *1)) (-4 *1 (-909)))) (-2664 (*1 *2 *3) (|partial| -12 (-5 *3 (-689 *1)) (-4 *1 (-145)) (-4 *1 (-909)) (-5 *2 (-1264 *1)))) (-3226 (*1 *1 *1) (|partial| -12 (-4 *1 (-145)) (-4 *1 (-909)))))
+(-13 (-1218) (-10 -8 (-15 -4077 ((-420 (-1171 $)) (-1171 $))) (-15 -4137 ((-420 (-1171 $)) (-1171 $))) (-15 -4255 ((-420 (-1171 $)) (-1171 $))) (-15 -2221 ((-1171 $) (-1171 $) (-1171 $))) (-15 -3354 ((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $))) (IF (|has| $ (-145)) (PROGN (-15 -2664 ((-3 (-1264 $) "failed") (-689 $))) (-15 -3226 ((-3 $ "failed") $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-291) . T) ((-454) . T) ((-558) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-717 $) . T) ((-726) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-3417 (((-112) $) NIL)) (-3258 (((-771)) NIL)) (-3817 (($ $ (-921)) NIL (|has| $ (-370))) (($ $) NIL)) (-4324 (((-1187 (-921) (-771)) (-566)) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 $ "failed") $) NIL)) (-1756 (($ $) NIL)) (-1547 (($ (-1264 $)) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-3092 (($) NIL)) (-3449 (((-112) $) NIL)) (-3626 (($ $) NIL) (($ $ (-771)) NIL)) (-2635 (((-112) $) NIL)) (-2716 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-2741 (((-112) $) NIL)) (-2061 (($) NIL (|has| $ (-370)))) (-3754 (((-112) $) NIL (|has| $ (-370)))) (-1559 (($ $ (-921)) NIL (|has| $ (-370))) (($ $) NIL)) (-2546 (((-3 $ "failed") $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3929 (((-1171 $) $ (-921)) NIL (|has| $ (-370))) (((-1171 $) $) NIL)) (-3712 (((-921) $) NIL)) (-1907 (((-1171 $) $) NIL (|has| $ (-370)))) (-3866 (((-3 (-1171 $) "failed") $ $) NIL (|has| $ (-370))) (((-1171 $) $) NIL (|has| $ (-370)))) (-1900 (($ $ (-1171 $)) NIL (|has| $ (-370)))) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL T CONST)) (-2168 (($ (-921)) NIL)) (-3751 (((-112) $) NIL)) (-4033 (((-1119) $) NIL)) (-4067 (($) NIL (|has| $ (-370)))) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL)) (-2391 (((-420 $) $) NIL)) (-2003 (((-921)) NIL) (((-833 (-921))) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3379 (((-3 (-771) "failed") $ $) NIL) (((-771) $) NIL)) (-1909 (((-134)) NIL)) (-2862 (($ $ (-771)) NIL) (($ $) NIL)) (-3992 (((-921) $) NIL) (((-833 (-921)) $) NIL)) (-2127 (((-1171 $)) NIL)) (-1536 (($) NIL)) (-2873 (($) NIL (|has| $ (-370)))) (-2770 (((-689 $) (-1264 $)) NIL) (((-1264 $) $) NIL)) (-3134 (((-566) $) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL)) (-3842 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $) (-921)) NIL) (((-1264 $)) NIL)) (-1634 (((-112) $ $) NIL)) (-1369 (((-112) $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2752 (($ $ (-771)) NIL (|has| $ (-370))) (($ $) NIL (|has| $ (-370)))) (-2840 (($ $ (-771)) NIL) (($ $) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-1478 (((-112) $) NIL)) (-2541 (((-771)) NIL)) (-3834 (($ $ (-921)) NIL (|has| $ (-370))) (($ $) NIL)) (-2277 (((-1187 (-921) (-771)) (-566)) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 $ "failed") $) NIL)) (-1867 (($ $) NIL)) (-2613 (($ (-1264 $)) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1676 (($) NIL)) (-3698 (((-112) $) NIL)) (-2901 (($ $) NIL) (($ $ (-771)) NIL)) (-1784 (((-112) $) NIL)) (-3227 (((-833 (-921)) $) NIL) (((-921) $) NIL)) (-3466 (((-112) $) NIL)) (-4138 (($) NIL (|has| $ (-370)))) (-1771 (((-112) $) NIL (|has| $ (-370)))) (-2719 (($ $ (-921)) NIL (|has| $ (-370))) (($ $) NIL)) (-2133 (((-3 $ "failed") $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2750 (((-1171 $) $ (-921)) NIL (|has| $ (-370))) (((-1171 $) $) NIL)) (-1299 (((-921) $) NIL)) (-1988 (((-1171 $) $) NIL (|has| $ (-370)))) (-3433 (((-3 (-1171 $) "failed") $ $) NIL (|has| $ (-370))) (((-1171 $) $) NIL (|has| $ (-370)))) (-1923 (($ $ (-1171 $)) NIL (|has| $ (-370)))) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL T CONST)) (-2208 (($ (-921)) NIL)) (-1737 (((-112) $) NIL)) (-4056 (((-1119) $) NIL)) (-4152 (($) NIL (|has| $ (-370)))) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL)) (-2473 (((-420 $) $) NIL)) (-1723 (((-921)) NIL) (((-833 (-921))) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2347 (((-3 (-771) "failed") $ $) NIL) (((-771) $) NIL)) (-2012 (((-134)) NIL)) (-2578 (($ $ (-771)) NIL) (($ $) NIL)) (-2108 (((-921) $) NIL) (((-833 (-921)) $) NIL)) (-3601 (((-1171 $)) NIL)) (-2507 (($) NIL)) (-2348 (($) NIL (|has| $ (-370)))) (-2543 (((-689 $) (-1264 $)) NIL) (((-1264 $) $) NIL)) (-3204 (((-566) $) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL)) (-3226 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $) (-921)) NIL) (((-1264 $)) NIL)) (-2278 (((-112) $ $) NIL)) (-3258 (((-112) $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-3583 (($ $ (-771)) NIL (|has| $ (-370))) (($ $) NIL (|has| $ (-370)))) (-2876 (($ $ (-771)) NIL) (($ $) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
(((-910 |#1|) (-13 (-351) (-330 $) (-614 (-566))) (-921)) (T -910))
NIL
(-13 (-351) (-330 $) (-614 (-566)))
-((-1455 (((-3 (-2 (|:| -2716 (-771)) (|:| -3277 |#5|)) "failed") (-338 |#2| |#3| |#4| |#5|)) 77)) (-2331 (((-112) (-338 |#2| |#3| |#4| |#5|)) 17)) (-2716 (((-3 (-771) "failed") (-338 |#2| |#3| |#4| |#5|)) 15)))
-(((-911 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2716 ((-3 (-771) "failed") (-338 |#2| |#3| |#4| |#5|))) (-15 -2331 ((-112) (-338 |#2| |#3| |#4| |#5|))) (-15 -1455 ((-3 (-2 (|:| -2716 (-771)) (|:| -3277 |#5|)) "failed") (-338 |#2| |#3| |#4| |#5|)))) (-13 (-558) (-1038 (-566))) (-432 |#1|) (-1240 |#2|) (-1240 (-409 |#3|)) (-344 |#2| |#3| |#4|)) (T -911))
-((-1455 (*1 *2 *3) (|partial| -12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-4 *8 (-344 *5 *6 *7)) (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-2 (|:| -2716 (-771)) (|:| -3277 *8))) (-5 *1 (-911 *4 *5 *6 *7 *8)))) (-2331 (*1 *2 *3) (-12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-4 *8 (-344 *5 *6 *7)) (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-112)) (-5 *1 (-911 *4 *5 *6 *7 *8)))) (-2716 (*1 *2 *3) (|partial| -12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-4 *8 (-344 *5 *6 *7)) (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-771)) (-5 *1 (-911 *4 *5 *6 *7 *8)))))
-(-10 -7 (-15 -2716 ((-3 (-771) "failed") (-338 |#2| |#3| |#4| |#5|))) (-15 -2331 ((-112) (-338 |#2| |#3| |#4| |#5|))) (-15 -1455 ((-3 (-2 (|:| -2716 (-771)) (|:| -3277 |#5|)) "failed") (-338 |#2| |#3| |#4| |#5|))))
-((-1455 (((-3 (-2 (|:| -2716 (-771)) (|:| -3277 |#3|)) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|)) 64)) (-2331 (((-112) (-338 (-409 (-566)) |#1| |#2| |#3|)) 16)) (-2716 (((-3 (-771) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|)) 14)))
-(((-912 |#1| |#2| |#3|) (-10 -7 (-15 -2716 ((-3 (-771) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|))) (-15 -2331 ((-112) (-338 (-409 (-566)) |#1| |#2| |#3|))) (-15 -1455 ((-3 (-2 (|:| -2716 (-771)) (|:| -3277 |#3|)) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|)))) (-1240 (-409 (-566))) (-1240 (-409 |#1|)) (-344 (-409 (-566)) |#1| |#2|)) (T -912))
-((-1455 (*1 *2 *3) (|partial| -12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6)) (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 (-409 (-566)) *4 *5)) (-5 *2 (-2 (|:| -2716 (-771)) (|:| -3277 *6))) (-5 *1 (-912 *4 *5 *6)))) (-2331 (*1 *2 *3) (-12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6)) (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 (-409 (-566)) *4 *5)) (-5 *2 (-112)) (-5 *1 (-912 *4 *5 *6)))) (-2716 (*1 *2 *3) (|partial| -12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6)) (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 (-409 (-566)) *4 *5)) (-5 *2 (-771)) (-5 *1 (-912 *4 *5 *6)))))
-(-10 -7 (-15 -2716 ((-3 (-771) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|))) (-15 -2331 ((-112) (-338 (-409 (-566)) |#1| |#2| |#3|))) (-15 -1455 ((-3 (-2 (|:| -2716 (-771)) (|:| -3277 |#3|)) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|))))
-((-2802 ((|#2| |#2|) 26)) (-2291 (((-566) (-644 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))))) 15)) (-1705 (((-921) (-566)) 38)) (-1659 (((-566) |#2|) 45)) (-1741 (((-566) |#2|) 21) (((-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))) |#1|) 20)))
-(((-913 |#1| |#2|) (-10 -7 (-15 -1705 ((-921) (-566))) (-15 -1741 ((-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))) |#1|)) (-15 -1741 ((-566) |#2|)) (-15 -2291 ((-566) (-644 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566)))))) (-15 -1659 ((-566) |#2|)) (-15 -2802 (|#2| |#2|))) (-1240 (-409 (-566))) (-1240 (-409 |#1|))) (T -913))
-((-2802 (*1 *2 *2) (-12 (-4 *3 (-1240 (-409 (-566)))) (-5 *1 (-913 *3 *2)) (-4 *2 (-1240 (-409 *3))))) (-1659 (*1 *2 *3) (-12 (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *3)) (-4 *3 (-1240 (-409 *4))))) (-2291 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))))) (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *5)) (-4 *5 (-1240 (-409 *4))))) (-1741 (*1 *2 *3) (-12 (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *3)) (-4 *3 (-1240 (-409 *4))))) (-1741 (*1 *2 *3) (-12 (-4 *3 (-1240 (-409 (-566)))) (-5 *2 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566)))) (-5 *1 (-913 *3 *4)) (-4 *4 (-1240 (-409 *3))))) (-1705 (*1 *2 *3) (-12 (-5 *3 (-566)) (-4 *4 (-1240 (-409 *3))) (-5 *2 (-921)) (-5 *1 (-913 *4 *5)) (-4 *5 (-1240 (-409 *4))))))
-(-10 -7 (-15 -1705 ((-921) (-566))) (-15 -1741 ((-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))) |#1|)) (-15 -1741 ((-566) |#2|)) (-15 -2291 ((-566) (-644 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566)))))) (-15 -1659 ((-566) |#2|)) (-15 -2802 (|#2| |#2|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2452 ((|#1| $) 100)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-2926 (($ $ $) NIL)) (-1579 (((-3 $ "failed") $) 94)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-2508 (($ |#1| (-420 |#1|)) 92)) (-2785 (((-1171 |#1|) |#1| |#1|) 53)) (-2808 (($ $) 61)) (-2741 (((-112) $) NIL)) (-3594 (((-566) $) 97)) (-3465 (($ $ (-566)) 99)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1947 ((|#1| $) 96)) (-1668 (((-420 |#1|) $) 95)) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) 93)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3680 (($ $) 50)) (-2512 (((-862) $) 124) (($ (-566)) 73) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 41) (((-409 |#1|) $) 78) (($ (-409 (-420 |#1|))) 86)) (-3795 (((-771)) 71 T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-2485 (($) 26 T CONST)) (-2495 (($) 15 T CONST)) (-2940 (((-112) $ $) 87)) (-3061 (($ $ $) NIL)) (-3047 (($ $) 108) (($ $ $) NIL)) (-3034 (($ $ $) 49)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 110) (($ $ $) 48) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ |#1| $) 109) (($ $ |#1|) NIL)))
-(((-914 |#1|) (-13 (-365) (-38 |#1|) (-10 -8 (-15 -2512 ((-409 |#1|) $)) (-15 -2512 ($ (-409 (-420 |#1|)))) (-15 -3680 ($ $)) (-15 -1668 ((-420 |#1|) $)) (-15 -1947 (|#1| $)) (-15 -3465 ($ $ (-566))) (-15 -3594 ((-566) $)) (-15 -2785 ((-1171 |#1|) |#1| |#1|)) (-15 -2808 ($ $)) (-15 -2508 ($ |#1| (-420 |#1|))) (-15 -2452 (|#1| $)))) (-308)) (T -914))
-((-2512 (*1 *2 *1) (-12 (-5 *2 (-409 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-409 (-420 *3))) (-4 *3 (-308)) (-5 *1 (-914 *3)))) (-3680 (*1 *1 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))) (-1668 (*1 *2 *1) (-12 (-5 *2 (-420 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308)))) (-1947 (*1 *2 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))) (-3465 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-914 *3)) (-4 *3 (-308)))) (-3594 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-914 *3)) (-4 *3 (-308)))) (-2785 (*1 *2 *3 *3) (-12 (-5 *2 (-1171 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308)))) (-2808 (*1 *1 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))) (-2508 (*1 *1 *2 *3) (-12 (-5 *3 (-420 *2)) (-4 *2 (-308)) (-5 *1 (-914 *2)))) (-2452 (*1 *2 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))))
-(-13 (-365) (-38 |#1|) (-10 -8 (-15 -2512 ((-409 |#1|) $)) (-15 -2512 ($ (-409 (-420 |#1|)))) (-15 -3680 ($ $)) (-15 -1668 ((-420 |#1|) $)) (-15 -1947 (|#1| $)) (-15 -3465 ($ $ (-566))) (-15 -3594 ((-566) $)) (-15 -2785 ((-1171 |#1|) |#1| |#1|)) (-15 -2808 ($ $)) (-15 -2508 ($ |#1| (-420 |#1|))) (-15 -2452 (|#1| $))))
-((-2508 (((-52) (-952 |#1|) (-420 (-952 |#1|)) (-1175)) 17) (((-52) (-409 (-952 |#1|)) (-1175)) 18)))
-(((-915 |#1|) (-10 -7 (-15 -2508 ((-52) (-409 (-952 |#1|)) (-1175))) (-15 -2508 ((-52) (-952 |#1|) (-420 (-952 |#1|)) (-1175)))) (-13 (-308) (-147))) (T -915))
-((-2508 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-420 (-952 *6))) (-5 *5 (-1175)) (-5 *3 (-952 *6)) (-4 *6 (-13 (-308) (-147))) (-5 *2 (-52)) (-5 *1 (-915 *6)))) (-2508 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-52)) (-5 *1 (-915 *5)))))
-(-10 -7 (-15 -2508 ((-52) (-409 (-952 |#1|)) (-1175))) (-15 -2508 ((-52) (-952 |#1|) (-420 (-952 |#1|)) (-1175))))
-((-1811 ((|#4| (-644 |#4|)) 149) (((-1171 |#4|) (-1171 |#4|) (-1171 |#4|)) 86) ((|#4| |#4| |#4|) 148)) (-2222 (((-1171 |#4|) (-644 (-1171 |#4|))) 142) (((-1171 |#4|) (-1171 |#4|) (-1171 |#4|)) 63) ((|#4| (-644 |#4|)) 71) ((|#4| |#4| |#4|) 109)))
-(((-916 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2222 (|#4| |#4| |#4|)) (-15 -2222 (|#4| (-644 |#4|))) (-15 -2222 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -2222 ((-1171 |#4|) (-644 (-1171 |#4|)))) (-15 -1811 (|#4| |#4| |#4|)) (-15 -1811 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -1811 (|#4| (-644 |#4|)))) (-793) (-850) (-308) (-949 |#3| |#1| |#2|)) (T -916))
-((-1811 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *6 *4 *5)) (-5 *1 (-916 *4 *5 *6 *2)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)))) (-1811 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *6)))) (-1811 (*1 *2 *2 *2) (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *2)) (-4 *2 (-949 *5 *3 *4)))) (-2222 (*1 *2 *3) (-12 (-5 *3 (-644 (-1171 *7))) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-1171 *7)) (-5 *1 (-916 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))) (-2222 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *6)))) (-2222 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *6 *4 *5)) (-5 *1 (-916 *4 *5 *6 *2)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)))) (-2222 (*1 *2 *2 *2) (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *2)) (-4 *2 (-949 *5 *3 *4)))))
-(-10 -7 (-15 -2222 (|#4| |#4| |#4|)) (-15 -2222 (|#4| (-644 |#4|))) (-15 -2222 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -2222 ((-1171 |#4|) (-644 (-1171 |#4|)))) (-15 -1811 (|#4| |#4| |#4|)) (-15 -1811 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -1811 (|#4| (-644 |#4|))))
-((-2149 (((-904 (-566)) (-971)) 38) (((-904 (-566)) (-644 (-566))) 35)) (-3777 (((-904 (-566)) (-644 (-566))) 70) (((-904 (-566)) (-921)) 71)) (-2091 (((-904 (-566))) 39)) (-2596 (((-904 (-566))) 55) (((-904 (-566)) (-644 (-566))) 54)) (-3260 (((-904 (-566))) 53) (((-904 (-566)) (-644 (-566))) 52)) (-3114 (((-904 (-566))) 51) (((-904 (-566)) (-644 (-566))) 50)) (-4120 (((-904 (-566))) 49) (((-904 (-566)) (-644 (-566))) 48)) (-2141 (((-904 (-566))) 47) (((-904 (-566)) (-644 (-566))) 46)) (-2107 (((-904 (-566))) 57) (((-904 (-566)) (-644 (-566))) 56)) (-3826 (((-904 (-566)) (-644 (-566))) 75) (((-904 (-566)) (-921)) 77)) (-4369 (((-904 (-566)) (-644 (-566))) 72) (((-904 (-566)) (-921)) 73)) (-2564 (((-904 (-566)) (-644 (-566))) 68) (((-904 (-566)) (-921)) 69)) (-2500 (((-904 (-566)) (-644 (-921))) 60)))
-(((-917) (-10 -7 (-15 -3777 ((-904 (-566)) (-921))) (-15 -3777 ((-904 (-566)) (-644 (-566)))) (-15 -2564 ((-904 (-566)) (-921))) (-15 -2564 ((-904 (-566)) (-644 (-566)))) (-15 -2500 ((-904 (-566)) (-644 (-921)))) (-15 -4369 ((-904 (-566)) (-921))) (-15 -4369 ((-904 (-566)) (-644 (-566)))) (-15 -3826 ((-904 (-566)) (-921))) (-15 -3826 ((-904 (-566)) (-644 (-566)))) (-15 -2141 ((-904 (-566)) (-644 (-566)))) (-15 -2141 ((-904 (-566)))) (-15 -4120 ((-904 (-566)) (-644 (-566)))) (-15 -4120 ((-904 (-566)))) (-15 -3114 ((-904 (-566)) (-644 (-566)))) (-15 -3114 ((-904 (-566)))) (-15 -3260 ((-904 (-566)) (-644 (-566)))) (-15 -3260 ((-904 (-566)))) (-15 -2596 ((-904 (-566)) (-644 (-566)))) (-15 -2596 ((-904 (-566)))) (-15 -2107 ((-904 (-566)) (-644 (-566)))) (-15 -2107 ((-904 (-566)))) (-15 -2091 ((-904 (-566)))) (-15 -2149 ((-904 (-566)) (-644 (-566)))) (-15 -2149 ((-904 (-566)) (-971))))) (T -917))
-((-2149 (*1 *2 *3) (-12 (-5 *3 (-971)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2149 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2091 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2107 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2107 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2596 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2596 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3260 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3260 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3114 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3114 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-4120 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-4120 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2141 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2141 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3826 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3826 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-4369 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-4369 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2500 (*1 *2 *3) (-12 (-5 *3 (-644 (-921))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2564 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2564 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3777 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3777 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(-10 -7 (-15 -3777 ((-904 (-566)) (-921))) (-15 -3777 ((-904 (-566)) (-644 (-566)))) (-15 -2564 ((-904 (-566)) (-921))) (-15 -2564 ((-904 (-566)) (-644 (-566)))) (-15 -2500 ((-904 (-566)) (-644 (-921)))) (-15 -4369 ((-904 (-566)) (-921))) (-15 -4369 ((-904 (-566)) (-644 (-566)))) (-15 -3826 ((-904 (-566)) (-921))) (-15 -3826 ((-904 (-566)) (-644 (-566)))) (-15 -2141 ((-904 (-566)) (-644 (-566)))) (-15 -2141 ((-904 (-566)))) (-15 -4120 ((-904 (-566)) (-644 (-566)))) (-15 -4120 ((-904 (-566)))) (-15 -3114 ((-904 (-566)) (-644 (-566)))) (-15 -3114 ((-904 (-566)))) (-15 -3260 ((-904 (-566)) (-644 (-566)))) (-15 -3260 ((-904 (-566)))) (-15 -2596 ((-904 (-566)) (-644 (-566)))) (-15 -2596 ((-904 (-566)))) (-15 -2107 ((-904 (-566)) (-644 (-566)))) (-15 -2107 ((-904 (-566)))) (-15 -2091 ((-904 (-566)))) (-15 -2149 ((-904 (-566)) (-644 (-566)))) (-15 -2149 ((-904 (-566)) (-971))))
-((-2264 (((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175))) 14)) (-2577 (((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175))) 13)))
-(((-918 |#1|) (-10 -7 (-15 -2577 ((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -2264 ((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175))))) (-454)) (T -918))
-((-2264 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-952 *4))) (-5 *3 (-644 (-1175))) (-4 *4 (-454)) (-5 *1 (-918 *4)))) (-2577 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-952 *4))) (-5 *3 (-644 (-1175))) (-4 *4 (-454)) (-5 *1 (-918 *4)))))
-(-10 -7 (-15 -2577 ((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -2264 ((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)))))
-((-2512 (((-317 |#1|) (-479)) 16)))
-(((-919 |#1|) (-10 -7 (-15 -2512 ((-317 |#1|) (-479)))) (-558)) (T -919))
-((-2512 (*1 *2 *3) (-12 (-5 *3 (-479)) (-5 *2 (-317 *4)) (-5 *1 (-919 *4)) (-4 *4 (-558)))))
-(-10 -7 (-15 -2512 ((-317 |#1|) (-479))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-2741 (((-112) $) 35)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-4106 (((-3 (-2 (|:| -3227 (-771)) (|:| -3282 |#5|)) "failed") (-338 |#2| |#3| |#4| |#5|)) 77)) (-3772 (((-112) (-338 |#2| |#3| |#4| |#5|)) 17)) (-3227 (((-3 (-771) "failed") (-338 |#2| |#3| |#4| |#5|)) 15)))
+(((-911 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3227 ((-3 (-771) "failed") (-338 |#2| |#3| |#4| |#5|))) (-15 -3772 ((-112) (-338 |#2| |#3| |#4| |#5|))) (-15 -4106 ((-3 (-2 (|:| -3227 (-771)) (|:| -3282 |#5|)) "failed") (-338 |#2| |#3| |#4| |#5|)))) (-13 (-558) (-1038 (-566))) (-432 |#1|) (-1240 |#2|) (-1240 (-409 |#3|)) (-344 |#2| |#3| |#4|)) (T -911))
+((-4106 (*1 *2 *3) (|partial| -12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-4 *8 (-344 *5 *6 *7)) (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-2 (|:| -3227 (-771)) (|:| -3282 *8))) (-5 *1 (-911 *4 *5 *6 *7 *8)))) (-3772 (*1 *2 *3) (-12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-4 *8 (-344 *5 *6 *7)) (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-112)) (-5 *1 (-911 *4 *5 *6 *7 *8)))) (-3227 (*1 *2 *3) (|partial| -12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4)) (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6))) (-4 *8 (-344 *5 *6 *7)) (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-771)) (-5 *1 (-911 *4 *5 *6 *7 *8)))))
+(-10 -7 (-15 -3227 ((-3 (-771) "failed") (-338 |#2| |#3| |#4| |#5|))) (-15 -3772 ((-112) (-338 |#2| |#3| |#4| |#5|))) (-15 -4106 ((-3 (-2 (|:| -3227 (-771)) (|:| -3282 |#5|)) "failed") (-338 |#2| |#3| |#4| |#5|))))
+((-4106 (((-3 (-2 (|:| -3227 (-771)) (|:| -3282 |#3|)) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|)) 64)) (-3772 (((-112) (-338 (-409 (-566)) |#1| |#2| |#3|)) 16)) (-3227 (((-3 (-771) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|)) 14)))
+(((-912 |#1| |#2| |#3|) (-10 -7 (-15 -3227 ((-3 (-771) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|))) (-15 -3772 ((-112) (-338 (-409 (-566)) |#1| |#2| |#3|))) (-15 -4106 ((-3 (-2 (|:| -3227 (-771)) (|:| -3282 |#3|)) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|)))) (-1240 (-409 (-566))) (-1240 (-409 |#1|)) (-344 (-409 (-566)) |#1| |#2|)) (T -912))
+((-4106 (*1 *2 *3) (|partial| -12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6)) (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 (-409 (-566)) *4 *5)) (-5 *2 (-2 (|:| -3227 (-771)) (|:| -3282 *6))) (-5 *1 (-912 *4 *5 *6)))) (-3772 (*1 *2 *3) (-12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6)) (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 (-409 (-566)) *4 *5)) (-5 *2 (-112)) (-5 *1 (-912 *4 *5 *6)))) (-3227 (*1 *2 *3) (|partial| -12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6)) (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 (-409 (-566)) *4 *5)) (-5 *2 (-771)) (-5 *1 (-912 *4 *5 *6)))))
+(-10 -7 (-15 -3227 ((-3 (-771) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|))) (-15 -3772 ((-112) (-338 (-409 (-566)) |#1| |#2| |#3|))) (-15 -4106 ((-3 (-2 (|:| -3227 (-771)) (|:| -3282 |#3|)) "failed") (-338 (-409 (-566)) |#1| |#2| |#3|))))
+((-2855 ((|#2| |#2|) 26)) (-1489 (((-566) (-644 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))))) 15)) (-3636 (((-921) (-566)) 38)) (-4352 (((-566) |#2|) 45)) (-3965 (((-566) |#2|) 21) (((-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))) |#1|) 20)))
+(((-913 |#1| |#2|) (-10 -7 (-15 -3636 ((-921) (-566))) (-15 -3965 ((-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))) |#1|)) (-15 -3965 ((-566) |#2|)) (-15 -1489 ((-566) (-644 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566)))))) (-15 -4352 ((-566) |#2|)) (-15 -2855 (|#2| |#2|))) (-1240 (-409 (-566))) (-1240 (-409 |#1|))) (T -913))
+((-2855 (*1 *2 *2) (-12 (-4 *3 (-1240 (-409 (-566)))) (-5 *1 (-913 *3 *2)) (-4 *2 (-1240 (-409 *3))))) (-4352 (*1 *2 *3) (-12 (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *3)) (-4 *3 (-1240 (-409 *4))))) (-1489 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))))) (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *5)) (-4 *5 (-1240 (-409 *4))))) (-3965 (*1 *2 *3) (-12 (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *3)) (-4 *3 (-1240 (-409 *4))))) (-3965 (*1 *2 *3) (-12 (-4 *3 (-1240 (-409 (-566)))) (-5 *2 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566)))) (-5 *1 (-913 *3 *4)) (-4 *4 (-1240 (-409 *3))))) (-3636 (*1 *2 *3) (-12 (-5 *3 (-566)) (-4 *4 (-1240 (-409 *3))) (-5 *2 (-921)) (-5 *1 (-913 *4 *5)) (-4 *5 (-1240 (-409 *4))))))
+(-10 -7 (-15 -3636 ((-921) (-566))) (-15 -3965 ((-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))) |#1|)) (-15 -3965 ((-566) |#2|)) (-15 -1489 ((-566) (-644 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566)))))) (-15 -4352 ((-566) |#2|)) (-15 -2855 (|#2| |#2|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2486 ((|#1| $) 100)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-2949 (($ $ $) NIL)) (-2928 (((-3 $ "failed") $) 94)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-3007 (($ |#1| (-420 |#1|)) 92)) (-2695 (((-1171 |#1|) |#1| |#1|) 53)) (-2908 (($ $) 61)) (-3466 (((-112) $) NIL)) (-2621 (((-566) $) 97)) (-3837 (($ $ (-566)) 99)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-4233 ((|#1| $) 96)) (-1358 (((-420 |#1|) $) 95)) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) 93)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2232 (($ $) 50)) (-3780 (((-862) $) 124) (($ (-566)) 73) (($ $) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 41) (((-409 |#1|) $) 78) (($ (-409 (-420 |#1|))) 86)) (-3996 (((-771)) 71 T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-2493 (($) 26 T CONST)) (-4333 (($) 15 T CONST)) (-2950 (((-112) $ $) 87)) (-3062 (($ $ $) NIL)) (-3051 (($ $) 108) (($ $ $) NIL)) (-3040 (($ $ $) 49)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 110) (($ $ $) 48) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ |#1| $) 109) (($ $ |#1|) NIL)))
+(((-914 |#1|) (-13 (-365) (-38 |#1|) (-10 -8 (-15 -3780 ((-409 |#1|) $)) (-15 -3780 ($ (-409 (-420 |#1|)))) (-15 -2232 ($ $)) (-15 -1358 ((-420 |#1|) $)) (-15 -4233 (|#1| $)) (-15 -3837 ($ $ (-566))) (-15 -2621 ((-566) $)) (-15 -2695 ((-1171 |#1|) |#1| |#1|)) (-15 -2908 ($ $)) (-15 -3007 ($ |#1| (-420 |#1|))) (-15 -2486 (|#1| $)))) (-308)) (T -914))
+((-3780 (*1 *2 *1) (-12 (-5 *2 (-409 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-409 (-420 *3))) (-4 *3 (-308)) (-5 *1 (-914 *3)))) (-2232 (*1 *1 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))) (-1358 (*1 *2 *1) (-12 (-5 *2 (-420 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308)))) (-4233 (*1 *2 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))) (-3837 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-914 *3)) (-4 *3 (-308)))) (-2621 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-914 *3)) (-4 *3 (-308)))) (-2695 (*1 *2 *3 *3) (-12 (-5 *2 (-1171 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308)))) (-2908 (*1 *1 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))) (-3007 (*1 *1 *2 *3) (-12 (-5 *3 (-420 *2)) (-4 *2 (-308)) (-5 *1 (-914 *2)))) (-2486 (*1 *2 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))))
+(-13 (-365) (-38 |#1|) (-10 -8 (-15 -3780 ((-409 |#1|) $)) (-15 -3780 ($ (-409 (-420 |#1|)))) (-15 -2232 ($ $)) (-15 -1358 ((-420 |#1|) $)) (-15 -4233 (|#1| $)) (-15 -3837 ($ $ (-566))) (-15 -2621 ((-566) $)) (-15 -2695 ((-1171 |#1|) |#1| |#1|)) (-15 -2908 ($ $)) (-15 -3007 ($ |#1| (-420 |#1|))) (-15 -2486 (|#1| $))))
+((-3007 (((-52) (-952 |#1|) (-420 (-952 |#1|)) (-1175)) 17) (((-52) (-409 (-952 |#1|)) (-1175)) 18)))
+(((-915 |#1|) (-10 -7 (-15 -3007 ((-52) (-409 (-952 |#1|)) (-1175))) (-15 -3007 ((-52) (-952 |#1|) (-420 (-952 |#1|)) (-1175)))) (-13 (-308) (-147))) (T -915))
+((-3007 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-420 (-952 *6))) (-5 *5 (-1175)) (-5 *3 (-952 *6)) (-4 *6 (-13 (-308) (-147))) (-5 *2 (-52)) (-5 *1 (-915 *6)))) (-3007 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-52)) (-5 *1 (-915 *5)))))
+(-10 -7 (-15 -3007 ((-52) (-409 (-952 |#1|)) (-1175))) (-15 -3007 ((-52) (-952 |#1|) (-420 (-952 |#1|)) (-1175))))
+((-3447 ((|#4| (-644 |#4|)) 149) (((-1171 |#4|) (-1171 |#4|) (-1171 |#4|)) 86) ((|#4| |#4| |#4|) 148)) (-2235 (((-1171 |#4|) (-644 (-1171 |#4|))) 142) (((-1171 |#4|) (-1171 |#4|) (-1171 |#4|)) 63) ((|#4| (-644 |#4|)) 71) ((|#4| |#4| |#4|) 109)))
+(((-916 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2235 (|#4| |#4| |#4|)) (-15 -2235 (|#4| (-644 |#4|))) (-15 -2235 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -2235 ((-1171 |#4|) (-644 (-1171 |#4|)))) (-15 -3447 (|#4| |#4| |#4|)) (-15 -3447 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -3447 (|#4| (-644 |#4|)))) (-793) (-850) (-308) (-949 |#3| |#1| |#2|)) (T -916))
+((-3447 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *6 *4 *5)) (-5 *1 (-916 *4 *5 *6 *2)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)))) (-3447 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *6)))) (-3447 (*1 *2 *2 *2) (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *2)) (-4 *2 (-949 *5 *3 *4)))) (-2235 (*1 *2 *3) (-12 (-5 *3 (-644 (-1171 *7))) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-1171 *7)) (-5 *1 (-916 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))) (-2235 (*1 *2 *2 *2) (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *6)))) (-2235 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *6 *4 *5)) (-5 *1 (-916 *4 *5 *6 *2)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)))) (-2235 (*1 *2 *2 *2) (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *2)) (-4 *2 (-949 *5 *3 *4)))))
+(-10 -7 (-15 -2235 (|#4| |#4| |#4|)) (-15 -2235 (|#4| (-644 |#4|))) (-15 -2235 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -2235 ((-1171 |#4|) (-644 (-1171 |#4|)))) (-15 -3447 (|#4| |#4| |#4|)) (-15 -3447 ((-1171 |#4|) (-1171 |#4|) (-1171 |#4|))) (-15 -3447 (|#4| (-644 |#4|))))
+((-2614 (((-904 (-566)) (-971)) 38) (((-904 (-566)) (-644 (-566))) 35)) (-3833 (((-904 (-566)) (-644 (-566))) 70) (((-904 (-566)) (-921)) 71)) (-3234 (((-904 (-566))) 39)) (-1366 (((-904 (-566))) 55) (((-904 (-566)) (-644 (-566))) 54)) (-2551 (((-904 (-566))) 53) (((-904 (-566)) (-644 (-566))) 52)) (-3719 (((-904 (-566))) 51) (((-904 (-566)) (-644 (-566))) 50)) (-3944 (((-904 (-566))) 49) (((-904 (-566)) (-644 (-566))) 48)) (-2530 (((-904 (-566))) 47) (((-904 (-566)) (-644 (-566))) 46)) (-3401 (((-904 (-566))) 57) (((-904 (-566)) (-644 (-566))) 56)) (-4261 (((-904 (-566)) (-644 (-566))) 75) (((-904 (-566)) (-921)) 77)) (-1464 (((-904 (-566)) (-644 (-566))) 72) (((-904 (-566)) (-921)) 73)) (-2331 (((-904 (-566)) (-644 (-566))) 68) (((-904 (-566)) (-921)) 69)) (-2912 (((-904 (-566)) (-644 (-921))) 60)))
+(((-917) (-10 -7 (-15 -3833 ((-904 (-566)) (-921))) (-15 -3833 ((-904 (-566)) (-644 (-566)))) (-15 -2331 ((-904 (-566)) (-921))) (-15 -2331 ((-904 (-566)) (-644 (-566)))) (-15 -2912 ((-904 (-566)) (-644 (-921)))) (-15 -1464 ((-904 (-566)) (-921))) (-15 -1464 ((-904 (-566)) (-644 (-566)))) (-15 -4261 ((-904 (-566)) (-921))) (-15 -4261 ((-904 (-566)) (-644 (-566)))) (-15 -2530 ((-904 (-566)) (-644 (-566)))) (-15 -2530 ((-904 (-566)))) (-15 -3944 ((-904 (-566)) (-644 (-566)))) (-15 -3944 ((-904 (-566)))) (-15 -3719 ((-904 (-566)) (-644 (-566)))) (-15 -3719 ((-904 (-566)))) (-15 -2551 ((-904 (-566)) (-644 (-566)))) (-15 -2551 ((-904 (-566)))) (-15 -1366 ((-904 (-566)) (-644 (-566)))) (-15 -1366 ((-904 (-566)))) (-15 -3401 ((-904 (-566)) (-644 (-566)))) (-15 -3401 ((-904 (-566)))) (-15 -3234 ((-904 (-566)))) (-15 -2614 ((-904 (-566)) (-644 (-566)))) (-15 -2614 ((-904 (-566)) (-971))))) (T -917))
+((-2614 (*1 *2 *3) (-12 (-5 *3 (-971)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2614 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3234 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3401 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3401 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-1366 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-1366 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2551 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2551 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3719 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3719 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3944 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3944 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2530 (*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2530 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-4261 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-4261 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-1464 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-1464 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2912 (*1 *2 *3) (-12 (-5 *3 (-644 (-921))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2331 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-2331 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3833 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))) (-3833 (*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(-10 -7 (-15 -3833 ((-904 (-566)) (-921))) (-15 -3833 ((-904 (-566)) (-644 (-566)))) (-15 -2331 ((-904 (-566)) (-921))) (-15 -2331 ((-904 (-566)) (-644 (-566)))) (-15 -2912 ((-904 (-566)) (-644 (-921)))) (-15 -1464 ((-904 (-566)) (-921))) (-15 -1464 ((-904 (-566)) (-644 (-566)))) (-15 -4261 ((-904 (-566)) (-921))) (-15 -4261 ((-904 (-566)) (-644 (-566)))) (-15 -2530 ((-904 (-566)) (-644 (-566)))) (-15 -2530 ((-904 (-566)))) (-15 -3944 ((-904 (-566)) (-644 (-566)))) (-15 -3944 ((-904 (-566)))) (-15 -3719 ((-904 (-566)) (-644 (-566)))) (-15 -3719 ((-904 (-566)))) (-15 -2551 ((-904 (-566)) (-644 (-566)))) (-15 -2551 ((-904 (-566)))) (-15 -1366 ((-904 (-566)) (-644 (-566)))) (-15 -1366 ((-904 (-566)))) (-15 -3401 ((-904 (-566)) (-644 (-566)))) (-15 -3401 ((-904 (-566)))) (-15 -3234 ((-904 (-566)))) (-15 -2614 ((-904 (-566)) (-644 (-566)))) (-15 -2614 ((-904 (-566)) (-971))))
+((-4303 (((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175))) 14)) (-2452 (((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175))) 13)))
+(((-918 |#1|) (-10 -7 (-15 -2452 ((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -4303 ((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175))))) (-454)) (T -918))
+((-4303 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-952 *4))) (-5 *3 (-644 (-1175))) (-4 *4 (-454)) (-5 *1 (-918 *4)))) (-2452 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-952 *4))) (-5 *3 (-644 (-1175))) (-4 *4 (-454)) (-5 *1 (-918 *4)))))
+(-10 -7 (-15 -2452 ((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -4303 ((-644 (-952 |#1|)) (-644 (-952 |#1|)) (-644 (-1175)))))
+((-3780 (((-317 |#1|) (-479)) 16)))
+(((-919 |#1|) (-10 -7 (-15 -3780 ((-317 |#1|) (-479)))) (-558)) (T -919))
+((-3780 (*1 *2 *3) (-12 (-5 *3 (-479)) (-5 *2 (-317 *4)) (-5 *1 (-919 *4)) (-4 *4 (-558)))))
+(-10 -7 (-15 -3780 ((-317 |#1|) (-479))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-3466 (((-112) $) 35)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-920) (-140)) (T -920))
-((-1470 (*1 *2 *3) (-12 (-4 *1 (-920)) (-5 *2 (-2 (|:| -3157 (-644 *1)) (|:| -4067 *1))) (-5 *3 (-644 *1)))) (-3819 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-644 *1)) (-4 *1 (-920)))))
-(-13 (-454) (-10 -8 (-15 -1470 ((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $))) (-15 -3819 ((-3 (-644 $) "failed") (-644 $) $))))
+((-3041 (*1 *2 *3) (-12 (-4 *1 (-920)) (-5 *2 (-2 (|:| -3223 (-644 *1)) (|:| -4152 *1))) (-5 *3 (-644 *1)))) (-4208 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-644 *1)) (-4 *1 (-920)))))
+(-13 (-454) (-10 -8 (-15 -3041 ((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $))) (-15 -4208 ((-3 (-644 $) "failed") (-644 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-291) . T) ((-454) . T) ((-558) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-717 $) . T) ((-726) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2222 (($ $ $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2495 (($) NIL T CONST)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ $ $) NIL)))
-(((-921) (-13 (-794) (-726) (-10 -8 (-15 -2222 ($ $ $)) (-6 (-4419 "*"))))) (T -921))
-((-2222 (*1 *1 *1 *1) (-5 *1 (-921))))
-(-13 (-794) (-726) (-10 -8 (-15 -2222 ($ $ $)) (-6 (-4419 "*"))))
+((-3009 (((-112) $ $) NIL)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2235 (($ $ $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-4333 (($) NIL T CONST)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ $ $) NIL)))
+(((-921) (-13 (-794) (-726) (-10 -8 (-15 -2235 ($ $ $)) (-6 (-4416 "*"))))) (T -921))
+((-2235 (*1 *1 *1 *1) (-5 *1 (-921))))
+(-13 (-794) (-726) (-10 -8 (-15 -2235 ($ $ $)) (-6 (-4416 "*"))))
((|NonNegativeInteger|) (> |#1| 0))
-((-1451 ((|#2| (-644 |#1|) (-644 |#1|)) 29)))
-(((-922 |#1| |#2|) (-10 -7 (-15 -1451 (|#2| (-644 |#1|) (-644 |#1|)))) (-365) (-1240 |#1|)) (T -922))
-((-1451 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-365)) (-4 *2 (-1240 *4)) (-5 *1 (-922 *4 *2)))))
-(-10 -7 (-15 -1451 (|#2| (-644 |#1|) (-644 |#1|))))
-((-2320 (((-1171 |#2|) (-644 |#2|) (-644 |#2|)) 17) (((-1237 |#1| |#2|) (-1237 |#1| |#2|) (-644 |#2|) (-644 |#2|)) 13)))
-(((-923 |#1| |#2|) (-10 -7 (-15 -2320 ((-1237 |#1| |#2|) (-1237 |#1| |#2|) (-644 |#2|) (-644 |#2|))) (-15 -2320 ((-1171 |#2|) (-644 |#2|) (-644 |#2|)))) (-1175) (-365)) (T -923))
-((-2320 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *5)) (-4 *5 (-365)) (-5 *2 (-1171 *5)) (-5 *1 (-923 *4 *5)) (-14 *4 (-1175)))) (-2320 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1237 *4 *5)) (-5 *3 (-644 *5)) (-14 *4 (-1175)) (-4 *5 (-365)) (-5 *1 (-923 *4 *5)))))
-(-10 -7 (-15 -2320 ((-1237 |#1| |#2|) (-1237 |#1| |#2|) (-644 |#2|) (-644 |#2|))) (-15 -2320 ((-1171 |#2|) (-644 |#2|) (-644 |#2|))))
-((-1400 (((-566) (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157)) 177)) (-1978 ((|#4| |#4|) 196)) (-1818 (((-644 (-409 (-952 |#1|))) (-644 (-1175))) 149)) (-4011 (((-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-644 (-644 |#4|)) (-771) (-771) (-566)) 88)) (-3952 (((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))) (-644 |#4|)) 69)) (-3062 (((-689 |#4|) (-689 |#4|) (-644 |#4|)) 65)) (-4307 (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157)) 189)) (-1499 (((-566) (-689 |#4|) (-921) (-1157)) 169) (((-566) (-689 |#4|) (-644 (-1175)) (-921) (-1157)) 168) (((-566) (-689 |#4|) (-644 |#4|) (-921) (-1157)) 167) (((-566) (-689 |#4|) (-1157)) 157) (((-566) (-689 |#4|) (-644 (-1175)) (-1157)) 156) (((-566) (-689 |#4|) (-644 |#4|) (-1157)) 155) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-921)) 154) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175)) (-921)) 153) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|) (-921)) 152) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|)) 151) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175))) 150) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|)) 146)) (-1298 ((|#4| (-952 |#1|)) 80)) (-4014 (((-112) (-644 |#4|) (-644 (-644 |#4|))) 193)) (-2560 (((-644 (-644 (-566))) (-566) (-566)) 162)) (-4102 (((-644 (-644 |#4|)) (-644 (-644 |#4|))) 107)) (-3530 (((-771) (-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|))))) 102)) (-1894 (((-771) (-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|))))) 101)) (-1794 (((-112) (-644 (-952 |#1|))) 19) (((-112) (-644 |#4|)) 15)) (-3606 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-644 |#4|)) (|:| |n0| (-644 |#4|))) (-644 |#4|) (-644 |#4|)) 84)) (-2664 (((-644 |#4|) |#4|) 57)) (-1402 (((-644 (-409 (-952 |#1|))) (-644 |#4|)) 145) (((-689 (-409 (-952 |#1|))) (-689 |#4|)) 66) (((-409 (-952 |#1|)) |#4|) 142)) (-3778 (((-2 (|:| |rgl| (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))))))) (|:| |rgsz| (-566))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-771) (-1157) (-566)) 113)) (-3760 (((-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))) (-689 |#4|) (-771)) 100)) (-2713 (((-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) (-689 |#4|) (-771)) 124)) (-4174 (((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| -1380 (-689 (-409 (-952 |#1|)))) (|:| |vec| (-644 (-409 (-952 |#1|)))) (|:| -1821 (-771)) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) 56)))
-(((-924 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|))) (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175)))) (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|))) (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|) (-921))) (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175)) (-921))) (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-921))) (-15 -1499 ((-566) (-689 |#4|) (-644 |#4|) (-1157))) (-15 -1499 ((-566) (-689 |#4|) (-644 (-1175)) (-1157))) (-15 -1499 ((-566) (-689 |#4|) (-1157))) (-15 -1499 ((-566) (-689 |#4|) (-644 |#4|) (-921) (-1157))) (-15 -1499 ((-566) (-689 |#4|) (-644 (-1175)) (-921) (-1157))) (-15 -1499 ((-566) (-689 |#4|) (-921) (-1157))) (-15 -1400 ((-566) (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157))) (-15 -4307 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157))) (-15 -3778 ((-2 (|:| |rgl| (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))))))) (|:| |rgsz| (-566))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-771) (-1157) (-566))) (-15 -1402 ((-409 (-952 |#1|)) |#4|)) (-15 -1402 ((-689 (-409 (-952 |#1|))) (-689 |#4|))) (-15 -1402 ((-644 (-409 (-952 |#1|))) (-644 |#4|))) (-15 -1818 ((-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -1298 (|#4| (-952 |#1|))) (-15 -3606 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-644 |#4|)) (|:| |n0| (-644 |#4|))) (-644 |#4|) (-644 |#4|))) (-15 -3760 ((-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))) (-689 |#4|) (-771))) (-15 -3952 ((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))) (-644 |#4|))) (-15 -4174 ((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| -1380 (-689 (-409 (-952 |#1|)))) (|:| |vec| (-644 (-409 (-952 |#1|)))) (|:| -1821 (-771)) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (-15 -2664 ((-644 |#4|) |#4|)) (-15 -1894 ((-771) (-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))))) (-15 -3530 ((-771) (-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))))) (-15 -4102 ((-644 (-644 |#4|)) (-644 (-644 |#4|)))) (-15 -2560 ((-644 (-644 (-566))) (-566) (-566))) (-15 -4014 ((-112) (-644 |#4|) (-644 (-644 |#4|)))) (-15 -2713 ((-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) (-689 |#4|) (-771))) (-15 -3062 ((-689 |#4|) (-689 |#4|) (-644 |#4|))) (-15 -4011 ((-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-644 (-644 |#4|)) (-771) (-771) (-566))) (-15 -1978 (|#4| |#4|)) (-15 -1794 ((-112) (-644 |#4|))) (-15 -1794 ((-112) (-644 (-952 |#1|))))) (-13 (-308) (-147)) (-13 (-850) (-614 (-1175))) (-793) (-949 |#1| |#3| |#2|)) (T -924))
-((-1794 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-112)) (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))) (-1794 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-112)) (-5 *1 (-924 *4 *5 *6 *7)))) (-1978 (*1 *2 *2) (-12 (-4 *3 (-13 (-308) (-147))) (-4 *4 (-13 (-850) (-614 (-1175)))) (-4 *5 (-793)) (-5 *1 (-924 *3 *4 *5 *2)) (-4 *2 (-949 *3 *5 *4)))) (-4011 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) (-5 *4 (-689 *12)) (-5 *5 (-644 (-409 (-952 *9)))) (-5 *6 (-644 (-644 *12))) (-5 *7 (-771)) (-5 *8 (-566)) (-4 *9 (-13 (-308) (-147))) (-4 *12 (-949 *9 *11 *10)) (-4 *10 (-13 (-850) (-614 (-1175)))) (-4 *11 (-793)) (-5 *2 (-2 (|:| |eqzro| (-644 *12)) (|:| |neqzro| (-644 *12)) (|:| |wcond| (-644 (-952 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *9)))) (|:| -1990 (-644 (-1264 (-409 (-952 *9))))))))) (-5 *1 (-924 *9 *10 *11 *12)))) (-3062 (*1 *2 *2 *3) (-12 (-5 *2 (-689 *7)) (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *1 (-924 *4 *5 *6 *7)))) (-2713 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-5 *4 (-771)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-644 (-2 (|:| |det| *8) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (-5 *1 (-924 *5 *6 *7 *8)))) (-4014 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-644 *8))) (-5 *3 (-644 *8)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-112)) (-5 *1 (-924 *5 *6 *7 *8)))) (-2560 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 (-644 (-566)))) (-5 *1 (-924 *4 *5 *6 *7)) (-5 *3 (-566)) (-4 *7 (-949 *4 *6 *5)))) (-4102 (*1 *2 *2) (-12 (-5 *2 (-644 (-644 *6))) (-4 *6 (-949 *3 *5 *4)) (-4 *3 (-13 (-308) (-147))) (-4 *4 (-13 (-850) (-614 (-1175)))) (-4 *5 (-793)) (-5 *1 (-924 *3 *4 *5 *6)))) (-3530 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| *7) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 *7))))) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-771)) (-5 *1 (-924 *4 *5 *6 *7)))) (-1894 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| *7) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 *7))))) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-771)) (-5 *1 (-924 *4 *5 *6 *7)))) (-2664 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 *3)) (-5 *1 (-924 *4 *5 *6 *3)) (-4 *3 (-949 *4 *6 *5)))) (-4174 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -1380 (-689 (-409 (-952 *4)))) (|:| |vec| (-644 (-409 (-952 *4)))) (|:| -1821 (-771)) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-2 (|:| |partsol| (-1264 (-409 (-952 *4)))) (|:| -1990 (-644 (-1264 (-409 (-952 *4))))))) (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))) (-3952 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1264 (-409 (-952 *4)))) (|:| -1990 (-644 (-1264 (-409 (-952 *4))))))) (-5 *3 (-644 *7)) (-4 *4 (-13 (-308) (-147))) (-4 *7 (-949 *4 *6 *5)) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *1 (-924 *4 *5 *6 *7)))) (-3760 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| *8) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 *8))))) (-5 *1 (-924 *5 *6 *7 *8)) (-5 *4 (-771)))) (-3606 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-4 *7 (-949 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-112)) (|:| |z0| (-644 *7)) (|:| |n0| (-644 *7)))) (-5 *1 (-924 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-1298 (*1 *2 *3) (-12 (-5 *3 (-952 *4)) (-4 *4 (-13 (-308) (-147))) (-4 *2 (-949 *4 *6 *5)) (-5 *1 (-924 *4 *5 *6 *2)) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)))) (-1818 (*1 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 (-409 (-952 *4)))) (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))) (-1402 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 (-409 (-952 *4)))) (-5 *1 (-924 *4 *5 *6 *7)))) (-1402 (*1 *2 *3) (-12 (-5 *3 (-689 *7)) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-689 (-409 (-952 *4)))) (-5 *1 (-924 *4 *5 *6 *7)))) (-1402 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-409 (-952 *4))) (-5 *1 (-924 *4 *5 *6 *3)) (-4 *3 (-949 *4 *6 *5)))) (-3778 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-689 *11)) (-5 *4 (-644 (-409 (-952 *8)))) (-5 *5 (-771)) (-5 *6 (-1157)) (-4 *8 (-13 (-308) (-147))) (-4 *11 (-949 *8 *10 *9)) (-4 *9 (-13 (-850) (-614 (-1175)))) (-4 *10 (-793)) (-5 *2 (-2 (|:| |rgl| (-644 (-2 (|:| |eqzro| (-644 *11)) (|:| |neqzro| (-644 *11)) (|:| |wcond| (-644 (-952 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *8)))) (|:| -1990 (-644 (-1264 (-409 (-952 *8)))))))))) (|:| |rgsz| (-566)))) (-5 *1 (-924 *8 *9 *10 *11)) (-5 *7 (-566)))) (-4307 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *7)) (|:| |neqzro| (-644 *7)) (|:| |wcond| (-644 (-952 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *4)))) (|:| -1990 (-644 (-1264 (-409 (-952 *4)))))))))) (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))) (-1400 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8)) (|:| |wcond| (-644 (-952 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *5)))) (|:| -1990 (-644 (-1264 (-409 (-952 *5)))))))))) (-5 *4 (-1157)) (-4 *5 (-13 (-308) (-147))) (-4 *8 (-949 *5 *7 *6)) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *5 *6 *7 *8)))) (-1499 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *9)) (-5 *4 (-921)) (-5 *5 (-1157)) (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *6 *7 *8 *9)))) (-1499 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-689 *10)) (-5 *4 (-644 (-1175))) (-5 *5 (-921)) (-5 *6 (-1157)) (-4 *10 (-949 *7 *9 *8)) (-4 *7 (-13 (-308) (-147))) (-4 *8 (-13 (-850) (-614 (-1175)))) (-4 *9 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *7 *8 *9 *10)))) (-1499 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-689 *10)) (-5 *4 (-644 *10)) (-5 *5 (-921)) (-5 *6 (-1157)) (-4 *10 (-949 *7 *9 *8)) (-4 *7 (-13 (-308) (-147))) (-4 *8 (-13 (-850) (-614 (-1175)))) (-4 *9 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *7 *8 *9 *10)))) (-1499 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-5 *4 (-1157)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *5 *6 *7 *8)))) (-1499 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 (-1175))) (-5 *5 (-1157)) (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *6 *7 *8 *9)))) (-1499 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 *9)) (-5 *5 (-1157)) (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *6 *7 *8 *9)))) (-1499 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-5 *4 (-921)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8)) (|:| |wcond| (-644 (-952 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *5)))) (|:| -1990 (-644 (-1264 (-409 (-952 *5)))))))))) (-5 *1 (-924 *5 *6 *7 *8)))) (-1499 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 (-1175))) (-5 *5 (-921)) (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *9)) (|:| |neqzro| (-644 *9)) (|:| |wcond| (-644 (-952 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *6)))) (|:| -1990 (-644 (-1264 (-409 (-952 *6)))))))))) (-5 *1 (-924 *6 *7 *8 *9)))) (-1499 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *9)) (-5 *5 (-921)) (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *9)) (|:| |neqzro| (-644 *9)) (|:| |wcond| (-644 (-952 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *6)))) (|:| -1990 (-644 (-1264 (-409 (-952 *6)))))))))) (-5 *1 (-924 *6 *7 *8 *9)) (-5 *4 (-644 *9)))) (-1499 (*1 *2 *3) (-12 (-5 *3 (-689 *7)) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *7)) (|:| |neqzro| (-644 *7)) (|:| |wcond| (-644 (-952 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *4)))) (|:| -1990 (-644 (-1264 (-409 (-952 *4)))))))))) (-5 *1 (-924 *4 *5 *6 *7)))) (-1499 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-5 *4 (-644 (-1175))) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8)) (|:| |wcond| (-644 (-952 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *5)))) (|:| -1990 (-644 (-1264 (-409 (-952 *5)))))))))) (-5 *1 (-924 *5 *6 *7 *8)))) (-1499 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8)) (|:| |wcond| (-644 (-952 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *5)))) (|:| -1990 (-644 (-1264 (-409 (-952 *5)))))))))) (-5 *1 (-924 *5 *6 *7 *8)) (-5 *4 (-644 *8)))))
-(-10 -7 (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|))) (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175)))) (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|))) (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|) (-921))) (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175)) (-921))) (-15 -1499 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-921))) (-15 -1499 ((-566) (-689 |#4|) (-644 |#4|) (-1157))) (-15 -1499 ((-566) (-689 |#4|) (-644 (-1175)) (-1157))) (-15 -1499 ((-566) (-689 |#4|) (-1157))) (-15 -1499 ((-566) (-689 |#4|) (-644 |#4|) (-921) (-1157))) (-15 -1499 ((-566) (-689 |#4|) (-644 (-1175)) (-921) (-1157))) (-15 -1499 ((-566) (-689 |#4|) (-921) (-1157))) (-15 -1400 ((-566) (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157))) (-15 -4307 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157))) (-15 -3778 ((-2 (|:| |rgl| (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))))))) (|:| |rgsz| (-566))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-771) (-1157) (-566))) (-15 -1402 ((-409 (-952 |#1|)) |#4|)) (-15 -1402 ((-689 (-409 (-952 |#1|))) (-689 |#4|))) (-15 -1402 ((-644 (-409 (-952 |#1|))) (-644 |#4|))) (-15 -1818 ((-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -1298 (|#4| (-952 |#1|))) (-15 -3606 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-644 |#4|)) (|:| |n0| (-644 |#4|))) (-644 |#4|) (-644 |#4|))) (-15 -3760 ((-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))) (-689 |#4|) (-771))) (-15 -3952 ((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))) (-644 |#4|))) (-15 -4174 ((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| -1380 (-689 (-409 (-952 |#1|)))) (|:| |vec| (-644 (-409 (-952 |#1|)))) (|:| -1821 (-771)) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (-15 -2664 ((-644 |#4|) |#4|)) (-15 -1894 ((-771) (-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))))) (-15 -3530 ((-771) (-644 (-2 (|:| -1821 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))))) (-15 -4102 ((-644 (-644 |#4|)) (-644 (-644 |#4|)))) (-15 -2560 ((-644 (-644 (-566))) (-566) (-566))) (-15 -4014 ((-112) (-644 |#4|) (-644 (-644 |#4|)))) (-15 -2713 ((-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) (-689 |#4|) (-771))) (-15 -3062 ((-689 |#4|) (-689 |#4|) (-644 |#4|))) (-15 -4011 ((-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1990 (-644 (-1264 (-409 (-952 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-644 (-644 |#4|)) (-771) (-771) (-566))) (-15 -1978 (|#4| |#4|)) (-15 -1794 ((-112) (-644 |#4|))) (-15 -1794 ((-112) (-644 (-952 |#1|)))))
-((-4301 (((-927) |#1| (-1175)) 17) (((-927) |#1| (-1175) (-1093 (-225))) 21)) (-3580 (((-927) |#1| |#1| (-1175) (-1093 (-225))) 19) (((-927) |#1| (-1175) (-1093 (-225))) 15)))
-(((-925 |#1|) (-10 -7 (-15 -3580 ((-927) |#1| (-1175) (-1093 (-225)))) (-15 -3580 ((-927) |#1| |#1| (-1175) (-1093 (-225)))) (-15 -4301 ((-927) |#1| (-1175) (-1093 (-225)))) (-15 -4301 ((-927) |#1| (-1175)))) (-614 (-538))) (T -925))
-((-4301 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-5 *2 (-927)) (-5 *1 (-925 *3)) (-4 *3 (-614 (-538))))) (-4301 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927)) (-5 *1 (-925 *3)) (-4 *3 (-614 (-538))))) (-3580 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927)) (-5 *1 (-925 *3)) (-4 *3 (-614 (-538))))) (-3580 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927)) (-5 *1 (-925 *3)) (-4 *3 (-614 (-538))))))
-(-10 -7 (-15 -3580 ((-927) |#1| (-1175) (-1093 (-225)))) (-15 -3580 ((-927) |#1| |#1| (-1175) (-1093 (-225)))) (-15 -4301 ((-927) |#1| (-1175) (-1093 (-225)))) (-15 -4301 ((-927) |#1| (-1175))))
-((-2043 (($ $ (-1093 (-225)) (-1093 (-225)) (-1093 (-225))) 123)) (-1312 (((-1093 (-225)) $) 64)) (-3175 (((-1093 (-225)) $) 63)) (-3162 (((-1093 (-225)) $) 62)) (-3376 (((-644 (-644 (-225))) $) 69)) (-2122 (((-1093 (-225)) $) 65)) (-1379 (((-566) (-566)) 57)) (-3970 (((-566) (-566)) 52)) (-3275 (((-566) (-566)) 55)) (-3366 (((-112) (-112)) 59)) (-4108 (((-566)) 56)) (-1343 (($ $ (-1093 (-225))) 126) (($ $) 127)) (-2747 (($ (-1 (-943 (-225)) (-225)) (-1093 (-225))) 133) (($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225))) 134)) (-3580 (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225))) 136) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225))) 137) (($ $ (-1093 (-225))) 129)) (-2173 (((-566)) 60)) (-4168 (((-566)) 50)) (-2260 (((-566)) 53)) (-1525 (((-644 (-644 (-943 (-225)))) $) 153)) (-2751 (((-112) (-112)) 61)) (-2512 (((-862) $) 151)) (-2780 (((-112)) 58)))
-(((-926) (-13 (-974) (-10 -8 (-15 -2747 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)))) (-15 -2747 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -3580 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)))) (-15 -3580 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -3580 ($ $ (-1093 (-225)))) (-15 -2043 ($ $ (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -1343 ($ $ (-1093 (-225)))) (-15 -1343 ($ $)) (-15 -2122 ((-1093 (-225)) $)) (-15 -3376 ((-644 (-644 (-225))) $)) (-15 -4168 ((-566))) (-15 -3970 ((-566) (-566))) (-15 -2260 ((-566))) (-15 -3275 ((-566) (-566))) (-15 -4108 ((-566))) (-15 -1379 ((-566) (-566))) (-15 -2780 ((-112))) (-15 -3366 ((-112) (-112))) (-15 -2173 ((-566))) (-15 -2751 ((-112) (-112)))))) (T -926))
-((-2747 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-926)))) (-2747 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-926)))) (-3580 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-926)))) (-3580 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-926)))) (-3580 (*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926)))) (-2043 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926)))) (-1343 (*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926)))) (-1343 (*1 *1 *1) (-5 *1 (-926))) (-2122 (*1 *2 *1) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926)))) (-3376 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-225)))) (-5 *1 (-926)))) (-4168 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-3970 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-2260 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-3275 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-4108 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-1379 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-2780 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))) (-3366 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))) (-2173 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-2751 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))))
-(-13 (-974) (-10 -8 (-15 -2747 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)))) (-15 -2747 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -3580 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)))) (-15 -3580 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -3580 ($ $ (-1093 (-225)))) (-15 -2043 ($ $ (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -1343 ($ $ (-1093 (-225)))) (-15 -1343 ($ $)) (-15 -2122 ((-1093 (-225)) $)) (-15 -3376 ((-644 (-644 (-225))) $)) (-15 -4168 ((-566))) (-15 -3970 ((-566) (-566))) (-15 -2260 ((-566))) (-15 -3275 ((-566) (-566))) (-15 -4108 ((-566))) (-15 -1379 ((-566) (-566))) (-15 -2780 ((-112))) (-15 -3366 ((-112) (-112))) (-15 -2173 ((-566))) (-15 -2751 ((-112) (-112)))))
-((-2043 (($ $ (-1093 (-225))) 124) (($ $ (-1093 (-225)) (-1093 (-225))) 125)) (-3175 (((-1093 (-225)) $) 73)) (-3162 (((-1093 (-225)) $) 72)) (-2122 (((-1093 (-225)) $) 74)) (-4157 (((-566) (-566)) 66)) (-2553 (((-566) (-566)) 61)) (-1581 (((-566) (-566)) 64)) (-4263 (((-112) (-112)) 68)) (-3887 (((-566)) 65)) (-1343 (($ $ (-1093 (-225))) 128) (($ $) 129)) (-2747 (($ (-1 (-943 (-225)) (-225)) (-1093 (-225))) 143) (($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225))) 144)) (-4301 (($ (-1 (-225) (-225)) (-1093 (-225))) 151) (($ (-1 (-225) (-225))) 155)) (-3580 (($ (-1 (-225) (-225)) (-1093 (-225))) 139) (($ (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225))) 140) (($ (-644 (-1 (-225) (-225))) (-1093 (-225))) 148) (($ (-644 (-1 (-225) (-225))) (-1093 (-225)) (-1093 (-225))) 149) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225))) 141) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225))) 142) (($ $ (-1093 (-225))) 130)) (-2875 (((-112) $) 69)) (-2379 (((-566)) 70)) (-1700 (((-566)) 59)) (-1750 (((-566)) 62)) (-1525 (((-644 (-644 (-943 (-225)))) $) 35)) (-2830 (((-112) (-112)) 71)) (-2512 (((-862) $) 169)) (-1792 (((-112)) 67)))
-(((-927) (-13 (-955) (-10 -8 (-15 -3580 ($ (-1 (-225) (-225)) (-1093 (-225)))) (-15 -3580 ($ (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -3580 ($ (-644 (-1 (-225) (-225))) (-1093 (-225)))) (-15 -3580 ($ (-644 (-1 (-225) (-225))) (-1093 (-225)) (-1093 (-225)))) (-15 -3580 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)))) (-15 -3580 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -2747 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)))) (-15 -2747 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -4301 ($ (-1 (-225) (-225)) (-1093 (-225)))) (-15 -4301 ($ (-1 (-225) (-225)))) (-15 -3580 ($ $ (-1093 (-225)))) (-15 -2875 ((-112) $)) (-15 -2043 ($ $ (-1093 (-225)))) (-15 -2043 ($ $ (-1093 (-225)) (-1093 (-225)))) (-15 -1343 ($ $ (-1093 (-225)))) (-15 -1343 ($ $)) (-15 -2122 ((-1093 (-225)) $)) (-15 -1700 ((-566))) (-15 -2553 ((-566) (-566))) (-15 -1750 ((-566))) (-15 -1581 ((-566) (-566))) (-15 -3887 ((-566))) (-15 -4157 ((-566) (-566))) (-15 -1792 ((-112))) (-15 -4263 ((-112) (-112))) (-15 -2379 ((-566))) (-15 -2830 ((-112) (-112)))))) (T -927))
-((-3580 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-3580 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-3580 (*1 *1 *2 *3) (-12 (-5 *2 (-644 (-1 (-225) (-225)))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-3580 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-644 (-1 (-225) (-225)))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-3580 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-3580 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-2747 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-2747 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-4301 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-4301 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-927)))) (-3580 (*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))) (-2875 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-927)))) (-2043 (*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))) (-2043 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))) (-1343 (*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))) (-1343 (*1 *1 *1) (-5 *1 (-927))) (-2122 (*1 *2 *1) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))) (-1700 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-2553 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-1750 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-1581 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-3887 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-4157 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-1792 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))) (-4263 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))) (-2379 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-2830 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))))
-(-13 (-955) (-10 -8 (-15 -3580 ($ (-1 (-225) (-225)) (-1093 (-225)))) (-15 -3580 ($ (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -3580 ($ (-644 (-1 (-225) (-225))) (-1093 (-225)))) (-15 -3580 ($ (-644 (-1 (-225) (-225))) (-1093 (-225)) (-1093 (-225)))) (-15 -3580 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)))) (-15 -3580 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -2747 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)))) (-15 -2747 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -4301 ($ (-1 (-225) (-225)) (-1093 (-225)))) (-15 -4301 ($ (-1 (-225) (-225)))) (-15 -3580 ($ $ (-1093 (-225)))) (-15 -2875 ((-112) $)) (-15 -2043 ($ $ (-1093 (-225)))) (-15 -2043 ($ $ (-1093 (-225)) (-1093 (-225)))) (-15 -1343 ($ $ (-1093 (-225)))) (-15 -1343 ($ $)) (-15 -2122 ((-1093 (-225)) $)) (-15 -1700 ((-566))) (-15 -2553 ((-566) (-566))) (-15 -1750 ((-566))) (-15 -1581 ((-566) (-566))) (-15 -3887 ((-566))) (-15 -4157 ((-566) (-566))) (-15 -1792 ((-112))) (-15 -4263 ((-112) (-112))) (-15 -2379 ((-566))) (-15 -2830 ((-112) (-112)))))
-((-4271 (((-644 (-1093 (-225))) (-644 (-644 (-943 (-225))))) 34)))
-(((-928) (-10 -7 (-15 -4271 ((-644 (-1093 (-225))) (-644 (-644 (-943 (-225)))))))) (T -928))
-((-4271 (*1 *2 *3) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *2 (-644 (-1093 (-225)))) (-5 *1 (-928)))))
-(-10 -7 (-15 -4271 ((-644 (-1093 (-225))) (-644 (-644 (-943 (-225)))))))
-((-3540 ((|#2| |#2|) 28)) (-3346 ((|#2| |#2|) 29)) (-1655 ((|#2| |#2|) 27)) (-1474 ((|#2| |#2| (-508)) 26)))
-(((-929 |#1| |#2|) (-10 -7 (-15 -1474 (|#2| |#2| (-508))) (-15 -1655 (|#2| |#2|)) (-15 -3540 (|#2| |#2|)) (-15 -3346 (|#2| |#2|))) (-1099) (-432 |#1|)) (T -929))
-((-3346 (*1 *2 *2) (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3)))) (-3540 (*1 *2 *2) (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3)))) (-1655 (*1 *2 *2) (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3)))) (-1474 (*1 *2 *2 *3) (-12 (-5 *3 (-508)) (-4 *4 (-1099)) (-5 *1 (-929 *4 *2)) (-4 *2 (-432 *4)))))
-(-10 -7 (-15 -1474 (|#2| |#2| (-508))) (-15 -1655 (|#2| |#2|)) (-15 -3540 (|#2| |#2|)) (-15 -3346 (|#2| |#2|)))
-((-3540 (((-317 (-566)) (-1175)) 16)) (-3346 (((-317 (-566)) (-1175)) 14)) (-1655 (((-317 (-566)) (-1175)) 12)) (-1474 (((-317 (-566)) (-1175) (-508)) 19)))
-(((-930) (-10 -7 (-15 -1474 ((-317 (-566)) (-1175) (-508))) (-15 -1655 ((-317 (-566)) (-1175))) (-15 -3540 ((-317 (-566)) (-1175))) (-15 -3346 ((-317 (-566)) (-1175))))) (T -930))
-((-3346 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))) (-3540 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))) (-1655 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))) (-1474 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-508)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))))
-(-10 -7 (-15 -1474 ((-317 (-566)) (-1175) (-508))) (-15 -1655 ((-317 (-566)) (-1175))) (-15 -3540 ((-317 (-566)) (-1175))) (-15 -3346 ((-317 (-566)) (-1175))))
-((-1356 (((-889 |#1| |#3|) |#2| (-892 |#1|) (-889 |#1| |#3|)) 25)) (-3742 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
-(((-931 |#1| |#2| |#3|) (-10 -7 (-15 -3742 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -1356 ((-889 |#1| |#3|) |#2| (-892 |#1|) (-889 |#1| |#3|)))) (-1099) (-886 |#1|) (-13 (-1099) (-1038 |#2|))) (T -931))
-((-1356 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *6)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-4 *6 (-13 (-1099) (-1038 *3))) (-4 *3 (-886 *5)) (-5 *1 (-931 *5 *3 *6)))) (-3742 (*1 *2 *3) (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1099) (-1038 *5))) (-4 *5 (-886 *4)) (-4 *4 (-1099)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-931 *4 *5 *6)))))
-(-10 -7 (-15 -3742 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -1356 ((-889 |#1| |#3|) |#2| (-892 |#1|) (-889 |#1| |#3|))))
-((-1356 (((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)) 30)))
-(((-932 |#1| |#2| |#3|) (-10 -7 (-15 -1356 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)))) (-1099) (-13 (-558) (-886 |#1|)) (-13 (-432 |#2|) (-614 (-892 |#1|)) (-886 |#1|) (-1038 (-612 $)))) (T -932))
-((-1356 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099)) (-4 *3 (-13 (-432 *6) (-614 *4) (-886 *5) (-1038 (-612 $)))) (-5 *4 (-892 *5)) (-4 *6 (-13 (-558) (-886 *5))) (-5 *1 (-932 *5 *6 *3)))))
-(-10 -7 (-15 -1356 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))))
-((-1356 (((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|)) 13)))
-(((-933 |#1|) (-10 -7 (-15 -1356 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|)))) (-547)) (T -933))
-((-1356 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 (-566) *3)) (-5 *4 (-892 (-566))) (-4 *3 (-547)) (-5 *1 (-933 *3)))))
-(-10 -7 (-15 -1356 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))))
-((-1356 (((-889 |#1| |#2|) (-612 |#2|) (-892 |#1|) (-889 |#1| |#2|)) 57)))
-(((-934 |#1| |#2|) (-10 -7 (-15 -1356 ((-889 |#1| |#2|) (-612 |#2|) (-892 |#1|) (-889 |#1| |#2|)))) (-1099) (-13 (-1099) (-1038 (-612 $)) (-614 (-892 |#1|)) (-886 |#1|))) (T -934))
-((-1356 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *6)) (-5 *3 (-612 *6)) (-4 *5 (-1099)) (-4 *6 (-13 (-1099) (-1038 (-612 $)) (-614 *4) (-886 *5))) (-5 *4 (-892 *5)) (-5 *1 (-934 *5 *6)))))
-(-10 -7 (-15 -1356 ((-889 |#1| |#2|) (-612 |#2|) (-892 |#1|) (-889 |#1| |#2|))))
-((-1356 (((-885 |#1| |#2| |#3|) |#3| (-892 |#1|) (-885 |#1| |#2| |#3|)) 17)))
-(((-935 |#1| |#2| |#3|) (-10 -7 (-15 -1356 ((-885 |#1| |#2| |#3|) |#3| (-892 |#1|) (-885 |#1| |#2| |#3|)))) (-1099) (-886 |#1|) (-666 |#2|)) (T -935))
-((-1356 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *6 *3)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-4 *6 (-886 *5)) (-4 *3 (-666 *6)) (-5 *1 (-935 *5 *6 *3)))))
-(-10 -7 (-15 -1356 ((-885 |#1| |#2| |#3|) |#3| (-892 |#1|) (-885 |#1| |#2| |#3|))))
-((-1356 (((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|)) 17 (|has| |#3| (-886 |#1|))) (((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|) (-1 (-889 |#1| |#5|) |#3| (-892 |#1|) (-889 |#1| |#5|))) 16)))
-(((-936 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1356 ((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|) (-1 (-889 |#1| |#5|) |#3| (-892 |#1|) (-889 |#1| |#5|)))) (IF (|has| |#3| (-886 |#1|)) (-15 -1356 ((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|))) |%noBranch|)) (-1099) (-793) (-850) (-13 (-1049) (-886 |#1|)) (-13 (-949 |#4| |#2| |#3|) (-614 (-892 |#1|)))) (T -936))
-((-1356 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099)) (-4 *3 (-13 (-949 *8 *6 *7) (-614 *4))) (-5 *4 (-892 *5)) (-4 *7 (-886 *5)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-13 (-1049) (-886 *5))) (-5 *1 (-936 *5 *6 *7 *8 *3)))) (-1356 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-889 *6 *3) *8 (-892 *6) (-889 *6 *3))) (-4 *8 (-850)) (-5 *2 (-889 *6 *3)) (-5 *4 (-892 *6)) (-4 *6 (-1099)) (-4 *3 (-13 (-949 *9 *7 *8) (-614 *4))) (-4 *7 (-793)) (-4 *9 (-13 (-1049) (-886 *6))) (-5 *1 (-936 *6 *7 *8 *9 *3)))))
-(-10 -7 (-15 -1356 ((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|) (-1 (-889 |#1| |#5|) |#3| (-892 |#1|) (-889 |#1| |#5|)))) (IF (|has| |#3| (-886 |#1|)) (-15 -1356 ((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|))) |%noBranch|))
-((-2197 ((|#2| |#2| (-644 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
-(((-937 |#1| |#2| |#3|) (-10 -7 (-15 -2197 (|#2| |#2| (-1 (-112) |#3|))) (-15 -2197 (|#2| |#2| (-644 (-1 (-112) |#3|))))) (-1099) (-432 |#1|) (-1214)) (T -937))
-((-2197 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-1 (-112) *5))) (-4 *5 (-1214)) (-4 *4 (-1099)) (-5 *1 (-937 *4 *2 *5)) (-4 *2 (-432 *4)))) (-2197 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1214)) (-4 *4 (-1099)) (-5 *1 (-937 *4 *2 *5)) (-4 *2 (-432 *4)))))
-(-10 -7 (-15 -2197 (|#2| |#2| (-1 (-112) |#3|))) (-15 -2197 (|#2| |#2| (-644 (-1 (-112) |#3|)))))
-((-2197 (((-317 (-566)) (-1175) (-644 (-1 (-112) |#1|))) 18) (((-317 (-566)) (-1175) (-1 (-112) |#1|)) 15)))
-(((-938 |#1|) (-10 -7 (-15 -2197 ((-317 (-566)) (-1175) (-1 (-112) |#1|))) (-15 -2197 ((-317 (-566)) (-1175) (-644 (-1 (-112) |#1|))))) (-1214)) (T -938))
-((-2197 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-644 (-1 (-112) *5))) (-4 *5 (-1214)) (-5 *2 (-317 (-566))) (-5 *1 (-938 *5)))) (-2197 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1214)) (-5 *2 (-317 (-566))) (-5 *1 (-938 *5)))))
-(-10 -7 (-15 -2197 ((-317 (-566)) (-1175) (-1 (-112) |#1|))) (-15 -2197 ((-317 (-566)) (-1175) (-644 (-1 (-112) |#1|)))))
-((-1356 (((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)) 25)))
-(((-939 |#1| |#2| |#3|) (-10 -7 (-15 -1356 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)))) (-1099) (-13 (-558) (-886 |#1|) (-614 (-892 |#1|))) (-992 |#2|)) (T -939))
-((-1356 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099)) (-4 *3 (-992 *6)) (-4 *6 (-13 (-558) (-886 *5) (-614 *4))) (-5 *4 (-892 *5)) (-5 *1 (-939 *5 *6 *3)))))
-(-10 -7 (-15 -1356 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))))
-((-1356 (((-889 |#1| (-1175)) (-1175) (-892 |#1|) (-889 |#1| (-1175))) 18)))
-(((-940 |#1|) (-10 -7 (-15 -1356 ((-889 |#1| (-1175)) (-1175) (-892 |#1|) (-889 |#1| (-1175))))) (-1099)) (T -940))
-((-1356 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 (-1175))) (-5 *3 (-1175)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-5 *1 (-940 *5)))))
-(-10 -7 (-15 -1356 ((-889 |#1| (-1175)) (-1175) (-892 |#1|) (-889 |#1| (-1175)))))
-((-3983 (((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))) 34)) (-1356 (((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-1 |#3| (-644 |#3|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))) 33)))
-(((-941 |#1| |#2| |#3|) (-10 -7 (-15 -1356 ((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-1 |#3| (-644 |#3|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)))) (-15 -3983 ((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))))) (-1099) (-1049) (-13 (-1049) (-614 (-892 |#1|)) (-1038 |#2|))) (T -941))
-((-3983 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 (-892 *6))) (-5 *5 (-1 (-889 *6 *8) *8 (-892 *6) (-889 *6 *8))) (-4 *6 (-1099)) (-4 *8 (-13 (-1049) (-614 (-892 *6)) (-1038 *7))) (-5 *2 (-889 *6 *8)) (-4 *7 (-1049)) (-5 *1 (-941 *6 *7 *8)))) (-1356 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-644 (-892 *7))) (-5 *5 (-1 *9 (-644 *9))) (-5 *6 (-1 (-889 *7 *9) *9 (-892 *7) (-889 *7 *9))) (-4 *7 (-1099)) (-4 *9 (-13 (-1049) (-614 (-892 *7)) (-1038 *8))) (-5 *2 (-889 *7 *9)) (-5 *3 (-644 *9)) (-4 *8 (-1049)) (-5 *1 (-941 *7 *8 *9)))))
-(-10 -7 (-15 -1356 ((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-1 |#3| (-644 |#3|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)))) (-15 -3983 ((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)))))
-((-1695 (((-1171 (-409 (-566))) (-566)) 81)) (-1886 (((-1171 (-566)) (-566)) 84)) (-2869 (((-1171 (-566)) (-566)) 78)) (-2099 (((-566) (-1171 (-566))) 74)) (-2436 (((-1171 (-409 (-566))) (-566)) 65)) (-3252 (((-1171 (-566)) (-566)) 49)) (-1855 (((-1171 (-566)) (-566)) 86)) (-1445 (((-1171 (-566)) (-566)) 85)) (-2335 (((-1171 (-409 (-566))) (-566)) 67)))
-(((-942) (-10 -7 (-15 -2335 ((-1171 (-409 (-566))) (-566))) (-15 -1445 ((-1171 (-566)) (-566))) (-15 -1855 ((-1171 (-566)) (-566))) (-15 -3252 ((-1171 (-566)) (-566))) (-15 -2436 ((-1171 (-409 (-566))) (-566))) (-15 -2099 ((-566) (-1171 (-566)))) (-15 -2869 ((-1171 (-566)) (-566))) (-15 -1886 ((-1171 (-566)) (-566))) (-15 -1695 ((-1171 (-409 (-566))) (-566))))) (T -942))
-((-1695 (*1 *2 *3) (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))) (-1886 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))) (-2869 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))) (-2099 (*1 *2 *3) (-12 (-5 *3 (-1171 (-566))) (-5 *2 (-566)) (-5 *1 (-942)))) (-2436 (*1 *2 *3) (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))) (-3252 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))) (-1855 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))) (-1445 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))) (-2335 (*1 *2 *3) (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))))
-(-10 -7 (-15 -2335 ((-1171 (-409 (-566))) (-566))) (-15 -1445 ((-1171 (-566)) (-566))) (-15 -1855 ((-1171 (-566)) (-566))) (-15 -3252 ((-1171 (-566)) (-566))) (-15 -2436 ((-1171 (-409 (-566))) (-566))) (-15 -2099 ((-566) (-1171 (-566)))) (-15 -2869 ((-1171 (-566)) (-566))) (-15 -1886 ((-1171 (-566)) (-566))) (-15 -1695 ((-1171 (-409 (-566))) (-566))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2140 (($ (-771)) NIL (|has| |#1| (-23)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) NIL)) (-3968 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-1372 (($ (-644 |#1|)) 9)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-3643 (((-689 |#1|) $ $) NIL (|has| |#1| (-1049)))) (-4257 (($ (-771) |#1|) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2221 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-3882 (((-112) $ (-771)) NIL)) (-3822 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4062 ((|#1| $) NIL (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) NIL (|has| $ (-6 -4418)))) (-1938 (($ $ (-644 |#1|)) 25)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) 18) (($ $ (-1231 (-566))) NIL)) (-1452 ((|#1| $ $) NIL (|has| |#1| (-1049)))) (-1909 (((-921) $) 13)) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-2689 (($ $ $) 23)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538)))) (($ (-644 |#1|)) 14)) (-2523 (($ (-644 |#1|)) NIL)) (-3704 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 24) (($ (-644 $)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3047 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3034 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-566) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-726))) (($ $ |#1|) NIL (|has| |#1| (-726)))) (-2997 (((-771) $) 11 (|has| $ (-6 -4417)))))
+((-4075 ((|#2| (-644 |#1|) (-644 |#1|)) 29)))
+(((-922 |#1| |#2|) (-10 -7 (-15 -4075 (|#2| (-644 |#1|) (-644 |#1|)))) (-365) (-1240 |#1|)) (T -922))
+((-4075 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-365)) (-4 *2 (-1240 *4)) (-5 *1 (-922 *4 *2)))))
+(-10 -7 (-15 -4075 (|#2| (-644 |#1|) (-644 |#1|))))
+((-3678 (((-1171 |#2|) (-644 |#2|) (-644 |#2|)) 17) (((-1237 |#1| |#2|) (-1237 |#1| |#2|) (-644 |#2|) (-644 |#2|)) 13)))
+(((-923 |#1| |#2|) (-10 -7 (-15 -3678 ((-1237 |#1| |#2|) (-1237 |#1| |#2|) (-644 |#2|) (-644 |#2|))) (-15 -3678 ((-1171 |#2|) (-644 |#2|) (-644 |#2|)))) (-1175) (-365)) (T -923))
+((-3678 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *5)) (-4 *5 (-365)) (-5 *2 (-1171 *5)) (-5 *1 (-923 *4 *5)) (-14 *4 (-1175)))) (-3678 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1237 *4 *5)) (-5 *3 (-644 *5)) (-14 *4 (-1175)) (-4 *5 (-365)) (-5 *1 (-923 *4 *5)))))
+(-10 -7 (-15 -3678 ((-1237 |#1| |#2|) (-1237 |#1| |#2|) (-644 |#2|) (-644 |#2|))) (-15 -3678 ((-1171 |#2|) (-644 |#2|) (-644 |#2|))))
+((-3578 (((-566) (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157)) 177)) (-1436 ((|#4| |#4|) 196)) (-3524 (((-644 (-409 (-952 |#1|))) (-644 (-1175))) 149)) (-2281 (((-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-644 (-644 |#4|)) (-771) (-771) (-566)) 88)) (-2956 (((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))) (-644 |#4|)) 69)) (-1426 (((-689 |#4|) (-689 |#4|) (-644 |#4|)) 65)) (-2113 (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157)) 189)) (-3334 (((-566) (-689 |#4|) (-921) (-1157)) 169) (((-566) (-689 |#4|) (-644 (-1175)) (-921) (-1157)) 168) (((-566) (-689 |#4|) (-644 |#4|) (-921) (-1157)) 167) (((-566) (-689 |#4|) (-1157)) 157) (((-566) (-689 |#4|) (-644 (-1175)) (-1157)) 156) (((-566) (-689 |#4|) (-644 |#4|) (-1157)) 155) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-921)) 154) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175)) (-921)) 153) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|) (-921)) 152) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|)) 151) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175))) 150) (((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|)) 146)) (-1635 ((|#4| (-952 |#1|)) 80)) (-2314 (((-112) (-644 |#4|) (-644 (-644 |#4|))) 193)) (-2286 (((-644 (-644 (-566))) (-566) (-566)) 162)) (-3763 (((-644 (-644 |#4|)) (-644 (-644 |#4|))) 107)) (-3263 (((-771) (-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|))))) 102)) (-1864 (((-771) (-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|))))) 101)) (-3287 (((-112) (-644 (-952 |#1|))) 19) (((-112) (-644 |#4|)) 15)) (-2726 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-644 |#4|)) (|:| |n0| (-644 |#4|))) (-644 |#4|) (-644 |#4|)) 84)) (-3913 (((-644 |#4|) |#4|) 57)) (-3590 (((-644 (-409 (-952 |#1|))) (-644 |#4|)) 145) (((-689 (-409 (-952 |#1|))) (-689 |#4|)) 66) (((-409 (-952 |#1|)) |#4|) 142)) (-3843 (((-2 (|:| |rgl| (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))))))) (|:| |rgsz| (-566))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-771) (-1157) (-566)) 113)) (-1839 (((-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))) (-689 |#4|) (-771)) 100)) (-3196 (((-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) (-689 |#4|) (-771)) 124)) (-3266 (((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| -4193 (-689 (-409 (-952 |#1|)))) (|:| |vec| (-644 (-409 (-952 |#1|)))) (|:| -4157 (-771)) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) 56)))
+(((-924 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|))) (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175)))) (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|))) (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|) (-921))) (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175)) (-921))) (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-921))) (-15 -3334 ((-566) (-689 |#4|) (-644 |#4|) (-1157))) (-15 -3334 ((-566) (-689 |#4|) (-644 (-1175)) (-1157))) (-15 -3334 ((-566) (-689 |#4|) (-1157))) (-15 -3334 ((-566) (-689 |#4|) (-644 |#4|) (-921) (-1157))) (-15 -3334 ((-566) (-689 |#4|) (-644 (-1175)) (-921) (-1157))) (-15 -3334 ((-566) (-689 |#4|) (-921) (-1157))) (-15 -3578 ((-566) (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157))) (-15 -2113 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157))) (-15 -3843 ((-2 (|:| |rgl| (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))))))) (|:| |rgsz| (-566))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-771) (-1157) (-566))) (-15 -3590 ((-409 (-952 |#1|)) |#4|)) (-15 -3590 ((-689 (-409 (-952 |#1|))) (-689 |#4|))) (-15 -3590 ((-644 (-409 (-952 |#1|))) (-644 |#4|))) (-15 -3524 ((-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -1635 (|#4| (-952 |#1|))) (-15 -2726 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-644 |#4|)) (|:| |n0| (-644 |#4|))) (-644 |#4|) (-644 |#4|))) (-15 -1839 ((-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))) (-689 |#4|) (-771))) (-15 -2956 ((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))) (-644 |#4|))) (-15 -3266 ((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| -4193 (-689 (-409 (-952 |#1|)))) (|:| |vec| (-644 (-409 (-952 |#1|)))) (|:| -4157 (-771)) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (-15 -3913 ((-644 |#4|) |#4|)) (-15 -1864 ((-771) (-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))))) (-15 -3263 ((-771) (-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))))) (-15 -3763 ((-644 (-644 |#4|)) (-644 (-644 |#4|)))) (-15 -2286 ((-644 (-644 (-566))) (-566) (-566))) (-15 -2314 ((-112) (-644 |#4|) (-644 (-644 |#4|)))) (-15 -3196 ((-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) (-689 |#4|) (-771))) (-15 -1426 ((-689 |#4|) (-689 |#4|) (-644 |#4|))) (-15 -2281 ((-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-644 (-644 |#4|)) (-771) (-771) (-566))) (-15 -1436 (|#4| |#4|)) (-15 -3287 ((-112) (-644 |#4|))) (-15 -3287 ((-112) (-644 (-952 |#1|))))) (-13 (-308) (-147)) (-13 (-850) (-614 (-1175))) (-793) (-949 |#1| |#3| |#2|)) (T -924))
+((-3287 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-112)) (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))) (-3287 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-112)) (-5 *1 (-924 *4 *5 *6 *7)))) (-1436 (*1 *2 *2) (-12 (-4 *3 (-13 (-308) (-147))) (-4 *4 (-13 (-850) (-614 (-1175)))) (-4 *5 (-793)) (-5 *1 (-924 *3 *4 *5 *2)) (-4 *2 (-949 *3 *5 *4)))) (-2281 (*1 *2 *3 *4 *5 *6 *7 *7 *8) (-12 (-5 *3 (-2 (|:| |det| *12) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) (-5 *4 (-689 *12)) (-5 *5 (-644 (-409 (-952 *9)))) (-5 *6 (-644 (-644 *12))) (-5 *7 (-771)) (-5 *8 (-566)) (-4 *9 (-13 (-308) (-147))) (-4 *12 (-949 *9 *11 *10)) (-4 *10 (-13 (-850) (-614 (-1175)))) (-4 *11 (-793)) (-5 *2 (-2 (|:| |eqzro| (-644 *12)) (|:| |neqzro| (-644 *12)) (|:| |wcond| (-644 (-952 *9))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *9)))) (|:| -1575 (-644 (-1264 (-409 (-952 *9))))))))) (-5 *1 (-924 *9 *10 *11 *12)))) (-1426 (*1 *2 *2 *3) (-12 (-5 *2 (-689 *7)) (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *1 (-924 *4 *5 *6 *7)))) (-3196 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-5 *4 (-771)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-644 (-2 (|:| |det| *8) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (-5 *1 (-924 *5 *6 *7 *8)))) (-2314 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-644 *8))) (-5 *3 (-644 *8)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-112)) (-5 *1 (-924 *5 *6 *7 *8)))) (-2286 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 (-644 (-566)))) (-5 *1 (-924 *4 *5 *6 *7)) (-5 *3 (-566)) (-4 *7 (-949 *4 *6 *5)))) (-3763 (*1 *2 *2) (-12 (-5 *2 (-644 (-644 *6))) (-4 *6 (-949 *3 *5 *4)) (-4 *3 (-13 (-308) (-147))) (-4 *4 (-13 (-850) (-614 (-1175)))) (-4 *5 (-793)) (-5 *1 (-924 *3 *4 *5 *6)))) (-3263 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| *7) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 *7))))) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-771)) (-5 *1 (-924 *4 *5 *6 *7)))) (-1864 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| *7) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 *7))))) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-771)) (-5 *1 (-924 *4 *5 *6 *7)))) (-3913 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 *3)) (-5 *1 (-924 *4 *5 *6 *3)) (-4 *3 (-949 *4 *6 *5)))) (-3266 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -4193 (-689 (-409 (-952 *4)))) (|:| |vec| (-644 (-409 (-952 *4)))) (|:| -4157 (-771)) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-2 (|:| |partsol| (-1264 (-409 (-952 *4)))) (|:| -1575 (-644 (-1264 (-409 (-952 *4))))))) (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))) (-2956 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1264 (-409 (-952 *4)))) (|:| -1575 (-644 (-1264 (-409 (-952 *4))))))) (-5 *3 (-644 *7)) (-4 *4 (-13 (-308) (-147))) (-4 *7 (-949 *4 *6 *5)) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *1 (-924 *4 *5 *6 *7)))) (-1839 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| *8) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 *8))))) (-5 *1 (-924 *5 *6 *7 *8)) (-5 *4 (-771)))) (-2726 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-4 *7 (-949 *4 *6 *5)) (-5 *2 (-2 (|:| |sysok| (-112)) (|:| |z0| (-644 *7)) (|:| |n0| (-644 *7)))) (-5 *1 (-924 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-1635 (*1 *2 *3) (-12 (-5 *3 (-952 *4)) (-4 *4 (-13 (-308) (-147))) (-4 *2 (-949 *4 *6 *5)) (-5 *1 (-924 *4 *5 *6 *2)) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)))) (-3524 (*1 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 (-409 (-952 *4)))) (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))) (-3590 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 (-409 (-952 *4)))) (-5 *1 (-924 *4 *5 *6 *7)))) (-3590 (*1 *2 *3) (-12 (-5 *3 (-689 *7)) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-689 (-409 (-952 *4)))) (-5 *1 (-924 *4 *5 *6 *7)))) (-3590 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-409 (-952 *4))) (-5 *1 (-924 *4 *5 *6 *3)) (-4 *3 (-949 *4 *6 *5)))) (-3843 (*1 *2 *3 *4 *5 *6 *7) (-12 (-5 *3 (-689 *11)) (-5 *4 (-644 (-409 (-952 *8)))) (-5 *5 (-771)) (-5 *6 (-1157)) (-4 *8 (-13 (-308) (-147))) (-4 *11 (-949 *8 *10 *9)) (-4 *9 (-13 (-850) (-614 (-1175)))) (-4 *10 (-793)) (-5 *2 (-2 (|:| |rgl| (-644 (-2 (|:| |eqzro| (-644 *11)) (|:| |neqzro| (-644 *11)) (|:| |wcond| (-644 (-952 *8))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *8)))) (|:| -1575 (-644 (-1264 (-409 (-952 *8)))))))))) (|:| |rgsz| (-566)))) (-5 *1 (-924 *8 *9 *10 *11)) (-5 *7 (-566)))) (-2113 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *7)) (|:| |neqzro| (-644 *7)) (|:| |wcond| (-644 (-952 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *4)))) (|:| -1575 (-644 (-1264 (-409 (-952 *4)))))))))) (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))) (-3578 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8)) (|:| |wcond| (-644 (-952 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *5)))) (|:| -1575 (-644 (-1264 (-409 (-952 *5)))))))))) (-5 *4 (-1157)) (-4 *5 (-13 (-308) (-147))) (-4 *8 (-949 *5 *7 *6)) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *5 *6 *7 *8)))) (-3334 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *9)) (-5 *4 (-921)) (-5 *5 (-1157)) (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *6 *7 *8 *9)))) (-3334 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-689 *10)) (-5 *4 (-644 (-1175))) (-5 *5 (-921)) (-5 *6 (-1157)) (-4 *10 (-949 *7 *9 *8)) (-4 *7 (-13 (-308) (-147))) (-4 *8 (-13 (-850) (-614 (-1175)))) (-4 *9 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *7 *8 *9 *10)))) (-3334 (*1 *2 *3 *4 *5 *6) (-12 (-5 *3 (-689 *10)) (-5 *4 (-644 *10)) (-5 *5 (-921)) (-5 *6 (-1157)) (-4 *10 (-949 *7 *9 *8)) (-4 *7 (-13 (-308) (-147))) (-4 *8 (-13 (-850) (-614 (-1175)))) (-4 *9 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *7 *8 *9 *10)))) (-3334 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-5 *4 (-1157)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *5 *6 *7 *8)))) (-3334 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 (-1175))) (-5 *5 (-1157)) (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *6 *7 *8 *9)))) (-3334 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 *9)) (-5 *5 (-1157)) (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *6 *7 *8 *9)))) (-3334 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-5 *4 (-921)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8)) (|:| |wcond| (-644 (-952 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *5)))) (|:| -1575 (-644 (-1264 (-409 (-952 *5)))))))))) (-5 *1 (-924 *5 *6 *7 *8)))) (-3334 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 (-1175))) (-5 *5 (-921)) (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *9)) (|:| |neqzro| (-644 *9)) (|:| |wcond| (-644 (-952 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *6)))) (|:| -1575 (-644 (-1264 (-409 (-952 *6)))))))))) (-5 *1 (-924 *6 *7 *8 *9)))) (-3334 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-689 *9)) (-5 *5 (-921)) (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *9)) (|:| |neqzro| (-644 *9)) (|:| |wcond| (-644 (-952 *6))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *6)))) (|:| -1575 (-644 (-1264 (-409 (-952 *6)))))))))) (-5 *1 (-924 *6 *7 *8 *9)) (-5 *4 (-644 *9)))) (-3334 (*1 *2 *3) (-12 (-5 *3 (-689 *7)) (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *7)) (|:| |neqzro| (-644 *7)) (|:| |wcond| (-644 (-952 *4))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *4)))) (|:| -1575 (-644 (-1264 (-409 (-952 *4)))))))))) (-5 *1 (-924 *4 *5 *6 *7)))) (-3334 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-5 *4 (-644 (-1175))) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8)) (|:| |wcond| (-644 (-952 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *5)))) (|:| -1575 (-644 (-1264 (-409 (-952 *5)))))))))) (-5 *1 (-924 *5 *6 *7 *8)))) (-3334 (*1 *2 *3 *4) (-12 (-5 *3 (-689 *8)) (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-644 (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8)) (|:| |wcond| (-644 (-952 *5))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 *5)))) (|:| -1575 (-644 (-1264 (-409 (-952 *5)))))))))) (-5 *1 (-924 *5 *6 *7 *8)) (-5 *4 (-644 *8)))))
+(-10 -7 (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|))) (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175)))) (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|))) (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 |#4|) (-921))) (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-644 (-1175)) (-921))) (-15 -3334 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-689 |#4|) (-921))) (-15 -3334 ((-566) (-689 |#4|) (-644 |#4|) (-1157))) (-15 -3334 ((-566) (-689 |#4|) (-644 (-1175)) (-1157))) (-15 -3334 ((-566) (-689 |#4|) (-1157))) (-15 -3334 ((-566) (-689 |#4|) (-644 |#4|) (-921) (-1157))) (-15 -3334 ((-566) (-689 |#4|) (-644 (-1175)) (-921) (-1157))) (-15 -3334 ((-566) (-689 |#4|) (-921) (-1157))) (-15 -3578 ((-566) (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157))) (-15 -2113 ((-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|))))))))) (-1157))) (-15 -3843 ((-2 (|:| |rgl| (-644 (-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))))))) (|:| |rgsz| (-566))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-771) (-1157) (-566))) (-15 -3590 ((-409 (-952 |#1|)) |#4|)) (-15 -3590 ((-689 (-409 (-952 |#1|))) (-689 |#4|))) (-15 -3590 ((-644 (-409 (-952 |#1|))) (-644 |#4|))) (-15 -3524 ((-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -1635 (|#4| (-952 |#1|))) (-15 -2726 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-644 |#4|)) (|:| |n0| (-644 |#4|))) (-644 |#4|) (-644 |#4|))) (-15 -1839 ((-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))) (-689 |#4|) (-771))) (-15 -2956 ((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))) (-644 |#4|))) (-15 -3266 ((-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))) (-2 (|:| -4193 (-689 (-409 (-952 |#1|)))) (|:| |vec| (-644 (-409 (-952 |#1|)))) (|:| -4157 (-771)) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (-15 -3913 ((-644 |#4|) |#4|)) (-15 -1864 ((-771) (-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))))) (-15 -3263 ((-771) (-644 (-2 (|:| -4157 (-771)) (|:| |eqns| (-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))) (|:| |fgb| (-644 |#4|)))))) (-15 -3763 ((-644 (-644 |#4|)) (-644 (-644 |#4|)))) (-15 -2286 ((-644 (-644 (-566))) (-566) (-566))) (-15 -2314 ((-112) (-644 |#4|) (-644 (-644 |#4|)))) (-15 -3196 ((-644 (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566))))) (-689 |#4|) (-771))) (-15 -1426 ((-689 |#4|) (-689 |#4|) (-644 |#4|))) (-15 -2281 ((-2 (|:| |eqzro| (-644 |#4|)) (|:| |neqzro| (-644 |#4|)) (|:| |wcond| (-644 (-952 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1264 (-409 (-952 |#1|)))) (|:| -1575 (-644 (-1264 (-409 (-952 |#1|)))))))) (-2 (|:| |det| |#4|) (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))) (-689 |#4|) (-644 (-409 (-952 |#1|))) (-644 (-644 |#4|)) (-771) (-771) (-566))) (-15 -1436 (|#4| |#4|)) (-15 -3287 ((-112) (-644 |#4|))) (-15 -3287 ((-112) (-644 (-952 |#1|)))))
+((-2049 (((-927) |#1| (-1175)) 17) (((-927) |#1| (-1175) (-1093 (-225))) 21)) (-2496 (((-927) |#1| |#1| (-1175) (-1093 (-225))) 19) (((-927) |#1| (-1175) (-1093 (-225))) 15)))
+(((-925 |#1|) (-10 -7 (-15 -2496 ((-927) |#1| (-1175) (-1093 (-225)))) (-15 -2496 ((-927) |#1| |#1| (-1175) (-1093 (-225)))) (-15 -2049 ((-927) |#1| (-1175) (-1093 (-225)))) (-15 -2049 ((-927) |#1| (-1175)))) (-614 (-538))) (T -925))
+((-2049 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-5 *2 (-927)) (-5 *1 (-925 *3)) (-4 *3 (-614 (-538))))) (-2049 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927)) (-5 *1 (-925 *3)) (-4 *3 (-614 (-538))))) (-2496 (*1 *2 *3 *3 *4 *5) (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927)) (-5 *1 (-925 *3)) (-4 *3 (-614 (-538))))) (-2496 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927)) (-5 *1 (-925 *3)) (-4 *3 (-614 (-538))))))
+(-10 -7 (-15 -2496 ((-927) |#1| (-1175) (-1093 (-225)))) (-15 -2496 ((-927) |#1| |#1| (-1175) (-1093 (-225)))) (-15 -2049 ((-927) |#1| (-1175) (-1093 (-225)))) (-15 -2049 ((-927) |#1| (-1175))))
+((-3961 (($ $ (-1093 (-225)) (-1093 (-225)) (-1093 (-225))) 123)) (-3106 (((-1093 (-225)) $) 64)) (-3096 (((-1093 (-225)) $) 63)) (-3085 (((-1093 (-225)) $) 62)) (-2322 (((-644 (-644 (-225))) $) 69)) (-3550 (((-1093 (-225)) $) 65)) (-4183 (((-566) (-566)) 57)) (-1900 (((-566) (-566)) 52)) (-2683 (((-566) (-566)) 55)) (-2237 (((-112) (-112)) 59)) (-3828 (((-566)) 56)) (-3301 (($ $ (-1093 (-225))) 126) (($ $) 127)) (-3531 (($ (-1 (-943 (-225)) (-225)) (-1093 (-225))) 133) (($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225))) 134)) (-2496 (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225))) 136) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225))) 137) (($ $ (-1093 (-225))) 129)) (-2809 (((-566)) 60)) (-3211 (((-566)) 50)) (-4265 (((-566)) 53)) (-2399 (((-644 (-644 (-943 (-225)))) $) 153)) (-3572 (((-112) (-112)) 61)) (-3780 (((-862) $) 151)) (-2646 (((-112)) 58)))
+(((-926) (-13 (-974) (-10 -8 (-15 -3531 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)))) (-15 -3531 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -2496 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)))) (-15 -2496 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -2496 ($ $ (-1093 (-225)))) (-15 -3961 ($ $ (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -3301 ($ $ (-1093 (-225)))) (-15 -3301 ($ $)) (-15 -3550 ((-1093 (-225)) $)) (-15 -2322 ((-644 (-644 (-225))) $)) (-15 -3211 ((-566))) (-15 -1900 ((-566) (-566))) (-15 -4265 ((-566))) (-15 -2683 ((-566) (-566))) (-15 -3828 ((-566))) (-15 -4183 ((-566) (-566))) (-15 -2646 ((-112))) (-15 -2237 ((-112) (-112))) (-15 -2809 ((-566))) (-15 -3572 ((-112) (-112)))))) (T -926))
+((-3531 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-926)))) (-3531 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-926)))) (-2496 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-926)))) (-2496 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-926)))) (-2496 (*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926)))) (-3961 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926)))) (-3301 (*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926)))) (-3301 (*1 *1 *1) (-5 *1 (-926))) (-3550 (*1 *2 *1) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926)))) (-2322 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-225)))) (-5 *1 (-926)))) (-3211 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-1900 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-4265 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-2683 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-3828 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-4183 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-2646 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))) (-2237 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))) (-2809 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))) (-3572 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))))
+(-13 (-974) (-10 -8 (-15 -3531 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)))) (-15 -3531 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -2496 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)))) (-15 -2496 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -2496 ($ $ (-1093 (-225)))) (-15 -3961 ($ $ (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -3301 ($ $ (-1093 (-225)))) (-15 -3301 ($ $)) (-15 -3550 ((-1093 (-225)) $)) (-15 -2322 ((-644 (-644 (-225))) $)) (-15 -3211 ((-566))) (-15 -1900 ((-566) (-566))) (-15 -4265 ((-566))) (-15 -2683 ((-566) (-566))) (-15 -3828 ((-566))) (-15 -4183 ((-566) (-566))) (-15 -2646 ((-112))) (-15 -2237 ((-112) (-112))) (-15 -2809 ((-566))) (-15 -3572 ((-112) (-112)))))
+((-3961 (($ $ (-1093 (-225))) 124) (($ $ (-1093 (-225)) (-1093 (-225))) 125)) (-3096 (((-1093 (-225)) $) 73)) (-3085 (((-1093 (-225)) $) 72)) (-3550 (((-1093 (-225)) $) 74)) (-4287 (((-566) (-566)) 66)) (-2206 (((-566) (-566)) 61)) (-1752 (((-566) (-566)) 64)) (-2882 (((-112) (-112)) 68)) (-3624 (((-566)) 65)) (-3301 (($ $ (-1093 (-225))) 128) (($ $) 129)) (-3531 (($ (-1 (-943 (-225)) (-225)) (-1093 (-225))) 143) (($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225))) 144)) (-2049 (($ (-1 (-225) (-225)) (-1093 (-225))) 151) (($ (-1 (-225) (-225))) 155)) (-2496 (($ (-1 (-225) (-225)) (-1093 (-225))) 139) (($ (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225))) 140) (($ (-644 (-1 (-225) (-225))) (-1093 (-225))) 148) (($ (-644 (-1 (-225) (-225))) (-1093 (-225)) (-1093 (-225))) 149) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225))) 141) (($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225))) 142) (($ $ (-1093 (-225))) 130)) (-2371 (((-112) $) 69)) (-4231 (((-566)) 70)) (-1703 (((-566)) 59)) (-4069 (((-566)) 62)) (-2399 (((-644 (-644 (-943 (-225)))) $) 35)) (-2864 (((-112) (-112)) 71)) (-3780 (((-862) $) 169)) (-3262 (((-112)) 67)))
+(((-927) (-13 (-955) (-10 -8 (-15 -2496 ($ (-1 (-225) (-225)) (-1093 (-225)))) (-15 -2496 ($ (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -2496 ($ (-644 (-1 (-225) (-225))) (-1093 (-225)))) (-15 -2496 ($ (-644 (-1 (-225) (-225))) (-1093 (-225)) (-1093 (-225)))) (-15 -2496 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)))) (-15 -2496 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -3531 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)))) (-15 -3531 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -2049 ($ (-1 (-225) (-225)) (-1093 (-225)))) (-15 -2049 ($ (-1 (-225) (-225)))) (-15 -2496 ($ $ (-1093 (-225)))) (-15 -2371 ((-112) $)) (-15 -3961 ($ $ (-1093 (-225)))) (-15 -3961 ($ $ (-1093 (-225)) (-1093 (-225)))) (-15 -3301 ($ $ (-1093 (-225)))) (-15 -3301 ($ $)) (-15 -3550 ((-1093 (-225)) $)) (-15 -1703 ((-566))) (-15 -2206 ((-566) (-566))) (-15 -4069 ((-566))) (-15 -1752 ((-566) (-566))) (-15 -3624 ((-566))) (-15 -4287 ((-566) (-566))) (-15 -3262 ((-112))) (-15 -2882 ((-112) (-112))) (-15 -4231 ((-566))) (-15 -2864 ((-112) (-112)))))) (T -927))
+((-2496 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-2496 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-2496 (*1 *1 *2 *3) (-12 (-5 *2 (-644 (-1 (-225) (-225)))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-2496 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-644 (-1 (-225) (-225)))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-2496 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-2496 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-3531 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-3531 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-2049 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225))) (-5 *1 (-927)))) (-2049 (*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-927)))) (-2496 (*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))) (-2371 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-927)))) (-3961 (*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))) (-3961 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))) (-3301 (*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))) (-3301 (*1 *1 *1) (-5 *1 (-927))) (-3550 (*1 *2 *1) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))) (-1703 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-2206 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-4069 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-1752 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-3624 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-4287 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-3262 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))) (-2882 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))) (-4231 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))) (-2864 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))))
+(-13 (-955) (-10 -8 (-15 -2496 ($ (-1 (-225) (-225)) (-1093 (-225)))) (-15 -2496 ($ (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -2496 ($ (-644 (-1 (-225) (-225))) (-1093 (-225)))) (-15 -2496 ($ (-644 (-1 (-225) (-225))) (-1093 (-225)) (-1093 (-225)))) (-15 -2496 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)))) (-15 -2496 ($ (-1 (-225) (-225)) (-1 (-225) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -3531 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)))) (-15 -3531 ($ (-1 (-943 (-225)) (-225)) (-1093 (-225)) (-1093 (-225)) (-1093 (-225)))) (-15 -2049 ($ (-1 (-225) (-225)) (-1093 (-225)))) (-15 -2049 ($ (-1 (-225) (-225)))) (-15 -2496 ($ $ (-1093 (-225)))) (-15 -2371 ((-112) $)) (-15 -3961 ($ $ (-1093 (-225)))) (-15 -3961 ($ $ (-1093 (-225)) (-1093 (-225)))) (-15 -3301 ($ $ (-1093 (-225)))) (-15 -3301 ($ $)) (-15 -3550 ((-1093 (-225)) $)) (-15 -1703 ((-566))) (-15 -2206 ((-566) (-566))) (-15 -4069 ((-566))) (-15 -1752 ((-566) (-566))) (-15 -3624 ((-566))) (-15 -4287 ((-566) (-566))) (-15 -3262 ((-112))) (-15 -2882 ((-112) (-112))) (-15 -4231 ((-566))) (-15 -2864 ((-112) (-112)))))
+((-2961 (((-644 (-1093 (-225))) (-644 (-644 (-943 (-225))))) 34)))
+(((-928) (-10 -7 (-15 -2961 ((-644 (-1093 (-225))) (-644 (-644 (-943 (-225)))))))) (T -928))
+((-2961 (*1 *2 *3) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *2 (-644 (-1093 (-225)))) (-5 *1 (-928)))))
+(-10 -7 (-15 -2961 ((-644 (-1093 (-225))) (-644 (-644 (-943 (-225)))))))
+((-3568 ((|#2| |#2|) 28)) (-2977 ((|#2| |#2|) 29)) (-2460 ((|#2| |#2|) 27)) (-1511 ((|#2| |#2| (-508)) 26)))
+(((-929 |#1| |#2|) (-10 -7 (-15 -1511 (|#2| |#2| (-508))) (-15 -2460 (|#2| |#2|)) (-15 -3568 (|#2| |#2|)) (-15 -2977 (|#2| |#2|))) (-1099) (-432 |#1|)) (T -929))
+((-2977 (*1 *2 *2) (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3)))) (-3568 (*1 *2 *2) (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3)))) (-2460 (*1 *2 *2) (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3)))) (-1511 (*1 *2 *2 *3) (-12 (-5 *3 (-508)) (-4 *4 (-1099)) (-5 *1 (-929 *4 *2)) (-4 *2 (-432 *4)))))
+(-10 -7 (-15 -1511 (|#2| |#2| (-508))) (-15 -2460 (|#2| |#2|)) (-15 -3568 (|#2| |#2|)) (-15 -2977 (|#2| |#2|)))
+((-3568 (((-317 (-566)) (-1175)) 16)) (-2977 (((-317 (-566)) (-1175)) 14)) (-2460 (((-317 (-566)) (-1175)) 12)) (-1511 (((-317 (-566)) (-1175) (-508)) 19)))
+(((-930) (-10 -7 (-15 -1511 ((-317 (-566)) (-1175) (-508))) (-15 -2460 ((-317 (-566)) (-1175))) (-15 -3568 ((-317 (-566)) (-1175))) (-15 -2977 ((-317 (-566)) (-1175))))) (T -930))
+((-2977 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))) (-3568 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))) (-2460 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))) (-1511 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-508)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))))
+(-10 -7 (-15 -1511 ((-317 (-566)) (-1175) (-508))) (-15 -2460 ((-317 (-566)) (-1175))) (-15 -3568 ((-317 (-566)) (-1175))) (-15 -2977 ((-317 (-566)) (-1175))))
+((-1525 (((-889 |#1| |#3|) |#2| (-892 |#1|) (-889 |#1| |#3|)) 25)) (-1639 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
+(((-931 |#1| |#2| |#3|) (-10 -7 (-15 -1639 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -1525 ((-889 |#1| |#3|) |#2| (-892 |#1|) (-889 |#1| |#3|)))) (-1099) (-886 |#1|) (-13 (-1099) (-1038 |#2|))) (T -931))
+((-1525 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *6)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-4 *6 (-13 (-1099) (-1038 *3))) (-4 *3 (-886 *5)) (-5 *1 (-931 *5 *3 *6)))) (-1639 (*1 *2 *3) (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1099) (-1038 *5))) (-4 *5 (-886 *4)) (-4 *4 (-1099)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-931 *4 *5 *6)))))
+(-10 -7 (-15 -1639 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -1525 ((-889 |#1| |#3|) |#2| (-892 |#1|) (-889 |#1| |#3|))))
+((-1525 (((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)) 30)))
+(((-932 |#1| |#2| |#3|) (-10 -7 (-15 -1525 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)))) (-1099) (-13 (-558) (-886 |#1|)) (-13 (-432 |#2|) (-614 (-892 |#1|)) (-886 |#1|) (-1038 (-612 $)))) (T -932))
+((-1525 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099)) (-4 *3 (-13 (-432 *6) (-614 *4) (-886 *5) (-1038 (-612 $)))) (-5 *4 (-892 *5)) (-4 *6 (-13 (-558) (-886 *5))) (-5 *1 (-932 *5 *6 *3)))))
+(-10 -7 (-15 -1525 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))))
+((-1525 (((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|)) 13)))
+(((-933 |#1|) (-10 -7 (-15 -1525 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|)))) (-547)) (T -933))
+((-1525 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 (-566) *3)) (-5 *4 (-892 (-566))) (-4 *3 (-547)) (-5 *1 (-933 *3)))))
+(-10 -7 (-15 -1525 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))))
+((-1525 (((-889 |#1| |#2|) (-612 |#2|) (-892 |#1|) (-889 |#1| |#2|)) 57)))
+(((-934 |#1| |#2|) (-10 -7 (-15 -1525 ((-889 |#1| |#2|) (-612 |#2|) (-892 |#1|) (-889 |#1| |#2|)))) (-1099) (-13 (-1099) (-1038 (-612 $)) (-614 (-892 |#1|)) (-886 |#1|))) (T -934))
+((-1525 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *6)) (-5 *3 (-612 *6)) (-4 *5 (-1099)) (-4 *6 (-13 (-1099) (-1038 (-612 $)) (-614 *4) (-886 *5))) (-5 *4 (-892 *5)) (-5 *1 (-934 *5 *6)))))
+(-10 -7 (-15 -1525 ((-889 |#1| |#2|) (-612 |#2|) (-892 |#1|) (-889 |#1| |#2|))))
+((-1525 (((-885 |#1| |#2| |#3|) |#3| (-892 |#1|) (-885 |#1| |#2| |#3|)) 17)))
+(((-935 |#1| |#2| |#3|) (-10 -7 (-15 -1525 ((-885 |#1| |#2| |#3|) |#3| (-892 |#1|) (-885 |#1| |#2| |#3|)))) (-1099) (-886 |#1|) (-666 |#2|)) (T -935))
+((-1525 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-885 *5 *6 *3)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-4 *6 (-886 *5)) (-4 *3 (-666 *6)) (-5 *1 (-935 *5 *6 *3)))))
+(-10 -7 (-15 -1525 ((-885 |#1| |#2| |#3|) |#3| (-892 |#1|) (-885 |#1| |#2| |#3|))))
+((-1525 (((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|)) 17 (|has| |#3| (-886 |#1|))) (((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|) (-1 (-889 |#1| |#5|) |#3| (-892 |#1|) (-889 |#1| |#5|))) 16)))
+(((-936 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1525 ((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|) (-1 (-889 |#1| |#5|) |#3| (-892 |#1|) (-889 |#1| |#5|)))) (IF (|has| |#3| (-886 |#1|)) (-15 -1525 ((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|))) |%noBranch|)) (-1099) (-793) (-850) (-13 (-1049) (-886 |#1|)) (-13 (-949 |#4| |#2| |#3|) (-614 (-892 |#1|)))) (T -936))
+((-1525 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099)) (-4 *3 (-13 (-949 *8 *6 *7) (-614 *4))) (-5 *4 (-892 *5)) (-4 *7 (-886 *5)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-13 (-1049) (-886 *5))) (-5 *1 (-936 *5 *6 *7 *8 *3)))) (-1525 (*1 *2 *3 *4 *2 *5) (-12 (-5 *5 (-1 (-889 *6 *3) *8 (-892 *6) (-889 *6 *3))) (-4 *8 (-850)) (-5 *2 (-889 *6 *3)) (-5 *4 (-892 *6)) (-4 *6 (-1099)) (-4 *3 (-13 (-949 *9 *7 *8) (-614 *4))) (-4 *7 (-793)) (-4 *9 (-13 (-1049) (-886 *6))) (-5 *1 (-936 *6 *7 *8 *9 *3)))))
+(-10 -7 (-15 -1525 ((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|) (-1 (-889 |#1| |#5|) |#3| (-892 |#1|) (-889 |#1| |#5|)))) (IF (|has| |#3| (-886 |#1|)) (-15 -1525 ((-889 |#1| |#5|) |#5| (-892 |#1|) (-889 |#1| |#5|))) |%noBranch|))
+((-3055 ((|#2| |#2| (-644 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
+(((-937 |#1| |#2| |#3|) (-10 -7 (-15 -3055 (|#2| |#2| (-1 (-112) |#3|))) (-15 -3055 (|#2| |#2| (-644 (-1 (-112) |#3|))))) (-1099) (-432 |#1|) (-1214)) (T -937))
+((-3055 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-1 (-112) *5))) (-4 *5 (-1214)) (-4 *4 (-1099)) (-5 *1 (-937 *4 *2 *5)) (-4 *2 (-432 *4)))) (-3055 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1214)) (-4 *4 (-1099)) (-5 *1 (-937 *4 *2 *5)) (-4 *2 (-432 *4)))))
+(-10 -7 (-15 -3055 (|#2| |#2| (-1 (-112) |#3|))) (-15 -3055 (|#2| |#2| (-644 (-1 (-112) |#3|)))))
+((-3055 (((-317 (-566)) (-1175) (-644 (-1 (-112) |#1|))) 18) (((-317 (-566)) (-1175) (-1 (-112) |#1|)) 15)))
+(((-938 |#1|) (-10 -7 (-15 -3055 ((-317 (-566)) (-1175) (-1 (-112) |#1|))) (-15 -3055 ((-317 (-566)) (-1175) (-644 (-1 (-112) |#1|))))) (-1214)) (T -938))
+((-3055 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-644 (-1 (-112) *5))) (-4 *5 (-1214)) (-5 *2 (-317 (-566))) (-5 *1 (-938 *5)))) (-3055 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1214)) (-5 *2 (-317 (-566))) (-5 *1 (-938 *5)))))
+(-10 -7 (-15 -3055 ((-317 (-566)) (-1175) (-1 (-112) |#1|))) (-15 -3055 ((-317 (-566)) (-1175) (-644 (-1 (-112) |#1|)))))
+((-1525 (((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)) 25)))
+(((-939 |#1| |#2| |#3|) (-10 -7 (-15 -1525 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)))) (-1099) (-13 (-558) (-886 |#1|) (-614 (-892 |#1|))) (-992 |#2|)) (T -939))
+((-1525 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099)) (-4 *3 (-992 *6)) (-4 *6 (-13 (-558) (-886 *5) (-614 *4))) (-5 *4 (-892 *5)) (-5 *1 (-939 *5 *6 *3)))))
+(-10 -7 (-15 -1525 ((-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))))
+((-1525 (((-889 |#1| (-1175)) (-1175) (-892 |#1|) (-889 |#1| (-1175))) 18)))
+(((-940 |#1|) (-10 -7 (-15 -1525 ((-889 |#1| (-1175)) (-1175) (-892 |#1|) (-889 |#1| (-1175))))) (-1099)) (T -940))
+((-1525 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-889 *5 (-1175))) (-5 *3 (-1175)) (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-5 *1 (-940 *5)))))
+(-10 -7 (-15 -1525 ((-889 |#1| (-1175)) (-1175) (-892 |#1|) (-889 |#1| (-1175)))))
+((-2031 (((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))) 34)) (-1525 (((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-1 |#3| (-644 |#3|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))) 33)))
+(((-941 |#1| |#2| |#3|) (-10 -7 (-15 -1525 ((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-1 |#3| (-644 |#3|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)))) (-15 -2031 ((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|))))) (-1099) (-1049) (-13 (-1049) (-614 (-892 |#1|)) (-1038 |#2|))) (T -941))
+((-2031 (*1 *2 *3 *4 *2 *5) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 (-892 *6))) (-5 *5 (-1 (-889 *6 *8) *8 (-892 *6) (-889 *6 *8))) (-4 *6 (-1099)) (-4 *8 (-13 (-1049) (-614 (-892 *6)) (-1038 *7))) (-5 *2 (-889 *6 *8)) (-4 *7 (-1049)) (-5 *1 (-941 *6 *7 *8)))) (-1525 (*1 *2 *3 *4 *5 *2 *6) (-12 (-5 *4 (-644 (-892 *7))) (-5 *5 (-1 *9 (-644 *9))) (-5 *6 (-1 (-889 *7 *9) *9 (-892 *7) (-889 *7 *9))) (-4 *7 (-1099)) (-4 *9 (-13 (-1049) (-614 (-892 *7)) (-1038 *8))) (-5 *2 (-889 *7 *9)) (-5 *3 (-644 *9)) (-4 *8 (-1049)) (-5 *1 (-941 *7 *8 *9)))))
+(-10 -7 (-15 -1525 ((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-1 |#3| (-644 |#3|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)))) (-15 -2031 ((-889 |#1| |#3|) (-644 |#3|) (-644 (-892 |#1|)) (-889 |#1| |#3|) (-1 (-889 |#1| |#3|) |#3| (-892 |#1|) (-889 |#1| |#3|)))))
+((-1655 (((-1171 (-409 (-566))) (-566)) 81)) (-1780 (((-1171 (-566)) (-566)) 84)) (-2302 (((-1171 (-566)) (-566)) 78)) (-3313 (((-566) (-1171 (-566))) 74)) (-3546 (((-1171 (-409 (-566))) (-566)) 65)) (-2478 (((-1171 (-566)) (-566)) 49)) (-2676 (((-1171 (-566)) (-566)) 86)) (-4004 (((-1171 (-566)) (-566)) 85)) (-3816 (((-1171 (-409 (-566))) (-566)) 67)))
+(((-942) (-10 -7 (-15 -3816 ((-1171 (-409 (-566))) (-566))) (-15 -4004 ((-1171 (-566)) (-566))) (-15 -2676 ((-1171 (-566)) (-566))) (-15 -2478 ((-1171 (-566)) (-566))) (-15 -3546 ((-1171 (-409 (-566))) (-566))) (-15 -3313 ((-566) (-1171 (-566)))) (-15 -2302 ((-1171 (-566)) (-566))) (-15 -1780 ((-1171 (-566)) (-566))) (-15 -1655 ((-1171 (-409 (-566))) (-566))))) (T -942))
+((-1655 (*1 *2 *3) (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))) (-1780 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))) (-2302 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))) (-3313 (*1 *2 *3) (-12 (-5 *3 (-1171 (-566))) (-5 *2 (-566)) (-5 *1 (-942)))) (-3546 (*1 *2 *3) (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))) (-2478 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))) (-2676 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))) (-4004 (*1 *2 *3) (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))) (-3816 (*1 *2 *3) (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))))
+(-10 -7 (-15 -3816 ((-1171 (-409 (-566))) (-566))) (-15 -4004 ((-1171 (-566)) (-566))) (-15 -2676 ((-1171 (-566)) (-566))) (-15 -2478 ((-1171 (-566)) (-566))) (-15 -3546 ((-1171 (-409 (-566))) (-566))) (-15 -3313 ((-566) (-1171 (-566)))) (-15 -2302 ((-1171 (-566)) (-566))) (-15 -1780 ((-1171 (-566)) (-566))) (-15 -1655 ((-1171 (-409 (-566))) (-566))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2181 (($ (-771)) NIL (|has| |#1| (-23)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) NIL)) (-4015 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-1876 (($ (-644 |#1|)) 9)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-3774 (((-689 |#1|) $ $) NIL (|has| |#1| (-1049)))) (-4278 (($ (-771) |#1|) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2029 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-3582 (((-112) $ (-771)) NIL)) (-3945 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4101 ((|#1| $) NIL (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) NIL (|has| $ (-6 -4415)))) (-2295 (($ $ (-644 |#1|)) 25)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) 18) (($ $ (-1231 (-566))) NIL)) (-4086 ((|#1| $ $) NIL (|has| |#1| (-1049)))) (-2012 (((-921) $) 13)) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4173 (($ $ $) 23)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538)))) (($ (-644 |#1|)) 14)) (-3791 (($ (-644 |#1|)) NIL)) (-3727 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 24) (($ (-644 $)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3051 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3040 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-566) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-726))) (($ $ |#1|) NIL (|has| |#1| (-726)))) (-3020 (((-771) $) 11 (|has| $ (-6 -4414)))))
(((-943 |#1|) (-980 |#1|) (-1049)) (T -943))
NIL
(-980 |#1|)
-((-2839 (((-483 |#1| |#2|) (-952 |#2|)) 22)) (-1589 (((-247 |#1| |#2|) (-952 |#2|)) 35)) (-3131 (((-952 |#2|) (-483 |#1| |#2|)) 27)) (-3941 (((-247 |#1| |#2|) (-483 |#1| |#2|)) 57)) (-1738 (((-952 |#2|) (-247 |#1| |#2|)) 32)) (-2150 (((-483 |#1| |#2|) (-247 |#1| |#2|)) 48)))
-(((-944 |#1| |#2|) (-10 -7 (-15 -2150 ((-483 |#1| |#2|) (-247 |#1| |#2|))) (-15 -3941 ((-247 |#1| |#2|) (-483 |#1| |#2|))) (-15 -2839 ((-483 |#1| |#2|) (-952 |#2|))) (-15 -3131 ((-952 |#2|) (-483 |#1| |#2|))) (-15 -1738 ((-952 |#2|) (-247 |#1| |#2|))) (-15 -1589 ((-247 |#1| |#2|) (-952 |#2|)))) (-644 (-1175)) (-1049)) (T -944))
-((-1589 (*1 *2 *3) (-12 (-5 *3 (-952 *5)) (-4 *5 (-1049)) (-5 *2 (-247 *4 *5)) (-5 *1 (-944 *4 *5)) (-14 *4 (-644 (-1175))))) (-1738 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049)) (-5 *2 (-952 *5)) (-5 *1 (-944 *4 *5)))) (-3131 (*1 *2 *3) (-12 (-5 *3 (-483 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049)) (-5 *2 (-952 *5)) (-5 *1 (-944 *4 *5)))) (-2839 (*1 *2 *3) (-12 (-5 *3 (-952 *5)) (-4 *5 (-1049)) (-5 *2 (-483 *4 *5)) (-5 *1 (-944 *4 *5)) (-14 *4 (-644 (-1175))))) (-3941 (*1 *2 *3) (-12 (-5 *3 (-483 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049)) (-5 *2 (-247 *4 *5)) (-5 *1 (-944 *4 *5)))) (-2150 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049)) (-5 *2 (-483 *4 *5)) (-5 *1 (-944 *4 *5)))))
-(-10 -7 (-15 -2150 ((-483 |#1| |#2|) (-247 |#1| |#2|))) (-15 -3941 ((-247 |#1| |#2|) (-483 |#1| |#2|))) (-15 -2839 ((-483 |#1| |#2|) (-952 |#2|))) (-15 -3131 ((-952 |#2|) (-483 |#1| |#2|))) (-15 -1738 ((-952 |#2|) (-247 |#1| |#2|))) (-15 -1589 ((-247 |#1| |#2|) (-952 |#2|))))
-((-2162 (((-644 |#2|) |#2| |#2|) 10)) (-3407 (((-771) (-644 |#1|)) 48 (|has| |#1| (-848)))) (-3111 (((-644 |#2|) |#2|) 11)) (-1329 (((-771) (-644 |#1|) (-566) (-566)) 52 (|has| |#1| (-848)))) (-3373 ((|#1| |#2|) 38 (|has| |#1| (-848)))))
-(((-945 |#1| |#2|) (-10 -7 (-15 -2162 ((-644 |#2|) |#2| |#2|)) (-15 -3111 ((-644 |#2|) |#2|)) (IF (|has| |#1| (-848)) (PROGN (-15 -3373 (|#1| |#2|)) (-15 -3407 ((-771) (-644 |#1|))) (-15 -1329 ((-771) (-644 |#1|) (-566) (-566)))) |%noBranch|)) (-365) (-1240 |#1|)) (T -945))
-((-1329 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-566)) (-4 *5 (-848)) (-4 *5 (-365)) (-5 *2 (-771)) (-5 *1 (-945 *5 *6)) (-4 *6 (-1240 *5)))) (-3407 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-848)) (-4 *4 (-365)) (-5 *2 (-771)) (-5 *1 (-945 *4 *5)) (-4 *5 (-1240 *4)))) (-3373 (*1 *2 *3) (-12 (-4 *2 (-365)) (-4 *2 (-848)) (-5 *1 (-945 *2 *3)) (-4 *3 (-1240 *2)))) (-3111 (*1 *2 *3) (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-945 *4 *3)) (-4 *3 (-1240 *4)))) (-2162 (*1 *2 *3 *3) (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-945 *4 *3)) (-4 *3 (-1240 *4)))))
-(-10 -7 (-15 -2162 ((-644 |#2|) |#2| |#2|)) (-15 -3111 ((-644 |#2|) |#2|)) (IF (|has| |#1| (-848)) (PROGN (-15 -3373 (|#1| |#2|)) (-15 -3407 ((-771) (-644 |#1|))) (-15 -1329 ((-771) (-644 |#1|) (-566) (-566)))) |%noBranch|))
-((-3077 (((-952 |#2|) (-1 |#2| |#1|) (-952 |#1|)) 19)))
-(((-946 |#1| |#2|) (-10 -7 (-15 -3077 ((-952 |#2|) (-1 |#2| |#1|) (-952 |#1|)))) (-1049) (-1049)) (T -946))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-952 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-5 *2 (-952 *6)) (-5 *1 (-946 *5 *6)))))
-(-10 -7 (-15 -3077 ((-952 |#2|) (-1 |#2| |#1|) (-952 |#1|))))
-((-2358 (((-1237 |#1| (-952 |#2|)) (-952 |#2|) (-1260 |#1|)) 18)))
-(((-947 |#1| |#2|) (-10 -7 (-15 -2358 ((-1237 |#1| (-952 |#2|)) (-952 |#2|) (-1260 |#1|)))) (-1175) (-1049)) (T -947))
-((-2358 (*1 *2 *3 *4) (-12 (-5 *4 (-1260 *5)) (-14 *5 (-1175)) (-4 *6 (-1049)) (-5 *2 (-1237 *5 (-952 *6))) (-5 *1 (-947 *5 *6)) (-5 *3 (-952 *6)))))
-(-10 -7 (-15 -2358 ((-1237 |#1| (-952 |#2|)) (-952 |#2|) (-1260 |#1|))))
-((-3678 (((-771) $) 88) (((-771) $ (-644 |#4|)) 93)) (-2857 (($ $) 203)) (-1370 (((-420 $) $) 195)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 141)) (-2977 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 |#4| "failed") $) 74)) (-1756 ((|#2| $) NIL) (((-409 (-566)) $) NIL) (((-566) $) NIL) ((|#4| $) 73)) (-1552 (($ $ $ |#4|) 95)) (-1628 (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 131) (((-689 |#2|) (-689 $)) 121)) (-4248 (($ $) 210) (($ $ |#4|) 213)) (-3567 (((-644 $) $) 77)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 229) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 222)) (-1363 (((-644 $) $) 34)) (-2519 (($ |#2| |#3|) NIL) (($ $ |#4| (-771)) NIL) (($ $ (-644 |#4|) (-644 (-771))) 71)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ |#4|) 192)) (-2692 (((-3 (-644 $) "failed") $) 52)) (-1853 (((-3 (-644 $) "failed") $) 39)) (-3285 (((-3 (-2 (|:| |var| |#4|) (|:| -3250 (-771))) "failed") $) 57)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 134)) (-1647 (((-420 (-1171 $)) (-1171 $)) 147)) (-4138 (((-420 (-1171 $)) (-1171 $)) 145)) (-2391 (((-420 $) $) 165)) (-2070 (($ $ (-644 (-295 $))) 24) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-644 |#4|) (-644 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-644 |#4|) (-644 $)) NIL)) (-2408 (($ $ |#4|) 97)) (-3134 (((-892 (-381)) $) 243) (((-892 (-566)) $) 236) (((-538) $) 251)) (-3181 ((|#2| $) NIL) (($ $ |#4|) 205)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 184)) (-2022 ((|#2| $ |#3|) NIL) (($ $ |#4| (-771)) 62) (($ $ (-644 |#4|) (-644 (-771))) 69)) (-3842 (((-3 $ "failed") $) 186)) (-3122 (((-112) $ $) 216)))
-(((-948 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4319 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -1370 ((-420 |#1|) |#1|)) (-15 -2857 (|#1| |#1|)) (-15 -3842 ((-3 |#1| "failed") |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -1356 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -1356 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -4138 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1647 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1348 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -3273 ((-3 (-1264 |#1|) "failed") (-689 |#1|))) (-15 -4248 (|#1| |#1| |#4|)) (-15 -3181 (|#1| |#1| |#4|)) (-15 -2408 (|#1| |#1| |#4|)) (-15 -1552 (|#1| |#1| |#1| |#4|)) (-15 -3567 ((-644 |#1|) |#1|)) (-15 -3678 ((-771) |#1| (-644 |#4|))) (-15 -3678 ((-771) |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| |#4|) (|:| -3250 (-771))) "failed") |#1|)) (-15 -2692 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -1853 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2519 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -2519 (|#1| |#1| |#4| (-771))) (-15 -3345 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1| |#4|)) (-15 -1363 ((-644 |#1|) |#1|)) (-15 -2022 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -2022 (|#1| |#1| |#4| (-771))) (-15 -1628 ((-689 |#2|) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -2977 ((-3 |#4| "failed") |#1|)) (-15 -1756 (|#4| |#1|)) (-15 -2070 (|#1| |#1| (-644 |#4|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#4| |#1|)) (-15 -2070 (|#1| |#1| (-644 |#4|) (-644 |#2|))) (-15 -2070 (|#1| |#1| |#4| |#2|)) (-15 -2070 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#1| |#1|)) (-15 -2070 (|#1| |#1| (-295 |#1|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2519 (|#1| |#2| |#3|)) (-15 -2022 (|#2| |#1| |#3|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -3181 (|#2| |#1|)) (-15 -4248 (|#1| |#1|)) (-15 -3122 ((-112) |#1| |#1|))) (-949 |#2| |#3| |#4|) (-1049) (-793) (-850)) (T -948))
-NIL
-(-10 -8 (-15 -4319 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -1370 ((-420 |#1|) |#1|)) (-15 -2857 (|#1| |#1|)) (-15 -3842 ((-3 |#1| "failed") |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -1356 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -1356 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -4138 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1647 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1348 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -3273 ((-3 (-1264 |#1|) "failed") (-689 |#1|))) (-15 -4248 (|#1| |#1| |#4|)) (-15 -3181 (|#1| |#1| |#4|)) (-15 -2408 (|#1| |#1| |#4|)) (-15 -1552 (|#1| |#1| |#1| |#4|)) (-15 -3567 ((-644 |#1|) |#1|)) (-15 -3678 ((-771) |#1| (-644 |#4|))) (-15 -3678 ((-771) |#1|)) (-15 -3285 ((-3 (-2 (|:| |var| |#4|) (|:| -3250 (-771))) "failed") |#1|)) (-15 -2692 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -1853 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2519 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -2519 (|#1| |#1| |#4| (-771))) (-15 -3345 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1| |#4|)) (-15 -1363 ((-644 |#1|) |#1|)) (-15 -2022 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -2022 (|#1| |#1| |#4| (-771))) (-15 -1628 ((-689 |#2|) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -2977 ((-3 |#4| "failed") |#1|)) (-15 -1756 (|#4| |#1|)) (-15 -2070 (|#1| |#1| (-644 |#4|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#4| |#1|)) (-15 -2070 (|#1| |#1| (-644 |#4|) (-644 |#2|))) (-15 -2070 (|#1| |#1| |#4| |#2|)) (-15 -2070 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#1| |#1|)) (-15 -2070 (|#1| |#1| (-295 |#1|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2519 (|#1| |#2| |#3|)) (-15 -2022 (|#2| |#1| |#3|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -3181 (|#2| |#1|)) (-15 -4248 (|#1| |#1|)) (-15 -3122 ((-112) |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2540 (((-644 |#3|) $) 112)) (-2358 (((-1171 $) $ |#3|) 127) (((-1171 |#1|) $) 126)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 89 (|has| |#1| (-558)))) (-3653 (($ $) 90 (|has| |#1| (-558)))) (-2152 (((-112) $) 92 (|has| |#1| (-558)))) (-3678 (((-771) $) 114) (((-771) $ (-644 |#3|)) 113)) (-4126 (((-3 $ "failed") $ $) 20)) (-2055 (((-420 (-1171 $)) (-1171 $)) 102 (|has| |#1| (-909)))) (-2857 (($ $) 100 (|has| |#1| (-454)))) (-1370 (((-420 $) $) 99 (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 105 (|has| |#1| (-909)))) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#1| "failed") $) 166) (((-3 (-409 (-566)) "failed") $) 163 (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) 161 (|has| |#1| (-1038 (-566)))) (((-3 |#3| "failed") $) 138)) (-1756 ((|#1| $) 165) (((-409 (-566)) $) 164 (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) 162 (|has| |#1| (-1038 (-566)))) ((|#3| $) 139)) (-1552 (($ $ $ |#3|) 110 (|has| |#1| (-172)))) (-3577 (($ $) 156)) (-1628 (((-689 (-566)) (-689 $)) 136 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 135 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 134) (((-689 |#1|) (-689 $)) 133)) (-1579 (((-3 $ "failed") $) 37)) (-4248 (($ $) 178 (|has| |#1| (-454))) (($ $ |#3|) 107 (|has| |#1| (-454)))) (-3567 (((-644 $) $) 111)) (-2635 (((-112) $) 98 (|has| |#1| (-909)))) (-2804 (($ $ |#1| |#2| $) 174)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 86 (-12 (|has| |#3| (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 85 (-12 (|has| |#3| (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-2741 (((-112) $) 35)) (-3505 (((-771) $) 171)) (-2530 (($ (-1171 |#1|) |#3|) 119) (($ (-1171 $) |#3|) 118)) (-1363 (((-644 $) $) 128)) (-4367 (((-112) $) 154)) (-2519 (($ |#1| |#2|) 155) (($ $ |#3| (-771)) 121) (($ $ (-644 |#3|) (-644 (-771))) 120)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ |#3|) 122)) (-3251 ((|#2| $) 172) (((-771) $ |#3|) 124) (((-644 (-771)) $ (-644 |#3|)) 123)) (-2132 (($ (-1 |#2| |#2|) $) 173)) (-3077 (($ (-1 |#1| |#1|) $) 153)) (-3339 (((-3 |#3| "failed") $) 125)) (-3545 (($ $) 151)) (-3557 ((|#1| $) 150)) (-2184 (($ (-644 $)) 96 (|has| |#1| (-454))) (($ $ $) 95 (|has| |#1| (-454)))) (-2878 (((-1157) $) 10)) (-2692 (((-3 (-644 $) "failed") $) 116)) (-1853 (((-3 (-644 $) "failed") $) 117)) (-3285 (((-3 (-2 (|:| |var| |#3|) (|:| -3250 (-771))) "failed") $) 115)) (-4033 (((-1119) $) 11)) (-2636 (((-112) $) 168)) (-3531 ((|#1| $) 169)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 97 (|has| |#1| (-454)))) (-2222 (($ (-644 $)) 94 (|has| |#1| (-454))) (($ $ $) 93 (|has| |#1| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) 104 (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) 103 (|has| |#1| (-909)))) (-2391 (((-420 $) $) 101 (|has| |#1| (-909)))) (-2972 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-558)))) (-2070 (($ $ (-644 (-295 $))) 147) (($ $ (-295 $)) 146) (($ $ $ $) 145) (($ $ (-644 $) (-644 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-644 |#3|) (-644 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-644 |#3|) (-644 $)) 140)) (-2408 (($ $ |#3|) 109 (|has| |#1| (-172)))) (-2862 (($ $ |#3|) 46) (($ $ (-644 |#3|)) 45) (($ $ |#3| (-771)) 44) (($ $ (-644 |#3|) (-644 (-771))) 43)) (-3992 ((|#2| $) 152) (((-771) $ |#3|) 132) (((-644 (-771)) $ (-644 |#3|)) 131)) (-3134 (((-892 (-381)) $) 84 (-12 (|has| |#3| (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) 83 (-12 (|has| |#3| (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) 82 (-12 (|has| |#3| (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3181 ((|#1| $) 177 (|has| |#1| (-454))) (($ $ |#3|) 108 (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 106 (-2438 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ $) 87 (|has| |#1| (-558))) (($ (-409 (-566))) 80 (-2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566))))))) (-3868 (((-644 |#1|) $) 170)) (-2022 ((|#1| $ |#2|) 157) (($ $ |#3| (-771)) 130) (($ $ (-644 |#3|) (-644 (-771))) 129)) (-3842 (((-3 $ "failed") $) 81 (-2805 (-2438 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) 32 T CONST)) (-2468 (($ $ $ (-771)) 175 (|has| |#1| (-172)))) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 91 (|has| |#1| (-558)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ |#3|) 42) (($ $ (-644 |#3|)) 41) (($ $ |#3| (-771)) 40) (($ $ (-644 |#3|) (-644 (-771))) 39)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 158 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 160 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 159 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
+((-2009 (((-483 |#1| |#2|) (-952 |#2|)) 22)) (-1840 (((-247 |#1| |#2|) (-952 |#2|)) 35)) (-3880 (((-952 |#2|) (-483 |#1| |#2|)) 27)) (-2844 (((-247 |#1| |#2|) (-483 |#1| |#2|)) 57)) (-3928 (((-952 |#2|) (-247 |#1| |#2|)) 32)) (-2624 (((-483 |#1| |#2|) (-247 |#1| |#2|)) 48)))
+(((-944 |#1| |#2|) (-10 -7 (-15 -2624 ((-483 |#1| |#2|) (-247 |#1| |#2|))) (-15 -2844 ((-247 |#1| |#2|) (-483 |#1| |#2|))) (-15 -2009 ((-483 |#1| |#2|) (-952 |#2|))) (-15 -3880 ((-952 |#2|) (-483 |#1| |#2|))) (-15 -3928 ((-952 |#2|) (-247 |#1| |#2|))) (-15 -1840 ((-247 |#1| |#2|) (-952 |#2|)))) (-644 (-1175)) (-1049)) (T -944))
+((-1840 (*1 *2 *3) (-12 (-5 *3 (-952 *5)) (-4 *5 (-1049)) (-5 *2 (-247 *4 *5)) (-5 *1 (-944 *4 *5)) (-14 *4 (-644 (-1175))))) (-3928 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049)) (-5 *2 (-952 *5)) (-5 *1 (-944 *4 *5)))) (-3880 (*1 *2 *3) (-12 (-5 *3 (-483 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049)) (-5 *2 (-952 *5)) (-5 *1 (-944 *4 *5)))) (-2009 (*1 *2 *3) (-12 (-5 *3 (-952 *5)) (-4 *5 (-1049)) (-5 *2 (-483 *4 *5)) (-5 *1 (-944 *4 *5)) (-14 *4 (-644 (-1175))))) (-2844 (*1 *2 *3) (-12 (-5 *3 (-483 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049)) (-5 *2 (-247 *4 *5)) (-5 *1 (-944 *4 *5)))) (-2624 (*1 *2 *3) (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049)) (-5 *2 (-483 *4 *5)) (-5 *1 (-944 *4 *5)))))
+(-10 -7 (-15 -2624 ((-483 |#1| |#2|) (-247 |#1| |#2|))) (-15 -2844 ((-247 |#1| |#2|) (-483 |#1| |#2|))) (-15 -2009 ((-483 |#1| |#2|) (-952 |#2|))) (-15 -3880 ((-952 |#2|) (-483 |#1| |#2|))) (-15 -3928 ((-952 |#2|) (-247 |#1| |#2|))) (-15 -1840 ((-247 |#1| |#2|) (-952 |#2|))))
+((-2730 (((-644 |#2|) |#2| |#2|) 10)) (-1372 (((-771) (-644 |#1|)) 48 (|has| |#1| (-848)))) (-3710 (((-644 |#2|) |#2|) 11)) (-1808 (((-771) (-644 |#1|) (-566) (-566)) 52 (|has| |#1| (-848)))) (-2290 ((|#1| |#2|) 38 (|has| |#1| (-848)))))
+(((-945 |#1| |#2|) (-10 -7 (-15 -2730 ((-644 |#2|) |#2| |#2|)) (-15 -3710 ((-644 |#2|) |#2|)) (IF (|has| |#1| (-848)) (PROGN (-15 -2290 (|#1| |#2|)) (-15 -1372 ((-771) (-644 |#1|))) (-15 -1808 ((-771) (-644 |#1|) (-566) (-566)))) |%noBranch|)) (-365) (-1240 |#1|)) (T -945))
+((-1808 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-566)) (-4 *5 (-848)) (-4 *5 (-365)) (-5 *2 (-771)) (-5 *1 (-945 *5 *6)) (-4 *6 (-1240 *5)))) (-1372 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-848)) (-4 *4 (-365)) (-5 *2 (-771)) (-5 *1 (-945 *4 *5)) (-4 *5 (-1240 *4)))) (-2290 (*1 *2 *3) (-12 (-4 *2 (-365)) (-4 *2 (-848)) (-5 *1 (-945 *2 *3)) (-4 *3 (-1240 *2)))) (-3710 (*1 *2 *3) (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-945 *4 *3)) (-4 *3 (-1240 *4)))) (-2730 (*1 *2 *3 *3) (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-945 *4 *3)) (-4 *3 (-1240 *4)))))
+(-10 -7 (-15 -2730 ((-644 |#2|) |#2| |#2|)) (-15 -3710 ((-644 |#2|) |#2|)) (IF (|has| |#1| (-848)) (PROGN (-15 -2290 (|#1| |#2|)) (-15 -1372 ((-771) (-644 |#1|))) (-15 -1808 ((-771) (-644 |#1|) (-566) (-566)))) |%noBranch|))
+((-3152 (((-952 |#2|) (-1 |#2| |#1|) (-952 |#1|)) 19)))
+(((-946 |#1| |#2|) (-10 -7 (-15 -3152 ((-952 |#2|) (-1 |#2| |#1|) (-952 |#1|)))) (-1049) (-1049)) (T -946))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-952 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-5 *2 (-952 *6)) (-5 *1 (-946 *5 *6)))))
+(-10 -7 (-15 -3152 ((-952 |#2|) (-1 |#2| |#1|) (-952 |#1|))))
+((-2438 (((-1237 |#1| (-952 |#2|)) (-952 |#2|) (-1260 |#1|)) 18)))
+(((-947 |#1| |#2|) (-10 -7 (-15 -2438 ((-1237 |#1| (-952 |#2|)) (-952 |#2|) (-1260 |#1|)))) (-1175) (-1049)) (T -947))
+((-2438 (*1 *2 *3 *4) (-12 (-5 *4 (-1260 *5)) (-14 *5 (-1175)) (-4 *6 (-1049)) (-5 *2 (-1237 *5 (-952 *6))) (-5 *1 (-947 *5 *6)) (-5 *3 (-952 *6)))))
+(-10 -7 (-15 -2438 ((-1237 |#1| (-952 |#2|)) (-952 |#2|) (-1260 |#1|))))
+((-2207 (((-771) $) 88) (((-771) $ (-644 |#4|)) 93)) (-2179 (($ $) 203)) (-3271 (((-420 $) $) 195)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 141)) (-3066 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 |#4| "failed") $) 74)) (-1867 ((|#2| $) NIL) (((-409 (-566)) $) NIL) (((-566) $) NIL) ((|#4| $) 73)) (-2662 (($ $ $ |#4|) 95)) (-2210 (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 131) (((-689 |#2|) (-689 $)) 121)) (-2755 (($ $) 210) (($ $ |#4|) 213)) (-3635 (((-644 $) $) 77)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 229) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 222)) (-2330 (((-644 $) $) 34)) (-2585 (($ |#2| |#3|) NIL) (($ $ |#4| (-771)) NIL) (($ $ (-644 |#4|) (-644 (-771))) 71)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ |#4|) 192)) (-4201 (((-3 (-644 $) "failed") $) 52)) (-2657 (((-3 (-644 $) "failed") $) 39)) (-2749 (((-3 (-2 (|:| |var| |#4|) (|:| -2456 (-771))) "failed") $) 57)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 134)) (-4255 (((-420 (-1171 $)) (-1171 $)) 147)) (-4137 (((-420 (-1171 $)) (-1171 $)) 145)) (-2473 (((-420 $) $) 165)) (-2095 (($ $ (-644 (-295 $))) 24) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-644 |#4|) (-644 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-644 |#4|) (-644 $)) NIL)) (-3309 (($ $ |#4|) 97)) (-3204 (((-892 (-381)) $) 243) (((-892 (-566)) $) 236) (((-538) $) 251)) (-3042 ((|#2| $) NIL) (($ $ |#4|) 205)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 184)) (-3756 ((|#2| $ |#3|) NIL) (($ $ |#4| (-771)) 62) (($ $ (-644 |#4|) (-644 (-771))) 69)) (-3226 (((-3 $ "failed") $) 186)) (-3801 (((-112) $ $) 216)))
+(((-948 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2221 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -3271 ((-420 |#1|) |#1|)) (-15 -2179 (|#1| |#1|)) (-15 -3226 ((-3 |#1| "failed") |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -1525 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -1525 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -4137 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -4255 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -3354 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -2664 ((-3 (-1264 |#1|) "failed") (-689 |#1|))) (-15 -2755 (|#1| |#1| |#4|)) (-15 -3042 (|#1| |#1| |#4|)) (-15 -3309 (|#1| |#1| |#4|)) (-15 -2662 (|#1| |#1| |#1| |#4|)) (-15 -3635 ((-644 |#1|) |#1|)) (-15 -2207 ((-771) |#1| (-644 |#4|))) (-15 -2207 ((-771) |#1|)) (-15 -2749 ((-3 (-2 (|:| |var| |#4|) (|:| -2456 (-771))) "failed") |#1|)) (-15 -4201 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2657 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2585 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -2585 (|#1| |#1| |#4| (-771))) (-15 -2039 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1| |#4|)) (-15 -2330 ((-644 |#1|) |#1|)) (-15 -3756 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -3756 (|#1| |#1| |#4| (-771))) (-15 -2210 ((-689 |#2|) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -3066 ((-3 |#4| "failed") |#1|)) (-15 -1867 (|#4| |#1|)) (-15 -2095 (|#1| |#1| (-644 |#4|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#4| |#1|)) (-15 -2095 (|#1| |#1| (-644 |#4|) (-644 |#2|))) (-15 -2095 (|#1| |#1| |#4| |#2|)) (-15 -2095 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| (-295 |#1|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2585 (|#1| |#2| |#3|)) (-15 -3756 (|#2| |#1| |#3|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3042 (|#2| |#1|)) (-15 -2755 (|#1| |#1|)) (-15 -3801 ((-112) |#1| |#1|))) (-949 |#2| |#3| |#4|) (-1049) (-793) (-850)) (T -948))
+NIL
+(-10 -8 (-15 -2221 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -3271 ((-420 |#1|) |#1|)) (-15 -2179 (|#1| |#1|)) (-15 -3226 ((-3 |#1| "failed") |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -1525 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -1525 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -4137 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -4255 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -3354 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -2664 ((-3 (-1264 |#1|) "failed") (-689 |#1|))) (-15 -2755 (|#1| |#1| |#4|)) (-15 -3042 (|#1| |#1| |#4|)) (-15 -3309 (|#1| |#1| |#4|)) (-15 -2662 (|#1| |#1| |#1| |#4|)) (-15 -3635 ((-644 |#1|) |#1|)) (-15 -2207 ((-771) |#1| (-644 |#4|))) (-15 -2207 ((-771) |#1|)) (-15 -2749 ((-3 (-2 (|:| |var| |#4|) (|:| -2456 (-771))) "failed") |#1|)) (-15 -4201 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2657 ((-3 (-644 |#1|) "failed") |#1|)) (-15 -2585 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -2585 (|#1| |#1| |#4| (-771))) (-15 -2039 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1| |#4|)) (-15 -2330 ((-644 |#1|) |#1|)) (-15 -3756 (|#1| |#1| (-644 |#4|) (-644 (-771)))) (-15 -3756 (|#1| |#1| |#4| (-771))) (-15 -2210 ((-689 |#2|) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -3066 ((-3 |#4| "failed") |#1|)) (-15 -1867 (|#4| |#1|)) (-15 -2095 (|#1| |#1| (-644 |#4|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#4| |#1|)) (-15 -2095 (|#1| |#1| (-644 |#4|) (-644 |#2|))) (-15 -2095 (|#1| |#1| |#4| |#2|)) (-15 -2095 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| (-295 |#1|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2585 (|#1| |#2| |#3|)) (-15 -3756 (|#2| |#1| |#3|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3042 (|#2| |#1|)) (-15 -2755 (|#1| |#1|)) (-15 -3801 ((-112) |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2608 (((-644 |#3|) $) 112)) (-2438 (((-1171 $) $ |#3|) 127) (((-1171 |#1|) $) 126)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 89 (|has| |#1| (-558)))) (-1968 (($ $) 90 (|has| |#1| (-558)))) (-2644 (((-112) $) 92 (|has| |#1| (-558)))) (-2207 (((-771) $) 114) (((-771) $ (-644 |#3|)) 113)) (-4014 (((-3 $ "failed") $ $) 20)) (-4077 (((-420 (-1171 $)) (-1171 $)) 102 (|has| |#1| (-909)))) (-2179 (($ $) 100 (|has| |#1| (-454)))) (-3271 (((-420 $) $) 99 (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 105 (|has| |#1| (-909)))) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#1| "failed") $) 166) (((-3 (-409 (-566)) "failed") $) 163 (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) 161 (|has| |#1| (-1038 (-566)))) (((-3 |#3| "failed") $) 138)) (-1867 ((|#1| $) 165) (((-409 (-566)) $) 164 (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) 162 (|has| |#1| (-1038 (-566)))) ((|#3| $) 139)) (-2662 (($ $ $ |#3|) 110 (|has| |#1| (-172)))) (-3645 (($ $) 156)) (-2210 (((-689 (-566)) (-689 $)) 136 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 135 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 134) (((-689 |#1|) (-689 $)) 133)) (-2928 (((-3 $ "failed") $) 37)) (-2755 (($ $) 178 (|has| |#1| (-454))) (($ $ |#3|) 107 (|has| |#1| (-454)))) (-3635 (((-644 $) $) 111)) (-1784 (((-112) $) 98 (|has| |#1| (-909)))) (-2871 (($ $ |#1| |#2| $) 174)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 86 (-12 (|has| |#3| (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 85 (-12 (|has| |#3| (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3466 (((-112) $) 35)) (-4230 (((-771) $) 171)) (-2597 (($ (-1171 |#1|) |#3|) 119) (($ (-1171 $) |#3|) 118)) (-2330 (((-644 $) $) 128)) (-1453 (((-112) $) 154)) (-2585 (($ |#1| |#2|) 155) (($ $ |#3| (-771)) 121) (($ $ (-644 |#3|) (-644 (-771))) 120)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ |#3|) 122)) (-2466 ((|#2| $) 172) (((-771) $ |#3|) 124) (((-644 (-771)) $ (-644 |#3|)) 123)) (-2443 (($ (-1 |#2| |#2|) $) 173)) (-3152 (($ (-1 |#1| |#1|) $) 153)) (-1984 (((-3 |#3| "failed") $) 125)) (-3614 (($ $) 151)) (-3626 ((|#1| $) 150)) (-2197 (($ (-644 $)) 96 (|has| |#1| (-454))) (($ $ $) 95 (|has| |#1| (-454)))) (-2402 (((-1157) $) 10)) (-4201 (((-3 (-644 $) "failed") $) 116)) (-2657 (((-3 (-644 $) "failed") $) 117)) (-2749 (((-3 (-2 (|:| |var| |#3|) (|:| -2456 (-771))) "failed") $) 115)) (-4056 (((-1119) $) 11)) (-3595 (((-112) $) 168)) (-3604 ((|#1| $) 169)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 97 (|has| |#1| (-454)))) (-2235 (($ (-644 $)) 94 (|has| |#1| (-454))) (($ $ $) 93 (|has| |#1| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) 104 (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) 103 (|has| |#1| (-909)))) (-2473 (((-420 $) $) 101 (|has| |#1| (-909)))) (-2997 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-558)))) (-2095 (($ $ (-644 (-295 $))) 147) (($ $ (-295 $)) 146) (($ $ $ $) 145) (($ $ (-644 $) (-644 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-644 |#3|) (-644 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-644 |#3|) (-644 $)) 140)) (-3309 (($ $ |#3|) 109 (|has| |#1| (-172)))) (-2578 (($ $ |#3|) 46) (($ $ (-644 |#3|)) 45) (($ $ |#3| (-771)) 44) (($ $ (-644 |#3|) (-644 (-771))) 43)) (-2108 ((|#2| $) 152) (((-771) $ |#3|) 132) (((-644 (-771)) $ (-644 |#3|)) 131)) (-3204 (((-892 (-381)) $) 84 (-12 (|has| |#3| (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) 83 (-12 (|has| |#3| (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) 82 (-12 (|has| |#3| (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3042 ((|#1| $) 177 (|has| |#1| (-454))) (($ $ |#3|) 108 (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 106 (-2447 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ $) 87 (|has| |#1| (-558))) (($ (-409 (-566))) 80 (-2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566))))))) (-3456 (((-644 |#1|) $) 170)) (-3756 ((|#1| $ |#2|) 157) (($ $ |#3| (-771)) 130) (($ $ (-644 |#3|) (-644 (-771))) 129)) (-3226 (((-3 $ "failed") $) 81 (-2805 (-2447 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) 32 T CONST)) (-2629 (($ $ $ (-771)) 175 (|has| |#1| (-172)))) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 91 (|has| |#1| (-558)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ |#3|) 42) (($ $ (-644 |#3|)) 41) (($ $ |#3| (-771)) 40) (($ $ (-644 |#3|) (-644 (-771))) 39)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 158 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 160 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 159 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
(((-949 |#1| |#2| |#3|) (-140) (-1049) (-793) (-850)) (T -949))
-((-4248 (*1 *1 *1) (-12 (-4 *1 (-949 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-3992 (*1 *2 *1 *3) (-12 (-4 *1 (-949 *4 *5 *3)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-771)))) (-3992 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-771))))) (-2022 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-949 *4 *5 *2)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *2 (-850)))) (-2022 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *6)) (-5 *3 (-644 (-771))) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)))) (-1363 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-949 *3 *4 *5)))) (-2358 (*1 *2 *1 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-1171 *1)) (-4 *1 (-949 *4 *5 *3)))) (-2358 (*1 *2 *1) (-12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-1171 *3)))) (-3339 (*1 *2 *1) (|partial| -12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-3251 (*1 *2 *1 *3) (-12 (-4 *1 (-949 *4 *5 *3)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-771)))) (-3251 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-771))))) (-3345 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-949 *4 *5 *3)))) (-2519 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-949 *4 *5 *2)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *2 (-850)))) (-2519 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *6)) (-5 *3 (-644 (-771))) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)))) (-2530 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *4)) (-4 *4 (-1049)) (-4 *1 (-949 *4 *5 *3)) (-4 *5 (-793)) (-4 *3 (-850)))) (-2530 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-949 *4 *5 *3)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)))) (-1853 (*1 *2 *1) (|partial| -12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-949 *3 *4 *5)))) (-2692 (*1 *2 *1) (|partial| -12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-949 *3 *4 *5)))) (-3285 (*1 *2 *1) (|partial| -12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| |var| *5) (|:| -3250 (-771)))))) (-3678 (*1 *2 *1) (-12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-771)))) (-3678 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-771)))) (-2540 (*1 *2 *1) (-12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *5)))) (-3567 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-949 *3 *4 *5)))) (-1552 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *3 (-172)))) (-2408 (*1 *1 *1 *2) (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *3 (-172)))) (-3181 (*1 *1 *1 *2) (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *3 (-454)))) (-4248 (*1 *1 *1 *2) (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *3 (-454)))) (-2857 (*1 *1 *1) (-12 (-4 *1 (-949 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-1370 (*1 *2 *1) (-12 (-4 *3 (-454)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-420 *1)) (-4 *1 (-949 *3 *4 *5)))))
-(-13 (-900 |t#3|) (-327 |t#1| |t#2|) (-310 $) (-516 |t#3| |t#1|) (-516 |t#3| $) (-1038 |t#3|) (-379 |t#1|) (-10 -8 (-15 -3992 ((-771) $ |t#3|)) (-15 -3992 ((-644 (-771)) $ (-644 |t#3|))) (-15 -2022 ($ $ |t#3| (-771))) (-15 -2022 ($ $ (-644 |t#3|) (-644 (-771)))) (-15 -1363 ((-644 $) $)) (-15 -2358 ((-1171 $) $ |t#3|)) (-15 -2358 ((-1171 |t#1|) $)) (-15 -3339 ((-3 |t#3| "failed") $)) (-15 -3251 ((-771) $ |t#3|)) (-15 -3251 ((-644 (-771)) $ (-644 |t#3|))) (-15 -3345 ((-2 (|:| -2760 $) (|:| -1644 $)) $ $ |t#3|)) (-15 -2519 ($ $ |t#3| (-771))) (-15 -2519 ($ $ (-644 |t#3|) (-644 (-771)))) (-15 -2530 ($ (-1171 |t#1|) |t#3|)) (-15 -2530 ($ (-1171 $) |t#3|)) (-15 -1853 ((-3 (-644 $) "failed") $)) (-15 -2692 ((-3 (-644 $) "failed") $)) (-15 -3285 ((-3 (-2 (|:| |var| |t#3|) (|:| -3250 (-771))) "failed") $)) (-15 -3678 ((-771) $)) (-15 -3678 ((-771) $ (-644 |t#3|))) (-15 -2540 ((-644 |t#3|) $)) (-15 -3567 ((-644 $) $)) (IF (|has| |t#1| (-614 (-538))) (IF (|has| |t#3| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-614 (-892 (-566)))) (IF (|has| |t#3| (-614 (-892 (-566)))) (-6 (-614 (-892 (-566)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-614 (-892 (-381)))) (IF (|has| |t#3| (-614 (-892 (-381)))) (-6 (-614 (-892 (-381)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-886 (-566))) (IF (|has| |t#3| (-886 (-566))) (-6 (-886 (-566))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-886 (-381))) (IF (|has| |t#3| (-886 (-381))) (-6 (-886 (-381))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-15 -1552 ($ $ $ |t#3|)) (-15 -2408 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-454)) (PROGN (-6 (-454)) (-15 -3181 ($ $ |t#3|)) (-15 -4248 ($ $)) (-15 -4248 ($ $ |t#3|)) (-15 -1370 ((-420 $) $)) (-15 -2857 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4415)) (-6 -4415) |%noBranch|) (IF (|has| |t#1| (-909)) (-6 (-909)) |%noBranch|)))
+((-2755 (*1 *1 *1) (-12 (-4 *1 (-949 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-2108 (*1 *2 *1 *3) (-12 (-4 *1 (-949 *4 *5 *3)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-771)))) (-2108 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-771))))) (-3756 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-949 *4 *5 *2)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *2 (-850)))) (-3756 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *6)) (-5 *3 (-644 (-771))) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)))) (-2330 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-949 *3 *4 *5)))) (-2438 (*1 *2 *1 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-1171 *1)) (-4 *1 (-949 *4 *5 *3)))) (-2438 (*1 *2 *1) (-12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-1171 *3)))) (-1984 (*1 *2 *1) (|partial| -12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-2466 (*1 *2 *1 *3) (-12 (-4 *1 (-949 *4 *5 *3)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-771)))) (-2466 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-771))))) (-2039 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-949 *4 *5 *3)))) (-2585 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-949 *4 *5 *2)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *2 (-850)))) (-2585 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *6)) (-5 *3 (-644 (-771))) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)))) (-2597 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *4)) (-4 *4 (-1049)) (-4 *1 (-949 *4 *5 *3)) (-4 *5 (-793)) (-4 *3 (-850)))) (-2597 (*1 *1 *2 *3) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-949 *4 *5 *3)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)))) (-2657 (*1 *2 *1) (|partial| -12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-949 *3 *4 *5)))) (-4201 (*1 *2 *1) (|partial| -12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-949 *3 *4 *5)))) (-2749 (*1 *2 *1) (|partial| -12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| |var| *5) (|:| -2456 (-771)))))) (-2207 (*1 *2 *1) (-12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-771)))) (-2207 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-771)))) (-2608 (*1 *2 *1) (-12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *5)))) (-3635 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-949 *3 *4 *5)))) (-2662 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *3 (-172)))) (-3309 (*1 *1 *1 *2) (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *3 (-172)))) (-3042 (*1 *1 *1 *2) (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *3 (-454)))) (-2755 (*1 *1 *1 *2) (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *3 (-454)))) (-2179 (*1 *1 *1) (-12 (-4 *1 (-949 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-3271 (*1 *2 *1) (-12 (-4 *3 (-454)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-420 *1)) (-4 *1 (-949 *3 *4 *5)))))
+(-13 (-900 |t#3|) (-327 |t#1| |t#2|) (-310 $) (-516 |t#3| |t#1|) (-516 |t#3| $) (-1038 |t#3|) (-379 |t#1|) (-10 -8 (-15 -2108 ((-771) $ |t#3|)) (-15 -2108 ((-644 (-771)) $ (-644 |t#3|))) (-15 -3756 ($ $ |t#3| (-771))) (-15 -3756 ($ $ (-644 |t#3|) (-644 (-771)))) (-15 -2330 ((-644 $) $)) (-15 -2438 ((-1171 $) $ |t#3|)) (-15 -2438 ((-1171 |t#1|) $)) (-15 -1984 ((-3 |t#3| "failed") $)) (-15 -2466 ((-771) $ |t#3|)) (-15 -2466 ((-644 (-771)) $ (-644 |t#3|))) (-15 -2039 ((-2 (|:| -3644 $) (|:| -4228 $)) $ $ |t#3|)) (-15 -2585 ($ $ |t#3| (-771))) (-15 -2585 ($ $ (-644 |t#3|) (-644 (-771)))) (-15 -2597 ($ (-1171 |t#1|) |t#3|)) (-15 -2597 ($ (-1171 $) |t#3|)) (-15 -2657 ((-3 (-644 $) "failed") $)) (-15 -4201 ((-3 (-644 $) "failed") $)) (-15 -2749 ((-3 (-2 (|:| |var| |t#3|) (|:| -2456 (-771))) "failed") $)) (-15 -2207 ((-771) $)) (-15 -2207 ((-771) $ (-644 |t#3|))) (-15 -2608 ((-644 |t#3|) $)) (-15 -3635 ((-644 $) $)) (IF (|has| |t#1| (-614 (-538))) (IF (|has| |t#3| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-614 (-892 (-566)))) (IF (|has| |t#3| (-614 (-892 (-566)))) (-6 (-614 (-892 (-566)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-614 (-892 (-381)))) (IF (|has| |t#3| (-614 (-892 (-381)))) (-6 (-614 (-892 (-381)))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-886 (-566))) (IF (|has| |t#3| (-886 (-566))) (-6 (-886 (-566))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-886 (-381))) (IF (|has| |t#3| (-886 (-381))) (-6 (-886 (-381))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-15 -2662 ($ $ $ |t#3|)) (-15 -3309 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-454)) (PROGN (-6 (-454)) (-15 -3042 ($ $ |t#3|)) (-15 -2755 ($ $)) (-15 -2755 ($ $ |t#3|)) (-15 -3271 ((-420 $) $)) (-15 -2179 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4412)) (-6 -4412) |%noBranch|) (IF (|has| |t#1| (-909)) (-6 (-909)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-409 (-566)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) -2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566))))) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-616 |#3|) . T) ((-616 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-614 (-538)) -12 (|has| |#1| (-614 (-538))) (|has| |#3| (-614 (-538)))) ((-614 (-892 (-381))) -12 (|has| |#1| (-614 (-892 (-381)))) (|has| |#3| (-614 (-892 (-381))))) ((-614 (-892 (-566))) -12 (|has| |#1| (-614 (-892 (-566)))) (|has| |#3| (-614 (-892 (-566))))) ((-291) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-310 $) . T) ((-327 |#1| |#2|) . T) ((-379 |#1|) . T) ((-413 |#1|) . T) ((-454) -2805 (|has| |#1| (-909)) (|has| |#1| (-454))) ((-516 |#3| |#1|) . T) ((-516 |#3| $) . T) ((-516 $ $) . T) ((-558) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-646 #0#) |has| |#1| (-38 (-409 (-566)))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) |has| |#1| (-38 (-409 (-566)))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) |has| |#1| (-38 (-409 (-566)))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-639 (-566)) |has| |#1| (-639 (-566))) ((-639 |#1|) . T) ((-717 #0#) |has| |#1| (-38 (-409 (-566)))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-726) . T) ((-900 |#3|) . T) ((-886 (-381)) -12 (|has| |#1| (-886 (-381))) (|has| |#3| (-886 (-381)))) ((-886 (-566)) -12 (|has| |#1| (-886 (-566))) (|has| |#3| (-886 (-566)))) ((-909) |has| |#1| (-909)) ((-1038 (-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T) ((-1038 |#3|) . T) ((-1051 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-1056 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) |has| |#1| (-909)))
-((-2540 (((-644 |#2|) |#5|) 40)) (-2358 (((-1171 |#5|) |#5| |#2| (-1171 |#5|)) 23) (((-409 (-1171 |#5|)) |#5| |#2|) 16)) (-2530 ((|#5| (-409 (-1171 |#5|)) |#2|) 30)) (-3339 (((-3 |#2| "failed") |#5|) 71)) (-2692 (((-3 (-644 |#5|) "failed") |#5|) 65)) (-3658 (((-3 (-2 (|:| |val| |#5|) (|:| -3250 (-566))) "failed") |#5|) 53)) (-1853 (((-3 (-644 |#5|) "failed") |#5|) 67)) (-3285 (((-3 (-2 (|:| |var| |#2|) (|:| -3250 (-566))) "failed") |#5|) 57)))
-(((-950 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2540 ((-644 |#2|) |#5|)) (-15 -3339 ((-3 |#2| "failed") |#5|)) (-15 -2358 ((-409 (-1171 |#5|)) |#5| |#2|)) (-15 -2530 (|#5| (-409 (-1171 |#5|)) |#2|)) (-15 -2358 ((-1171 |#5|) |#5| |#2| (-1171 |#5|))) (-15 -1853 ((-3 (-644 |#5|) "failed") |#5|)) (-15 -2692 ((-3 (-644 |#5|) "failed") |#5|)) (-15 -3285 ((-3 (-2 (|:| |var| |#2|) (|:| -3250 (-566))) "failed") |#5|)) (-15 -3658 ((-3 (-2 (|:| |val| |#5|) (|:| -3250 (-566))) "failed") |#5|))) (-793) (-850) (-1049) (-949 |#3| |#1| |#2|) (-13 (-365) (-10 -8 (-15 -2512 ($ |#4|)) (-15 -3001 (|#4| $)) (-15 -3013 (|#4| $))))) (T -950))
-((-3658 (*1 *2 *3) (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -3250 (-566)))) (-5 *1 (-950 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))))) (-3285 (*1 *2 *3) (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -3250 (-566)))) (-5 *1 (-950 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))))) (-2692 (*1 *2 *3) (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-644 *3)) (-5 *1 (-950 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))))) (-1853 (*1 *2 *3) (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-644 *3)) (-5 *1 (-950 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))))) (-2358 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))) (-4 *7 (-949 *6 *5 *4)) (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-1049)) (-5 *1 (-950 *5 *4 *6 *7 *3)))) (-2530 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-1171 *2))) (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-1049)) (-4 *2 (-13 (-365) (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))) (-5 *1 (-950 *5 *4 *6 *7 *2)) (-4 *7 (-949 *6 *5 *4)))) (-2358 (*1 *2 *3 *4) (-12 (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *5 *4)) (-5 *2 (-409 (-1171 *3))) (-5 *1 (-950 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))))) (-3339 (*1 *2 *3) (|partial| -12 (-4 *4 (-793)) (-4 *5 (-1049)) (-4 *6 (-949 *5 *4 *2)) (-4 *2 (-850)) (-5 *1 (-950 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -2512 ($ *6)) (-15 -3001 (*6 $)) (-15 -3013 (*6 $))))))) (-2540 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-644 *5)) (-5 *1 (-950 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))))))
-(-10 -7 (-15 -2540 ((-644 |#2|) |#5|)) (-15 -3339 ((-3 |#2| "failed") |#5|)) (-15 -2358 ((-409 (-1171 |#5|)) |#5| |#2|)) (-15 -2530 (|#5| (-409 (-1171 |#5|)) |#2|)) (-15 -2358 ((-1171 |#5|) |#5| |#2| (-1171 |#5|))) (-15 -1853 ((-3 (-644 |#5|) "failed") |#5|)) (-15 -2692 ((-3 (-644 |#5|) "failed") |#5|)) (-15 -3285 ((-3 (-2 (|:| |var| |#2|) (|:| -3250 (-566))) "failed") |#5|)) (-15 -3658 ((-3 (-2 (|:| |val| |#5|) (|:| -3250 (-566))) "failed") |#5|)))
-((-3077 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
-(((-951 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3077 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-793) (-850) (-1049) (-949 |#3| |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -3034 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-771)))))) (T -951))
-((-3077 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-850)) (-4 *8 (-1049)) (-4 *6 (-793)) (-4 *2 (-13 (-1099) (-10 -8 (-15 -3034 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-771)))))) (-5 *1 (-951 *6 *7 *8 *5 *2)) (-4 *5 (-949 *8 *6 *7)))))
-(-10 -7 (-15 -3077 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-1175)) $) 16)) (-2358 (((-1171 $) $ (-1175)) 21) (((-1171 |#1|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-1175))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2857 (($ $) NIL (|has| |#1| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) 8) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-1175) "failed") $) NIL)) (-1756 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-1175) $) NIL)) (-1552 (($ $ $ (-1175)) NIL (|has| |#1| (-172)))) (-3577 (($ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#1| (-454))) (($ $ (-1175)) NIL (|has| |#1| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#1| (-909)))) (-2804 (($ $ |#1| (-533 (-1175)) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1175) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1175) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-2530 (($ (-1171 |#1|) (-1175)) NIL) (($ (-1171 $) (-1175)) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-533 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-1175)) NIL)) (-3251 (((-533 (-1175)) $) NIL) (((-771) $ (-1175)) NIL) (((-644 (-771)) $ (-644 (-1175))) NIL)) (-2132 (($ (-1 (-533 (-1175)) (-533 (-1175))) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3339 (((-3 (-1175) "failed") $) 19)) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2878 (((-1157) $) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-1175)) (|:| -3250 (-771))) "failed") $) NIL)) (-4117 (($ $ (-1175)) 29 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 ((|#1| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1175) |#1|) NIL) (($ $ (-644 (-1175)) (-644 |#1|)) NIL) (($ $ (-1175) $) NIL) (($ $ (-644 (-1175)) (-644 $)) NIL)) (-2408 (($ $ (-1175)) NIL (|has| |#1| (-172)))) (-2862 (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-3992 (((-533 (-1175)) $) NIL) (((-771) $ (-1175)) NIL) (((-644 (-771)) $ (-644 (-1175))) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-1175) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1175) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1175) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3181 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ (-1175)) NIL (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) 25) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-1175)) 27) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-533 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-952 |#1|) (-13 (-949 |#1| (-533 (-1175)) (-1175)) (-10 -8 (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1175))) |%noBranch|))) (-1049)) (T -952))
-((-4117 (*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-952 *3)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)))))
-(-13 (-949 |#1| (-533 (-1175)) (-1175)) (-10 -8 (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1175))) |%noBranch|)))
-((-2472 (((-2 (|:| -3250 (-771)) (|:| -3157 |#5|) (|:| |radicand| |#5|)) |#3| (-771)) 49)) (-4282 (((-2 (|:| -3250 (-771)) (|:| -3157 |#5|) (|:| |radicand| |#5|)) (-409 (-566)) (-771)) 44)) (-3523 (((-2 (|:| -3250 (-771)) (|:| -3157 |#4|) (|:| |radicand| (-644 |#4|))) |#4| (-771)) 65)) (-1891 (((-2 (|:| -3250 (-771)) (|:| -3157 |#5|) (|:| |radicand| |#5|)) |#5| (-771)) 74 (|has| |#3| (-454)))))
-(((-953 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2472 ((-2 (|:| -3250 (-771)) (|:| -3157 |#5|) (|:| |radicand| |#5|)) |#3| (-771))) (-15 -4282 ((-2 (|:| -3250 (-771)) (|:| -3157 |#5|) (|:| |radicand| |#5|)) (-409 (-566)) (-771))) (IF (|has| |#3| (-454)) (-15 -1891 ((-2 (|:| -3250 (-771)) (|:| -3157 |#5|) (|:| |radicand| |#5|)) |#5| (-771))) |%noBranch|) (-15 -3523 ((-2 (|:| -3250 (-771)) (|:| -3157 |#4|) (|:| |radicand| (-644 |#4|))) |#4| (-771)))) (-793) (-850) (-558) (-949 |#3| |#1| |#2|) (-13 (-365) (-10 -8 (-15 -2512 ($ |#4|)) (-15 -3001 (|#4| $)) (-15 -3013 (|#4| $))))) (T -953))
-((-3523 (*1 *2 *3 *4) (-12 (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-558)) (-4 *3 (-949 *7 *5 *6)) (-5 *2 (-2 (|:| -3250 (-771)) (|:| -3157 *3) (|:| |radicand| (-644 *3)))) (-5 *1 (-953 *5 *6 *7 *3 *8)) (-5 *4 (-771)) (-4 *8 (-13 (-365) (-10 -8 (-15 -2512 ($ *3)) (-15 -3001 (*3 $)) (-15 -3013 (*3 $))))))) (-1891 (*1 *2 *3 *4) (-12 (-4 *7 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-558)) (-4 *8 (-949 *7 *5 *6)) (-5 *2 (-2 (|:| -3250 (-771)) (|:| -3157 *3) (|:| |radicand| *3))) (-5 *1 (-953 *5 *6 *7 *8 *3)) (-5 *4 (-771)) (-4 *3 (-13 (-365) (-10 -8 (-15 -2512 ($ *8)) (-15 -3001 (*8 $)) (-15 -3013 (*8 $))))))) (-4282 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-566))) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-558)) (-4 *8 (-949 *7 *5 *6)) (-5 *2 (-2 (|:| -3250 (-771)) (|:| -3157 *9) (|:| |radicand| *9))) (-5 *1 (-953 *5 *6 *7 *8 *9)) (-5 *4 (-771)) (-4 *9 (-13 (-365) (-10 -8 (-15 -2512 ($ *8)) (-15 -3001 (*8 $)) (-15 -3013 (*8 $))))))) (-2472 (*1 *2 *3 *4) (-12 (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-558)) (-4 *7 (-949 *3 *5 *6)) (-5 *2 (-2 (|:| -3250 (-771)) (|:| -3157 *8) (|:| |radicand| *8))) (-5 *1 (-953 *5 *6 *3 *7 *8)) (-5 *4 (-771)) (-4 *8 (-13 (-365) (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))))))
-(-10 -7 (-15 -2472 ((-2 (|:| -3250 (-771)) (|:| -3157 |#5|) (|:| |radicand| |#5|)) |#3| (-771))) (-15 -4282 ((-2 (|:| -3250 (-771)) (|:| -3157 |#5|) (|:| |radicand| |#5|)) (-409 (-566)) (-771))) (IF (|has| |#3| (-454)) (-15 -1891 ((-2 (|:| -3250 (-771)) (|:| -3157 |#5|) (|:| |radicand| |#5|)) |#5| (-771))) |%noBranch|) (-15 -3523 ((-2 (|:| -3250 (-771)) (|:| -3157 |#4|) (|:| |radicand| (-644 |#4|))) |#4| (-771))))
-((-2985 (((-112) $ $) NIL)) (-1432 (($ (-1119)) 8)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 15) (((-1119) $) 12)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 11)))
-(((-954) (-13 (-1099) (-613 (-1119)) (-10 -8 (-15 -1432 ($ (-1119)))))) (T -954))
-((-1432 (*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-954)))))
-(-13 (-1099) (-613 (-1119)) (-10 -8 (-15 -1432 ($ (-1119)))))
-((-3175 (((-1093 (-225)) $) 8)) (-3162 (((-1093 (-225)) $) 9)) (-1525 (((-644 (-644 (-943 (-225)))) $) 10)) (-2512 (((-862) $) 6)))
+((-2608 (((-644 |#2|) |#5|) 40)) (-2438 (((-1171 |#5|) |#5| |#2| (-1171 |#5|)) 23) (((-409 (-1171 |#5|)) |#5| |#2|) 16)) (-2597 ((|#5| (-409 (-1171 |#5|)) |#2|) 30)) (-1984 (((-3 |#2| "failed") |#5|) 71)) (-4201 (((-3 (-644 |#5|) "failed") |#5|) 65)) (-2014 (((-3 (-2 (|:| |val| |#5|) (|:| -2456 (-566))) "failed") |#5|) 53)) (-2657 (((-3 (-644 |#5|) "failed") |#5|) 67)) (-2749 (((-3 (-2 (|:| |var| |#2|) (|:| -2456 (-566))) "failed") |#5|) 57)))
+(((-950 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2608 ((-644 |#2|) |#5|)) (-15 -1984 ((-3 |#2| "failed") |#5|)) (-15 -2438 ((-409 (-1171 |#5|)) |#5| |#2|)) (-15 -2597 (|#5| (-409 (-1171 |#5|)) |#2|)) (-15 -2438 ((-1171 |#5|) |#5| |#2| (-1171 |#5|))) (-15 -2657 ((-3 (-644 |#5|) "failed") |#5|)) (-15 -4201 ((-3 (-644 |#5|) "failed") |#5|)) (-15 -2749 ((-3 (-2 (|:| |var| |#2|) (|:| -2456 (-566))) "failed") |#5|)) (-15 -2014 ((-3 (-2 (|:| |val| |#5|) (|:| -2456 (-566))) "failed") |#5|))) (-793) (-850) (-1049) (-949 |#3| |#1| |#2|) (-13 (-365) (-10 -8 (-15 -3780 ($ |#4|)) (-15 -3088 (|#4| $)) (-15 -3100 (|#4| $))))) (T -950))
+((-2014 (*1 *2 *3) (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-2 (|:| |val| *3) (|:| -2456 (-566)))) (-5 *1 (-950 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))))) (-2749 (*1 *2 *3) (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-2 (|:| |var| *5) (|:| -2456 (-566)))) (-5 *1 (-950 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))))) (-4201 (*1 *2 *3) (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-644 *3)) (-5 *1 (-950 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))))) (-2657 (*1 *2 *3) (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-644 *3)) (-5 *1 (-950 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))))) (-2438 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))) (-4 *7 (-949 *6 *5 *4)) (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-1049)) (-5 *1 (-950 *5 *4 *6 *7 *3)))) (-2597 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-1171 *2))) (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-1049)) (-4 *2 (-13 (-365) (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))) (-5 *1 (-950 *5 *4 *6 *7 *2)) (-4 *7 (-949 *6 *5 *4)))) (-2438 (*1 *2 *3 *4) (-12 (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *5 *4)) (-5 *2 (-409 (-1171 *3))) (-5 *1 (-950 *5 *4 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))))) (-1984 (*1 *2 *3) (|partial| -12 (-4 *4 (-793)) (-4 *5 (-1049)) (-4 *6 (-949 *5 *4 *2)) (-4 *2 (-850)) (-5 *1 (-950 *4 *2 *5 *6 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -3780 ($ *6)) (-15 -3088 (*6 $)) (-15 -3100 (*6 $))))))) (-2608 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-644 *5)) (-5 *1 (-950 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-365) (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))))))
+(-10 -7 (-15 -2608 ((-644 |#2|) |#5|)) (-15 -1984 ((-3 |#2| "failed") |#5|)) (-15 -2438 ((-409 (-1171 |#5|)) |#5| |#2|)) (-15 -2597 (|#5| (-409 (-1171 |#5|)) |#2|)) (-15 -2438 ((-1171 |#5|) |#5| |#2| (-1171 |#5|))) (-15 -2657 ((-3 (-644 |#5|) "failed") |#5|)) (-15 -4201 ((-3 (-644 |#5|) "failed") |#5|)) (-15 -2749 ((-3 (-2 (|:| |var| |#2|) (|:| -2456 (-566))) "failed") |#5|)) (-15 -2014 ((-3 (-2 (|:| |val| |#5|) (|:| -2456 (-566))) "failed") |#5|)))
+((-3152 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
+(((-951 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3152 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-793) (-850) (-1049) (-949 |#3| |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -3040 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-771)))))) (T -951))
+((-3152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *2 *7)) (-5 *4 (-1 *2 *8)) (-4 *7 (-850)) (-4 *8 (-1049)) (-4 *6 (-793)) (-4 *2 (-13 (-1099) (-10 -8 (-15 -3040 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-771)))))) (-5 *1 (-951 *6 *7 *8 *5 *2)) (-4 *5 (-949 *8 *6 *7)))))
+(-10 -7 (-15 -3152 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-1175)) $) 16)) (-2438 (((-1171 $) $ (-1175)) 21) (((-1171 |#1|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-1175))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2179 (($ $) NIL (|has| |#1| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) 8) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-1175) "failed") $) NIL)) (-1867 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-1175) $) NIL)) (-2662 (($ $ $ (-1175)) NIL (|has| |#1| (-172)))) (-3645 (($ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#1| (-454))) (($ $ (-1175)) NIL (|has| |#1| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#1| (-909)))) (-2871 (($ $ |#1| (-533 (-1175)) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1175) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1175) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2597 (($ (-1171 |#1|) (-1175)) NIL) (($ (-1171 $) (-1175)) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-533 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-1175)) NIL)) (-2466 (((-533 (-1175)) $) NIL) (((-771) $ (-1175)) NIL) (((-644 (-771)) $ (-644 (-1175))) NIL)) (-2443 (($ (-1 (-533 (-1175)) (-533 (-1175))) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1984 (((-3 (-1175) "failed") $) 19)) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2402 (((-1157) $) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-1175)) (|:| -2456 (-771))) "failed") $) NIL)) (-3921 (($ $ (-1175)) 29 (|has| |#1| (-38 (-409 (-566)))))) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 ((|#1| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1175) |#1|) NIL) (($ $ (-644 (-1175)) (-644 |#1|)) NIL) (($ $ (-1175) $) NIL) (($ $ (-644 (-1175)) (-644 $)) NIL)) (-3309 (($ $ (-1175)) NIL (|has| |#1| (-172)))) (-2578 (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-2108 (((-533 (-1175)) $) NIL) (((-771) $ (-1175)) NIL) (((-644 (-771)) $ (-644 (-1175))) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-1175) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1175) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1175) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3042 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ (-1175)) NIL (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) 25) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-1175)) 27) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-533 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-952 |#1|) (-13 (-949 |#1| (-533 (-1175)) (-1175)) (-10 -8 (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1175))) |%noBranch|))) (-1049)) (T -952))
+((-3921 (*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-952 *3)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)))))
+(-13 (-949 |#1| (-533 (-1175)) (-1175)) (-10 -8 (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1175))) |%noBranch|)))
+((-2669 (((-2 (|:| -2456 (-771)) (|:| -3223 |#5|) (|:| |radicand| |#5|)) |#3| (-771)) 49)) (-3086 (((-2 (|:| -2456 (-771)) (|:| -3223 |#5|) (|:| |radicand| |#5|)) (-409 (-566)) (-771)) 44)) (-3210 (((-2 (|:| -2456 (-771)) (|:| -3223 |#4|) (|:| |radicand| (-644 |#4|))) |#4| (-771)) 65)) (-1836 (((-2 (|:| -2456 (-771)) (|:| -3223 |#5|) (|:| |radicand| |#5|)) |#5| (-771)) 74 (|has| |#3| (-454)))))
+(((-953 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2669 ((-2 (|:| -2456 (-771)) (|:| -3223 |#5|) (|:| |radicand| |#5|)) |#3| (-771))) (-15 -3086 ((-2 (|:| -2456 (-771)) (|:| -3223 |#5|) (|:| |radicand| |#5|)) (-409 (-566)) (-771))) (IF (|has| |#3| (-454)) (-15 -1836 ((-2 (|:| -2456 (-771)) (|:| -3223 |#5|) (|:| |radicand| |#5|)) |#5| (-771))) |%noBranch|) (-15 -3210 ((-2 (|:| -2456 (-771)) (|:| -3223 |#4|) (|:| |radicand| (-644 |#4|))) |#4| (-771)))) (-793) (-850) (-558) (-949 |#3| |#1| |#2|) (-13 (-365) (-10 -8 (-15 -3780 ($ |#4|)) (-15 -3088 (|#4| $)) (-15 -3100 (|#4| $))))) (T -953))
+((-3210 (*1 *2 *3 *4) (-12 (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-558)) (-4 *3 (-949 *7 *5 *6)) (-5 *2 (-2 (|:| -2456 (-771)) (|:| -3223 *3) (|:| |radicand| (-644 *3)))) (-5 *1 (-953 *5 *6 *7 *3 *8)) (-5 *4 (-771)) (-4 *8 (-13 (-365) (-10 -8 (-15 -3780 ($ *3)) (-15 -3088 (*3 $)) (-15 -3100 (*3 $))))))) (-1836 (*1 *2 *3 *4) (-12 (-4 *7 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-558)) (-4 *8 (-949 *7 *5 *6)) (-5 *2 (-2 (|:| -2456 (-771)) (|:| -3223 *3) (|:| |radicand| *3))) (-5 *1 (-953 *5 *6 *7 *8 *3)) (-5 *4 (-771)) (-4 *3 (-13 (-365) (-10 -8 (-15 -3780 ($ *8)) (-15 -3088 (*8 $)) (-15 -3100 (*8 $))))))) (-3086 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-566))) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-558)) (-4 *8 (-949 *7 *5 *6)) (-5 *2 (-2 (|:| -2456 (-771)) (|:| -3223 *9) (|:| |radicand| *9))) (-5 *1 (-953 *5 *6 *7 *8 *9)) (-5 *4 (-771)) (-4 *9 (-13 (-365) (-10 -8 (-15 -3780 ($ *8)) (-15 -3088 (*8 $)) (-15 -3100 (*8 $))))))) (-2669 (*1 *2 *3 *4) (-12 (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-558)) (-4 *7 (-949 *3 *5 *6)) (-5 *2 (-2 (|:| -2456 (-771)) (|:| -3223 *8) (|:| |radicand| *8))) (-5 *1 (-953 *5 *6 *3 *7 *8)) (-5 *4 (-771)) (-4 *8 (-13 (-365) (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))))))
+(-10 -7 (-15 -2669 ((-2 (|:| -2456 (-771)) (|:| -3223 |#5|) (|:| |radicand| |#5|)) |#3| (-771))) (-15 -3086 ((-2 (|:| -2456 (-771)) (|:| -3223 |#5|) (|:| |radicand| |#5|)) (-409 (-566)) (-771))) (IF (|has| |#3| (-454)) (-15 -1836 ((-2 (|:| -2456 (-771)) (|:| -3223 |#5|) (|:| |radicand| |#5|)) |#5| (-771))) |%noBranch|) (-15 -3210 ((-2 (|:| -2456 (-771)) (|:| -3223 |#4|) (|:| |radicand| (-644 |#4|))) |#4| (-771))))
+((-3009 (((-112) $ $) NIL)) (-1470 (($ (-1119)) 8)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 15) (((-1119) $) 12)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 11)))
+(((-954) (-13 (-1099) (-613 (-1119)) (-10 -8 (-15 -1470 ($ (-1119)))))) (T -954))
+((-1470 (*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-954)))))
+(-13 (-1099) (-613 (-1119)) (-10 -8 (-15 -1470 ($ (-1119)))))
+((-3096 (((-1093 (-225)) $) 8)) (-3085 (((-1093 (-225)) $) 9)) (-2399 (((-644 (-644 (-943 (-225)))) $) 10)) (-3780 (((-862) $) 6)))
(((-955) (-140)) (T -955))
-((-1525 (*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-644 (-644 (-943 (-225))))))) (-3162 (*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-1093 (-225))))) (-3175 (*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-1093 (-225))))))
-(-13 (-613 (-862)) (-10 -8 (-15 -1525 ((-644 (-644 (-943 (-225)))) $)) (-15 -3162 ((-1093 (-225)) $)) (-15 -3175 ((-1093 (-225)) $))))
+((-2399 (*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-644 (-644 (-943 (-225))))))) (-3085 (*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-1093 (-225))))) (-3096 (*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-1093 (-225))))))
+(-13 (-613 (-862)) (-10 -8 (-15 -2399 ((-644 (-644 (-943 (-225)))) $)) (-15 -3085 ((-1093 (-225)) $)) (-15 -3096 ((-1093 (-225)) $))))
(((-613 (-862)) . T))
-((-3552 (((-3 (-689 |#1|) "failed") |#2| (-921)) 18)))
-(((-956 |#1| |#2|) (-10 -7 (-15 -3552 ((-3 (-689 |#1|) "failed") |#2| (-921)))) (-558) (-656 |#1|)) (T -956))
-((-3552 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-921)) (-4 *5 (-558)) (-5 *2 (-689 *5)) (-5 *1 (-956 *5 *3)) (-4 *3 (-656 *5)))))
-(-10 -7 (-15 -3552 ((-3 (-689 |#1|) "failed") |#2| (-921))))
-((-2403 (((-958 |#2|) (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|) 16)) (-4362 ((|#2| (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|) 18)) (-3077 (((-958 |#2|) (-1 |#2| |#1|) (-958 |#1|)) 13)))
-(((-957 |#1| |#2|) (-10 -7 (-15 -2403 ((-958 |#2|) (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|)) (-15 -4362 (|#2| (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|)) (-15 -3077 ((-958 |#2|) (-1 |#2| |#1|) (-958 |#1|)))) (-1214) (-1214)) (T -957))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-958 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-958 *6)) (-5 *1 (-957 *5 *6)))) (-4362 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-958 *5)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-957 *5 *2)))) (-2403 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-958 *6)) (-4 *6 (-1214)) (-4 *5 (-1214)) (-5 *2 (-958 *5)) (-5 *1 (-957 *6 *5)))))
-(-10 -7 (-15 -2403 ((-958 |#2|) (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|)) (-15 -4362 (|#2| (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|)) (-15 -3077 ((-958 |#2|) (-1 |#2| |#1|) (-958 |#1|))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-566) |#1|) 19 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) 18 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 16)) (-3968 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-4257 (($ (-771) |#1|) 15)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) 11 (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4062 ((|#1| $) NIL (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) 20 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) 12)) (-4386 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) 17) (($ $ (-1231 (-566))) NIL)) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) 21)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 14)) (-3704 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2997 (((-771) $) 8 (|has| $ (-6 -4417)))))
+((-3438 (((-3 (-689 |#1|) "failed") |#2| (-921)) 18)))
+(((-956 |#1| |#2|) (-10 -7 (-15 -3438 ((-3 (-689 |#1|) "failed") |#2| (-921)))) (-558) (-656 |#1|)) (T -956))
+((-3438 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-921)) (-4 *5 (-558)) (-5 *2 (-689 *5)) (-5 *1 (-956 *5 *3)) (-4 *3 (-656 *5)))))
+(-10 -7 (-15 -3438 ((-3 (-689 |#1|) "failed") |#2| (-921))))
+((-3264 (((-958 |#2|) (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|) 16)) (-1580 ((|#2| (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|) 18)) (-3152 (((-958 |#2|) (-1 |#2| |#1|) (-958 |#1|)) 13)))
+(((-957 |#1| |#2|) (-10 -7 (-15 -3264 ((-958 |#2|) (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|)) (-15 -1580 (|#2| (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|)) (-15 -3152 ((-958 |#2|) (-1 |#2| |#1|) (-958 |#1|)))) (-1214) (-1214)) (T -957))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-958 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-958 *6)) (-5 *1 (-957 *5 *6)))) (-1580 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-958 *5)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-957 *5 *2)))) (-3264 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-958 *6)) (-4 *6 (-1214)) (-4 *5 (-1214)) (-5 *2 (-958 *5)) (-5 *1 (-957 *6 *5)))))
+(-10 -7 (-15 -3264 ((-958 |#2|) (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|)) (-15 -1580 (|#2| (-1 |#2| |#1| |#2|) (-958 |#1|) |#2|)) (-15 -3152 ((-958 |#2|) (-1 |#2| |#1|) (-958 |#1|))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-566) |#1|) 19 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) 18 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 16)) (-4015 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-4278 (($ (-771) |#1|) 15)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) 11 (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4101 ((|#1| $) NIL (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) 20 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) 12)) (-4393 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) 17) (($ $ (-1231 (-566))) NIL)) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) 21)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 14)) (-3727 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3020 (((-771) $) 8 (|has| $ (-6 -4414)))))
(((-958 |#1|) (-19 |#1|) (-1214)) (T -958))
NIL
(-19 |#1|)
-((-2669 (($ $ (-1091 $)) 7) (($ $ (-1175)) 6)))
+((-3973 (($ $ (-1091 $)) 7) (($ $ (-1175)) 6)))
(((-959) (-140)) (T -959))
-((-2669 (*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-959)))) (-2669 (*1 *1 *1 *2) (-12 (-4 *1 (-959)) (-5 *2 (-1175)))))
-(-13 (-10 -8 (-15 -2669 ($ $ (-1175))) (-15 -2669 ($ $ (-1091 $)))))
-((-3092 (((-2 (|:| -3157 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175)) (-1175)) 30) (((-2 (|:| -3157 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175))) 31) (((-2 (|:| |coef1| (-566)) (|:| |coef2| (-566)) (|:| |prim| (-1171 |#1|))) (-952 |#1|) (-1175) (-952 |#1|) (-1175)) 49)))
-(((-960 |#1|) (-10 -7 (-15 -3092 ((-2 (|:| |coef1| (-566)) (|:| |coef2| (-566)) (|:| |prim| (-1171 |#1|))) (-952 |#1|) (-1175) (-952 |#1|) (-1175))) (-15 -3092 ((-2 (|:| -3157 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -3092 ((-2 (|:| -3157 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175)) (-1175)))) (-13 (-365) (-147))) (T -960))
-((-3092 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175))) (-5 *5 (-1175)) (-4 *6 (-13 (-365) (-147))) (-5 *2 (-2 (|:| -3157 (-644 (-566))) (|:| |poly| (-644 (-1171 *6))) (|:| |prim| (-1171 *6)))) (-5 *1 (-960 *6)))) (-3092 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175))) (-4 *5 (-13 (-365) (-147))) (-5 *2 (-2 (|:| -3157 (-644 (-566))) (|:| |poly| (-644 (-1171 *5))) (|:| |prim| (-1171 *5)))) (-5 *1 (-960 *5)))) (-3092 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-952 *5)) (-5 *4 (-1175)) (-4 *5 (-13 (-365) (-147))) (-5 *2 (-2 (|:| |coef1| (-566)) (|:| |coef2| (-566)) (|:| |prim| (-1171 *5)))) (-5 *1 (-960 *5)))))
-(-10 -7 (-15 -3092 ((-2 (|:| |coef1| (-566)) (|:| |coef2| (-566)) (|:| |prim| (-1171 |#1|))) (-952 |#1|) (-1175) (-952 |#1|) (-1175))) (-15 -3092 ((-2 (|:| -3157 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -3092 ((-2 (|:| -3157 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175)) (-1175))))
-((-4336 (((-644 |#1|) |#1| |#1|) 47)) (-2635 (((-112) |#1|) 44)) (-2969 ((|#1| |#1|) 82)) (-2913 ((|#1| |#1|) 81)))
-(((-961 |#1|) (-10 -7 (-15 -2635 ((-112) |#1|)) (-15 -2913 (|#1| |#1|)) (-15 -2969 (|#1| |#1|)) (-15 -4336 ((-644 |#1|) |#1| |#1|))) (-547)) (T -961))
-((-4336 (*1 *2 *3 *3) (-12 (-5 *2 (-644 *3)) (-5 *1 (-961 *3)) (-4 *3 (-547)))) (-2969 (*1 *2 *2) (-12 (-5 *1 (-961 *2)) (-4 *2 (-547)))) (-2913 (*1 *2 *2) (-12 (-5 *1 (-961 *2)) (-4 *2 (-547)))) (-2635 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-547)))))
-(-10 -7 (-15 -2635 ((-112) |#1|)) (-15 -2913 (|#1| |#1|)) (-15 -2969 (|#1| |#1|)) (-15 -4336 ((-644 |#1|) |#1| |#1|)))
-((-2932 (((-1269) (-862)) 9)))
-(((-962) (-10 -7 (-15 -2932 ((-1269) (-862))))) (T -962))
-((-2932 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-962)))))
-(-10 -7 (-15 -2932 ((-1269) (-862))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 78 (|has| |#1| (-558)))) (-3653 (($ $) 79 (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 34)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3577 (($ $) 31)) (-1579 (((-3 $ "failed") $) 42)) (-4248 (($ $) NIL (|has| |#1| (-454)))) (-2804 (($ $ |#1| |#2| $) 62)) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) 17)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| |#2|) NIL)) (-3251 ((|#2| $) 24)) (-2132 (($ (-1 |#2| |#2|) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3545 (($ $) 28)) (-3557 ((|#1| $) 26)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) 51)) (-3531 ((|#1| $) NIL)) (-1441 (($ $ |#2| |#1| $) 90 (-12 (|has| |#2| (-131)) (|has| |#1| (-558))))) (-2972 (((-3 $ "failed") $ $) 91 (|has| |#1| (-558))) (((-3 $ "failed") $ |#1|) 85 (|has| |#1| (-558)))) (-3992 ((|#2| $) 22)) (-3181 ((|#1| $) NIL (|has| |#1| (-454)))) (-2512 (((-862) $) NIL) (($ (-566)) 46) (($ $) NIL (|has| |#1| (-558))) (($ |#1|) 41) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ |#2|) 37)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) 15 T CONST)) (-2468 (($ $ $ (-771)) 74 (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) 84 (|has| |#1| (-558)))) (-2485 (($) 27 T CONST)) (-2495 (($) 12 T CONST)) (-2940 (((-112) $ $) 83)) (-3061 (($ $ |#1|) 92 (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) 69) (($ $ (-771)) 67)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 66) (($ $ |#1|) 64) (($ |#1| $) 63) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-963 |#1| |#2|) (-13 (-327 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-558)) (IF (|has| |#2| (-131)) (-15 -1441 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4415)) (-6 -4415) |%noBranch|))) (-1049) (-792)) (T -963))
-((-1441 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-963 *3 *2)) (-4 *2 (-131)) (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *2 (-792)))))
-(-13 (-327 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-558)) (IF (|has| |#2| (-131)) (-15 -1441 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4415)) (-6 -4415) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793)))))) (-3711 (($ $ $) 65 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))))) (-4126 (((-3 $ "failed") $ $) 52 (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793)))))) (-4025 (((-771)) 36 (-12 (|has| |#1| (-370)) (|has| |#2| (-370))))) (-1471 ((|#2| $) 22)) (-2135 ((|#1| $) 21)) (-2342 (($) NIL (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793)))) CONST)) (-1579 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726)))))) (-3335 (($) NIL (-12 (|has| |#1| (-370)) (|has| |#2| (-370))))) (-2741 (((-112) $) NIL (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726)))))) (-1439 (($ $ $) NIL (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-3059 (($ $ $) NIL (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-1707 (($ |#1| |#2|) 20)) (-3712 (((-921) $) NIL (-12 (|has| |#1| (-370)) (|has| |#2| (-370))))) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 39 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))))) (-2168 (($ (-921)) NIL (-12 (|has| |#1| (-370)) (|has| |#2| (-370))))) (-4033 (((-1119) $) NIL)) (-2032 (($ $ $) NIL (-12 (|has| |#1| (-475)) (|has| |#2| (-475))))) (-3755 (($ $ $) NIL (-12 (|has| |#1| (-475)) (|has| |#2| (-475))))) (-2512 (((-862) $) 14)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 42 (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793)))) CONST)) (-2495 (($) 25 (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726)))) CONST)) (-2998 (((-112) $ $) NIL (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-2974 (((-112) $ $) NIL (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-2940 (((-112) $ $) 19)) (-2987 (((-112) $ $) NIL (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-2962 (((-112) $ $) 69 (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-3061 (($ $ $) NIL (-12 (|has| |#1| (-475)) (|has| |#2| (-475))))) (-3047 (($ $ $) 58 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 55 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-3034 (($ $ $) 45 (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793)))))) (** (($ $ (-566)) NIL (-12 (|has| |#1| (-475)) (|has| |#2| (-475)))) (($ $ (-771)) 32 (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726))))) (($ $ (-921)) NIL (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726)))))) (* (($ (-566) $) 62 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-771) $) 48 (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793))))) (($ (-921) $) NIL (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793))))) (($ $ $) 28 (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726)))))))
-(((-964 |#1| |#2|) (-13 (-1099) (-10 -8 (IF (|has| |#1| (-370)) (IF (|has| |#2| (-370)) (-6 (-370)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-726)) (IF (|has| |#2| (-726)) (-6 (-726)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-131)) (IF (|has| |#2| (-131)) (-6 (-131)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-475)) (IF (|has| |#2| (-475)) (-6 (-475)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-793)) (IF (|has| |#2| (-793)) (-6 (-793)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-850)) (IF (|has| |#2| (-850)) (-6 (-850)) |%noBranch|) |%noBranch|) (-15 -1707 ($ |#1| |#2|)) (-15 -2135 (|#1| $)) (-15 -1471 (|#2| $)))) (-1099) (-1099)) (T -964))
-((-1707 (*1 *1 *2 *3) (-12 (-5 *1 (-964 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-2135 (*1 *2 *1) (-12 (-4 *2 (-1099)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1099)))) (-1471 (*1 *2 *1) (-12 (-4 *2 (-1099)) (-5 *1 (-964 *3 *2)) (-4 *3 (-1099)))))
-(-13 (-1099) (-10 -8 (IF (|has| |#1| (-370)) (IF (|has| |#2| (-370)) (-6 (-370)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-726)) (IF (|has| |#2| (-726)) (-6 (-726)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-131)) (IF (|has| |#2| (-131)) (-6 (-131)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-475)) (IF (|has| |#2| (-475)) (-6 (-475)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-793)) (IF (|has| |#2| (-793)) (-6 (-793)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-850)) (IF (|has| |#2| (-850)) (-6 (-850)) |%noBranch|) |%noBranch|) (-15 -1707 ($ |#1| |#2|)) (-15 -2135 (|#1| $)) (-15 -1471 (|#2| $))))
-((-2212 (((-1103) $) 12)) (-3135 (($ (-508) (-1103)) 14)) (-2628 (((-508) $) 9)) (-2512 (((-862) $) 26)))
-(((-965) (-13 (-613 (-862)) (-10 -8 (-15 -2628 ((-508) $)) (-15 -2212 ((-1103) $)) (-15 -3135 ($ (-508) (-1103)))))) (T -965))
-((-2628 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-965)))) (-2212 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-965)))) (-3135 (*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1103)) (-5 *1 (-965)))))
-(-13 (-613 (-862)) (-10 -8 (-15 -2628 ((-508) $)) (-15 -2212 ((-1103) $)) (-15 -3135 ($ (-508) (-1103)))))
-((-2985 (((-112) $ $) NIL)) (-3398 (($) NIL T CONST)) (-2450 (($ $ $) 11)) (-2426 (($ $) 9)) (-2878 (((-1157) $) NIL)) (-4128 (((-691 |#1|) $) 24)) (-4228 (((-691 (-873 $ $)) $) 36)) (-2738 (((-691 $) $) 29)) (-3914 (((-691 (-873 $ $)) $) 37)) (-4150 (((-691 (-873 $ $)) $) 38)) (-2899 (((-691 (-873 $ $)) $) 35)) (-2251 (($ $ $) 12)) (-4033 (((-1119) $) NIL)) (-2234 (($) 17 T CONST)) (-3679 (($ $ $) 13)) (-2512 (((-862) $) 40) (($ |#1|) 8)) (-3122 (((-112) $ $) NIL)) (-2438 (($ $ $) 10)) (-2940 (((-112) $ $) NIL)))
-(((-966 |#1|) (-13 (-967) (-616 |#1|) (-10 -8 (-15 -4128 ((-691 |#1|) $)) (-15 -2738 ((-691 $) $)) (-15 -2899 ((-691 (-873 $ $)) $)) (-15 -4228 ((-691 (-873 $ $)) $)) (-15 -3914 ((-691 (-873 $ $)) $)) (-15 -4150 ((-691 (-873 $ $)) $)))) (-1099)) (T -966))
-((-4128 (*1 *2 *1) (-12 (-5 *2 (-691 *3)) (-5 *1 (-966 *3)) (-4 *3 (-1099)))) (-2738 (*1 *2 *1) (-12 (-5 *2 (-691 (-966 *3))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))) (-2899 (*1 *2 *1) (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))) (-4228 (*1 *2 *1) (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))) (-3914 (*1 *2 *1) (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))) (-4150 (*1 *2 *1) (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))))
-(-13 (-967) (-616 |#1|) (-10 -8 (-15 -4128 ((-691 |#1|) $)) (-15 -2738 ((-691 $) $)) (-15 -2899 ((-691 (-873 $ $)) $)) (-15 -4228 ((-691 (-873 $ $)) $)) (-15 -3914 ((-691 (-873 $ $)) $)) (-15 -4150 ((-691 (-873 $ $)) $))))
-((-2985 (((-112) $ $) 7)) (-3398 (($) 20 T CONST)) (-2450 (($ $ $) 16)) (-2426 (($ $) 18)) (-2878 (((-1157) $) 10)) (-2251 (($ $ $) 15)) (-4033 (((-1119) $) 11)) (-2234 (($) 19 T CONST)) (-3679 (($ $ $) 14)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2438 (($ $ $) 17)) (-2940 (((-112) $ $) 6)))
+((-3973 (*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-959)))) (-3973 (*1 *1 *1 *2) (-12 (-4 *1 (-959)) (-5 *2 (-1175)))))
+(-13 (-10 -8 (-15 -3973 ($ $ (-1175))) (-15 -3973 ($ $ (-1091 $)))))
+((-1676 (((-2 (|:| -3223 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175)) (-1175)) 30) (((-2 (|:| -3223 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175))) 31) (((-2 (|:| |coef1| (-566)) (|:| |coef2| (-566)) (|:| |prim| (-1171 |#1|))) (-952 |#1|) (-1175) (-952 |#1|) (-1175)) 49)))
+(((-960 |#1|) (-10 -7 (-15 -1676 ((-2 (|:| |coef1| (-566)) (|:| |coef2| (-566)) (|:| |prim| (-1171 |#1|))) (-952 |#1|) (-1175) (-952 |#1|) (-1175))) (-15 -1676 ((-2 (|:| -3223 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -1676 ((-2 (|:| -3223 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175)) (-1175)))) (-13 (-365) (-147))) (T -960))
+((-1676 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175))) (-5 *5 (-1175)) (-4 *6 (-13 (-365) (-147))) (-5 *2 (-2 (|:| -3223 (-644 (-566))) (|:| |poly| (-644 (-1171 *6))) (|:| |prim| (-1171 *6)))) (-5 *1 (-960 *6)))) (-1676 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175))) (-4 *5 (-13 (-365) (-147))) (-5 *2 (-2 (|:| -3223 (-644 (-566))) (|:| |poly| (-644 (-1171 *5))) (|:| |prim| (-1171 *5)))) (-5 *1 (-960 *5)))) (-1676 (*1 *2 *3 *4 *3 *4) (-12 (-5 *3 (-952 *5)) (-5 *4 (-1175)) (-4 *5 (-13 (-365) (-147))) (-5 *2 (-2 (|:| |coef1| (-566)) (|:| |coef2| (-566)) (|:| |prim| (-1171 *5)))) (-5 *1 (-960 *5)))))
+(-10 -7 (-15 -1676 ((-2 (|:| |coef1| (-566)) (|:| |coef2| (-566)) (|:| |prim| (-1171 |#1|))) (-952 |#1|) (-1175) (-952 |#1|) (-1175))) (-15 -1676 ((-2 (|:| -3223 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175)))) (-15 -1676 ((-2 (|:| -3223 (-644 (-566))) (|:| |poly| (-644 (-1171 |#1|))) (|:| |prim| (-1171 |#1|))) (-644 (-952 |#1|)) (-644 (-1175)) (-1175))))
+((-2408 (((-644 |#1|) |#1| |#1|) 47)) (-1784 (((-112) |#1|) 44)) (-1913 ((|#1| |#1|) 82)) (-1504 ((|#1| |#1|) 81)))
+(((-961 |#1|) (-10 -7 (-15 -1784 ((-112) |#1|)) (-15 -1504 (|#1| |#1|)) (-15 -1913 (|#1| |#1|)) (-15 -2408 ((-644 |#1|) |#1| |#1|))) (-547)) (T -961))
+((-2408 (*1 *2 *3 *3) (-12 (-5 *2 (-644 *3)) (-5 *1 (-961 *3)) (-4 *3 (-547)))) (-1913 (*1 *2 *2) (-12 (-5 *1 (-961 *2)) (-4 *2 (-547)))) (-1504 (*1 *2 *2) (-12 (-5 *1 (-961 *2)) (-4 *2 (-547)))) (-1784 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-547)))))
+(-10 -7 (-15 -1784 ((-112) |#1|)) (-15 -1504 (|#1| |#1|)) (-15 -1913 (|#1| |#1|)) (-15 -2408 ((-644 |#1|) |#1| |#1|)))
+((-2978 (((-1269) (-862)) 9)))
+(((-962) (-10 -7 (-15 -2978 ((-1269) (-862))))) (T -962))
+((-2978 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-962)))))
+(-10 -7 (-15 -2978 ((-1269) (-862))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 78 (|has| |#1| (-558)))) (-1968 (($ $) 79 (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 34)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3645 (($ $) 31)) (-2928 (((-3 $ "failed") $) 42)) (-2755 (($ $) NIL (|has| |#1| (-454)))) (-2871 (($ $ |#1| |#2| $) 62)) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) 17)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| |#2|) NIL)) (-2466 ((|#2| $) 24)) (-2443 (($ (-1 |#2| |#2|) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3614 (($ $) 28)) (-3626 ((|#1| $) 26)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) 51)) (-3604 ((|#1| $) NIL)) (-3959 (($ $ |#2| |#1| $) 90 (-12 (|has| |#2| (-131)) (|has| |#1| (-558))))) (-2997 (((-3 $ "failed") $ $) 91 (|has| |#1| (-558))) (((-3 $ "failed") $ |#1|) 85 (|has| |#1| (-558)))) (-2108 ((|#2| $) 22)) (-3042 ((|#1| $) NIL (|has| |#1| (-454)))) (-3780 (((-862) $) NIL) (($ (-566)) 46) (($ $) NIL (|has| |#1| (-558))) (($ |#1|) 41) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ |#2|) 37)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) 15 T CONST)) (-2629 (($ $ $ (-771)) 74 (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) 84 (|has| |#1| (-558)))) (-2493 (($) 27 T CONST)) (-4333 (($) 12 T CONST)) (-2950 (((-112) $ $) 83)) (-3062 (($ $ |#1|) 92 (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) 69) (($ $ (-771)) 67)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 66) (($ $ |#1|) 64) (($ |#1| $) 63) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-963 |#1| |#2|) (-13 (-327 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-558)) (IF (|has| |#2| (-131)) (-15 -3959 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4412)) (-6 -4412) |%noBranch|))) (-1049) (-792)) (T -963))
+((-3959 (*1 *1 *1 *2 *3 *1) (-12 (-5 *1 (-963 *3 *2)) (-4 *2 (-131)) (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *2 (-792)))))
+(-13 (-327 |#1| |#2|) (-10 -8 (IF (|has| |#1| (-558)) (IF (|has| |#2| (-131)) (-15 -3959 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4412)) (-6 -4412) |%noBranch|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793)))))) (-4385 (($ $ $) 65 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))))) (-4014 (((-3 $ "failed") $ $) 52 (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793)))))) (-4070 (((-771)) 36 (-12 (|has| |#1| (-370)) (|has| |#2| (-370))))) (-3052 ((|#2| $) 22)) (-2479 ((|#1| $) 21)) (-3877 (($) NIL (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793)))) CONST)) (-2928 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726)))))) (-1618 (($) NIL (-12 (|has| |#1| (-370)) (|has| |#2| (-370))))) (-3466 (((-112) $) NIL (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726)))))) (-1945 (($ $ $) NIL (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-2709 (($ $ $) NIL (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-3647 (($ |#1| |#2|) 20)) (-1299 (((-921) $) NIL (-12 (|has| |#1| (-370)) (|has| |#2| (-370))))) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 39 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))))) (-2208 (($ (-921)) NIL (-12 (|has| |#1| (-370)) (|has| |#2| (-370))))) (-4056 (((-1119) $) NIL)) (-3850 (($ $ $) NIL (-12 (|has| |#1| (-475)) (|has| |#2| (-475))))) (-1783 (($ $ $) NIL (-12 (|has| |#1| (-475)) (|has| |#2| (-475))))) (-3780 (((-862) $) 14)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 42 (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793)))) CONST)) (-4333 (($) 25 (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726)))) CONST)) (-3010 (((-112) $ $) NIL (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-2984 (((-112) $ $) NIL (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-2950 (((-112) $ $) 19)) (-2999 (((-112) $ $) NIL (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-2972 (((-112) $ $) 69 (-2805 (-12 (|has| |#1| (-793)) (|has| |#2| (-793))) (-12 (|has| |#1| (-850)) (|has| |#2| (-850)))))) (-3062 (($ $ $) NIL (-12 (|has| |#1| (-475)) (|has| |#2| (-475))))) (-3051 (($ $ $) 58 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 55 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-3040 (($ $ $) 45 (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793)))))) (** (($ $ (-566)) NIL (-12 (|has| |#1| (-475)) (|has| |#2| (-475)))) (($ $ (-771)) 32 (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726))))) (($ $ (-921)) NIL (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726)))))) (* (($ (-566) $) 62 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ (-771) $) 48 (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793))))) (($ (-921) $) NIL (-2805 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-23)) (|has| |#2| (-23))) (-12 (|has| |#1| (-131)) (|has| |#2| (-131))) (-12 (|has| |#1| (-793)) (|has| |#2| (-793))))) (($ $ $) 28 (-2805 (-12 (|has| |#1| (-475)) (|has| |#2| (-475))) (-12 (|has| |#1| (-726)) (|has| |#2| (-726)))))))
+(((-964 |#1| |#2|) (-13 (-1099) (-10 -8 (IF (|has| |#1| (-370)) (IF (|has| |#2| (-370)) (-6 (-370)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-726)) (IF (|has| |#2| (-726)) (-6 (-726)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-131)) (IF (|has| |#2| (-131)) (-6 (-131)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-475)) (IF (|has| |#2| (-475)) (-6 (-475)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-793)) (IF (|has| |#2| (-793)) (-6 (-793)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-850)) (IF (|has| |#2| (-850)) (-6 (-850)) |%noBranch|) |%noBranch|) (-15 -3647 ($ |#1| |#2|)) (-15 -2479 (|#1| $)) (-15 -3052 (|#2| $)))) (-1099) (-1099)) (T -964))
+((-3647 (*1 *1 *2 *3) (-12 (-5 *1 (-964 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-2479 (*1 *2 *1) (-12 (-4 *2 (-1099)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1099)))) (-3052 (*1 *2 *1) (-12 (-4 *2 (-1099)) (-5 *1 (-964 *3 *2)) (-4 *3 (-1099)))))
+(-13 (-1099) (-10 -8 (IF (|has| |#1| (-370)) (IF (|has| |#2| (-370)) (-6 (-370)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-726)) (IF (|has| |#2| (-726)) (-6 (-726)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-23)) (IF (|has| |#2| (-23)) (-6 (-23)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-131)) (IF (|has| |#2| (-131)) (-6 (-131)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-475)) (IF (|has| |#2| (-475)) (-6 (-475)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-21)) (IF (|has| |#2| (-21)) (-6 (-21)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-793)) (IF (|has| |#2| (-793)) (-6 (-793)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-850)) (IF (|has| |#2| (-850)) (-6 (-850)) |%noBranch|) |%noBranch|) (-15 -3647 ($ |#1| |#2|)) (-15 -2479 (|#1| $)) (-15 -3052 (|#2| $))))
+((-2252 (((-1103) $) 12)) (-3165 (($ (-508) (-1103)) 14)) (-2639 (((-508) $) 9)) (-3780 (((-862) $) 26)))
+(((-965) (-13 (-613 (-862)) (-10 -8 (-15 -2639 ((-508) $)) (-15 -2252 ((-1103) $)) (-15 -3165 ($ (-508) (-1103)))))) (T -965))
+((-2639 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-965)))) (-2252 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-965)))) (-3165 (*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1103)) (-5 *1 (-965)))))
+(-13 (-613 (-862)) (-10 -8 (-15 -2639 ((-508) $)) (-15 -2252 ((-1103) $)) (-15 -3165 ($ (-508) (-1103)))))
+((-3009 (((-112) $ $) NIL)) (-3400 (($) NIL T CONST)) (-2461 (($ $ $) 11)) (-2436 (($ $) 9)) (-2402 (((-1157) $) NIL)) (-4038 (((-691 |#1|) $) 24)) (-2600 (((-691 (-873 $ $)) $) 36)) (-3434 (((-691 $) $) 29)) (-2647 (((-691 (-873 $ $)) $) 37)) (-4241 (((-691 (-873 $ $)) $) 38)) (-1361 (((-691 (-873 $ $)) $) 35)) (-2323 (($ $ $) 12)) (-4056 (((-1119) $) NIL)) (-2247 (($) 17 T CONST)) (-2219 (($ $ $) 13)) (-3780 (((-862) $) 40) (($ |#1|) 8)) (-3801 (((-112) $ $) NIL)) (-2447 (($ $ $) 10)) (-2950 (((-112) $ $) NIL)))
+(((-966 |#1|) (-13 (-967) (-616 |#1|) (-10 -8 (-15 -4038 ((-691 |#1|) $)) (-15 -3434 ((-691 $) $)) (-15 -1361 ((-691 (-873 $ $)) $)) (-15 -2600 ((-691 (-873 $ $)) $)) (-15 -2647 ((-691 (-873 $ $)) $)) (-15 -4241 ((-691 (-873 $ $)) $)))) (-1099)) (T -966))
+((-4038 (*1 *2 *1) (-12 (-5 *2 (-691 *3)) (-5 *1 (-966 *3)) (-4 *3 (-1099)))) (-3434 (*1 *2 *1) (-12 (-5 *2 (-691 (-966 *3))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))) (-1361 (*1 *2 *1) (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))) (-2600 (*1 *2 *1) (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))) (-2647 (*1 *2 *1) (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))) (-4241 (*1 *2 *1) (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))))
+(-13 (-967) (-616 |#1|) (-10 -8 (-15 -4038 ((-691 |#1|) $)) (-15 -3434 ((-691 $) $)) (-15 -1361 ((-691 (-873 $ $)) $)) (-15 -2600 ((-691 (-873 $ $)) $)) (-15 -2647 ((-691 (-873 $ $)) $)) (-15 -4241 ((-691 (-873 $ $)) $))))
+((-3009 (((-112) $ $) 7)) (-3400 (($) 20 T CONST)) (-2461 (($ $ $) 16)) (-2436 (($ $) 18)) (-2402 (((-1157) $) 10)) (-2323 (($ $ $) 15)) (-4056 (((-1119) $) 11)) (-2247 (($) 19 T CONST)) (-2219 (($ $ $) 14)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2447 (($ $ $) 17)) (-2950 (((-112) $ $) 6)))
(((-967) (-140)) (T -967))
-((-3398 (*1 *1) (-4 *1 (-967))) (-2234 (*1 *1) (-4 *1 (-967))) (-2426 (*1 *1 *1) (-4 *1 (-967))) (-2438 (*1 *1 *1 *1) (-4 *1 (-967))) (-2450 (*1 *1 *1 *1) (-4 *1 (-967))) (-2251 (*1 *1 *1 *1) (-4 *1 (-967))) (-3679 (*1 *1 *1 *1) (-4 *1 (-967))))
-(-13 (-1099) (-10 -8 (-15 -3398 ($) -1655) (-15 -2234 ($) -1655) (-15 -2426 ($ $)) (-15 -2438 ($ $ $)) (-15 -2450 ($ $ $)) (-15 -2251 ($ $ $)) (-15 -3679 ($ $ $))))
+((-3400 (*1 *1) (-4 *1 (-967))) (-2247 (*1 *1) (-4 *1 (-967))) (-2436 (*1 *1 *1) (-4 *1 (-967))) (-2447 (*1 *1 *1 *1) (-4 *1 (-967))) (-2461 (*1 *1 *1 *1) (-4 *1 (-967))) (-2323 (*1 *1 *1 *1) (-4 *1 (-967))) (-2219 (*1 *1 *1 *1) (-4 *1 (-967))))
+(-13 (-1099) (-10 -8 (-15 -3400 ($) -2460) (-15 -2247 ($) -2460) (-15 -2436 ($ $)) (-15 -2447 ($ $ $)) (-15 -2461 ($ $ $)) (-15 -2323 ($ $ $)) (-15 -2219 ($ $ $))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) 8)) (-2342 (($) 7 T CONST)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-1865 (($ $ $) 44)) (-3132 (($ $ $) 45)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3059 ((|#1| $) 46)) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3119 ((|#1| $) 40)) (-4265 (($ |#1| $) 41)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) 43)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) 8)) (-3877 (($) 7 T CONST)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-2761 (($ $ $) 44)) (-3891 (($ $ $) 45)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2709 ((|#1| $) 46)) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3765 ((|#1| $) 40)) (-2903 (($ |#1| $) 41)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) 43)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-968 |#1|) (-140) (-850)) (T -968))
-((-3059 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850)))) (-3132 (*1 *1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850)))) (-1865 (*1 *1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4417) (-15 -3059 (|t#1| $)) (-15 -3132 ($ $ $)) (-15 -1865 ($ $ $))))
+((-2709 (*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850)))) (-3891 (*1 *1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850)))) (-2761 (*1 *1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4414) (-15 -2709 (|t#1| $)) (-15 -3891 ($ $ $)) (-15 -2761 ($ $ $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-1842 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2222 |#2|)) |#2| |#2|) 106)) (-2829 ((|#2| |#2| |#2|) 104)) (-3278 (((-2 (|:| |coef2| |#2|) (|:| -2222 |#2|)) |#2| |#2|) 108)) (-3028 (((-2 (|:| |coef1| |#2|) (|:| -2222 |#2|)) |#2| |#2|) 110)) (-2104 (((-2 (|:| |coef2| |#2|) (|:| -4256 |#1|)) |#2| |#2|) 132 (|has| |#1| (-454)))) (-4363 (((-2 (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|) 56)) (-3736 (((-2 (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|) 81)) (-1472 (((-2 (|:| |coef1| |#2|) (|:| -1552 |#1|)) |#2| |#2|) 83)) (-4005 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 97)) (-1390 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771)) 90)) (-1488 (((-2 (|:| |coef2| |#2|) (|:| -2408 |#1|)) |#2|) 122)) (-4034 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771)) 93)) (-3909 (((-644 (-771)) |#2| |#2|) 103)) (-1755 ((|#1| |#2| |#2|) 50)) (-1762 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4256 |#1|)) |#2| |#2|) 130 (|has| |#1| (-454)))) (-4256 ((|#1| |#2| |#2|) 128 (|has| |#1| (-454)))) (-2556 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|) 54)) (-1420 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|) 80)) (-1552 ((|#1| |#2| |#2|) 77)) (-2513 (((-2 (|:| -3157 |#1|) (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2|) 41)) (-1828 ((|#2| |#2| |#2| |#2| |#1|) 67)) (-2569 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 95)) (-1624 ((|#2| |#2| |#2|) 94)) (-2282 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771)) 88)) (-2418 ((|#2| |#2| |#2| (-771)) 86)) (-2222 ((|#2| |#2| |#2|) 136 (|has| |#1| (-454)))) (-2972 (((-1264 |#2|) (-1264 |#2|) |#1|) 22)) (-2347 (((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2|) 46)) (-4110 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2408 |#1|)) |#2|) 120)) (-2408 ((|#1| |#2|) 117)) (-3232 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771)) 92)) (-2378 ((|#2| |#2| |#2| (-771)) 91)) (-3771 (((-644 |#2|) |#2| |#2|) 100)) (-1334 ((|#2| |#2| |#1| |#1| (-771)) 62)) (-1461 ((|#1| |#1| |#1| (-771)) 61)) (* (((-1264 |#2|) |#1| (-1264 |#2|)) 17)))
-(((-969 |#1| |#2|) (-10 -7 (-15 -1552 (|#1| |#2| |#2|)) (-15 -1420 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|)) (-15 -3736 ((-2 (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|)) (-15 -1472 ((-2 (|:| |coef1| |#2|) (|:| -1552 |#1|)) |#2| |#2|)) (-15 -2418 (|#2| |#2| |#2| (-771))) (-15 -2282 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -1390 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -2378 (|#2| |#2| |#2| (-771))) (-15 -3232 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -4034 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -1624 (|#2| |#2| |#2|)) (-15 -2569 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -4005 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2829 (|#2| |#2| |#2|)) (-15 -1842 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2222 |#2|)) |#2| |#2|)) (-15 -3278 ((-2 (|:| |coef2| |#2|) (|:| -2222 |#2|)) |#2| |#2|)) (-15 -3028 ((-2 (|:| |coef1| |#2|) (|:| -2222 |#2|)) |#2| |#2|)) (-15 -2408 (|#1| |#2|)) (-15 -4110 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2408 |#1|)) |#2|)) (-15 -1488 ((-2 (|:| |coef2| |#2|) (|:| -2408 |#1|)) |#2|)) (-15 -3771 ((-644 |#2|) |#2| |#2|)) (-15 -3909 ((-644 (-771)) |#2| |#2|)) (IF (|has| |#1| (-454)) (PROGN (-15 -4256 (|#1| |#2| |#2|)) (-15 -1762 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4256 |#1|)) |#2| |#2|)) (-15 -2104 ((-2 (|:| |coef2| |#2|) (|:| -4256 |#1|)) |#2| |#2|)) (-15 -2222 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1264 |#2|) |#1| (-1264 |#2|))) (-15 -2972 ((-1264 |#2|) (-1264 |#2|) |#1|)) (-15 -2513 ((-2 (|:| -3157 |#1|) (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2|)) (-15 -2347 ((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2|)) (-15 -1461 (|#1| |#1| |#1| (-771))) (-15 -1334 (|#2| |#2| |#1| |#1| (-771))) (-15 -1828 (|#2| |#2| |#2| |#2| |#1|)) (-15 -1755 (|#1| |#2| |#2|)) (-15 -2556 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|)) (-15 -4363 ((-2 (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|))) (-558) (-1240 |#1|)) (T -969))
-((-4363 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1552 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2556 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1552 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-1755 (*1 *2 *3 *3) (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2)))) (-1828 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))) (-1334 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-771)) (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))) (-1461 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *2 (-558)) (-5 *1 (-969 *2 *4)) (-4 *4 (-1240 *2)))) (-2347 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2513 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| -3157 *4) (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2972 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-558)) (-5 *1 (-969 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1264 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-558)) (-5 *1 (-969 *3 *4)))) (-2222 (*1 *2 *2 *2) (-12 (-4 *3 (-454)) (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))) (-2104 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4256 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-1762 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4256 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-4256 (*1 *2 *3 *3) (-12 (-4 *2 (-558)) (-4 *2 (-454)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2)))) (-3909 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 (-771))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-3771 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-1488 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2408 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-4110 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2408 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2408 (*1 *2 *3) (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2)))) (-3028 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2222 *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-3278 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2222 *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-1842 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2222 *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2829 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))) (-4005 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2569 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-1624 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))) (-4034 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))) (-3232 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))) (-2378 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-558)) (-5 *1 (-969 *4 *2)) (-4 *2 (-1240 *4)))) (-1390 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))) (-2282 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))) (-2418 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-558)) (-5 *1 (-969 *4 *2)) (-4 *2 (-1240 *4)))) (-1472 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1552 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-3736 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1552 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-1420 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1552 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-1552 (*1 *2 *3 *3) (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2)))))
-(-10 -7 (-15 -1552 (|#1| |#2| |#2|)) (-15 -1420 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|)) (-15 -3736 ((-2 (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|)) (-15 -1472 ((-2 (|:| |coef1| |#2|) (|:| -1552 |#1|)) |#2| |#2|)) (-15 -2418 (|#2| |#2| |#2| (-771))) (-15 -2282 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -1390 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -2378 (|#2| |#2| |#2| (-771))) (-15 -3232 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -4034 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -1624 (|#2| |#2| |#2|)) (-15 -2569 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -4005 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2829 (|#2| |#2| |#2|)) (-15 -1842 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2222 |#2|)) |#2| |#2|)) (-15 -3278 ((-2 (|:| |coef2| |#2|) (|:| -2222 |#2|)) |#2| |#2|)) (-15 -3028 ((-2 (|:| |coef1| |#2|) (|:| -2222 |#2|)) |#2| |#2|)) (-15 -2408 (|#1| |#2|)) (-15 -4110 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2408 |#1|)) |#2|)) (-15 -1488 ((-2 (|:| |coef2| |#2|) (|:| -2408 |#1|)) |#2|)) (-15 -3771 ((-644 |#2|) |#2| |#2|)) (-15 -3909 ((-644 (-771)) |#2| |#2|)) (IF (|has| |#1| (-454)) (PROGN (-15 -4256 (|#1| |#2| |#2|)) (-15 -1762 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4256 |#1|)) |#2| |#2|)) (-15 -2104 ((-2 (|:| |coef2| |#2|) (|:| -4256 |#1|)) |#2| |#2|)) (-15 -2222 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1264 |#2|) |#1| (-1264 |#2|))) (-15 -2972 ((-1264 |#2|) (-1264 |#2|) |#1|)) (-15 -2513 ((-2 (|:| -3157 |#1|) (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2|)) (-15 -2347 ((-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) |#2| |#2|)) (-15 -1461 (|#1| |#1| |#1| (-771))) (-15 -1334 (|#2| |#2| |#1| |#1| (-771))) (-15 -1828 (|#2| |#2| |#2| |#2| |#1|)) (-15 -1755 (|#1| |#2| |#2|)) (-15 -2556 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|)) (-15 -4363 ((-2 (|:| |coef2| |#2|) (|:| -1552 |#1|)) |#2| |#2|)))
-((-2985 (((-112) $ $) NIL)) (-3812 (((-1213) $) 13)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1374 (((-1134) $) 10)) (-2512 (((-862) $) 20) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-970) (-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $)) (-15 -3812 ((-1213) $))))) (T -970))
-((-1374 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-970)))) (-3812 (*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-970)))))
-(-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $)) (-15 -3812 ((-1213) $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) 39)) (-2342 (($) NIL T CONST)) (-4384 (((-644 (-644 (-566))) (-644 (-566))) 48)) (-3437 (((-566) $) 72)) (-2634 (($ (-644 (-566))) 18)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3134 (((-644 (-566)) $) 13)) (-2032 (($ $) 52)) (-2512 (((-862) $) 68) (((-644 (-566)) $) 11)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 8 T CONST)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 26)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 25)) (-3034 (($ $ $) 28)) (* (($ (-921) $) NIL) (($ (-771) $) 37)))
-(((-971) (-13 (-795) (-614 (-644 (-566))) (-613 (-644 (-566))) (-10 -8 (-15 -2634 ($ (-644 (-566)))) (-15 -4384 ((-644 (-644 (-566))) (-644 (-566)))) (-15 -3437 ((-566) $)) (-15 -2032 ($ $))))) (T -971))
-((-2634 (*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-971)))) (-4384 (*1 *2 *3) (-12 (-5 *2 (-644 (-644 (-566)))) (-5 *1 (-971)) (-5 *3 (-644 (-566))))) (-3437 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-971)))) (-2032 (*1 *1 *1) (-5 *1 (-971))))
-(-13 (-795) (-614 (-644 (-566))) (-613 (-644 (-566))) (-10 -8 (-15 -2634 ($ (-644 (-566)))) (-15 -4384 ((-644 (-644 (-566))) (-644 (-566)))) (-15 -3437 ((-566) $)) (-15 -2032 ($ $))))
-((-3061 (($ $ |#2|) 31)) (-3047 (($ $) 23) (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 17) (($ $ $) NIL) (($ $ |#2|) 21) (($ |#2| $) 20) (($ (-409 (-566)) $) 27) (($ $ (-409 (-566))) 29)))
-(((-972 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -3061 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|))) (-973 |#2| |#3| |#4|) (-1049) (-792) (-850)) (T -972))
-NIL
-(-10 -8 (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -3061 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2540 (((-644 |#3|) $) 86)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-3653 (($ $) 64 (|has| |#1| (-558)))) (-2152 (((-112) $) 66 (|has| |#1| (-558)))) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-3577 (($ $) 72)) (-1579 (((-3 $ "failed") $) 37)) (-4039 (((-112) $) 85)) (-2741 (((-112) $) 35)) (-4367 (((-112) $) 74)) (-2519 (($ |#1| |#2|) 73) (($ $ |#3| |#2|) 88) (($ $ (-644 |#3|) (-644 |#2|)) 87)) (-3077 (($ (-1 |#1| |#1|) $) 75)) (-3545 (($ $) 77)) (-3557 ((|#1| $) 78)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2972 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-3992 ((|#2| $) 76)) (-1973 (($ $) 84)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558))) (($ |#1|) 59 (|has| |#1| (-172)))) (-2022 ((|#1| $ |#2|) 71)) (-3842 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 70 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
+((-2544 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2235 |#2|)) |#2| |#2|) 106)) (-1911 ((|#2| |#2| |#2|) 104)) (-2702 (((-2 (|:| |coef2| |#2|) (|:| -2235 |#2|)) |#2| |#2|) 108)) (-4242 (((-2 (|:| |coef1| |#2|) (|:| -2235 |#2|)) |#2| |#2|) 110)) (-3370 (((-2 (|:| |coef2| |#2|) (|:| -2828 |#1|)) |#2| |#2|) 132 (|has| |#1| (-454)))) (-1403 (((-2 (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|) 56)) (-1578 (((-2 (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|) 81)) (-3063 (((-2 (|:| |coef1| |#2|) (|:| -2662 |#1|)) |#2| |#2|) 83)) (-2214 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 97)) (-2010 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771)) 90)) (-3222 (((-2 (|:| |coef2| |#2|) (|:| -3309 |#1|)) |#2|) 122)) (-4335 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771)) 93)) (-2618 (((-644 (-771)) |#2| |#2|) 103)) (-4123 ((|#1| |#2| |#2|) 50)) (-4165 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2828 |#1|)) |#2| |#2|) 130 (|has| |#1| (-454)))) (-2828 ((|#1| |#2| |#2|) 128 (|has| |#1| (-454)))) (-2243 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|) 54)) (-3754 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|) 80)) (-2662 ((|#1| |#2| |#2|) 77)) (-3048 (((-2 (|:| -3223 |#1|) (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2|) 41)) (-2394 ((|#2| |#2| |#2| |#2| |#1|) 67)) (-2376 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 95)) (-2165 ((|#2| |#2| |#2|) 94)) (-1382 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771)) 88)) (-3386 ((|#2| |#2| |#2| (-771)) 86)) (-2235 ((|#2| |#2| |#2|) 136 (|has| |#1| (-454)))) (-2997 (((-1264 |#2|) (-1264 |#2|) |#1|) 22)) (-3919 (((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2|) 46)) (-3847 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3309 |#1|)) |#2|) 120)) (-3309 ((|#1| |#2|) 117)) (-3509 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771)) 92)) (-4222 ((|#2| |#2| |#2| (-771)) 91)) (-3779 (((-644 |#2|) |#2| |#2|) 100)) (-1916 ((|#2| |#2| |#1| |#1| (-771)) 62)) (-4151 ((|#1| |#1| |#1| (-771)) 61)) (* (((-1264 |#2|) |#1| (-1264 |#2|)) 17)))
+(((-969 |#1| |#2|) (-10 -7 (-15 -2662 (|#1| |#2| |#2|)) (-15 -3754 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|)) (-15 -1578 ((-2 (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|)) (-15 -3063 ((-2 (|:| |coef1| |#2|) (|:| -2662 |#1|)) |#2| |#2|)) (-15 -3386 (|#2| |#2| |#2| (-771))) (-15 -1382 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -2010 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -4222 (|#2| |#2| |#2| (-771))) (-15 -3509 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -4335 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -2165 (|#2| |#2| |#2|)) (-15 -2376 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2214 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -1911 (|#2| |#2| |#2|)) (-15 -2544 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2235 |#2|)) |#2| |#2|)) (-15 -2702 ((-2 (|:| |coef2| |#2|) (|:| -2235 |#2|)) |#2| |#2|)) (-15 -4242 ((-2 (|:| |coef1| |#2|) (|:| -2235 |#2|)) |#2| |#2|)) (-15 -3309 (|#1| |#2|)) (-15 -3847 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3309 |#1|)) |#2|)) (-15 -3222 ((-2 (|:| |coef2| |#2|) (|:| -3309 |#1|)) |#2|)) (-15 -3779 ((-644 |#2|) |#2| |#2|)) (-15 -2618 ((-644 (-771)) |#2| |#2|)) (IF (|has| |#1| (-454)) (PROGN (-15 -2828 (|#1| |#2| |#2|)) (-15 -4165 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2828 |#1|)) |#2| |#2|)) (-15 -3370 ((-2 (|:| |coef2| |#2|) (|:| -2828 |#1|)) |#2| |#2|)) (-15 -2235 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1264 |#2|) |#1| (-1264 |#2|))) (-15 -2997 ((-1264 |#2|) (-1264 |#2|) |#1|)) (-15 -3048 ((-2 (|:| -3223 |#1|) (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2|)) (-15 -3919 ((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2|)) (-15 -4151 (|#1| |#1| |#1| (-771))) (-15 -1916 (|#2| |#2| |#1| |#1| (-771))) (-15 -2394 (|#2| |#2| |#2| |#2| |#1|)) (-15 -4123 (|#1| |#2| |#2|)) (-15 -2243 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|)) (-15 -1403 ((-2 (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|))) (-558) (-1240 |#1|)) (T -969))
+((-1403 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2662 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2243 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2662 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-4123 (*1 *2 *3 *3) (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2)))) (-2394 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))) (-1916 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-771)) (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))) (-4151 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *2 (-558)) (-5 *1 (-969 *2 *4)) (-4 *4 (-1240 *2)))) (-3919 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-3048 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| -3223 *4) (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2997 (*1 *2 *2 *3) (-12 (-5 *2 (-1264 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-558)) (-5 *1 (-969 *3 *4)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1264 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-558)) (-5 *1 (-969 *3 *4)))) (-2235 (*1 *2 *2 *2) (-12 (-4 *3 (-454)) (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))) (-3370 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2828 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-4165 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2828 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2828 (*1 *2 *3 *3) (-12 (-4 *2 (-558)) (-4 *2 (-454)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2)))) (-2618 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 (-771))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-3779 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-3222 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3309 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-3847 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3309 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-3309 (*1 *2 *3) (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2)))) (-4242 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2235 *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2702 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2235 *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2544 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2235 *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-1911 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))) (-2214 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2376 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2165 (*1 *2 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))) (-4335 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))) (-3509 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))) (-4222 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-558)) (-5 *1 (-969 *4 *2)) (-4 *2 (-1240 *4)))) (-2010 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))) (-1382 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))) (-3386 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-558)) (-5 *1 (-969 *4 *2)) (-4 *2 (-1240 *4)))) (-3063 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2662 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-1578 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2662 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-3754 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2662 *4))) (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))) (-2662 (*1 *2 *3 *3) (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2)))))
+(-10 -7 (-15 -2662 (|#1| |#2| |#2|)) (-15 -3754 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|)) (-15 -1578 ((-2 (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|)) (-15 -3063 ((-2 (|:| |coef1| |#2|) (|:| -2662 |#1|)) |#2| |#2|)) (-15 -3386 (|#2| |#2| |#2| (-771))) (-15 -1382 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -2010 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -4222 (|#2| |#2| |#2| (-771))) (-15 -3509 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -4335 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-771))) (-15 -2165 (|#2| |#2| |#2|)) (-15 -2376 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2214 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -1911 (|#2| |#2| |#2|)) (-15 -2544 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2235 |#2|)) |#2| |#2|)) (-15 -2702 ((-2 (|:| |coef2| |#2|) (|:| -2235 |#2|)) |#2| |#2|)) (-15 -4242 ((-2 (|:| |coef1| |#2|) (|:| -2235 |#2|)) |#2| |#2|)) (-15 -3309 (|#1| |#2|)) (-15 -3847 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3309 |#1|)) |#2|)) (-15 -3222 ((-2 (|:| |coef2| |#2|) (|:| -3309 |#1|)) |#2|)) (-15 -3779 ((-644 |#2|) |#2| |#2|)) (-15 -2618 ((-644 (-771)) |#2| |#2|)) (IF (|has| |#1| (-454)) (PROGN (-15 -2828 (|#1| |#2| |#2|)) (-15 -4165 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2828 |#1|)) |#2| |#2|)) (-15 -3370 ((-2 (|:| |coef2| |#2|) (|:| -2828 |#1|)) |#2| |#2|)) (-15 -2235 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1264 |#2|) |#1| (-1264 |#2|))) (-15 -2997 ((-1264 |#2|) (-1264 |#2|) |#1|)) (-15 -3048 ((-2 (|:| -3223 |#1|) (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2|)) (-15 -3919 ((-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) |#2| |#2|)) (-15 -4151 (|#1| |#1| |#1| (-771))) (-15 -1916 (|#2| |#2| |#1| |#1| (-771))) (-15 -2394 (|#2| |#2| |#2| |#2| |#1|)) (-15 -4123 (|#1| |#2| |#2|)) (-15 -2243 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|)) (-15 -1403 ((-2 (|:| |coef2| |#2|) (|:| -2662 |#1|)) |#2| |#2|)))
+((-3009 (((-112) $ $) NIL)) (-3848 (((-1213) $) 13)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1424 (((-1134) $) 10)) (-3780 (((-862) $) 20) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-970) (-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $)) (-15 -3848 ((-1213) $))))) (T -970))
+((-1424 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-970)))) (-3848 (*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-970)))))
+(-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $)) (-15 -3848 ((-1213) $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) 39)) (-3877 (($) NIL T CONST)) (-1641 (((-644 (-644 (-566))) (-644 (-566))) 48)) (-1704 (((-566) $) 72)) (-1772 (($ (-644 (-566))) 18)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3204 (((-644 (-566)) $) 13)) (-3850 (($ $) 52)) (-3780 (((-862) $) 68) (((-644 (-566)) $) 11)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 8 T CONST)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 26)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 25)) (-3040 (($ $ $) 28)) (* (($ (-921) $) NIL) (($ (-771) $) 37)))
+(((-971) (-13 (-795) (-614 (-644 (-566))) (-613 (-644 (-566))) (-10 -8 (-15 -1772 ($ (-644 (-566)))) (-15 -1641 ((-644 (-644 (-566))) (-644 (-566)))) (-15 -1704 ((-566) $)) (-15 -3850 ($ $))))) (T -971))
+((-1772 (*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-971)))) (-1641 (*1 *2 *3) (-12 (-5 *2 (-644 (-644 (-566)))) (-5 *1 (-971)) (-5 *3 (-644 (-566))))) (-1704 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-971)))) (-3850 (*1 *1 *1) (-5 *1 (-971))))
+(-13 (-795) (-614 (-644 (-566))) (-613 (-644 (-566))) (-10 -8 (-15 -1772 ($ (-644 (-566)))) (-15 -1641 ((-644 (-644 (-566))) (-644 (-566)))) (-15 -1704 ((-566) $)) (-15 -3850 ($ $))))
+((-3062 (($ $ |#2|) 31)) (-3051 (($ $) 23) (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 17) (($ $ $) NIL) (($ $ |#2|) 21) (($ |#2| $) 20) (($ (-409 (-566)) $) 27) (($ $ (-409 (-566))) 29)))
+(((-972 |#1| |#2| |#3| |#4|) (-10 -8 (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -3062 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|))) (-973 |#2| |#3| |#4|) (-1049) (-792) (-850)) (T -972))
+NIL
+(-10 -8 (-15 * (|#1| |#1| (-409 (-566)))) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 -3062 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 * (|#1| (-921) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2608 (((-644 |#3|) $) 86)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-1968 (($ $) 64 (|has| |#1| (-558)))) (-2644 (((-112) $) 66 (|has| |#1| (-558)))) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-3645 (($ $) 72)) (-2928 (((-3 $ "failed") $) 37)) (-4392 (((-112) $) 85)) (-3466 (((-112) $) 35)) (-1453 (((-112) $) 74)) (-2585 (($ |#1| |#2|) 73) (($ $ |#3| |#2|) 88) (($ $ (-644 |#3|) (-644 |#2|)) 87)) (-3152 (($ (-1 |#1| |#1|) $) 75)) (-3614 (($ $) 77)) (-3626 ((|#1| $) 78)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2997 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-2108 ((|#2| $) 76)) (-1377 (($ $) 84)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558))) (($ |#1|) 59 (|has| |#1| (-172)))) (-3756 ((|#1| $ |#2|) 71)) (-3226 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 70 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
(((-973 |#1| |#2| |#3|) (-140) (-1049) (-792) (-850)) (T -973))
-((-3557 (*1 *2 *1) (-12 (-4 *1 (-973 *2 *3 *4)) (-4 *3 (-792)) (-4 *4 (-850)) (-4 *2 (-1049)))) (-3545 (*1 *1 *1) (-12 (-4 *1 (-973 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-792)) (-4 *4 (-850)))) (-3992 (*1 *2 *1) (-12 (-4 *1 (-973 *3 *2 *4)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *2 (-792)))) (-2519 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-973 *4 *3 *2)) (-4 *4 (-1049)) (-4 *3 (-792)) (-4 *2 (-850)))) (-2519 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *6)) (-5 *3 (-644 *5)) (-4 *1 (-973 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-792)) (-4 *6 (-850)))) (-2540 (*1 *2 *1) (-12 (-4 *1 (-973 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-792)) (-4 *5 (-850)) (-5 *2 (-644 *5)))) (-4039 (*1 *2 *1) (-12 (-4 *1 (-973 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-792)) (-4 *5 (-850)) (-5 *2 (-112)))) (-1973 (*1 *1 *1) (-12 (-4 *1 (-973 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-792)) (-4 *4 (-850)))))
-(-13 (-47 |t#1| |t#2|) (-10 -8 (-15 -2519 ($ $ |t#3| |t#2|)) (-15 -2519 ($ $ (-644 |t#3|) (-644 |t#2|))) (-15 -3545 ($ $)) (-15 -3557 (|t#1| $)) (-15 -3992 (|t#2| $)) (-15 -2540 ((-644 |t#3|) $)) (-15 -4039 ((-112) $)) (-15 -1973 ($ $))))
+((-3626 (*1 *2 *1) (-12 (-4 *1 (-973 *2 *3 *4)) (-4 *3 (-792)) (-4 *4 (-850)) (-4 *2 (-1049)))) (-3614 (*1 *1 *1) (-12 (-4 *1 (-973 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-792)) (-4 *4 (-850)))) (-2108 (*1 *2 *1) (-12 (-4 *1 (-973 *3 *2 *4)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *2 (-792)))) (-2585 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-973 *4 *3 *2)) (-4 *4 (-1049)) (-4 *3 (-792)) (-4 *2 (-850)))) (-2585 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 *6)) (-5 *3 (-644 *5)) (-4 *1 (-973 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-792)) (-4 *6 (-850)))) (-2608 (*1 *2 *1) (-12 (-4 *1 (-973 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-792)) (-4 *5 (-850)) (-5 *2 (-644 *5)))) (-4392 (*1 *2 *1) (-12 (-4 *1 (-973 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-792)) (-4 *5 (-850)) (-5 *2 (-112)))) (-1377 (*1 *1 *1) (-12 (-4 *1 (-973 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-792)) (-4 *4 (-850)))))
+(-13 (-47 |t#1| |t#2|) (-10 -8 (-15 -2585 ($ $ |t#3| |t#2|)) (-15 -2585 ($ $ (-644 |t#3|) (-644 |t#2|))) (-15 -3614 ($ $)) (-15 -3626 (|t#1| $)) (-15 -2108 (|t#2| $)) (-15 -2608 ((-644 |t#3|) $)) (-15 -4392 ((-112) $)) (-15 -1377 ($ $))))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-558)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-409 (-566)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) |has| |#1| (-38 (-409 (-566)))) ((-616 (-566)) . T) ((-616 |#1|) |has| |#1| (-172)) ((-616 $) |has| |#1| (-558)) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-291) |has| |#1| (-558)) ((-558) |has| |#1| (-558)) ((-646 #0#) |has| |#1| (-38 (-409 (-566)))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) |has| |#1| (-38 (-409 (-566)))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) |has| |#1| (-38 (-409 (-566)))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) |has| |#1| (-558)) ((-717 #0#) |has| |#1| (-38 (-409 (-566)))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) |has| |#1| (-558)) ((-726) . T) ((-1051 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1056 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-1312 (((-1093 (-225)) $) 8)) (-3175 (((-1093 (-225)) $) 9)) (-3162 (((-1093 (-225)) $) 10)) (-1525 (((-644 (-644 (-943 (-225)))) $) 11)) (-2512 (((-862) $) 6)))
+((-3106 (((-1093 (-225)) $) 8)) (-3096 (((-1093 (-225)) $) 9)) (-3085 (((-1093 (-225)) $) 10)) (-2399 (((-644 (-644 (-943 (-225)))) $) 11)) (-3780 (((-862) $) 6)))
(((-974) (-140)) (T -974))
-((-1525 (*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-644 (-644 (-943 (-225))))))) (-3162 (*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))) (-3175 (*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))) (-1312 (*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))))
-(-13 (-613 (-862)) (-10 -8 (-15 -1525 ((-644 (-644 (-943 (-225)))) $)) (-15 -3162 ((-1093 (-225)) $)) (-15 -3175 ((-1093 (-225)) $)) (-15 -1312 ((-1093 (-225)) $))))
+((-2399 (*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-644 (-644 (-943 (-225))))))) (-3085 (*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))) (-3096 (*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))) (-3106 (*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))))
+(-13 (-613 (-862)) (-10 -8 (-15 -2399 ((-644 (-644 (-943 (-225)))) $)) (-15 -3085 ((-1093 (-225)) $)) (-15 -3096 ((-1093 (-225)) $)) (-15 -3106 ((-1093 (-225)) $))))
(((-613 (-862)) . T))
-((-2540 (((-644 |#4|) $) 23)) (-2598 (((-112) $) 55)) (-2740 (((-112) $) 54)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#4|) 42)) (-4179 (((-112) $) 56)) (-4184 (((-112) $ $) 62)) (-1576 (((-112) $ $) 65)) (-2398 (((-112) $) 60)) (-2380 (((-644 |#5|) (-644 |#5|) $) 98)) (-2268 (((-644 |#5|) (-644 |#5|) $) 95)) (-1644 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 88)) (-3097 (((-644 |#4|) $) 27)) (-3492 (((-112) |#4| $) 34)) (-2410 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-1945 (($ $ |#4|) 39)) (-1398 (($ $ |#4|) 38)) (-4287 (($ $ |#4|) 40)) (-2940 (((-112) $ $) 46)))
-(((-975 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2740 ((-112) |#1|)) (-15 -2380 ((-644 |#5|) (-644 |#5|) |#1|)) (-15 -2268 ((-644 |#5|) (-644 |#5|) |#1|)) (-15 -1644 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2410 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4179 ((-112) |#1|)) (-15 -1576 ((-112) |#1| |#1|)) (-15 -4184 ((-112) |#1| |#1|)) (-15 -2398 ((-112) |#1|)) (-15 -2598 ((-112) |#1|)) (-15 -3290 ((-2 (|:| |under| |#1|) (|:| -4317 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -1945 (|#1| |#1| |#4|)) (-15 -4287 (|#1| |#1| |#4|)) (-15 -1398 (|#1| |#1| |#4|)) (-15 -3492 ((-112) |#4| |#1|)) (-15 -3097 ((-644 |#4|) |#1|)) (-15 -2540 ((-644 |#4|) |#1|)) (-15 -2940 ((-112) |#1| |#1|))) (-976 |#2| |#3| |#4| |#5|) (-1049) (-793) (-850) (-1064 |#2| |#3| |#4|)) (T -975))
+((-2608 (((-644 |#4|) $) 23)) (-1390 (((-112) $) 55)) (-3455 (((-112) $) 54)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#4|) 42)) (-3310 (((-112) $) 56)) (-3367 (((-112) $ $) 62)) (-2895 (((-112) $ $) 65)) (-3219 (((-112) $) 60)) (-4239 (((-644 |#5|) (-644 |#5|) $) 98)) (-4344 (((-644 |#5|) (-644 |#5|) $) 95)) (-4228 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 88)) (-1711 (((-644 |#4|) $) 27)) (-4113 (((-112) |#4| $) 34)) (-3331 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-2363 (($ $ |#4|) 39)) (-3513 (($ $ |#4|) 38)) (-3130 (($ $ |#4|) 40)) (-2950 (((-112) $ $) 46)))
+(((-975 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3455 ((-112) |#1|)) (-15 -4239 ((-644 |#5|) (-644 |#5|) |#1|)) (-15 -4344 ((-644 |#5|) (-644 |#5|) |#1|)) (-15 -4228 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3331 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3310 ((-112) |#1|)) (-15 -2895 ((-112) |#1| |#1|)) (-15 -3367 ((-112) |#1| |#1|)) (-15 -3219 ((-112) |#1|)) (-15 -1390 ((-112) |#1|)) (-15 -1568 ((-2 (|:| |under| |#1|) (|:| -2209 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -2363 (|#1| |#1| |#4|)) (-15 -3130 (|#1| |#1| |#4|)) (-15 -3513 (|#1| |#1| |#4|)) (-15 -4113 ((-112) |#4| |#1|)) (-15 -1711 ((-644 |#4|) |#1|)) (-15 -2608 ((-644 |#4|) |#1|)) (-15 -2950 ((-112) |#1| |#1|))) (-976 |#2| |#3| |#4| |#5|) (-1049) (-793) (-850) (-1064 |#2| |#3| |#4|)) (T -975))
NIL
-(-10 -8 (-15 -2740 ((-112) |#1|)) (-15 -2380 ((-644 |#5|) (-644 |#5|) |#1|)) (-15 -2268 ((-644 |#5|) (-644 |#5|) |#1|)) (-15 -1644 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -2410 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4179 ((-112) |#1|)) (-15 -1576 ((-112) |#1| |#1|)) (-15 -4184 ((-112) |#1| |#1|)) (-15 -2398 ((-112) |#1|)) (-15 -2598 ((-112) |#1|)) (-15 -3290 ((-2 (|:| |under| |#1|) (|:| -4317 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -1945 (|#1| |#1| |#4|)) (-15 -4287 (|#1| |#1| |#4|)) (-15 -1398 (|#1| |#1| |#4|)) (-15 -3492 ((-112) |#4| |#1|)) (-15 -3097 ((-644 |#4|) |#1|)) (-15 -2540 ((-644 |#4|) |#1|)) (-15 -2940 ((-112) |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-2540 (((-644 |#3|) $) 34)) (-2598 (((-112) $) 27)) (-2740 (((-112) $) 18 (|has| |#1| (-558)))) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) 28)) (-3081 (((-112) $ (-771)) 45)) (-4186 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4417)))) (-2342 (($) 46 T CONST)) (-4179 (((-112) $) 23 (|has| |#1| (-558)))) (-4184 (((-112) $ $) 25 (|has| |#1| (-558)))) (-1576 (((-112) $ $) 24 (|has| |#1| (-558)))) (-2398 (((-112) $) 26 (|has| |#1| (-558)))) (-2380 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) 37)) (-1756 (($ (-644 |#4|)) 36)) (-4093 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4417)))) (-3372 (((-644 |#4|) $) 53 (|has| $ (-6 -4417)))) (-1594 ((|#3| $) 35)) (-2744 (((-112) $ (-771)) 44)) (-2404 (((-644 |#4|) $) 54 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) 48)) (-3097 (((-644 |#3|) $) 33)) (-3492 (((-112) |#3| $) 32)) (-3882 (((-112) $ (-771)) 43)) (-2878 (((-1157) $) 10)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-4033 (((-1119) $) 11)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-2822 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) 39)) (-4194 (((-112) $) 42)) (-2954 (($) 41)) (-4044 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4417)))) (-3895 (($ $) 40)) (-3134 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-2523 (($ (-644 |#4|)) 61)) (-1945 (($ $ |#3|) 29)) (-1398 (($ $ |#3|) 31)) (-4287 (($ $ |#3|) 30)) (-2512 (((-862) $) 12) (((-644 |#4|) $) 38)) (-3122 (((-112) $ $) 9)) (-3427 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 6)) (-2997 (((-771) $) 47 (|has| $ (-6 -4417)))))
+(-10 -8 (-15 -3455 ((-112) |#1|)) (-15 -4239 ((-644 |#5|) (-644 |#5|) |#1|)) (-15 -4344 ((-644 |#5|) (-644 |#5|) |#1|)) (-15 -4228 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3331 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3310 ((-112) |#1|)) (-15 -2895 ((-112) |#1| |#1|)) (-15 -3367 ((-112) |#1| |#1|)) (-15 -3219 ((-112) |#1|)) (-15 -1390 ((-112) |#1|)) (-15 -1568 ((-2 (|:| |under| |#1|) (|:| -2209 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -2363 (|#1| |#1| |#4|)) (-15 -3130 (|#1| |#1| |#4|)) (-15 -3513 (|#1| |#1| |#4|)) (-15 -4113 ((-112) |#4| |#1|)) (-15 -1711 ((-644 |#4|) |#1|)) (-15 -2608 ((-644 |#4|) |#1|)) (-15 -2950 ((-112) |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-2608 (((-644 |#3|) $) 34)) (-1390 (((-112) $) 27)) (-3455 (((-112) $) 18 (|has| |#1| (-558)))) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) 28)) (-1574 (((-112) $ (-771)) 45)) (-1386 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4414)))) (-3877 (($) 46 T CONST)) (-3310 (((-112) $) 23 (|has| |#1| (-558)))) (-3367 (((-112) $ $) 25 (|has| |#1| (-558)))) (-2895 (((-112) $ $) 24 (|has| |#1| (-558)))) (-3219 (((-112) $) 26 (|has| |#1| (-558)))) (-4239 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) 37)) (-1867 (($ (-644 |#4|)) 36)) (-4133 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4414)))) (-3799 (((-644 |#4|) $) 53 (|has| $ (-6 -4414)))) (-1887 ((|#3| $) 35)) (-3501 (((-112) $ (-771)) 44)) (-3276 (((-644 |#4|) $) 54 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) 48)) (-1711 (((-644 |#3|) $) 33)) (-4113 (((-112) |#3| $) 32)) (-3582 (((-112) $ (-771)) 43)) (-2402 (((-1157) $) 10)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-4056 (((-1119) $) 11)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-3044 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) 39)) (-3461 (((-112) $) 42)) (-1793 (($) 41)) (-4067 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4414)))) (-3940 (($ $) 40)) (-3204 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-3791 (($ (-644 |#4|)) 61)) (-2363 (($ $ |#3|) 29)) (-3513 (($ $ |#3|) 31)) (-3130 (($ $ |#3|) 30)) (-3780 (((-862) $) 12) (((-644 |#4|) $) 38)) (-3801 (((-112) $ $) 9)) (-1583 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 6)) (-3020 (((-771) $) 47 (|has| $ (-6 -4414)))))
(((-976 |#1| |#2| |#3| |#4|) (-140) (-1049) (-793) (-850) (-1064 |t#1| |t#2| |t#3|)) (T -976))
-((-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *1 (-976 *3 *4 *5 *6)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *1 (-976 *3 *4 *5 *6)))) (-1594 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-1064 *3 *4 *2)) (-4 *2 (-850)))) (-2540 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *5)))) (-3097 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *5)))) (-3492 (*1 *2 *3 *1) (-12 (-4 *1 (-976 *4 *5 *3 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-4 *6 (-1064 *4 *5 *3)) (-5 *2 (-112)))) (-1398 (*1 *1 *1 *2) (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))) (-4287 (*1 *1 *1 *2) (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))) (-1945 (*1 *1 *1 *2) (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))) (-3290 (*1 *2 *1 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-4 *6 (-1064 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -4317 *1) (|:| |upper| *1))) (-4 *1 (-976 *4 *5 *3 *6)))) (-2598 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-2398 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-5 *2 (-112)))) (-4184 (*1 *2 *1 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-5 *2 (-112)))) (-1576 (*1 *2 *1 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-5 *2 (-112)))) (-4179 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-5 *2 (-112)))) (-2410 (*1 *2 *3 *1) (-12 (-4 *1 (-976 *4 *5 *6 *3)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-1644 (*1 *2 *3 *1) (-12 (-4 *1 (-976 *4 *5 *6 *3)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-2268 (*1 *2 *2 *1) (-12 (-5 *2 (-644 *6)) (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)))) (-2380 (*1 *2 *2 *1) (-12 (-5 *2 (-644 *6)) (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)))) (-2740 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-5 *2 (-112)))))
-(-13 (-1099) (-151 |t#4|) (-613 (-644 |t#4|)) (-10 -8 (-6 -4417) (-15 -2977 ((-3 $ "failed") (-644 |t#4|))) (-15 -1756 ($ (-644 |t#4|))) (-15 -1594 (|t#3| $)) (-15 -2540 ((-644 |t#3|) $)) (-15 -3097 ((-644 |t#3|) $)) (-15 -3492 ((-112) |t#3| $)) (-15 -1398 ($ $ |t#3|)) (-15 -4287 ($ $ |t#3|)) (-15 -1945 ($ $ |t#3|)) (-15 -3290 ((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |t#3|)) (-15 -2598 ((-112) $)) (IF (|has| |t#1| (-558)) (PROGN (-15 -2398 ((-112) $)) (-15 -4184 ((-112) $ $)) (-15 -1576 ((-112) $ $)) (-15 -4179 ((-112) $)) (-15 -2410 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -1644 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -2268 ((-644 |t#4|) (-644 |t#4|) $)) (-15 -2380 ((-644 |t#4|) (-644 |t#4|) $)) (-15 -2740 ((-112) $))) |%noBranch|)))
+((-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *1 (-976 *3 *4 *5 *6)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *1 (-976 *3 *4 *5 *6)))) (-1887 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-1064 *3 *4 *2)) (-4 *2 (-850)))) (-2608 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *5)))) (-1711 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *5)))) (-4113 (*1 *2 *3 *1) (-12 (-4 *1 (-976 *4 *5 *3 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-4 *6 (-1064 *4 *5 *3)) (-5 *2 (-112)))) (-3513 (*1 *1 *1 *2) (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))) (-3130 (*1 *1 *1 *2) (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))) (-2363 (*1 *1 *1 *2) (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))) (-1568 (*1 *2 *1 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-4 *6 (-1064 *4 *5 *3)) (-5 *2 (-2 (|:| |under| *1) (|:| -2209 *1) (|:| |upper| *1))) (-4 *1 (-976 *4 *5 *3 *6)))) (-1390 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-3219 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-5 *2 (-112)))) (-3367 (*1 *2 *1 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-5 *2 (-112)))) (-2895 (*1 *2 *1 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-5 *2 (-112)))) (-3310 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-5 *2 (-112)))) (-3331 (*1 *2 *3 *1) (-12 (-4 *1 (-976 *4 *5 *6 *3)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))) (-4228 (*1 *2 *3 *1) (-12 (-4 *1 (-976 *4 *5 *6 *3)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))) (-4344 (*1 *2 *2 *1) (-12 (-5 *2 (-644 *6)) (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)))) (-4239 (*1 *2 *2 *1) (-12 (-5 *2 (-644 *6)) (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)))) (-3455 (*1 *2 *1) (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-5 *2 (-112)))))
+(-13 (-1099) (-151 |t#4|) (-613 (-644 |t#4|)) (-10 -8 (-6 -4414) (-15 -3066 ((-3 $ "failed") (-644 |t#4|))) (-15 -1867 ($ (-644 |t#4|))) (-15 -1887 (|t#3| $)) (-15 -2608 ((-644 |t#3|) $)) (-15 -1711 ((-644 |t#3|) $)) (-15 -4113 ((-112) |t#3| $)) (-15 -3513 ($ $ |t#3|)) (-15 -3130 ($ $ |t#3|)) (-15 -2363 ($ $ |t#3|)) (-15 -1568 ((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |t#3|)) (-15 -1390 ((-112) $)) (IF (|has| |t#1| (-558)) (PROGN (-15 -3219 ((-112) $)) (-15 -3367 ((-112) $ $)) (-15 -2895 ((-112) $ $)) (-15 -3310 ((-112) $)) (-15 -3331 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -4228 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -4344 ((-644 |t#4|) (-644 |t#4|) $)) (-15 -4239 ((-644 |t#4|) (-644 |t#4|) $)) (-15 -3455 ((-112) $))) |%noBranch|)))
(((-34) . T) ((-102) . T) ((-613 (-644 |#4|)) . T) ((-613 (-862)) . T) ((-151 |#4|) . T) ((-614 (-538)) |has| |#4| (-614 (-538))) ((-310 |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-491 |#4|) . T) ((-516 |#4| |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-1099) . T) ((-1214) . T))
-((-3256 (((-644 |#4|) |#4| |#4|) 136)) (-2492 (((-644 |#4|) (-644 |#4|) (-112)) 125 (|has| |#1| (-454))) (((-644 |#4|) (-644 |#4|)) 126 (|has| |#1| (-454)))) (-1639 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|)) 44)) (-3759 (((-112) |#4|) 43)) (-2361 (((-644 |#4|) |#4|) 121 (|has| |#1| (-454)))) (-2421 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-1 (-112) |#4|) (-644 |#4|)) 24)) (-2356 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|)) 30)) (-4090 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|)) 31)) (-2813 (((-3 (-2 (|:| |bas| (-478 |#1| |#2| |#3| |#4|)) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|)) 90)) (-1660 (((-644 |#4|) (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 103)) (-2475 (((-644 |#4|) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 129)) (-2691 (((-644 |#4|) (-644 |#4|)) 128)) (-2796 (((-644 |#4|) (-644 |#4|) (-644 |#4|) (-112)) 59) (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 61)) (-4035 ((|#4| |#4| (-644 |#4|)) 60)) (-1825 (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 132 (|has| |#1| (-454)))) (-4238 (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 135 (|has| |#1| (-454)))) (-3086 (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 134 (|has| |#1| (-454)))) (-2902 (((-644 |#4|) (-644 |#4|) (-644 |#4|) (-1 (-644 |#4|) (-644 |#4|))) 105) (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 107) (((-644 |#4|) (-644 |#4|) |#4|) 141) (((-644 |#4|) |#4| |#4|) 137) (((-644 |#4|) (-644 |#4|)) 106)) (-2267 (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 118 (-12 (|has| |#1| (-147)) (|has| |#1| (-308))))) (-2202 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|)) 52)) (-4329 (((-112) (-644 |#4|)) 79)) (-3519 (((-112) (-644 |#4|) (-644 (-644 |#4|))) 67)) (-2746 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|)) 37)) (-2645 (((-112) |#4|) 36)) (-4061 (((-644 |#4|) (-644 |#4|)) 116 (-12 (|has| |#1| (-147)) (|has| |#1| (-308))))) (-1632 (((-644 |#4|) (-644 |#4|)) 117 (-12 (|has| |#1| (-147)) (|has| |#1| (-308))))) (-3875 (((-644 |#4|) (-644 |#4|)) 83)) (-1775 (((-644 |#4|) (-644 |#4|)) 97)) (-1371 (((-112) (-644 |#4|) (-644 |#4|)) 65)) (-4091 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|)) 50)) (-3735 (((-112) |#4|) 45)))
-(((-977 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2902 ((-644 |#4|) (-644 |#4|))) (-15 -2902 ((-644 |#4|) |#4| |#4|)) (-15 -2691 ((-644 |#4|) (-644 |#4|))) (-15 -3256 ((-644 |#4|) |#4| |#4|)) (-15 -2902 ((-644 |#4|) (-644 |#4|) |#4|)) (-15 -2902 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -2902 ((-644 |#4|) (-644 |#4|) (-644 |#4|) (-1 (-644 |#4|) (-644 |#4|)))) (-15 -1371 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -3519 ((-112) (-644 |#4|) (-644 (-644 |#4|)))) (-15 -4329 ((-112) (-644 |#4|))) (-15 -2421 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-1 (-112) |#4|) (-644 |#4|))) (-15 -2356 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|))) (-15 -4090 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|))) (-15 -2202 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -3759 ((-112) |#4|)) (-15 -1639 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -2645 ((-112) |#4|)) (-15 -2746 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -3735 ((-112) |#4|)) (-15 -4091 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -2796 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -2796 ((-644 |#4|) (-644 |#4|) (-644 |#4|) (-112))) (-15 -4035 (|#4| |#4| (-644 |#4|))) (-15 -3875 ((-644 |#4|) (-644 |#4|))) (-15 -2813 ((-3 (-2 (|:| |bas| (-478 |#1| |#2| |#3| |#4|)) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|))) (-15 -1775 ((-644 |#4|) (-644 |#4|))) (-15 -1660 ((-644 |#4|) (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2475 ((-644 |#4|) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-454)) (PROGN (-15 -2361 ((-644 |#4|) |#4|)) (-15 -2492 ((-644 |#4|) (-644 |#4|))) (-15 -2492 ((-644 |#4|) (-644 |#4|) (-112))) (-15 -1825 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -3086 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -4238 ((-644 |#4|) (-644 |#4|) (-644 |#4|)))) |%noBranch|) (IF (|has| |#1| (-308)) (IF (|has| |#1| (-147)) (PROGN (-15 -1632 ((-644 |#4|) (-644 |#4|))) (-15 -4061 ((-644 |#4|) (-644 |#4|))) (-15 -2267 ((-644 |#4|) (-644 |#4|) (-644 |#4|)))) |%noBranch|) |%noBranch|)) (-558) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -977))
-((-2267 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-4061 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-1632 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-4238 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-3086 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-1825 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-2492 (*1 *2 *2 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-112)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *7)))) (-2492 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-2361 (*1 *2 *3) (-12 (-4 *4 (-454)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *3)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-2475 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-977 *5 *6 *7 *8)))) (-1660 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-644 *9)) (-5 *3 (-1 (-112) *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558)) (-4 *7 (-793)) (-4 *8 (-850)) (-5 *1 (-977 *6 *7 *8 *9)))) (-1775 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-2813 (*1 *2 *3) (|partial| -12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-478 *4 *5 *6 *7)) (|:| -3877 (-644 *7)))) (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-3875 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-4035 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *2)))) (-2796 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-112)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *7)))) (-2796 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-4091 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7)))) (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-3735 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-2746 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7)))) (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-2645 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-1639 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7)))) (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-3759 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-2202 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7)))) (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-4090 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-1 (-112) *8))) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8)))) (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))) (-2356 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-1 (-112) *8))) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8)))) (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))) (-2421 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8)))) (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))) (-4329 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *4 *5 *6 *7)))) (-3519 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-644 *8))) (-5 *3 (-644 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *5 *6 *7 *8)))) (-1371 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *4 *5 *6 *7)))) (-2902 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-644 *7) (-644 *7))) (-5 *2 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *7)))) (-2902 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-2902 (*1 *2 *2 *3) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *3)))) (-3256 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *3)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-2691 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-2902 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *3)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-2902 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))))
-(-10 -7 (-15 -2902 ((-644 |#4|) (-644 |#4|))) (-15 -2902 ((-644 |#4|) |#4| |#4|)) (-15 -2691 ((-644 |#4|) (-644 |#4|))) (-15 -3256 ((-644 |#4|) |#4| |#4|)) (-15 -2902 ((-644 |#4|) (-644 |#4|) |#4|)) (-15 -2902 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -2902 ((-644 |#4|) (-644 |#4|) (-644 |#4|) (-1 (-644 |#4|) (-644 |#4|)))) (-15 -1371 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -3519 ((-112) (-644 |#4|) (-644 (-644 |#4|)))) (-15 -4329 ((-112) (-644 |#4|))) (-15 -2421 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-1 (-112) |#4|) (-644 |#4|))) (-15 -2356 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|))) (-15 -4090 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|))) (-15 -2202 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -3759 ((-112) |#4|)) (-15 -1639 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -2645 ((-112) |#4|)) (-15 -2746 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -3735 ((-112) |#4|)) (-15 -4091 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -2796 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -2796 ((-644 |#4|) (-644 |#4|) (-644 |#4|) (-112))) (-15 -4035 (|#4| |#4| (-644 |#4|))) (-15 -3875 ((-644 |#4|) (-644 |#4|))) (-15 -2813 ((-3 (-2 (|:| |bas| (-478 |#1| |#2| |#3| |#4|)) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|))) (-15 -1775 ((-644 |#4|) (-644 |#4|))) (-15 -1660 ((-644 |#4|) (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2475 ((-644 |#4|) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-454)) (PROGN (-15 -2361 ((-644 |#4|) |#4|)) (-15 -2492 ((-644 |#4|) (-644 |#4|))) (-15 -2492 ((-644 |#4|) (-644 |#4|) (-112))) (-15 -1825 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -3086 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -4238 ((-644 |#4|) (-644 |#4|) (-644 |#4|)))) |%noBranch|) (IF (|has| |#1| (-308)) (IF (|has| |#1| (-147)) (PROGN (-15 -1632 ((-644 |#4|) (-644 |#4|))) (-15 -4061 ((-644 |#4|) (-644 |#4|))) (-15 -2267 ((-644 |#4|) (-644 |#4|) (-644 |#4|)))) |%noBranch|) |%noBranch|))
-((-2279 (((-2 (|:| R (-689 |#1|)) (|:| A (-689 |#1|)) (|:| |Ainv| (-689 |#1|))) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 19)) (-4355 (((-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|)) 44)) (-1425 (((-689 |#1|) (-689 |#1|) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 16)))
-(((-978 |#1|) (-10 -7 (-15 -2279 ((-2 (|:| R (-689 |#1|)) (|:| A (-689 |#1|)) (|:| |Ainv| (-689 |#1|))) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -1425 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -4355 ((-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|)))) (-365)) (T -978))
-((-4355 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-5 *2 (-644 (-2 (|:| C (-689 *5)) (|:| |g| (-1264 *5))))) (-5 *1 (-978 *5)) (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)))) (-1425 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-689 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-365)) (-5 *1 (-978 *5)))) (-2279 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-365)) (-5 *2 (-2 (|:| R (-689 *6)) (|:| A (-689 *6)) (|:| |Ainv| (-689 *6)))) (-5 *1 (-978 *6)) (-5 *3 (-689 *6)))))
-(-10 -7 (-15 -2279 ((-2 (|:| R (-689 |#1|)) (|:| A (-689 |#1|)) (|:| |Ainv| (-689 |#1|))) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -1425 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -4355 ((-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|))))
-((-1370 (((-420 |#4|) |#4|) 56)))
-(((-979 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1370 ((-420 |#4|) |#4|))) (-850) (-793) (-454) (-949 |#3| |#2| |#1|)) (T -979))
-((-1370 (*1 *2 *3) (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-454)) (-5 *2 (-420 *3)) (-5 *1 (-979 *4 *5 *6 *3)) (-4 *3 (-949 *6 *5 *4)))))
-(-10 -7 (-15 -1370 ((-420 |#4|) |#4|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2140 (($ (-771)) 113 (|has| |#1| (-23)))) (-1537 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4418))) (($ $) 89 (-12 (|has| |#1| (-850)) (|has| $ (-6 -4418))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) 8)) (-3874 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-2736 (($ $) 91 (|has| $ (-6 -4418)))) (-3852 (($ $) 101)) (-4093 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 52)) (-3968 (((-566) (-1 (-112) |#1|) $) 98) (((-566) |#1| $) 97 (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) 96 (|has| |#1| (-1099)))) (-1372 (($ (-644 |#1|)) 119)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-3643 (((-689 |#1|) $ $) 106 (|has| |#1| (-1049)))) (-4257 (($ (-771) |#1|) 70)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 44 (|has| (-566) (-850)))) (-1439 (($ $ $) 88 (|has| |#1| (-850)))) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 45 (|has| (-566) (-850)))) (-3059 (($ $ $) 87 (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2221 ((|#1| $) 103 (-12 (|has| |#1| (-1049)) (|has| |#1| (-1002))))) (-3882 (((-112) $ (-771)) 10)) (-3822 ((|#1| $) 104 (-12 (|has| |#1| (-1049)) (|has| |#1| (-1002))))) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-1922 (((-644 (-566)) $) 47)) (-2040 (((-112) (-566) $) 48)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4062 ((|#1| $) 43 (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1720 (($ $ |#1|) 42 (|has| $ (-6 -4418)))) (-1938 (($ $ (-644 |#1|)) 117)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-1452 ((|#1| $ $) 107 (|has| |#1| (-1049)))) (-1909 (((-921) $) 118)) (-2201 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-2689 (($ $ $) 105)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3245 (($ $ $ (-566)) 92 (|has| $ (-6 -4418)))) (-3895 (($ $) 13)) (-3134 (((-538) $) 80 (|has| |#1| (-614 (-538)))) (($ (-644 |#1|)) 120)) (-2523 (($ (-644 |#1|)) 71)) (-3704 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) 85 (|has| |#1| (-850)))) (-2974 (((-112) $ $) 84 (|has| |#1| (-850)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2987 (((-112) $ $) 86 (|has| |#1| (-850)))) (-2962 (((-112) $ $) 83 (|has| |#1| (-850)))) (-3047 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-3034 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-566) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-726))) (($ $ |#1|) 108 (|has| |#1| (-726)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-2521 (((-644 |#4|) |#4| |#4|) 136)) (-2837 (((-644 |#4|) (-644 |#4|) (-112)) 125 (|has| |#1| (-454))) (((-644 |#4|) (-644 |#4|)) 126 (|has| |#1| (-454)))) (-2335 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|)) 44)) (-1828 (((-112) |#4|) 43)) (-4059 (((-644 |#4|) |#4|) 121 (|has| |#1| (-454)))) (-3409 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-1 (-112) |#4|) (-644 |#4|)) 24)) (-4024 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|)) 30)) (-1789 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|)) 31)) (-2966 (((-3 (-2 (|:| |bas| (-478 |#1| |#2| |#3| |#4|)) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|)) 90)) (-4363 (((-644 |#4|) (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 103)) (-2687 (((-644 |#4|) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 129)) (-4190 (((-644 |#4|) (-644 |#4|)) 128)) (-2789 (((-644 |#4|) (-644 |#4|) (-644 |#4|) (-112)) 59) (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 61)) (-4345 ((|#4| |#4| (-644 |#4|)) 60)) (-3573 (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 132 (|has| |#1| (-454)))) (-2689 (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 135 (|has| |#1| (-454)))) (-1625 (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 134 (|has| |#1| (-454)))) (-1396 (((-644 |#4|) (-644 |#4|) (-644 |#4|) (-1 (-644 |#4|) (-644 |#4|))) 105) (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 107) (((-644 |#4|) (-644 |#4|) |#4|) 141) (((-644 |#4|) |#4| |#4|) 137) (((-644 |#4|) (-644 |#4|)) 106)) (-4334 (((-644 |#4|) (-644 |#4|) (-644 |#4|)) 118 (-12 (|has| |#1| (-147)) (|has| |#1| (-308))))) (-1860 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|)) 52)) (-2333 (((-112) (-644 |#4|)) 79)) (-3168 (((-112) (-644 |#4|) (-644 (-644 |#4|))) 67)) (-3522 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|)) 37)) (-3732 (((-112) |#4|) 36)) (-1491 (((-644 |#4|) (-644 |#4|)) 116 (-12 (|has| |#1| (-147)) (|has| |#1| (-308))))) (-2258 (((-644 |#4|) (-644 |#4|)) 117 (-12 (|has| |#1| (-147)) (|has| |#1| (-308))))) (-3523 (((-644 |#4|) (-644 |#4|)) 83)) (-3093 (((-644 |#4|) (-644 |#4|)) 97)) (-3683 (((-112) (-644 |#4|) (-644 |#4|)) 65)) (-1802 (((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|)) 50)) (-1565 (((-112) |#4|) 45)))
+(((-977 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1396 ((-644 |#4|) (-644 |#4|))) (-15 -1396 ((-644 |#4|) |#4| |#4|)) (-15 -4190 ((-644 |#4|) (-644 |#4|))) (-15 -2521 ((-644 |#4|) |#4| |#4|)) (-15 -1396 ((-644 |#4|) (-644 |#4|) |#4|)) (-15 -1396 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -1396 ((-644 |#4|) (-644 |#4|) (-644 |#4|) (-1 (-644 |#4|) (-644 |#4|)))) (-15 -3683 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -3168 ((-112) (-644 |#4|) (-644 (-644 |#4|)))) (-15 -2333 ((-112) (-644 |#4|))) (-15 -3409 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-1 (-112) |#4|) (-644 |#4|))) (-15 -4024 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|))) (-15 -1789 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|))) (-15 -1860 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -1828 ((-112) |#4|)) (-15 -2335 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -3732 ((-112) |#4|)) (-15 -3522 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -1565 ((-112) |#4|)) (-15 -1802 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -2789 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -2789 ((-644 |#4|) (-644 |#4|) (-644 |#4|) (-112))) (-15 -4345 (|#4| |#4| (-644 |#4|))) (-15 -3523 ((-644 |#4|) (-644 |#4|))) (-15 -2966 ((-3 (-2 (|:| |bas| (-478 |#1| |#2| |#3| |#4|)) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|))) (-15 -3093 ((-644 |#4|) (-644 |#4|))) (-15 -4363 ((-644 |#4|) (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2687 ((-644 |#4|) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-454)) (PROGN (-15 -4059 ((-644 |#4|) |#4|)) (-15 -2837 ((-644 |#4|) (-644 |#4|))) (-15 -2837 ((-644 |#4|) (-644 |#4|) (-112))) (-15 -3573 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -1625 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -2689 ((-644 |#4|) (-644 |#4|) (-644 |#4|)))) |%noBranch|) (IF (|has| |#1| (-308)) (IF (|has| |#1| (-147)) (PROGN (-15 -2258 ((-644 |#4|) (-644 |#4|))) (-15 -1491 ((-644 |#4|) (-644 |#4|))) (-15 -4334 ((-644 |#4|) (-644 |#4|) (-644 |#4|)))) |%noBranch|) |%noBranch|)) (-558) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -977))
+((-4334 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-1491 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-2258 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147)) (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-2689 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-1625 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-3573 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-2837 (*1 *2 *2 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-112)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *7)))) (-2837 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-4059 (*1 *2 *3) (-12 (-4 *4 (-454)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *3)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-2687 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-977 *5 *6 *7 *8)))) (-4363 (*1 *2 *2 *3 *4 *5) (-12 (-5 *2 (-644 *9)) (-5 *3 (-1 (-112) *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558)) (-4 *7 (-793)) (-4 *8 (-850)) (-5 *1 (-977 *6 *7 *8 *9)))) (-3093 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-2966 (*1 *2 *3) (|partial| -12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-2 (|:| |bas| (-478 *4 *5 *6 *7)) (|:| -3918 (-644 *7)))) (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-3523 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-4345 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *2)))) (-2789 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-644 *7)) (-5 *3 (-112)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *7)))) (-2789 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-1802 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7)))) (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-1565 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-3522 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7)))) (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-3732 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-2335 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7)))) (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-1828 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-1860 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7)))) (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))) (-1789 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-1 (-112) *8))) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8)))) (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))) (-4024 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-1 (-112) *8))) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8)))) (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))) (-3409 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8)))) (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))) (-2333 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *4 *5 *6 *7)))) (-3168 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-644 *8))) (-5 *3 (-644 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *5 *6 *7 *8)))) (-3683 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *4 *5 *6 *7)))) (-1396 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 (-644 *7) (-644 *7))) (-5 *2 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *7)))) (-1396 (*1 *2 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-1396 (*1 *2 *2 *3) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *3)))) (-2521 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *3)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-4190 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))) (-1396 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *3)) (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))) (-1396 (*1 *2 *2) (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))))
+(-10 -7 (-15 -1396 ((-644 |#4|) (-644 |#4|))) (-15 -1396 ((-644 |#4|) |#4| |#4|)) (-15 -4190 ((-644 |#4|) (-644 |#4|))) (-15 -2521 ((-644 |#4|) |#4| |#4|)) (-15 -1396 ((-644 |#4|) (-644 |#4|) |#4|)) (-15 -1396 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -1396 ((-644 |#4|) (-644 |#4|) (-644 |#4|) (-1 (-644 |#4|) (-644 |#4|)))) (-15 -3683 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -3168 ((-112) (-644 |#4|) (-644 (-644 |#4|)))) (-15 -2333 ((-112) (-644 |#4|))) (-15 -3409 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-1 (-112) |#4|) (-644 |#4|))) (-15 -4024 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|))) (-15 -1789 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 (-1 (-112) |#4|)) (-644 |#4|))) (-15 -1860 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -1828 ((-112) |#4|)) (-15 -2335 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -3732 ((-112) |#4|)) (-15 -3522 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -1565 ((-112) |#4|)) (-15 -1802 ((-2 (|:| |goodPols| (-644 |#4|)) (|:| |badPols| (-644 |#4|))) (-644 |#4|))) (-15 -2789 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -2789 ((-644 |#4|) (-644 |#4|) (-644 |#4|) (-112))) (-15 -4345 (|#4| |#4| (-644 |#4|))) (-15 -3523 ((-644 |#4|) (-644 |#4|))) (-15 -2966 ((-3 (-2 (|:| |bas| (-478 |#1| |#2| |#3| |#4|)) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|))) (-15 -3093 ((-644 |#4|) (-644 |#4|))) (-15 -4363 ((-644 |#4|) (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2687 ((-644 |#4|) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-454)) (PROGN (-15 -4059 ((-644 |#4|) |#4|)) (-15 -2837 ((-644 |#4|) (-644 |#4|))) (-15 -2837 ((-644 |#4|) (-644 |#4|) (-112))) (-15 -3573 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -1625 ((-644 |#4|) (-644 |#4|) (-644 |#4|))) (-15 -2689 ((-644 |#4|) (-644 |#4|) (-644 |#4|)))) |%noBranch|) (IF (|has| |#1| (-308)) (IF (|has| |#1| (-147)) (PROGN (-15 -2258 ((-644 |#4|) (-644 |#4|))) (-15 -1491 ((-644 |#4|) (-644 |#4|))) (-15 -4334 ((-644 |#4|) (-644 |#4|) (-644 |#4|)))) |%noBranch|) |%noBranch|))
+((-1348 (((-2 (|:| R (-689 |#1|)) (|:| A (-689 |#1|)) (|:| |Ainv| (-689 |#1|))) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 19)) (-1334 (((-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|)) 44)) (-3809 (((-689 |#1|) (-689 |#1|) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 16)))
+(((-978 |#1|) (-10 -7 (-15 -1348 ((-2 (|:| R (-689 |#1|)) (|:| A (-689 |#1|)) (|:| |Ainv| (-689 |#1|))) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3809 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -1334 ((-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|)))) (-365)) (T -978))
+((-1334 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-5 *2 (-644 (-2 (|:| C (-689 *5)) (|:| |g| (-1264 *5))))) (-5 *1 (-978 *5)) (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)))) (-3809 (*1 *2 *2 *2 *3 *4) (-12 (-5 *2 (-689 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-365)) (-5 *1 (-978 *5)))) (-1348 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-365)) (-5 *2 (-2 (|:| R (-689 *6)) (|:| A (-689 *6)) (|:| |Ainv| (-689 *6)))) (-5 *1 (-978 *6)) (-5 *3 (-689 *6)))))
+(-10 -7 (-15 -1348 ((-2 (|:| R (-689 |#1|)) (|:| A (-689 |#1|)) (|:| |Ainv| (-689 |#1|))) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3809 ((-689 |#1|) (-689 |#1|) (-689 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -1334 ((-644 (-2 (|:| C (-689 |#1|)) (|:| |g| (-1264 |#1|)))) (-689 |#1|) (-1264 |#1|))))
+((-3271 (((-420 |#4|) |#4|) 56)))
+(((-979 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3271 ((-420 |#4|) |#4|))) (-850) (-793) (-454) (-949 |#3| |#2| |#1|)) (T -979))
+((-3271 (*1 *2 *3) (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-454)) (-5 *2 (-420 *3)) (-5 *1 (-979 *4 *5 *6 *3)) (-4 *3 (-949 *6 *5 *4)))))
+(-10 -7 (-15 -3271 ((-420 |#4|) |#4|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2181 (($ (-771)) 113 (|has| |#1| (-23)))) (-2518 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4415))) (($ $) 89 (-12 (|has| |#1| (-850)) (|has| $ (-6 -4415))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) 8)) (-3916 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-3416 (($ $) 91 (|has| $ (-6 -4415)))) (-3507 (($ $) 101)) (-4133 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 52)) (-4015 (((-566) (-1 (-112) |#1|) $) 98) (((-566) |#1| $) 97 (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) 96 (|has| |#1| (-1099)))) (-1876 (($ (-644 |#1|)) 119)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3774 (((-689 |#1|) $ $) 106 (|has| |#1| (-1049)))) (-4278 (($ (-771) |#1|) 70)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 44 (|has| (-566) (-850)))) (-1945 (($ $ $) 88 (|has| |#1| (-850)))) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 45 (|has| (-566) (-850)))) (-2709 (($ $ $) 87 (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2029 ((|#1| $) 103 (-12 (|has| |#1| (-1049)) (|has| |#1| (-1002))))) (-3582 (((-112) $ (-771)) 10)) (-3945 ((|#1| $) 104 (-12 (|has| |#1| (-1049)) (|has| |#1| (-1002))))) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-2140 (((-644 (-566)) $) 47)) (-3935 (((-112) (-566) $) 48)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4101 ((|#1| $) 43 (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3750 (($ $ |#1|) 42 (|has| $ (-6 -4415)))) (-2295 (($ $ (-644 |#1|)) 117)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-4086 ((|#1| $ $) 107 (|has| |#1| (-1049)))) (-2012 (((-921) $) 118)) (-2215 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4173 (($ $ $) 105)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3610 (($ $ $ (-566)) 92 (|has| $ (-6 -4415)))) (-3940 (($ $) 13)) (-3204 (((-538) $) 80 (|has| |#1| (-614 (-538)))) (($ (-644 |#1|)) 120)) (-3791 (($ (-644 |#1|)) 71)) (-3727 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) 85 (|has| |#1| (-850)))) (-2984 (((-112) $ $) 84 (|has| |#1| (-850)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2999 (((-112) $ $) 86 (|has| |#1| (-850)))) (-2972 (((-112) $ $) 83 (|has| |#1| (-850)))) (-3051 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-3040 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-566) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-726))) (($ $ |#1|) 108 (|has| |#1| (-726)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-980 |#1|) (-140) (-1049)) (T -980))
-((-1372 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1049)) (-4 *1 (-980 *3)))) (-1909 (*1 *2 *1) (-12 (-4 *1 (-980 *3)) (-4 *3 (-1049)) (-5 *2 (-921)))) (-2689 (*1 *1 *1 *1) (-12 (-4 *1 (-980 *2)) (-4 *2 (-1049)))) (-1938 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *1 (-980 *3)) (-4 *3 (-1049)))))
-(-13 (-1262 |t#1|) (-618 (-644 |t#1|)) (-10 -8 (-15 -1372 ($ (-644 |t#1|))) (-15 -1909 ((-921) $)) (-15 -2689 ($ $ $)) (-15 -1938 ($ $ (-644 |t#1|)))))
+((-1876 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1049)) (-4 *1 (-980 *3)))) (-2012 (*1 *2 *1) (-12 (-4 *1 (-980 *3)) (-4 *3 (-1049)) (-5 *2 (-921)))) (-4173 (*1 *1 *1 *1) (-12 (-4 *1 (-980 *2)) (-4 *2 (-1049)))) (-2295 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *1 (-980 *3)) (-4 *3 (-1049)))))
+(-13 (-1262 |t#1|) (-618 (-644 |t#1|)) (-10 -8 (-15 -1876 ($ (-644 |t#1|))) (-15 -2012 ((-921) $)) (-15 -4173 ($ $ $)) (-15 -2295 ($ $ (-644 |t#1|)))))
(((-34) . T) ((-102) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850))) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-618 (-644 |#1|)) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-287 #0=(-566) |#1|) . T) ((-289 #0# |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-375 |#1|) . T) ((-491 |#1|) . T) ((-604 #0# |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-651 |#1|) . T) ((-19 |#1|) . T) ((-850) |has| |#1| (-850)) ((-1099) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850))) ((-1214) . T) ((-1262 |#1|) . T))
-((-3077 (((-943 |#2|) (-1 |#2| |#1|) (-943 |#1|)) 17)))
-(((-981 |#1| |#2|) (-10 -7 (-15 -3077 ((-943 |#2|) (-1 |#2| |#1|) (-943 |#1|)))) (-1049) (-1049)) (T -981))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-943 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-5 *2 (-943 *6)) (-5 *1 (-981 *5 *6)))))
-(-10 -7 (-15 -3077 ((-943 |#2|) (-1 |#2| |#1|) (-943 |#1|))))
-((-3718 ((|#1| (-943 |#1|)) 14)) (-3864 ((|#1| (-943 |#1|)) 13)) (-3219 ((|#1| (-943 |#1|)) 12)) (-2841 ((|#1| (-943 |#1|)) 16)) (-1829 ((|#1| (-943 |#1|)) 24)) (-2012 ((|#1| (-943 |#1|)) 15)) (-2845 ((|#1| (-943 |#1|)) 17)) (-1648 ((|#1| (-943 |#1|)) 23)) (-2340 ((|#1| (-943 |#1|)) 22)))
-(((-982 |#1|) (-10 -7 (-15 -3219 (|#1| (-943 |#1|))) (-15 -3864 (|#1| (-943 |#1|))) (-15 -3718 (|#1| (-943 |#1|))) (-15 -2012 (|#1| (-943 |#1|))) (-15 -2841 (|#1| (-943 |#1|))) (-15 -2845 (|#1| (-943 |#1|))) (-15 -2340 (|#1| (-943 |#1|))) (-15 -1648 (|#1| (-943 |#1|))) (-15 -1829 (|#1| (-943 |#1|)))) (-1049)) (T -982))
-((-1829 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-1648 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-2340 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-2845 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-2841 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-2012 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-3718 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-3864 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-3219 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
-(-10 -7 (-15 -3219 (|#1| (-943 |#1|))) (-15 -3864 (|#1| (-943 |#1|))) (-15 -3718 (|#1| (-943 |#1|))) (-15 -2012 (|#1| (-943 |#1|))) (-15 -2841 (|#1| (-943 |#1|))) (-15 -2845 (|#1| (-943 |#1|))) (-15 -2340 (|#1| (-943 |#1|))) (-15 -1648 (|#1| (-943 |#1|))) (-15 -1829 (|#1| (-943 |#1|))))
-((-4112 (((-3 |#1| "failed") |#1|) 18)) (-2357 (((-3 |#1| "failed") |#1|) 6)) (-3124 (((-3 |#1| "failed") |#1|) 16)) (-1856 (((-3 |#1| "failed") |#1|) 4)) (-3688 (((-3 |#1| "failed") |#1|) 20)) (-4169 (((-3 |#1| "failed") |#1|) 8)) (-1619 (((-3 |#1| "failed") |#1| (-771)) 1)) (-3453 (((-3 |#1| "failed") |#1|) 3)) (-4277 (((-3 |#1| "failed") |#1|) 2)) (-1745 (((-3 |#1| "failed") |#1|) 21)) (-2471 (((-3 |#1| "failed") |#1|) 9)) (-1406 (((-3 |#1| "failed") |#1|) 19)) (-2952 (((-3 |#1| "failed") |#1|) 7)) (-3565 (((-3 |#1| "failed") |#1|) 17)) (-3816 (((-3 |#1| "failed") |#1|) 5)) (-3155 (((-3 |#1| "failed") |#1|) 24)) (-3781 (((-3 |#1| "failed") |#1|) 12)) (-2696 (((-3 |#1| "failed") |#1|) 22)) (-2535 (((-3 |#1| "failed") |#1|) 10)) (-3656 (((-3 |#1| "failed") |#1|) 26)) (-3534 (((-3 |#1| "failed") |#1|) 14)) (-3770 (((-3 |#1| "failed") |#1|) 27)) (-1405 (((-3 |#1| "failed") |#1|) 15)) (-3609 (((-3 |#1| "failed") |#1|) 25)) (-1385 (((-3 |#1| "failed") |#1|) 13)) (-2490 (((-3 |#1| "failed") |#1|) 23)) (-1902 (((-3 |#1| "failed") |#1|) 11)))
+((-3152 (((-943 |#2|) (-1 |#2| |#1|) (-943 |#1|)) 17)))
+(((-981 |#1| |#2|) (-10 -7 (-15 -3152 ((-943 |#2|) (-1 |#2| |#1|) (-943 |#1|)))) (-1049) (-1049)) (T -981))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-943 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-5 *2 (-943 *6)) (-5 *1 (-981 *5 *6)))))
+(-10 -7 (-15 -3152 ((-943 |#2|) (-1 |#2| |#1|) (-943 |#1|))))
+((-1367 ((|#1| (-943 |#1|)) 14)) (-3424 ((|#1| (-943 |#1|)) 13)) (-3402 ((|#1| (-943 |#1|)) 12)) (-2020 ((|#1| (-943 |#1|)) 16)) (-2405 ((|#1| (-943 |#1|)) 24)) (-3673 ((|#1| (-943 |#1|)) 15)) (-2065 ((|#1| (-943 |#1|)) 17)) (-4263 ((|#1| (-943 |#1|)) 23)) (-3857 ((|#1| (-943 |#1|)) 22)))
+(((-982 |#1|) (-10 -7 (-15 -3402 (|#1| (-943 |#1|))) (-15 -3424 (|#1| (-943 |#1|))) (-15 -1367 (|#1| (-943 |#1|))) (-15 -3673 (|#1| (-943 |#1|))) (-15 -2020 (|#1| (-943 |#1|))) (-15 -2065 (|#1| (-943 |#1|))) (-15 -3857 (|#1| (-943 |#1|))) (-15 -4263 (|#1| (-943 |#1|))) (-15 -2405 (|#1| (-943 |#1|)))) (-1049)) (T -982))
+((-2405 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-4263 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-3857 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-2065 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-2020 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-3673 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-1367 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-3424 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))) (-3402 (*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
+(-10 -7 (-15 -3402 (|#1| (-943 |#1|))) (-15 -3424 (|#1| (-943 |#1|))) (-15 -1367 (|#1| (-943 |#1|))) (-15 -3673 (|#1| (-943 |#1|))) (-15 -2020 (|#1| (-943 |#1|))) (-15 -2065 (|#1| (-943 |#1|))) (-15 -3857 (|#1| (-943 |#1|))) (-15 -4263 (|#1| (-943 |#1|))) (-15 -2405 (|#1| (-943 |#1|))))
+((-3867 (((-3 |#1| "failed") |#1|) 18)) (-4037 (((-3 |#1| "failed") |#1|) 6)) (-3811 (((-3 |#1| "failed") |#1|) 16)) (-2686 (((-3 |#1| "failed") |#1|) 4)) (-2318 (((-3 |#1| "failed") |#1|) 20)) (-3221 (((-3 |#1| "failed") |#1|) 8)) (-2125 (((-3 |#1| "failed") |#1| (-771)) 1)) (-3736 (((-3 |#1| "failed") |#1|) 3)) (-3029 (((-3 |#1| "failed") |#1|) 2)) (-4011 (((-3 |#1| "failed") |#1|) 21)) (-2659 (((-3 |#1| "failed") |#1|) 9)) (-3632 (((-3 |#1| "failed") |#1|) 19)) (-1872 (((-3 |#1| "failed") |#1|) 7)) (-3556 (((-3 |#1| "failed") |#1|) 17)) (-4191 (((-3 |#1| "failed") |#1|) 5)) (-4053 (((-3 |#1| "failed") |#1|) 24)) (-3872 (((-3 |#1| "failed") |#1|) 12)) (-4227 (((-3 |#1| "failed") |#1|) 22)) (-2034 (((-3 |#1| "failed") |#1|) 10)) (-1990 (((-3 |#1| "failed") |#1|) 26)) (-3299 (((-3 |#1| "failed") |#1|) 14)) (-3767 (((-3 |#1| "failed") |#1|) 27)) (-3620 (((-3 |#1| "failed") |#1|) 15)) (-2753 (((-3 |#1| "failed") |#1|) 25)) (-4003 (((-3 |#1| "failed") |#1|) 13)) (-2815 (((-3 |#1| "failed") |#1|) 23)) (-1946 (((-3 |#1| "failed") |#1|) 11)))
(((-983 |#1|) (-140) (-1199)) (T -983))
-((-3770 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3656 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3609 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3155 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2490 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2696 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-1745 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3688 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-1406 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-4112 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3565 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3124 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-1405 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3534 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-1385 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3781 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-1902 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2535 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2471 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-4169 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2952 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2357 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3816 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-1856 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3453 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-4277 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-1619 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-771)) (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(-13 (-10 -7 (-15 -1619 ((-3 |t#1| "failed") |t#1| (-771))) (-15 -4277 ((-3 |t#1| "failed") |t#1|)) (-15 -3453 ((-3 |t#1| "failed") |t#1|)) (-15 -1856 ((-3 |t#1| "failed") |t#1|)) (-15 -3816 ((-3 |t#1| "failed") |t#1|)) (-15 -2357 ((-3 |t#1| "failed") |t#1|)) (-15 -2952 ((-3 |t#1| "failed") |t#1|)) (-15 -4169 ((-3 |t#1| "failed") |t#1|)) (-15 -2471 ((-3 |t#1| "failed") |t#1|)) (-15 -2535 ((-3 |t#1| "failed") |t#1|)) (-15 -1902 ((-3 |t#1| "failed") |t#1|)) (-15 -3781 ((-3 |t#1| "failed") |t#1|)) (-15 -1385 ((-3 |t#1| "failed") |t#1|)) (-15 -3534 ((-3 |t#1| "failed") |t#1|)) (-15 -1405 ((-3 |t#1| "failed") |t#1|)) (-15 -3124 ((-3 |t#1| "failed") |t#1|)) (-15 -3565 ((-3 |t#1| "failed") |t#1|)) (-15 -4112 ((-3 |t#1| "failed") |t#1|)) (-15 -1406 ((-3 |t#1| "failed") |t#1|)) (-15 -3688 ((-3 |t#1| "failed") |t#1|)) (-15 -1745 ((-3 |t#1| "failed") |t#1|)) (-15 -2696 ((-3 |t#1| "failed") |t#1|)) (-15 -2490 ((-3 |t#1| "failed") |t#1|)) (-15 -3155 ((-3 |t#1| "failed") |t#1|)) (-15 -3609 ((-3 |t#1| "failed") |t#1|)) (-15 -3656 ((-3 |t#1| "failed") |t#1|)) (-15 -3770 ((-3 |t#1| "failed") |t#1|))))
-((-3268 ((|#4| |#4| (-644 |#3|)) 57) ((|#4| |#4| |#3|) 56)) (-1512 ((|#4| |#4| (-644 |#3|)) 24) ((|#4| |#4| |#3|) 20)) (-3077 ((|#4| (-1 |#4| (-952 |#1|)) |#4|) 31)))
-(((-984 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1512 (|#4| |#4| |#3|)) (-15 -1512 (|#4| |#4| (-644 |#3|))) (-15 -3268 (|#4| |#4| |#3|)) (-15 -3268 (|#4| |#4| (-644 |#3|))) (-15 -3077 (|#4| (-1 |#4| (-952 |#1|)) |#4|))) (-1049) (-793) (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)) (-15 -1353 ((-3 $ "failed") (-1175))))) (-949 (-952 |#1|) |#2| |#3|)) (T -984))
-((-3077 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-952 *4))) (-4 *4 (-1049)) (-4 *2 (-949 (-952 *4) *5 *6)) (-4 *5 (-793)) (-4 *6 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)) (-15 -1353 ((-3 $ "failed") (-1175)))))) (-5 *1 (-984 *4 *5 *6 *2)))) (-3268 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)) (-15 -1353 ((-3 $ "failed") (-1175)))))) (-4 *4 (-1049)) (-4 *5 (-793)) (-5 *1 (-984 *4 *5 *6 *2)) (-4 *2 (-949 (-952 *4) *5 *6)))) (-3268 (*1 *2 *2 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)) (-15 -1353 ((-3 $ "failed") (-1175)))))) (-5 *1 (-984 *4 *5 *3 *2)) (-4 *2 (-949 (-952 *4) *5 *3)))) (-1512 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)) (-15 -1353 ((-3 $ "failed") (-1175)))))) (-4 *4 (-1049)) (-4 *5 (-793)) (-5 *1 (-984 *4 *5 *6 *2)) (-4 *2 (-949 (-952 *4) *5 *6)))) (-1512 (*1 *2 *2 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)) (-15 -1353 ((-3 $ "failed") (-1175)))))) (-5 *1 (-984 *4 *5 *3 *2)) (-4 *2 (-949 (-952 *4) *5 *3)))))
-(-10 -7 (-15 -1512 (|#4| |#4| |#3|)) (-15 -1512 (|#4| |#4| (-644 |#3|))) (-15 -3268 (|#4| |#4| |#3|)) (-15 -3268 (|#4| |#4| (-644 |#3|))) (-15 -3077 (|#4| (-1 |#4| (-952 |#1|)) |#4|)))
-((-3149 ((|#2| |#3|) 35)) (-2147 (((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|) 83)) (-1925 (((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) 103)))
-(((-985 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1925 ((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))))) (-15 -2147 ((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|)) (-15 -3149 (|#2| |#3|))) (-351) (-1240 |#1|) (-1240 |#2|) (-724 |#2| |#3|)) (T -985))
-((-3149 (*1 *2 *3) (-12 (-4 *3 (-1240 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-985 *4 *2 *3 *5)) (-4 *4 (-351)) (-4 *5 (-724 *2 *3)))) (-2147 (*1 *2 *3) (-12 (-4 *4 (-351)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 *3)) (-5 *2 (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-5 *1 (-985 *4 *3 *5 *6)) (-4 *6 (-724 *3 *5)))) (-1925 (*1 *2) (-12 (-4 *3 (-351)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| -1990 (-689 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-689 *4)))) (-5 *1 (-985 *3 *4 *5 *6)) (-4 *6 (-724 *4 *5)))))
-(-10 -7 (-15 -1925 ((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))))) (-15 -2147 ((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|)) (-15 -3149 (|#2| |#3|)))
-((-1422 (((-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566)))) (-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566))))) 84)))
-(((-986 |#1| |#2|) (-10 -7 (-15 -1422 ((-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566)))) (-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566))))))) (-644 (-1175)) (-771)) (T -986))
-((-1422 (*1 *2 *2) (-12 (-5 *2 (-987 (-409 (-566)) (-864 *3) (-240 *4 (-771)) (-247 *3 (-409 (-566))))) (-14 *3 (-644 (-1175))) (-14 *4 (-771)) (-5 *1 (-986 *3 *4)))))
-(-10 -7 (-15 -1422 ((-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566)))) (-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566)))))))
-((-2985 (((-112) $ $) NIL)) (-2405 (((-3 (-112) "failed") $) 71)) (-3164 (($ $) 36 (-12 (|has| |#1| (-147)) (|has| |#1| (-308))))) (-2073 (($ $ (-3 (-112) "failed")) 72)) (-4201 (($ (-644 |#4|) |#4|) 25)) (-2878 (((-1157) $) NIL)) (-1526 (($ $) 69)) (-4033 (((-1119) $) NIL)) (-4194 (((-112) $) 70)) (-2954 (($) 30)) (-3733 ((|#4| $) 74)) (-2016 (((-644 |#4|) $) 73)) (-2512 (((-862) $) 68)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-987 |#1| |#2| |#3| |#4|) (-13 (-1099) (-613 (-862)) (-10 -8 (-15 -2954 ($)) (-15 -4201 ($ (-644 |#4|) |#4|)) (-15 -2405 ((-3 (-112) "failed") $)) (-15 -2073 ($ $ (-3 (-112) "failed"))) (-15 -4194 ((-112) $)) (-15 -2016 ((-644 |#4|) $)) (-15 -3733 (|#4| $)) (-15 -1526 ($ $)) (IF (|has| |#1| (-308)) (IF (|has| |#1| (-147)) (-15 -3164 ($ $)) |%noBranch|) |%noBranch|))) (-454) (-850) (-793) (-949 |#1| |#3| |#2|)) (T -987))
-((-2954 (*1 *1) (-12 (-4 *2 (-454)) (-4 *3 (-850)) (-4 *4 (-793)) (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3)))) (-4201 (*1 *1 *2 *3) (-12 (-5 *2 (-644 *3)) (-4 *3 (-949 *4 *6 *5)) (-4 *4 (-454)) (-4 *5 (-850)) (-4 *6 (-793)) (-5 *1 (-987 *4 *5 *6 *3)))) (-2405 (*1 *2 *1) (|partial| -12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *2 (-112)) (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))) (-2073 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))) (-4194 (*1 *2 *1) (-12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *2 (-112)) (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))) (-2016 (*1 *2 *1) (-12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *2 (-644 *6)) (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))) (-3733 (*1 *2 *1) (-12 (-4 *2 (-949 *3 *5 *4)) (-5 *1 (-987 *3 *4 *5 *2)) (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)))) (-1526 (*1 *1 *1) (-12 (-4 *2 (-454)) (-4 *3 (-850)) (-4 *4 (-793)) (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3)))) (-3164 (*1 *1 *1) (-12 (-4 *2 (-147)) (-4 *2 (-308)) (-4 *2 (-454)) (-4 *3 (-850)) (-4 *4 (-793)) (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3)))))
-(-13 (-1099) (-613 (-862)) (-10 -8 (-15 -2954 ($)) (-15 -4201 ($ (-644 |#4|) |#4|)) (-15 -2405 ((-3 (-112) "failed") $)) (-15 -2073 ($ $ (-3 (-112) "failed"))) (-15 -4194 ((-112) $)) (-15 -2016 ((-644 |#4|) $)) (-15 -3733 (|#4| $)) (-15 -1526 ($ $)) (IF (|has| |#1| (-308)) (IF (|has| |#1| (-147)) (-15 -3164 ($ $)) |%noBranch|) |%noBranch|)))
-((-3163 (((-112) |#5| |#5|) 45)) (-2483 (((-112) |#5| |#5|) 60)) (-2621 (((-112) |#5| (-644 |#5|)) 82) (((-112) |#5| |#5|) 69)) (-1686 (((-112) (-644 |#4|) (-644 |#4|)) 66)) (-4253 (((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) 71)) (-4374 (((-1269)) 33)) (-2332 (((-1269) (-1157) (-1157) (-1157)) 29)) (-2488 (((-644 |#5|) (-644 |#5|)) 101)) (-3786 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)))) 93)) (-3666 (((-644 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112)) 123)) (-3637 (((-112) |#5| |#5|) 54)) (-2848 (((-3 (-112) "failed") |#5| |#5|) 79)) (-4396 (((-112) (-644 |#4|) (-644 |#4|)) 65)) (-2675 (((-112) (-644 |#4|) (-644 |#4|)) 67)) (-2343 (((-112) (-644 |#4|) (-644 |#4|)) 68)) (-4320 (((-3 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112)) 118)) (-3876 (((-644 |#5|) (-644 |#5|)) 50)))
-(((-988 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2332 ((-1269) (-1157) (-1157) (-1157))) (-15 -4374 ((-1269))) (-15 -3163 ((-112) |#5| |#5|)) (-15 -3876 ((-644 |#5|) (-644 |#5|))) (-15 -3637 ((-112) |#5| |#5|)) (-15 -2483 ((-112) |#5| |#5|)) (-15 -1686 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -4396 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2675 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2343 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2848 ((-3 (-112) "failed") |#5| |#5|)) (-15 -2621 ((-112) |#5| |#5|)) (-15 -2621 ((-112) |#5| (-644 |#5|))) (-15 -2488 ((-644 |#5|) (-644 |#5|))) (-15 -4253 ((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)))) (-15 -3786 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) (-15 -3666 ((-644 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -4320 ((-3 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -988))
-((-4320 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| -3525 (-644 *9)) (|:| -2248 *4) (|:| |ineq| (-644 *9)))) (-5 *1 (-988 *6 *7 *8 *9 *4)) (-5 *3 (-644 *9)) (-4 *4 (-1070 *6 *7 *8 *9)))) (-3666 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-644 *10)) (-5 *5 (-112)) (-4 *10 (-1070 *6 *7 *8 *9)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8)) (-5 *2 (-644 (-2 (|:| -3525 (-644 *9)) (|:| -2248 *10) (|:| |ineq| (-644 *9))))) (-5 *1 (-988 *6 *7 *8 *9 *10)) (-5 *3 (-644 *9)))) (-3786 (*1 *2 *2) (-12 (-5 *2 (-644 (-2 (|:| |val| (-644 *6)) (|:| -2248 *7)))) (-4 *6 (-1064 *3 *4 *5)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-988 *3 *4 *5 *6 *7)))) (-4253 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2248 *8))) (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *8)))) (-2488 (*1 *2 *2) (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-988 *3 *4 *5 *6 *7)))) (-2621 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-988 *5 *6 *7 *8 *3)))) (-2621 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-2848 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-2343 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-2675 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-4396 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-1686 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-2483 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-3637 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-3876 (*1 *2 *2) (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-988 *3 *4 *5 *6 *7)))) (-3163 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-4374 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-988 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-2332 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2332 ((-1269) (-1157) (-1157) (-1157))) (-15 -4374 ((-1269))) (-15 -3163 ((-112) |#5| |#5|)) (-15 -3876 ((-644 |#5|) (-644 |#5|))) (-15 -3637 ((-112) |#5| |#5|)) (-15 -2483 ((-112) |#5| |#5|)) (-15 -1686 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -4396 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2675 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2343 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2848 ((-3 (-112) "failed") |#5| |#5|)) (-15 -2621 ((-112) |#5| |#5|)) (-15 -2621 ((-112) |#5| (-644 |#5|))) (-15 -2488 ((-644 |#5|) (-644 |#5|))) (-15 -4253 ((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)))) (-15 -3786 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) (-15 -3666 ((-644 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -4320 ((-3 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-1353 (((-1175) $) 15)) (-2212 (((-1157) $) 16)) (-2077 (($ (-1175) (-1157)) 14)) (-2512 (((-862) $) 13)))
-(((-989) (-13 (-613 (-862)) (-10 -8 (-15 -2077 ($ (-1175) (-1157))) (-15 -1353 ((-1175) $)) (-15 -2212 ((-1157) $))))) (T -989))
-((-2077 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1157)) (-5 *1 (-989)))) (-1353 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-989)))) (-2212 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-989)))))
-(-13 (-613 (-862)) (-10 -8 (-15 -2077 ($ (-1175) (-1157))) (-15 -1353 ((-1175) $)) (-15 -2212 ((-1157) $))))
-((-3077 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
-(((-990 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3077 (|#4| (-1 |#2| |#1|) |#3|))) (-558) (-558) (-992 |#1|) (-992 |#2|)) (T -990))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-558)) (-4 *6 (-558)) (-4 *2 (-992 *6)) (-5 *1 (-990 *5 *6 *4 *2)) (-4 *4 (-992 *5)))))
-(-10 -7 (-15 -3077 (|#4| (-1 |#2| |#1|) |#3|)))
-((-2977 (((-3 |#2| "failed") $) NIL) (((-3 (-1175) "failed") $) 66) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) 96)) (-1756 ((|#2| $) NIL) (((-1175) $) 61) (((-409 (-566)) $) NIL) (((-566) $) 93)) (-1628 (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 115) (((-689 |#2|) (-689 $)) 28)) (-3335 (($) 99)) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 76) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 85)) (-2861 (($ $) 10)) (-2546 (((-3 $ "failed") $) 20)) (-3077 (($ (-1 |#2| |#2|) $) 22)) (-2759 (($) 16)) (-1539 (($ $) 55)) (-2862 (($ $) NIL) (($ $ (-771)) NIL) (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-3413 (($ $) 12)) (-3134 (((-892 (-566)) $) 71) (((-892 (-381)) $) 80) (((-538) $) 40) (((-381) $) 44) (((-225) $) 48)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) 91) (($ |#2|) NIL) (($ (-1175)) 58)) (-3795 (((-771)) 31)) (-2962 (((-112) $ $) 51)))
-(((-991 |#1| |#2|) (-10 -8 (-15 -2962 ((-112) |#1| |#1|)) (-15 -2759 (|#1|)) (-15 -2546 ((-3 |#1| "failed") |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -3134 ((-225) |#1|)) (-15 -3134 ((-381) |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -2512 (|#1| (-1175))) (-15 -2977 ((-3 (-1175) "failed") |#1|)) (-15 -1756 ((-1175) |#1|)) (-15 -3335 (|#1|)) (-15 -1539 (|#1| |#1|)) (-15 -3413 (|#1| |#1|)) (-15 -2861 (|#1| |#1|)) (-15 -1356 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -1356 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -1628 ((-689 |#2|) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 (|#1| |#1|)) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|))) (-992 |#2|) (-558)) (T -991))
-((-3795 (*1 *2) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-991 *3 *4)) (-4 *3 (-992 *4)))))
-(-10 -8 (-15 -2962 ((-112) |#1| |#1|)) (-15 -2759 (|#1|)) (-15 -2546 ((-3 |#1| "failed") |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -3134 ((-225) |#1|)) (-15 -3134 ((-381) |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -2512 (|#1| (-1175))) (-15 -2977 ((-3 (-1175) "failed") |#1|)) (-15 -1756 ((-1175) |#1|)) (-15 -3335 (|#1|)) (-15 -1539 (|#1| |#1|)) (-15 -3413 (|#1| |#1|)) (-15 -2861 (|#1| |#1|)) (-15 -1356 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -1356 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -1628 ((-689 |#2|) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 (|#1| |#1|)) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2452 ((|#1| $) 147 (|has| |#1| (-308)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2055 (((-420 (-1171 $)) (-1171 $)) 138 (|has| |#1| (-909)))) (-2857 (($ $) 81)) (-1370 (((-420 $) $) 80)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 141 (|has| |#1| (-909)))) (-1561 (((-112) $ $) 65)) (-2807 (((-566) $) 128 (|has| |#1| (-820)))) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#1| "failed") $) 185) (((-3 (-1175) "failed") $) 136 (|has| |#1| (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) 119 (|has| |#1| (-1038 (-566)))) (((-3 (-566) "failed") $) 117 (|has| |#1| (-1038 (-566))))) (-1756 ((|#1| $) 186) (((-1175) $) 137 (|has| |#1| (-1038 (-1175)))) (((-409 (-566)) $) 120 (|has| |#1| (-1038 (-566)))) (((-566) $) 118 (|has| |#1| (-1038 (-566))))) (-2926 (($ $ $) 61)) (-1628 (((-689 (-566)) (-689 $)) 160 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 159 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 158) (((-689 |#1|) (-689 $)) 157)) (-1579 (((-3 $ "failed") $) 37)) (-3335 (($) 145 (|has| |#1| (-547)))) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-2635 (((-112) $) 79)) (-1684 (((-112) $) 130 (|has| |#1| (-820)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 154 (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 153 (|has| |#1| (-886 (-381))))) (-2741 (((-112) $) 35)) (-2861 (($ $) 149)) (-3001 ((|#1| $) 151)) (-2546 (((-3 $ "failed") $) 116 (|has| |#1| (-1150)))) (-1578 (((-112) $) 129 (|has| |#1| (-820)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-1439 (($ $ $) 126 (|has| |#1| (-850)))) (-3059 (($ $ $) 125 (|has| |#1| (-850)))) (-3077 (($ (-1 |#1| |#1|) $) 177)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 78)) (-2759 (($) 115 (|has| |#1| (-1150)) CONST)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-1539 (($ $) 146 (|has| |#1| (-308)))) (-4317 ((|#1| $) 143 (|has| |#1| (-547)))) (-1647 (((-420 (-1171 $)) (-1171 $)) 140 (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) 139 (|has| |#1| (-909)))) (-2391 (((-420 $) $) 82)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-2070 (($ $ (-644 |#1|) (-644 |#1|)) 183 (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) 182 (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) 181 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) 180 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 179 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) 178 (|has| |#1| (-516 (-1175) |#1|)))) (-1813 (((-771) $) 64)) (-4386 (($ $ |#1|) 184 (|has| |#1| (-287 |#1| |#1|)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-2862 (($ $) 176 (|has| |#1| (-233))) (($ $ (-771)) 174 (|has| |#1| (-233))) (($ $ (-1175)) 172 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 171 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 170 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 169 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 162) (($ $ (-1 |#1| |#1|)) 161)) (-3413 (($ $) 148)) (-3013 ((|#1| $) 150)) (-3134 (((-892 (-566)) $) 156 (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) 155 (|has| |#1| (-614 (-892 (-381))))) (((-538) $) 133 (|has| |#1| (-614 (-538)))) (((-381) $) 132 (|has| |#1| (-1022))) (((-225) $) 131 (|has| |#1| (-1022)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 142 (-2438 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ |#1|) 189) (($ (-1175)) 135 (|has| |#1| (-1038 (-1175))))) (-3842 (((-3 $ "failed") $) 134 (-2805 (|has| |#1| (-145)) (-2438 (|has| $ (-145)) (|has| |#1| (-909)))))) (-3795 (((-771)) 32 T CONST)) (-1604 ((|#1| $) 144 (|has| |#1| (-547)))) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-1346 (($ $) 127 (|has| |#1| (-820)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $) 175 (|has| |#1| (-233))) (($ $ (-771)) 173 (|has| |#1| (-233))) (($ $ (-1175)) 168 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 167 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 166 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 165 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 164) (($ $ (-1 |#1| |#1|)) 163)) (-2998 (((-112) $ $) 123 (|has| |#1| (-850)))) (-2974 (((-112) $ $) 122 (|has| |#1| (-850)))) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 124 (|has| |#1| (-850)))) (-2962 (((-112) $ $) 121 (|has| |#1| (-850)))) (-3061 (($ $ $) 73) (($ |#1| |#1|) 152)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75) (($ |#1| $) 188) (($ $ |#1|) 187)))
+((-3767 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-1990 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2753 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-4053 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2815 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-4227 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-4011 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2318 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3632 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3867 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3556 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3811 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3620 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3299 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-4003 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3872 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-1946 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2034 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2659 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3221 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-1872 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-4037 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-4191 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2686 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3736 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-3029 (*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))) (-2125 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-771)) (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(-13 (-10 -7 (-15 -2125 ((-3 |t#1| "failed") |t#1| (-771))) (-15 -3029 ((-3 |t#1| "failed") |t#1|)) (-15 -3736 ((-3 |t#1| "failed") |t#1|)) (-15 -2686 ((-3 |t#1| "failed") |t#1|)) (-15 -4191 ((-3 |t#1| "failed") |t#1|)) (-15 -4037 ((-3 |t#1| "failed") |t#1|)) (-15 -1872 ((-3 |t#1| "failed") |t#1|)) (-15 -3221 ((-3 |t#1| "failed") |t#1|)) (-15 -2659 ((-3 |t#1| "failed") |t#1|)) (-15 -2034 ((-3 |t#1| "failed") |t#1|)) (-15 -1946 ((-3 |t#1| "failed") |t#1|)) (-15 -3872 ((-3 |t#1| "failed") |t#1|)) (-15 -4003 ((-3 |t#1| "failed") |t#1|)) (-15 -3299 ((-3 |t#1| "failed") |t#1|)) (-15 -3620 ((-3 |t#1| "failed") |t#1|)) (-15 -3811 ((-3 |t#1| "failed") |t#1|)) (-15 -3556 ((-3 |t#1| "failed") |t#1|)) (-15 -3867 ((-3 |t#1| "failed") |t#1|)) (-15 -3632 ((-3 |t#1| "failed") |t#1|)) (-15 -2318 ((-3 |t#1| "failed") |t#1|)) (-15 -4011 ((-3 |t#1| "failed") |t#1|)) (-15 -4227 ((-3 |t#1| "failed") |t#1|)) (-15 -2815 ((-3 |t#1| "failed") |t#1|)) (-15 -4053 ((-3 |t#1| "failed") |t#1|)) (-15 -2753 ((-3 |t#1| "failed") |t#1|)) (-15 -1990 ((-3 |t#1| "failed") |t#1|)) (-15 -3767 ((-3 |t#1| "failed") |t#1|))))
+((-2625 ((|#4| |#4| (-644 |#3|)) 57) ((|#4| |#4| |#3|) 56)) (-3474 ((|#4| |#4| (-644 |#3|)) 24) ((|#4| |#4| |#3|) 20)) (-3152 ((|#4| (-1 |#4| (-952 |#1|)) |#4|) 31)))
+(((-984 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3474 (|#4| |#4| |#3|)) (-15 -3474 (|#4| |#4| (-644 |#3|))) (-15 -2625 (|#4| |#4| |#3|)) (-15 -2625 (|#4| |#4| (-644 |#3|))) (-15 -3152 (|#4| (-1 |#4| (-952 |#1|)) |#4|))) (-1049) (-793) (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)) (-15 -1401 ((-3 $ "failed") (-1175))))) (-949 (-952 |#1|) |#2| |#3|)) (T -984))
+((-3152 (*1 *2 *3 *2) (-12 (-5 *3 (-1 *2 (-952 *4))) (-4 *4 (-1049)) (-4 *2 (-949 (-952 *4) *5 *6)) (-4 *5 (-793)) (-4 *6 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)) (-15 -1401 ((-3 $ "failed") (-1175)))))) (-5 *1 (-984 *4 *5 *6 *2)))) (-2625 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)) (-15 -1401 ((-3 $ "failed") (-1175)))))) (-4 *4 (-1049)) (-4 *5 (-793)) (-5 *1 (-984 *4 *5 *6 *2)) (-4 *2 (-949 (-952 *4) *5 *6)))) (-2625 (*1 *2 *2 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)) (-15 -1401 ((-3 $ "failed") (-1175)))))) (-5 *1 (-984 *4 *5 *3 *2)) (-4 *2 (-949 (-952 *4) *5 *3)))) (-3474 (*1 *2 *2 *3) (-12 (-5 *3 (-644 *6)) (-4 *6 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)) (-15 -1401 ((-3 $ "failed") (-1175)))))) (-4 *4 (-1049)) (-4 *5 (-793)) (-5 *1 (-984 *4 *5 *6 *2)) (-4 *2 (-949 (-952 *4) *5 *6)))) (-3474 (*1 *2 *2 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)) (-15 -1401 ((-3 $ "failed") (-1175)))))) (-5 *1 (-984 *4 *5 *3 *2)) (-4 *2 (-949 (-952 *4) *5 *3)))))
+(-10 -7 (-15 -3474 (|#4| |#4| |#3|)) (-15 -3474 (|#4| |#4| (-644 |#3|))) (-15 -2625 (|#4| |#4| |#3|)) (-15 -2625 (|#4| |#4| (-644 |#3|))) (-15 -3152 (|#4| (-1 |#4| (-952 |#1|)) |#4|)))
+((-3994 ((|#2| |#3|) 35)) (-2593 (((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|) 83)) (-2161 (((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) 103)))
+(((-985 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2161 ((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))))) (-15 -2593 ((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|)) (-15 -3994 (|#2| |#3|))) (-351) (-1240 |#1|) (-1240 |#2|) (-724 |#2| |#3|)) (T -985))
+((-3994 (*1 *2 *3) (-12 (-4 *3 (-1240 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-985 *4 *2 *3 *5)) (-4 *4 (-351)) (-4 *5 (-724 *2 *3)))) (-2593 (*1 *2 *3) (-12 (-4 *4 (-351)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 *3)) (-5 *2 (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-5 *1 (-985 *4 *3 *5 *6)) (-4 *6 (-724 *3 *5)))) (-2161 (*1 *2) (-12 (-4 *3 (-351)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| -1575 (-689 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-689 *4)))) (-5 *1 (-985 *3 *4 *5 *6)) (-4 *6 (-724 *4 *5)))))
+(-10 -7 (-15 -2161 ((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))))) (-15 -2593 ((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|)) (-15 -3994 (|#2| |#3|)))
+((-3775 (((-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566)))) (-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566))))) 84)))
+(((-986 |#1| |#2|) (-10 -7 (-15 -3775 ((-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566)))) (-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566))))))) (-644 (-1175)) (-771)) (T -986))
+((-3775 (*1 *2 *2) (-12 (-5 *2 (-987 (-409 (-566)) (-864 *3) (-240 *4 (-771)) (-247 *3 (-409 (-566))))) (-14 *3 (-644 (-1175))) (-14 *4 (-771)) (-5 *1 (-986 *3 *4)))))
+(-10 -7 (-15 -3775 ((-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566)))) (-987 (-409 (-566)) (-864 |#1|) (-240 |#2| (-771)) (-247 |#1| (-409 (-566)))))))
+((-3009 (((-112) $ $) NIL)) (-3254 (((-3 (-112) "failed") $) 71)) (-4108 (($ $) 36 (-12 (|has| |#1| (-147)) (|has| |#1| (-308))))) (-3053 (($ $ (-3 (-112) "failed")) 72)) (-3527 (($ (-644 |#4|) |#4|) 25)) (-2402 (((-1157) $) NIL)) (-2409 (($ $) 69)) (-4056 (((-1119) $) NIL)) (-3461 (((-112) $) 70)) (-1793 (($) 30)) (-1542 ((|#4| $) 74)) (-3711 (((-644 |#4|) $) 73)) (-3780 (((-862) $) 68)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-987 |#1| |#2| |#3| |#4|) (-13 (-1099) (-613 (-862)) (-10 -8 (-15 -1793 ($)) (-15 -3527 ($ (-644 |#4|) |#4|)) (-15 -3254 ((-3 (-112) "failed") $)) (-15 -3053 ($ $ (-3 (-112) "failed"))) (-15 -3461 ((-112) $)) (-15 -3711 ((-644 |#4|) $)) (-15 -1542 (|#4| $)) (-15 -2409 ($ $)) (IF (|has| |#1| (-308)) (IF (|has| |#1| (-147)) (-15 -4108 ($ $)) |%noBranch|) |%noBranch|))) (-454) (-850) (-793) (-949 |#1| |#3| |#2|)) (T -987))
+((-1793 (*1 *1) (-12 (-4 *2 (-454)) (-4 *3 (-850)) (-4 *4 (-793)) (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3)))) (-3527 (*1 *1 *2 *3) (-12 (-5 *2 (-644 *3)) (-4 *3 (-949 *4 *6 *5)) (-4 *4 (-454)) (-4 *5 (-850)) (-4 *6 (-793)) (-5 *1 (-987 *4 *5 *6 *3)))) (-3254 (*1 *2 *1) (|partial| -12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *2 (-112)) (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))) (-3053 (*1 *1 *1 *2) (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))) (-3461 (*1 *2 *1) (-12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *2 (-112)) (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))) (-3711 (*1 *2 *1) (-12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *2 (-644 *6)) (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))) (-1542 (*1 *2 *1) (-12 (-4 *2 (-949 *3 *5 *4)) (-5 *1 (-987 *3 *4 *5 *2)) (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)))) (-2409 (*1 *1 *1) (-12 (-4 *2 (-454)) (-4 *3 (-850)) (-4 *4 (-793)) (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3)))) (-4108 (*1 *1 *1) (-12 (-4 *2 (-147)) (-4 *2 (-308)) (-4 *2 (-454)) (-4 *3 (-850)) (-4 *4 (-793)) (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3)))))
+(-13 (-1099) (-613 (-862)) (-10 -8 (-15 -1793 ($)) (-15 -3527 ($ (-644 |#4|) |#4|)) (-15 -3254 ((-3 (-112) "failed") $)) (-15 -3053 ($ $ (-3 (-112) "failed"))) (-15 -3461 ((-112) $)) (-15 -3711 ((-644 |#4|) $)) (-15 -1542 (|#4| $)) (-15 -2409 ($ $)) (IF (|has| |#1| (-308)) (IF (|has| |#1| (-147)) (-15 -4108 ($ $)) |%noBranch|) |%noBranch|)))
+((-4097 (((-112) |#5| |#5|) 45)) (-2754 (((-112) |#5| |#5|) 60)) (-1640 (((-112) |#5| (-644 |#5|)) 82) (((-112) |#5| |#5|) 69)) (-1556 (((-112) (-644 |#4|) (-644 |#4|)) 66)) (-2794 (((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) 71)) (-1521 (((-1269)) 33)) (-3784 (((-1269) (-1157) (-1157) (-1157)) 29)) (-2792 (((-644 |#5|) (-644 |#5|)) 101)) (-3914 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)))) 93)) (-2090 (((-644 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112)) 123)) (-3027 (((-112) |#5| |#5|) 54)) (-2099 (((-3 (-112) "failed") |#5| |#5|) 79)) (-1774 (((-112) (-644 |#4|) (-644 |#4|)) 65)) (-4032 (((-112) (-644 |#4|) (-644 |#4|)) 67)) (-3886 (((-112) (-644 |#4|) (-644 |#4|)) 68)) (-2233 (((-3 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112)) 118)) (-3532 (((-644 |#5|) (-644 |#5|)) 50)))
+(((-988 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3784 ((-1269) (-1157) (-1157) (-1157))) (-15 -1521 ((-1269))) (-15 -4097 ((-112) |#5| |#5|)) (-15 -3532 ((-644 |#5|) (-644 |#5|))) (-15 -3027 ((-112) |#5| |#5|)) (-15 -2754 ((-112) |#5| |#5|)) (-15 -1556 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -1774 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -4032 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -3886 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2099 ((-3 (-112) "failed") |#5| |#5|)) (-15 -1640 ((-112) |#5| |#5|)) (-15 -1640 ((-112) |#5| (-644 |#5|))) (-15 -2792 ((-644 |#5|) (-644 |#5|))) (-15 -2794 ((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)))) (-15 -3914 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) (-15 -2090 ((-644 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -2233 ((-3 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -988))
+((-2233 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| -4257 (-644 *9)) (|:| -2327 *4) (|:| |ineq| (-644 *9)))) (-5 *1 (-988 *6 *7 *8 *9 *4)) (-5 *3 (-644 *9)) (-4 *4 (-1070 *6 *7 *8 *9)))) (-2090 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-644 *10)) (-5 *5 (-112)) (-4 *10 (-1070 *6 *7 *8 *9)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8)) (-5 *2 (-644 (-2 (|:| -4257 (-644 *9)) (|:| -2327 *10) (|:| |ineq| (-644 *9))))) (-5 *1 (-988 *6 *7 *8 *9 *10)) (-5 *3 (-644 *9)))) (-3914 (*1 *2 *2) (-12 (-5 *2 (-644 (-2 (|:| |val| (-644 *6)) (|:| -2327 *7)))) (-4 *6 (-1064 *3 *4 *5)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-988 *3 *4 *5 *6 *7)))) (-2794 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2327 *8))) (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *8)))) (-2792 (*1 *2 *2) (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-988 *3 *4 *5 *6 *7)))) (-1640 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-988 *5 *6 *7 *8 *3)))) (-1640 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-2099 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-3886 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-4032 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-1774 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-1556 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-2754 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-3027 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-3532 (*1 *2 *2) (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-988 *3 *4 *5 *6 *7)))) (-4097 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-1521 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-988 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-3784 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+(-10 -7 (-15 -3784 ((-1269) (-1157) (-1157) (-1157))) (-15 -1521 ((-1269))) (-15 -4097 ((-112) |#5| |#5|)) (-15 -3532 ((-644 |#5|) (-644 |#5|))) (-15 -3027 ((-112) |#5| |#5|)) (-15 -2754 ((-112) |#5| |#5|)) (-15 -1556 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -1774 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -4032 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -3886 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2099 ((-3 (-112) "failed") |#5| |#5|)) (-15 -1640 ((-112) |#5| |#5|)) (-15 -1640 ((-112) |#5| (-644 |#5|))) (-15 -2792 ((-644 |#5|) (-644 |#5|))) (-15 -2794 ((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)))) (-15 -3914 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) (-15 -2090 ((-644 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -2233 ((-3 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-1401 (((-1175) $) 15)) (-2252 (((-1157) $) 16)) (-2175 (($ (-1175) (-1157)) 14)) (-3780 (((-862) $) 13)))
+(((-989) (-13 (-613 (-862)) (-10 -8 (-15 -2175 ($ (-1175) (-1157))) (-15 -1401 ((-1175) $)) (-15 -2252 ((-1157) $))))) (T -989))
+((-2175 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1157)) (-5 *1 (-989)))) (-1401 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-989)))) (-2252 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-989)))))
+(-13 (-613 (-862)) (-10 -8 (-15 -2175 ($ (-1175) (-1157))) (-15 -1401 ((-1175) $)) (-15 -2252 ((-1157) $))))
+((-3152 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
+(((-990 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3152 (|#4| (-1 |#2| |#1|) |#3|))) (-558) (-558) (-992 |#1|) (-992 |#2|)) (T -990))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-558)) (-4 *6 (-558)) (-4 *2 (-992 *6)) (-5 *1 (-990 *5 *6 *4 *2)) (-4 *4 (-992 *5)))))
+(-10 -7 (-15 -3152 (|#4| (-1 |#2| |#1|) |#3|)))
+((-3066 (((-3 |#2| "failed") $) NIL) (((-3 (-1175) "failed") $) 66) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) 96)) (-1867 ((|#2| $) NIL) (((-1175) $) 61) (((-409 (-566)) $) NIL) (((-566) $) 93)) (-2210 (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 115) (((-689 |#2|) (-689 $)) 28)) (-1618 (($) 99)) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 76) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 85)) (-2227 (($ $) 10)) (-2133 (((-3 $ "failed") $) 20)) (-3152 (($ (-1 |#2| |#2|) $) 22)) (-3625 (($) 16)) (-2539 (($ $) 55)) (-2578 (($ $) NIL) (($ $ (-771)) NIL) (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 36)) (-1431 (($ $) 12)) (-3204 (((-892 (-566)) $) 71) (((-892 (-381)) $) 80) (((-538) $) 40) (((-381) $) 44) (((-225) $) 48)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) 91) (($ |#2|) NIL) (($ (-1175)) 58)) (-3996 (((-771)) 31)) (-2972 (((-112) $ $) 51)))
+(((-991 |#1| |#2|) (-10 -8 (-15 -2972 ((-112) |#1| |#1|)) (-15 -3625 (|#1|)) (-15 -2133 ((-3 |#1| "failed") |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3204 ((-225) |#1|)) (-15 -3204 ((-381) |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3780 (|#1| (-1175))) (-15 -3066 ((-3 (-1175) "failed") |#1|)) (-15 -1867 ((-1175) |#1|)) (-15 -1618 (|#1|)) (-15 -2539 (|#1| |#1|)) (-15 -1431 (|#1| |#1|)) (-15 -2227 (|#1| |#1|)) (-15 -1525 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -1525 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -2210 ((-689 |#2|) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 (|#1| |#1|)) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|))) (-992 |#2|) (-558)) (T -991))
+((-3996 (*1 *2) (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-991 *3 *4)) (-4 *3 (-992 *4)))))
+(-10 -8 (-15 -2972 ((-112) |#1| |#1|)) (-15 -3625 (|#1|)) (-15 -2133 ((-3 |#1| "failed") |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3204 ((-225) |#1|)) (-15 -3204 ((-381) |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3780 (|#1| (-1175))) (-15 -3066 ((-3 (-1175) "failed") |#1|)) (-15 -1867 ((-1175) |#1|)) (-15 -1618 (|#1|)) (-15 -2539 (|#1| |#1|)) (-15 -1431 (|#1| |#1|)) (-15 -2227 (|#1| |#1|)) (-15 -1525 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -1525 ((-889 (-566) |#1|) |#1| (-892 (-566)) (-889 (-566) |#1|))) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -2210 ((-689 |#2|) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 (|#1| |#1|)) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2486 ((|#1| $) 147 (|has| |#1| (-308)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-4077 (((-420 (-1171 $)) (-1171 $)) 138 (|has| |#1| (-909)))) (-2179 (($ $) 81)) (-3271 (((-420 $) $) 80)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 141 (|has| |#1| (-909)))) (-2738 (((-112) $ $) 65)) (-2899 (((-566) $) 128 (|has| |#1| (-820)))) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#1| "failed") $) 185) (((-3 (-1175) "failed") $) 136 (|has| |#1| (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) 119 (|has| |#1| (-1038 (-566)))) (((-3 (-566) "failed") $) 117 (|has| |#1| (-1038 (-566))))) (-1867 ((|#1| $) 186) (((-1175) $) 137 (|has| |#1| (-1038 (-1175)))) (((-409 (-566)) $) 120 (|has| |#1| (-1038 (-566)))) (((-566) $) 118 (|has| |#1| (-1038 (-566))))) (-2949 (($ $ $) 61)) (-2210 (((-689 (-566)) (-689 $)) 160 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 159 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 158) (((-689 |#1|) (-689 $)) 157)) (-2928 (((-3 $ "failed") $) 37)) (-1618 (($) 145 (|has| |#1| (-547)))) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-1784 (((-112) $) 79)) (-1533 (((-112) $) 130 (|has| |#1| (-820)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 154 (|has| |#1| (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 153 (|has| |#1| (-886 (-381))))) (-3466 (((-112) $) 35)) (-2227 (($ $) 149)) (-3088 ((|#1| $) 151)) (-2133 (((-3 $ "failed") $) 116 (|has| |#1| (-1150)))) (-2917 (((-112) $) 129 (|has| |#1| (-820)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-1945 (($ $ $) 126 (|has| |#1| (-850)))) (-2709 (($ $ $) 125 (|has| |#1| (-850)))) (-3152 (($ (-1 |#1| |#1|) $) 177)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 78)) (-3625 (($) 115 (|has| |#1| (-1150)) CONST)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2539 (($ $) 146 (|has| |#1| (-308)))) (-2209 ((|#1| $) 143 (|has| |#1| (-547)))) (-4255 (((-420 (-1171 $)) (-1171 $)) 140 (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) 139 (|has| |#1| (-909)))) (-2473 (((-420 $) $) 82)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-2095 (($ $ (-644 |#1|) (-644 |#1|)) 183 (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) 182 (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) 181 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) 180 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 179 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) 178 (|has| |#1| (-516 (-1175) |#1|)))) (-3470 (((-771) $) 64)) (-4393 (($ $ |#1|) 184 (|has| |#1| (-287 |#1| |#1|)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-2578 (($ $) 176 (|has| |#1| (-233))) (($ $ (-771)) 174 (|has| |#1| (-233))) (($ $ (-1175)) 172 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 171 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 170 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 169 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 162) (($ $ (-1 |#1| |#1|)) 161)) (-1431 (($ $) 148)) (-3100 ((|#1| $) 150)) (-3204 (((-892 (-566)) $) 156 (|has| |#1| (-614 (-892 (-566))))) (((-892 (-381)) $) 155 (|has| |#1| (-614 (-892 (-381))))) (((-538) $) 133 (|has| |#1| (-614 (-538)))) (((-381) $) 132 (|has| |#1| (-1022))) (((-225) $) 131 (|has| |#1| (-1022)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 142 (-2447 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ |#1|) 189) (($ (-1175)) 135 (|has| |#1| (-1038 (-1175))))) (-3226 (((-3 $ "failed") $) 134 (-2805 (|has| |#1| (-145)) (-2447 (|has| $ (-145)) (|has| |#1| (-909)))))) (-3996 (((-771)) 32 T CONST)) (-1982 ((|#1| $) 144 (|has| |#1| (-547)))) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-3333 (($ $) 127 (|has| |#1| (-820)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $) 175 (|has| |#1| (-233))) (($ $ (-771)) 173 (|has| |#1| (-233))) (($ $ (-1175)) 168 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 167 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 166 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 165 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 164) (($ $ (-1 |#1| |#1|)) 163)) (-3010 (((-112) $ $) 123 (|has| |#1| (-850)))) (-2984 (((-112) $ $) 122 (|has| |#1| (-850)))) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 124 (|has| |#1| (-850)))) (-2972 (((-112) $ $) 121 (|has| |#1| (-850)))) (-3062 (($ $ $) 73) (($ |#1| |#1|) 152)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75) (($ |#1| $) 188) (($ $ |#1|) 187)))
(((-992 |#1|) (-140) (-558)) (T -992))
-((-3061 (*1 *1 *2 *2) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))) (-3001 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))) (-3013 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))) (-2861 (*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))) (-3413 (*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))) (-2452 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-308)))) (-1539 (*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-308)))) (-3335 (*1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-547)) (-4 *2 (-558)))) (-1604 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-547)))) (-4317 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-547)))))
-(-13 (-365) (-38 |t#1|) (-1038 |t#1|) (-340 |t#1|) (-231 |t#1|) (-379 |t#1|) (-884 |t#1|) (-402 |t#1|) (-10 -8 (-15 -3061 ($ |t#1| |t#1|)) (-15 -3001 (|t#1| $)) (-15 -3013 (|t#1| $)) (-15 -2861 ($ $)) (-15 -3413 ($ $)) (IF (|has| |t#1| (-1150)) (-6 (-1150)) |%noBranch|) (IF (|has| |t#1| (-1038 (-566))) (PROGN (-6 (-1038 (-566))) (-6 (-1038 (-409 (-566))))) |%noBranch|) (IF (|has| |t#1| (-850)) (-6 (-850)) |%noBranch|) (IF (|has| |t#1| (-820)) (-6 (-820)) |%noBranch|) (IF (|has| |t#1| (-1022)) (-6 (-1022)) |%noBranch|) (IF (|has| |t#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1038 (-1175))) (-6 (-1038 (-1175))) |%noBranch|) (IF (|has| |t#1| (-308)) (PROGN (-15 -2452 (|t#1| $)) (-15 -1539 ($ $))) |%noBranch|) (IF (|has| |t#1| (-547)) (PROGN (-15 -3335 ($)) (-15 -1604 (|t#1| $)) (-15 -4317 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-909)) (-6 (-909)) |%noBranch|)))
+((-3062 (*1 *1 *2 *2) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))) (-3088 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))) (-3100 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))) (-2227 (*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))) (-1431 (*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))) (-2486 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-308)))) (-2539 (*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-308)))) (-1618 (*1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-547)) (-4 *2 (-558)))) (-1982 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-547)))) (-2209 (*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-547)))))
+(-13 (-365) (-38 |t#1|) (-1038 |t#1|) (-340 |t#1|) (-231 |t#1|) (-379 |t#1|) (-884 |t#1|) (-402 |t#1|) (-10 -8 (-15 -3062 ($ |t#1| |t#1|)) (-15 -3088 (|t#1| $)) (-15 -3100 (|t#1| $)) (-15 -2227 ($ $)) (-15 -1431 ($ $)) (IF (|has| |t#1| (-1150)) (-6 (-1150)) |%noBranch|) (IF (|has| |t#1| (-1038 (-566))) (PROGN (-6 (-1038 (-566))) (-6 (-1038 (-409 (-566))))) |%noBranch|) (IF (|has| |t#1| (-850)) (-6 (-850)) |%noBranch|) (IF (|has| |t#1| (-820)) (-6 (-820)) |%noBranch|) (IF (|has| |t#1| (-1022)) (-6 (-1022)) |%noBranch|) (IF (|has| |t#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1038 (-1175))) (-6 (-1038 (-1175))) |%noBranch|) (IF (|has| |t#1| (-308)) (PROGN (-15 -2486 (|t#1| $)) (-15 -2539 ($ $))) |%noBranch|) (IF (|has| |t#1| (-547)) (PROGN (-15 -1618 ($)) (-15 -1982 (|t#1| $)) (-15 -2209 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-909)) (-6 (-909)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 |#1|) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) . T) ((-616 (-566)) . T) ((-616 #1=(-1175)) |has| |#1| (-1038 (-1175))) ((-616 |#1|) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-614 (-225)) |has| |#1| (-1022)) ((-614 (-381)) |has| |#1| (-1022)) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-614 (-892 (-381))) |has| |#1| (-614 (-892 (-381)))) ((-614 (-892 (-566))) |has| |#1| (-614 (-892 (-566)))) ((-231 |#1|) . T) ((-233) |has| |#1| (-233)) ((-243) . T) ((-287 |#1| $) |has| |#1| (-287 |#1| |#1|)) ((-291) . T) ((-308) . T) ((-310 |#1|) |has| |#1| (-310 |#1|)) ((-365) . T) ((-340 |#1|) . T) ((-379 |#1|) . T) ((-402 |#1|) . T) ((-454) . T) ((-516 (-1175) |#1|) |has| |#1| (-516 (-1175) |#1|)) ((-516 |#1| |#1|) |has| |#1| (-310 |#1|)) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) . T) ((-640 |#1|) . T) ((-640 $) . T) ((-639 (-566)) |has| |#1| (-639 (-566))) ((-639 |#1|) . T) ((-717 #0#) . T) ((-717 |#1|) . T) ((-717 $) . T) ((-726) . T) ((-791) |has| |#1| (-820)) ((-792) |has| |#1| (-820)) ((-794) |has| |#1| (-820)) ((-795) |has| |#1| (-820)) ((-820) |has| |#1| (-820)) ((-848) |has| |#1| (-820)) ((-850) -2805 (|has| |#1| (-850)) (|has| |#1| (-820))) ((-900 (-1175)) |has| |#1| (-900 (-1175))) ((-886 (-381)) |has| |#1| (-886 (-381))) ((-886 (-566)) |has| |#1| (-886 (-566))) ((-884 |#1|) . T) ((-909) |has| |#1| (-909)) ((-920) . T) ((-1022) |has| |#1| (-1022)) ((-1038 (-409 (-566))) |has| |#1| (-1038 (-566))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 #1#) |has| |#1| (-1038 (-1175))) ((-1038 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 |#1|) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1150) |has| |#1| (-1150)) ((-1214) . T) ((-1218) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2624 (($ (-1141 |#1| |#2|)) 11)) (-4198 (((-1141 |#1| |#2|) $) 12)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4386 ((|#2| $ (-240 |#1| |#2|)) 16)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL)))
-(((-993 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -2624 ($ (-1141 |#1| |#2|))) (-15 -4198 ((-1141 |#1| |#2|) $)) (-15 -4386 (|#2| $ (-240 |#1| |#2|))))) (-921) (-365)) (T -993))
-((-2624 (*1 *1 *2) (-12 (-5 *2 (-1141 *3 *4)) (-14 *3 (-921)) (-4 *4 (-365)) (-5 *1 (-993 *3 *4)))) (-4198 (*1 *2 *1) (-12 (-5 *2 (-1141 *3 *4)) (-5 *1 (-993 *3 *4)) (-14 *3 (-921)) (-4 *4 (-365)))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 (-240 *4 *2)) (-14 *4 (-921)) (-4 *2 (-365)) (-5 *1 (-993 *4 *2)))))
-(-13 (-21) (-10 -8 (-15 -2624 ($ (-1141 |#1| |#2|))) (-15 -4198 ((-1141 |#1| |#2|) $)) (-15 -4386 (|#2| $ (-240 |#1| |#2|)))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1374 (((-1134) $) 9)) (-2512 (((-862) $) 15) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-994) (-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $))))) (T -994))
-((-1374 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-994)))))
-(-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $))))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) 8)) (-2342 (($) 7 T CONST)) (-3585 (($ $) 47)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-3822 (((-771) $) 46)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3119 ((|#1| $) 40)) (-4265 (($ |#1| $) 41)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4395 ((|#1| $) 45)) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-1735 ((|#1| |#1| $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-3663 ((|#1| $) 48)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) 43)) (-2529 ((|#1| $) 44)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-1678 (($ (-1141 |#1| |#2|)) 11)) (-1883 (((-1141 |#1| |#2|) $) 12)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4393 ((|#2| $ (-240 |#1| |#2|)) 16)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL)))
+(((-993 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -1678 ($ (-1141 |#1| |#2|))) (-15 -1883 ((-1141 |#1| |#2|) $)) (-15 -4393 (|#2| $ (-240 |#1| |#2|))))) (-921) (-365)) (T -993))
+((-1678 (*1 *1 *2) (-12 (-5 *2 (-1141 *3 *4)) (-14 *3 (-921)) (-4 *4 (-365)) (-5 *1 (-993 *3 *4)))) (-1883 (*1 *2 *1) (-12 (-5 *2 (-1141 *3 *4)) (-5 *1 (-993 *3 *4)) (-14 *3 (-921)) (-4 *4 (-365)))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 (-240 *4 *2)) (-14 *4 (-921)) (-4 *2 (-365)) (-5 *1 (-993 *4 *2)))))
+(-13 (-21) (-10 -8 (-15 -1678 ($ (-1141 |#1| |#2|))) (-15 -1883 ((-1141 |#1| |#2|) $)) (-15 -4393 (|#2| $ (-240 |#1| |#2|)))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1424 (((-1134) $) 9)) (-3780 (((-862) $) 15) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-994) (-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $))))) (T -994))
+((-1424 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-994)))))
+(-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $))))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) 8)) (-3877 (($) 7 T CONST)) (-2547 (($ $) 47)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-3945 (((-771) $) 46)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3765 ((|#1| $) 40)) (-2903 (($ |#1| $) 41)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-1763 ((|#1| $) 45)) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3894 ((|#1| |#1| $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-2069 ((|#1| $) 48)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) 43)) (-1980 ((|#1| $) 44)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-995 |#1|) (-140) (-1214)) (T -995))
-((-1735 (*1 *2 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))) (-3663 (*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))) (-3585 (*1 *1 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))) (-3822 (*1 *2 *1) (-12 (-4 *1 (-995 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))) (-4395 (*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))) (-2529 (*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4417) (-15 -1735 (|t#1| |t#1| $)) (-15 -3663 (|t#1| $)) (-15 -3585 ($ $)) (-15 -3822 ((-771) $)) (-15 -4395 (|t#1| $)) (-15 -2529 (|t#1| $))))
+((-3894 (*1 *2 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))) (-2069 (*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))) (-2547 (*1 *1 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))) (-3945 (*1 *2 *1) (-12 (-4 *1 (-995 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))) (-1763 (*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))) (-1980 (*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4414) (-15 -3894 (|t#1| |t#1| $)) (-15 -2069 (|t#1| $)) (-15 -2547 ($ $)) (-15 -3945 ((-771) $)) (-15 -1763 (|t#1| $)) (-15 -1980 (|t#1| $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-3958 (((-112) $) 43)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#2| "failed") $) 46)) (-1756 (((-566) $) NIL) (((-409 (-566)) $) NIL) ((|#2| $) 44)) (-3800 (((-3 (-409 (-566)) "failed") $) 78)) (-3717 (((-112) $) 72)) (-3370 (((-409 (-566)) $) 76)) (-2741 (((-112) $) 42)) (-1559 ((|#2| $) 22)) (-3077 (($ (-1 |#2| |#2|) $) 19)) (-2626 (($ $) 58)) (-2862 (($ $) NIL) (($ $ (-771)) NIL) (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 35)) (-3134 (((-538) $) 67)) (-2032 (($ $) 17)) (-2512 (((-862) $) 53) (($ (-566)) 39) (($ |#2|) 37) (($ (-409 (-566))) NIL)) (-3795 (((-771)) 10)) (-1346 ((|#2| $) 71)) (-2940 (((-112) $ $) 26)) (-2962 (((-112) $ $) 69)) (-3047 (($ $) 30) (($ $ $) 29)) (-3034 (($ $ $) 27)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 34) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 31) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
-(((-996 |#1| |#2|) (-10 -8 (-15 -2512 (|#1| (-409 (-566)))) (-15 -2962 ((-112) |#1| |#1|)) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 * (|#1| |#1| (-409 (-566)))) (-15 -2626 (|#1| |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -3800 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3370 ((-409 (-566)) |#1|)) (-15 -3717 ((-112) |#1|)) (-15 -1346 (|#2| |#1|)) (-15 -1559 (|#2| |#1|)) (-15 -2032 (|#1| |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -2512 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-566))) (-15 -2741 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 -3958 ((-112) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3034 (|#1| |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|))) (-997 |#2|) (-172)) (T -996))
-((-3795 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-996 *3 *4)) (-4 *3 (-997 *4)))))
-(-10 -8 (-15 -2512 (|#1| (-409 (-566)))) (-15 -2962 ((-112) |#1| |#1|)) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 * (|#1| |#1| (-409 (-566)))) (-15 -2626 (|#1| |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -3800 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3370 ((-409 (-566)) |#1|)) (-15 -3717 ((-112) |#1|)) (-15 -1346 (|#2| |#1|)) (-15 -1559 (|#2| |#1|)) (-15 -2032 (|#1| |#1|)) (-15 -3077 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -2512 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-566))) (-15 -2741 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 -3958 ((-112) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3034 (|#1| |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2977 (((-3 (-566) "failed") $) 127 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 125 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 122)) (-1756 (((-566) $) 126 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 124 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 123)) (-1628 (((-689 (-566)) (-689 $)) 97 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 96 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 95) (((-689 |#1|) (-689 $)) 94)) (-1579 (((-3 $ "failed") $) 37)) (-2417 ((|#1| $) 87)) (-3800 (((-3 (-409 (-566)) "failed") $) 83 (|has| |#1| (-547)))) (-3717 (((-112) $) 85 (|has| |#1| (-547)))) (-3370 (((-409 (-566)) $) 84 (|has| |#1| (-547)))) (-3482 (($ |#1| |#1| |#1| |#1|) 88)) (-2741 (((-112) $) 35)) (-1559 ((|#1| $) 89)) (-1439 (($ $ $) 76 (|has| |#1| (-850)))) (-3059 (($ $ $) 75 (|has| |#1| (-850)))) (-3077 (($ (-1 |#1| |#1|) $) 98)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 80 (|has| |#1| (-365)))) (-2044 ((|#1| $) 90)) (-4042 ((|#1| $) 91)) (-2200 ((|#1| $) 92)) (-4033 (((-1119) $) 11)) (-2070 (($ $ (-644 |#1|) (-644 |#1|)) 104 (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) 103 (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) 102 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) 101 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 100 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) 99 (|has| |#1| (-516 (-1175) |#1|)))) (-4386 (($ $ |#1|) 105 (|has| |#1| (-287 |#1| |#1|)))) (-2862 (($ $) 121 (|has| |#1| (-233))) (($ $ (-771)) 119 (|has| |#1| (-233))) (($ $ (-1175)) 117 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 116 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 115 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 114 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 107) (($ $ (-1 |#1| |#1|)) 106)) (-3134 (((-538) $) 81 (|has| |#1| (-614 (-538))))) (-2032 (($ $) 93)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44) (($ (-409 (-566))) 70 (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566))))))) (-3842 (((-3 $ "failed") $) 82 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1346 ((|#1| $) 86 (|has| |#1| (-1059)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $) 120 (|has| |#1| (-233))) (($ $ (-771)) 118 (|has| |#1| (-233))) (($ $ (-1175)) 113 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 112 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 111 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 110 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 109) (($ $ (-1 |#1| |#1|)) 108)) (-2998 (((-112) $ $) 73 (|has| |#1| (-850)))) (-2974 (((-112) $ $) 72 (|has| |#1| (-850)))) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 74 (|has| |#1| (-850)))) (-2962 (((-112) $ $) 71 (|has| |#1| (-850)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 79 (|has| |#1| (-365)))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ $ (-409 (-566))) 78 (|has| |#1| (-365))) (($ (-409 (-566)) $) 77 (|has| |#1| (-365)))))
+((-3015 (((-112) $) 43)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#2| "failed") $) 46)) (-1867 (((-566) $) NIL) (((-409 (-566)) $) NIL) ((|#2| $) 44)) (-4045 (((-3 (-409 (-566)) "failed") $) 78)) (-1356 (((-112) $) 72)) (-2269 (((-409 (-566)) $) 76)) (-3466 (((-112) $) 42)) (-2719 ((|#2| $) 22)) (-3152 (($ (-1 |#2| |#2|) $) 19)) (-3584 (($ $) 58)) (-2578 (($ $) NIL) (($ $ (-771)) NIL) (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 35)) (-3204 (((-538) $) 67)) (-3850 (($ $) 17)) (-3780 (((-862) $) 53) (($ (-566)) 39) (($ |#2|) 37) (($ (-409 (-566))) NIL)) (-3996 (((-771)) 10)) (-3333 ((|#2| $) 71)) (-2950 (((-112) $ $) 26)) (-2972 (((-112) $ $) 69)) (-3051 (($ $) 30) (($ $ $) 29)) (-3040 (($ $ $) 27)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 34) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 31) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL)))
+(((-996 |#1| |#2|) (-10 -8 (-15 -3780 (|#1| (-409 (-566)))) (-15 -2972 ((-112) |#1| |#1|)) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 * (|#1| |#1| (-409 (-566)))) (-15 -3584 (|#1| |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -4045 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2269 ((-409 (-566)) |#1|)) (-15 -1356 ((-112) |#1|)) (-15 -3333 (|#2| |#1|)) (-15 -2719 (|#2| |#1|)) (-15 -3850 (|#1| |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3780 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-566))) (-15 -3466 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 -3015 ((-112) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3040 (|#1| |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|))) (-997 |#2|) (-172)) (T -996))
+((-3996 (*1 *2) (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-996 *3 *4)) (-4 *3 (-997 *4)))))
+(-10 -8 (-15 -3780 (|#1| (-409 (-566)))) (-15 -2972 ((-112) |#1| |#1|)) (-15 * (|#1| (-409 (-566)) |#1|)) (-15 * (|#1| |#1| (-409 (-566)))) (-15 -3584 (|#1| |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -4045 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2269 ((-409 (-566)) |#1|)) (-15 -1356 ((-112) |#1|)) (-15 -3333 (|#2| |#1|)) (-15 -2719 (|#2| |#1|)) (-15 -3850 (|#1| |#1|)) (-15 -3152 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -3780 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-566))) (-15 -3466 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 * (|#1| (-771) |#1|)) (-15 -3015 ((-112) |#1|)) (-15 * (|#1| (-921) |#1|)) (-15 -3040 (|#1| |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-3066 (((-3 (-566) "failed") $) 127 (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 125 (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) 122)) (-1867 (((-566) $) 126 (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) 124 (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) 123)) (-2210 (((-689 (-566)) (-689 $)) 97 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 96 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 95) (((-689 |#1|) (-689 $)) 94)) (-2928 (((-3 $ "failed") $) 37)) (-2495 ((|#1| $) 87)) (-4045 (((-3 (-409 (-566)) "failed") $) 83 (|has| |#1| (-547)))) (-1356 (((-112) $) 85 (|has| |#1| (-547)))) (-2269 (((-409 (-566)) $) 84 (|has| |#1| (-547)))) (-4025 (($ |#1| |#1| |#1| |#1|) 88)) (-3466 (((-112) $) 35)) (-2719 ((|#1| $) 89)) (-1945 (($ $ $) 76 (|has| |#1| (-850)))) (-2709 (($ $ $) 75 (|has| |#1| (-850)))) (-3152 (($ (-1 |#1| |#1|) $) 98)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 80 (|has| |#1| (-365)))) (-3970 ((|#1| $) 90)) (-1329 ((|#1| $) 91)) (-1850 ((|#1| $) 92)) (-4056 (((-1119) $) 11)) (-2095 (($ $ (-644 |#1|) (-644 |#1|)) 104 (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) 103 (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) 102 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) 101 (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) 100 (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) 99 (|has| |#1| (-516 (-1175) |#1|)))) (-4393 (($ $ |#1|) 105 (|has| |#1| (-287 |#1| |#1|)))) (-2578 (($ $) 121 (|has| |#1| (-233))) (($ $ (-771)) 119 (|has| |#1| (-233))) (($ $ (-1175)) 117 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 116 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 115 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 114 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 107) (($ $ (-1 |#1| |#1|)) 106)) (-3204 (((-538) $) 81 (|has| |#1| (-614 (-538))))) (-3850 (($ $) 93)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 44) (($ (-409 (-566))) 70 (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566))))))) (-3226 (((-3 $ "failed") $) 82 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-3333 ((|#1| $) 86 (|has| |#1| (-1059)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $) 120 (|has| |#1| (-233))) (($ $ (-771)) 118 (|has| |#1| (-233))) (($ $ (-1175)) 113 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 112 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 111 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 110 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 109) (($ $ (-1 |#1| |#1|)) 108)) (-3010 (((-112) $ $) 73 (|has| |#1| (-850)))) (-2984 (((-112) $ $) 72 (|has| |#1| (-850)))) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 74 (|has| |#1| (-850)))) (-2972 (((-112) $ $) 71 (|has| |#1| (-850)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 79 (|has| |#1| (-365)))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45) (($ $ (-409 (-566))) 78 (|has| |#1| (-365))) (($ (-409 (-566)) $) 77 (|has| |#1| (-365)))))
(((-997 |#1|) (-140) (-172)) (T -997))
-((-2032 (*1 *1 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-2200 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-4042 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-2044 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-1559 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-3482 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-2417 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-1346 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)) (-4 *2 (-1059)))) (-3717 (*1 *2 *1) (-12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112)))) (-3370 (*1 *2 *1) (-12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))) (-3800 (*1 *2 *1) (|partial| -12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))))
-(-13 (-38 |t#1|) (-413 |t#1|) (-231 |t#1|) (-340 |t#1|) (-379 |t#1|) (-10 -8 (-15 -2032 ($ $)) (-15 -2200 (|t#1| $)) (-15 -4042 (|t#1| $)) (-15 -2044 (|t#1| $)) (-15 -1559 (|t#1| $)) (-15 -3482 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -2417 (|t#1| $)) (IF (|has| |t#1| (-291)) (-6 (-291)) |%noBranch|) (IF (|has| |t#1| (-850)) (-6 (-850)) |%noBranch|) (IF (|has| |t#1| (-365)) (-6 (-243)) |%noBranch|) (IF (|has| |t#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1059)) (-15 -1346 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-547)) (PROGN (-15 -3717 ((-112) $)) (-15 -3370 ((-409 (-566)) $)) (-15 -3800 ((-3 (-409 (-566)) "failed") $))) |%noBranch|)))
+((-3850 (*1 *1 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-1850 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-1329 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-3970 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-2719 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-4025 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-2495 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))) (-3333 (*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)) (-4 *2 (-1059)))) (-1356 (*1 *2 *1) (-12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112)))) (-2269 (*1 *2 *1) (-12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))) (-4045 (*1 *2 *1) (|partial| -12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-409 (-566))))))
+(-13 (-38 |t#1|) (-413 |t#1|) (-231 |t#1|) (-340 |t#1|) (-379 |t#1|) (-10 -8 (-15 -3850 ($ $)) (-15 -1850 (|t#1| $)) (-15 -1329 (|t#1| $)) (-15 -3970 (|t#1| $)) (-15 -2719 (|t#1| $)) (-15 -4025 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -2495 (|t#1| $)) (IF (|has| |t#1| (-291)) (-6 (-291)) |%noBranch|) (IF (|has| |t#1| (-850)) (-6 (-850)) |%noBranch|) (IF (|has| |t#1| (-365)) (-6 (-243)) |%noBranch|) (IF (|has| |t#1| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-145)) |%noBranch|) (IF (|has| |t#1| (-1059)) (-15 -3333 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-547)) (PROGN (-15 -1356 ((-112) $)) (-15 -2269 ((-409 (-566)) $)) (-15 -4045 ((-3 (-409 (-566)) "failed") $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) |has| |#1| (-365)) ((-38 |#1|) . T) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-365)) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-365)) (|has| |#1| (-291))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) -2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-365))) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-231 |#1|) . T) ((-233) |has| |#1| (-233)) ((-243) |has| |#1| (-365)) ((-287 |#1| $) |has| |#1| (-287 |#1| |#1|)) ((-291) -2805 (|has| |#1| (-365)) (|has| |#1| (-291))) ((-310 |#1|) |has| |#1| (-310 |#1|)) ((-340 |#1|) . T) ((-379 |#1|) . T) ((-413 |#1|) . T) ((-516 (-1175) |#1|) |has| |#1| (-516 (-1175) |#1|)) ((-516 |#1| |#1|) |has| |#1| (-310 |#1|)) ((-646 #0#) |has| |#1| (-365)) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) |has| |#1| (-365)) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) |has| |#1| (-365)) ((-640 |#1|) . T) ((-639 (-566)) |has| |#1| (-639 (-566))) ((-639 |#1|) . T) ((-717 #0#) |has| |#1| (-365)) ((-717 |#1|) . T) ((-726) . T) ((-850) |has| |#1| (-850)) ((-900 (-1175)) |has| |#1| (-900 (-1175))) ((-1038 (-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T) ((-1051 #0#) |has| |#1| (-365)) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-365)) (|has| |#1| (-291))) ((-1056 #0#) |has| |#1| (-365)) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-365)) (|has| |#1| (-291))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-3077 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
-(((-998 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3077 (|#3| (-1 |#4| |#2|) |#1|))) (-997 |#2|) (-172) (-997 |#4|) (-172)) (T -998))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-997 *6)) (-5 *1 (-998 *4 *5 *2 *6)) (-4 *4 (-997 *5)))))
-(-10 -7 (-15 -3077 (|#3| (-1 |#4| |#2|) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2417 ((|#1| $) 12)) (-3800 (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-547)))) (-3717 (((-112) $) NIL (|has| |#1| (-547)))) (-3370 (((-409 (-566)) $) NIL (|has| |#1| (-547)))) (-3482 (($ |#1| |#1| |#1| |#1|) 16)) (-2741 (((-112) $) NIL)) (-1559 ((|#1| $) NIL)) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| |#1| (-365)))) (-2044 ((|#1| $) 15)) (-4042 ((|#1| $) 14)) (-2200 ((|#1| $) 13)) (-4033 (((-1119) $) NIL)) (-2070 (($ $ (-644 |#1|) (-644 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-516 (-1175) |#1|)))) (-4386 (($ $ |#1|) NIL (|has| |#1| (-287 |#1| |#1|)))) (-2862 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2032 (($ $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566))))))) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1346 ((|#1| $) NIL (|has| |#1| (-1059)))) (-2485 (($) 8 T CONST)) (-2495 (($) 10 T CONST)) (-2840 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-365))) (($ (-409 (-566)) $) NIL (|has| |#1| (-365)))))
+((-3152 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
+(((-998 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3152 (|#3| (-1 |#4| |#2|) |#1|))) (-997 |#2|) (-172) (-997 |#4|) (-172)) (T -998))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-172)) (-4 *6 (-172)) (-4 *2 (-997 *6)) (-5 *1 (-998 *4 *5 *2 *6)) (-4 *4 (-997 *5)))))
+(-10 -7 (-15 -3152 (|#3| (-1 |#4| |#2|) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2495 ((|#1| $) 12)) (-4045 (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-547)))) (-1356 (((-112) $) NIL (|has| |#1| (-547)))) (-2269 (((-409 (-566)) $) NIL (|has| |#1| (-547)))) (-4025 (($ |#1| |#1| |#1| |#1|) 16)) (-3466 (((-112) $) NIL)) (-2719 ((|#1| $) NIL)) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-365)))) (-3970 ((|#1| $) 15)) (-1329 ((|#1| $) 14)) (-1850 ((|#1| $) 13)) (-4056 (((-1119) $) NIL)) (-2095 (($ $ (-644 |#1|) (-644 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ |#1| |#1|) NIL (|has| |#1| (-310 |#1|))) (($ $ (-295 |#1|)) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-295 |#1|))) NIL (|has| |#1| (-310 |#1|))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-516 (-1175) |#1|))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-516 (-1175) |#1|)))) (-4393 (($ $ |#1|) NIL (|has| |#1| (-287 |#1| |#1|)))) (-2578 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3850 (($ $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566))))))) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-3333 ((|#1| $) NIL (|has| |#1| (-1059)))) (-2493 (($) 8 T CONST)) (-4333 (($) 10 T CONST)) (-2876 (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 20) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-365))) (($ (-409 (-566)) $) NIL (|has| |#1| (-365)))))
(((-999 |#1|) (-997 |#1|) (-172)) (T -999))
NIL
(-997 |#1|)
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3081 (((-112) $ (-771)) NIL)) (-2342 (($) NIL T CONST)) (-3585 (($ $) 23)) (-2428 (($ (-644 |#1|)) 33)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-3822 (((-771) $) 26)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3119 ((|#1| $) 28)) (-4265 (($ |#1| $) 17)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4395 ((|#1| $) 27)) (-2658 ((|#1| $) 22)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-1735 ((|#1| |#1| $) 16)) (-4194 (((-112) $) 18)) (-2954 (($) NIL)) (-3663 ((|#1| $) 21)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) NIL)) (-2529 ((|#1| $) 30)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1000 |#1|) (-13 (-995 |#1|) (-10 -8 (-15 -2428 ($ (-644 |#1|))))) (-1099)) (T -1000))
-((-2428 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-1000 *3)))))
-(-13 (-995 |#1|) (-10 -8 (-15 -2428 ($ (-644 |#1|)))))
-((-2402 (($ $) 12)) (-3979 (($ $ (-566)) 13)))
-(((-1001 |#1|) (-10 -8 (-15 -2402 (|#1| |#1|)) (-15 -3979 (|#1| |#1| (-566)))) (-1002)) (T -1001))
-NIL
-(-10 -8 (-15 -2402 (|#1| |#1|)) (-15 -3979 (|#1| |#1| (-566))))
-((-2402 (($ $) 6)) (-3979 (($ $ (-566)) 7)) (** (($ $ (-409 (-566))) 8)))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1574 (((-112) $ (-771)) NIL)) (-3877 (($) NIL T CONST)) (-2547 (($ $) 23)) (-3472 (($ (-644 |#1|)) 33)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-3945 (((-771) $) 26)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3765 ((|#1| $) 28)) (-2903 (($ |#1| $) 17)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1763 ((|#1| $) 27)) (-3852 ((|#1| $) 22)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3894 ((|#1| |#1| $) 16)) (-3461 (((-112) $) 18)) (-1793 (($) NIL)) (-2069 ((|#1| $) 21)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) NIL)) (-1980 ((|#1| $) 30)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1000 |#1|) (-13 (-995 |#1|) (-10 -8 (-15 -3472 ($ (-644 |#1|))))) (-1099)) (T -1000))
+((-3472 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-1000 *3)))))
+(-13 (-995 |#1|) (-10 -8 (-15 -3472 ($ (-644 |#1|)))))
+((-2484 (($ $) 12)) (-1986 (($ $ (-566)) 13)))
+(((-1001 |#1|) (-10 -8 (-15 -2484 (|#1| |#1|)) (-15 -1986 (|#1| |#1| (-566)))) (-1002)) (T -1001))
+NIL
+(-10 -8 (-15 -2484 (|#1| |#1|)) (-15 -1986 (|#1| |#1| (-566))))
+((-2484 (($ $) 6)) (-1986 (($ $ (-566)) 7)) (** (($ $ (-409 (-566))) 8)))
(((-1002) (-140)) (T -1002))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-1002)) (-5 *2 (-409 (-566))))) (-3979 (*1 *1 *1 *2) (-12 (-4 *1 (-1002)) (-5 *2 (-566)))) (-2402 (*1 *1 *1) (-4 *1 (-1002))))
-(-13 (-10 -8 (-15 -2402 ($ $)) (-15 -3979 ($ $ (-566))) (-15 ** ($ $ (-409 (-566))))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3461 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| (-409 |#2|) (-365)))) (-3653 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-2152 (((-112) $) NIL (|has| (-409 |#2|) (-365)))) (-3953 (((-689 (-409 |#2|)) (-1264 $)) NIL) (((-689 (-409 |#2|))) NIL)) (-3817 (((-409 |#2|) $) NIL)) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-409 |#2|) (-351)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-1370 (((-420 $) $) NIL (|has| (-409 |#2|) (-365)))) (-1561 (((-112) $ $) NIL (|has| (-409 |#2|) (-365)))) (-4025 (((-771)) NIL (|has| (-409 |#2|) (-370)))) (-4051 (((-112)) NIL)) (-4146 (((-112) |#1|) 173) (((-112) |#2|) 177)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| (-409 |#2|) (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-3 (-409 |#2|) "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| (-409 |#2|) (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-409 |#2|) $) NIL)) (-1547 (($ (-1264 (-409 |#2|)) (-1264 $)) NIL) (($ (-1264 (-409 |#2|))) 81) (($ (-1264 |#2|) |#2|) NIL)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-409 |#2|) (-351)))) (-2926 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-1929 (((-689 (-409 |#2|)) $ (-1264 $)) NIL) (((-689 (-409 |#2|)) $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-409 |#2|))) (|:| |vec| (-1264 (-409 |#2|)))) (-689 $) (-1264 $)) NIL) (((-689 (-409 |#2|)) (-689 $)) NIL)) (-2507 (((-1264 $) (-1264 $)) NIL)) (-4362 (($ |#3|) 75) (((-3 $ "failed") (-409 |#3|)) NIL (|has| (-409 |#2|) (-365)))) (-1579 (((-3 $ "failed") $) NIL)) (-2674 (((-644 (-644 |#1|))) NIL (|has| |#1| (-370)))) (-3038 (((-112) |#1| |#1|) NIL)) (-1821 (((-921)) NIL)) (-3335 (($) NIL (|has| (-409 |#2|) (-370)))) (-3554 (((-112)) NIL)) (-4036 (((-112) |#1|) 61) (((-112) |#2|) 175)) (-2938 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| (-409 |#2|) (-365)))) (-4248 (($ $) NIL)) (-3092 (($) NIL (|has| (-409 |#2|) (-351)))) (-3449 (((-112) $) NIL (|has| (-409 |#2|) (-351)))) (-3626 (($ $ (-771)) NIL (|has| (-409 |#2|) (-351))) (($ $) NIL (|has| (-409 |#2|) (-351)))) (-2635 (((-112) $) NIL (|has| (-409 |#2|) (-365)))) (-2716 (((-921) $) NIL (|has| (-409 |#2|) (-351))) (((-833 (-921)) $) NIL (|has| (-409 |#2|) (-351)))) (-2741 (((-112) $) NIL)) (-4302 (((-771)) NIL)) (-3628 (((-1264 $) (-1264 $)) NIL)) (-1559 (((-409 |#2|) $) NIL)) (-1928 (((-644 (-952 |#1|)) (-1175)) NIL (|has| |#1| (-365)))) (-2546 (((-3 $ "failed") $) NIL (|has| (-409 |#2|) (-351)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-409 |#2|) (-365)))) (-3929 ((|#3| $) NIL (|has| (-409 |#2|) (-365)))) (-3712 (((-921) $) NIL (|has| (-409 |#2|) (-370)))) (-4350 ((|#3| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| (-409 |#2|) (-365))) (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-2878 (((-1157) $) NIL)) (-3056 (((-689 (-409 |#2|))) 57)) (-2730 (((-689 (-409 |#2|))) 56)) (-2626 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-3931 (($ (-1264 |#2|) |#2|) 82)) (-2775 (((-689 (-409 |#2|))) 55)) (-2064 (((-689 (-409 |#2|))) 54)) (-2825 (((-2 (|:| |num| (-689 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 97)) (-2057 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) 88)) (-1641 (((-1264 $)) 51)) (-1925 (((-1264 $)) 50)) (-2936 (((-112) $) NIL)) (-1477 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2759 (($) NIL (|has| (-409 |#2|) (-351)) CONST)) (-2168 (($ (-921)) NIL (|has| (-409 |#2|) (-370)))) (-3901 (((-3 |#2| "failed")) 70)) (-4033 (((-1119) $) NIL)) (-4127 (((-771)) NIL)) (-4067 (($) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| (-409 |#2|) (-365)))) (-2222 (($ (-644 $)) NIL (|has| (-409 |#2|) (-365))) (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| (-409 |#2|) (-351)))) (-2391 (((-420 $) $) NIL (|has| (-409 |#2|) (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-409 |#2|) (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| (-409 |#2|) (-365)))) (-2972 (((-3 $ "failed") $ $) NIL (|has| (-409 |#2|) (-365)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-409 |#2|) (-365)))) (-1813 (((-771) $) NIL (|has| (-409 |#2|) (-365)))) (-4386 ((|#1| $ |#1| |#1|) NIL)) (-3611 (((-3 |#2| "failed")) 68)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| (-409 |#2|) (-365)))) (-2408 (((-409 |#2|) (-1264 $)) NIL) (((-409 |#2|)) 47)) (-3379 (((-771) $) NIL (|has| (-409 |#2|) (-351))) (((-3 (-771) "failed") $ $) NIL (|has| (-409 |#2|) (-351)))) (-2862 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-3042 (((-689 (-409 |#2|)) (-1264 $) (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365)))) (-2127 ((|#3|) 58)) (-1536 (($) NIL (|has| (-409 |#2|) (-351)))) (-2770 (((-1264 (-409 |#2|)) $ (-1264 $)) NIL) (((-689 (-409 |#2|)) (-1264 $) (-1264 $)) NIL) (((-1264 (-409 |#2|)) $) 83) (((-689 (-409 |#2|)) (-1264 $)) NIL)) (-3134 (((-1264 (-409 |#2|)) $) NIL) (($ (-1264 (-409 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-409 |#2|) (-351)))) (-3720 (((-1264 $) (-1264 $)) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 |#2|)) NIL) (($ (-409 (-566))) NIL (-2805 (|has| (-409 |#2|) (-1038 (-409 (-566)))) (|has| (-409 |#2|) (-365)))) (($ $) NIL (|has| (-409 |#2|) (-365)))) (-3842 (($ $) NIL (|has| (-409 |#2|) (-351))) (((-3 $ "failed") $) NIL (|has| (-409 |#2|) (-145)))) (-1963 ((|#3| $) NIL)) (-3795 (((-771)) NIL T CONST)) (-2462 (((-112)) 65)) (-4038 (((-112) |#1|) 178) (((-112) |#2|) 179)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) 143)) (-1634 (((-112) $ $) NIL (|has| (-409 |#2|) (-365)))) (-1832 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-1574 (((-112)) NIL)) (-2485 (($) 109 T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| (-409 |#2|) (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 |#2|)) NIL) (($ (-409 |#2|) $) NIL) (($ (-409 (-566)) $) NIL (|has| (-409 |#2|) (-365))) (($ $ (-409 (-566))) NIL (|has| (-409 |#2|) (-365)))))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-1002)) (-5 *2 (-409 (-566))))) (-1986 (*1 *1 *1 *2) (-12 (-4 *1 (-1002)) (-5 *2 (-566)))) (-2484 (*1 *1 *1) (-4 *1 (-1002))))
+(-13 (-10 -8 (-15 -2484 ($ $)) (-15 -1986 ($ $ (-566))) (-15 ** ($ $ (-409 (-566))))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3815 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| (-409 |#2|) (-365)))) (-1968 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-2644 (((-112) $) NIL (|has| (-409 |#2|) (-365)))) (-2965 (((-689 (-409 |#2|)) (-1264 $)) NIL) (((-689 (-409 |#2|))) NIL)) (-3834 (((-409 |#2|) $) NIL)) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| (-409 |#2|) (-351)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-3271 (((-420 $) $) NIL (|has| (-409 |#2|) (-365)))) (-2738 (((-112) $ $) NIL (|has| (-409 |#2|) (-365)))) (-4070 (((-771)) NIL (|has| (-409 |#2|) (-370)))) (-1395 (((-112)) NIL)) (-4205 (((-112) |#1|) 173) (((-112) |#2|) 177)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| (-409 |#2|) (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-3 (-409 |#2|) "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| (-409 |#2|) (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| (-409 |#2|) (-1038 (-409 (-566))))) (((-409 |#2|) $) NIL)) (-2613 (($ (-1264 (-409 |#2|)) (-1264 $)) NIL) (($ (-1264 (-409 |#2|))) 81) (($ (-1264 |#2|) |#2|) NIL)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-409 |#2|) (-351)))) (-2949 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-2205 (((-689 (-409 |#2|)) $ (-1264 $)) NIL) (((-689 (-409 |#2|)) $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-409 |#2|) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-409 |#2|))) (|:| |vec| (-1264 (-409 |#2|)))) (-689 $) (-1264 $)) NIL) (((-689 (-409 |#2|)) (-689 $)) NIL)) (-2994 (((-1264 $) (-1264 $)) NIL)) (-1580 (($ |#3|) 75) (((-3 $ "failed") (-409 |#3|)) NIL (|has| (-409 |#2|) (-365)))) (-2928 (((-3 $ "failed") $) NIL)) (-4019 (((-644 (-644 |#1|))) NIL (|has| |#1| (-370)))) (-4317 (((-112) |#1| |#1|) NIL)) (-4157 (((-921)) NIL)) (-1618 (($) NIL (|has| (-409 |#2|) (-370)))) (-3459 (((-112)) NIL)) (-4356 (((-112) |#1|) 61) (((-112) |#2|) 175)) (-2960 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| (-409 |#2|) (-365)))) (-2755 (($ $) NIL)) (-1676 (($) NIL (|has| (-409 |#2|) (-351)))) (-3698 (((-112) $) NIL (|has| (-409 |#2|) (-351)))) (-2901 (($ $ (-771)) NIL (|has| (-409 |#2|) (-351))) (($ $) NIL (|has| (-409 |#2|) (-351)))) (-1784 (((-112) $) NIL (|has| (-409 |#2|) (-365)))) (-3227 (((-921) $) NIL (|has| (-409 |#2|) (-351))) (((-833 (-921)) $) NIL (|has| (-409 |#2|) (-351)))) (-3466 (((-112) $) NIL)) (-2060 (((-771)) NIL)) (-2923 (((-1264 $) (-1264 $)) NIL)) (-2719 (((-409 |#2|) $) NIL)) (-2192 (((-644 (-952 |#1|)) (-1175)) NIL (|has| |#1| (-365)))) (-2133 (((-3 $ "failed") $) NIL (|has| (-409 |#2|) (-351)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-409 |#2|) (-365)))) (-2750 ((|#3| $) NIL (|has| (-409 |#2|) (-365)))) (-1299 (((-921) $) NIL (|has| (-409 |#2|) (-370)))) (-1567 ((|#3| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| (-409 |#2|) (-365))) (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-2402 (((-1157) $) NIL)) (-1387 (((-689 (-409 |#2|))) 57)) (-3355 (((-689 (-409 |#2|))) 56)) (-3584 (($ $) NIL (|has| (-409 |#2|) (-365)))) (-2769 (($ (-1264 |#2|) |#2|) 82)) (-2594 (((-689 (-409 |#2|))) 55)) (-4170 (((-689 (-409 |#2|))) 54)) (-3080 (((-2 (|:| |num| (-689 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 97)) (-4096 (((-2 (|:| |num| (-1264 |#2|)) (|:| |den| |#2|)) $) 88)) (-4202 (((-1264 $)) 51)) (-2161 (((-1264 $)) 50)) (-1729 (((-112) $) NIL)) (-3108 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-3625 (($) NIL (|has| (-409 |#2|) (-351)) CONST)) (-2208 (($ (-921)) NIL (|has| (-409 |#2|) (-370)))) (-2542 (((-3 |#2| "failed")) 70)) (-4056 (((-1119) $) NIL)) (-4026 (((-771)) NIL)) (-4152 (($) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| (-409 |#2|) (-365)))) (-2235 (($ (-644 $)) NIL (|has| (-409 |#2|) (-365))) (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| (-409 |#2|) (-351)))) (-2473 (((-420 $) $) NIL (|has| (-409 |#2|) (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-409 |#2|) (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| (-409 |#2|) (-365)))) (-2997 (((-3 $ "failed") $ $) NIL (|has| (-409 |#2|) (-365)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| (-409 |#2|) (-365)))) (-3470 (((-771) $) NIL (|has| (-409 |#2|) (-365)))) (-4393 ((|#1| $ |#1| |#1|) NIL)) (-2772 (((-3 |#2| "failed")) 68)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| (-409 |#2|) (-365)))) (-3309 (((-409 |#2|) (-1264 $)) NIL) (((-409 |#2|)) 47)) (-2347 (((-771) $) NIL (|has| (-409 |#2|) (-351))) (((-3 (-771) "failed") $ $) NIL (|has| (-409 |#2|) (-351)))) (-2578 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-4359 (((-689 (-409 |#2|)) (-1264 $) (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365)))) (-3601 ((|#3|) 58)) (-2507 (($) NIL (|has| (-409 |#2|) (-351)))) (-2543 (((-1264 (-409 |#2|)) $ (-1264 $)) NIL) (((-689 (-409 |#2|)) (-1264 $) (-1264 $)) NIL) (((-1264 (-409 |#2|)) $) 83) (((-689 (-409 |#2|)) (-1264 $)) NIL)) (-3204 (((-1264 (-409 |#2|)) $) NIL) (($ (-1264 (-409 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| (-409 |#2|) (-351)))) (-1389 (((-1264 $) (-1264 $)) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 |#2|)) NIL) (($ (-409 (-566))) NIL (-2805 (|has| (-409 |#2|) (-1038 (-409 (-566)))) (|has| (-409 |#2|) (-365)))) (($ $) NIL (|has| (-409 |#2|) (-365)))) (-3226 (($ $) NIL (|has| (-409 |#2|) (-351))) (((-3 $ "failed") $) NIL (|has| (-409 |#2|) (-145)))) (-4370 ((|#3| $) NIL)) (-3996 (((-771)) NIL T CONST)) (-2575 (((-112)) 65)) (-4379 (((-112) |#1|) 178) (((-112) |#2|) 179)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) 143)) (-2278 (((-112) $ $) NIL (|has| (-409 |#2|) (-365)))) (-2437 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2872 (((-112)) NIL)) (-2493 (($) 109 T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-1 (-409 |#2|) (-409 |#2|)) (-771)) NIL (|has| (-409 |#2|) (-365))) (($ $ (-1 (-409 |#2|) (-409 |#2|))) NIL (|has| (-409 |#2|) (-365))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| (-409 |#2|) (-365)) (|has| (-409 |#2|) (-900 (-1175))))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351)))) (($ $) NIL (-2805 (-12 (|has| (-409 |#2|) (-233)) (|has| (-409 |#2|) (-365))) (|has| (-409 |#2|) (-351))))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ $) NIL (|has| (-409 |#2|) (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| (-409 |#2|) (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 |#2|)) NIL) (($ (-409 |#2|) $) NIL) (($ (-409 (-566)) $) NIL (|has| (-409 |#2|) (-365))) (($ $ (-409 (-566))) NIL (|has| (-409 |#2|) (-365)))))
(((-1003 |#1| |#2| |#3| |#4| |#5|) (-344 |#1| |#2| |#3|) (-1218) (-1240 |#1|) (-1240 (-409 |#2|)) (-409 |#2|) (-771)) (T -1003))
NIL
(-344 |#1| |#2| |#3|)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3022 (((-644 (-566)) $) 73)) (-4069 (($ (-644 (-566))) 81)) (-2452 (((-566) $) 48 (|has| (-566) (-308)))) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL (|has| (-566) (-820)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) 60) (((-3 (-1175) "failed") $) NIL (|has| (-566) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) 57 (|has| (-566) (-1038 (-566)))) (((-3 (-566) "failed") $) 60 (|has| (-566) (-1038 (-566))))) (-1756 (((-566) $) NIL) (((-1175) $) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-566) (-1038 (-566)))) (((-566) $) NIL (|has| (-566) (-1038 (-566))))) (-2926 (($ $ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3335 (($) NIL (|has| (-566) (-547)))) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-3198 (((-644 (-566)) $) 79)) (-1684 (((-112) $) NIL (|has| (-566) (-820)))) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-566) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-566) (-886 (-381))))) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL)) (-3001 (((-566) $) 45)) (-2546 (((-3 $ "failed") $) NIL (|has| (-566) (-1150)))) (-1578 (((-112) $) NIL (|has| (-566) (-820)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| (-566) (-850)))) (-3077 (($ (-1 (-566) (-566)) $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL)) (-2759 (($) NIL (|has| (-566) (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-1539 (($ $) NIL (|has| (-566) (-308))) (((-409 (-566)) $) 50)) (-1500 (((-1155 (-566)) $) 78)) (-3368 (($ (-644 (-566)) (-644 (-566))) 82)) (-4317 (((-566) $) 64 (|has| (-566) (-547)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2391 (((-420 $) $) NIL)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2070 (($ $ (-644 (-566)) (-644 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-566) (-566)) NIL (|has| (-566) (-310 (-566)))) (($ $ (-295 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-295 (-566)))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-1175)) (-644 (-566))) NIL (|has| (-566) (-516 (-1175) (-566)))) (($ $ (-1175) (-566)) NIL (|has| (-566) (-516 (-1175) (-566))))) (-1813 (((-771) $) NIL)) (-4386 (($ $ (-566)) NIL (|has| (-566) (-287 (-566) (-566))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $) 15 (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-3413 (($ $) NIL)) (-3013 (((-566) $) 47)) (-2917 (((-644 (-566)) $) 80)) (-3134 (((-892 (-566)) $) NIL (|has| (-566) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-566) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-566) (-614 (-538)))) (((-381) $) NIL (|has| (-566) (-1022))) (((-225) $) NIL (|has| (-566) (-1022)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-566) (-909))))) (-2512 (((-862) $) 107) (($ (-566)) 51) (($ $) NIL) (($ (-409 (-566))) 27) (($ (-566)) 51) (($ (-1175)) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) 25)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-566) (-909))) (|has| (-566) (-145))))) (-3795 (((-771)) 13 T CONST)) (-1604 (((-566) $) 62 (|has| (-566) (-547)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-1346 (($ $) NIL (|has| (-566) (-820)))) (-2485 (($) 14 T CONST)) (-2495 (($) 17 T CONST)) (-2840 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-2998 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2940 (((-112) $ $) 21)) (-2987 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2962 (((-112) $ $) 40 (|has| (-566) (-850)))) (-3061 (($ $ $) 36) (($ (-566) (-566)) 38)) (-3047 (($ $) 23) (($ $ $) 30)) (-3034 (($ $ $) 28)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 32) (($ $ $) 34) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-566) $) 32) (($ $ (-566)) NIL)))
-(((-1004 |#1|) (-13 (-992 (-566)) (-613 (-409 (-566))) (-10 -8 (-15 -1539 ((-409 (-566)) $)) (-15 -3022 ((-644 (-566)) $)) (-15 -1500 ((-1155 (-566)) $)) (-15 -3198 ((-644 (-566)) $)) (-15 -2917 ((-644 (-566)) $)) (-15 -4069 ($ (-644 (-566)))) (-15 -3368 ($ (-644 (-566)) (-644 (-566)))))) (-566)) (T -1004))
-((-1539 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-3022 (*1 *2 *1) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-1500 (*1 *2 *1) (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-3198 (*1 *2 *1) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-2917 (*1 *2 *1) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-4069 (*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-3368 (*1 *1 *2 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
-(-13 (-992 (-566)) (-613 (-409 (-566))) (-10 -8 (-15 -1539 ((-409 (-566)) $)) (-15 -3022 ((-644 (-566)) $)) (-15 -1500 ((-1155 (-566)) $)) (-15 -3198 ((-644 (-566)) $)) (-15 -2917 ((-644 (-566)) $)) (-15 -4069 ($ (-644 (-566)))) (-15 -3368 ($ (-644 (-566)) (-644 (-566))))))
-((-3853 (((-52) (-409 (-566)) (-566)) 9)))
-(((-1005) (-10 -7 (-15 -3853 ((-52) (-409 (-566)) (-566))))) (T -1005))
-((-3853 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-566))) (-5 *4 (-566)) (-5 *2 (-52)) (-5 *1 (-1005)))))
-(-10 -7 (-15 -3853 ((-52) (-409 (-566)) (-566))))
-((-4025 (((-566)) 23)) (-1590 (((-566)) 28)) (-4217 (((-1269) (-566)) 26)) (-1883 (((-566) (-566)) 29) (((-566)) 22)))
-(((-1006) (-10 -7 (-15 -1883 ((-566))) (-15 -4025 ((-566))) (-15 -1883 ((-566) (-566))) (-15 -4217 ((-1269) (-566))) (-15 -1590 ((-566))))) (T -1006))
-((-1590 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))) (-4217 (*1 *2 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1006)))) (-1883 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))) (-4025 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))) (-1883 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))))
-(-10 -7 (-15 -1883 ((-566))) (-15 -4025 ((-566))) (-15 -1883 ((-566) (-566))) (-15 -4217 ((-1269) (-566))) (-15 -1590 ((-566))))
-((-2085 (((-420 |#1|) |#1|) 43)) (-2391 (((-420 |#1|) |#1|) 41)))
-(((-1007 |#1|) (-10 -7 (-15 -2391 ((-420 |#1|) |#1|)) (-15 -2085 ((-420 |#1|) |#1|))) (-1240 (-409 (-566)))) (T -1007))
-((-2085 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-1007 *3)) (-4 *3 (-1240 (-409 (-566)))))) (-2391 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-1007 *3)) (-4 *3 (-1240 (-409 (-566)))))))
-(-10 -7 (-15 -2391 ((-420 |#1|) |#1|)) (-15 -2085 ((-420 |#1|) |#1|)))
-((-3800 (((-3 (-409 (-566)) "failed") |#1|) 15)) (-3717 (((-112) |#1|) 14)) (-3370 (((-409 (-566)) |#1|) 10)))
-(((-1008 |#1|) (-10 -7 (-15 -3370 ((-409 (-566)) |#1|)) (-15 -3717 ((-112) |#1|)) (-15 -3800 ((-3 (-409 (-566)) "failed") |#1|))) (-1038 (-409 (-566)))) (T -1008))
-((-3800 (*1 *2 *3) (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-1008 *3)) (-4 *3 (-1038 *2)))) (-3717 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1008 *3)) (-4 *3 (-1038 (-409 (-566)))))) (-3370 (*1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1008 *3)) (-4 *3 (-1038 *2)))))
-(-10 -7 (-15 -3370 ((-409 (-566)) |#1|)) (-15 -3717 ((-112) |#1|)) (-15 -3800 ((-3 (-409 (-566)) "failed") |#1|)))
-((-3874 ((|#2| $ "value" |#2|) 12)) (-4386 ((|#2| $ "value") 10)) (-2105 (((-112) $ $) 18)))
-(((-1009 |#1| |#2|) (-10 -8 (-15 -3874 (|#2| |#1| "value" |#2|)) (-15 -2105 ((-112) |#1| |#1|)) (-15 -4386 (|#2| |#1| "value"))) (-1010 |#2|) (-1214)) (T -1009))
-NIL
-(-10 -8 (-15 -3874 (|#2| |#1| "value" |#2|)) (-15 -2105 ((-112) |#1| |#1|)) (-15 -4386 (|#2| |#1| "value")))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2212 ((|#1| $) 49)) (-3081 (((-112) $ (-771)) 8)) (-3087 ((|#1| $ |#1|) 40 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 42 (|has| $ (-6 -4418)))) (-2342 (($) 7 T CONST)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) 51)) (-4129 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2996 (((-644 |#1|) $) 46)) (-2783 (((-112) $) 50)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ "value") 48)) (-1442 (((-566) $ $) 45)) (-1313 (((-112) $) 47)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) 52)) (-2105 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2341 (((-644 (-566)) $) 73)) (-1560 (($ (-644 (-566))) 81)) (-2486 (((-566) $) 48 (|has| (-566) (-308)))) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL (|has| (-566) (-820)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) 60) (((-3 (-1175) "failed") $) NIL (|has| (-566) (-1038 (-1175)))) (((-3 (-409 (-566)) "failed") $) 57 (|has| (-566) (-1038 (-566)))) (((-3 (-566) "failed") $) 60 (|has| (-566) (-1038 (-566))))) (-1867 (((-566) $) NIL) (((-1175) $) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) NIL (|has| (-566) (-1038 (-566)))) (((-566) $) NIL (|has| (-566) (-1038 (-566))))) (-2949 (($ $ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| (-566) (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-1618 (($) NIL (|has| (-566) (-547)))) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-3193 (((-644 (-566)) $) 79)) (-1533 (((-112) $) NIL (|has| (-566) (-820)))) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (|has| (-566) (-886 (-566)))) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (|has| (-566) (-886 (-381))))) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL)) (-3088 (((-566) $) 45)) (-2133 (((-3 $ "failed") $) NIL (|has| (-566) (-1150)))) (-2917 (((-112) $) NIL (|has| (-566) (-820)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| (-566) (-850)))) (-3152 (($ (-1 (-566) (-566)) $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL)) (-3625 (($) NIL (|has| (-566) (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2539 (($ $) NIL (|has| (-566) (-308))) (((-409 (-566)) $) 50)) (-3345 (((-1155 (-566)) $) 78)) (-2249 (($ (-644 (-566)) (-644 (-566))) 82)) (-2209 (((-566) $) 64 (|has| (-566) (-547)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| (-566) (-909)))) (-2473 (((-420 $) $) NIL)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2095 (($ $ (-644 (-566)) (-644 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-566) (-566)) NIL (|has| (-566) (-310 (-566)))) (($ $ (-295 (-566))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-295 (-566)))) NIL (|has| (-566) (-310 (-566)))) (($ $ (-644 (-1175)) (-644 (-566))) NIL (|has| (-566) (-516 (-1175) (-566)))) (($ $ (-1175) (-566)) NIL (|has| (-566) (-516 (-1175) (-566))))) (-3470 (((-771) $) NIL)) (-4393 (($ $ (-566)) NIL (|has| (-566) (-287 (-566) (-566))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $) 15 (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-1431 (($ $) NIL)) (-3100 (((-566) $) 47)) (-1537 (((-644 (-566)) $) 80)) (-3204 (((-892 (-566)) $) NIL (|has| (-566) (-614 (-892 (-566))))) (((-892 (-381)) $) NIL (|has| (-566) (-614 (-892 (-381))))) (((-538) $) NIL (|has| (-566) (-614 (-538)))) (((-381) $) NIL (|has| (-566) (-1022))) (((-225) $) NIL (|has| (-566) (-1022)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-566) (-909))))) (-3780 (((-862) $) 107) (($ (-566)) 51) (($ $) NIL) (($ (-409 (-566))) 27) (($ (-566)) 51) (($ (-1175)) NIL (|has| (-566) (-1038 (-1175)))) (((-409 (-566)) $) 25)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-566) (-909))) (|has| (-566) (-145))))) (-3996 (((-771)) 13 T CONST)) (-1982 (((-566) $) 62 (|has| (-566) (-547)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3333 (($ $) NIL (|has| (-566) (-820)))) (-2493 (($) 14 T CONST)) (-4333 (($) 17 T CONST)) (-2876 (($ $) NIL (|has| (-566) (-233))) (($ $ (-771)) NIL (|has| (-566) (-233))) (($ $ (-1175)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| (-566) (-900 (-1175)))) (($ $ (-1 (-566) (-566)) (-771)) NIL) (($ $ (-1 (-566) (-566))) NIL)) (-3010 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2950 (((-112) $ $) 21)) (-2999 (((-112) $ $) NIL (|has| (-566) (-850)))) (-2972 (((-112) $ $) 40 (|has| (-566) (-850)))) (-3062 (($ $ $) 36) (($ (-566) (-566)) 38)) (-3051 (($ $) 23) (($ $ $) 30)) (-3040 (($ $ $) 28)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 32) (($ $ $) 34) (($ $ (-409 (-566))) NIL) (($ (-409 (-566)) $) NIL) (($ (-566) $) 32) (($ $ (-566)) NIL)))
+(((-1004 |#1|) (-13 (-992 (-566)) (-613 (-409 (-566))) (-10 -8 (-15 -2539 ((-409 (-566)) $)) (-15 -2341 ((-644 (-566)) $)) (-15 -3345 ((-1155 (-566)) $)) (-15 -3193 ((-644 (-566)) $)) (-15 -1537 ((-644 (-566)) $)) (-15 -1560 ($ (-644 (-566)))) (-15 -2249 ($ (-644 (-566)) (-644 (-566)))))) (-566)) (T -1004))
+((-2539 (*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-2341 (*1 *2 *1) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-3345 (*1 *2 *1) (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-3193 (*1 *2 *1) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-1537 (*1 *2 *1) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-1560 (*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))) (-2249 (*1 *1 *2 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
+(-13 (-992 (-566)) (-613 (-409 (-566))) (-10 -8 (-15 -2539 ((-409 (-566)) $)) (-15 -2341 ((-644 (-566)) $)) (-15 -3345 ((-1155 (-566)) $)) (-15 -3193 ((-644 (-566)) $)) (-15 -1537 ((-644 (-566)) $)) (-15 -1560 ($ (-644 (-566)))) (-15 -2249 ($ (-644 (-566)) (-644 (-566))))))
+((-3328 (((-52) (-409 (-566)) (-566)) 9)))
+(((-1005) (-10 -7 (-15 -3328 ((-52) (-409 (-566)) (-566))))) (T -1005))
+((-3328 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-566))) (-5 *4 (-566)) (-5 *2 (-52)) (-5 *1 (-1005)))))
+(-10 -7 (-15 -3328 ((-52) (-409 (-566)) (-566))))
+((-4070 (((-566)) 23)) (-1849 (((-566)) 28)) (-3690 (((-1269) (-566)) 26)) (-2945 (((-566) (-566)) 29) (((-566)) 22)))
+(((-1006) (-10 -7 (-15 -2945 ((-566))) (-15 -4070 ((-566))) (-15 -2945 ((-566) (-566))) (-15 -3690 ((-1269) (-566))) (-15 -1849 ((-566))))) (T -1006))
+((-1849 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))) (-3690 (*1 *2 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1006)))) (-2945 (*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))) (-4070 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))) (-2945 (*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))))
+(-10 -7 (-15 -2945 ((-566))) (-15 -4070 ((-566))) (-15 -2945 ((-566) (-566))) (-15 -3690 ((-1269) (-566))) (-15 -1849 ((-566))))
+((-3173 (((-420 |#1|) |#1|) 43)) (-2473 (((-420 |#1|) |#1|) 41)))
+(((-1007 |#1|) (-10 -7 (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3173 ((-420 |#1|) |#1|))) (-1240 (-409 (-566)))) (T -1007))
+((-3173 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-1007 *3)) (-4 *3 (-1240 (-409 (-566)))))) (-2473 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-1007 *3)) (-4 *3 (-1240 (-409 (-566)))))))
+(-10 -7 (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3173 ((-420 |#1|) |#1|)))
+((-4045 (((-3 (-409 (-566)) "failed") |#1|) 15)) (-1356 (((-112) |#1|) 14)) (-2269 (((-409 (-566)) |#1|) 10)))
+(((-1008 |#1|) (-10 -7 (-15 -2269 ((-409 (-566)) |#1|)) (-15 -1356 ((-112) |#1|)) (-15 -4045 ((-3 (-409 (-566)) "failed") |#1|))) (-1038 (-409 (-566)))) (T -1008))
+((-4045 (*1 *2 *3) (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-1008 *3)) (-4 *3 (-1038 *2)))) (-1356 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1008 *3)) (-4 *3 (-1038 (-409 (-566)))))) (-2269 (*1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1008 *3)) (-4 *3 (-1038 *2)))))
+(-10 -7 (-15 -2269 ((-409 (-566)) |#1|)) (-15 -1356 ((-112) |#1|)) (-15 -4045 ((-3 (-409 (-566)) "failed") |#1|)))
+((-3916 ((|#2| $ "value" |#2|) 12)) (-4393 ((|#2| $ "value") 10)) (-3381 (((-112) $ $) 18)))
+(((-1009 |#1| |#2|) (-10 -8 (-15 -3916 (|#2| |#1| "value" |#2|)) (-15 -3381 ((-112) |#1| |#1|)) (-15 -4393 (|#2| |#1| "value"))) (-1010 |#2|) (-1214)) (T -1009))
+NIL
+(-10 -8 (-15 -3916 (|#2| |#1| "value" |#2|)) (-15 -3381 ((-112) |#1| |#1|)) (-15 -4393 (|#2| |#1| "value")))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2252 ((|#1| $) 49)) (-1574 (((-112) $ (-771)) 8)) (-1637 ((|#1| $ |#1|) 40 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 42 (|has| $ (-6 -4415)))) (-3877 (($) 7 T CONST)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) 51)) (-4050 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-3318 (((-644 |#1|) $) 46)) (-2675 (((-112) $) 50)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ "value") 48)) (-3969 (((-566) $ $) 45)) (-1638 (((-112) $) 47)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) 52)) (-3381 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-1010 |#1|) (-140) (-1214)) (T -1010))
-((-1448 (*1 *2 *1) (-12 (-4 *3 (-1214)) (-5 *2 (-644 *1)) (-4 *1 (-1010 *3)))) (-2286 (*1 *2 *1) (-12 (-4 *3 (-1214)) (-5 *2 (-644 *1)) (-4 *1 (-1010 *3)))) (-2783 (*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-2212 (*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1214)))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-1010 *2)) (-4 *2 (-1214)))) (-1313 (*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-2996 (*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-644 *3)))) (-1442 (*1 *2 *1 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-566)))) (-2105 (*1 *2 *1 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-4129 (*1 *2 *1 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-1709 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *1)) (|has| *1 (-6 -4418)) (-4 *1 (-1010 *3)) (-4 *3 (-1214)))) (-3874 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4418)) (-4 *1 (-1010 *2)) (-4 *2 (-1214)))) (-3087 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1010 *2)) (-4 *2 (-1214)))))
-(-13 (-491 |t#1|) (-10 -8 (-15 -1448 ((-644 $) $)) (-15 -2286 ((-644 $) $)) (-15 -2783 ((-112) $)) (-15 -2212 (|t#1| $)) (-15 -4386 (|t#1| $ "value")) (-15 -1313 ((-112) $)) (-15 -2996 ((-644 |t#1|) $)) (-15 -1442 ((-566) $ $)) (IF (|has| |t#1| (-1099)) (PROGN (-15 -2105 ((-112) $ $)) (-15 -4129 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4418)) (PROGN (-15 -1709 ($ $ (-644 $))) (-15 -3874 (|t#1| $ "value" |t#1|)) (-15 -3087 (|t#1| $ |t#1|))) |%noBranch|)))
+((-4041 (*1 *2 *1) (-12 (-4 *3 (-1214)) (-5 *2 (-644 *1)) (-4 *1 (-1010 *3)))) (-1432 (*1 *2 *1) (-12 (-4 *3 (-1214)) (-5 *2 (-644 *1)) (-4 *1 (-1010 *3)))) (-2675 (*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-2252 (*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1214)))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-1010 *2)) (-4 *2 (-1214)))) (-1638 (*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-3318 (*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-644 *3)))) (-3969 (*1 *2 *1 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-566)))) (-3381 (*1 *2 *1 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-4050 (*1 *2 *1 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-3668 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *1)) (|has| *1 (-6 -4415)) (-4 *1 (-1010 *3)) (-4 *3 (-1214)))) (-3916 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4415)) (-4 *1 (-1010 *2)) (-4 *2 (-1214)))) (-1637 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1010 *2)) (-4 *2 (-1214)))))
+(-13 (-491 |t#1|) (-10 -8 (-15 -4041 ((-644 $) $)) (-15 -1432 ((-644 $) $)) (-15 -2675 ((-112) $)) (-15 -2252 (|t#1| $)) (-15 -4393 (|t#1| $ "value")) (-15 -1638 ((-112) $)) (-15 -3318 ((-644 |t#1|) $)) (-15 -3969 ((-566) $ $)) (IF (|has| |t#1| (-1099)) (PROGN (-15 -3381 ((-112) $ $)) (-15 -4050 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4415)) (PROGN (-15 -3668 ($ $ (-644 $))) (-15 -3916 (|t#1| $ "value" |t#1|)) (-15 -1637 (|t#1| $ |t#1|))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-2402 (($ $) 9) (($ $ (-921)) 49) (($ (-409 (-566))) 13) (($ (-566)) 15)) (-2170 (((-3 $ "failed") (-1171 $) (-921) (-862)) 24) (((-3 $ "failed") (-1171 $) (-921)) 32)) (-3979 (($ $ (-566)) 58)) (-3795 (((-771)) 18)) (-3293 (((-644 $) (-1171 $)) NIL) (((-644 $) (-1171 (-409 (-566)))) 63) (((-644 $) (-1171 (-566))) 68) (((-644 $) (-952 $)) 72) (((-644 $) (-952 (-409 (-566)))) 76) (((-644 $) (-952 (-566))) 80)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL) (($ $ (-409 (-566))) 53)))
-(((-1011 |#1|) (-10 -8 (-15 -2402 (|#1| (-566))) (-15 -2402 (|#1| (-409 (-566)))) (-15 -2402 (|#1| |#1| (-921))) (-15 -3293 ((-644 |#1|) (-952 (-566)))) (-15 -3293 ((-644 |#1|) (-952 (-409 (-566))))) (-15 -3293 ((-644 |#1|) (-952 |#1|))) (-15 -3293 ((-644 |#1|) (-1171 (-566)))) (-15 -3293 ((-644 |#1|) (-1171 (-409 (-566))))) (-15 -3293 ((-644 |#1|) (-1171 |#1|))) (-15 -2170 ((-3 |#1| "failed") (-1171 |#1|) (-921))) (-15 -2170 ((-3 |#1| "failed") (-1171 |#1|) (-921) (-862))) (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -3979 (|#1| |#1| (-566))) (-15 -2402 (|#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3795 ((-771))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921)))) (-1012)) (T -1011))
-((-3795 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1011 *3)) (-4 *3 (-1012)))))
-(-10 -8 (-15 -2402 (|#1| (-566))) (-15 -2402 (|#1| (-409 (-566)))) (-15 -2402 (|#1| |#1| (-921))) (-15 -3293 ((-644 |#1|) (-952 (-566)))) (-15 -3293 ((-644 |#1|) (-952 (-409 (-566))))) (-15 -3293 ((-644 |#1|) (-952 |#1|))) (-15 -3293 ((-644 |#1|) (-1171 (-566)))) (-15 -3293 ((-644 |#1|) (-1171 (-409 (-566))))) (-15 -3293 ((-644 |#1|) (-1171 |#1|))) (-15 -2170 ((-3 |#1| "failed") (-1171 |#1|) (-921))) (-15 -2170 ((-3 |#1| "failed") (-1171 |#1|) (-921) (-862))) (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -3979 (|#1| |#1| (-566))) (-15 -2402 (|#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3795 ((-771))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 102)) (-3653 (($ $) 103)) (-2152 (((-112) $) 105)) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 122)) (-1370 (((-420 $) $) 123)) (-2402 (($ $) 86) (($ $ (-921)) 72) (($ (-409 (-566))) 71) (($ (-566)) 70)) (-1561 (((-112) $ $) 113)) (-2807 (((-566) $) 139)) (-2342 (($) 18 T CONST)) (-2170 (((-3 $ "failed") (-1171 $) (-921) (-862)) 80) (((-3 $ "failed") (-1171 $) (-921)) 79)) (-2977 (((-3 (-566) "failed") $) 99 (|has| (-409 (-566)) (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 97 (|has| (-409 (-566)) (-1038 (-409 (-566))))) (((-3 (-409 (-566)) "failed") $) 94)) (-1756 (((-566) $) 98 (|has| (-409 (-566)) (-1038 (-566)))) (((-409 (-566)) $) 96 (|has| (-409 (-566)) (-1038 (-409 (-566))))) (((-409 (-566)) $) 95)) (-3343 (($ $ (-862)) 69)) (-3660 (($ $ (-862)) 68)) (-2926 (($ $ $) 117)) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 116)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 111)) (-2635 (((-112) $) 124)) (-1684 (((-112) $) 137)) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 85)) (-1578 (((-112) $) 138)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 120)) (-1439 (($ $ $) 136)) (-3059 (($ $ $) 135)) (-2665 (((-3 (-1171 $) "failed") $) 81)) (-3702 (((-3 (-862) "failed") $) 83)) (-3016 (((-3 (-1171 $) "failed") $) 82)) (-2184 (($ (-644 $)) 109) (($ $ $) 108)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 125)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 110)) (-2222 (($ (-644 $)) 107) (($ $ $) 106)) (-2391 (((-420 $) $) 121)) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 118)) (-2972 (((-3 $ "failed") $ $) 101)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 112)) (-1813 (((-771) $) 114)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 115)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 129) (($ $) 100) (($ (-409 (-566))) 93) (($ (-566)) 92) (($ (-409 (-566))) 89)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 104)) (-3645 (((-409 (-566)) $ $) 67)) (-3293 (((-644 $) (-1171 $)) 78) (((-644 $) (-1171 (-409 (-566)))) 77) (((-644 $) (-1171 (-566))) 76) (((-644 $) (-952 $)) 75) (((-644 $) (-952 (-409 (-566)))) 74) (((-644 $) (-952 (-566))) 73)) (-1346 (($ $) 140)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2998 (((-112) $ $) 133)) (-2974 (((-112) $ $) 132)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 134)) (-2962 (((-112) $ $) 131)) (-3061 (($ $ $) 130)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 126) (($ $ (-409 (-566))) 84)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ (-409 (-566)) $) 128) (($ $ (-409 (-566))) 127) (($ (-566) $) 91) (($ $ (-566)) 90) (($ (-409 (-566)) $) 88) (($ $ (-409 (-566))) 87)))
+((-2484 (($ $) 9) (($ $ (-921)) 49) (($ (-409 (-566))) 13) (($ (-566)) 15)) (-2778 (((-3 $ "failed") (-1171 $) (-921) (-862)) 24) (((-3 $ "failed") (-1171 $) (-921)) 32)) (-1986 (($ $ (-566)) 58)) (-3996 (((-771)) 18)) (-2798 (((-644 $) (-1171 $)) NIL) (((-644 $) (-1171 (-409 (-566)))) 63) (((-644 $) (-1171 (-566))) 68) (((-644 $) (-952 $)) 72) (((-644 $) (-952 (-409 (-566)))) 76) (((-644 $) (-952 (-566))) 80)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL) (($ $ (-409 (-566))) 53)))
+(((-1011 |#1|) (-10 -8 (-15 -2484 (|#1| (-566))) (-15 -2484 (|#1| (-409 (-566)))) (-15 -2484 (|#1| |#1| (-921))) (-15 -2798 ((-644 |#1|) (-952 (-566)))) (-15 -2798 ((-644 |#1|) (-952 (-409 (-566))))) (-15 -2798 ((-644 |#1|) (-952 |#1|))) (-15 -2798 ((-644 |#1|) (-1171 (-566)))) (-15 -2798 ((-644 |#1|) (-1171 (-409 (-566))))) (-15 -2798 ((-644 |#1|) (-1171 |#1|))) (-15 -2778 ((-3 |#1| "failed") (-1171 |#1|) (-921))) (-15 -2778 ((-3 |#1| "failed") (-1171 |#1|) (-921) (-862))) (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -1986 (|#1| |#1| (-566))) (-15 -2484 (|#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3996 ((-771))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921)))) (-1012)) (T -1011))
+((-3996 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1011 *3)) (-4 *3 (-1012)))))
+(-10 -8 (-15 -2484 (|#1| (-566))) (-15 -2484 (|#1| (-409 (-566)))) (-15 -2484 (|#1| |#1| (-921))) (-15 -2798 ((-644 |#1|) (-952 (-566)))) (-15 -2798 ((-644 |#1|) (-952 (-409 (-566))))) (-15 -2798 ((-644 |#1|) (-952 |#1|))) (-15 -2798 ((-644 |#1|) (-1171 (-566)))) (-15 -2798 ((-644 |#1|) (-1171 (-409 (-566))))) (-15 -2798 ((-644 |#1|) (-1171 |#1|))) (-15 -2778 ((-3 |#1| "failed") (-1171 |#1|) (-921))) (-15 -2778 ((-3 |#1| "failed") (-1171 |#1|) (-921) (-862))) (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -1986 (|#1| |#1| (-566))) (-15 -2484 (|#1| |#1|)) (-15 ** (|#1| |#1| (-566))) (-15 -3996 ((-771))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 102)) (-1968 (($ $) 103)) (-2644 (((-112) $) 105)) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 122)) (-3271 (((-420 $) $) 123)) (-2484 (($ $) 86) (($ $ (-921)) 72) (($ (-409 (-566))) 71) (($ (-566)) 70)) (-2738 (((-112) $ $) 113)) (-2899 (((-566) $) 139)) (-3877 (($) 18 T CONST)) (-2778 (((-3 $ "failed") (-1171 $) (-921) (-862)) 80) (((-3 $ "failed") (-1171 $) (-921)) 79)) (-3066 (((-3 (-566) "failed") $) 99 (|has| (-409 (-566)) (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 97 (|has| (-409 (-566)) (-1038 (-409 (-566))))) (((-3 (-409 (-566)) "failed") $) 94)) (-1867 (((-566) $) 98 (|has| (-409 (-566)) (-1038 (-566)))) (((-409 (-566)) $) 96 (|has| (-409 (-566)) (-1038 (-409 (-566))))) (((-409 (-566)) $) 95)) (-2018 (($ $ (-862)) 69)) (-2035 (($ $ (-862)) 68)) (-2949 (($ $ $) 117)) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 116)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 111)) (-1784 (((-112) $) 124)) (-1533 (((-112) $) 137)) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 85)) (-2917 (((-112) $) 138)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 120)) (-1945 (($ $ $) 136)) (-2709 (($ $ $) 135)) (-3925 (((-3 (-1171 $) "failed") $) 81)) (-4297 (((-3 (-862) "failed") $) 83)) (-2274 (((-3 (-1171 $) "failed") $) 82)) (-2197 (($ (-644 $)) 109) (($ $ $) 108)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 125)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 110)) (-2235 (($ (-644 $)) 107) (($ $ $) 106)) (-2473 (((-420 $) $) 121)) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 118)) (-2997 (((-3 $ "failed") $ $) 101)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 112)) (-3470 (((-771) $) 114)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 115)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 129) (($ $) 100) (($ (-409 (-566))) 93) (($ (-566)) 92) (($ (-409 (-566))) 89)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 104)) (-3651 (((-409 (-566)) $ $) 67)) (-2798 (((-644 $) (-1171 $)) 78) (((-644 $) (-1171 (-409 (-566)))) 77) (((-644 $) (-1171 (-566))) 76) (((-644 $) (-952 $)) 75) (((-644 $) (-952 (-409 (-566)))) 74) (((-644 $) (-952 (-566))) 73)) (-3333 (($ $) 140)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-3010 (((-112) $ $) 133)) (-2984 (((-112) $ $) 132)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 134)) (-2972 (((-112) $ $) 131)) (-3062 (($ $ $) 130)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 126) (($ $ (-409 (-566))) 84)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ (-409 (-566)) $) 128) (($ $ (-409 (-566))) 127) (($ (-566) $) 91) (($ $ (-566)) 90) (($ (-409 (-566)) $) 88) (($ $ (-409 (-566))) 87)))
(((-1012) (-140)) (T -1012))
-((-2402 (*1 *1 *1) (-4 *1 (-1012))) (-3702 (*1 *2 *1) (|partial| -12 (-4 *1 (-1012)) (-5 *2 (-862)))) (-3016 (*1 *2 *1) (|partial| -12 (-5 *2 (-1171 *1)) (-4 *1 (-1012)))) (-2665 (*1 *2 *1) (|partial| -12 (-5 *2 (-1171 *1)) (-4 *1 (-1012)))) (-2170 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1171 *1)) (-5 *3 (-921)) (-5 *4 (-862)) (-4 *1 (-1012)))) (-2170 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1171 *1)) (-5 *3 (-921)) (-4 *1 (-1012)))) (-3293 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-1012)) (-5 *2 (-644 *1)))) (-3293 (*1 *2 *3) (-12 (-5 *3 (-1171 (-409 (-566)))) (-5 *2 (-644 *1)) (-4 *1 (-1012)))) (-3293 (*1 *2 *3) (-12 (-5 *3 (-1171 (-566))) (-5 *2 (-644 *1)) (-4 *1 (-1012)))) (-3293 (*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-1012)) (-5 *2 (-644 *1)))) (-3293 (*1 *2 *3) (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *2 (-644 *1)) (-4 *1 (-1012)))) (-3293 (*1 *2 *3) (-12 (-5 *3 (-952 (-566))) (-5 *2 (-644 *1)) (-4 *1 (-1012)))) (-2402 (*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-921)))) (-2402 (*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-4 *1 (-1012)))) (-2402 (*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1012)))) (-3343 (*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-862)))) (-3660 (*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-862)))) (-3645 (*1 *2 *1 *1) (-12 (-4 *1 (-1012)) (-5 *2 (-409 (-566))))))
-(-13 (-147) (-848) (-172) (-365) (-413 (-409 (-566))) (-38 (-566)) (-38 (-409 (-566))) (-1002) (-10 -8 (-15 -3702 ((-3 (-862) "failed") $)) (-15 -3016 ((-3 (-1171 $) "failed") $)) (-15 -2665 ((-3 (-1171 $) "failed") $)) (-15 -2170 ((-3 $ "failed") (-1171 $) (-921) (-862))) (-15 -2170 ((-3 $ "failed") (-1171 $) (-921))) (-15 -3293 ((-644 $) (-1171 $))) (-15 -3293 ((-644 $) (-1171 (-409 (-566))))) (-15 -3293 ((-644 $) (-1171 (-566)))) (-15 -3293 ((-644 $) (-952 $))) (-15 -3293 ((-644 $) (-952 (-409 (-566))))) (-15 -3293 ((-644 $) (-952 (-566)))) (-15 -2402 ($ $ (-921))) (-15 -2402 ($ $)) (-15 -2402 ($ (-409 (-566)))) (-15 -2402 ($ (-566))) (-15 -3343 ($ $ (-862))) (-15 -3660 ($ $ (-862))) (-15 -3645 ((-409 (-566)) $ $))))
+((-2484 (*1 *1 *1) (-4 *1 (-1012))) (-4297 (*1 *2 *1) (|partial| -12 (-4 *1 (-1012)) (-5 *2 (-862)))) (-2274 (*1 *2 *1) (|partial| -12 (-5 *2 (-1171 *1)) (-4 *1 (-1012)))) (-3925 (*1 *2 *1) (|partial| -12 (-5 *2 (-1171 *1)) (-4 *1 (-1012)))) (-2778 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1171 *1)) (-5 *3 (-921)) (-5 *4 (-862)) (-4 *1 (-1012)))) (-2778 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1171 *1)) (-5 *3 (-921)) (-4 *1 (-1012)))) (-2798 (*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-1012)) (-5 *2 (-644 *1)))) (-2798 (*1 *2 *3) (-12 (-5 *3 (-1171 (-409 (-566)))) (-5 *2 (-644 *1)) (-4 *1 (-1012)))) (-2798 (*1 *2 *3) (-12 (-5 *3 (-1171 (-566))) (-5 *2 (-644 *1)) (-4 *1 (-1012)))) (-2798 (*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-1012)) (-5 *2 (-644 *1)))) (-2798 (*1 *2 *3) (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *2 (-644 *1)) (-4 *1 (-1012)))) (-2798 (*1 *2 *3) (-12 (-5 *3 (-952 (-566))) (-5 *2 (-644 *1)) (-4 *1 (-1012)))) (-2484 (*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-921)))) (-2484 (*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-4 *1 (-1012)))) (-2484 (*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1012)))) (-2018 (*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-862)))) (-2035 (*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-862)))) (-3651 (*1 *2 *1 *1) (-12 (-4 *1 (-1012)) (-5 *2 (-409 (-566))))))
+(-13 (-147) (-848) (-172) (-365) (-413 (-409 (-566))) (-38 (-566)) (-38 (-409 (-566))) (-1002) (-10 -8 (-15 -4297 ((-3 (-862) "failed") $)) (-15 -2274 ((-3 (-1171 $) "failed") $)) (-15 -3925 ((-3 (-1171 $) "failed") $)) (-15 -2778 ((-3 $ "failed") (-1171 $) (-921) (-862))) (-15 -2778 ((-3 $ "failed") (-1171 $) (-921))) (-15 -2798 ((-644 $) (-1171 $))) (-15 -2798 ((-644 $) (-1171 (-409 (-566))))) (-15 -2798 ((-644 $) (-1171 (-566)))) (-15 -2798 ((-644 $) (-952 $))) (-15 -2798 ((-644 $) (-952 (-409 (-566))))) (-15 -2798 ((-644 $) (-952 (-566)))) (-15 -2484 ($ $ (-921))) (-15 -2484 ($ $)) (-15 -2484 ($ (-409 (-566)))) (-15 -2484 ($ (-566))) (-15 -2018 ($ $ (-862))) (-15 -2035 ($ $ (-862))) (-15 -3651 ((-409 (-566)) $ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 #1=(-566)) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-131) . T) ((-147) . T) ((-616 #0#) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-243) . T) ((-291) . T) ((-308) . T) ((-365) . T) ((-413 (-409 (-566))) . T) ((-454) . T) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 #1#) . T) ((-648 $) . T) ((-640 #0#) . T) ((-640 #1#) . T) ((-640 $) . T) ((-717 #0#) . T) ((-717 #1#) . T) ((-717 $) . T) ((-726) . T) ((-791) . T) ((-792) . T) ((-794) . T) ((-795) . T) ((-848) . T) ((-850) . T) ((-920) . T) ((-1002) . T) ((-1038 (-409 (-566))) . T) ((-1038 (-566)) |has| (-409 (-566)) (-1038 (-566))) ((-1051 #0#) . T) ((-1051 #1#) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 #1#) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) . T))
-((-2124 (((-2 (|:| |ans| |#2|) (|:| -4368 |#2|) (|:| |sol?| (-112))) (-566) |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 67)))
-(((-1013 |#1| |#2|) (-10 -7 (-15 -2124 ((-2 (|:| |ans| |#2|) (|:| -4368 |#2|) (|:| |sol?| (-112))) (-566) |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-27) (-432 |#1|))) (T -1013))
-((-2124 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1175)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-644 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2806 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1199) (-27) (-432 *8))) (-4 *8 (-13 (-454) (-147) (-1038 *3) (-639 *3))) (-5 *3 (-566)) (-5 *2 (-2 (|:| |ans| *4) (|:| -4368 *4) (|:| |sol?| (-112)))) (-5 *1 (-1013 *8 *4)))))
-(-10 -7 (-15 -2124 ((-2 (|:| |ans| |#2|) (|:| -4368 |#2|) (|:| |sol?| (-112))) (-566) |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-2381 (((-3 (-644 |#2|) "failed") (-566) |#2| |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 55)))
-(((-1014 |#1| |#2|) (-10 -7 (-15 -2381 ((-3 (-644 |#2|) "failed") (-566) |#2| |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-27) (-432 |#1|))) (T -1014))
-((-2381 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1175)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-644 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2806 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1199) (-27) (-432 *8))) (-4 *8 (-13 (-454) (-147) (-1038 *3) (-639 *3))) (-5 *3 (-566)) (-5 *2 (-644 *4)) (-5 *1 (-1014 *8 *4)))))
-(-10 -7 (-15 -2381 ((-3 (-644 |#2|) "failed") (-566) |#2| |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2806 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-2989 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -3525 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-566)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-566) (-1 |#2| |#2|)) 41)) (-2580 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |c| (-409 |#2|)) (|:| -1454 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|)) 71)) (-1303 (((-2 (|:| |ans| (-409 |#2|)) (|:| |nosol| (-112))) (-409 |#2|) (-409 |#2|)) 76)))
-(((-1015 |#1| |#2|) (-10 -7 (-15 -2580 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |c| (-409 |#2|)) (|:| -1454 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|))) (-15 -1303 ((-2 (|:| |ans| (-409 |#2|)) (|:| |nosol| (-112))) (-409 |#2|) (-409 |#2|))) (-15 -2989 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -3525 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-566)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-566) (-1 |#2| |#2|)))) (-13 (-365) (-147) (-1038 (-566))) (-1240 |#1|)) (T -1015))
-((-2989 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1240 *6)) (-4 *6 (-13 (-365) (-147) (-1038 *4))) (-5 *4 (-566)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112)))) (|:| -3525 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-1015 *6 *3)))) (-1303 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-566)))) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| |ans| (-409 *5)) (|:| |nosol| (-112)))) (-5 *1 (-1015 *4 *5)) (-5 *3 (-409 *5)))) (-2580 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-409 *6)) (|:| |c| (-409 *6)) (|:| -1454 *6))) (-5 *1 (-1015 *5 *6)) (-5 *3 (-409 *6)))))
-(-10 -7 (-15 -2580 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |c| (-409 |#2|)) (|:| -1454 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|))) (-15 -1303 ((-2 (|:| |ans| (-409 |#2|)) (|:| |nosol| (-112))) (-409 |#2|) (-409 |#2|))) (-15 -2989 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -3525 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-566)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-566) (-1 |#2| |#2|))))
-((-3364 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |h| |#2|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| -1454 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|)) 22)) (-3208 (((-3 (-644 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|)) 34)))
-(((-1016 |#1| |#2|) (-10 -7 (-15 -3364 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |h| |#2|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| -1454 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|))) (-15 -3208 ((-3 (-644 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|)))) (-13 (-365) (-147) (-1038 (-566))) (-1240 |#1|)) (T -1016))
-((-3208 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-365) (-147) (-1038 (-566)))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-409 *5))) (-5 *1 (-1016 *4 *5)) (-5 *3 (-409 *5)))) (-3364 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-409 *6)) (|:| |h| *6) (|:| |c1| (-409 *6)) (|:| |c2| (-409 *6)) (|:| -1454 *6))) (-5 *1 (-1016 *5 *6)) (-5 *3 (-409 *6)))))
-(-10 -7 (-15 -3364 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |h| |#2|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| -1454 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|))) (-15 -3208 ((-3 (-644 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|))))
-((-4148 (((-1 |#1|) (-644 (-2 (|:| -2212 |#1|) (|:| -3467 (-566))))) 37)) (-4197 (((-1 |#1|) (-1101 |#1|)) 45)) (-1858 (((-1 |#1|) (-1264 |#1|) (-1264 (-566)) (-566)) 34)))
-(((-1017 |#1|) (-10 -7 (-15 -4197 ((-1 |#1|) (-1101 |#1|))) (-15 -4148 ((-1 |#1|) (-644 (-2 (|:| -2212 |#1|) (|:| -3467 (-566)))))) (-15 -1858 ((-1 |#1|) (-1264 |#1|) (-1264 (-566)) (-566)))) (-1099)) (T -1017))
-((-1858 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1264 *6)) (-5 *4 (-1264 (-566))) (-5 *5 (-566)) (-4 *6 (-1099)) (-5 *2 (-1 *6)) (-5 *1 (-1017 *6)))) (-4148 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -2212 *4) (|:| -3467 (-566))))) (-4 *4 (-1099)) (-5 *2 (-1 *4)) (-5 *1 (-1017 *4)))) (-4197 (*1 *2 *3) (-12 (-5 *3 (-1101 *4)) (-4 *4 (-1099)) (-5 *2 (-1 *4)) (-5 *1 (-1017 *4)))))
-(-10 -7 (-15 -4197 ((-1 |#1|) (-1101 |#1|))) (-15 -4148 ((-1 |#1|) (-644 (-2 (|:| -2212 |#1|) (|:| -3467 (-566)))))) (-15 -1858 ((-1 |#1|) (-1264 |#1|) (-1264 (-566)) (-566))))
-((-2716 (((-771) (-338 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
-(((-1018 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2716 ((-771) (-338 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|) (-13 (-370) (-365))) (T -1018))
-((-2716 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-338 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-4 *4 (-1240 (-409 *7))) (-4 *8 (-344 *6 *7 *4)) (-4 *9 (-13 (-370) (-365))) (-5 *2 (-771)) (-5 *1 (-1018 *6 *7 *4 *8 *9)))))
-(-10 -7 (-15 -2716 ((-771) (-338 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
-((-2985 (((-112) $ $) NIL)) (-2336 (((-1134) $) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL) (($ (-1180)) NIL) (((-1180) $) NIL)) (-2639 (((-1134) $) 11)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1019) (-13 (-1082) (-10 -8 (-15 -2336 ((-1134) $)) (-15 -2639 ((-1134) $))))) (T -1019))
-((-2336 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1019)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1019)))))
-(-13 (-1082) (-10 -8 (-15 -2336 ((-1134) $)) (-15 -2639 ((-1134) $))))
-((-1343 (((-3 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) "failed") |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) 32) (((-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566))) 29)) (-3715 (((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566))) 34) (((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-409 (-566))) 30) (((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) 33) (((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1|) 28)) (-2074 (((-644 (-409 (-566))) (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) 20)) (-3053 (((-409 (-566)) (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) 17)))
-(((-1020 |#1|) (-10 -7 (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1|)) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-409 (-566)))) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566)))) (-15 -1343 ((-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566)))) (-15 -1343 ((-3 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) "failed") |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-15 -3053 ((-409 (-566)) (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-15 -2074 ((-644 (-409 (-566))) (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))))) (-1240 (-566))) (T -1020))
-((-2074 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-5 *2 (-644 (-409 (-566)))) (-5 *1 (-1020 *4)) (-4 *4 (-1240 (-566))))) (-3053 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) (-5 *2 (-409 (-566))) (-5 *1 (-1020 *4)) (-4 *4 (-1240 (-566))))) (-1343 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))))) (-1343 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) (-5 *4 (-409 (-566))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))))) (-3715 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-409 (-566))) (-5 *2 (-644 (-2 (|:| -4357 *5) (|:| -4368 *5)))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))) (-5 *4 (-2 (|:| -4357 *5) (|:| -4368 *5))))) (-3715 (*1 *2 *3 *4) (-12 (-5 *2 (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))) (-5 *4 (-409 (-566))))) (-3715 (*1 *2 *3 *4) (-12 (-5 *2 (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))) (-5 *4 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))) (-3715 (*1 *2 *3) (-12 (-5 *2 (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))))))
-(-10 -7 (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1|)) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-409 (-566)))) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566)))) (-15 -1343 ((-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566)))) (-15 -1343 ((-3 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) "failed") |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-15 -3053 ((-409 (-566)) (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-15 -2074 ((-644 (-409 (-566))) (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))))
-((-1343 (((-3 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) "failed") |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) 35) (((-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566))) 32)) (-3715 (((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566))) 30) (((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-409 (-566))) 26) (((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) 28) (((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1|) 24)))
-(((-1021 |#1|) (-10 -7 (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1|)) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-409 (-566)))) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566)))) (-15 -1343 ((-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566)))) (-15 -1343 ((-3 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) "failed") |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))) (-1240 (-409 (-566)))) (T -1021))
-((-1343 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566)))))) (-1343 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) (-5 *4 (-409 (-566))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 *4)))) (-3715 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-409 (-566))) (-5 *2 (-644 (-2 (|:| -4357 *5) (|:| -4368 *5)))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 *5)) (-5 *4 (-2 (|:| -4357 *5) (|:| -4368 *5))))) (-3715 (*1 *2 *3 *4) (-12 (-5 *4 (-409 (-566))) (-5 *2 (-644 (-2 (|:| -4357 *4) (|:| -4368 *4)))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 *4)))) (-3715 (*1 *2 *3 *4) (-12 (-5 *2 (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566)))) (-5 *4 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))) (-3715 (*1 *2 *3) (-12 (-5 *2 (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566)))))))
-(-10 -7 (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1|)) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-409 (-566)))) (-15 -3715 ((-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566)))) (-15 -1343 ((-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-409 (-566)))) (-15 -1343 ((-3 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) "failed") |#1| (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))) (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))))
-((-3134 (((-225) $) 6) (((-381) $) 9)))
+((-3570 (((-2 (|:| |ans| |#2|) (|:| -4394 |#2|) (|:| |sol?| (-112))) (-566) |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 67)))
+(((-1013 |#1| |#2|) (-10 -7 (-15 -3570 ((-2 (|:| |ans| |#2|) (|:| -4394 |#2|) (|:| |sol?| (-112))) (-566) |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-27) (-432 |#1|))) (T -1013))
+((-3570 (*1 *2 *3 *4 *4 *5 *6 *7) (-12 (-5 *5 (-1175)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-644 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2883 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1199) (-27) (-432 *8))) (-4 *8 (-13 (-454) (-147) (-1038 *3) (-639 *3))) (-5 *3 (-566)) (-5 *2 (-2 (|:| |ans| *4) (|:| -4394 *4) (|:| |sol?| (-112)))) (-5 *1 (-1013 *8 *4)))))
+(-10 -7 (-15 -3570 ((-2 (|:| |ans| |#2|) (|:| -4394 |#2|) (|:| |sol?| (-112))) (-566) |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-4248 (((-3 (-644 |#2|) "failed") (-566) |#2| |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 55)))
+(((-1014 |#1| |#2|) (-10 -7 (-15 -4248 ((-3 (-644 |#2|) "failed") (-566) |#2| |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))) (-13 (-1199) (-27) (-432 |#1|))) (T -1014))
+((-4248 (*1 *2 *3 *4 *4 *4 *5 *6 *7) (|partial| -12 (-5 *5 (-1175)) (-5 *6 (-1 (-3 (-2 (|:| |mainpart| *4) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| *4) (|:| |logand| *4))))) "failed") *4 (-644 *4))) (-5 *7 (-1 (-3 (-2 (|:| -2883 *4) (|:| |coeff| *4)) "failed") *4 *4)) (-4 *4 (-13 (-1199) (-27) (-432 *8))) (-4 *8 (-13 (-454) (-147) (-1038 *3) (-639 *3))) (-5 *3 (-566)) (-5 *2 (-644 *4)) (-5 *1 (-1014 *8 *4)))))
+(-10 -7 (-15 -4248 ((-3 (-644 |#2|) "failed") (-566) |#2| |#2| |#2| (-1175) (-1 (-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-644 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-644 |#2|)) (-1 (-3 (-2 (|:| -2883 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-2067 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4257 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-566)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-566) (-1 |#2| |#2|)) 41)) (-4320 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |c| (-409 |#2|)) (|:| -1493 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|)) 71)) (-2334 (((-2 (|:| |ans| (-409 |#2|)) (|:| |nosol| (-112))) (-409 |#2|) (-409 |#2|)) 76)))
+(((-1015 |#1| |#2|) (-10 -7 (-15 -4320 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |c| (-409 |#2|)) (|:| -1493 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|))) (-15 -2334 ((-2 (|:| |ans| (-409 |#2|)) (|:| |nosol| (-112))) (-409 |#2|) (-409 |#2|))) (-15 -2067 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4257 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-566)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-566) (-1 |#2| |#2|)))) (-13 (-365) (-147) (-1038 (-566))) (-1240 |#1|)) (T -1015))
+((-2067 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1240 *6)) (-4 *6 (-13 (-365) (-147) (-1038 *4))) (-5 *4 (-566)) (-5 *2 (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112)))) (|:| -4257 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-1015 *6 *3)))) (-2334 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-566)))) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| |ans| (-409 *5)) (|:| |nosol| (-112)))) (-5 *1 (-1015 *4 *5)) (-5 *3 (-409 *5)))) (-4320 (*1 *2 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-409 *6)) (|:| |c| (-409 *6)) (|:| -1493 *6))) (-5 *1 (-1015 *5 *6)) (-5 *3 (-409 *6)))))
+(-10 -7 (-15 -4320 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |c| (-409 |#2|)) (|:| -1493 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|))) (-15 -2334 ((-2 (|:| |ans| (-409 |#2|)) (|:| |nosol| (-112))) (-409 |#2|) (-409 |#2|))) (-15 -2067 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4257 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-566)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-566) (-1 |#2| |#2|))))
+((-2212 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |h| |#2|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| -1493 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|)) 22)) (-3294 (((-3 (-644 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|)) 34)))
+(((-1016 |#1| |#2|) (-10 -7 (-15 -2212 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |h| |#2|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| -1493 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|))) (-15 -3294 ((-3 (-644 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|)))) (-13 (-365) (-147) (-1038 (-566))) (-1240 |#1|)) (T -1016))
+((-3294 (*1 *2 *3 *3 *3) (|partial| -12 (-4 *4 (-13 (-365) (-147) (-1038 (-566)))) (-4 *5 (-1240 *4)) (-5 *2 (-644 (-409 *5))) (-5 *1 (-1016 *4 *5)) (-5 *3 (-409 *5)))) (-2212 (*1 *2 *3 *3 *3 *4) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566)))) (-5 *2 (-2 (|:| |a| *6) (|:| |b| (-409 *6)) (|:| |h| *6) (|:| |c1| (-409 *6)) (|:| |c2| (-409 *6)) (|:| -1493 *6))) (-5 *1 (-1016 *5 *6)) (-5 *3 (-409 *6)))))
+(-10 -7 (-15 -2212 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-409 |#2|)) (|:| |h| |#2|) (|:| |c1| (-409 |#2|)) (|:| |c2| (-409 |#2|)) (|:| -1493 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|) (-1 |#2| |#2|))) (-15 -3294 ((-3 (-644 (-409 |#2|)) "failed") (-409 |#2|) (-409 |#2|) (-409 |#2|))))
+((-4224 (((-1 |#1|) (-644 (-2 (|:| -2252 |#1|) (|:| -3856 (-566))))) 37)) (-3495 (((-1 |#1|) (-1101 |#1|)) 45)) (-2705 (((-1 |#1|) (-1264 |#1|) (-1264 (-566)) (-566)) 34)))
+(((-1017 |#1|) (-10 -7 (-15 -3495 ((-1 |#1|) (-1101 |#1|))) (-15 -4224 ((-1 |#1|) (-644 (-2 (|:| -2252 |#1|) (|:| -3856 (-566)))))) (-15 -2705 ((-1 |#1|) (-1264 |#1|) (-1264 (-566)) (-566)))) (-1099)) (T -1017))
+((-2705 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1264 *6)) (-5 *4 (-1264 (-566))) (-5 *5 (-566)) (-4 *6 (-1099)) (-5 *2 (-1 *6)) (-5 *1 (-1017 *6)))) (-4224 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -2252 *4) (|:| -3856 (-566))))) (-4 *4 (-1099)) (-5 *2 (-1 *4)) (-5 *1 (-1017 *4)))) (-3495 (*1 *2 *3) (-12 (-5 *3 (-1101 *4)) (-4 *4 (-1099)) (-5 *2 (-1 *4)) (-5 *1 (-1017 *4)))))
+(-10 -7 (-15 -3495 ((-1 |#1|) (-1101 |#1|))) (-15 -4224 ((-1 |#1|) (-644 (-2 (|:| -2252 |#1|) (|:| -3856 (-566)))))) (-15 -2705 ((-1 |#1|) (-1264 |#1|) (-1264 (-566)) (-566))))
+((-3227 (((-771) (-338 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
+(((-1018 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3227 ((-771) (-338 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)))) (-365) (-1240 |#1|) (-1240 (-409 |#2|)) (-344 |#1| |#2| |#3|) (-13 (-370) (-365))) (T -1018))
+((-3227 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-338 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-365)) (-4 *7 (-1240 *6)) (-4 *4 (-1240 (-409 *7))) (-4 *8 (-344 *6 *7 *4)) (-4 *9 (-13 (-370) (-365))) (-5 *2 (-771)) (-5 *1 (-1018 *6 *7 *4 *8 *9)))))
+(-10 -7 (-15 -3227 ((-771) (-338 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
+((-3009 (((-112) $ $) NIL)) (-2415 (((-1134) $) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL) (($ (-1180)) NIL) (((-1180) $) NIL)) (-1398 (((-1134) $) 11)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1019) (-13 (-1082) (-10 -8 (-15 -2415 ((-1134) $)) (-15 -1398 ((-1134) $))))) (T -1019))
+((-2415 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1019)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1019)))))
+(-13 (-1082) (-10 -8 (-15 -2415 ((-1134) $)) (-15 -1398 ((-1134) $))))
+((-3301 (((-3 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) "failed") |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) 32) (((-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566))) 29)) (-1333 (((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566))) 34) (((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-409 (-566))) 30) (((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) 33) (((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1|) 28)) (-3065 (((-644 (-409 (-566))) (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) 20)) (-1354 (((-409 (-566)) (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) 17)))
+(((-1020 |#1|) (-10 -7 (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1|)) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-409 (-566)))) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566)))) (-15 -3301 ((-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566)))) (-15 -3301 ((-3 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) "failed") |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-15 -1354 ((-409 (-566)) (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-15 -3065 ((-644 (-409 (-566))) (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))))) (-1240 (-566))) (T -1020))
+((-3065 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-5 *2 (-644 (-409 (-566)))) (-5 *1 (-1020 *4)) (-4 *4 (-1240 (-566))))) (-1354 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) (-5 *2 (-409 (-566))) (-5 *1 (-1020 *4)) (-4 *4 (-1240 (-566))))) (-3301 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))))) (-3301 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) (-5 *4 (-409 (-566))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))))) (-1333 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-409 (-566))) (-5 *2 (-644 (-2 (|:| -4380 *5) (|:| -4394 *5)))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))) (-5 *4 (-2 (|:| -4380 *5) (|:| -4394 *5))))) (-1333 (*1 *2 *3 *4) (-12 (-5 *2 (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))) (-5 *4 (-409 (-566))))) (-1333 (*1 *2 *3 *4) (-12 (-5 *2 (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))) (-5 *4 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))) (-1333 (*1 *2 *3) (-12 (-5 *2 (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))))))
+(-10 -7 (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1|)) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-409 (-566)))) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566)))) (-15 -3301 ((-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566)))) (-15 -3301 ((-3 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) "failed") |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-15 -1354 ((-409 (-566)) (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-15 -3065 ((-644 (-409 (-566))) (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))))
+((-3301 (((-3 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) "failed") |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) 35) (((-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566))) 32)) (-1333 (((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566))) 30) (((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-409 (-566))) 26) (((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) 28) (((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1|) 24)))
+(((-1021 |#1|) (-10 -7 (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1|)) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-409 (-566)))) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566)))) (-15 -3301 ((-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566)))) (-15 -3301 ((-3 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) "failed") |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))) (-1240 (-409 (-566)))) (T -1021))
+((-3301 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566)))))) (-3301 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) (-5 *4 (-409 (-566))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 *4)))) (-1333 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-409 (-566))) (-5 *2 (-644 (-2 (|:| -4380 *5) (|:| -4394 *5)))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 *5)) (-5 *4 (-2 (|:| -4380 *5) (|:| -4394 *5))))) (-1333 (*1 *2 *3 *4) (-12 (-5 *4 (-409 (-566))) (-5 *2 (-644 (-2 (|:| -4380 *4) (|:| -4394 *4)))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 *4)))) (-1333 (*1 *2 *3 *4) (-12 (-5 *2 (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566)))) (-5 *4 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))) (-1333 (*1 *2 *3) (-12 (-5 *2 (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566)))))))
+(-10 -7 (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1|)) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-409 (-566)))) (-15 -1333 ((-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566)))) (-15 -3301 ((-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-409 (-566)))) (-15 -3301 ((-3 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) "failed") |#1| (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))) (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))))
+((-3204 (((-225) $) 6) (((-381) $) 9)))
(((-1022) (-140)) (T -1022))
NIL
(-13 (-614 (-225)) (-614 (-381)))
(((-614 (-225)) . T) ((-614 (-381)) . T))
-((-2371 (((-644 (-381)) (-952 (-566)) (-381)) 28) (((-644 (-381)) (-952 (-409 (-566))) (-381)) 27)) (-4250 (((-644 (-644 (-381))) (-644 (-952 (-566))) (-644 (-1175)) (-381)) 37)))
-(((-1023) (-10 -7 (-15 -2371 ((-644 (-381)) (-952 (-409 (-566))) (-381))) (-15 -2371 ((-644 (-381)) (-952 (-566)) (-381))) (-15 -4250 ((-644 (-644 (-381))) (-644 (-952 (-566))) (-644 (-1175)) (-381))))) (T -1023))
-((-4250 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-644 (-1175))) (-5 *2 (-644 (-644 (-381)))) (-5 *1 (-1023)) (-5 *5 (-381)))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-952 (-566))) (-5 *2 (-644 (-381))) (-5 *1 (-1023)) (-5 *4 (-381)))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *2 (-644 (-381))) (-5 *1 (-1023)) (-5 *4 (-381)))))
-(-10 -7 (-15 -2371 ((-644 (-381)) (-952 (-409 (-566))) (-381))) (-15 -2371 ((-644 (-381)) (-952 (-566)) (-381))) (-15 -4250 ((-644 (-644 (-381))) (-644 (-952 (-566))) (-644 (-1175)) (-381))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 75)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-2402 (($ $) NIL) (($ $ (-921)) NIL) (($ (-409 (-566))) NIL) (($ (-566)) NIL)) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) 70)) (-2342 (($) NIL T CONST)) (-2170 (((-3 $ "failed") (-1171 $) (-921) (-862)) NIL) (((-3 $ "failed") (-1171 $) (-921)) 55)) (-2977 (((-3 (-409 (-566)) "failed") $) NIL (|has| (-409 (-566)) (-1038 (-409 (-566))))) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#1| "failed") $) 116) (((-3 (-566) "failed") $) NIL (-2805 (|has| (-409 (-566)) (-1038 (-566))) (|has| |#1| (-1038 (-566)))))) (-1756 (((-409 (-566)) $) 17 (|has| (-409 (-566)) (-1038 (-409 (-566))))) (((-409 (-566)) $) 17) ((|#1| $) 117) (((-566) $) NIL (-2805 (|has| (-409 (-566)) (-1038 (-566))) (|has| |#1| (-1038 (-566)))))) (-3343 (($ $ (-862)) 47)) (-3660 (($ $ (-862)) 48)) (-2926 (($ $ $) NIL)) (-1924 (((-409 (-566)) $ $) 21)) (-1579 (((-3 $ "failed") $) 88)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-1684 (((-112) $) 66)) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL)) (-1578 (((-112) $) 69)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-2665 (((-3 (-1171 $) "failed") $) 83)) (-3702 (((-3 (-862) "failed") $) 82)) (-3016 (((-3 (-1171 $) "failed") $) 80)) (-3166 (((-3 (-1060 $ (-1171 $)) "failed") $) 78)) (-2184 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 89)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2391 (((-420 $) $) NIL)) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2512 (((-862) $) 87) (($ (-566)) NIL) (($ (-409 (-566))) NIL) (($ $) 63) (($ (-409 (-566))) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 119)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-3645 (((-409 (-566)) $ $) 27)) (-3293 (((-644 $) (-1171 $)) 61) (((-644 $) (-1171 (-409 (-566)))) NIL) (((-644 $) (-1171 (-566))) NIL) (((-644 $) (-952 $)) NIL) (((-644 $) (-952 (-409 (-566)))) NIL) (((-644 $) (-952 (-566))) NIL)) (-2399 (($ (-1060 $ (-1171 $)) (-862)) 46)) (-1346 (($ $) 22)) (-2485 (($) 32 T CONST)) (-2495 (($) 39 T CONST)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 76)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 24)) (-3061 (($ $ $) 37)) (-3047 (($ $) 38) (($ $ $) 74)) (-3034 (($ $ $) 112)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL) (($ $ (-409 (-566))) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 98) (($ $ $) 104) (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL) (($ (-566) $) 98) (($ $ (-566)) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL) (($ |#1| $) 102) (($ $ |#1|) NIL)))
-(((-1024 |#1|) (-13 (-1012) (-413 |#1|) (-38 |#1|) (-10 -8 (-15 -2399 ($ (-1060 $ (-1171 $)) (-862))) (-15 -3166 ((-3 (-1060 $ (-1171 $)) "failed") $)) (-15 -1924 ((-409 (-566)) $ $)))) (-13 (-848) (-365) (-1022))) (T -1024))
-((-2399 (*1 *1 *2 *3) (-12 (-5 *2 (-1060 (-1024 *4) (-1171 (-1024 *4)))) (-5 *3 (-862)) (-5 *1 (-1024 *4)) (-4 *4 (-13 (-848) (-365) (-1022))))) (-3166 (*1 *2 *1) (|partial| -12 (-5 *2 (-1060 (-1024 *3) (-1171 (-1024 *3)))) (-5 *1 (-1024 *3)) (-4 *3 (-13 (-848) (-365) (-1022))))) (-1924 (*1 *2 *1 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1024 *3)) (-4 *3 (-13 (-848) (-365) (-1022))))))
-(-13 (-1012) (-413 |#1|) (-38 |#1|) (-10 -8 (-15 -2399 ($ (-1060 $ (-1171 $)) (-862))) (-15 -3166 ((-3 (-1060 $ (-1171 $)) "failed") $)) (-15 -1924 ((-409 (-566)) $ $))))
-((-3918 (((-2 (|:| -3525 |#2|) (|:| -1706 (-644 |#1|))) |#2| (-644 |#1|)) 32) ((|#2| |#2| |#1|) 27)))
-(((-1025 |#1| |#2|) (-10 -7 (-15 -3918 (|#2| |#2| |#1|)) (-15 -3918 ((-2 (|:| -3525 |#2|) (|:| -1706 (-644 |#1|))) |#2| (-644 |#1|)))) (-365) (-656 |#1|)) (T -1025))
-((-3918 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-5 *2 (-2 (|:| -3525 *3) (|:| -1706 (-644 *5)))) (-5 *1 (-1025 *5 *3)) (-5 *4 (-644 *5)) (-4 *3 (-656 *5)))) (-3918 (*1 *2 *2 *3) (-12 (-4 *3 (-365)) (-5 *1 (-1025 *3 *2)) (-4 *2 (-656 *3)))))
-(-10 -7 (-15 -3918 (|#2| |#2| |#1|)) (-15 -3918 ((-2 (|:| -3525 |#2|) (|:| -1706 (-644 |#1|))) |#2| (-644 |#1|))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2774 ((|#1| $ |#1|) 14)) (-3874 ((|#1| $ |#1|) 12)) (-3971 (($ |#1|) 10)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4386 ((|#1| $) 11)) (-1890 ((|#1| $) 13)) (-2512 (((-862) $) 21 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2940 (((-112) $ $) 9)))
-(((-1026 |#1|) (-13 (-1214) (-10 -8 (-15 -3971 ($ |#1|)) (-15 -4386 (|#1| $)) (-15 -3874 (|#1| $ |#1|)) (-15 -1890 (|#1| $)) (-15 -2774 (|#1| $ |#1|)) (-15 -2940 ((-112) $ $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|))) (-1214)) (T -1026))
-((-3971 (*1 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))) (-4386 (*1 *2 *1) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))) (-3874 (*1 *2 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))) (-1890 (*1 *2 *1) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))) (-2774 (*1 *2 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))) (-2940 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1026 *3)) (-4 *3 (-1214)))))
-(-13 (-1214) (-10 -8 (-15 -3971 ($ |#1|)) (-15 -4386 (|#1| $)) (-15 -3874 (|#1| $ |#1|)) (-15 -1890 (|#1| $)) (-15 -2774 (|#1| $ |#1|)) (-15 -2940 ((-112) $ $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-2072 (((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 |#4|)))) (-644 |#4|)) NIL)) (-1725 (((-644 $) (-644 |#4|)) 118) (((-644 $) (-644 |#4|) (-112)) 119) (((-644 $) (-644 |#4|) (-112) (-112)) 117) (((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112)) 120)) (-2540 (((-644 |#3|) $) NIL)) (-2598 (((-112) $) NIL)) (-2740 (((-112) $) NIL (|has| |#1| (-558)))) (-4390 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3761 ((|#4| |#4| $) NIL)) (-2857 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| $) 112)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-4186 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417))) (((-3 |#4| "failed") $ |#3|) 66)) (-2342 (($) NIL T CONST)) (-4179 (((-112) $) 29 (|has| |#1| (-558)))) (-4184 (((-112) $ $) NIL (|has| |#1| (-558)))) (-1576 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2398 (((-112) $) NIL (|has| |#1| (-558)))) (-3772 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2380 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) NIL)) (-1756 (($ (-644 |#4|)) NIL)) (-4076 (((-3 $ "failed") $) 45)) (-2668 ((|#4| |#4| $) 69)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-2651 (($ |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 85 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-4200 ((|#4| |#4| $) NIL)) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4417))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3810 (((-2 (|:| -1673 (-644 |#4|)) (|:| -3509 (-644 |#4|))) $) NIL)) (-3422 (((-112) |#4| $) NIL)) (-2192 (((-112) |#4| $) NIL)) (-1602 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1446 (((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112)) 133)) (-3372 (((-644 |#4|) $) 18 (|has| $ (-6 -4417)))) (-4260 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1594 ((|#3| $) 38)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#4|) $) 19 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-1323 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) 23)) (-3097 (((-644 |#3|) $) NIL)) (-3492 (((-112) |#3| $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-2501 (((-3 |#4| (-644 $)) |#4| |#4| $) NIL)) (-1624 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| |#4| $) 110)) (-2670 (((-3 |#4| "failed") $) 42)) (-2909 (((-644 $) |#4| $) 93)) (-4343 (((-3 (-112) (-644 $)) |#4| $) NIL)) (-2620 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 $))) |#4| $) 103) (((-112) |#4| $) 64)) (-2390 (((-644 $) |#4| $) 115) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) 116) (((-644 $) |#4| (-644 $)) NIL)) (-4166 (((-644 $) (-644 |#4|) (-112) (-112) (-112)) 128)) (-1937 (($ |#4| $) 82) (($ (-644 |#4|) $) 83) (((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 79)) (-1798 (((-644 |#4|) $) NIL)) (-3377 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1687 ((|#4| |#4| $) NIL)) (-2343 (((-112) $ $) NIL)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-3257 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2930 ((|#4| |#4| $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 (((-3 |#4| "failed") $) 40)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1583 (((-3 $ "failed") $ |#4|) 59)) (-1938 (($ $ |#4|) NIL) (((-644 $) |#4| $) 95) (((-644 $) |#4| (-644 $)) NIL) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) 89)) (-2822 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 17)) (-2954 (($) 14)) (-3992 (((-771) $) NIL)) (-4044 (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) 13)) (-3134 (((-538) $) NIL (|has| |#4| (-614 (-538))))) (-2523 (($ (-644 |#4|)) 22)) (-1945 (($ $ |#3|) 52)) (-1398 (($ $ |#3|) 54)) (-2280 (($ $) NIL)) (-4287 (($ $ |#3|) NIL)) (-2512 (((-862) $) 35) (((-644 |#4|) $) 46)) (-2748 (((-771) $) NIL (|has| |#3| (-370)))) (-3122 (((-112) $ $) NIL)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3130 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) NIL)) (-1848 (((-644 $) |#4| $) 92) (((-644 $) |#4| (-644 $)) NIL) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) NIL)) (-3427 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-1427 (((-644 |#3|) $) NIL)) (-1737 (((-112) |#4| $) NIL)) (-1369 (((-112) |#3| $) 65)) (-2940 (((-112) $ $) NIL)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1027 |#1| |#2| |#3| |#4|) (-13 (-1070 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1937 ((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1725 ((-644 $) (-644 |#4|) (-112) (-112))) (-15 -1725 ((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112))) (-15 -4166 ((-644 $) (-644 |#4|) (-112) (-112) (-112))) (-15 -1446 ((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112))))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -1027))
-((-1937 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1027 *5 *6 *7 *3))) (-5 *1 (-1027 *5 *6 *7 *3)) (-4 *3 (-1064 *5 *6 *7)))) (-1725 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8)))) (-1725 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8)))) (-4166 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8)))) (-1446 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-644 *8)) (|:| |towers| (-644 (-1027 *5 *6 *7 *8))))) (-5 *1 (-1027 *5 *6 *7 *8)) (-5 *3 (-644 *8)))))
-(-13 (-1070 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1937 ((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1725 ((-644 $) (-644 |#4|) (-112) (-112))) (-15 -1725 ((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112))) (-15 -4166 ((-644 $) (-644 |#4|) (-112) (-112) (-112))) (-15 -1446 ((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112)))))
-((-1350 (((-644 (-689 |#1|)) (-644 (-689 |#1|))) 73) (((-689 |#1|) (-689 |#1|)) 72) (((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-644 (-689 |#1|))) 71) (((-689 |#1|) (-689 |#1|) (-689 |#1|)) 68)) (-3050 (((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921)) 66) (((-689 |#1|) (-689 |#1|) (-921)) 65)) (-2194 (((-644 (-689 (-566))) (-644 (-644 (-566)))) 84) (((-644 (-689 (-566))) (-644 (-905 (-566))) (-566)) 83) (((-689 (-566)) (-644 (-566))) 80) (((-689 (-566)) (-905 (-566)) (-566)) 78)) (-4056 (((-689 (-952 |#1|)) (-771)) 98)) (-4151 (((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921)) 52 (|has| |#1| (-6 (-4419 "*")))) (((-689 |#1|) (-689 |#1|) (-921)) 50 (|has| |#1| (-6 (-4419 "*"))))))
-(((-1028 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4419 "*"))) (-15 -4151 ((-689 |#1|) (-689 |#1|) (-921))) |%noBranch|) (IF (|has| |#1| (-6 (-4419 "*"))) (-15 -4151 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921))) |%noBranch|) (-15 -4056 ((-689 (-952 |#1|)) (-771))) (-15 -3050 ((-689 |#1|) (-689 |#1|) (-921))) (-15 -3050 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921))) (-15 -1350 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1350 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -1350 ((-689 |#1|) (-689 |#1|))) (-15 -1350 ((-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -2194 ((-689 (-566)) (-905 (-566)) (-566))) (-15 -2194 ((-689 (-566)) (-644 (-566)))) (-15 -2194 ((-644 (-689 (-566))) (-644 (-905 (-566))) (-566))) (-15 -2194 ((-644 (-689 (-566))) (-644 (-644 (-566)))))) (-1049)) (T -1028))
-((-2194 (*1 *2 *3) (-12 (-5 *3 (-644 (-644 (-566)))) (-5 *2 (-644 (-689 (-566)))) (-5 *1 (-1028 *4)) (-4 *4 (-1049)))) (-2194 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-905 (-566)))) (-5 *4 (-566)) (-5 *2 (-644 (-689 *4))) (-5 *1 (-1028 *5)) (-4 *5 (-1049)))) (-2194 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1028 *4)) (-4 *4 (-1049)))) (-2194 (*1 *2 *3 *4) (-12 (-5 *3 (-905 (-566))) (-5 *4 (-566)) (-5 *2 (-689 *4)) (-5 *1 (-1028 *5)) (-4 *5 (-1049)))) (-1350 (*1 *2 *2) (-12 (-5 *2 (-644 (-689 *3))) (-4 *3 (-1049)) (-5 *1 (-1028 *3)))) (-1350 (*1 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-1028 *3)))) (-1350 (*1 *2 *2 *2) (-12 (-5 *2 (-644 (-689 *3))) (-4 *3 (-1049)) (-5 *1 (-1028 *3)))) (-1350 (*1 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-1028 *3)))) (-3050 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-689 *4))) (-5 *3 (-921)) (-4 *4 (-1049)) (-5 *1 (-1028 *4)))) (-3050 (*1 *2 *2 *3) (-12 (-5 *2 (-689 *4)) (-5 *3 (-921)) (-4 *4 (-1049)) (-5 *1 (-1028 *4)))) (-4056 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-689 (-952 *4))) (-5 *1 (-1028 *4)) (-4 *4 (-1049)))) (-4151 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-689 *4))) (-5 *3 (-921)) (|has| *4 (-6 (-4419 "*"))) (-4 *4 (-1049)) (-5 *1 (-1028 *4)))) (-4151 (*1 *2 *2 *3) (-12 (-5 *2 (-689 *4)) (-5 *3 (-921)) (|has| *4 (-6 (-4419 "*"))) (-4 *4 (-1049)) (-5 *1 (-1028 *4)))))
-(-10 -7 (IF (|has| |#1| (-6 (-4419 "*"))) (-15 -4151 ((-689 |#1|) (-689 |#1|) (-921))) |%noBranch|) (IF (|has| |#1| (-6 (-4419 "*"))) (-15 -4151 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921))) |%noBranch|) (-15 -4056 ((-689 (-952 |#1|)) (-771))) (-15 -3050 ((-689 |#1|) (-689 |#1|) (-921))) (-15 -3050 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921))) (-15 -1350 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -1350 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -1350 ((-689 |#1|) (-689 |#1|))) (-15 -1350 ((-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -2194 ((-689 (-566)) (-905 (-566)) (-566))) (-15 -2194 ((-689 (-566)) (-644 (-566)))) (-15 -2194 ((-644 (-689 (-566))) (-644 (-905 (-566))) (-566))) (-15 -2194 ((-644 (-689 (-566))) (-644 (-644 (-566))))))
-((-3539 (((-689 |#1|) (-644 (-689 |#1|)) (-1264 |#1|)) 71 (|has| |#1| (-308)))) (-3473 (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 (-1264 |#1|))) 112 (|has| |#1| (-365))) (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 |#1|)) 119 (|has| |#1| (-365)))) (-3904 (((-1264 |#1|) (-644 (-1264 |#1|)) (-566)) 137 (-12 (|has| |#1| (-365)) (|has| |#1| (-370))))) (-3850 (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-921)) 125 (-12 (|has| |#1| (-365)) (|has| |#1| (-370)))) (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112)) 124 (-12 (|has| |#1| (-365)) (|has| |#1| (-370)))) (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|))) 123 (-12 (|has| |#1| (-365)) (|has| |#1| (-370)))) (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112) (-566) (-566)) 122 (-12 (|has| |#1| (-365)) (|has| |#1| (-370))))) (-1708 (((-112) (-644 (-689 |#1|))) 105 (|has| |#1| (-365))) (((-112) (-644 (-689 |#1|)) (-566)) 108 (|has| |#1| (-365)))) (-1440 (((-1264 (-1264 |#1|)) (-644 (-689 |#1|)) (-1264 |#1|)) 68 (|has| |#1| (-308)))) (-1570 (((-689 |#1|) (-644 (-689 |#1|)) (-689 |#1|)) 48)) (-4361 (((-689 |#1|) (-1264 (-1264 |#1|))) 41)) (-2144 (((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-566)) 96 (|has| |#1| (-365))) (((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|))) 95 (|has| |#1| (-365))) (((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-112) (-566)) 103 (|has| |#1| (-365)))))
-(((-1029 |#1|) (-10 -7 (-15 -4361 ((-689 |#1|) (-1264 (-1264 |#1|)))) (-15 -1570 ((-689 |#1|) (-644 (-689 |#1|)) (-689 |#1|))) (IF (|has| |#1| (-308)) (PROGN (-15 -1440 ((-1264 (-1264 |#1|)) (-644 (-689 |#1|)) (-1264 |#1|))) (-15 -3539 ((-689 |#1|) (-644 (-689 |#1|)) (-1264 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -2144 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-112) (-566))) (-15 -2144 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -2144 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-566))) (-15 -1708 ((-112) (-644 (-689 |#1|)) (-566))) (-15 -1708 ((-112) (-644 (-689 |#1|)))) (-15 -3473 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 |#1|))) (-15 -3473 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 (-1264 |#1|))))) |%noBranch|) (IF (|has| |#1| (-370)) (IF (|has| |#1| (-365)) (PROGN (-15 -3850 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112) (-566) (-566))) (-15 -3850 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)))) (-15 -3850 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112))) (-15 -3850 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-921))) (-15 -3904 ((-1264 |#1|) (-644 (-1264 |#1|)) (-566)))) |%noBranch|) |%noBranch|)) (-1049)) (T -1029))
-((-3904 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-1264 *5))) (-5 *4 (-566)) (-5 *2 (-1264 *5)) (-5 *1 (-1029 *5)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049)))) (-3850 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049)) (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5)) (-5 *3 (-644 (-689 *5))))) (-3850 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049)) (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5)) (-5 *3 (-644 (-689 *5))))) (-3850 (*1 *2 *3) (-12 (-4 *4 (-365)) (-4 *4 (-370)) (-4 *4 (-1049)) (-5 *2 (-644 (-644 (-689 *4)))) (-5 *1 (-1029 *4)) (-5 *3 (-644 (-689 *4))))) (-3850 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-112)) (-5 *5 (-566)) (-4 *6 (-365)) (-4 *6 (-370)) (-4 *6 (-1049)) (-5 *2 (-644 (-644 (-689 *6)))) (-5 *1 (-1029 *6)) (-5 *3 (-644 (-689 *6))))) (-3473 (*1 *2 *3 *4) (-12 (-5 *4 (-1264 (-1264 *5))) (-4 *5 (-365)) (-4 *5 (-1049)) (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5)) (-5 *3 (-644 (-689 *5))))) (-3473 (*1 *2 *3 *4) (-12 (-5 *4 (-1264 *5)) (-4 *5 (-365)) (-4 *5 (-1049)) (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5)) (-5 *3 (-644 (-689 *5))))) (-1708 (*1 *2 *3) (-12 (-5 *3 (-644 (-689 *4))) (-4 *4 (-365)) (-4 *4 (-1049)) (-5 *2 (-112)) (-5 *1 (-1029 *4)))) (-1708 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-566)) (-4 *5 (-365)) (-4 *5 (-1049)) (-5 *2 (-112)) (-5 *1 (-1029 *5)))) (-2144 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-566)) (-5 *2 (-689 *5)) (-5 *1 (-1029 *5)) (-4 *5 (-365)) (-4 *5 (-1049)))) (-2144 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-689 *4))) (-5 *2 (-689 *4)) (-5 *1 (-1029 *4)) (-4 *4 (-365)) (-4 *4 (-1049)))) (-2144 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-644 (-689 *6))) (-5 *4 (-112)) (-5 *5 (-566)) (-5 *2 (-689 *6)) (-5 *1 (-1029 *6)) (-4 *6 (-365)) (-4 *6 (-1049)))) (-3539 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-1264 *5)) (-4 *5 (-308)) (-4 *5 (-1049)) (-5 *2 (-689 *5)) (-5 *1 (-1029 *5)))) (-1440 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-689 *5))) (-4 *5 (-308)) (-4 *5 (-1049)) (-5 *2 (-1264 (-1264 *5))) (-5 *1 (-1029 *5)) (-5 *4 (-1264 *5)))) (-1570 (*1 *2 *3 *2) (-12 (-5 *3 (-644 (-689 *4))) (-5 *2 (-689 *4)) (-4 *4 (-1049)) (-5 *1 (-1029 *4)))) (-4361 (*1 *2 *3) (-12 (-5 *3 (-1264 (-1264 *4))) (-4 *4 (-1049)) (-5 *2 (-689 *4)) (-5 *1 (-1029 *4)))))
-(-10 -7 (-15 -4361 ((-689 |#1|) (-1264 (-1264 |#1|)))) (-15 -1570 ((-689 |#1|) (-644 (-689 |#1|)) (-689 |#1|))) (IF (|has| |#1| (-308)) (PROGN (-15 -1440 ((-1264 (-1264 |#1|)) (-644 (-689 |#1|)) (-1264 |#1|))) (-15 -3539 ((-689 |#1|) (-644 (-689 |#1|)) (-1264 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -2144 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-112) (-566))) (-15 -2144 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -2144 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-566))) (-15 -1708 ((-112) (-644 (-689 |#1|)) (-566))) (-15 -1708 ((-112) (-644 (-689 |#1|)))) (-15 -3473 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 |#1|))) (-15 -3473 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 (-1264 |#1|))))) |%noBranch|) (IF (|has| |#1| (-370)) (IF (|has| |#1| (-365)) (PROGN (-15 -3850 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112) (-566) (-566))) (-15 -3850 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)))) (-15 -3850 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112))) (-15 -3850 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-921))) (-15 -3904 ((-1264 |#1|) (-644 (-1264 |#1|)) (-566)))) |%noBranch|) |%noBranch|))
-((-3367 ((|#1| (-921) |#1|) 18)))
-(((-1030 |#1|) (-10 -7 (-15 -3367 (|#1| (-921) |#1|))) (-13 (-1099) (-10 -8 (-15 -3034 ($ $ $))))) (T -1030))
-((-3367 (*1 *2 *3 *2) (-12 (-5 *3 (-921)) (-5 *1 (-1030 *2)) (-4 *2 (-13 (-1099) (-10 -8 (-15 -3034 ($ $ $))))))))
-(-10 -7 (-15 -3367 (|#1| (-921) |#1|)))
-((-3229 (((-644 (-2 (|:| |radval| (-317 (-566))) (|:| |radmult| (-566)) (|:| |radvect| (-644 (-689 (-317 (-566))))))) (-689 (-409 (-952 (-566))))) 67)) (-2429 (((-644 (-689 (-317 (-566)))) (-317 (-566)) (-689 (-409 (-952 (-566))))) 52)) (-1519 (((-644 (-317 (-566))) (-689 (-409 (-952 (-566))))) 45)) (-1685 (((-644 (-689 (-317 (-566)))) (-689 (-409 (-952 (-566))))) 88)) (-2385 (((-689 (-317 (-566))) (-689 (-317 (-566)))) 38)) (-2673 (((-644 (-689 (-317 (-566)))) (-644 (-689 (-317 (-566))))) 76)) (-1373 (((-3 (-689 (-317 (-566))) "failed") (-689 (-409 (-952 (-566))))) 85)))
-(((-1031) (-10 -7 (-15 -3229 ((-644 (-2 (|:| |radval| (-317 (-566))) (|:| |radmult| (-566)) (|:| |radvect| (-644 (-689 (-317 (-566))))))) (-689 (-409 (-952 (-566)))))) (-15 -2429 ((-644 (-689 (-317 (-566)))) (-317 (-566)) (-689 (-409 (-952 (-566)))))) (-15 -1519 ((-644 (-317 (-566))) (-689 (-409 (-952 (-566)))))) (-15 -1373 ((-3 (-689 (-317 (-566))) "failed") (-689 (-409 (-952 (-566)))))) (-15 -2385 ((-689 (-317 (-566))) (-689 (-317 (-566))))) (-15 -2673 ((-644 (-689 (-317 (-566)))) (-644 (-689 (-317 (-566)))))) (-15 -1685 ((-644 (-689 (-317 (-566)))) (-689 (-409 (-952 (-566)))))))) (T -1031))
-((-1685 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-952 (-566))))) (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031)))) (-2673 (*1 *2 *2) (-12 (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031)))) (-2385 (*1 *2 *2) (-12 (-5 *2 (-689 (-317 (-566)))) (-5 *1 (-1031)))) (-1373 (*1 *2 *3) (|partial| -12 (-5 *3 (-689 (-409 (-952 (-566))))) (-5 *2 (-689 (-317 (-566)))) (-5 *1 (-1031)))) (-1519 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-952 (-566))))) (-5 *2 (-644 (-317 (-566)))) (-5 *1 (-1031)))) (-2429 (*1 *2 *3 *4) (-12 (-5 *4 (-689 (-409 (-952 (-566))))) (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031)) (-5 *3 (-317 (-566))))) (-3229 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-952 (-566))))) (-5 *2 (-644 (-2 (|:| |radval| (-317 (-566))) (|:| |radmult| (-566)) (|:| |radvect| (-644 (-689 (-317 (-566)))))))) (-5 *1 (-1031)))))
-(-10 -7 (-15 -3229 ((-644 (-2 (|:| |radval| (-317 (-566))) (|:| |radmult| (-566)) (|:| |radvect| (-644 (-689 (-317 (-566))))))) (-689 (-409 (-952 (-566)))))) (-15 -2429 ((-644 (-689 (-317 (-566)))) (-317 (-566)) (-689 (-409 (-952 (-566)))))) (-15 -1519 ((-644 (-317 (-566))) (-689 (-409 (-952 (-566)))))) (-15 -1373 ((-3 (-689 (-317 (-566))) "failed") (-689 (-409 (-952 (-566)))))) (-15 -2385 ((-689 (-317 (-566))) (-689 (-317 (-566))))) (-15 -2673 ((-644 (-689 (-317 (-566)))) (-644 (-689 (-317 (-566)))))) (-15 -1685 ((-644 (-689 (-317 (-566)))) (-689 (-409 (-952 (-566)))))))
-((-1942 ((|#1| |#1| (-921)) 18)))
-(((-1032 |#1|) (-10 -7 (-15 -1942 (|#1| |#1| (-921)))) (-13 (-1099) (-10 -8 (-15 * ($ $ $))))) (T -1032))
-((-1942 (*1 *2 *2 *3) (-12 (-5 *3 (-921)) (-5 *1 (-1032 *2)) (-4 *2 (-13 (-1099) (-10 -8 (-15 * ($ $ $))))))))
-(-10 -7 (-15 -1942 (|#1| |#1| (-921))))
-((-2512 ((|#1| (-313)) 11) (((-1269) |#1|) 9)))
-(((-1033 |#1|) (-10 -7 (-15 -2512 ((-1269) |#1|)) (-15 -2512 (|#1| (-313)))) (-1214)) (T -1033))
-((-2512 (*1 *2 *3) (-12 (-5 *3 (-313)) (-5 *1 (-1033 *2)) (-4 *2 (-1214)))) (-2512 (*1 *2 *3) (-12 (-5 *2 (-1269)) (-5 *1 (-1033 *3)) (-4 *3 (-1214)))))
-(-10 -7 (-15 -2512 ((-1269) |#1|)) (-15 -2512 (|#1| (-313))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-4362 (($ |#4|) 25)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-4350 ((|#4| $) 27)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 46) (($ (-566)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-3795 (((-771)) 43 T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 21 T CONST)) (-2495 (($) 23 T CONST)) (-2940 (((-112) $ $) 40)) (-3047 (($ $) 31) (($ $ $) NIL)) (-3034 (($ $ $) 29)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
-(((-1034 |#1| |#2| |#3| |#4| |#5|) (-13 (-172) (-38 |#1|) (-10 -8 (-15 -4362 ($ |#4|)) (-15 -2512 ($ |#4|)) (-15 -4350 (|#4| $)))) (-365) (-793) (-850) (-949 |#1| |#2| |#3|) (-644 |#4|)) (T -1034))
-((-4362 (*1 *1 *2) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1034 *3 *4 *5 *2 *6)) (-4 *2 (-949 *3 *4 *5)) (-14 *6 (-644 *2)))) (-2512 (*1 *1 *2) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1034 *3 *4 *5 *2 *6)) (-4 *2 (-949 *3 *4 *5)) (-14 *6 (-644 *2)))) (-4350 (*1 *2 *1) (-12 (-4 *2 (-949 *3 *4 *5)) (-5 *1 (-1034 *3 *4 *5 *2 *6)) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-14 *6 (-644 *2)))))
-(-13 (-172) (-38 |#1|) (-10 -8 (-15 -4362 ($ |#4|)) (-15 -2512 ($ |#4|)) (-15 -4350 (|#4| $))))
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL)) (-1537 (((-1269) $ (-1175) (-1175)) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-4046 (((-112) (-112)) 43)) (-1767 (((-112) (-112)) 42)) (-3874 (((-52) $ (-1175) (-52)) NIL)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-2414 (((-3 (-52) "failed") (-1175) $) NIL)) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-3066 (($ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-3 (-52) "failed") (-1175) $) NIL)) (-2651 (($ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (((-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-1332 (((-52) $ (-1175) (-52)) NIL (|has| $ (-6 -4418)))) (-3137 (((-52) $ (-1175)) NIL)) (-3372 (((-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-644 (-52)) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-1175) $) NIL (|has| (-1175) (-850)))) (-2404 (((-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-644 (-52)) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-52) (-1099))))) (-1544 (((-1175) $) NIL (|has| (-1175) (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4418))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-3949 (((-644 (-1175)) $) 37)) (-3221 (((-112) (-1175) $) NIL)) (-3119 (((-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL)) (-4265 (($ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL)) (-1922 (((-644 (-1175)) $) NIL)) (-2040 (((-112) (-1175) $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-4062 (((-52) $) NIL (|has| (-1175) (-850)))) (-2126 (((-3 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) "failed") (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL)) (-1720 (($ $ (-52)) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))))) NIL (-12 (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (($ $ (-295 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL (-12 (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (($ $ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) NIL (-12 (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (($ $ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL (-12 (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (($ $ (-644 (-52)) (-644 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-295 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-644 (-295 (-52)))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-52) (-1099))))) (-2784 (((-644 (-52)) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 (((-52) $ (-1175)) 39) (((-52) $ (-1175) (-52)) NIL)) (-3879 (($) NIL) (($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (((-771) (-52) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-52) (-1099)))) (((-771) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL)) (-2512 (((-862) $) 41 (-2805 (|has| (-52) (-613 (-862))) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-613 (-862)))))) (-3122 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1035) (-13 (-1190 (-1175) (-52)) (-10 -7 (-15 -4046 ((-112) (-112))) (-15 -1767 ((-112) (-112))) (-6 -4417)))) (T -1035))
-((-4046 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1035)))) (-1767 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1035)))))
-(-13 (-1190 (-1175) (-52)) (-10 -7 (-15 -4046 ((-112) (-112))) (-15 -1767 ((-112) (-112))) (-6 -4417)))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1374 (((-1134) $) 9)) (-2512 (((-862) $) 15) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1036) (-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $))))) (T -1036))
-((-1374 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1036)))))
-(-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $))))
-((-1756 ((|#2| $) 10)))
-(((-1037 |#1| |#2|) (-10 -8 (-15 -1756 (|#2| |#1|))) (-1038 |#2|) (-1214)) (T -1037))
-NIL
-(-10 -8 (-15 -1756 (|#2| |#1|)))
-((-2977 (((-3 |#1| "failed") $) 9)) (-1756 ((|#1| $) 8)) (-2512 (($ |#1|) 6)))
+((-4159 (((-644 (-381)) (-952 (-566)) (-381)) 28) (((-644 (-381)) (-952 (-409 (-566))) (-381)) 27)) (-2774 (((-644 (-644 (-381))) (-644 (-952 (-566))) (-644 (-1175)) (-381)) 37)))
+(((-1023) (-10 -7 (-15 -4159 ((-644 (-381)) (-952 (-409 (-566))) (-381))) (-15 -4159 ((-644 (-381)) (-952 (-566)) (-381))) (-15 -2774 ((-644 (-644 (-381))) (-644 (-952 (-566))) (-644 (-1175)) (-381))))) (T -1023))
+((-2774 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-644 (-1175))) (-5 *2 (-644 (-644 (-381)))) (-5 *1 (-1023)) (-5 *5 (-381)))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-952 (-566))) (-5 *2 (-644 (-381))) (-5 *1 (-1023)) (-5 *4 (-381)))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *2 (-644 (-381))) (-5 *1 (-1023)) (-5 *4 (-381)))))
+(-10 -7 (-15 -4159 ((-644 (-381)) (-952 (-409 (-566))) (-381))) (-15 -4159 ((-644 (-381)) (-952 (-566)) (-381))) (-15 -2774 ((-644 (-644 (-381))) (-644 (-952 (-566))) (-644 (-1175)) (-381))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 75)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2484 (($ $) NIL) (($ $ (-921)) NIL) (($ (-409 (-566))) NIL) (($ (-566)) NIL)) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) 70)) (-3877 (($) NIL T CONST)) (-2778 (((-3 $ "failed") (-1171 $) (-921) (-862)) NIL) (((-3 $ "failed") (-1171 $) (-921)) 55)) (-3066 (((-3 (-409 (-566)) "failed") $) NIL (|has| (-409 (-566)) (-1038 (-409 (-566))))) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#1| "failed") $) 116) (((-3 (-566) "failed") $) NIL (-2805 (|has| (-409 (-566)) (-1038 (-566))) (|has| |#1| (-1038 (-566)))))) (-1867 (((-409 (-566)) $) 17 (|has| (-409 (-566)) (-1038 (-409 (-566))))) (((-409 (-566)) $) 17) ((|#1| $) 117) (((-566) $) NIL (-2805 (|has| (-409 (-566)) (-1038 (-566))) (|has| |#1| (-1038 (-566)))))) (-2018 (($ $ (-862)) 47)) (-2035 (($ $ (-862)) 48)) (-2949 (($ $ $) NIL)) (-2150 (((-409 (-566)) $ $) 21)) (-2928 (((-3 $ "failed") $) 88)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-1533 (((-112) $) 66)) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL)) (-2917 (((-112) $) 69)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-3925 (((-3 (-1171 $) "failed") $) 83)) (-4297 (((-3 (-862) "failed") $) 82)) (-2274 (((-3 (-1171 $) "failed") $) 80)) (-4129 (((-3 (-1060 $ (-1171 $)) "failed") $) 78)) (-2197 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 89)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ (-644 $)) NIL) (($ $ $) NIL)) (-2473 (((-420 $) $) NIL)) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-3780 (((-862) $) 87) (($ (-566)) NIL) (($ (-409 (-566))) NIL) (($ $) 63) (($ (-409 (-566))) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL) (($ |#1|) 119)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-3651 (((-409 (-566)) $ $) 27)) (-2798 (((-644 $) (-1171 $)) 61) (((-644 $) (-1171 (-409 (-566)))) NIL) (((-644 $) (-1171 (-566))) NIL) (((-644 $) (-952 $)) NIL) (((-644 $) (-952 (-409 (-566)))) NIL) (((-644 $) (-952 (-566))) NIL)) (-3230 (($ (-1060 $ (-1171 $)) (-862)) 46)) (-3333 (($ $) 22)) (-2493 (($) 32 T CONST)) (-4333 (($) 39 T CONST)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 76)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 24)) (-3062 (($ $ $) 37)) (-3051 (($ $) 38) (($ $ $) 74)) (-3040 (($ $ $) 112)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL) (($ $ (-409 (-566))) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 98) (($ $ $) 104) (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL) (($ (-566) $) 98) (($ $ (-566)) NIL) (($ (-409 (-566)) $) NIL) (($ $ (-409 (-566))) NIL) (($ |#1| $) 102) (($ $ |#1|) NIL)))
+(((-1024 |#1|) (-13 (-1012) (-413 |#1|) (-38 |#1|) (-10 -8 (-15 -3230 ($ (-1060 $ (-1171 $)) (-862))) (-15 -4129 ((-3 (-1060 $ (-1171 $)) "failed") $)) (-15 -2150 ((-409 (-566)) $ $)))) (-13 (-848) (-365) (-1022))) (T -1024))
+((-3230 (*1 *1 *2 *3) (-12 (-5 *2 (-1060 (-1024 *4) (-1171 (-1024 *4)))) (-5 *3 (-862)) (-5 *1 (-1024 *4)) (-4 *4 (-13 (-848) (-365) (-1022))))) (-4129 (*1 *2 *1) (|partial| -12 (-5 *2 (-1060 (-1024 *3) (-1171 (-1024 *3)))) (-5 *1 (-1024 *3)) (-4 *3 (-13 (-848) (-365) (-1022))))) (-2150 (*1 *2 *1 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1024 *3)) (-4 *3 (-13 (-848) (-365) (-1022))))))
+(-13 (-1012) (-413 |#1|) (-38 |#1|) (-10 -8 (-15 -3230 ($ (-1060 $ (-1171 $)) (-862))) (-15 -4129 ((-3 (-1060 $ (-1171 $)) "failed") $)) (-15 -2150 ((-409 (-566)) $ $))))
+((-2685 (((-2 (|:| -4257 |#2|) (|:| -1746 (-644 |#1|))) |#2| (-644 |#1|)) 32) ((|#2| |#2| |#1|) 27)))
+(((-1025 |#1| |#2|) (-10 -7 (-15 -2685 (|#2| |#2| |#1|)) (-15 -2685 ((-2 (|:| -4257 |#2|) (|:| -1746 (-644 |#1|))) |#2| (-644 |#1|)))) (-365) (-656 |#1|)) (T -1025))
+((-2685 (*1 *2 *3 *4) (-12 (-4 *5 (-365)) (-5 *2 (-2 (|:| -4257 *3) (|:| -1746 (-644 *5)))) (-5 *1 (-1025 *5 *3)) (-5 *4 (-644 *5)) (-4 *3 (-656 *5)))) (-2685 (*1 *2 *2 *3) (-12 (-4 *3 (-365)) (-5 *1 (-1025 *3 *2)) (-4 *2 (-656 *3)))))
+(-10 -7 (-15 -2685 (|#2| |#2| |#1|)) (-15 -2685 ((-2 (|:| -4257 |#2|) (|:| -1746 (-644 |#1|))) |#2| (-644 |#1|))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2583 ((|#1| $ |#1|) 14)) (-3916 ((|#1| $ |#1|) 12)) (-1910 (($ |#1|) 10)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4393 ((|#1| $) 11)) (-1826 ((|#1| $) 13)) (-3780 (((-862) $) 21 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2950 (((-112) $ $) 9)))
+(((-1026 |#1|) (-13 (-1214) (-10 -8 (-15 -1910 ($ |#1|)) (-15 -4393 (|#1| $)) (-15 -3916 (|#1| $ |#1|)) (-15 -1826 (|#1| $)) (-15 -2583 (|#1| $ |#1|)) (-15 -2950 ((-112) $ $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|))) (-1214)) (T -1026))
+((-1910 (*1 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))) (-4393 (*1 *2 *1) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))) (-3916 (*1 *2 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))) (-1826 (*1 *2 *1) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))) (-2583 (*1 *2 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))) (-2950 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1026 *3)) (-4 *3 (-1214)))))
+(-13 (-1214) (-10 -8 (-15 -1910 ($ |#1|)) (-15 -4393 (|#1| $)) (-15 -3916 (|#1| $ |#1|)) (-15 -1826 (|#1| $)) (-15 -2583 (|#1| $ |#1|)) (-15 -2950 ((-112) $ $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|)))
+((-3009 (((-112) $ $) NIL)) (-3043 (((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 |#4|)))) (-644 |#4|)) NIL)) (-3804 (((-644 $) (-644 |#4|)) 118) (((-644 $) (-644 |#4|) (-112)) 119) (((-644 $) (-644 |#4|) (-112) (-112)) 117) (((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112)) 120)) (-2608 (((-644 |#3|) $) NIL)) (-1390 (((-112) $) NIL)) (-3455 (((-112) $) NIL (|has| |#1| (-558)))) (-1702 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3713 ((|#4| |#4| $) NIL)) (-2179 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| $) 112)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-1386 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414))) (((-3 |#4| "failed") $ |#3|) 66)) (-3877 (($) NIL T CONST)) (-3310 (((-112) $) 29 (|has| |#1| (-558)))) (-3367 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2895 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3219 (((-112) $) NIL (|has| |#1| (-558)))) (-3790 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4239 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) NIL)) (-1867 (($ (-644 |#4|)) NIL)) (-4112 (((-3 $ "failed") $) 45)) (-3963 ((|#4| |#4| $) 69)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-2661 (($ |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 85 (|has| |#1| (-558)))) (-1991 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3517 ((|#4| |#4| $) NIL)) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4414))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4143 (((-2 (|:| -1713 (-644 |#4|)) (|:| -3537 (-644 |#4|))) $) NIL)) (-1535 (((-112) |#4| $) NIL)) (-2976 (((-112) |#4| $) NIL)) (-1961 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4016 (((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112)) 133)) (-3799 (((-644 |#4|) $) 18 (|has| $ (-6 -4414)))) (-2848 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1887 ((|#3| $) 38)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#4|) $) 19 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-3117 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) 23)) (-1711 (((-644 |#3|) $) NIL)) (-4113 (((-112) |#3| $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-2924 (((-3 |#4| (-644 $)) |#4| |#4| $) NIL)) (-2165 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| |#4| $) 110)) (-2680 (((-3 |#4| "failed") $) 42)) (-1468 (((-644 $) |#4| $) 93)) (-2487 (((-3 (-112) (-644 $)) |#4| $) NIL)) (-1627 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 $))) |#4| $) 103) (((-112) |#4| $) 64)) (-3147 (((-644 $) |#4| $) 115) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) 116) (((-644 $) |#4| (-644 $)) NIL)) (-3191 (((-644 $) (-644 |#4|) (-112) (-112) (-112)) 128)) (-2284 (($ |#4| $) 82) (($ (-644 |#4|) $) 83) (((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 79)) (-3329 (((-644 |#4|) $) NIL)) (-2337 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1569 ((|#4| |#4| $) NIL)) (-3886 (((-112) $ $) NIL)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-2531 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1671 ((|#4| |#4| $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 (((-3 |#4| "failed") $) 40)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1775 (((-3 $ "failed") $ |#4|) 59)) (-2295 (($ $ |#4|) NIL) (((-644 $) |#4| $) 95) (((-644 $) |#4| (-644 $)) NIL) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) 89)) (-3044 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 17)) (-1793 (($) 14)) (-2108 (((-771) $) NIL)) (-4067 (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) 13)) (-3204 (((-538) $) NIL (|has| |#4| (-614 (-538))))) (-3791 (($ (-644 |#4|)) 22)) (-2363 (($ $ |#3|) 52)) (-3513 (($ $ |#3|) 54)) (-1360 (($ $) NIL)) (-3130 (($ $ |#3|) NIL)) (-3780 (((-862) $) 35) (((-644 |#4|) $) 46)) (-3542 (((-771) $) NIL (|has| |#3| (-370)))) (-3801 (((-112) $ $) NIL)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3870 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) NIL)) (-2607 (((-644 $) |#4| $) 92) (((-644 $) |#4| (-644 $)) NIL) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) NIL)) (-1583 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3830 (((-644 |#3|) $) NIL)) (-3917 (((-112) |#4| $) NIL)) (-3258 (((-112) |#3| $) 65)) (-2950 (((-112) $ $) NIL)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1027 |#1| |#2| |#3| |#4|) (-13 (-1070 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2284 ((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3804 ((-644 $) (-644 |#4|) (-112) (-112))) (-15 -3804 ((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112))) (-15 -3191 ((-644 $) (-644 |#4|) (-112) (-112) (-112))) (-15 -4016 ((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112))))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -1027))
+((-2284 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1027 *5 *6 *7 *3))) (-5 *1 (-1027 *5 *6 *7 *3)) (-4 *3 (-1064 *5 *6 *7)))) (-3804 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8)))) (-3804 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8)))) (-3191 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8)))) (-4016 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-644 *8)) (|:| |towers| (-644 (-1027 *5 *6 *7 *8))))) (-5 *1 (-1027 *5 *6 *7 *8)) (-5 *3 (-644 *8)))))
+(-13 (-1070 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2284 ((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3804 ((-644 $) (-644 |#4|) (-112) (-112))) (-15 -3804 ((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112))) (-15 -3191 ((-644 $) (-644 |#4|) (-112) (-112) (-112))) (-15 -4016 ((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112)))))
+((-3378 (((-644 (-689 |#1|)) (-644 (-689 |#1|))) 73) (((-689 |#1|) (-689 |#1|)) 72) (((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-644 (-689 |#1|))) 71) (((-689 |#1|) (-689 |#1|) (-689 |#1|)) 68)) (-1319 (((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921)) 66) (((-689 |#1|) (-689 |#1|) (-921)) 65)) (-3000 (((-644 (-689 (-566))) (-644 (-644 (-566)))) 84) (((-644 (-689 (-566))) (-644 (-905 (-566))) (-566)) 83) (((-689 (-566)) (-644 (-566))) 80) (((-689 (-566)) (-905 (-566)) (-566)) 78)) (-1458 (((-689 (-952 |#1|)) (-771)) 98)) (-4250 (((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921)) 52 (|has| |#1| (-6 (-4416 "*")))) (((-689 |#1|) (-689 |#1|) (-921)) 50 (|has| |#1| (-6 (-4416 "*"))))))
+(((-1028 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4416 "*"))) (-15 -4250 ((-689 |#1|) (-689 |#1|) (-921))) |%noBranch|) (IF (|has| |#1| (-6 (-4416 "*"))) (-15 -4250 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921))) |%noBranch|) (-15 -1458 ((-689 (-952 |#1|)) (-771))) (-15 -1319 ((-689 |#1|) (-689 |#1|) (-921))) (-15 -1319 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921))) (-15 -3378 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -3378 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -3378 ((-689 |#1|) (-689 |#1|))) (-15 -3378 ((-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -3000 ((-689 (-566)) (-905 (-566)) (-566))) (-15 -3000 ((-689 (-566)) (-644 (-566)))) (-15 -3000 ((-644 (-689 (-566))) (-644 (-905 (-566))) (-566))) (-15 -3000 ((-644 (-689 (-566))) (-644 (-644 (-566)))))) (-1049)) (T -1028))
+((-3000 (*1 *2 *3) (-12 (-5 *3 (-644 (-644 (-566)))) (-5 *2 (-644 (-689 (-566)))) (-5 *1 (-1028 *4)) (-4 *4 (-1049)))) (-3000 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-905 (-566)))) (-5 *4 (-566)) (-5 *2 (-644 (-689 *4))) (-5 *1 (-1028 *5)) (-4 *5 (-1049)))) (-3000 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1028 *4)) (-4 *4 (-1049)))) (-3000 (*1 *2 *3 *4) (-12 (-5 *3 (-905 (-566))) (-5 *4 (-566)) (-5 *2 (-689 *4)) (-5 *1 (-1028 *5)) (-4 *5 (-1049)))) (-3378 (*1 *2 *2) (-12 (-5 *2 (-644 (-689 *3))) (-4 *3 (-1049)) (-5 *1 (-1028 *3)))) (-3378 (*1 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-1028 *3)))) (-3378 (*1 *2 *2 *2) (-12 (-5 *2 (-644 (-689 *3))) (-4 *3 (-1049)) (-5 *1 (-1028 *3)))) (-3378 (*1 *2 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-1028 *3)))) (-1319 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-689 *4))) (-5 *3 (-921)) (-4 *4 (-1049)) (-5 *1 (-1028 *4)))) (-1319 (*1 *2 *2 *3) (-12 (-5 *2 (-689 *4)) (-5 *3 (-921)) (-4 *4 (-1049)) (-5 *1 (-1028 *4)))) (-1458 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-689 (-952 *4))) (-5 *1 (-1028 *4)) (-4 *4 (-1049)))) (-4250 (*1 *2 *2 *3) (-12 (-5 *2 (-644 (-689 *4))) (-5 *3 (-921)) (|has| *4 (-6 (-4416 "*"))) (-4 *4 (-1049)) (-5 *1 (-1028 *4)))) (-4250 (*1 *2 *2 *3) (-12 (-5 *2 (-689 *4)) (-5 *3 (-921)) (|has| *4 (-6 (-4416 "*"))) (-4 *4 (-1049)) (-5 *1 (-1028 *4)))))
+(-10 -7 (IF (|has| |#1| (-6 (-4416 "*"))) (-15 -4250 ((-689 |#1|) (-689 |#1|) (-921))) |%noBranch|) (IF (|has| |#1| (-6 (-4416 "*"))) (-15 -4250 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921))) |%noBranch|) (-15 -1458 ((-689 (-952 |#1|)) (-771))) (-15 -1319 ((-689 |#1|) (-689 |#1|) (-921))) (-15 -1319 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-921))) (-15 -3378 ((-689 |#1|) (-689 |#1|) (-689 |#1|))) (-15 -3378 ((-644 (-689 |#1|)) (-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -3378 ((-689 |#1|) (-689 |#1|))) (-15 -3378 ((-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -3000 ((-689 (-566)) (-905 (-566)) (-566))) (-15 -3000 ((-689 (-566)) (-644 (-566)))) (-15 -3000 ((-644 (-689 (-566))) (-644 (-905 (-566))) (-566))) (-15 -3000 ((-644 (-689 (-566))) (-644 (-644 (-566))))))
+((-3341 (((-689 |#1|) (-644 (-689 |#1|)) (-1264 |#1|)) 71 (|has| |#1| (-308)))) (-3920 (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 (-1264 |#1|))) 112 (|has| |#1| (-365))) (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 |#1|)) 119 (|has| |#1| (-365)))) (-2573 (((-1264 |#1|) (-644 (-1264 |#1|)) (-566)) 137 (-12 (|has| |#1| (-365)) (|has| |#1| (-370))))) (-3306 (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-921)) 125 (-12 (|has| |#1| (-365)) (|has| |#1| (-370)))) (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112)) 124 (-12 (|has| |#1| (-365)) (|has| |#1| (-370)))) (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|))) 123 (-12 (|has| |#1| (-365)) (|has| |#1| (-370)))) (((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112) (-566) (-566)) 122 (-12 (|has| |#1| (-365)) (|has| |#1| (-370))))) (-3658 (((-112) (-644 (-689 |#1|))) 105 (|has| |#1| (-365))) (((-112) (-644 (-689 |#1|)) (-566)) 108 (|has| |#1| (-365)))) (-3946 (((-1264 (-1264 |#1|)) (-644 (-689 |#1|)) (-1264 |#1|)) 68 (|has| |#1| (-308)))) (-2830 (((-689 |#1|) (-644 (-689 |#1|)) (-689 |#1|)) 48)) (-1391 (((-689 |#1|) (-1264 (-1264 |#1|))) 41)) (-2561 (((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-566)) 96 (|has| |#1| (-365))) (((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|))) 95 (|has| |#1| (-365))) (((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-112) (-566)) 103 (|has| |#1| (-365)))))
+(((-1029 |#1|) (-10 -7 (-15 -1391 ((-689 |#1|) (-1264 (-1264 |#1|)))) (-15 -2830 ((-689 |#1|) (-644 (-689 |#1|)) (-689 |#1|))) (IF (|has| |#1| (-308)) (PROGN (-15 -3946 ((-1264 (-1264 |#1|)) (-644 (-689 |#1|)) (-1264 |#1|))) (-15 -3341 ((-689 |#1|) (-644 (-689 |#1|)) (-1264 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -2561 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-112) (-566))) (-15 -2561 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -2561 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-566))) (-15 -3658 ((-112) (-644 (-689 |#1|)) (-566))) (-15 -3658 ((-112) (-644 (-689 |#1|)))) (-15 -3920 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 |#1|))) (-15 -3920 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 (-1264 |#1|))))) |%noBranch|) (IF (|has| |#1| (-370)) (IF (|has| |#1| (-365)) (PROGN (-15 -3306 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112) (-566) (-566))) (-15 -3306 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)))) (-15 -3306 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112))) (-15 -3306 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-921))) (-15 -2573 ((-1264 |#1|) (-644 (-1264 |#1|)) (-566)))) |%noBranch|) |%noBranch|)) (-1049)) (T -1029))
+((-2573 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-1264 *5))) (-5 *4 (-566)) (-5 *2 (-1264 *5)) (-5 *1 (-1029 *5)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049)))) (-3306 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049)) (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5)) (-5 *3 (-644 (-689 *5))))) (-3306 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049)) (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5)) (-5 *3 (-644 (-689 *5))))) (-3306 (*1 *2 *3) (-12 (-4 *4 (-365)) (-4 *4 (-370)) (-4 *4 (-1049)) (-5 *2 (-644 (-644 (-689 *4)))) (-5 *1 (-1029 *4)) (-5 *3 (-644 (-689 *4))))) (-3306 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-112)) (-5 *5 (-566)) (-4 *6 (-365)) (-4 *6 (-370)) (-4 *6 (-1049)) (-5 *2 (-644 (-644 (-689 *6)))) (-5 *1 (-1029 *6)) (-5 *3 (-644 (-689 *6))))) (-3920 (*1 *2 *3 *4) (-12 (-5 *4 (-1264 (-1264 *5))) (-4 *5 (-365)) (-4 *5 (-1049)) (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5)) (-5 *3 (-644 (-689 *5))))) (-3920 (*1 *2 *3 *4) (-12 (-5 *4 (-1264 *5)) (-4 *5 (-365)) (-4 *5 (-1049)) (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5)) (-5 *3 (-644 (-689 *5))))) (-3658 (*1 *2 *3) (-12 (-5 *3 (-644 (-689 *4))) (-4 *4 (-365)) (-4 *4 (-1049)) (-5 *2 (-112)) (-5 *1 (-1029 *4)))) (-3658 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-566)) (-4 *5 (-365)) (-4 *5 (-1049)) (-5 *2 (-112)) (-5 *1 (-1029 *5)))) (-2561 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-566)) (-5 *2 (-689 *5)) (-5 *1 (-1029 *5)) (-4 *5 (-365)) (-4 *5 (-1049)))) (-2561 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-689 *4))) (-5 *2 (-689 *4)) (-5 *1 (-1029 *4)) (-4 *4 (-365)) (-4 *4 (-1049)))) (-2561 (*1 *2 *3 *3 *4 *5) (-12 (-5 *3 (-644 (-689 *6))) (-5 *4 (-112)) (-5 *5 (-566)) (-5 *2 (-689 *6)) (-5 *1 (-1029 *6)) (-4 *6 (-365)) (-4 *6 (-1049)))) (-3341 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-1264 *5)) (-4 *5 (-308)) (-4 *5 (-1049)) (-5 *2 (-689 *5)) (-5 *1 (-1029 *5)))) (-3946 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-689 *5))) (-4 *5 (-308)) (-4 *5 (-1049)) (-5 *2 (-1264 (-1264 *5))) (-5 *1 (-1029 *5)) (-5 *4 (-1264 *5)))) (-2830 (*1 *2 *3 *2) (-12 (-5 *3 (-644 (-689 *4))) (-5 *2 (-689 *4)) (-4 *4 (-1049)) (-5 *1 (-1029 *4)))) (-1391 (*1 *2 *3) (-12 (-5 *3 (-1264 (-1264 *4))) (-4 *4 (-1049)) (-5 *2 (-689 *4)) (-5 *1 (-1029 *4)))))
+(-10 -7 (-15 -1391 ((-689 |#1|) (-1264 (-1264 |#1|)))) (-15 -2830 ((-689 |#1|) (-644 (-689 |#1|)) (-689 |#1|))) (IF (|has| |#1| (-308)) (PROGN (-15 -3946 ((-1264 (-1264 |#1|)) (-644 (-689 |#1|)) (-1264 |#1|))) (-15 -3341 ((-689 |#1|) (-644 (-689 |#1|)) (-1264 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -2561 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-112) (-566))) (-15 -2561 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -2561 ((-689 |#1|) (-644 (-689 |#1|)) (-644 (-689 |#1|)) (-566))) (-15 -3658 ((-112) (-644 (-689 |#1|)) (-566))) (-15 -3658 ((-112) (-644 (-689 |#1|)))) (-15 -3920 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 |#1|))) (-15 -3920 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-1264 (-1264 |#1|))))) |%noBranch|) (IF (|has| |#1| (-370)) (IF (|has| |#1| (-365)) (PROGN (-15 -3306 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112) (-566) (-566))) (-15 -3306 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)))) (-15 -3306 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-112))) (-15 -3306 ((-644 (-644 (-689 |#1|))) (-644 (-689 |#1|)) (-921))) (-15 -2573 ((-1264 |#1|) (-644 (-1264 |#1|)) (-566)))) |%noBranch|) |%noBranch|))
+((-4068 ((|#1| (-921) |#1|) 18)))
+(((-1030 |#1|) (-10 -7 (-15 -4068 (|#1| (-921) |#1|))) (-13 (-1099) (-10 -8 (-15 -3040 ($ $ $))))) (T -1030))
+((-4068 (*1 *2 *3 *2) (-12 (-5 *3 (-921)) (-5 *1 (-1030 *2)) (-4 *2 (-13 (-1099) (-10 -8 (-15 -3040 ($ $ $))))))))
+(-10 -7 (-15 -4068 (|#1| (-921) |#1|)))
+((-3476 (((-644 (-2 (|:| |radval| (-317 (-566))) (|:| |radmult| (-566)) (|:| |radvect| (-644 (-689 (-317 (-566))))))) (-689 (-409 (-952 (-566))))) 67)) (-3482 (((-644 (-689 (-317 (-566)))) (-317 (-566)) (-689 (-409 (-952 (-566))))) 52)) (-3538 (((-644 (-317 (-566))) (-689 (-409 (-952 (-566))))) 45)) (-1546 (((-644 (-689 (-317 (-566)))) (-689 (-409 (-952 (-566))))) 88)) (-3095 (((-689 (-317 (-566))) (-689 (-317 (-566)))) 38)) (-4008 (((-644 (-689 (-317 (-566)))) (-644 (-689 (-317 (-566))))) 76)) (-3694 (((-3 (-689 (-317 (-566))) "failed") (-689 (-409 (-952 (-566))))) 85)))
+(((-1031) (-10 -7 (-15 -3476 ((-644 (-2 (|:| |radval| (-317 (-566))) (|:| |radmult| (-566)) (|:| |radvect| (-644 (-689 (-317 (-566))))))) (-689 (-409 (-952 (-566)))))) (-15 -3482 ((-644 (-689 (-317 (-566)))) (-317 (-566)) (-689 (-409 (-952 (-566)))))) (-15 -3538 ((-644 (-317 (-566))) (-689 (-409 (-952 (-566)))))) (-15 -3694 ((-3 (-689 (-317 (-566))) "failed") (-689 (-409 (-952 (-566)))))) (-15 -3095 ((-689 (-317 (-566))) (-689 (-317 (-566))))) (-15 -4008 ((-644 (-689 (-317 (-566)))) (-644 (-689 (-317 (-566)))))) (-15 -1546 ((-644 (-689 (-317 (-566)))) (-689 (-409 (-952 (-566)))))))) (T -1031))
+((-1546 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-952 (-566))))) (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031)))) (-4008 (*1 *2 *2) (-12 (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031)))) (-3095 (*1 *2 *2) (-12 (-5 *2 (-689 (-317 (-566)))) (-5 *1 (-1031)))) (-3694 (*1 *2 *3) (|partial| -12 (-5 *3 (-689 (-409 (-952 (-566))))) (-5 *2 (-689 (-317 (-566)))) (-5 *1 (-1031)))) (-3538 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-952 (-566))))) (-5 *2 (-644 (-317 (-566)))) (-5 *1 (-1031)))) (-3482 (*1 *2 *3 *4) (-12 (-5 *4 (-689 (-409 (-952 (-566))))) (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031)) (-5 *3 (-317 (-566))))) (-3476 (*1 *2 *3) (-12 (-5 *3 (-689 (-409 (-952 (-566))))) (-5 *2 (-644 (-2 (|:| |radval| (-317 (-566))) (|:| |radmult| (-566)) (|:| |radvect| (-644 (-689 (-317 (-566)))))))) (-5 *1 (-1031)))))
+(-10 -7 (-15 -3476 ((-644 (-2 (|:| |radval| (-317 (-566))) (|:| |radmult| (-566)) (|:| |radvect| (-644 (-689 (-317 (-566))))))) (-689 (-409 (-952 (-566)))))) (-15 -3482 ((-644 (-689 (-317 (-566)))) (-317 (-566)) (-689 (-409 (-952 (-566)))))) (-15 -3538 ((-644 (-317 (-566))) (-689 (-409 (-952 (-566)))))) (-15 -3694 ((-3 (-689 (-317 (-566))) "failed") (-689 (-409 (-952 (-566)))))) (-15 -3095 ((-689 (-317 (-566))) (-689 (-317 (-566))))) (-15 -4008 ((-644 (-689 (-317 (-566)))) (-644 (-689 (-317 (-566)))))) (-15 -1546 ((-644 (-689 (-317 (-566)))) (-689 (-409 (-952 (-566)))))))
+((-2342 ((|#1| |#1| (-921)) 18)))
+(((-1032 |#1|) (-10 -7 (-15 -2342 (|#1| |#1| (-921)))) (-13 (-1099) (-10 -8 (-15 * ($ $ $))))) (T -1032))
+((-2342 (*1 *2 *2 *3) (-12 (-5 *3 (-921)) (-5 *1 (-1032 *2)) (-4 *2 (-13 (-1099) (-10 -8 (-15 * ($ $ $))))))))
+(-10 -7 (-15 -2342 (|#1| |#1| (-921))))
+((-3780 ((|#1| (-313)) 11) (((-1269) |#1|) 9)))
+(((-1033 |#1|) (-10 -7 (-15 -3780 ((-1269) |#1|)) (-15 -3780 (|#1| (-313)))) (-1214)) (T -1033))
+((-3780 (*1 *2 *3) (-12 (-5 *3 (-313)) (-5 *1 (-1033 *2)) (-4 *2 (-1214)))) (-3780 (*1 *2 *3) (-12 (-5 *2 (-1269)) (-5 *1 (-1033 *3)) (-4 *3 (-1214)))))
+(-10 -7 (-15 -3780 ((-1269) |#1|)) (-15 -3780 (|#1| (-313))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-1580 (($ |#4|) 25)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-1567 ((|#4| $) 27)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 46) (($ (-566)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-3996 (((-771)) 43 T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 21 T CONST)) (-4333 (($) 23 T CONST)) (-2950 (((-112) $ $) 40)) (-3051 (($ $) 31) (($ $ $) NIL)) (-3040 (($ $ $) 29)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 36) (($ $ $) 33) (($ |#1| $) 38) (($ $ |#1|) NIL)))
+(((-1034 |#1| |#2| |#3| |#4| |#5|) (-13 (-172) (-38 |#1|) (-10 -8 (-15 -1580 ($ |#4|)) (-15 -3780 ($ |#4|)) (-15 -1567 (|#4| $)))) (-365) (-793) (-850) (-949 |#1| |#2| |#3|) (-644 |#4|)) (T -1034))
+((-1580 (*1 *1 *2) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1034 *3 *4 *5 *2 *6)) (-4 *2 (-949 *3 *4 *5)) (-14 *6 (-644 *2)))) (-3780 (*1 *1 *2) (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1034 *3 *4 *5 *2 *6)) (-4 *2 (-949 *3 *4 *5)) (-14 *6 (-644 *2)))) (-1567 (*1 *2 *1) (-12 (-4 *2 (-949 *3 *4 *5)) (-5 *1 (-1034 *3 *4 *5 *2 *6)) (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-14 *6 (-644 *2)))))
+(-13 (-172) (-38 |#1|) (-10 -8 (-15 -1580 ($ |#4|)) (-15 -3780 ($ |#4|)) (-15 -1567 (|#4| $))))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL)) (-2518 (((-1269) $ (-1175) (-1175)) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-1350 (((-112) (-112)) 43)) (-3016 (((-112) (-112)) 42)) (-3916 (((-52) $ (-1175) (-52)) NIL)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-2450 (((-3 (-52) "failed") (-1175) $) NIL)) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-1450 (($ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-3 (-52) "failed") (-1175) $) NIL)) (-2661 (($ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (((-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-3128 (((-52) $ (-1175) (-52)) NIL (|has| $ (-6 -4415)))) (-3059 (((-52) $ (-1175)) NIL)) (-3799 (((-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-644 (-52)) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-1175) $) NIL (|has| (-1175) (-850)))) (-3276 (((-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-644 (-52)) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-52) (-1099))))) (-2579 (((-1175) $) NIL (|has| (-1175) (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4415))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-4314 (((-644 (-1175)) $) 37)) (-3422 (((-112) (-1175) $) NIL)) (-3765 (((-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL)) (-2903 (($ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL)) (-2140 (((-644 (-1175)) $) NIL)) (-3935 (((-112) (-1175) $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-4101 (((-52) $) NIL (|has| (-1175) (-850)))) (-3591 (((-3 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) "failed") (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL)) (-3750 (($ $ (-52)) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))))) NIL (-12 (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (($ $ (-295 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL (-12 (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (($ $ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) NIL (-12 (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (($ $ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL (-12 (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (($ $ (-644 (-52)) (-644 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-295 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-644 (-295 (-52)))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-52) (-1099))))) (-2684 (((-644 (-52)) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 (((-52) $ (-1175)) 39) (((-52) $ (-1175) (-52)) NIL)) (-3551 (($) NIL) (($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (((-771) (-52) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-52) (-1099)))) (((-771) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL)) (-3780 (((-862) $) 41 (-2805 (|has| (-52) (-613 (-862))) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-613 (-862)))))) (-3801 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1035) (-13 (-1190 (-1175) (-52)) (-10 -7 (-15 -1350 ((-112) (-112))) (-15 -3016 ((-112) (-112))) (-6 -4414)))) (T -1035))
+((-1350 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1035)))) (-3016 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1035)))))
+(-13 (-1190 (-1175) (-52)) (-10 -7 (-15 -1350 ((-112) (-112))) (-15 -3016 ((-112) (-112))) (-6 -4414)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1424 (((-1134) $) 9)) (-3780 (((-862) $) 15) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1036) (-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $))))) (T -1036))
+((-1424 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1036)))))
+(-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $))))
+((-1867 ((|#2| $) 10)))
+(((-1037 |#1| |#2|) (-10 -8 (-15 -1867 (|#2| |#1|))) (-1038 |#2|) (-1214)) (T -1037))
+NIL
+(-10 -8 (-15 -1867 (|#2| |#1|)))
+((-3066 (((-3 |#1| "failed") $) 9)) (-1867 ((|#1| $) 8)) (-3780 (($ |#1|) 6)))
(((-1038 |#1|) (-140) (-1214)) (T -1038))
-((-2977 (*1 *2 *1) (|partial| -12 (-4 *1 (-1038 *2)) (-4 *2 (-1214)))) (-1756 (*1 *2 *1) (-12 (-4 *1 (-1038 *2)) (-4 *2 (-1214)))))
-(-13 (-616 |t#1|) (-10 -8 (-15 -2977 ((-3 |t#1| "failed") $)) (-15 -1756 (|t#1| $))))
+((-3066 (*1 *2 *1) (|partial| -12 (-4 *1 (-1038 *2)) (-4 *2 (-1214)))) (-1867 (*1 *2 *1) (-12 (-4 *1 (-1038 *2)) (-4 *2 (-1214)))))
+(-13 (-616 |t#1|) (-10 -8 (-15 -3066 ((-3 |t#1| "failed") $)) (-15 -1867 (|t#1| $))))
(((-616 |#1|) . T))
-((-2349 (((-644 (-644 (-295 (-409 (-952 |#2|))))) (-644 (-952 |#2|)) (-644 (-1175))) 38)))
-(((-1039 |#1| |#2|) (-10 -7 (-15 -2349 ((-644 (-644 (-295 (-409 (-952 |#2|))))) (-644 (-952 |#2|)) (-644 (-1175))))) (-558) (-13 (-558) (-1038 |#1|))) (T -1039))
-((-2349 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175))) (-4 *6 (-13 (-558) (-1038 *5))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *6)))))) (-5 *1 (-1039 *5 *6)))))
-(-10 -7 (-15 -2349 ((-644 (-644 (-295 (-409 (-952 |#2|))))) (-644 (-952 |#2|)) (-644 (-1175)))))
-((-2015 (((-381)) 17)) (-4197 (((-1 (-381)) (-381) (-381)) 22)) (-1454 (((-1 (-381)) (-771)) 50)) (-4188 (((-381)) 37)) (-3792 (((-1 (-381)) (-381) (-381)) 38)) (-4349 (((-381)) 29)) (-1887 (((-1 (-381)) (-381)) 30)) (-2609 (((-381) (-771)) 45)) (-3629 (((-1 (-381)) (-771)) 46)) (-2382 (((-1 (-381)) (-771) (-771)) 49)) (-3193 (((-1 (-381)) (-771) (-771)) 47)))
-(((-1040) (-10 -7 (-15 -2015 ((-381))) (-15 -4188 ((-381))) (-15 -4349 ((-381))) (-15 -2609 ((-381) (-771))) (-15 -4197 ((-1 (-381)) (-381) (-381))) (-15 -3792 ((-1 (-381)) (-381) (-381))) (-15 -1887 ((-1 (-381)) (-381))) (-15 -3629 ((-1 (-381)) (-771))) (-15 -3193 ((-1 (-381)) (-771) (-771))) (-15 -2382 ((-1 (-381)) (-771) (-771))) (-15 -1454 ((-1 (-381)) (-771))))) (T -1040))
-((-1454 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))) (-2382 (*1 *2 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))) (-3193 (*1 *2 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))) (-3629 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))) (-1887 (*1 *2 *3) (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381)))) (-3792 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381)))) (-4197 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381)))) (-2609 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-381)) (-5 *1 (-1040)))) (-4349 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))) (-4188 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))) (-2015 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))))
-(-10 -7 (-15 -2015 ((-381))) (-15 -4188 ((-381))) (-15 -4349 ((-381))) (-15 -2609 ((-381) (-771))) (-15 -4197 ((-1 (-381)) (-381) (-381))) (-15 -3792 ((-1 (-381)) (-381) (-381))) (-15 -1887 ((-1 (-381)) (-381))) (-15 -3629 ((-1 (-381)) (-771))) (-15 -3193 ((-1 (-381)) (-771) (-771))) (-15 -2382 ((-1 (-381)) (-771) (-771))) (-15 -1454 ((-1 (-381)) (-771))))
-((-2391 (((-420 |#1|) |#1|) 33)))
-(((-1041 |#1|) (-10 -7 (-15 -2391 ((-420 |#1|) |#1|))) (-1240 (-409 (-952 (-566))))) (T -1041))
-((-2391 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-1041 *3)) (-4 *3 (-1240 (-409 (-952 (-566))))))))
-(-10 -7 (-15 -2391 ((-420 |#1|) |#1|)))
-((-2314 (((-409 (-420 (-952 |#1|))) (-409 (-952 |#1|))) 14)))
-(((-1042 |#1|) (-10 -7 (-15 -2314 ((-409 (-420 (-952 |#1|))) (-409 (-952 |#1|))))) (-308)) (T -1042))
-((-2314 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-308)) (-5 *2 (-409 (-420 (-952 *4)))) (-5 *1 (-1042 *4)))))
-(-10 -7 (-15 -2314 ((-409 (-420 (-952 |#1|))) (-409 (-952 |#1|)))))
-((-2540 (((-644 (-1175)) (-409 (-952 |#1|))) 17)) (-2358 (((-409 (-1171 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175)) 24)) (-2530 (((-409 (-952 |#1|)) (-409 (-1171 (-409 (-952 |#1|)))) (-1175)) 26)) (-3339 (((-3 (-1175) "failed") (-409 (-952 |#1|))) 20)) (-2070 (((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-295 (-409 (-952 |#1|))))) 32) (((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|)))) 33) (((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-1175)) (-644 (-409 (-952 |#1|)))) 28) (((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|))) 29)) (-2512 (((-409 (-952 |#1|)) |#1|) 11)))
-(((-1043 |#1|) (-10 -7 (-15 -2540 ((-644 (-1175)) (-409 (-952 |#1|)))) (-15 -3339 ((-3 (-1175) "failed") (-409 (-952 |#1|)))) (-15 -2358 ((-409 (-1171 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175))) (-15 -2530 ((-409 (-952 |#1|)) (-409 (-1171 (-409 (-952 |#1|)))) (-1175))) (-15 -2070 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)))) (-15 -2070 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-1175)) (-644 (-409 (-952 |#1|))))) (-15 -2070 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -2070 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -2512 ((-409 (-952 |#1|)) |#1|))) (-558)) (T -1043))
-((-2512 (*1 *2 *3) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-1043 *3)) (-4 *3 (-558)))) (-2070 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-295 (-409 (-952 *4))))) (-5 *2 (-409 (-952 *4))) (-4 *4 (-558)) (-5 *1 (-1043 *4)))) (-2070 (*1 *2 *2 *3) (-12 (-5 *3 (-295 (-409 (-952 *4)))) (-5 *2 (-409 (-952 *4))) (-4 *4 (-558)) (-5 *1 (-1043 *4)))) (-2070 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-644 (-1175))) (-5 *4 (-644 (-409 (-952 *5)))) (-5 *2 (-409 (-952 *5))) (-4 *5 (-558)) (-5 *1 (-1043 *5)))) (-2070 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-409 (-952 *4))) (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-1043 *4)))) (-2530 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-1171 (-409 (-952 *5))))) (-5 *4 (-1175)) (-5 *2 (-409 (-952 *5))) (-5 *1 (-1043 *5)) (-4 *5 (-558)))) (-2358 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-558)) (-5 *2 (-409 (-1171 (-409 (-952 *5))))) (-5 *1 (-1043 *5)) (-5 *3 (-409 (-952 *5))))) (-3339 (*1 *2 *3) (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-5 *2 (-1175)) (-5 *1 (-1043 *4)))) (-2540 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-5 *2 (-644 (-1175))) (-5 *1 (-1043 *4)))))
-(-10 -7 (-15 -2540 ((-644 (-1175)) (-409 (-952 |#1|)))) (-15 -3339 ((-3 (-1175) "failed") (-409 (-952 |#1|)))) (-15 -2358 ((-409 (-1171 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175))) (-15 -2530 ((-409 (-952 |#1|)) (-409 (-1171 (-409 (-952 |#1|)))) (-1175))) (-15 -2070 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)))) (-15 -2070 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-1175)) (-644 (-409 (-952 |#1|))))) (-15 -2070 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -2070 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -2512 ((-409 (-952 |#1|)) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2342 (($) 18 T CONST)) (-3946 ((|#1| $) 23)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-4049 ((|#1| $) 22)) (-1843 ((|#1|) 20 T CONST)) (-2512 (((-862) $) 12)) (-2496 ((|#1| $) 21)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16)))
+((-3942 (((-644 (-644 (-295 (-409 (-952 |#2|))))) (-644 (-952 |#2|)) (-644 (-1175))) 38)))
+(((-1039 |#1| |#2|) (-10 -7 (-15 -3942 ((-644 (-644 (-295 (-409 (-952 |#2|))))) (-644 (-952 |#2|)) (-644 (-1175))))) (-558) (-13 (-558) (-1038 |#1|))) (T -1039))
+((-3942 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175))) (-4 *6 (-13 (-558) (-1038 *5))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *6)))))) (-5 *1 (-1039 *5 *6)))))
+(-10 -7 (-15 -3942 ((-644 (-644 (-295 (-409 (-952 |#2|))))) (-644 (-952 |#2|)) (-644 (-1175)))))
+((-3703 (((-381)) 17)) (-3495 (((-1 (-381)) (-381) (-381)) 22)) (-1493 (((-1 (-381)) (-771)) 50)) (-3397 (((-381)) 37)) (-3362 (((-1 (-381)) (-381) (-381)) 38)) (-4386 (((-381)) 29)) (-1792 (((-1 (-381)) (-381)) 30)) (-1508 (((-381) (-771)) 45)) (-2936 (((-1 (-381)) (-771)) 46)) (-2386 (((-1 (-381)) (-771) (-771)) 49)) (-3162 (((-1 (-381)) (-771) (-771)) 47)))
+(((-1040) (-10 -7 (-15 -3703 ((-381))) (-15 -3397 ((-381))) (-15 -4386 ((-381))) (-15 -1508 ((-381) (-771))) (-15 -3495 ((-1 (-381)) (-381) (-381))) (-15 -3362 ((-1 (-381)) (-381) (-381))) (-15 -1792 ((-1 (-381)) (-381))) (-15 -2936 ((-1 (-381)) (-771))) (-15 -3162 ((-1 (-381)) (-771) (-771))) (-15 -2386 ((-1 (-381)) (-771) (-771))) (-15 -1493 ((-1 (-381)) (-771))))) (T -1040))
+((-1493 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))) (-2386 (*1 *2 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))) (-3162 (*1 *2 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))) (-2936 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))) (-1792 (*1 *2 *3) (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381)))) (-3362 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381)))) (-3495 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381)))) (-1508 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-381)) (-5 *1 (-1040)))) (-4386 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))) (-3397 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))) (-3703 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))))
+(-10 -7 (-15 -3703 ((-381))) (-15 -3397 ((-381))) (-15 -4386 ((-381))) (-15 -1508 ((-381) (-771))) (-15 -3495 ((-1 (-381)) (-381) (-381))) (-15 -3362 ((-1 (-381)) (-381) (-381))) (-15 -1792 ((-1 (-381)) (-381))) (-15 -2936 ((-1 (-381)) (-771))) (-15 -3162 ((-1 (-381)) (-771) (-771))) (-15 -2386 ((-1 (-381)) (-771) (-771))) (-15 -1493 ((-1 (-381)) (-771))))
+((-2473 (((-420 |#1|) |#1|) 33)))
+(((-1041 |#1|) (-10 -7 (-15 -2473 ((-420 |#1|) |#1|))) (-1240 (-409 (-952 (-566))))) (T -1041))
+((-2473 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-1041 *3)) (-4 *3 (-1240 (-409 (-952 (-566))))))))
+(-10 -7 (-15 -2473 ((-420 |#1|) |#1|)))
+((-1742 (((-409 (-420 (-952 |#1|))) (-409 (-952 |#1|))) 14)))
+(((-1042 |#1|) (-10 -7 (-15 -1742 ((-409 (-420 (-952 |#1|))) (-409 (-952 |#1|))))) (-308)) (T -1042))
+((-1742 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-308)) (-5 *2 (-409 (-420 (-952 *4)))) (-5 *1 (-1042 *4)))))
+(-10 -7 (-15 -1742 ((-409 (-420 (-952 |#1|))) (-409 (-952 |#1|)))))
+((-2608 (((-644 (-1175)) (-409 (-952 |#1|))) 17)) (-2438 (((-409 (-1171 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175)) 24)) (-2597 (((-409 (-952 |#1|)) (-409 (-1171 (-409 (-952 |#1|)))) (-1175)) 26)) (-1984 (((-3 (-1175) "failed") (-409 (-952 |#1|))) 20)) (-2095 (((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-295 (-409 (-952 |#1|))))) 32) (((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|)))) 33) (((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-1175)) (-644 (-409 (-952 |#1|)))) 28) (((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|))) 29)) (-3780 (((-409 (-952 |#1|)) |#1|) 11)))
+(((-1043 |#1|) (-10 -7 (-15 -2608 ((-644 (-1175)) (-409 (-952 |#1|)))) (-15 -1984 ((-3 (-1175) "failed") (-409 (-952 |#1|)))) (-15 -2438 ((-409 (-1171 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175))) (-15 -2597 ((-409 (-952 |#1|)) (-409 (-1171 (-409 (-952 |#1|)))) (-1175))) (-15 -2095 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)))) (-15 -2095 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-1175)) (-644 (-409 (-952 |#1|))))) (-15 -2095 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -2095 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -3780 ((-409 (-952 |#1|)) |#1|))) (-558)) (T -1043))
+((-3780 (*1 *2 *3) (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-1043 *3)) (-4 *3 (-558)))) (-2095 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-295 (-409 (-952 *4))))) (-5 *2 (-409 (-952 *4))) (-4 *4 (-558)) (-5 *1 (-1043 *4)))) (-2095 (*1 *2 *2 *3) (-12 (-5 *3 (-295 (-409 (-952 *4)))) (-5 *2 (-409 (-952 *4))) (-4 *4 (-558)) (-5 *1 (-1043 *4)))) (-2095 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-644 (-1175))) (-5 *4 (-644 (-409 (-952 *5)))) (-5 *2 (-409 (-952 *5))) (-4 *5 (-558)) (-5 *1 (-1043 *5)))) (-2095 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-409 (-952 *4))) (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-1043 *4)))) (-2597 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-1171 (-409 (-952 *5))))) (-5 *4 (-1175)) (-5 *2 (-409 (-952 *5))) (-5 *1 (-1043 *5)) (-4 *5 (-558)))) (-2438 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-558)) (-5 *2 (-409 (-1171 (-409 (-952 *5))))) (-5 *1 (-1043 *5)) (-5 *3 (-409 (-952 *5))))) (-1984 (*1 *2 *3) (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-5 *2 (-1175)) (-5 *1 (-1043 *4)))) (-2608 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-5 *2 (-644 (-1175))) (-5 *1 (-1043 *4)))))
+(-10 -7 (-15 -2608 ((-644 (-1175)) (-409 (-952 |#1|)))) (-15 -1984 ((-3 (-1175) "failed") (-409 (-952 |#1|)))) (-15 -2438 ((-409 (-1171 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175))) (-15 -2597 ((-409 (-952 |#1|)) (-409 (-1171 (-409 (-952 |#1|)))) (-1175))) (-15 -2095 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)))) (-15 -2095 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-1175)) (-644 (-409 (-952 |#1|))))) (-15 -2095 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-295 (-409 (-952 |#1|))))) (-15 -2095 ((-409 (-952 |#1|)) (-409 (-952 |#1|)) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -3780 ((-409 (-952 |#1|)) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3877 (($) 18 T CONST)) (-2898 ((|#1| $) 23)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-1374 ((|#1| $) 22)) (-2555 ((|#1|) 20 T CONST)) (-3780 (((-862) $) 12)) (-2869 ((|#1| $) 21)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16)))
(((-1044 |#1|) (-140) (-23)) (T -1044))
-((-3946 (*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))) (-4049 (*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))) (-2496 (*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))) (-1843 (*1 *2) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))))
-(-13 (-23) (-10 -8 (-15 -3946 (|t#1| $)) (-15 -4049 (|t#1| $)) (-15 -2496 (|t#1| $)) (-15 -1843 (|t#1|) -1655)))
+((-2898 (*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))) (-1374 (*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))) (-2869 (*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))) (-2555 (*1 *2) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))))
+(-13 (-23) (-10 -8 (-15 -2898 (|t#1| $)) (-15 -1374 (|t#1| $)) (-15 -2869 (|t#1| $)) (-15 -2555 (|t#1|) -2460)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-1979 (($) 25 T CONST)) (-2342 (($) 18 T CONST)) (-3946 ((|#1| $) 23)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-4049 ((|#1| $) 22)) (-1843 ((|#1|) 20 T CONST)) (-2512 (((-862) $) 12)) (-2496 ((|#1| $) 21)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-1449 (($) 25 T CONST)) (-3877 (($) 18 T CONST)) (-2898 ((|#1| $) 23)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-1374 ((|#1| $) 22)) (-2555 ((|#1|) 20 T CONST)) (-3780 (((-862) $) 12)) (-2869 ((|#1| $) 21)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16)))
(((-1045 |#1|) (-140) (-23)) (T -1045))
-((-1979 (*1 *1) (-12 (-4 *1 (-1045 *2)) (-4 *2 (-23)))))
-(-13 (-1044 |t#1|) (-10 -8 (-15 -1979 ($) -1655)))
+((-1449 (*1 *1) (-12 (-4 *1 (-1045 *2)) (-4 *2 (-23)))))
+(-13 (-1044 |t#1|) (-10 -8 (-15 -1449 ($) -2460)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-613 (-862)) . T) ((-1044 |#1|) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-2072 (((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 (-780 |#1| (-864 |#2|)))))) (-644 (-780 |#1| (-864 |#2|)))) NIL)) (-1725 (((-644 $) (-644 (-780 |#1| (-864 |#2|)))) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-112)) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-112) (-112)) NIL)) (-2540 (((-644 (-864 |#2|)) $) NIL)) (-2598 (((-112) $) NIL)) (-2740 (((-112) $) NIL (|has| |#1| (-558)))) (-4390 (((-112) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) $) NIL)) (-3761 (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-2857 (((-644 (-2 (|:| |val| (-780 |#1| (-864 |#2|))) (|:| -2248 $))) (-780 |#1| (-864 |#2|)) $) NIL)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ (-864 |#2|)) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-4186 (($ (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-3 (-780 |#1| (-864 |#2|)) "failed") $ (-864 |#2|)) NIL)) (-2342 (($) NIL T CONST)) (-4179 (((-112) $) NIL (|has| |#1| (-558)))) (-4184 (((-112) $ $) NIL (|has| |#1| (-558)))) (-1576 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2398 (((-112) $) NIL (|has| |#1| (-558)))) (-3772 (((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|))) $ (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) (-1 (-112) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)))) NIL)) (-2380 (((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|))) $) NIL (|has| |#1| (-558)))) (-2268 (((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|))) $) NIL (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 (-780 |#1| (-864 |#2|)))) NIL)) (-1756 (($ (-644 (-780 |#1| (-864 |#2|)))) NIL)) (-4076 (((-3 $ "failed") $) NIL)) (-2668 (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-780 |#1| (-864 |#2|)) (-1099))))) (-2651 (($ (-780 |#1| (-864 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (($ (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-780 |#1| (-864 |#2|))) (|:| |den| |#1|)) (-780 |#1| (-864 |#2|)) $) NIL (|has| |#1| (-558)))) (-2531 (((-112) (-780 |#1| (-864 |#2|)) $ (-1 (-112) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)))) NIL)) (-4200 (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-4362 (((-780 |#1| (-864 |#2|)) (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) $ (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (((-780 |#1| (-864 |#2|)) (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) $ (-780 |#1| (-864 |#2|))) NIL (|has| $ (-6 -4417))) (((-780 |#1| (-864 |#2|)) (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $ (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) (-1 (-112) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)))) NIL)) (-3810 (((-2 (|:| -1673 (-644 (-780 |#1| (-864 |#2|)))) (|:| -3509 (-644 (-780 |#1| (-864 |#2|))))) $) NIL)) (-3422 (((-112) (-780 |#1| (-864 |#2|)) $) NIL)) (-2192 (((-112) (-780 |#1| (-864 |#2|)) $) NIL)) (-1602 (((-112) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) $) NIL)) (-3372 (((-644 (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4260 (((-112) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) $) NIL)) (-1594 (((-864 |#2|) $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-780 |#1| (-864 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-780 |#1| (-864 |#2|)) (-1099))))) (-1323 (($ (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) $) NIL)) (-3097 (((-644 (-864 |#2|)) $) NIL)) (-3492 (((-112) (-864 |#2|) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-2501 (((-3 (-780 |#1| (-864 |#2|)) (-644 $)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-1624 (((-644 (-2 (|:| |val| (-780 |#1| (-864 |#2|))) (|:| -2248 $))) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-2670 (((-3 (-780 |#1| (-864 |#2|)) "failed") $) NIL)) (-2909 (((-644 $) (-780 |#1| (-864 |#2|)) $) NIL)) (-4343 (((-3 (-112) (-644 $)) (-780 |#1| (-864 |#2|)) $) NIL)) (-2620 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 $))) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) (-780 |#1| (-864 |#2|)) $) NIL)) (-2390 (((-644 $) (-780 |#1| (-864 |#2|)) $) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) $) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-644 $)) NIL) (((-644 $) (-780 |#1| (-864 |#2|)) (-644 $)) NIL)) (-1937 (($ (-780 |#1| (-864 |#2|)) $) NIL) (($ (-644 (-780 |#1| (-864 |#2|))) $) NIL)) (-1798 (((-644 (-780 |#1| (-864 |#2|))) $) NIL)) (-3377 (((-112) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) $) NIL)) (-1687 (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-2343 (((-112) $ $) NIL)) (-2410 (((-2 (|:| |num| (-780 |#1| (-864 |#2|))) (|:| |den| |#1|)) (-780 |#1| (-864 |#2|)) $) NIL (|has| |#1| (-558)))) (-3257 (((-112) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) $) NIL)) (-2930 (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 (((-3 (-780 |#1| (-864 |#2|)) "failed") $) NIL)) (-2126 (((-3 (-780 |#1| (-864 |#2|)) "failed") (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL)) (-1583 (((-3 $ "failed") $ (-780 |#1| (-864 |#2|))) NIL)) (-1938 (($ $ (-780 |#1| (-864 |#2|))) NIL) (((-644 $) (-780 |#1| (-864 |#2|)) $) NIL) (((-644 $) (-780 |#1| (-864 |#2|)) (-644 $)) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) $) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-644 $)) NIL)) (-2822 (((-112) (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|)))) NIL (-12 (|has| (-780 |#1| (-864 |#2|)) (-310 (-780 |#1| (-864 |#2|)))) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (($ $ (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) NIL (-12 (|has| (-780 |#1| (-864 |#2|)) (-310 (-780 |#1| (-864 |#2|)))) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (($ $ (-295 (-780 |#1| (-864 |#2|)))) NIL (-12 (|has| (-780 |#1| (-864 |#2|)) (-310 (-780 |#1| (-864 |#2|)))) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (($ $ (-644 (-295 (-780 |#1| (-864 |#2|))))) NIL (-12 (|has| (-780 |#1| (-864 |#2|)) (-310 (-780 |#1| (-864 |#2|)))) (|has| (-780 |#1| (-864 |#2|)) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-3992 (((-771) $) NIL)) (-4044 (((-771) (-780 |#1| (-864 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (((-771) (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-780 |#1| (-864 |#2|)) (-614 (-538))))) (-2523 (($ (-644 (-780 |#1| (-864 |#2|)))) NIL)) (-1945 (($ $ (-864 |#2|)) NIL)) (-1398 (($ $ (-864 |#2|)) NIL)) (-2280 (($ $) NIL)) (-4287 (($ $ (-864 |#2|)) NIL)) (-2512 (((-862) $) NIL) (((-644 (-780 |#1| (-864 |#2|))) $) NIL)) (-2748 (((-771) $) NIL (|has| (-864 |#2|) (-370)))) (-3122 (((-112) $ $) NIL)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 (-780 |#1| (-864 |#2|))))) "failed") (-644 (-780 |#1| (-864 |#2|))) (-1 (-112) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 (-780 |#1| (-864 |#2|))))) "failed") (-644 (-780 |#1| (-864 |#2|))) (-1 (-112) (-780 |#1| (-864 |#2|))) (-1 (-112) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)))) NIL)) (-3130 (((-112) $ (-1 (-112) (-780 |#1| (-864 |#2|)) (-644 (-780 |#1| (-864 |#2|))))) NIL)) (-1848 (((-644 $) (-780 |#1| (-864 |#2|)) $) NIL) (((-644 $) (-780 |#1| (-864 |#2|)) (-644 $)) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) $) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-644 $)) NIL)) (-3427 (((-112) (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1427 (((-644 (-864 |#2|)) $) NIL)) (-1737 (((-112) (-780 |#1| (-864 |#2|)) $) NIL)) (-1369 (((-112) (-864 |#2|) $) NIL)) (-2940 (((-112) $ $) NIL)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1046 |#1| |#2|) (-13 (-1070 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|))) (-10 -8 (-15 -1725 ((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-112) (-112))))) (-454) (-644 (-1175))) (T -1046))
-((-1725 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454)) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-1046 *5 *6)))))
-(-13 (-1070 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|))) (-10 -8 (-15 -1725 ((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-112) (-112)))))
-((-4197 (((-1 (-566)) (-1093 (-566))) 32)) (-1626 (((-566) (-566) (-566) (-566) (-566)) 29)) (-3228 (((-1 (-566)) |RationalNumber|) NIL)) (-2699 (((-1 (-566)) |RationalNumber|) NIL)) (-1523 (((-1 (-566)) (-566) |RationalNumber|) NIL)))
-(((-1047) (-10 -7 (-15 -4197 ((-1 (-566)) (-1093 (-566)))) (-15 -1523 ((-1 (-566)) (-566) |RationalNumber|)) (-15 -3228 ((-1 (-566)) |RationalNumber|)) (-15 -2699 ((-1 (-566)) |RationalNumber|)) (-15 -1626 ((-566) (-566) (-566) (-566) (-566))))) (T -1047))
-((-1626 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1047)))) (-2699 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))) (-3228 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))) (-1523 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047)) (-5 *3 (-566)))) (-4197 (*1 *2 *3) (-12 (-5 *3 (-1093 (-566))) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))))
-(-10 -7 (-15 -4197 ((-1 (-566)) (-1093 (-566)))) (-15 -1523 ((-1 (-566)) (-566) |RationalNumber|)) (-15 -3228 ((-1 (-566)) |RationalNumber|)) (-15 -2699 ((-1 (-566)) |RationalNumber|)) (-15 -1626 ((-566) (-566) (-566) (-566) (-566))))
-((-2512 (((-862) $) NIL) (($ (-566)) 10)))
-(((-1048 |#1|) (-10 -8 (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|))) (-1049)) (T -1048))
-NIL
-(-10 -8 (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3009 (((-112) $ $) NIL)) (-3043 (((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 (-780 |#1| (-864 |#2|)))))) (-644 (-780 |#1| (-864 |#2|)))) NIL)) (-3804 (((-644 $) (-644 (-780 |#1| (-864 |#2|)))) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-112)) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-112) (-112)) NIL)) (-2608 (((-644 (-864 |#2|)) $) NIL)) (-1390 (((-112) $) NIL)) (-3455 (((-112) $) NIL (|has| |#1| (-558)))) (-1702 (((-112) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) $) NIL)) (-3713 (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-2179 (((-644 (-2 (|:| |val| (-780 |#1| (-864 |#2|))) (|:| -2327 $))) (-780 |#1| (-864 |#2|)) $) NIL)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ (-864 |#2|)) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-1386 (($ (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-3 (-780 |#1| (-864 |#2|)) "failed") $ (-864 |#2|)) NIL)) (-3877 (($) NIL T CONST)) (-3310 (((-112) $) NIL (|has| |#1| (-558)))) (-3367 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2895 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3219 (((-112) $) NIL (|has| |#1| (-558)))) (-3790 (((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|))) $ (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) (-1 (-112) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)))) NIL)) (-4239 (((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|))) $) NIL (|has| |#1| (-558)))) (-4344 (((-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|))) $) NIL (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 (-780 |#1| (-864 |#2|)))) NIL)) (-1867 (($ (-644 (-780 |#1| (-864 |#2|)))) NIL)) (-4112 (((-3 $ "failed") $) NIL)) (-3963 (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-780 |#1| (-864 |#2|)) (-1099))))) (-2661 (($ (-780 |#1| (-864 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (($ (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-780 |#1| (-864 |#2|))) (|:| |den| |#1|)) (-780 |#1| (-864 |#2|)) $) NIL (|has| |#1| (-558)))) (-1991 (((-112) (-780 |#1| (-864 |#2|)) $ (-1 (-112) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)))) NIL)) (-3517 (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-1580 (((-780 |#1| (-864 |#2|)) (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) $ (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (((-780 |#1| (-864 |#2|)) (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) $ (-780 |#1| (-864 |#2|))) NIL (|has| $ (-6 -4414))) (((-780 |#1| (-864 |#2|)) (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $ (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) (-1 (-112) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)))) NIL)) (-4143 (((-2 (|:| -1713 (-644 (-780 |#1| (-864 |#2|)))) (|:| -3537 (-644 (-780 |#1| (-864 |#2|))))) $) NIL)) (-1535 (((-112) (-780 |#1| (-864 |#2|)) $) NIL)) (-2976 (((-112) (-780 |#1| (-864 |#2|)) $) NIL)) (-1961 (((-112) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) $) NIL)) (-3799 (((-644 (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2848 (((-112) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) $) NIL)) (-1887 (((-864 |#2|) $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-780 |#1| (-864 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-780 |#1| (-864 |#2|)) (-1099))))) (-3117 (($ (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) $) NIL)) (-1711 (((-644 (-864 |#2|)) $) NIL)) (-4113 (((-112) (-864 |#2|) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-2924 (((-3 (-780 |#1| (-864 |#2|)) (-644 $)) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-2165 (((-644 (-2 (|:| |val| (-780 |#1| (-864 |#2|))) (|:| -2327 $))) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-2680 (((-3 (-780 |#1| (-864 |#2|)) "failed") $) NIL)) (-1468 (((-644 $) (-780 |#1| (-864 |#2|)) $) NIL)) (-2487 (((-3 (-112) (-644 $)) (-780 |#1| (-864 |#2|)) $) NIL)) (-1627 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 $))) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) (-780 |#1| (-864 |#2|)) $) NIL)) (-3147 (((-644 $) (-780 |#1| (-864 |#2|)) $) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) $) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-644 $)) NIL) (((-644 $) (-780 |#1| (-864 |#2|)) (-644 $)) NIL)) (-2284 (($ (-780 |#1| (-864 |#2|)) $) NIL) (($ (-644 (-780 |#1| (-864 |#2|))) $) NIL)) (-3329 (((-644 (-780 |#1| (-864 |#2|))) $) NIL)) (-2337 (((-112) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) $) NIL)) (-1569 (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-3886 (((-112) $ $) NIL)) (-3331 (((-2 (|:| |num| (-780 |#1| (-864 |#2|))) (|:| |den| |#1|)) (-780 |#1| (-864 |#2|)) $) NIL (|has| |#1| (-558)))) (-2531 (((-112) (-780 |#1| (-864 |#2|)) $) NIL) (((-112) $) NIL)) (-1671 (((-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)) $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 (((-3 (-780 |#1| (-864 |#2|)) "failed") $) NIL)) (-3591 (((-3 (-780 |#1| (-864 |#2|)) "failed") (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL)) (-1775 (((-3 $ "failed") $ (-780 |#1| (-864 |#2|))) NIL)) (-2295 (($ $ (-780 |#1| (-864 |#2|))) NIL) (((-644 $) (-780 |#1| (-864 |#2|)) $) NIL) (((-644 $) (-780 |#1| (-864 |#2|)) (-644 $)) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) $) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-644 $)) NIL)) (-3044 (((-112) (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-780 |#1| (-864 |#2|))) (-644 (-780 |#1| (-864 |#2|)))) NIL (-12 (|has| (-780 |#1| (-864 |#2|)) (-310 (-780 |#1| (-864 |#2|)))) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (($ $ (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|))) NIL (-12 (|has| (-780 |#1| (-864 |#2|)) (-310 (-780 |#1| (-864 |#2|)))) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (($ $ (-295 (-780 |#1| (-864 |#2|)))) NIL (-12 (|has| (-780 |#1| (-864 |#2|)) (-310 (-780 |#1| (-864 |#2|)))) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (($ $ (-644 (-295 (-780 |#1| (-864 |#2|))))) NIL (-12 (|has| (-780 |#1| (-864 |#2|)) (-310 (-780 |#1| (-864 |#2|)))) (|has| (-780 |#1| (-864 |#2|)) (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-2108 (((-771) $) NIL)) (-4067 (((-771) (-780 |#1| (-864 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-780 |#1| (-864 |#2|)) (-1099)))) (((-771) (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-780 |#1| (-864 |#2|)) (-614 (-538))))) (-3791 (($ (-644 (-780 |#1| (-864 |#2|)))) NIL)) (-2363 (($ $ (-864 |#2|)) NIL)) (-3513 (($ $ (-864 |#2|)) NIL)) (-1360 (($ $) NIL)) (-3130 (($ $ (-864 |#2|)) NIL)) (-3780 (((-862) $) NIL) (((-644 (-780 |#1| (-864 |#2|))) $) NIL)) (-3542 (((-771) $) NIL (|has| (-864 |#2|) (-370)))) (-3801 (((-112) $ $) NIL)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 (-780 |#1| (-864 |#2|))))) "failed") (-644 (-780 |#1| (-864 |#2|))) (-1 (-112) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)))) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 (-780 |#1| (-864 |#2|))))) "failed") (-644 (-780 |#1| (-864 |#2|))) (-1 (-112) (-780 |#1| (-864 |#2|))) (-1 (-112) (-780 |#1| (-864 |#2|)) (-780 |#1| (-864 |#2|)))) NIL)) (-3870 (((-112) $ (-1 (-112) (-780 |#1| (-864 |#2|)) (-644 (-780 |#1| (-864 |#2|))))) NIL)) (-2607 (((-644 $) (-780 |#1| (-864 |#2|)) $) NIL) (((-644 $) (-780 |#1| (-864 |#2|)) (-644 $)) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) $) NIL) (((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-644 $)) NIL)) (-1583 (((-112) (-1 (-112) (-780 |#1| (-864 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3830 (((-644 (-864 |#2|)) $) NIL)) (-3917 (((-112) (-780 |#1| (-864 |#2|)) $) NIL)) (-3258 (((-112) (-864 |#2|) $) NIL)) (-2950 (((-112) $ $) NIL)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1046 |#1| |#2|) (-13 (-1070 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|))) (-10 -8 (-15 -3804 ((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-112) (-112))))) (-454) (-644 (-1175))) (T -1046))
+((-3804 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454)) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-1046 *5 *6)))))
+(-13 (-1070 |#1| (-533 (-864 |#2|)) (-864 |#2|) (-780 |#1| (-864 |#2|))) (-10 -8 (-15 -3804 ((-644 $) (-644 (-780 |#1| (-864 |#2|))) (-112) (-112)))))
+((-3495 (((-1 (-566)) (-1093 (-566))) 32)) (-2187 (((-566) (-566) (-566) (-566) (-566)) 29)) (-3465 (((-1 (-566)) |RationalNumber|) NIL)) (-4254 (((-1 (-566)) |RationalNumber|) NIL)) (-2378 (((-1 (-566)) (-566) |RationalNumber|) NIL)))
+(((-1047) (-10 -7 (-15 -3495 ((-1 (-566)) (-1093 (-566)))) (-15 -2378 ((-1 (-566)) (-566) |RationalNumber|)) (-15 -3465 ((-1 (-566)) |RationalNumber|)) (-15 -4254 ((-1 (-566)) |RationalNumber|)) (-15 -2187 ((-566) (-566) (-566) (-566) (-566))))) (T -1047))
+((-2187 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1047)))) (-4254 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))) (-3465 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))) (-2378 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047)) (-5 *3 (-566)))) (-3495 (*1 *2 *3) (-12 (-5 *3 (-1093 (-566))) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))))
+(-10 -7 (-15 -3495 ((-1 (-566)) (-1093 (-566)))) (-15 -2378 ((-1 (-566)) (-566) |RationalNumber|)) (-15 -3465 ((-1 (-566)) |RationalNumber|)) (-15 -4254 ((-1 (-566)) |RationalNumber|)) (-15 -2187 ((-566) (-566) (-566) (-566) (-566))))
+((-3780 (((-862) $) NIL) (($ (-566)) 10)))
+(((-1048 |#1|) (-10 -8 (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|))) (-1049)) (T -1048))
+NIL
+(-10 -8 (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-1049) (-140)) (T -1049))
-((-3795 (*1 *2) (-12 (-4 *1 (-1049)) (-5 *2 (-771)))))
-(-13 (-1057) (-726) (-648 $) (-616 (-566)) (-10 -7 (-15 -3795 ((-771)) -1655) (-6 -4414)))
+((-3996 (*1 *2) (-12 (-4 *1 (-1049)) (-5 *2 (-771)))))
+(-13 (-1057) (-726) (-648 $) (-616 (-566)) (-10 -7 (-15 -3996 ((-771)) -2460) (-6 -4411)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-616 (-566)) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-726) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2320 (((-409 (-952 |#2|)) (-644 |#2|) (-644 |#2|) (-771) (-771)) 60)))
-(((-1050 |#1| |#2|) (-10 -7 (-15 -2320 ((-409 (-952 |#2|)) (-644 |#2|) (-644 |#2|) (-771) (-771)))) (-1175) (-365)) (T -1050))
-((-2320 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-771)) (-4 *6 (-365)) (-5 *2 (-409 (-952 *6))) (-5 *1 (-1050 *5 *6)) (-14 *5 (-1175)))))
-(-10 -7 (-15 -2320 ((-409 (-952 |#2|)) (-644 |#2|) (-644 |#2|) (-771) (-771))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 15)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 16 T CONST)) (-2940 (((-112) $ $) 6)) (* (($ $ |#1|) 14)))
+((-3678 (((-409 (-952 |#2|)) (-644 |#2|) (-644 |#2|) (-771) (-771)) 60)))
+(((-1050 |#1| |#2|) (-10 -7 (-15 -3678 ((-409 (-952 |#2|)) (-644 |#2|) (-644 |#2|) (-771) (-771)))) (-1175) (-365)) (T -1050))
+((-3678 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-771)) (-4 *6 (-365)) (-5 *2 (-409 (-952 *6))) (-5 *1 (-1050 *5 *6)) (-14 *5 (-1175)))))
+(-10 -7 (-15 -3678 ((-409 (-952 |#2|)) (-644 |#2|) (-644 |#2|) (-771) (-771))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 15)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 16 T CONST)) (-2950 (((-112) $ $) 6)) (* (($ $ |#1|) 14)))
(((-1051 |#1|) (-140) (-1057)) (T -1051))
-((-2485 (*1 *1) (-12 (-4 *1 (-1051 *2)) (-4 *2 (-1057)))) (-3958 (*1 *2 *1) (-12 (-4 *1 (-1051 *3)) (-4 *3 (-1057)) (-5 *2 (-112)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1051 *2)) (-4 *2 (-1057)))))
-(-13 (-1099) (-10 -8 (-15 (-2485) ($) -1655) (-15 -3958 ((-112) $)) (-15 * ($ $ |t#1|))))
+((-2493 (*1 *1) (-12 (-4 *1 (-1051 *2)) (-4 *2 (-1057)))) (-3015 (*1 *2 *1) (-12 (-4 *1 (-1051 *3)) (-4 *3 (-1057)) (-5 *2 (-112)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1051 *2)) (-4 *2 (-1057)))))
+(-13 (-1099) (-10 -8 (-15 (-2493) ($) -2460) (-15 -3015 ((-112) $)) (-15 * ($ $ |t#1|))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2087 (((-112) $) 40)) (-4072 (((-112) $) 17)) (-2042 (((-771) $) 13)) (-2053 (((-771) $) 14)) (-2742 (((-112) $) 30)) (-2103 (((-112) $) 42)))
-(((-1052 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -2053 ((-771) |#1|)) (-15 -2042 ((-771) |#1|)) (-15 -2103 ((-112) |#1|)) (-15 -2087 ((-112) |#1|)) (-15 -2742 ((-112) |#1|)) (-15 -4072 ((-112) |#1|))) (-1053 |#2| |#3| |#4| |#5| |#6|) (-771) (-771) (-1049) (-238 |#3| |#4|) (-238 |#2| |#4|)) (T -1052))
+((-3194 (((-112) $) 40)) (-1597 (((-112) $) 17)) (-4301 (((-771) $) 13)) (-4313 (((-771) $) 14)) (-3478 (((-112) $) 30)) (-3359 (((-112) $) 42)))
+(((-1052 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -4313 ((-771) |#1|)) (-15 -4301 ((-771) |#1|)) (-15 -3359 ((-112) |#1|)) (-15 -3194 ((-112) |#1|)) (-15 -3478 ((-112) |#1|)) (-15 -1597 ((-112) |#1|))) (-1053 |#2| |#3| |#4| |#5| |#6|) (-771) (-771) (-1049) (-238 |#3| |#4|) (-238 |#2| |#4|)) (T -1052))
NIL
-(-10 -8 (-15 -2053 ((-771) |#1|)) (-15 -2042 ((-771) |#1|)) (-15 -2103 ((-112) |#1|)) (-15 -2087 ((-112) |#1|)) (-15 -2742 ((-112) |#1|)) (-15 -4072 ((-112) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2087 (((-112) $) 56)) (-4126 (((-3 $ "failed") $ $) 20)) (-4072 (((-112) $) 58)) (-3081 (((-112) $ (-771)) 66)) (-2342 (($) 18 T CONST)) (-3071 (($ $) 39 (|has| |#3| (-308)))) (-4134 ((|#4| $ (-566)) 44)) (-1821 (((-771) $) 38 (|has| |#3| (-558)))) (-3137 ((|#3| $ (-566) (-566)) 46)) (-3372 (((-644 |#3|) $) 73 (|has| $ (-6 -4417)))) (-2481 (((-771) $) 37 (|has| |#3| (-558)))) (-2442 (((-644 |#5|) $) 36 (|has| |#3| (-558)))) (-2042 (((-771) $) 50)) (-2053 (((-771) $) 49)) (-2744 (((-112) $ (-771)) 65)) (-3266 (((-566) $) 54)) (-1905 (((-566) $) 52)) (-2404 (((-644 |#3|) $) 74 (|has| $ (-6 -4417)))) (-1927 (((-112) |#3| $) 76 (-12 (|has| |#3| (-1099)) (|has| $ (-6 -4417))))) (-4385 (((-566) $) 53)) (-4106 (((-566) $) 51)) (-4198 (($ (-644 (-644 |#3|))) 59)) (-1323 (($ (-1 |#3| |#3|) $) 69 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#3| |#3|) $) 68) (($ (-1 |#3| |#3| |#3|) $ $) 42)) (-2503 (((-644 (-644 |#3|)) $) 48)) (-3882 (((-112) $ (-771)) 64)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2972 (((-3 $ "failed") $ |#3|) 41 (|has| |#3| (-558)))) (-2822 (((-112) (-1 (-112) |#3|) $) 71 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#3|) (-644 |#3|)) 80 (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ |#3| |#3|) 79 (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-295 |#3|)) 78 (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-644 (-295 |#3|))) 77 (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))))) (-2587 (((-112) $ $) 60)) (-4194 (((-112) $) 63)) (-2954 (($) 62)) (-4386 ((|#3| $ (-566) (-566)) 47) ((|#3| $ (-566) (-566) |#3|) 45)) (-2742 (((-112) $) 57)) (-4044 (((-771) |#3| $) 75 (-12 (|has| |#3| (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) |#3|) $) 72 (|has| $ (-6 -4417)))) (-3895 (($ $) 61)) (-4074 ((|#5| $ (-566)) 43)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-3427 (((-112) (-1 (-112) |#3|) $) 70 (|has| $ (-6 -4417)))) (-2103 (((-112) $) 55)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#3|) 40 (|has| |#3| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#3| $) 27) (($ $ |#3|) 31)) (-2997 (((-771) $) 67 (|has| $ (-6 -4417)))))
+(-10 -8 (-15 -4313 ((-771) |#1|)) (-15 -4301 ((-771) |#1|)) (-15 -3359 ((-112) |#1|)) (-15 -3194 ((-112) |#1|)) (-15 -3478 ((-112) |#1|)) (-15 -1597 ((-112) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3194 (((-112) $) 56)) (-4014 (((-3 $ "failed") $ $) 20)) (-1597 (((-112) $) 58)) (-1574 (((-112) $ (-771)) 66)) (-3877 (($) 18 T CONST)) (-1495 (($ $) 39 (|has| |#3| (-308)))) (-4104 ((|#4| $ (-566)) 44)) (-4157 (((-771) $) 38 (|has| |#3| (-558)))) (-3059 ((|#3| $ (-566) (-566)) 46)) (-3799 (((-644 |#3|) $) 73 (|has| $ (-6 -4414)))) (-2736 (((-771) $) 37 (|has| |#3| (-558)))) (-3586 (((-644 |#5|) $) 36 (|has| |#3| (-558)))) (-4301 (((-771) $) 50)) (-4313 (((-771) $) 49)) (-3501 (((-112) $ (-771)) 65)) (-2615 (((-566) $) 54)) (-1966 (((-566) $) 52)) (-3276 (((-644 |#3|) $) 74 (|has| $ (-6 -4414)))) (-2183 (((-112) |#3| $) 76 (-12 (|has| |#3| (-1099)) (|has| $ (-6 -4414))))) (-1653 (((-566) $) 53)) (-3807 (((-566) $) 51)) (-1883 (($ (-644 (-644 |#3|))) 59)) (-3117 (($ (-1 |#3| |#3|) $) 69 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#3| |#3|) $) 68) (($ (-1 |#3| |#3| |#3|) $ $) 42)) (-2947 (((-644 (-644 |#3|)) $) 48)) (-3582 (((-112) $ (-771)) 64)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2997 (((-3 $ "failed") $ |#3|) 41 (|has| |#3| (-558)))) (-3044 (((-112) (-1 (-112) |#3|) $) 71 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#3|) (-644 |#3|)) 80 (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ |#3| |#3|) 79 (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-295 |#3|)) 78 (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-644 (-295 |#3|))) 77 (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))))) (-4372 (((-112) $ $) 60)) (-3461 (((-112) $) 63)) (-1793 (($) 62)) (-4393 ((|#3| $ (-566) (-566)) 47) ((|#3| $ (-566) (-566) |#3|) 45)) (-3478 (((-112) $) 57)) (-4067 (((-771) |#3| $) 75 (-12 (|has| |#3| (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) |#3|) $) 72 (|has| $ (-6 -4414)))) (-3940 (($ $) 61)) (-1621 ((|#5| $ (-566)) 43)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-1583 (((-112) (-1 (-112) |#3|) $) 70 (|has| $ (-6 -4414)))) (-3359 (((-112) $) 55)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#3|) 40 (|has| |#3| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#3| $) 27) (($ $ |#3|) 31)) (-3020 (((-771) $) 67 (|has| $ (-6 -4414)))))
(((-1053 |#1| |#2| |#3| |#4| |#5|) (-140) (-771) (-771) (-1049) (-238 |t#2| |t#3|) (-238 |t#1| |t#3|)) (T -1053))
-((-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-4198 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *5))) (-4 *5 (-1049)) (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-4072 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-2742 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-2087 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-2103 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-3266 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))) (-4385 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))) (-4106 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))) (-2042 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-771)))) (-2053 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-771)))) (-2503 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-644 (-644 *5))))) (-4386 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *2 *6 *7)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1049)))) (-3137 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *2 *6 *7)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1049)))) (-4386 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *2 *6 *7)) (-4 *2 (-1049)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)))) (-4134 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *6 *2 *7)) (-4 *6 (-1049)) (-4 *7 (-238 *4 *6)) (-4 *2 (-238 *5 *6)))) (-4074 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *6 *7 *2)) (-4 *6 (-1049)) (-4 *7 (-238 *5 *6)) (-4 *2 (-238 *4 *6)))) (-3077 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-2972 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1053 *3 *4 *2 *5 *6)) (-4 *2 (-1049)) (-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-558)))) (-3061 (*1 *1 *1 *2) (-12 (-4 *1 (-1053 *3 *4 *2 *5 *6)) (-4 *2 (-1049)) (-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-365)))) (-3071 (*1 *1 *1) (-12 (-4 *1 (-1053 *2 *3 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *2 *4)) (-4 *4 (-308)))) (-1821 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558)) (-5 *2 (-771)))) (-2481 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558)) (-5 *2 (-771)))) (-2442 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558)) (-5 *2 (-644 *7)))))
-(-13 (-111 |t#3| |t#3|) (-491 |t#3|) (-10 -8 (-6 -4417) (IF (|has| |t#3| (-172)) (-6 (-717 |t#3|)) |%noBranch|) (-15 -4198 ($ (-644 (-644 |t#3|)))) (-15 -4072 ((-112) $)) (-15 -2742 ((-112) $)) (-15 -2087 ((-112) $)) (-15 -2103 ((-112) $)) (-15 -3266 ((-566) $)) (-15 -4385 ((-566) $)) (-15 -1905 ((-566) $)) (-15 -4106 ((-566) $)) (-15 -2042 ((-771) $)) (-15 -2053 ((-771) $)) (-15 -2503 ((-644 (-644 |t#3|)) $)) (-15 -4386 (|t#3| $ (-566) (-566))) (-15 -3137 (|t#3| $ (-566) (-566))) (-15 -4386 (|t#3| $ (-566) (-566) |t#3|)) (-15 -4134 (|t#4| $ (-566))) (-15 -4074 (|t#5| $ (-566))) (-15 -3077 ($ (-1 |t#3| |t#3|) $)) (-15 -3077 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-558)) (-15 -2972 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-365)) (-15 -3061 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-308)) (-15 -3071 ($ $)) |%noBranch|) (IF (|has| |t#3| (-558)) (PROGN (-15 -1821 ((-771) $)) (-15 -2481 ((-771) $)) (-15 -2442 ((-644 |t#5|) $))) |%noBranch|)))
+((-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *5 *5)) (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-1883 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *5))) (-4 *5 (-1049)) (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-1597 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-3478 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-3194 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-3359 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))) (-2615 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))) (-1653 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))) (-1966 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))) (-3807 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))) (-4301 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-771)))) (-4313 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-771)))) (-2947 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-644 (-644 *5))))) (-4393 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *2 *6 *7)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1049)))) (-3059 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *2 *6 *7)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1049)))) (-4393 (*1 *2 *1 *3 *3 *2) (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *2 *6 *7)) (-4 *2 (-1049)) (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)))) (-4104 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *6 *2 *7)) (-4 *6 (-1049)) (-4 *7 (-238 *4 *6)) (-4 *2 (-238 *5 *6)))) (-1621 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *6 *7 *2)) (-4 *6 (-1049)) (-4 *7 (-238 *5 *6)) (-4 *2 (-238 *4 *6)))) (-3152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *5 *5 *5)) (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)))) (-2997 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1053 *3 *4 *2 *5 *6)) (-4 *2 (-1049)) (-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-558)))) (-3062 (*1 *1 *1 *2) (-12 (-4 *1 (-1053 *3 *4 *2 *5 *6)) (-4 *2 (-1049)) (-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-365)))) (-1495 (*1 *1 *1) (-12 (-4 *1 (-1053 *2 *3 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *2 *4)) (-4 *4 (-308)))) (-4157 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558)) (-5 *2 (-771)))) (-2736 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558)) (-5 *2 (-771)))) (-3586 (*1 *2 *1) (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049)) (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558)) (-5 *2 (-644 *7)))))
+(-13 (-111 |t#3| |t#3|) (-491 |t#3|) (-10 -8 (-6 -4414) (IF (|has| |t#3| (-172)) (-6 (-717 |t#3|)) |%noBranch|) (-15 -1883 ($ (-644 (-644 |t#3|)))) (-15 -1597 ((-112) $)) (-15 -3478 ((-112) $)) (-15 -3194 ((-112) $)) (-15 -3359 ((-112) $)) (-15 -2615 ((-566) $)) (-15 -1653 ((-566) $)) (-15 -1966 ((-566) $)) (-15 -3807 ((-566) $)) (-15 -4301 ((-771) $)) (-15 -4313 ((-771) $)) (-15 -2947 ((-644 (-644 |t#3|)) $)) (-15 -4393 (|t#3| $ (-566) (-566))) (-15 -3059 (|t#3| $ (-566) (-566))) (-15 -4393 (|t#3| $ (-566) (-566) |t#3|)) (-15 -4104 (|t#4| $ (-566))) (-15 -1621 (|t#5| $ (-566))) (-15 -3152 ($ (-1 |t#3| |t#3|) $)) (-15 -3152 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-558)) (-15 -2997 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-365)) (-15 -3062 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-308)) (-15 -1495 ($ $)) |%noBranch|) (IF (|has| |t#3| (-558)) (PROGN (-15 -4157 ((-771) $)) (-15 -2736 ((-771) $)) (-15 -3586 ((-644 |t#5|) $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-102) . T) ((-111 |#3| |#3|) . T) ((-131) . T) ((-613 (-862)) . T) ((-310 |#3|) -12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))) ((-491 |#3|) . T) ((-516 |#3| |#3|) -12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))) ((-646 (-566)) . T) ((-646 |#3|) . T) ((-648 |#3|) . T) ((-640 |#3|) |has| |#3| (-172)) ((-717 |#3|) |has| |#3| (-172)) ((-1051 |#3|) . T) ((-1056 |#3|) . T) ((-1099) . T) ((-1214) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2087 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-4072 (((-112) $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-2342 (($) NIL T CONST)) (-3071 (($ $) 47 (|has| |#3| (-308)))) (-4134 (((-240 |#2| |#3|) $ (-566)) 36)) (-4083 (($ (-689 |#3|)) 45)) (-1821 (((-771) $) 49 (|has| |#3| (-558)))) (-3137 ((|#3| $ (-566) (-566)) NIL)) (-3372 (((-644 |#3|) $) NIL (|has| $ (-6 -4417)))) (-2481 (((-771) $) 51 (|has| |#3| (-558)))) (-2442 (((-644 (-240 |#1| |#3|)) $) 55 (|has| |#3| (-558)))) (-2042 (((-771) $) NIL)) (-2053 (((-771) $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-3266 (((-566) $) NIL)) (-1905 (((-566) $) NIL)) (-2404 (((-644 |#3|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#3| (-1099))))) (-4385 (((-566) $) NIL)) (-4106 (((-566) $) NIL)) (-4198 (($ (-644 (-644 |#3|))) 31)) (-1323 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-2503 (((-644 (-644 |#3|)) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2972 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-558)))) (-2822 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#3|) (-644 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-295 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-644 (-295 |#3|))) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#3| $ (-566) (-566)) NIL) ((|#3| $ (-566) (-566) |#3|) NIL)) (-1909 (((-134)) 59 (|has| |#3| (-365)))) (-2742 (((-112) $) NIL)) (-4044 (((-771) |#3| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#3| (-1099)))) (((-771) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) 65 (|has| |#3| (-614 (-538))))) (-4074 (((-240 |#1| |#3|) $ (-566)) 40)) (-2512 (((-862) $) 19) (((-689 |#3|) $) 42)) (-3122 (((-112) $ $) NIL)) (-3427 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4417)))) (-2103 (((-112) $) NIL)) (-2485 (($) 16 T CONST)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#3|) NIL (|has| |#3| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1054 |#1| |#2| |#3|) (-13 (-1053 |#1| |#2| |#3| (-240 |#2| |#3|) (-240 |#1| |#3|)) (-613 (-689 |#3|)) (-10 -8 (IF (|has| |#3| (-365)) (-6 (-1271 |#3|)) |%noBranch|) (IF (|has| |#3| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (-15 -4083 ($ (-689 |#3|))))) (-771) (-771) (-1049)) (T -1054))
-((-4083 (*1 *1 *2) (-12 (-5 *2 (-689 *5)) (-4 *5 (-1049)) (-5 *1 (-1054 *3 *4 *5)) (-14 *3 (-771)) (-14 *4 (-771)))))
-(-13 (-1053 |#1| |#2| |#3| (-240 |#2| |#3|) (-240 |#1| |#3|)) (-613 (-689 |#3|)) (-10 -8 (IF (|has| |#3| (-365)) (-6 (-1271 |#3|)) |%noBranch|) (IF (|has| |#3| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (-15 -4083 ($ (-689 |#3|)))))
-((-4362 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 36)) (-3077 ((|#10| (-1 |#7| |#3|) |#6|) 34)))
-(((-1055 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -3077 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -4362 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-771) (-771) (-1049) (-238 |#2| |#3|) (-238 |#1| |#3|) (-1053 |#1| |#2| |#3| |#4| |#5|) (-1049) (-238 |#2| |#7|) (-238 |#1| |#7|) (-1053 |#1| |#2| |#7| |#8| |#9|)) (T -1055))
-((-4362 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1049)) (-4 *2 (-1049)) (-14 *5 (-771)) (-14 *6 (-771)) (-4 *8 (-238 *6 *7)) (-4 *9 (-238 *5 *7)) (-4 *10 (-238 *6 *2)) (-4 *11 (-238 *5 *2)) (-5 *1 (-1055 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-1053 *5 *6 *7 *8 *9)) (-4 *12 (-1053 *5 *6 *2 *10 *11)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-1049)) (-4 *10 (-1049)) (-14 *5 (-771)) (-14 *6 (-771)) (-4 *8 (-238 *6 *7)) (-4 *9 (-238 *5 *7)) (-4 *2 (-1053 *5 *6 *10 *11 *12)) (-5 *1 (-1055 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-1053 *5 *6 *7 *8 *9)) (-4 *11 (-238 *6 *10)) (-4 *12 (-238 *5 *10)))))
-(-10 -7 (-15 -3077 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -4362 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ |#1|) 27)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3194 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-1597 (((-112) $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-3877 (($) NIL T CONST)) (-1495 (($ $) 47 (|has| |#3| (-308)))) (-4104 (((-240 |#2| |#3|) $ (-566)) 36)) (-1719 (($ (-689 |#3|)) 45)) (-4157 (((-771) $) 49 (|has| |#3| (-558)))) (-3059 ((|#3| $ (-566) (-566)) NIL)) (-3799 (((-644 |#3|) $) NIL (|has| $ (-6 -4414)))) (-2736 (((-771) $) 51 (|has| |#3| (-558)))) (-3586 (((-644 (-240 |#1| |#3|)) $) 55 (|has| |#3| (-558)))) (-4301 (((-771) $) NIL)) (-4313 (((-771) $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2615 (((-566) $) NIL)) (-1966 (((-566) $) NIL)) (-3276 (((-644 |#3|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#3| (-1099))))) (-1653 (((-566) $) NIL)) (-3807 (((-566) $) NIL)) (-1883 (($ (-644 (-644 |#3|))) 31)) (-3117 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-2947 (((-644 (-644 |#3|)) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2997 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-558)))) (-3044 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#3|) (-644 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-295 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-644 (-295 |#3|))) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#3| $ (-566) (-566)) NIL) ((|#3| $ (-566) (-566) |#3|) NIL)) (-2012 (((-134)) 59 (|has| |#3| (-365)))) (-3478 (((-112) $) NIL)) (-4067 (((-771) |#3| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#3| (-1099)))) (((-771) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) 65 (|has| |#3| (-614 (-538))))) (-1621 (((-240 |#1| |#3|) $ (-566)) 40)) (-3780 (((-862) $) 19) (((-689 |#3|) $) 42)) (-3801 (((-112) $ $) NIL)) (-1583 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4414)))) (-3359 (((-112) $) NIL)) (-2493 (($) 16 T CONST)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#3|) NIL (|has| |#3| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1054 |#1| |#2| |#3|) (-13 (-1053 |#1| |#2| |#3| (-240 |#2| |#3|) (-240 |#1| |#3|)) (-613 (-689 |#3|)) (-10 -8 (IF (|has| |#3| (-365)) (-6 (-1271 |#3|)) |%noBranch|) (IF (|has| |#3| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (-15 -1719 ($ (-689 |#3|))))) (-771) (-771) (-1049)) (T -1054))
+((-1719 (*1 *1 *2) (-12 (-5 *2 (-689 *5)) (-4 *5 (-1049)) (-5 *1 (-1054 *3 *4 *5)) (-14 *3 (-771)) (-14 *4 (-771)))))
+(-13 (-1053 |#1| |#2| |#3| (-240 |#2| |#3|) (-240 |#1| |#3|)) (-613 (-689 |#3|)) (-10 -8 (IF (|has| |#3| (-365)) (-6 (-1271 |#3|)) |%noBranch|) (IF (|has| |#3| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|) (-15 -1719 ($ (-689 |#3|)))))
+((-1580 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 36)) (-3152 ((|#10| (-1 |#7| |#3|) |#6|) 34)))
+(((-1055 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -3152 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -1580 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|))) (-771) (-771) (-1049) (-238 |#2| |#3|) (-238 |#1| |#3|) (-1053 |#1| |#2| |#3| |#4| |#5|) (-1049) (-238 |#2| |#7|) (-238 |#1| |#7|) (-1053 |#1| |#2| |#7| |#8| |#9|)) (T -1055))
+((-1580 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1049)) (-4 *2 (-1049)) (-14 *5 (-771)) (-14 *6 (-771)) (-4 *8 (-238 *6 *7)) (-4 *9 (-238 *5 *7)) (-4 *10 (-238 *6 *2)) (-4 *11 (-238 *5 *2)) (-5 *1 (-1055 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12)) (-4 *4 (-1053 *5 *6 *7 *8 *9)) (-4 *12 (-1053 *5 *6 *2 *10 *11)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *10 *7)) (-4 *7 (-1049)) (-4 *10 (-1049)) (-14 *5 (-771)) (-14 *6 (-771)) (-4 *8 (-238 *6 *7)) (-4 *9 (-238 *5 *7)) (-4 *2 (-1053 *5 *6 *10 *11 *12)) (-5 *1 (-1055 *5 *6 *7 *8 *9 *4 *10 *11 *12 *2)) (-4 *4 (-1053 *5 *6 *7 *8 *9)) (-4 *11 (-238 *6 *10)) (-4 *12 (-238 *5 *10)))))
+(-10 -7 (-15 -3152 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -1580 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ |#1|) 27)))
(((-1056 |#1|) (-140) (-1057)) (T -1056))
NIL
(-13 (-21) (-1051 |t#1|))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-1051 |#1|) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-1057) (-140)) (T -1057))
NIL
(-13 (-21) (-1111))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-1111) . T) ((-1099) . T))
-((-1881 (($ $) 17)) (-4380 (($ $) 25)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 55)) (-1559 (($ $) 27)) (-1539 (($ $) 12)) (-4317 (($ $) 43)) (-3134 (((-381) $) NIL) (((-225) $) NIL) (((-892 (-381)) $) 36)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) 31) (($ (-566)) NIL) (($ (-409 (-566))) 31)) (-3795 (((-771)) 9)) (-1604 (($ $) 45)))
-(((-1058 |#1|) (-10 -8 (-15 -4380 (|#1| |#1|)) (-15 -1881 (|#1| |#1|)) (-15 -1539 (|#1| |#1|)) (-15 -4317 (|#1| |#1|)) (-15 -1604 (|#1| |#1|)) (-15 -1559 (|#1| |#1|)) (-15 -1356 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 (|#1| (-566))) (-15 -3134 ((-225) |#1|)) (-15 -3134 ((-381) |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 (|#1| |#1|)) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|))) (-1059)) (T -1058))
-((-3795 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1058 *3)) (-4 *3 (-1059)))))
-(-10 -8 (-15 -4380 (|#1| |#1|)) (-15 -1881 (|#1| |#1|)) (-15 -1539 (|#1| |#1|)) (-15 -4317 (|#1| |#1|)) (-15 -1604 (|#1| |#1|)) (-15 -1559 (|#1| |#1|)) (-15 -1356 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 (|#1| (-566))) (-15 -3134 ((-225) |#1|)) (-15 -3134 ((-381) |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 (|#1| |#1|)) (-15 -3795 ((-771))) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2452 (((-566) $) 97)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-1881 (($ $) 95)) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 81)) (-1370 (((-420 $) $) 80)) (-2402 (($ $) 105)) (-1561 (((-112) $ $) 65)) (-2807 (((-566) $) 122)) (-2342 (($) 18 T CONST)) (-4380 (($ $) 94)) (-2977 (((-3 (-566) "failed") $) 110) (((-3 (-409 (-566)) "failed") $) 107)) (-1756 (((-566) $) 111) (((-409 (-566)) $) 108)) (-2926 (($ $ $) 61)) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-2635 (((-112) $) 79)) (-1684 (((-112) $) 120)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 101)) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 104)) (-1559 (($ $) 100)) (-1578 (((-112) $) 121)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-1439 (($ $ $) 119)) (-3059 (($ $ $) 118)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 78)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-1539 (($ $) 96)) (-4317 (($ $) 98)) (-2391 (((-420 $) $) 82)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1813 (((-771) $) 64)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-3134 (((-381) $) 113) (((-225) $) 112) (((-892 (-381)) $) 102)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ (-566)) 109) (($ (-409 (-566))) 106)) (-3795 (((-771)) 32 T CONST)) (-1604 (($ $) 99)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-1346 (($ $) 123)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2998 (((-112) $ $) 116)) (-2974 (((-112) $ $) 115)) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 117)) (-2962 (((-112) $ $) 114)) (-3061 (($ $ $) 73)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77) (($ $ (-409 (-566))) 103)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
+((-2922 (($ $) 17)) (-1591 (($ $) 25)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 55)) (-2719 (($ $) 27)) (-2539 (($ $) 12)) (-2209 (($ $) 43)) (-3204 (((-381) $) NIL) (((-225) $) NIL) (((-892 (-381)) $) 36)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL) (($ (-409 (-566))) 31) (($ (-566)) NIL) (($ (-409 (-566))) 31)) (-3996 (((-771)) 9)) (-1982 (($ $) 45)))
+(((-1058 |#1|) (-10 -8 (-15 -1591 (|#1| |#1|)) (-15 -2922 (|#1| |#1|)) (-15 -2539 (|#1| |#1|)) (-15 -2209 (|#1| |#1|)) (-15 -1982 (|#1| |#1|)) (-15 -2719 (|#1| |#1|)) (-15 -1525 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 (|#1| (-566))) (-15 -3204 ((-225) |#1|)) (-15 -3204 ((-381) |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 (|#1| |#1|)) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|))) (-1059)) (T -1058))
+((-3996 (*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1058 *3)) (-4 *3 (-1059)))))
+(-10 -8 (-15 -1591 (|#1| |#1|)) (-15 -2922 (|#1| |#1|)) (-15 -2539 (|#1| |#1|)) (-15 -2209 (|#1| |#1|)) (-15 -1982 (|#1| |#1|)) (-15 -2719 (|#1| |#1|)) (-15 -1525 ((-889 (-381) |#1|) |#1| (-892 (-381)) (-889 (-381) |#1|))) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 (|#1| (-566))) (-15 -3204 ((-225) |#1|)) (-15 -3204 ((-381) |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 (|#1| |#1|)) (-15 -3996 ((-771))) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2486 (((-566) $) 97)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-2922 (($ $) 95)) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 81)) (-3271 (((-420 $) $) 80)) (-2484 (($ $) 105)) (-2738 (((-112) $ $) 65)) (-2899 (((-566) $) 122)) (-3877 (($) 18 T CONST)) (-1591 (($ $) 94)) (-3066 (((-3 (-566) "failed") $) 110) (((-3 (-409 (-566)) "failed") $) 107)) (-1867 (((-566) $) 111) (((-409 (-566)) $) 108)) (-2949 (($ $ $) 61)) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-1784 (((-112) $) 79)) (-1533 (((-112) $) 120)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 101)) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 104)) (-2719 (($ $) 100)) (-2917 (((-112) $) 121)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-1945 (($ $ $) 119)) (-2709 (($ $ $) 118)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 78)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2539 (($ $) 96)) (-2209 (($ $) 98)) (-2473 (((-420 $) $) 82)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3470 (((-771) $) 64)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-3204 (((-381) $) 113) (((-225) $) 112) (((-892 (-381)) $) 102)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ (-566)) 109) (($ (-409 (-566))) 106)) (-3996 (((-771)) 32 T CONST)) (-1982 (($ $) 99)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-3333 (($ $) 123)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-3010 (((-112) $ $) 116)) (-2984 (((-112) $ $) 115)) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 117)) (-2972 (((-112) $ $) 114)) (-3062 (($ $ $) 73)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77) (($ $ (-409 (-566))) 103)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75)))
(((-1059) (-140)) (T -1059))
-((-1346 (*1 *1 *1) (-4 *1 (-1059))) (-1559 (*1 *1 *1) (-4 *1 (-1059))) (-1604 (*1 *1 *1) (-4 *1 (-1059))) (-4317 (*1 *1 *1) (-4 *1 (-1059))) (-2452 (*1 *2 *1) (-12 (-4 *1 (-1059)) (-5 *2 (-566)))) (-1539 (*1 *1 *1) (-4 *1 (-1059))) (-1881 (*1 *1 *1) (-4 *1 (-1059))) (-4380 (*1 *1 *1) (-4 *1 (-1059))))
-(-13 (-365) (-848) (-1022) (-1038 (-566)) (-1038 (-409 (-566))) (-1002) (-614 (-892 (-381))) (-886 (-381)) (-147) (-10 -8 (-15 -1559 ($ $)) (-15 -1604 ($ $)) (-15 -4317 ($ $)) (-15 -2452 ((-566) $)) (-15 -1539 ($ $)) (-15 -1881 ($ $)) (-15 -4380 ($ $)) (-15 -1346 ($ $))))
+((-3333 (*1 *1 *1) (-4 *1 (-1059))) (-2719 (*1 *1 *1) (-4 *1 (-1059))) (-1982 (*1 *1 *1) (-4 *1 (-1059))) (-2209 (*1 *1 *1) (-4 *1 (-1059))) (-2486 (*1 *2 *1) (-12 (-4 *1 (-1059)) (-5 *2 (-566)))) (-2539 (*1 *1 *1) (-4 *1 (-1059))) (-2922 (*1 *1 *1) (-4 *1 (-1059))) (-1591 (*1 *1 *1) (-4 *1 (-1059))))
+(-13 (-365) (-848) (-1022) (-1038 (-566)) (-1038 (-409 (-566))) (-1002) (-614 (-892 (-381))) (-886 (-381)) (-147) (-10 -8 (-15 -2719 ($ $)) (-15 -1982 ($ $)) (-15 -2209 ($ $)) (-15 -2486 ((-566) $)) (-15 -2539 ($ $)) (-15 -2922 ($ $)) (-15 -1591 ($ $)) (-15 -3333 ($ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 $ $) . T) ((-131) . T) ((-147) . T) ((-616 #0#) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-614 (-225)) . T) ((-614 (-381)) . T) ((-614 (-892 (-381))) . T) ((-243) . T) ((-291) . T) ((-308) . T) ((-365) . T) ((-454) . T) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 $) . T) ((-640 #0#) . T) ((-640 $) . T) ((-717 #0#) . T) ((-717 $) . T) ((-726) . T) ((-791) . T) ((-792) . T) ((-794) . T) ((-795) . T) ((-848) . T) ((-850) . T) ((-886 (-381)) . T) ((-920) . T) ((-1002) . T) ((-1022) . T) ((-1038 (-409 (-566))) . T) ((-1038 (-566)) . T) ((-1051 #0#) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) |#2| $) 26)) (-4025 ((|#1| $) 10)) (-2807 (((-566) |#2| $) 116)) (-2170 (((-3 $ "failed") |#2| (-921)) 75)) (-4368 ((|#1| $) 31)) (-1924 ((|#1| |#2| $ |#1|) 40)) (-1343 (($ $) 28)) (-1579 (((-3 |#2| "failed") |#2| $) 111)) (-1684 (((-112) |#2| $) NIL)) (-1578 (((-112) |#2| $) NIL)) (-1724 (((-112) |#2| $) 27)) (-1764 ((|#1| $) 117)) (-4357 ((|#1| $) 30)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2127 ((|#2| $) 102)) (-2512 (((-862) $) 92)) (-3122 (((-112) $ $) NIL)) (-3645 ((|#1| |#2| $ |#1|) 41)) (-3293 (((-644 $) |#2|) 77)) (-2940 (((-112) $ $) 97)))
-(((-1060 |#1| |#2|) (-13 (-1067 |#1| |#2|) (-10 -8 (-15 -4357 (|#1| $)) (-15 -4368 (|#1| $)) (-15 -4025 (|#1| $)) (-15 -1764 (|#1| $)) (-15 -1343 ($ $)) (-15 -1724 ((-112) |#2| $)) (-15 -1924 (|#1| |#2| $ |#1|)))) (-13 (-848) (-365)) (-1240 |#1|)) (T -1060))
-((-1924 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-4357 (*1 *2 *1) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-4368 (*1 *2 *1) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-4025 (*1 *2 *1) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-1764 (*1 *2 *1) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-1343 (*1 *1 *1) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-1724 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-848) (-365))) (-5 *2 (-112)) (-5 *1 (-1060 *4 *3)) (-4 *3 (-1240 *4)))))
-(-13 (-1067 |#1| |#2|) (-10 -8 (-15 -4357 (|#1| $)) (-15 -4368 (|#1| $)) (-15 -4025 (|#1| $)) (-15 -1764 (|#1| $)) (-15 -1343 ($ $)) (-15 -1724 ((-112) |#2| $)) (-15 -1924 (|#1| |#2| $ |#1|))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-1657 (($ $ $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $ $ $) NIL)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-2807 (((-566) $) NIL)) (-3096 (($ $ $) NIL)) (-2342 (($) NIL T CONST)) (-3542 (($ (-1175)) 10) (($ (-566)) 7)) (-2977 (((-3 (-566) "failed") $) NIL)) (-1756 (((-566) $) NIL)) (-2926 (($ $ $) NIL)) (-1628 (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3800 (((-3 (-409 (-566)) "failed") $) NIL)) (-3717 (((-112) $) NIL)) (-3370 (((-409 (-566)) $) NIL)) (-3335 (($) NIL) (($ $) NIL)) (-2938 (($ $ $) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-3481 (($ $ $ $) NIL)) (-2570 (($ $ $) NIL)) (-1684 (((-112) $) NIL)) (-3870 (($ $ $) NIL)) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL)) (-2741 (((-112) $) NIL)) (-2884 (((-112) $) NIL)) (-2546 (((-3 $ "failed") $) NIL)) (-1578 (((-112) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1839 (($ $ $ $) NIL)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-1623 (($ $) NIL)) (-3822 (($ $) NIL)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2518 (($ $ $) NIL)) (-2759 (($) NIL T CONST)) (-1863 (($ $) NIL)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) NIL) (($ (-644 $)) NIL)) (-3280 (($ $) NIL)) (-2391 (((-420 $) $) NIL)) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1693 (((-112) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-2862 (($ $ (-771)) NIL) (($ $) NIL)) (-2538 (($ $) NIL)) (-3895 (($ $) NIL)) (-3134 (((-566) $) 16) (((-538) $) NIL) (((-892 (-566)) $) NIL) (((-381) $) NIL) (((-225) $) NIL) (($ (-1175)) 9)) (-2512 (((-862) $) 23) (($ (-566)) 6) (($ $) NIL) (($ (-566)) 6)) (-3795 (((-771)) NIL T CONST)) (-1916 (((-112) $ $) NIL)) (-1523 (($ $ $) NIL)) (-3122 (((-112) $ $) NIL)) (-3306 (($) NIL)) (-1634 (((-112) $ $) NIL)) (-2275 (($ $ $ $) NIL)) (-1346 (($ $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-771)) NIL) (($ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)) (-3047 (($ $) 22) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL)))
-(((-1061) (-13 (-547) (-618 (-1175)) (-10 -8 (-6 -4404) (-6 -4409) (-6 -4405) (-15 -3542 ($ (-1175))) (-15 -3542 ($ (-566)))))) (T -1061))
-((-3542 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1061)))) (-3542 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1061)))))
-(-13 (-547) (-618 (-1175)) (-10 -8 (-6 -4404) (-6 -4409) (-6 -4405) (-15 -3542 ($ (-1175))) (-15 -3542 ($ (-566)))))
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL)) (-1537 (((-1269) $ (-1175) (-1175)) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-2981 (($) 9)) (-3874 (((-52) $ (-1175) (-52)) NIL)) (-4272 (($ $) 32)) (-2035 (($ $) 30)) (-2607 (($ $) 29)) (-2554 (($ $) 31)) (-2947 (($ $) 35)) (-3391 (($ $) 36)) (-2943 (($ $) 28)) (-4303 (($ $) 33)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) 27 (|has| $ (-6 -4417)))) (-2414 (((-3 (-52) "failed") (-1175) $) 43)) (-2342 (($) NIL T CONST)) (-4008 (($) 7)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-3066 (($ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) 53 (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-3 (-52) "failed") (-1175) $) NIL)) (-2651 (($ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (((-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417)))) (-2130 (((-3 (-1157) "failed") $ (-1157) (-566)) 74)) (-1332 (((-52) $ (-1175) (-52)) NIL (|has| $ (-6 -4418)))) (-3137 (((-52) $ (-1175)) NIL)) (-3372 (((-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-644 (-52)) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-1175) $) NIL (|has| (-1175) (-850)))) (-2404 (((-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) 38 (|has| $ (-6 -4417))) (((-644 (-52)) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-52) (-1099))))) (-1544 (((-1175) $) NIL (|has| (-1175) (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4418))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-3949 (((-644 (-1175)) $) NIL)) (-3221 (((-112) (-1175) $) NIL)) (-3119 (((-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL)) (-4265 (($ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) 46)) (-1922 (((-644 (-1175)) $) NIL)) (-2040 (((-112) (-1175) $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-3304 (((-381) $ (-1175)) 52)) (-2727 (((-644 (-1157)) $ (-1157)) 76)) (-4062 (((-52) $) NIL (|has| (-1175) (-850)))) (-2126 (((-3 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) "failed") (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL)) (-1720 (($ $ (-52)) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))))) NIL (-12 (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (($ $ (-295 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL (-12 (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (($ $ (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) NIL (-12 (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (($ $ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL (-12 (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-310 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (($ $ (-644 (-52)) (-644 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-295 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-644 (-295 (-52)))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-52) (-1099))))) (-2784 (((-644 (-52)) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 (((-52) $ (-1175)) NIL) (((-52) $ (-1175) (-52)) NIL)) (-3879 (($) NIL) (($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL)) (-2176 (($ $ (-1175)) 54)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099)))) (((-771) (-52) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-52) (-1099)))) (((-771) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) 40)) (-3704 (($ $ $) 41)) (-2512 (((-862) $) NIL (-2805 (|has| (-52) (-613 (-862))) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-613 (-862)))))) (-3305 (($ $ (-1175) (-381)) 50)) (-3657 (($ $ (-1175) (-381)) 51)) (-3122 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))))) NIL)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 (-1175)) (|:| -2818 (-52)))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2010 (-1175)) (|:| -2818 (-52))) (-1099))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1062) (-13 (-1190 (-1175) (-52)) (-10 -8 (-15 -3704 ($ $ $)) (-15 -4008 ($)) (-15 -2943 ($ $)) (-15 -2607 ($ $)) (-15 -2035 ($ $)) (-15 -2554 ($ $)) (-15 -4303 ($ $)) (-15 -4272 ($ $)) (-15 -2947 ($ $)) (-15 -3391 ($ $)) (-15 -3305 ($ $ (-1175) (-381))) (-15 -3657 ($ $ (-1175) (-381))) (-15 -3304 ((-381) $ (-1175))) (-15 -2727 ((-644 (-1157)) $ (-1157))) (-15 -2176 ($ $ (-1175))) (-15 -2981 ($)) (-15 -2130 ((-3 (-1157) "failed") $ (-1157) (-566))) (-6 -4417)))) (T -1062))
-((-3704 (*1 *1 *1 *1) (-5 *1 (-1062))) (-4008 (*1 *1) (-5 *1 (-1062))) (-2943 (*1 *1 *1) (-5 *1 (-1062))) (-2607 (*1 *1 *1) (-5 *1 (-1062))) (-2035 (*1 *1 *1) (-5 *1 (-1062))) (-2554 (*1 *1 *1) (-5 *1 (-1062))) (-4303 (*1 *1 *1) (-5 *1 (-1062))) (-4272 (*1 *1 *1) (-5 *1 (-1062))) (-2947 (*1 *1 *1) (-5 *1 (-1062))) (-3391 (*1 *1 *1) (-5 *1 (-1062))) (-3305 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-381)) (-5 *1 (-1062)))) (-3657 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-381)) (-5 *1 (-1062)))) (-3304 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-381)) (-5 *1 (-1062)))) (-2727 (*1 *2 *1 *3) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1062)) (-5 *3 (-1157)))) (-2176 (*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1062)))) (-2981 (*1 *1) (-5 *1 (-1062))) (-2130 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-1062)))))
-(-13 (-1190 (-1175) (-52)) (-10 -8 (-15 -3704 ($ $ $)) (-15 -4008 ($)) (-15 -2943 ($ $)) (-15 -2607 ($ $)) (-15 -2035 ($ $)) (-15 -2554 ($ $)) (-15 -4303 ($ $)) (-15 -4272 ($ $)) (-15 -2947 ($ $)) (-15 -3391 ($ $)) (-15 -3305 ($ $ (-1175) (-381))) (-15 -3657 ($ $ (-1175) (-381))) (-15 -3304 ((-381) $ (-1175))) (-15 -2727 ((-644 (-1157)) $ (-1157))) (-15 -2176 ($ $ (-1175))) (-15 -2981 ($)) (-15 -2130 ((-3 (-1157) "failed") $ (-1157) (-566))) (-6 -4417)))
-((-3301 (($ $) 46)) (-3480 (((-112) $ $) 82)) (-2977 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-952 (-409 (-566)))) 253) (((-3 $ "failed") (-952 (-566))) 252) (((-3 $ "failed") (-952 |#2|)) 255)) (-1756 ((|#2| $) NIL) (((-409 (-566)) $) NIL) (((-566) $) NIL) ((|#4| $) NIL) (($ (-952 (-409 (-566)))) 241) (($ (-952 (-566))) 237) (($ (-952 |#2|)) 257)) (-3577 (($ $) NIL) (($ $ |#4|) 44)) (-2531 (((-112) $ $) 131) (((-112) $ (-644 $)) 135)) (-1501 (((-112) $) 60)) (-2513 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 125)) (-1524 (($ $) 160)) (-1689 (($ $) 156)) (-2732 (($ $) 155)) (-3684 (($ $ $) 87) (($ $ $ |#4|) 92)) (-2151 (($ $ $) 90) (($ $ $ |#4|) 94)) (-4260 (((-112) $ $) 143) (((-112) $ (-644 $)) 144)) (-1594 ((|#4| $) 32)) (-1982 (($ $ $) 128)) (-1912 (((-112) $) 59)) (-1961 (((-771) $) 35)) (-1533 (($ $) 174)) (-3262 (($ $) 171)) (-2017 (((-644 $) $) 72)) (-2401 (($ $) 62)) (-1506 (($ $) 167)) (-2224 (((-644 $) $) 69)) (-3708 (($ $) 64)) (-3557 ((|#2| $) NIL) (($ $ |#4|) 39)) (-2927 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1812 (-771))) $ $) 130)) (-1992 (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $) 126) (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $ |#4|) 127)) (-2311 (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -1644 $)) $ $) 121) (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -1644 $)) $ $ |#4|) 123)) (-2728 (($ $ $) 97) (($ $ $ |#4|) 106)) (-2695 (($ $ $) 98) (($ $ $ |#4|) 107)) (-1392 (((-644 $) $) 54)) (-3377 (((-112) $ $) 140) (((-112) $ (-644 $)) 141)) (-1687 (($ $ $) 116)) (-2759 (($ $) 37)) (-2343 (((-112) $ $) 80)) (-3257 (((-112) $ $) 136) (((-112) $ (-644 $)) 138)) (-2930 (($ $ $) 112)) (-4341 (($ $) 41)) (-2222 ((|#2| |#2| $) 164) (($ (-644 $)) NIL) (($ $ $) NIL)) (-2999 (($ $ |#2|) NIL) (($ $ $) 153)) (-2582 (($ $ |#2|) 148) (($ $ $) 151)) (-2735 (($ $) 49)) (-3906 (($ $) 55)) (-3134 (((-892 (-381)) $) NIL) (((-892 (-566)) $) NIL) (((-538) $) NIL) (($ (-952 (-409 (-566)))) 243) (($ (-952 (-566))) 239) (($ (-952 |#2|)) 254) (((-1157) $) 281) (((-952 |#2|) $) 184)) (-2512 (((-862) $) 29) (($ (-566)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-952 |#2|) $) 185) (($ (-409 (-566))) NIL) (($ $) NIL)) (-2548 (((-3 (-112) "failed") $ $) 79)))
-(((-1063 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2512 (|#1| |#1|)) (-15 -2222 (|#1| |#1| |#1|)) (-15 -2222 (|#1| (-644 |#1|))) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 ((-952 |#2|) |#1|)) (-15 -3134 ((-952 |#2|) |#1|)) (-15 -3134 ((-1157) |#1|)) (-15 -1533 (|#1| |#1|)) (-15 -3262 (|#1| |#1|)) (-15 -1506 (|#1| |#1|)) (-15 -1524 (|#1| |#1|)) (-15 -2222 (|#2| |#2| |#1|)) (-15 -2999 (|#1| |#1| |#1|)) (-15 -2582 (|#1| |#1| |#1|)) (-15 -2999 (|#1| |#1| |#2|)) (-15 -2582 (|#1| |#1| |#2|)) (-15 -1689 (|#1| |#1|)) (-15 -2732 (|#1| |#1|)) (-15 -3134 (|#1| (-952 |#2|))) (-15 -1756 (|#1| (-952 |#2|))) (-15 -2977 ((-3 |#1| "failed") (-952 |#2|))) (-15 -3134 (|#1| (-952 (-566)))) (-15 -1756 (|#1| (-952 (-566)))) (-15 -2977 ((-3 |#1| "failed") (-952 (-566)))) (-15 -3134 (|#1| (-952 (-409 (-566))))) (-15 -1756 (|#1| (-952 (-409 (-566))))) (-15 -2977 ((-3 |#1| "failed") (-952 (-409 (-566))))) (-15 -1687 (|#1| |#1| |#1|)) (-15 -2930 (|#1| |#1| |#1|)) (-15 -2927 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1812 (-771))) |#1| |#1|)) (-15 -1982 (|#1| |#1| |#1|)) (-15 -2513 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -1992 ((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1| |#4|)) (-15 -1992 ((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -2311 ((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -1644 |#1|)) |#1| |#1| |#4|)) (-15 -2311 ((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -2695 (|#1| |#1| |#1| |#4|)) (-15 -2728 (|#1| |#1| |#1| |#4|)) (-15 -2695 (|#1| |#1| |#1|)) (-15 -2728 (|#1| |#1| |#1|)) (-15 -2151 (|#1| |#1| |#1| |#4|)) (-15 -3684 (|#1| |#1| |#1| |#4|)) (-15 -2151 (|#1| |#1| |#1|)) (-15 -3684 (|#1| |#1| |#1|)) (-15 -4260 ((-112) |#1| (-644 |#1|))) (-15 -4260 ((-112) |#1| |#1|)) (-15 -3377 ((-112) |#1| (-644 |#1|))) (-15 -3377 ((-112) |#1| |#1|)) (-15 -3257 ((-112) |#1| (-644 |#1|))) (-15 -3257 ((-112) |#1| |#1|)) (-15 -2531 ((-112) |#1| (-644 |#1|))) (-15 -2531 ((-112) |#1| |#1|)) (-15 -3480 ((-112) |#1| |#1|)) (-15 -2343 ((-112) |#1| |#1|)) (-15 -2548 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2017 ((-644 |#1|) |#1|)) (-15 -2224 ((-644 |#1|) |#1|)) (-15 -3708 (|#1| |#1|)) (-15 -2401 (|#1| |#1|)) (-15 -1501 ((-112) |#1|)) (-15 -1912 ((-112) |#1|)) (-15 -3577 (|#1| |#1| |#4|)) (-15 -3557 (|#1| |#1| |#4|)) (-15 -3906 (|#1| |#1|)) (-15 -1392 ((-644 |#1|) |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -3301 (|#1| |#1|)) (-15 -4341 (|#1| |#1|)) (-15 -2759 (|#1| |#1|)) (-15 -1961 ((-771) |#1|)) (-15 -1594 (|#4| |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -2512 (|#1| |#4|)) (-15 -2977 ((-3 |#4| "failed") |#1|)) (-15 -1756 (|#4| |#1|)) (-15 -3557 (|#2| |#1|)) (-15 -3577 (|#1| |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|))) (-1064 |#2| |#3| |#4|) (-1049) (-793) (-850)) (T -1063))
-NIL
-(-10 -8 (-15 -2512 (|#1| |#1|)) (-15 -2222 (|#1| |#1| |#1|)) (-15 -2222 (|#1| (-644 |#1|))) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 ((-952 |#2|) |#1|)) (-15 -3134 ((-952 |#2|) |#1|)) (-15 -3134 ((-1157) |#1|)) (-15 -1533 (|#1| |#1|)) (-15 -3262 (|#1| |#1|)) (-15 -1506 (|#1| |#1|)) (-15 -1524 (|#1| |#1|)) (-15 -2222 (|#2| |#2| |#1|)) (-15 -2999 (|#1| |#1| |#1|)) (-15 -2582 (|#1| |#1| |#1|)) (-15 -2999 (|#1| |#1| |#2|)) (-15 -2582 (|#1| |#1| |#2|)) (-15 -1689 (|#1| |#1|)) (-15 -2732 (|#1| |#1|)) (-15 -3134 (|#1| (-952 |#2|))) (-15 -1756 (|#1| (-952 |#2|))) (-15 -2977 ((-3 |#1| "failed") (-952 |#2|))) (-15 -3134 (|#1| (-952 (-566)))) (-15 -1756 (|#1| (-952 (-566)))) (-15 -2977 ((-3 |#1| "failed") (-952 (-566)))) (-15 -3134 (|#1| (-952 (-409 (-566))))) (-15 -1756 (|#1| (-952 (-409 (-566))))) (-15 -2977 ((-3 |#1| "failed") (-952 (-409 (-566))))) (-15 -1687 (|#1| |#1| |#1|)) (-15 -2930 (|#1| |#1| |#1|)) (-15 -2927 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1812 (-771))) |#1| |#1|)) (-15 -1982 (|#1| |#1| |#1|)) (-15 -2513 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -1992 ((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1| |#4|)) (-15 -1992 ((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -2311 ((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -1644 |#1|)) |#1| |#1| |#4|)) (-15 -2311 ((-2 (|:| -3157 |#1|) (|:| |gap| (-771)) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -2695 (|#1| |#1| |#1| |#4|)) (-15 -2728 (|#1| |#1| |#1| |#4|)) (-15 -2695 (|#1| |#1| |#1|)) (-15 -2728 (|#1| |#1| |#1|)) (-15 -2151 (|#1| |#1| |#1| |#4|)) (-15 -3684 (|#1| |#1| |#1| |#4|)) (-15 -2151 (|#1| |#1| |#1|)) (-15 -3684 (|#1| |#1| |#1|)) (-15 -4260 ((-112) |#1| (-644 |#1|))) (-15 -4260 ((-112) |#1| |#1|)) (-15 -3377 ((-112) |#1| (-644 |#1|))) (-15 -3377 ((-112) |#1| |#1|)) (-15 -3257 ((-112) |#1| (-644 |#1|))) (-15 -3257 ((-112) |#1| |#1|)) (-15 -2531 ((-112) |#1| (-644 |#1|))) (-15 -2531 ((-112) |#1| |#1|)) (-15 -3480 ((-112) |#1| |#1|)) (-15 -2343 ((-112) |#1| |#1|)) (-15 -2548 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2017 ((-644 |#1|) |#1|)) (-15 -2224 ((-644 |#1|) |#1|)) (-15 -3708 (|#1| |#1|)) (-15 -2401 (|#1| |#1|)) (-15 -1501 ((-112) |#1|)) (-15 -1912 ((-112) |#1|)) (-15 -3577 (|#1| |#1| |#4|)) (-15 -3557 (|#1| |#1| |#4|)) (-15 -3906 (|#1| |#1|)) (-15 -1392 ((-644 |#1|) |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -3301 (|#1| |#1|)) (-15 -4341 (|#1| |#1|)) (-15 -2759 (|#1| |#1|)) (-15 -1961 ((-771) |#1|)) (-15 -1594 (|#4| |#1|)) (-15 -3134 ((-538) |#1|)) (-15 -3134 ((-892 (-566)) |#1|)) (-15 -3134 ((-892 (-381)) |#1|)) (-15 -2512 (|#1| |#4|)) (-15 -2977 ((-3 |#4| "failed") |#1|)) (-15 -1756 (|#4| |#1|)) (-15 -3557 (|#2| |#1|)) (-15 -3577 (|#1| |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2540 (((-644 |#3|) $) 112)) (-2358 (((-1171 $) $ |#3|) 127) (((-1171 |#1|) $) 126)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 89 (|has| |#1| (-558)))) (-3653 (($ $) 90 (|has| |#1| (-558)))) (-2152 (((-112) $) 92 (|has| |#1| (-558)))) (-3678 (((-771) $) 114) (((-771) $ (-644 |#3|)) 113)) (-3301 (($ $) 273)) (-3480 (((-112) $ $) 259)) (-4126 (((-3 $ "failed") $ $) 20)) (-2829 (($ $ $) 218 (|has| |#1| (-558)))) (-3331 (((-644 $) $ $) 213 (|has| |#1| (-558)))) (-2055 (((-420 (-1171 $)) (-1171 $)) 102 (|has| |#1| (-909)))) (-2857 (($ $) 100 (|has| |#1| (-454)))) (-1370 (((-420 $) $) 99 (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 105 (|has| |#1| (-909)))) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#1| "failed") $) 166) (((-3 (-409 (-566)) "failed") $) 163 (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) 161 (|has| |#1| (-1038 (-566)))) (((-3 |#3| "failed") $) 138) (((-3 $ "failed") (-952 (-409 (-566)))) 233 (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175))))) (((-3 $ "failed") (-952 (-566))) 230 (-2805 (-12 (-2426 (|has| |#1| (-38 (-409 (-566))))) (|has| |#1| (-38 (-566))) (|has| |#3| (-614 (-1175)))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175)))))) (((-3 $ "failed") (-952 |#1|)) 227 (-2805 (-12 (-2426 (|has| |#1| (-38 (-409 (-566))))) (-2426 (|has| |#1| (-38 (-566)))) (|has| |#3| (-614 (-1175)))) (-12 (-2426 (|has| |#1| (-547))) (-2426 (|has| |#1| (-38 (-409 (-566))))) (|has| |#1| (-38 (-566))) (|has| |#3| (-614 (-1175)))) (-12 (-2426 (|has| |#1| (-992 (-566)))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175))))))) (-1756 ((|#1| $) 165) (((-409 (-566)) $) 164 (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) 162 (|has| |#1| (-1038 (-566)))) ((|#3| $) 139) (($ (-952 (-409 (-566)))) 232 (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175))))) (($ (-952 (-566))) 229 (-2805 (-12 (-2426 (|has| |#1| (-38 (-409 (-566))))) (|has| |#1| (-38 (-566))) (|has| |#3| (-614 (-1175)))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175)))))) (($ (-952 |#1|)) 226 (-2805 (-12 (-2426 (|has| |#1| (-38 (-409 (-566))))) (-2426 (|has| |#1| (-38 (-566)))) (|has| |#3| (-614 (-1175)))) (-12 (-2426 (|has| |#1| (-547))) (-2426 (|has| |#1| (-38 (-409 (-566))))) (|has| |#1| (-38 (-566))) (|has| |#3| (-614 (-1175)))) (-12 (-2426 (|has| |#1| (-992 (-566)))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175))))))) (-1552 (($ $ $ |#3|) 110 (|has| |#1| (-172))) (($ $ $) 214 (|has| |#1| (-558)))) (-3577 (($ $) 156) (($ $ |#3|) 268)) (-1628 (((-689 (-566)) (-689 $)) 136 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 135 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 134) (((-689 |#1|) (-689 $)) 133)) (-2531 (((-112) $ $) 258) (((-112) $ (-644 $)) 257)) (-1579 (((-3 $ "failed") $) 37)) (-1501 (((-112) $) 266)) (-2513 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 238)) (-1524 (($ $) 207 (|has| |#1| (-454)))) (-4248 (($ $) 178 (|has| |#1| (-454))) (($ $ |#3|) 107 (|has| |#1| (-454)))) (-3567 (((-644 $) $) 111)) (-2635 (((-112) $) 98 (|has| |#1| (-909)))) (-1689 (($ $) 223 (|has| |#1| (-558)))) (-2732 (($ $) 224 (|has| |#1| (-558)))) (-3684 (($ $ $) 250) (($ $ $ |#3|) 248)) (-2151 (($ $ $) 249) (($ $ $ |#3|) 247)) (-2804 (($ $ |#1| |#2| $) 174)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 86 (-12 (|has| |#3| (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 85 (-12 (|has| |#3| (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-2741 (((-112) $) 35)) (-3505 (((-771) $) 171)) (-4260 (((-112) $ $) 252) (((-112) $ (-644 $)) 251)) (-3375 (($ $ $ $ $) 209 (|has| |#1| (-558)))) (-1594 ((|#3| $) 277)) (-2530 (($ (-1171 |#1|) |#3|) 119) (($ (-1171 $) |#3|) 118)) (-1363 (((-644 $) $) 128)) (-4367 (((-112) $) 154)) (-2519 (($ |#1| |#2|) 155) (($ $ |#3| (-771)) 121) (($ $ (-644 |#3|) (-644 (-771))) 120)) (-1982 (($ $ $) 237)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ |#3|) 122)) (-1912 (((-112) $) 267)) (-3251 ((|#2| $) 172) (((-771) $ |#3|) 124) (((-644 (-771)) $ (-644 |#3|)) 123)) (-1961 (((-771) $) 276)) (-2132 (($ (-1 |#2| |#2|) $) 173)) (-3077 (($ (-1 |#1| |#1|) $) 153)) (-3339 (((-3 |#3| "failed") $) 125)) (-1533 (($ $) 204 (|has| |#1| (-454)))) (-3262 (($ $) 205 (|has| |#1| (-454)))) (-2017 (((-644 $) $) 262)) (-2401 (($ $) 265)) (-1506 (($ $) 206 (|has| |#1| (-454)))) (-2224 (((-644 $) $) 263)) (-3708 (($ $) 264)) (-3545 (($ $) 151)) (-3557 ((|#1| $) 150) (($ $ |#3|) 269)) (-2184 (($ (-644 $)) 96 (|has| |#1| (-454))) (($ $ $) 95 (|has| |#1| (-454)))) (-2927 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1812 (-771))) $ $) 236)) (-1992 (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $) 240) (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $ |#3|) 239)) (-2311 (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -1644 $)) $ $) 242) (((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -1644 $)) $ $ |#3|) 241)) (-2728 (($ $ $) 246) (($ $ $ |#3|) 244)) (-2695 (($ $ $) 245) (($ $ $ |#3|) 243)) (-2878 (((-1157) $) 10)) (-1624 (($ $ $) 212 (|has| |#1| (-558)))) (-1392 (((-644 $) $) 271)) (-2692 (((-3 (-644 $) "failed") $) 116)) (-1853 (((-3 (-644 $) "failed") $) 117)) (-3285 (((-3 (-2 (|:| |var| |#3|) (|:| -3250 (-771))) "failed") $) 115)) (-3377 (((-112) $ $) 254) (((-112) $ (-644 $)) 253)) (-1687 (($ $ $) 234)) (-2759 (($ $) 275)) (-2343 (((-112) $ $) 260)) (-3257 (((-112) $ $) 256) (((-112) $ (-644 $)) 255)) (-2930 (($ $ $) 235)) (-4341 (($ $) 274)) (-4033 (((-1119) $) 11)) (-2687 (((-2 (|:| -2222 $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-558)))) (-1948 (((-2 (|:| -2222 $) (|:| |coef1| $)) $ $) 216 (|has| |#1| (-558)))) (-2636 (((-112) $) 168)) (-3531 ((|#1| $) 169)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 97 (|has| |#1| (-454)))) (-2222 ((|#1| |#1| $) 208 (|has| |#1| (-454))) (($ (-644 $)) 94 (|has| |#1| (-454))) (($ $ $) 93 (|has| |#1| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) 104 (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) 103 (|has| |#1| (-909)))) (-2391 (((-420 $) $) 101 (|has| |#1| (-909)))) (-2298 (((-2 (|:| -2222 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 217 (|has| |#1| (-558)))) (-2972 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-558)))) (-2999 (($ $ |#1|) 221 (|has| |#1| (-558))) (($ $ $) 219 (|has| |#1| (-558)))) (-2582 (($ $ |#1|) 222 (|has| |#1| (-558))) (($ $ $) 220 (|has| |#1| (-558)))) (-2070 (($ $ (-644 (-295 $))) 147) (($ $ (-295 $)) 146) (($ $ $ $) 145) (($ $ (-644 $) (-644 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-644 |#3|) (-644 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-644 |#3|) (-644 $)) 140)) (-2408 (($ $ |#3|) 109 (|has| |#1| (-172)))) (-2862 (($ $ |#3|) 46) (($ $ (-644 |#3|)) 45) (($ $ |#3| (-771)) 44) (($ $ (-644 |#3|) (-644 (-771))) 43)) (-3992 ((|#2| $) 152) (((-771) $ |#3|) 132) (((-644 (-771)) $ (-644 |#3|)) 131)) (-2735 (($ $) 272)) (-3906 (($ $) 270)) (-3134 (((-892 (-381)) $) 84 (-12 (|has| |#3| (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) 83 (-12 (|has| |#3| (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) 82 (-12 (|has| |#3| (-614 (-538))) (|has| |#1| (-614 (-538))))) (($ (-952 (-409 (-566)))) 231 (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175))))) (($ (-952 (-566))) 228 (-2805 (-12 (-2426 (|has| |#1| (-38 (-409 (-566))))) (|has| |#1| (-38 (-566))) (|has| |#3| (-614 (-1175)))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175)))))) (($ (-952 |#1|)) 225 (|has| |#3| (-614 (-1175)))) (((-1157) $) 203 (-12 (|has| |#1| (-1038 (-566))) (|has| |#3| (-614 (-1175))))) (((-952 |#1|) $) 202 (|has| |#3| (-614 (-1175))))) (-3181 ((|#1| $) 177 (|has| |#1| (-454))) (($ $ |#3|) 108 (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 106 (-2438 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 167) (($ |#3|) 137) (((-952 |#1|) $) 201 (|has| |#3| (-614 (-1175)))) (($ (-409 (-566))) 80 (-2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566)))))) (($ $) 87 (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) 170)) (-2022 ((|#1| $ |#2|) 157) (($ $ |#3| (-771)) 130) (($ $ (-644 |#3|) (-644 (-771))) 129)) (-3842 (((-3 $ "failed") $) 81 (-2805 (-2438 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) 32 T CONST)) (-2468 (($ $ $ (-771)) 175 (|has| |#1| (-172)))) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 91 (|has| |#1| (-558)))) (-2485 (($) 19 T CONST)) (-2548 (((-3 (-112) "failed") $ $) 261)) (-2495 (($) 34 T CONST)) (-2591 (($ $ $ $ (-771)) 210 (|has| |#1| (-558)))) (-2157 (($ $ $ (-771)) 211 (|has| |#1| (-558)))) (-2840 (($ $ |#3|) 42) (($ $ (-644 |#3|)) 41) (($ $ |#3| (-771)) 40) (($ $ (-644 |#3|) (-644 (-771))) 39)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 158 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 160 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 159 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) |#2| $) 26)) (-4070 ((|#1| $) 10)) (-2899 (((-566) |#2| $) 116)) (-2778 (((-3 $ "failed") |#2| (-921)) 75)) (-4394 ((|#1| $) 31)) (-2150 ((|#1| |#2| $ |#1|) 40)) (-3301 (($ $) 28)) (-2928 (((-3 |#2| "failed") |#2| $) 111)) (-1533 (((-112) |#2| $) NIL)) (-2917 (((-112) |#2| $) NIL)) (-3793 (((-112) |#2| $) 27)) (-4184 ((|#1| $) 117)) (-4380 ((|#1| $) 30)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3601 ((|#2| $) 102)) (-3780 (((-862) $) 92)) (-3801 (((-112) $ $) NIL)) (-3651 ((|#1| |#2| $ |#1|) 41)) (-2798 (((-644 $) |#2|) 77)) (-2950 (((-112) $ $) 97)))
+(((-1060 |#1| |#2|) (-13 (-1067 |#1| |#2|) (-10 -8 (-15 -4380 (|#1| $)) (-15 -4394 (|#1| $)) (-15 -4070 (|#1| $)) (-15 -4184 (|#1| $)) (-15 -3301 ($ $)) (-15 -3793 ((-112) |#2| $)) (-15 -2150 (|#1| |#2| $ |#1|)))) (-13 (-848) (-365)) (-1240 |#1|)) (T -1060))
+((-2150 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-4380 (*1 *2 *1) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-4394 (*1 *2 *1) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-4070 (*1 *2 *1) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-4184 (*1 *2 *1) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-3301 (*1 *1 *1) (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3)) (-4 *3 (-1240 *2)))) (-3793 (*1 *2 *3 *1) (-12 (-4 *4 (-13 (-848) (-365))) (-5 *2 (-112)) (-5 *1 (-1060 *4 *3)) (-4 *3 (-1240 *4)))))
+(-13 (-1067 |#1| |#2|) (-10 -8 (-15 -4380 (|#1| $)) (-15 -4394 (|#1| $)) (-15 -4070 (|#1| $)) (-15 -4184 (|#1| $)) (-15 -3301 ($ $)) (-15 -3793 ((-112) |#2| $)) (-15 -2150 (|#1| |#2| $ |#1|))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4332 (($ $ $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4172 (($ $ $ $) NIL)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-2899 (((-566) $) NIL)) (-3129 (($ $ $) NIL)) (-3877 (($) NIL T CONST)) (-3351 (($ (-1175)) 10) (($ (-566)) 7)) (-3066 (((-3 (-566) "failed") $) NIL)) (-1867 (((-566) $) NIL)) (-2949 (($ $ $) NIL)) (-2210 (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-689 (-566)) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-4045 (((-3 (-409 (-566)) "failed") $) NIL)) (-1356 (((-112) $) NIL)) (-2269 (((-409 (-566)) $) NIL)) (-1618 (($) NIL) (($ $) NIL)) (-2960 (($ $ $) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-4012 (($ $ $ $) NIL)) (-2385 (($ $ $) NIL)) (-1533 (((-112) $) NIL)) (-3477 (($ $ $) NIL)) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL)) (-3466 (((-112) $) NIL)) (-2469 (((-112) $) NIL)) (-2133 (((-3 $ "failed") $) NIL)) (-2917 (((-112) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2513 (($ $ $ $) NIL)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-2428 (($ $) NIL)) (-3945 (($ $) NIL)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-1885 (($ $ $) NIL)) (-3625 (($) NIL T CONST)) (-2637 (($ $) NIL)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2711 (($ $) NIL)) (-2473 (((-420 $) $) NIL)) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1630 (((-112) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2578 (($ $ (-771)) NIL) (($ $) NIL)) (-4090 (($ $) NIL)) (-3940 (($ $) NIL)) (-3204 (((-566) $) 16) (((-538) $) NIL) (((-892 (-566)) $) NIL) (((-381) $) NIL) (((-225) $) NIL) (($ (-1175)) 9)) (-3780 (((-862) $) 23) (($ (-566)) 6) (($ $) NIL) (($ (-566)) 6)) (-3996 (((-771)) NIL T CONST)) (-2078 (((-112) $ $) NIL)) (-2378 (($ $ $) NIL)) (-3801 (((-112) $ $) NIL)) (-3819 (($) NIL)) (-2278 (((-112) $ $) NIL)) (-1314 (($ $ $ $) NIL)) (-3333 (($ $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-771)) NIL) (($ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)) (-3051 (($ $) 22) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL)))
+(((-1061) (-13 (-547) (-618 (-1175)) (-10 -8 (-6 -4401) (-6 -4406) (-6 -4402) (-15 -3351 ($ (-1175))) (-15 -3351 ($ (-566)))))) (T -1061))
+((-3351 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1061)))) (-3351 (*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1061)))))
+(-13 (-547) (-618 (-1175)) (-10 -8 (-6 -4401) (-6 -4406) (-6 -4402) (-15 -3351 ($ (-1175))) (-15 -3351 ($ (-566)))))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL)) (-2518 (((-1269) $ (-1175) (-1175)) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-2001 (($) 9)) (-3916 (((-52) $ (-1175) (-52)) NIL)) (-2970 (($ $) 32)) (-3881 (($ $) 30)) (-1484 (($ $) 29)) (-2220 (($ $) 31)) (-1822 (($ $) 35)) (-4315 (($ $) 36)) (-1790 (($ $) 28)) (-2071 (($ $) 33)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) 27 (|has| $ (-6 -4414)))) (-2450 (((-3 (-52) "failed") (-1175) $) 43)) (-3877 (($) NIL T CONST)) (-2251 (($) 7)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-1450 (($ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) 53 (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-3 (-52) "failed") (-1175) $) NIL)) (-2661 (($ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (((-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414)))) (-3623 (((-3 (-1157) "failed") $ (-1157) (-566)) 74)) (-3128 (((-52) $ (-1175) (-52)) NIL (|has| $ (-6 -4415)))) (-3059 (((-52) $ (-1175)) NIL)) (-3799 (((-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-644 (-52)) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-1175) $) NIL (|has| (-1175) (-850)))) (-3276 (((-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) 38 (|has| $ (-6 -4414))) (((-644 (-52)) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-52) (-1099))))) (-2579 (((-1175) $) NIL (|has| (-1175) (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4415))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-4314 (((-644 (-1175)) $) NIL)) (-3422 (((-112) (-1175) $) NIL)) (-3765 (((-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL)) (-2903 (($ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) 46)) (-2140 (((-644 (-1175)) $) NIL)) (-3935 (((-112) (-1175) $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-2886 (((-381) $ (-1175)) 52)) (-3337 (((-644 (-1157)) $ (-1157)) 76)) (-4101 (((-52) $) NIL (|has| (-1175) (-850)))) (-3591 (((-3 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) "failed") (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL)) (-3750 (($ $ (-52)) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))))) NIL (-12 (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (($ $ (-295 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL (-12 (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (($ $ (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) NIL (-12 (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (($ $ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL (-12 (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-310 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (($ $ (-644 (-52)) (-644 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-52) (-52)) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-295 (-52))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099)))) (($ $ (-644 (-295 (-52)))) NIL (-12 (|has| (-52) (-310 (-52))) (|has| (-52) (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-52) (-1099))))) (-2684 (((-644 (-52)) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 (((-52) $ (-1175)) NIL) (((-52) $ (-1175) (-52)) NIL)) (-3551 (($) NIL) (($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL)) (-2842 (($ $ (-1175)) 54)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099)))) (((-771) (-52) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-52) (-1099)))) (((-771) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) 40)) (-3727 (($ $ $) 41)) (-3780 (((-862) $) NIL (-2805 (|has| (-52) (-613 (-862))) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-613 (-862)))))) (-2896 (($ $ (-1175) (-381)) 50)) (-2003 (($ $ (-1175) (-381)) 51)) (-3801 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))))) NIL)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 (-1175)) (|:| -2849 (-52)))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (-2805 (|has| (-52) (-1099)) (|has| (-2 (|:| -2050 (-1175)) (|:| -2849 (-52))) (-1099))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1062) (-13 (-1190 (-1175) (-52)) (-10 -8 (-15 -3727 ($ $ $)) (-15 -2251 ($)) (-15 -1790 ($ $)) (-15 -1484 ($ $)) (-15 -3881 ($ $)) (-15 -2220 ($ $)) (-15 -2071 ($ $)) (-15 -2970 ($ $)) (-15 -1822 ($ $)) (-15 -4315 ($ $)) (-15 -2896 ($ $ (-1175) (-381))) (-15 -2003 ($ $ (-1175) (-381))) (-15 -2886 ((-381) $ (-1175))) (-15 -3337 ((-644 (-1157)) $ (-1157))) (-15 -2842 ($ $ (-1175))) (-15 -2001 ($)) (-15 -3623 ((-3 (-1157) "failed") $ (-1157) (-566))) (-6 -4414)))) (T -1062))
+((-3727 (*1 *1 *1 *1) (-5 *1 (-1062))) (-2251 (*1 *1) (-5 *1 (-1062))) (-1790 (*1 *1 *1) (-5 *1 (-1062))) (-1484 (*1 *1 *1) (-5 *1 (-1062))) (-3881 (*1 *1 *1) (-5 *1 (-1062))) (-2220 (*1 *1 *1) (-5 *1 (-1062))) (-2071 (*1 *1 *1) (-5 *1 (-1062))) (-2970 (*1 *1 *1) (-5 *1 (-1062))) (-1822 (*1 *1 *1) (-5 *1 (-1062))) (-4315 (*1 *1 *1) (-5 *1 (-1062))) (-2896 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-381)) (-5 *1 (-1062)))) (-2003 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-381)) (-5 *1 (-1062)))) (-2886 (*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-381)) (-5 *1 (-1062)))) (-3337 (*1 *2 *1 *3) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1062)) (-5 *3 (-1157)))) (-2842 (*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1062)))) (-2001 (*1 *1) (-5 *1 (-1062))) (-3623 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-1062)))))
+(-13 (-1190 (-1175) (-52)) (-10 -8 (-15 -3727 ($ $ $)) (-15 -2251 ($)) (-15 -1790 ($ $)) (-15 -1484 ($ $)) (-15 -3881 ($ $)) (-15 -2220 ($ $)) (-15 -2071 ($ $)) (-15 -2970 ($ $)) (-15 -1822 ($ $)) (-15 -4315 ($ $)) (-15 -2896 ($ $ (-1175) (-381))) (-15 -2003 ($ $ (-1175) (-381))) (-15 -2886 ((-381) $ (-1175))) (-15 -3337 ((-644 (-1157)) $ (-1157))) (-15 -2842 ($ $ (-1175))) (-15 -2001 ($)) (-15 -3623 ((-3 (-1157) "failed") $ (-1157) (-566))) (-6 -4414)))
+((-4043 (($ $) 46)) (-4001 (((-112) $ $) 82)) (-3066 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-952 (-409 (-566)))) 253) (((-3 $ "failed") (-952 (-566))) 252) (((-3 $ "failed") (-952 |#2|)) 255)) (-1867 ((|#2| $) NIL) (((-409 (-566)) $) NIL) (((-566) $) NIL) ((|#4| $) NIL) (($ (-952 (-409 (-566)))) 241) (($ (-952 (-566))) 237) (($ (-952 |#2|)) 257)) (-3645 (($ $) NIL) (($ $ |#4|) 44)) (-1991 (((-112) $ $) 131) (((-112) $ (-644 $)) 135)) (-3357 (((-112) $) 60)) (-3048 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 125)) (-2389 (($ $) 160)) (-1593 (($ $) 156)) (-3382 (($ $) 155)) (-2275 (($ $ $) 87) (($ $ $ |#4|) 92)) (-2634 (($ $ $) 90) (($ $ $ |#4|) 94)) (-2848 (((-112) $ $) 143) (((-112) $ (-644 $)) 144)) (-1887 ((|#4| $) 32)) (-1482 (($ $ $) 128)) (-2046 (((-112) $) 59)) (-4348 (((-771) $) 35)) (-2488 (($ $) 174)) (-2571 (($ $) 171)) (-3720 (((-644 $) $) 72)) (-3251 (($ $) 62)) (-3412 (($ $) 167)) (-2053 (((-644 $) $) 69)) (-4349 (($ $) 64)) (-3626 ((|#2| $) NIL) (($ $ |#4|) 39)) (-1634 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3458 (-771))) $ $) 130)) (-1599 (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $) 126) (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $ |#4|) 127)) (-1705 (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -4228 $)) $ $) 121) (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -4228 $)) $ $ |#4|) 123)) (-3348 (($ $ $) 97) (($ $ $ |#4|) 106)) (-4218 (($ $ $) 98) (($ $ $ |#4|) 107)) (-3457 (((-644 $) $) 54)) (-2337 (((-112) $ $) 140) (((-112) $ (-644 $)) 141)) (-1569 (($ $ $) 116)) (-3625 (($ $) 37)) (-3886 (((-112) $ $) 80)) (-2531 (((-112) $ $) 136) (((-112) $ (-644 $)) 138)) (-1671 (($ $ $) 112)) (-2464 (($ $) 41)) (-2235 ((|#2| |#2| $) 164) (($ (-644 $)) NIL) (($ $ $) NIL)) (-2131 (($ $ |#2|) NIL) (($ $ $) 153)) (-4341 (($ $ |#2|) 148) (($ $ $) 151)) (-3403 (($ $) 49)) (-2595 (($ $) 55)) (-3204 (((-892 (-381)) $) NIL) (((-892 (-566)) $) NIL) (((-538) $) NIL) (($ (-952 (-409 (-566)))) 243) (($ (-952 (-566))) 239) (($ (-952 |#2|)) 254) (((-1157) $) 281) (((-952 |#2|) $) 184)) (-3780 (((-862) $) 29) (($ (-566)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-952 |#2|) $) 185) (($ (-409 (-566))) NIL) (($ $) NIL)) (-2152 (((-3 (-112) "failed") $ $) 79)))
+(((-1063 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3780 (|#1| |#1|)) (-15 -2235 (|#1| |#1| |#1|)) (-15 -2235 (|#1| (-644 |#1|))) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 ((-952 |#2|) |#1|)) (-15 -3204 ((-952 |#2|) |#1|)) (-15 -3204 ((-1157) |#1|)) (-15 -2488 (|#1| |#1|)) (-15 -2571 (|#1| |#1|)) (-15 -3412 (|#1| |#1|)) (-15 -2389 (|#1| |#1|)) (-15 -2235 (|#2| |#2| |#1|)) (-15 -2131 (|#1| |#1| |#1|)) (-15 -4341 (|#1| |#1| |#1|)) (-15 -2131 (|#1| |#1| |#2|)) (-15 -4341 (|#1| |#1| |#2|)) (-15 -1593 (|#1| |#1|)) (-15 -3382 (|#1| |#1|)) (-15 -3204 (|#1| (-952 |#2|))) (-15 -1867 (|#1| (-952 |#2|))) (-15 -3066 ((-3 |#1| "failed") (-952 |#2|))) (-15 -3204 (|#1| (-952 (-566)))) (-15 -1867 (|#1| (-952 (-566)))) (-15 -3066 ((-3 |#1| "failed") (-952 (-566)))) (-15 -3204 (|#1| (-952 (-409 (-566))))) (-15 -1867 (|#1| (-952 (-409 (-566))))) (-15 -3066 ((-3 |#1| "failed") (-952 (-409 (-566))))) (-15 -1569 (|#1| |#1| |#1|)) (-15 -1671 (|#1| |#1| |#1|)) (-15 -1634 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -3458 (-771))) |#1| |#1|)) (-15 -1482 (|#1| |#1| |#1|)) (-15 -3048 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -1599 ((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1| |#4|)) (-15 -1599 ((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -1705 ((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -4228 |#1|)) |#1| |#1| |#4|)) (-15 -1705 ((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -4218 (|#1| |#1| |#1| |#4|)) (-15 -3348 (|#1| |#1| |#1| |#4|)) (-15 -4218 (|#1| |#1| |#1|)) (-15 -3348 (|#1| |#1| |#1|)) (-15 -2634 (|#1| |#1| |#1| |#4|)) (-15 -2275 (|#1| |#1| |#1| |#4|)) (-15 -2634 (|#1| |#1| |#1|)) (-15 -2275 (|#1| |#1| |#1|)) (-15 -2848 ((-112) |#1| (-644 |#1|))) (-15 -2848 ((-112) |#1| |#1|)) (-15 -2337 ((-112) |#1| (-644 |#1|))) (-15 -2337 ((-112) |#1| |#1|)) (-15 -2531 ((-112) |#1| (-644 |#1|))) (-15 -2531 ((-112) |#1| |#1|)) (-15 -1991 ((-112) |#1| (-644 |#1|))) (-15 -1991 ((-112) |#1| |#1|)) (-15 -4001 ((-112) |#1| |#1|)) (-15 -3886 ((-112) |#1| |#1|)) (-15 -2152 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3720 ((-644 |#1|) |#1|)) (-15 -2053 ((-644 |#1|) |#1|)) (-15 -4349 (|#1| |#1|)) (-15 -3251 (|#1| |#1|)) (-15 -3357 ((-112) |#1|)) (-15 -2046 ((-112) |#1|)) (-15 -3645 (|#1| |#1| |#4|)) (-15 -3626 (|#1| |#1| |#4|)) (-15 -2595 (|#1| |#1|)) (-15 -3457 ((-644 |#1|) |#1|)) (-15 -3403 (|#1| |#1|)) (-15 -4043 (|#1| |#1|)) (-15 -2464 (|#1| |#1|)) (-15 -3625 (|#1| |#1|)) (-15 -4348 ((-771) |#1|)) (-15 -1887 (|#4| |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -3780 (|#1| |#4|)) (-15 -3066 ((-3 |#4| "failed") |#1|)) (-15 -1867 (|#4| |#1|)) (-15 -3626 (|#2| |#1|)) (-15 -3645 (|#1| |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|))) (-1064 |#2| |#3| |#4|) (-1049) (-793) (-850)) (T -1063))
+NIL
+(-10 -8 (-15 -3780 (|#1| |#1|)) (-15 -2235 (|#1| |#1| |#1|)) (-15 -2235 (|#1| (-644 |#1|))) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 ((-952 |#2|) |#1|)) (-15 -3204 ((-952 |#2|) |#1|)) (-15 -3204 ((-1157) |#1|)) (-15 -2488 (|#1| |#1|)) (-15 -2571 (|#1| |#1|)) (-15 -3412 (|#1| |#1|)) (-15 -2389 (|#1| |#1|)) (-15 -2235 (|#2| |#2| |#1|)) (-15 -2131 (|#1| |#1| |#1|)) (-15 -4341 (|#1| |#1| |#1|)) (-15 -2131 (|#1| |#1| |#2|)) (-15 -4341 (|#1| |#1| |#2|)) (-15 -1593 (|#1| |#1|)) (-15 -3382 (|#1| |#1|)) (-15 -3204 (|#1| (-952 |#2|))) (-15 -1867 (|#1| (-952 |#2|))) (-15 -3066 ((-3 |#1| "failed") (-952 |#2|))) (-15 -3204 (|#1| (-952 (-566)))) (-15 -1867 (|#1| (-952 (-566)))) (-15 -3066 ((-3 |#1| "failed") (-952 (-566)))) (-15 -3204 (|#1| (-952 (-409 (-566))))) (-15 -1867 (|#1| (-952 (-409 (-566))))) (-15 -3066 ((-3 |#1| "failed") (-952 (-409 (-566))))) (-15 -1569 (|#1| |#1| |#1|)) (-15 -1671 (|#1| |#1| |#1|)) (-15 -1634 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -3458 (-771))) |#1| |#1|)) (-15 -1482 (|#1| |#1| |#1|)) (-15 -3048 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -1599 ((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1| |#4|)) (-15 -1599 ((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -1705 ((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -4228 |#1|)) |#1| |#1| |#4|)) (-15 -1705 ((-2 (|:| -3223 |#1|) (|:| |gap| (-771)) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -4218 (|#1| |#1| |#1| |#4|)) (-15 -3348 (|#1| |#1| |#1| |#4|)) (-15 -4218 (|#1| |#1| |#1|)) (-15 -3348 (|#1| |#1| |#1|)) (-15 -2634 (|#1| |#1| |#1| |#4|)) (-15 -2275 (|#1| |#1| |#1| |#4|)) (-15 -2634 (|#1| |#1| |#1|)) (-15 -2275 (|#1| |#1| |#1|)) (-15 -2848 ((-112) |#1| (-644 |#1|))) (-15 -2848 ((-112) |#1| |#1|)) (-15 -2337 ((-112) |#1| (-644 |#1|))) (-15 -2337 ((-112) |#1| |#1|)) (-15 -2531 ((-112) |#1| (-644 |#1|))) (-15 -2531 ((-112) |#1| |#1|)) (-15 -1991 ((-112) |#1| (-644 |#1|))) (-15 -1991 ((-112) |#1| |#1|)) (-15 -4001 ((-112) |#1| |#1|)) (-15 -3886 ((-112) |#1| |#1|)) (-15 -2152 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3720 ((-644 |#1|) |#1|)) (-15 -2053 ((-644 |#1|) |#1|)) (-15 -4349 (|#1| |#1|)) (-15 -3251 (|#1| |#1|)) (-15 -3357 ((-112) |#1|)) (-15 -2046 ((-112) |#1|)) (-15 -3645 (|#1| |#1| |#4|)) (-15 -3626 (|#1| |#1| |#4|)) (-15 -2595 (|#1| |#1|)) (-15 -3457 ((-644 |#1|) |#1|)) (-15 -3403 (|#1| |#1|)) (-15 -4043 (|#1| |#1|)) (-15 -2464 (|#1| |#1|)) (-15 -3625 (|#1| |#1|)) (-15 -4348 ((-771) |#1|)) (-15 -1887 (|#4| |#1|)) (-15 -3204 ((-538) |#1|)) (-15 -3204 ((-892 (-566)) |#1|)) (-15 -3204 ((-892 (-381)) |#1|)) (-15 -3780 (|#1| |#4|)) (-15 -3066 ((-3 |#4| "failed") |#1|)) (-15 -1867 (|#4| |#1|)) (-15 -3626 (|#2| |#1|)) (-15 -3645 (|#1| |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2608 (((-644 |#3|) $) 112)) (-2438 (((-1171 $) $ |#3|) 127) (((-1171 |#1|) $) 126)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 89 (|has| |#1| (-558)))) (-1968 (($ $) 90 (|has| |#1| (-558)))) (-2644 (((-112) $) 92 (|has| |#1| (-558)))) (-2207 (((-771) $) 114) (((-771) $ (-644 |#3|)) 113)) (-4043 (($ $) 273)) (-4001 (((-112) $ $) 259)) (-4014 (((-3 $ "failed") $ $) 20)) (-1911 (($ $ $) 218 (|has| |#1| (-558)))) (-1919 (((-644 $) $ $) 213 (|has| |#1| (-558)))) (-4077 (((-420 (-1171 $)) (-1171 $)) 102 (|has| |#1| (-909)))) (-2179 (($ $) 100 (|has| |#1| (-454)))) (-3271 (((-420 $) $) 99 (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 105 (|has| |#1| (-909)))) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#1| "failed") $) 166) (((-3 (-409 (-566)) "failed") $) 163 (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) 161 (|has| |#1| (-1038 (-566)))) (((-3 |#3| "failed") $) 138) (((-3 $ "failed") (-952 (-409 (-566)))) 233 (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175))))) (((-3 $ "failed") (-952 (-566))) 230 (-2805 (-12 (-2436 (|has| |#1| (-38 (-409 (-566))))) (|has| |#1| (-38 (-566))) (|has| |#3| (-614 (-1175)))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175)))))) (((-3 $ "failed") (-952 |#1|)) 227 (-2805 (-12 (-2436 (|has| |#1| (-38 (-409 (-566))))) (-2436 (|has| |#1| (-38 (-566)))) (|has| |#3| (-614 (-1175)))) (-12 (-2436 (|has| |#1| (-547))) (-2436 (|has| |#1| (-38 (-409 (-566))))) (|has| |#1| (-38 (-566))) (|has| |#3| (-614 (-1175)))) (-12 (-2436 (|has| |#1| (-992 (-566)))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175))))))) (-1867 ((|#1| $) 165) (((-409 (-566)) $) 164 (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) 162 (|has| |#1| (-1038 (-566)))) ((|#3| $) 139) (($ (-952 (-409 (-566)))) 232 (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175))))) (($ (-952 (-566))) 229 (-2805 (-12 (-2436 (|has| |#1| (-38 (-409 (-566))))) (|has| |#1| (-38 (-566))) (|has| |#3| (-614 (-1175)))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175)))))) (($ (-952 |#1|)) 226 (-2805 (-12 (-2436 (|has| |#1| (-38 (-409 (-566))))) (-2436 (|has| |#1| (-38 (-566)))) (|has| |#3| (-614 (-1175)))) (-12 (-2436 (|has| |#1| (-547))) (-2436 (|has| |#1| (-38 (-409 (-566))))) (|has| |#1| (-38 (-566))) (|has| |#3| (-614 (-1175)))) (-12 (-2436 (|has| |#1| (-992 (-566)))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175))))))) (-2662 (($ $ $ |#3|) 110 (|has| |#1| (-172))) (($ $ $) 214 (|has| |#1| (-558)))) (-3645 (($ $) 156) (($ $ |#3|) 268)) (-2210 (((-689 (-566)) (-689 $)) 136 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 135 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 134) (((-689 |#1|) (-689 $)) 133)) (-1991 (((-112) $ $) 258) (((-112) $ (-644 $)) 257)) (-2928 (((-3 $ "failed") $) 37)) (-3357 (((-112) $) 266)) (-3048 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 238)) (-2389 (($ $) 207 (|has| |#1| (-454)))) (-2755 (($ $) 178 (|has| |#1| (-454))) (($ $ |#3|) 107 (|has| |#1| (-454)))) (-3635 (((-644 $) $) 111)) (-1784 (((-112) $) 98 (|has| |#1| (-909)))) (-1593 (($ $) 223 (|has| |#1| (-558)))) (-3382 (($ $) 224 (|has| |#1| (-558)))) (-2275 (($ $ $) 250) (($ $ $ |#3|) 248)) (-2634 (($ $ $) 249) (($ $ $ |#3|) 247)) (-2871 (($ $ |#1| |#2| $) 174)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 86 (-12 (|has| |#3| (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 85 (-12 (|has| |#3| (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3466 (((-112) $) 35)) (-4230 (((-771) $) 171)) (-2848 (((-112) $ $) 252) (((-112) $ (-644 $)) 251)) (-2312 (($ $ $ $ $) 209 (|has| |#1| (-558)))) (-1887 ((|#3| $) 277)) (-2597 (($ (-1171 |#1|) |#3|) 119) (($ (-1171 $) |#3|) 118)) (-2330 (((-644 $) $) 128)) (-1453 (((-112) $) 154)) (-2585 (($ |#1| |#2|) 155) (($ $ |#3| (-771)) 121) (($ $ (-644 |#3|) (-644 (-771))) 120)) (-1482 (($ $ $) 237)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ |#3|) 122)) (-2046 (((-112) $) 267)) (-2466 ((|#2| $) 172) (((-771) $ |#3|) 124) (((-644 (-771)) $ (-644 |#3|)) 123)) (-4348 (((-771) $) 276)) (-2443 (($ (-1 |#2| |#2|) $) 173)) (-3152 (($ (-1 |#1| |#1|) $) 153)) (-1984 (((-3 |#3| "failed") $) 125)) (-2488 (($ $) 204 (|has| |#1| (-454)))) (-2571 (($ $) 205 (|has| |#1| (-454)))) (-3720 (((-644 $) $) 262)) (-3251 (($ $) 265)) (-3412 (($ $) 206 (|has| |#1| (-454)))) (-2053 (((-644 $) $) 263)) (-4349 (($ $) 264)) (-3614 (($ $) 151)) (-3626 ((|#1| $) 150) (($ $ |#3|) 269)) (-2197 (($ (-644 $)) 96 (|has| |#1| (-454))) (($ $ $) 95 (|has| |#1| (-454)))) (-1634 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3458 (-771))) $ $) 236)) (-1599 (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $) 240) (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $ |#3|) 239)) (-1705 (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -4228 $)) $ $) 242) (((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -4228 $)) $ $ |#3|) 241)) (-3348 (($ $ $) 246) (($ $ $ |#3|) 244)) (-4218 (($ $ $) 245) (($ $ $ |#3|) 243)) (-2402 (((-1157) $) 10)) (-2165 (($ $ $) 212 (|has| |#1| (-558)))) (-3457 (((-644 $) $) 271)) (-4201 (((-3 (-644 $) "failed") $) 116)) (-2657 (((-3 (-644 $) "failed") $) 117)) (-2749 (((-3 (-2 (|:| |var| |#3|) (|:| -2456 (-771))) "failed") $) 115)) (-2337 (((-112) $ $) 254) (((-112) $ (-644 $)) 253)) (-1569 (($ $ $) 234)) (-3625 (($ $) 275)) (-3886 (((-112) $ $) 260)) (-2531 (((-112) $ $) 256) (((-112) $ (-644 $)) 255)) (-1671 (($ $ $) 235)) (-2464 (($ $) 274)) (-4056 (((-1119) $) 11)) (-4155 (((-2 (|:| -2235 $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-558)))) (-4243 (((-2 (|:| -2235 $) (|:| |coef1| $)) $ $) 216 (|has| |#1| (-558)))) (-3595 (((-112) $) 168)) (-3604 ((|#1| $) 169)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 97 (|has| |#1| (-454)))) (-2235 ((|#1| |#1| $) 208 (|has| |#1| (-454))) (($ (-644 $)) 94 (|has| |#1| (-454))) (($ $ $) 93 (|has| |#1| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) 104 (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) 103 (|has| |#1| (-909)))) (-2473 (((-420 $) $) 101 (|has| |#1| (-909)))) (-1558 (((-2 (|:| -2235 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 217 (|has| |#1| (-558)))) (-2997 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-558)))) (-2131 (($ $ |#1|) 221 (|has| |#1| (-558))) (($ $ $) 219 (|has| |#1| (-558)))) (-4341 (($ $ |#1|) 222 (|has| |#1| (-558))) (($ $ $) 220 (|has| |#1| (-558)))) (-2095 (($ $ (-644 (-295 $))) 147) (($ $ (-295 $)) 146) (($ $ $ $) 145) (($ $ (-644 $) (-644 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-644 |#3|) (-644 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-644 |#3|) (-644 $)) 140)) (-3309 (($ $ |#3|) 109 (|has| |#1| (-172)))) (-2578 (($ $ |#3|) 46) (($ $ (-644 |#3|)) 45) (($ $ |#3| (-771)) 44) (($ $ (-644 |#3|) (-644 (-771))) 43)) (-2108 ((|#2| $) 152) (((-771) $ |#3|) 132) (((-644 (-771)) $ (-644 |#3|)) 131)) (-3403 (($ $) 272)) (-2595 (($ $) 270)) (-3204 (((-892 (-381)) $) 84 (-12 (|has| |#3| (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) 83 (-12 (|has| |#3| (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) 82 (-12 (|has| |#3| (-614 (-538))) (|has| |#1| (-614 (-538))))) (($ (-952 (-409 (-566)))) 231 (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175))))) (($ (-952 (-566))) 228 (-2805 (-12 (-2436 (|has| |#1| (-38 (-409 (-566))))) (|has| |#1| (-38 (-566))) (|has| |#3| (-614 (-1175)))) (-12 (|has| |#1| (-38 (-409 (-566)))) (|has| |#3| (-614 (-1175)))))) (($ (-952 |#1|)) 225 (|has| |#3| (-614 (-1175)))) (((-1157) $) 203 (-12 (|has| |#1| (-1038 (-566))) (|has| |#3| (-614 (-1175))))) (((-952 |#1|) $) 202 (|has| |#3| (-614 (-1175))))) (-3042 ((|#1| $) 177 (|has| |#1| (-454))) (($ $ |#3|) 108 (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 106 (-2447 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 167) (($ |#3|) 137) (((-952 |#1|) $) 201 (|has| |#3| (-614 (-1175)))) (($ (-409 (-566))) 80 (-2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566)))))) (($ $) 87 (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) 170)) (-3756 ((|#1| $ |#2|) 157) (($ $ |#3| (-771)) 130) (($ $ (-644 |#3|) (-644 (-771))) 129)) (-3226 (((-3 $ "failed") $) 81 (-2805 (-2447 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) 32 T CONST)) (-2629 (($ $ $ (-771)) 175 (|has| |#1| (-172)))) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 91 (|has| |#1| (-558)))) (-2493 (($) 19 T CONST)) (-2152 (((-3 (-112) "failed") $ $) 261)) (-4333 (($) 34 T CONST)) (-1310 (($ $ $ $ (-771)) 210 (|has| |#1| (-558)))) (-2693 (($ $ $ (-771)) 211 (|has| |#1| (-558)))) (-2876 (($ $ |#3|) 42) (($ $ (-644 |#3|)) 41) (($ $ |#3| (-771)) 40) (($ $ (-644 |#3|) (-644 (-771))) 39)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 158 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 160 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 159 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
(((-1064 |#1| |#2| |#3|) (-140) (-1049) (-793) (-850)) (T -1064))
-((-1594 (*1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-1961 (*1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-771)))) (-2759 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-4341 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-3301 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2735 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-1392 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1064 *3 *4 *5)))) (-3906 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-3557 (*1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-3577 (*1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-1912 (*1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-1501 (*1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-2401 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-3708 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2224 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1064 *3 *4 *5)))) (-2017 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1064 *3 *4 *5)))) (-2548 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-2343 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-3480 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-2531 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-2531 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)))) (-3257 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-3257 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)))) (-3377 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-3377 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)))) (-4260 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-4260 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)))) (-3684 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2151 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-3684 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-2151 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-2728 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2695 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2728 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-2695 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-2311 (*1 *2 *1 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -3157 *1) (|:| |gap| (-771)) (|:| -1644 *1))) (-4 *1 (-1064 *3 *4 *5)))) (-2311 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-2 (|:| -3157 *1) (|:| |gap| (-771)) (|:| -1644 *1))) (-4 *1 (-1064 *4 *5 *3)))) (-1992 (*1 *2 *1 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -3157 *1) (|:| |gap| (-771)) (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-1064 *3 *4 *5)))) (-1992 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-2 (|:| -3157 *1) (|:| |gap| (-771)) (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-1064 *4 *5 *3)))) (-2513 (*1 *2 *1 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-1064 *3 *4 *5)))) (-1982 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2927 (*1 *2 *1 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -1812 (-771)))) (-4 *1 (-1064 *3 *4 *5)))) (-2930 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-1687 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2977 (*1 *1 *2) (|partial| -12 (-5 *2 (-952 (-409 (-566)))) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-952 (-409 (-566)))) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)))) (-3134 (*1 *1 *2) (-12 (-5 *2 (-952 (-409 (-566)))) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)))) (-2977 (*1 *1 *2) (|partial| -2805 (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-2426 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))))) (-1756 (*1 *1 *2) (-2805 (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-2426 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))))) (-3134 (*1 *1 *2) (-2805 (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-2426 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))))) (-2977 (*1 *1 *2) (|partial| -2805 (-12 (-5 *2 (-952 *3)) (-12 (-2426 (-4 *3 (-38 (-409 (-566))))) (-2426 (-4 *3 (-38 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 *3)) (-12 (-2426 (-4 *3 (-547))) (-2426 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 *3)) (-12 (-2426 (-4 *3 (-992 (-566)))) (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))))) (-1756 (*1 *1 *2) (-2805 (-12 (-5 *2 (-952 *3)) (-12 (-2426 (-4 *3 (-38 (-409 (-566))))) (-2426 (-4 *3 (-38 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 *3)) (-12 (-2426 (-4 *3 (-547))) (-2426 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 *3)) (-12 (-2426 (-4 *3 (-992 (-566)))) (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))))) (-3134 (*1 *1 *2) (-12 (-5 *2 (-952 *3)) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *5 (-614 (-1175))) (-4 *4 (-793)) (-4 *5 (-850)))) (-2732 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-1689 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2582 (*1 *1 *1 *2) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2999 (*1 *1 *1 *2) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2582 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2999 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2829 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2298 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -2222 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1064 *3 *4 *5)))) (-1948 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -2222 *1) (|:| |coef1| *1))) (-4 *1 (-1064 *3 *4 *5)))) (-2687 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -2222 *1) (|:| |coef2| *1))) (-4 *1 (-1064 *3 *4 *5)))) (-1552 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-3331 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1064 *3 *4 *5)))) (-1624 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2157 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *3 (-558)))) (-2591 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *3 (-558)))) (-3375 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2222 (*1 *2 *2 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-1524 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-1506 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-3262 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-1533 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))))
-(-13 (-949 |t#1| |t#2| |t#3|) (-10 -8 (-15 -1594 (|t#3| $)) (-15 -1961 ((-771) $)) (-15 -2759 ($ $)) (-15 -4341 ($ $)) (-15 -3301 ($ $)) (-15 -2735 ($ $)) (-15 -1392 ((-644 $) $)) (-15 -3906 ($ $)) (-15 -3557 ($ $ |t#3|)) (-15 -3577 ($ $ |t#3|)) (-15 -1912 ((-112) $)) (-15 -1501 ((-112) $)) (-15 -2401 ($ $)) (-15 -3708 ($ $)) (-15 -2224 ((-644 $) $)) (-15 -2017 ((-644 $) $)) (-15 -2548 ((-3 (-112) "failed") $ $)) (-15 -2343 ((-112) $ $)) (-15 -3480 ((-112) $ $)) (-15 -2531 ((-112) $ $)) (-15 -2531 ((-112) $ (-644 $))) (-15 -3257 ((-112) $ $)) (-15 -3257 ((-112) $ (-644 $))) (-15 -3377 ((-112) $ $)) (-15 -3377 ((-112) $ (-644 $))) (-15 -4260 ((-112) $ $)) (-15 -4260 ((-112) $ (-644 $))) (-15 -3684 ($ $ $)) (-15 -2151 ($ $ $)) (-15 -3684 ($ $ $ |t#3|)) (-15 -2151 ($ $ $ |t#3|)) (-15 -2728 ($ $ $)) (-15 -2695 ($ $ $)) (-15 -2728 ($ $ $ |t#3|)) (-15 -2695 ($ $ $ |t#3|)) (-15 -2311 ((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -1644 $)) $ $)) (-15 -2311 ((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -1644 $)) $ $ |t#3|)) (-15 -1992 ((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -1992 ((-2 (|:| -3157 $) (|:| |gap| (-771)) (|:| -2760 $) (|:| -1644 $)) $ $ |t#3|)) (-15 -2513 ((-2 (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -1982 ($ $ $)) (-15 -2927 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1812 (-771))) $ $)) (-15 -2930 ($ $ $)) (-15 -1687 ($ $ $)) (IF (|has| |t#3| (-614 (-1175))) (PROGN (-6 (-613 (-952 |t#1|))) (-6 (-614 (-952 |t#1|))) (IF (|has| |t#1| (-38 (-409 (-566)))) (PROGN (-15 -2977 ((-3 $ "failed") (-952 (-409 (-566))))) (-15 -1756 ($ (-952 (-409 (-566))))) (-15 -3134 ($ (-952 (-409 (-566))))) (-15 -2977 ((-3 $ "failed") (-952 (-566)))) (-15 -1756 ($ (-952 (-566)))) (-15 -3134 ($ (-952 (-566)))) (IF (|has| |t#1| (-992 (-566))) |%noBranch| (PROGN (-15 -2977 ((-3 $ "failed") (-952 |t#1|))) (-15 -1756 ($ (-952 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-566))) (IF (|has| |t#1| (-38 (-409 (-566)))) |%noBranch| (PROGN (-15 -2977 ((-3 $ "failed") (-952 (-566)))) (-15 -1756 ($ (-952 (-566)))) (-15 -3134 ($ (-952 (-566)))) (IF (|has| |t#1| (-547)) |%noBranch| (PROGN (-15 -2977 ((-3 $ "failed") (-952 |t#1|))) (-15 -1756 ($ (-952 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-566))) |%noBranch| (IF (|has| |t#1| (-38 (-409 (-566)))) |%noBranch| (PROGN (-15 -2977 ((-3 $ "failed") (-952 |t#1|))) (-15 -1756 ($ (-952 |t#1|)))))) (-15 -3134 ($ (-952 |t#1|))) (IF (|has| |t#1| (-1038 (-566))) (-6 (-614 (-1157))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-558)) (PROGN (-15 -2732 ($ $)) (-15 -1689 ($ $)) (-15 -2582 ($ $ |t#1|)) (-15 -2999 ($ $ |t#1|)) (-15 -2582 ($ $ $)) (-15 -2999 ($ $ $)) (-15 -2829 ($ $ $)) (-15 -2298 ((-2 (|:| -2222 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1948 ((-2 (|:| -2222 $) (|:| |coef1| $)) $ $)) (-15 -2687 ((-2 (|:| -2222 $) (|:| |coef2| $)) $ $)) (-15 -1552 ($ $ $)) (-15 -3331 ((-644 $) $ $)) (-15 -1624 ($ $ $)) (-15 -2157 ($ $ $ (-771))) (-15 -2591 ($ $ $ $ (-771))) (-15 -3375 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-454)) (PROGN (-15 -2222 (|t#1| |t#1| $)) (-15 -1524 ($ $)) (-15 -1506 ($ $)) (-15 -3262 ($ $)) (-15 -1533 ($ $))) |%noBranch|)))
+((-1887 (*1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-4348 (*1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-771)))) (-3625 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2464 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-4043 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-3403 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-3457 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1064 *3 *4 *5)))) (-2595 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-3626 (*1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-3645 (*1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-2046 (*1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-3357 (*1 *2 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-3251 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-4349 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2053 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1064 *3 *4 *5)))) (-3720 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1064 *3 *4 *5)))) (-2152 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-3886 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-4001 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-1991 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-1991 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)))) (-2531 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-2531 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)))) (-2337 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-2337 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)))) (-2848 (*1 *2 *1 *1) (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))) (-2848 (*1 *2 *1 *3) (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)))) (-2275 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2634 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-2275 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-2634 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-3348 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-4218 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-3348 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-4218 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *2 (-850)))) (-1705 (*1 *2 *1 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -3223 *1) (|:| |gap| (-771)) (|:| -4228 *1))) (-4 *1 (-1064 *3 *4 *5)))) (-1705 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-2 (|:| -3223 *1) (|:| |gap| (-771)) (|:| -4228 *1))) (-4 *1 (-1064 *4 *5 *3)))) (-1599 (*1 *2 *1 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -3223 *1) (|:| |gap| (-771)) (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-1064 *3 *4 *5)))) (-1599 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850)) (-5 *2 (-2 (|:| -3223 *1) (|:| |gap| (-771)) (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-1064 *4 *5 *3)))) (-3048 (*1 *2 *1 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-1064 *3 *4 *5)))) (-1482 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-1634 (*1 *2 *1 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -3458 (-771)))) (-4 *1 (-1064 *3 *4 *5)))) (-1671 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-1569 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)))) (-3066 (*1 *1 *2) (|partial| -12 (-5 *2 (-952 (-409 (-566)))) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-952 (-409 (-566)))) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-952 (-409 (-566)))) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)))) (-3066 (*1 *1 *2) (|partial| -2805 (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-2436 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))))) (-1867 (*1 *1 *2) (-2805 (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-2436 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))))) (-3204 (*1 *1 *2) (-2805 (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-2436 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5)) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))))) (-3066 (*1 *1 *2) (|partial| -2805 (-12 (-5 *2 (-952 *3)) (-12 (-2436 (-4 *3 (-38 (-409 (-566))))) (-2436 (-4 *3 (-38 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 *3)) (-12 (-2436 (-4 *3 (-547))) (-2436 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 *3)) (-12 (-2436 (-4 *3 (-992 (-566)))) (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))))) (-1867 (*1 *1 *2) (-2805 (-12 (-5 *2 (-952 *3)) (-12 (-2436 (-4 *3 (-38 (-409 (-566))))) (-2436 (-4 *3 (-38 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 *3)) (-12 (-2436 (-4 *3 (-547))) (-2436 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))) (-12 (-5 *2 (-952 *3)) (-12 (-2436 (-4 *3 (-992 (-566)))) (-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793)) (-4 *5 (-850))))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-952 *3)) (-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *5 (-614 (-1175))) (-4 *4 (-793)) (-4 *5 (-850)))) (-3382 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-1593 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-4341 (*1 *1 *1 *2) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2131 (*1 *1 *1 *2) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-4341 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2131 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-1911 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-1558 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -2235 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1064 *3 *4 *5)))) (-4243 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -2235 *1) (|:| |coef1| *1))) (-4 *1 (-1064 *3 *4 *5)))) (-4155 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-2 (|:| -2235 *1) (|:| |coef2| *1))) (-4 *1 (-1064 *3 *4 *5)))) (-2662 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-1919 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1064 *3 *4 *5)))) (-2165 (*1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2693 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *3 (-558)))) (-1310 (*1 *1 *1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *3 (-558)))) (-2312 (*1 *1 *1 *1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-558)))) (-2235 (*1 *2 *2 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-2389 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-3412 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-2571 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))) (-2488 (*1 *1 *1) (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-454)))))
+(-13 (-949 |t#1| |t#2| |t#3|) (-10 -8 (-15 -1887 (|t#3| $)) (-15 -4348 ((-771) $)) (-15 -3625 ($ $)) (-15 -2464 ($ $)) (-15 -4043 ($ $)) (-15 -3403 ($ $)) (-15 -3457 ((-644 $) $)) (-15 -2595 ($ $)) (-15 -3626 ($ $ |t#3|)) (-15 -3645 ($ $ |t#3|)) (-15 -2046 ((-112) $)) (-15 -3357 ((-112) $)) (-15 -3251 ($ $)) (-15 -4349 ($ $)) (-15 -2053 ((-644 $) $)) (-15 -3720 ((-644 $) $)) (-15 -2152 ((-3 (-112) "failed") $ $)) (-15 -3886 ((-112) $ $)) (-15 -4001 ((-112) $ $)) (-15 -1991 ((-112) $ $)) (-15 -1991 ((-112) $ (-644 $))) (-15 -2531 ((-112) $ $)) (-15 -2531 ((-112) $ (-644 $))) (-15 -2337 ((-112) $ $)) (-15 -2337 ((-112) $ (-644 $))) (-15 -2848 ((-112) $ $)) (-15 -2848 ((-112) $ (-644 $))) (-15 -2275 ($ $ $)) (-15 -2634 ($ $ $)) (-15 -2275 ($ $ $ |t#3|)) (-15 -2634 ($ $ $ |t#3|)) (-15 -3348 ($ $ $)) (-15 -4218 ($ $ $)) (-15 -3348 ($ $ $ |t#3|)) (-15 -4218 ($ $ $ |t#3|)) (-15 -1705 ((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -4228 $)) $ $)) (-15 -1705 ((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -4228 $)) $ $ |t#3|)) (-15 -1599 ((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -1599 ((-2 (|:| -3223 $) (|:| |gap| (-771)) (|:| -3644 $) (|:| -4228 $)) $ $ |t#3|)) (-15 -3048 ((-2 (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -1482 ($ $ $)) (-15 -1634 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -3458 (-771))) $ $)) (-15 -1671 ($ $ $)) (-15 -1569 ($ $ $)) (IF (|has| |t#3| (-614 (-1175))) (PROGN (-6 (-613 (-952 |t#1|))) (-6 (-614 (-952 |t#1|))) (IF (|has| |t#1| (-38 (-409 (-566)))) (PROGN (-15 -3066 ((-3 $ "failed") (-952 (-409 (-566))))) (-15 -1867 ($ (-952 (-409 (-566))))) (-15 -3204 ($ (-952 (-409 (-566))))) (-15 -3066 ((-3 $ "failed") (-952 (-566)))) (-15 -1867 ($ (-952 (-566)))) (-15 -3204 ($ (-952 (-566)))) (IF (|has| |t#1| (-992 (-566))) |%noBranch| (PROGN (-15 -3066 ((-3 $ "failed") (-952 |t#1|))) (-15 -1867 ($ (-952 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-566))) (IF (|has| |t#1| (-38 (-409 (-566)))) |%noBranch| (PROGN (-15 -3066 ((-3 $ "failed") (-952 (-566)))) (-15 -1867 ($ (-952 (-566)))) (-15 -3204 ($ (-952 (-566)))) (IF (|has| |t#1| (-547)) |%noBranch| (PROGN (-15 -3066 ((-3 $ "failed") (-952 |t#1|))) (-15 -1867 ($ (-952 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-566))) |%noBranch| (IF (|has| |t#1| (-38 (-409 (-566)))) |%noBranch| (PROGN (-15 -3066 ((-3 $ "failed") (-952 |t#1|))) (-15 -1867 ($ (-952 |t#1|)))))) (-15 -3204 ($ (-952 |t#1|))) (IF (|has| |t#1| (-1038 (-566))) (-6 (-614 (-1157))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-558)) (PROGN (-15 -3382 ($ $)) (-15 -1593 ($ $)) (-15 -4341 ($ $ |t#1|)) (-15 -2131 ($ $ |t#1|)) (-15 -4341 ($ $ $)) (-15 -2131 ($ $ $)) (-15 -1911 ($ $ $)) (-15 -1558 ((-2 (|:| -2235 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4243 ((-2 (|:| -2235 $) (|:| |coef1| $)) $ $)) (-15 -4155 ((-2 (|:| -2235 $) (|:| |coef2| $)) $ $)) (-15 -2662 ($ $ $)) (-15 -1919 ((-644 $) $ $)) (-15 -2165 ($ $ $)) (-15 -2693 ($ $ $ (-771))) (-15 -1310 ($ $ $ $ (-771))) (-15 -2312 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-454)) (PROGN (-15 -2235 (|t#1| |t#1| $)) (-15 -2389 ($ $)) (-15 -3412 ($ $)) (-15 -2571 ($ $)) (-15 -2488 ($ $))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-409 (-566)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) -2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566))))) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-616 |#3|) . T) ((-616 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-613 (-862)) . T) ((-613 (-952 |#1|)) |has| |#3| (-614 (-1175))) ((-172) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-614 (-538)) -12 (|has| |#1| (-614 (-538))) (|has| |#3| (-614 (-538)))) ((-614 (-892 (-381))) -12 (|has| |#1| (-614 (-892 (-381)))) (|has| |#3| (-614 (-892 (-381))))) ((-614 (-892 (-566))) -12 (|has| |#1| (-614 (-892 (-566)))) (|has| |#3| (-614 (-892 (-566))))) ((-614 (-952 |#1|)) |has| |#3| (-614 (-1175))) ((-614 (-1157)) -12 (|has| |#1| (-1038 (-566))) (|has| |#3| (-614 (-1175)))) ((-291) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-310 $) . T) ((-327 |#1| |#2|) . T) ((-379 |#1|) . T) ((-413 |#1|) . T) ((-454) -2805 (|has| |#1| (-909)) (|has| |#1| (-454))) ((-516 |#3| |#1|) . T) ((-516 |#3| $) . T) ((-516 $ $) . T) ((-558) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-646 #0#) |has| |#1| (-38 (-409 (-566)))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) |has| |#1| (-38 (-409 (-566)))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) |has| |#1| (-38 (-409 (-566)))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-639 (-566)) |has| |#1| (-639 (-566))) ((-639 |#1|) . T) ((-717 #0#) |has| |#1| (-38 (-409 (-566)))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454))) ((-726) . T) ((-900 |#3|) . T) ((-886 (-381)) -12 (|has| |#1| (-886 (-381))) (|has| |#3| (-886 (-381)))) ((-886 (-566)) -12 (|has| |#1| (-886 (-566))) (|has| |#3| (-886 (-566)))) ((-949 |#1| |#2| |#3|) . T) ((-909) |has| |#1| (-909)) ((-1038 (-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 |#1|) . T) ((-1038 |#3|) . T) ((-1051 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-1056 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) |has| |#1| (-909)))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-1365 (((-644 (-1134)) $) 18)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 27) (($ (-1180)) NIL) (((-1180) $) NIL)) (-2639 (((-1134) $) 20)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1065) (-13 (-1082) (-10 -8 (-15 -1365 ((-644 (-1134)) $)) (-15 -2639 ((-1134) $))))) (T -1065))
-((-1365 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1065)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1065)))))
-(-13 (-1082) (-10 -8 (-15 -1365 ((-644 (-1134)) $)) (-15 -2639 ((-1134) $))))
-((-3958 (((-112) |#3| $) 15)) (-2170 (((-3 $ "failed") |#3| (-921)) 29)) (-1579 (((-3 |#3| "failed") |#3| $) 45)) (-1684 (((-112) |#3| $) 19)) (-1578 (((-112) |#3| $) 17)))
-(((-1066 |#1| |#2| |#3|) (-10 -8 (-15 -2170 ((-3 |#1| "failed") |#3| (-921))) (-15 -1579 ((-3 |#3| "failed") |#3| |#1|)) (-15 -1684 ((-112) |#3| |#1|)) (-15 -1578 ((-112) |#3| |#1|)) (-15 -3958 ((-112) |#3| |#1|))) (-1067 |#2| |#3|) (-13 (-848) (-365)) (-1240 |#2|)) (T -1066))
-NIL
-(-10 -8 (-15 -2170 ((-3 |#1| "failed") |#3| (-921))) (-15 -1579 ((-3 |#3| "failed") |#3| |#1|)) (-15 -1684 ((-112) |#3| |#1|)) (-15 -1578 ((-112) |#3| |#1|)) (-15 -3958 ((-112) |#3| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) |#2| $) 22)) (-2807 (((-566) |#2| $) 23)) (-2170 (((-3 $ "failed") |#2| (-921)) 16)) (-1924 ((|#1| |#2| $ |#1|) 14)) (-1579 (((-3 |#2| "failed") |#2| $) 19)) (-1684 (((-112) |#2| $) 20)) (-1578 (((-112) |#2| $) 21)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2127 ((|#2| $) 18)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-3645 ((|#1| |#2| $ |#1|) 15)) (-3293 (((-644 $) |#2|) 17)) (-2940 (((-112) $ $) 6)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-1414 (((-644 (-1134)) $) 18)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 27) (($ (-1180)) NIL) (((-1180) $) NIL)) (-1398 (((-1134) $) 20)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1065) (-13 (-1082) (-10 -8 (-15 -1414 ((-644 (-1134)) $)) (-15 -1398 ((-1134) $))))) (T -1065))
+((-1414 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1065)))) (-1398 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1065)))))
+(-13 (-1082) (-10 -8 (-15 -1414 ((-644 (-1134)) $)) (-15 -1398 ((-1134) $))))
+((-3015 (((-112) |#3| $) 15)) (-2778 (((-3 $ "failed") |#3| (-921)) 29)) (-2928 (((-3 |#3| "failed") |#3| $) 45)) (-1533 (((-112) |#3| $) 19)) (-2917 (((-112) |#3| $) 17)))
+(((-1066 |#1| |#2| |#3|) (-10 -8 (-15 -2778 ((-3 |#1| "failed") |#3| (-921))) (-15 -2928 ((-3 |#3| "failed") |#3| |#1|)) (-15 -1533 ((-112) |#3| |#1|)) (-15 -2917 ((-112) |#3| |#1|)) (-15 -3015 ((-112) |#3| |#1|))) (-1067 |#2| |#3|) (-13 (-848) (-365)) (-1240 |#2|)) (T -1066))
+NIL
+(-10 -8 (-15 -2778 ((-3 |#1| "failed") |#3| (-921))) (-15 -2928 ((-3 |#3| "failed") |#3| |#1|)) (-15 -1533 ((-112) |#3| |#1|)) (-15 -2917 ((-112) |#3| |#1|)) (-15 -3015 ((-112) |#3| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) |#2| $) 22)) (-2899 (((-566) |#2| $) 23)) (-2778 (((-3 $ "failed") |#2| (-921)) 16)) (-2150 ((|#1| |#2| $ |#1|) 14)) (-2928 (((-3 |#2| "failed") |#2| $) 19)) (-1533 (((-112) |#2| $) 20)) (-2917 (((-112) |#2| $) 21)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3601 ((|#2| $) 18)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-3651 ((|#1| |#2| $ |#1|) 15)) (-2798 (((-644 $) |#2|) 17)) (-2950 (((-112) $ $) 6)))
(((-1067 |#1| |#2|) (-140) (-13 (-848) (-365)) (-1240 |t#1|)) (T -1067))
-((-2807 (*1 *2 *3 *1) (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-566)))) (-3958 (*1 *2 *3 *1) (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-112)))) (-1578 (*1 *2 *3 *1) (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-112)))) (-1684 (*1 *2 *3 *1) (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-112)))) (-1579 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1067 *3 *2)) (-4 *3 (-13 (-848) (-365))) (-4 *2 (-1240 *3)))) (-2127 (*1 *2 *1) (-12 (-4 *1 (-1067 *3 *2)) (-4 *3 (-13 (-848) (-365))) (-4 *2 (-1240 *3)))) (-3293 (*1 *2 *3) (-12 (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-644 *1)) (-4 *1 (-1067 *4 *3)))) (-2170 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-921)) (-4 *4 (-13 (-848) (-365))) (-4 *1 (-1067 *4 *2)) (-4 *2 (-1240 *4)))) (-3645 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1067 *2 *3)) (-4 *2 (-13 (-848) (-365))) (-4 *3 (-1240 *2)))) (-1924 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1067 *2 *3)) (-4 *2 (-13 (-848) (-365))) (-4 *3 (-1240 *2)))))
-(-13 (-1099) (-10 -8 (-15 -2807 ((-566) |t#2| $)) (-15 -3958 ((-112) |t#2| $)) (-15 -1578 ((-112) |t#2| $)) (-15 -1684 ((-112) |t#2| $)) (-15 -1579 ((-3 |t#2| "failed") |t#2| $)) (-15 -2127 (|t#2| $)) (-15 -3293 ((-644 $) |t#2|)) (-15 -2170 ((-3 $ "failed") |t#2| (-921))) (-15 -3645 (|t#1| |t#2| $ |t#1|)) (-15 -1924 (|t#1| |t#2| $ |t#1|))))
+((-2899 (*1 *2 *3 *1) (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-566)))) (-3015 (*1 *2 *3 *1) (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-112)))) (-2917 (*1 *2 *3 *1) (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-112)))) (-1533 (*1 *2 *3 *1) (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-112)))) (-2928 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1067 *3 *2)) (-4 *3 (-13 (-848) (-365))) (-4 *2 (-1240 *3)))) (-3601 (*1 *2 *1) (-12 (-4 *1 (-1067 *3 *2)) (-4 *3 (-13 (-848) (-365))) (-4 *2 (-1240 *3)))) (-2798 (*1 *2 *3) (-12 (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-644 *1)) (-4 *1 (-1067 *4 *3)))) (-2778 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-921)) (-4 *4 (-13 (-848) (-365))) (-4 *1 (-1067 *4 *2)) (-4 *2 (-1240 *4)))) (-3651 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1067 *2 *3)) (-4 *2 (-13 (-848) (-365))) (-4 *3 (-1240 *2)))) (-2150 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1067 *2 *3)) (-4 *2 (-13 (-848) (-365))) (-4 *3 (-1240 *2)))))
+(-13 (-1099) (-10 -8 (-15 -2899 ((-566) |t#2| $)) (-15 -3015 ((-112) |t#2| $)) (-15 -2917 ((-112) |t#2| $)) (-15 -1533 ((-112) |t#2| $)) (-15 -2928 ((-3 |t#2| "failed") |t#2| $)) (-15 -3601 (|t#2| $)) (-15 -2798 ((-644 $) |t#2|)) (-15 -2778 ((-3 $ "failed") |t#2| (-921))) (-15 -3651 (|t#1| |t#2| $ |t#1|)) (-15 -2150 (|t#1| |t#2| $ |t#1|))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-4153 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) (-771)) 115)) (-3508 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771)) 63)) (-1914 (((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-771)) 100)) (-4312 (((-771) (-644 |#4|) (-644 |#5|)) 30)) (-1307 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|) 66) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771)) 65) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771) (-112)) 67)) (-3282 (((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112)) 86) (((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112)) 87)) (-3134 (((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) 92)) (-1368 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-112)) 62)) (-1437 (((-771) (-644 |#4|) (-644 |#5|)) 21)))
-(((-1068 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1437 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -4312 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -1368 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-112))) (-15 -3508 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771))) (-15 -3508 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|)) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771) (-112))) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771))) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|)) (-15 -3282 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -3282 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4153 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) (-771))) (-15 -3134 ((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)))) (-15 -1914 ((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-771)))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -1068))
-((-1914 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2248 *9)))) (-5 *4 (-771)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-1269)) (-5 *1 (-1068 *5 *6 *7 *8 *9)))) (-3134 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2248 *8))) (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1157)) (-5 *1 (-1068 *4 *5 *6 *7 *8)))) (-4153 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-644 *11)) (|:| |todo| (-644 (-2 (|:| |val| *3) (|:| -2248 *11)))))) (-5 *6 (-771)) (-5 *2 (-644 (-2 (|:| |val| (-644 *10)) (|:| -2248 *11)))) (-5 *3 (-644 *10)) (-5 *4 (-644 *11)) (-4 *10 (-1064 *7 *8 *9)) (-4 *11 (-1070 *7 *8 *9 *10)) (-4 *7 (-454)) (-4 *8 (-793)) (-4 *9 (-850)) (-5 *1 (-1068 *7 *8 *9 *10 *11)))) (-3282 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1068 *5 *6 *7 *8 *9)))) (-3282 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1068 *5 *6 *7 *8 *9)))) (-1307 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1068 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1307 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3)))) (-1307 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-771)) (-5 *6 (-112)) (-4 *7 (-454)) (-4 *8 (-793)) (-4 *9 (-850)) (-4 *3 (-1064 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1068 *7 *8 *9 *3 *4)) (-4 *4 (-1070 *7 *8 *9 *3)))) (-3508 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1068 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3508 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3)))) (-1368 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3)))) (-4312 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1068 *5 *6 *7 *8 *9)))) (-1437 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1068 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -1437 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -4312 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -1368 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-112))) (-15 -3508 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771))) (-15 -3508 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|)) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771) (-112))) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771))) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|)) (-15 -3282 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -3282 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4153 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) (-771))) (-15 -3134 ((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)))) (-15 -1914 ((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-771))))
-((-3422 (((-112) |#5| $) 26)) (-2192 (((-112) |#5| $) 29)) (-1602 (((-112) |#5| $) 18) (((-112) $) 52)) (-2390 (((-644 $) |#5| $) NIL) (((-644 $) (-644 |#5|) $) 94) (((-644 $) (-644 |#5|) (-644 $)) 92) (((-644 $) |#5| (-644 $)) 95)) (-1938 (($ $ |#5|) NIL) (((-644 $) |#5| $) NIL) (((-644 $) |#5| (-644 $)) 73) (((-644 $) (-644 |#5|) $) 75) (((-644 $) (-644 |#5|) (-644 $)) 77)) (-1848 (((-644 $) |#5| $) NIL) (((-644 $) |#5| (-644 $)) 64) (((-644 $) (-644 |#5|) $) 69) (((-644 $) (-644 |#5|) (-644 $)) 71)) (-1737 (((-112) |#5| $) 32)))
-(((-1069 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1938 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -1938 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -1938 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -1938 ((-644 |#1|) |#5| |#1|)) (-15 -1848 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -1848 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -1848 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -1848 ((-644 |#1|) |#5| |#1|)) (-15 -2390 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -2390 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -2390 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -2390 ((-644 |#1|) |#5| |#1|)) (-15 -2192 ((-112) |#5| |#1|)) (-15 -1602 ((-112) |#1|)) (-15 -1737 ((-112) |#5| |#1|)) (-15 -3422 ((-112) |#5| |#1|)) (-15 -1602 ((-112) |#5| |#1|)) (-15 -1938 (|#1| |#1| |#5|))) (-1070 |#2| |#3| |#4| |#5|) (-454) (-793) (-850) (-1064 |#2| |#3| |#4|)) (T -1069))
-NIL
-(-10 -8 (-15 -1938 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -1938 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -1938 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -1938 ((-644 |#1|) |#5| |#1|)) (-15 -1848 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -1848 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -1848 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -1848 ((-644 |#1|) |#5| |#1|)) (-15 -2390 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -2390 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -2390 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -2390 ((-644 |#1|) |#5| |#1|)) (-15 -2192 ((-112) |#5| |#1|)) (-15 -1602 ((-112) |#1|)) (-15 -1737 ((-112) |#5| |#1|)) (-15 -3422 ((-112) |#5| |#1|)) (-15 -1602 ((-112) |#5| |#1|)) (-15 -1938 (|#1| |#1| |#5|)))
-((-2985 (((-112) $ $) 7)) (-2072 (((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 |#4|)))) (-644 |#4|)) 86)) (-1725 (((-644 $) (-644 |#4|)) 87) (((-644 $) (-644 |#4|) (-112)) 112)) (-2540 (((-644 |#3|) $) 34)) (-2598 (((-112) $) 27)) (-2740 (((-112) $) 18 (|has| |#1| (-558)))) (-4390 (((-112) |#4| $) 102) (((-112) $) 98)) (-3761 ((|#4| |#4| $) 93)) (-2857 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| $) 127)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) 28)) (-3081 (((-112) $ (-771)) 45)) (-4186 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4417))) (((-3 |#4| "failed") $ |#3|) 80)) (-2342 (($) 46 T CONST)) (-4179 (((-112) $) 23 (|has| |#1| (-558)))) (-4184 (((-112) $ $) 25 (|has| |#1| (-558)))) (-1576 (((-112) $ $) 24 (|has| |#1| (-558)))) (-2398 (((-112) $) 26 (|has| |#1| (-558)))) (-3772 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2380 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) 37)) (-1756 (($ (-644 |#4|)) 36)) (-4076 (((-3 $ "failed") $) 83)) (-2668 ((|#4| |#4| $) 90)) (-4093 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-4200 ((|#4| |#4| $) 88)) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4417))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-3810 (((-2 (|:| -1673 (-644 |#4|)) (|:| -3509 (-644 |#4|))) $) 106)) (-3422 (((-112) |#4| $) 137)) (-2192 (((-112) |#4| $) 134)) (-1602 (((-112) |#4| $) 138) (((-112) $) 135)) (-3372 (((-644 |#4|) $) 53 (|has| $ (-6 -4417)))) (-4260 (((-112) |#4| $) 105) (((-112) $) 104)) (-1594 ((|#3| $) 35)) (-2744 (((-112) $ (-771)) 44)) (-2404 (((-644 |#4|) $) 54 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) 48)) (-3097 (((-644 |#3|) $) 33)) (-3492 (((-112) |#3| $) 32)) (-3882 (((-112) $ (-771)) 43)) (-2878 (((-1157) $) 10)) (-2501 (((-3 |#4| (-644 $)) |#4| |#4| $) 129)) (-1624 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| |#4| $) 128)) (-2670 (((-3 |#4| "failed") $) 84)) (-2909 (((-644 $) |#4| $) 130)) (-4343 (((-3 (-112) (-644 $)) |#4| $) 133)) (-2620 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2390 (((-644 $) |#4| $) 126) (((-644 $) (-644 |#4|) $) 125) (((-644 $) (-644 |#4|) (-644 $)) 124) (((-644 $) |#4| (-644 $)) 123)) (-1937 (($ |#4| $) 118) (($ (-644 |#4|) $) 117)) (-1798 (((-644 |#4|) $) 108)) (-3377 (((-112) |#4| $) 100) (((-112) $) 96)) (-1687 ((|#4| |#4| $) 91)) (-2343 (((-112) $ $) 111)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-3257 (((-112) |#4| $) 101) (((-112) $) 97)) (-2930 ((|#4| |#4| $) 92)) (-4033 (((-1119) $) 11)) (-4062 (((-3 |#4| "failed") $) 85)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1583 (((-3 $ "failed") $ |#4|) 79)) (-1938 (($ $ |#4|) 78) (((-644 $) |#4| $) 116) (((-644 $) |#4| (-644 $)) 115) (((-644 $) (-644 |#4|) $) 114) (((-644 $) (-644 |#4|) (-644 $)) 113)) (-2822 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) 39)) (-4194 (((-112) $) 42)) (-2954 (($) 41)) (-3992 (((-771) $) 107)) (-4044 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4417)))) (-3895 (($ $) 40)) (-3134 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-2523 (($ (-644 |#4|)) 61)) (-1945 (($ $ |#3|) 29)) (-1398 (($ $ |#3|) 31)) (-2280 (($ $) 89)) (-4287 (($ $ |#3|) 30)) (-2512 (((-862) $) 12) (((-644 |#4|) $) 38)) (-2748 (((-771) $) 77 (|has| |#3| (-370)))) (-3122 (((-112) $ $) 9)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3130 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) 99)) (-1848 (((-644 $) |#4| $) 122) (((-644 $) |#4| (-644 $)) 121) (((-644 $) (-644 |#4|) $) 120) (((-644 $) (-644 |#4|) (-644 $)) 119)) (-3427 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4417)))) (-1427 (((-644 |#3|) $) 82)) (-1737 (((-112) |#4| $) 136)) (-1369 (((-112) |#3| $) 81)) (-2940 (((-112) $ $) 6)) (-2997 (((-771) $) 47 (|has| $ (-6 -4417)))))
+((-4267 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) (-771)) 115)) (-3071 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771)) 63)) (-3489 (((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-771)) 100)) (-2154 (((-771) (-644 |#4|) (-644 |#5|)) 30)) (-1577 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|) 66) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771)) 65) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771) (-112)) 67)) (-2731 (((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112)) 86) (((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112)) 87)) (-3204 (((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) 92)) (-2040 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-112)) 62)) (-3922 (((-771) (-644 |#4|) (-644 |#5|)) 21)))
+(((-1068 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3922 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -2154 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -2040 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-112))) (-15 -3071 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771))) (-15 -3071 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|)) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771) (-112))) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771))) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|)) (-15 -2731 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -2731 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4267 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) (-771))) (-15 -3204 ((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)))) (-15 -3489 ((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-771)))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -1068))
+((-3489 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2327 *9)))) (-5 *4 (-771)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-1269)) (-5 *1 (-1068 *5 *6 *7 *8 *9)))) (-3204 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2327 *8))) (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1157)) (-5 *1 (-1068 *4 *5 *6 *7 *8)))) (-4267 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-644 *11)) (|:| |todo| (-644 (-2 (|:| |val| *3) (|:| -2327 *11)))))) (-5 *6 (-771)) (-5 *2 (-644 (-2 (|:| |val| (-644 *10)) (|:| -2327 *11)))) (-5 *3 (-644 *10)) (-5 *4 (-644 *11)) (-4 *10 (-1064 *7 *8 *9)) (-4 *11 (-1070 *7 *8 *9 *10)) (-4 *7 (-454)) (-4 *8 (-793)) (-4 *9 (-850)) (-5 *1 (-1068 *7 *8 *9 *10 *11)))) (-2731 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1068 *5 *6 *7 *8 *9)))) (-2731 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1068 *5 *6 *7 *8 *9)))) (-1577 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1068 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1577 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3)))) (-1577 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-771)) (-5 *6 (-112)) (-4 *7 (-454)) (-4 *8 (-793)) (-4 *9 (-850)) (-4 *3 (-1064 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1068 *7 *8 *9 *3 *4)) (-4 *4 (-1070 *7 *8 *9 *3)))) (-3071 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1068 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3071 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3)))) (-2040 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3)))) (-2154 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1068 *5 *6 *7 *8 *9)))) (-3922 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1068 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -3922 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -2154 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -2040 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-112))) (-15 -3071 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771))) (-15 -3071 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|)) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771) (-112))) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771))) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|)) (-15 -2731 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -2731 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4267 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) (-771))) (-15 -3204 ((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)))) (-15 -3489 ((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-771))))
+((-1535 (((-112) |#5| $) 26)) (-2976 (((-112) |#5| $) 29)) (-1961 (((-112) |#5| $) 18) (((-112) $) 52)) (-3147 (((-644 $) |#5| $) NIL) (((-644 $) (-644 |#5|) $) 94) (((-644 $) (-644 |#5|) (-644 $)) 92) (((-644 $) |#5| (-644 $)) 95)) (-2295 (($ $ |#5|) NIL) (((-644 $) |#5| $) NIL) (((-644 $) |#5| (-644 $)) 73) (((-644 $) (-644 |#5|) $) 75) (((-644 $) (-644 |#5|) (-644 $)) 77)) (-2607 (((-644 $) |#5| $) NIL) (((-644 $) |#5| (-644 $)) 64) (((-644 $) (-644 |#5|) $) 69) (((-644 $) (-644 |#5|) (-644 $)) 71)) (-3917 (((-112) |#5| $) 32)))
+(((-1069 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2295 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -2295 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -2295 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -2295 ((-644 |#1|) |#5| |#1|)) (-15 -2607 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -2607 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -2607 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -2607 ((-644 |#1|) |#5| |#1|)) (-15 -3147 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -3147 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -3147 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -3147 ((-644 |#1|) |#5| |#1|)) (-15 -2976 ((-112) |#5| |#1|)) (-15 -1961 ((-112) |#1|)) (-15 -3917 ((-112) |#5| |#1|)) (-15 -1535 ((-112) |#5| |#1|)) (-15 -1961 ((-112) |#5| |#1|)) (-15 -2295 (|#1| |#1| |#5|))) (-1070 |#2| |#3| |#4| |#5|) (-454) (-793) (-850) (-1064 |#2| |#3| |#4|)) (T -1069))
+NIL
+(-10 -8 (-15 -2295 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -2295 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -2295 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -2295 ((-644 |#1|) |#5| |#1|)) (-15 -2607 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -2607 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -2607 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -2607 ((-644 |#1|) |#5| |#1|)) (-15 -3147 ((-644 |#1|) |#5| (-644 |#1|))) (-15 -3147 ((-644 |#1|) (-644 |#5|) (-644 |#1|))) (-15 -3147 ((-644 |#1|) (-644 |#5|) |#1|)) (-15 -3147 ((-644 |#1|) |#5| |#1|)) (-15 -2976 ((-112) |#5| |#1|)) (-15 -1961 ((-112) |#1|)) (-15 -3917 ((-112) |#5| |#1|)) (-15 -1535 ((-112) |#5| |#1|)) (-15 -1961 ((-112) |#5| |#1|)) (-15 -2295 (|#1| |#1| |#5|)))
+((-3009 (((-112) $ $) 7)) (-3043 (((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 |#4|)))) (-644 |#4|)) 86)) (-3804 (((-644 $) (-644 |#4|)) 87) (((-644 $) (-644 |#4|) (-112)) 112)) (-2608 (((-644 |#3|) $) 34)) (-1390 (((-112) $) 27)) (-3455 (((-112) $) 18 (|has| |#1| (-558)))) (-1702 (((-112) |#4| $) 102) (((-112) $) 98)) (-3713 ((|#4| |#4| $) 93)) (-2179 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| $) 127)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) 28)) (-1574 (((-112) $ (-771)) 45)) (-1386 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4414))) (((-3 |#4| "failed") $ |#3|) 80)) (-3877 (($) 46 T CONST)) (-3310 (((-112) $) 23 (|has| |#1| (-558)))) (-3367 (((-112) $ $) 25 (|has| |#1| (-558)))) (-2895 (((-112) $ $) 24 (|has| |#1| (-558)))) (-3219 (((-112) $) 26 (|has| |#1| (-558)))) (-3790 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-4239 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) 37)) (-1867 (($ (-644 |#4|)) 36)) (-4112 (((-3 $ "failed") $) 83)) (-3963 ((|#4| |#4| $) 90)) (-4133 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-1991 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-3517 ((|#4| |#4| $) 88)) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4414))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-4143 (((-2 (|:| -1713 (-644 |#4|)) (|:| -3537 (-644 |#4|))) $) 106)) (-1535 (((-112) |#4| $) 137)) (-2976 (((-112) |#4| $) 134)) (-1961 (((-112) |#4| $) 138) (((-112) $) 135)) (-3799 (((-644 |#4|) $) 53 (|has| $ (-6 -4414)))) (-2848 (((-112) |#4| $) 105) (((-112) $) 104)) (-1887 ((|#3| $) 35)) (-3501 (((-112) $ (-771)) 44)) (-3276 (((-644 |#4|) $) 54 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) 48)) (-1711 (((-644 |#3|) $) 33)) (-4113 (((-112) |#3| $) 32)) (-3582 (((-112) $ (-771)) 43)) (-2402 (((-1157) $) 10)) (-2924 (((-3 |#4| (-644 $)) |#4| |#4| $) 129)) (-2165 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| |#4| $) 128)) (-2680 (((-3 |#4| "failed") $) 84)) (-1468 (((-644 $) |#4| $) 130)) (-2487 (((-3 (-112) (-644 $)) |#4| $) 133)) (-1627 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-3147 (((-644 $) |#4| $) 126) (((-644 $) (-644 |#4|) $) 125) (((-644 $) (-644 |#4|) (-644 $)) 124) (((-644 $) |#4| (-644 $)) 123)) (-2284 (($ |#4| $) 118) (($ (-644 |#4|) $) 117)) (-3329 (((-644 |#4|) $) 108)) (-2337 (((-112) |#4| $) 100) (((-112) $) 96)) (-1569 ((|#4| |#4| $) 91)) (-3886 (((-112) $ $) 111)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $) 101) (((-112) $) 97)) (-1671 ((|#4| |#4| $) 92)) (-4056 (((-1119) $) 11)) (-4101 (((-3 |#4| "failed") $) 85)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1775 (((-3 $ "failed") $ |#4|) 79)) (-2295 (($ $ |#4|) 78) (((-644 $) |#4| $) 116) (((-644 $) |#4| (-644 $)) 115) (((-644 $) (-644 |#4|) $) 114) (((-644 $) (-644 |#4|) (-644 $)) 113)) (-3044 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) 39)) (-3461 (((-112) $) 42)) (-1793 (($) 41)) (-2108 (((-771) $) 107)) (-4067 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4414)))) (-3940 (($ $) 40)) (-3204 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-3791 (($ (-644 |#4|)) 61)) (-2363 (($ $ |#3|) 29)) (-3513 (($ $ |#3|) 31)) (-1360 (($ $) 89)) (-3130 (($ $ |#3|) 30)) (-3780 (((-862) $) 12) (((-644 |#4|) $) 38)) (-3542 (((-771) $) 77 (|has| |#3| (-370)))) (-3801 (((-112) $ $) 9)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3870 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) 99)) (-2607 (((-644 $) |#4| $) 122) (((-644 $) |#4| (-644 $)) 121) (((-644 $) (-644 |#4|) $) 120) (((-644 $) (-644 |#4|) (-644 $)) 119)) (-1583 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4414)))) (-3830 (((-644 |#3|) $) 82)) (-3917 (((-112) |#4| $) 136)) (-3258 (((-112) |#3| $) 81)) (-2950 (((-112) $ $) 6)) (-3020 (((-771) $) 47 (|has| $ (-6 -4414)))))
(((-1070 |#1| |#2| |#3| |#4|) (-140) (-454) (-793) (-850) (-1064 |t#1| |t#2| |t#3|)) (T -1070))
-((-1602 (*1 *2 *3 *1) (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-3422 (*1 *2 *3 *1) (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-1737 (*1 *2 *3 *1) (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-1602 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-2192 (*1 *2 *3 *1) (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-4343 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-3 (-112) (-644 *1))) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2620 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *1)))) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2620 (*1 *2 *3 *1) (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-2909 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2501 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-3 *3 (-644 *1))) (-4 *1 (-1070 *4 *5 *6 *3)))) (-1624 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *1)))) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2857 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *1)))) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2390 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2390 (*1 *2 *3 *1) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *7)))) (-2390 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)))) (-2390 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)))) (-1848 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)))) (-1848 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)))) (-1848 (*1 *2 *3 *1) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *7)))) (-1848 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)))) (-1937 (*1 *1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *2)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-1937 (*1 *1 *2 *1) (-12 (-5 *2 (-644 *6)) (-4 *1 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)))) (-1938 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)))) (-1938 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)))) (-1938 (*1 *2 *3 *1) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *7)))) (-1938 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)))) (-1725 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *5 *6 *7 *8)))))
-(-13 (-1207 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -1602 ((-112) |t#4| $)) (-15 -3422 ((-112) |t#4| $)) (-15 -1737 ((-112) |t#4| $)) (-15 -1602 ((-112) $)) (-15 -2192 ((-112) |t#4| $)) (-15 -4343 ((-3 (-112) (-644 $)) |t#4| $)) (-15 -2620 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 $))) |t#4| $)) (-15 -2620 ((-112) |t#4| $)) (-15 -2909 ((-644 $) |t#4| $)) (-15 -2501 ((-3 |t#4| (-644 $)) |t#4| |t#4| $)) (-15 -1624 ((-644 (-2 (|:| |val| |t#4|) (|:| -2248 $))) |t#4| |t#4| $)) (-15 -2857 ((-644 (-2 (|:| |val| |t#4|) (|:| -2248 $))) |t#4| $)) (-15 -2390 ((-644 $) |t#4| $)) (-15 -2390 ((-644 $) (-644 |t#4|) $)) (-15 -2390 ((-644 $) (-644 |t#4|) (-644 $))) (-15 -2390 ((-644 $) |t#4| (-644 $))) (-15 -1848 ((-644 $) |t#4| $)) (-15 -1848 ((-644 $) |t#4| (-644 $))) (-15 -1848 ((-644 $) (-644 |t#4|) $)) (-15 -1848 ((-644 $) (-644 |t#4|) (-644 $))) (-15 -1937 ($ |t#4| $)) (-15 -1937 ($ (-644 |t#4|) $)) (-15 -1938 ((-644 $) |t#4| $)) (-15 -1938 ((-644 $) |t#4| (-644 $))) (-15 -1938 ((-644 $) (-644 |t#4|) $)) (-15 -1938 ((-644 $) (-644 |t#4|) (-644 $))) (-15 -1725 ((-644 $) (-644 |t#4|) (-112)))))
+((-1961 (*1 *2 *3 *1) (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-1535 (*1 *2 *3 *1) (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-3917 (*1 *2 *3 *1) (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-1961 (*1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-2976 (*1 *2 *3 *1) (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-2487 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-3 (-112) (-644 *1))) (-4 *1 (-1070 *4 *5 *6 *3)))) (-1627 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *1)))) (-4 *1 (-1070 *4 *5 *6 *3)))) (-1627 (*1 *2 *3 *1) (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-1468 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2924 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-3 *3 (-644 *1))) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2165 (*1 *2 *3 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *1)))) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2179 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *1)))) (-4 *1 (-1070 *4 *5 *6 *3)))) (-3147 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)))) (-3147 (*1 *2 *3 *1) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *7)))) (-3147 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)))) (-3147 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)))) (-2607 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2607 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)))) (-2607 (*1 *2 *3 *1) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *7)))) (-2607 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)))) (-2284 (*1 *1 *2 *1) (-12 (-4 *1 (-1070 *3 *4 *5 *2)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-2284 (*1 *1 *2 *1) (-12 (-5 *2 (-644 *6)) (-4 *1 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)))) (-2295 (*1 *2 *3 *1) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)))) (-2295 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)))) (-2295 (*1 *2 *3 *1) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *7)))) (-2295 (*1 *2 *3 *2) (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)))) (-3804 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1070 *5 *6 *7 *8)))))
+(-13 (-1207 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-15 -1961 ((-112) |t#4| $)) (-15 -1535 ((-112) |t#4| $)) (-15 -3917 ((-112) |t#4| $)) (-15 -1961 ((-112) $)) (-15 -2976 ((-112) |t#4| $)) (-15 -2487 ((-3 (-112) (-644 $)) |t#4| $)) (-15 -1627 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 $))) |t#4| $)) (-15 -1627 ((-112) |t#4| $)) (-15 -1468 ((-644 $) |t#4| $)) (-15 -2924 ((-3 |t#4| (-644 $)) |t#4| |t#4| $)) (-15 -2165 ((-644 (-2 (|:| |val| |t#4|) (|:| -2327 $))) |t#4| |t#4| $)) (-15 -2179 ((-644 (-2 (|:| |val| |t#4|) (|:| -2327 $))) |t#4| $)) (-15 -3147 ((-644 $) |t#4| $)) (-15 -3147 ((-644 $) (-644 |t#4|) $)) (-15 -3147 ((-644 $) (-644 |t#4|) (-644 $))) (-15 -3147 ((-644 $) |t#4| (-644 $))) (-15 -2607 ((-644 $) |t#4| $)) (-15 -2607 ((-644 $) |t#4| (-644 $))) (-15 -2607 ((-644 $) (-644 |t#4|) $)) (-15 -2607 ((-644 $) (-644 |t#4|) (-644 $))) (-15 -2284 ($ |t#4| $)) (-15 -2284 ($ (-644 |t#4|) $)) (-15 -2295 ((-644 $) |t#4| $)) (-15 -2295 ((-644 $) |t#4| (-644 $))) (-15 -2295 ((-644 $) (-644 |t#4|) $)) (-15 -2295 ((-644 $) (-644 |t#4|) (-644 $))) (-15 -3804 ((-644 $) (-644 |t#4|) (-112)))))
(((-34) . T) ((-102) . T) ((-613 (-644 |#4|)) . T) ((-613 (-862)) . T) ((-151 |#4|) . T) ((-614 (-538)) |has| |#4| (-614 (-538))) ((-310 |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-491 |#4|) . T) ((-516 |#4| |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-976 |#1| |#2| |#3| |#4|) . T) ((-1099) . T) ((-1207 |#1| |#2| |#3| |#4|) . T) ((-1214) . T))
-((-3311 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#5|) 87)) (-3344 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|) 128)) (-4231 (((-644 |#5|) |#4| |#5|) 75)) (-4209 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|) 48) (((-112) |#4| |#5|) 56)) (-1627 (((-1269)) 37)) (-2128 (((-1269)) 26)) (-1834 (((-1269) (-1157) (-1157) (-1157)) 33)) (-2949 (((-1269) (-1157) (-1157) (-1157)) 22)) (-3807 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#4| |#4| |#5|) 108)) (-3843 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#3| (-112)) 119) (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5| (-112) (-112)) 53)) (-3466 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|) 114)))
-(((-1071 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2949 ((-1269) (-1157) (-1157) (-1157))) (-15 -2128 ((-1269))) (-15 -1834 ((-1269) (-1157) (-1157) (-1157))) (-15 -1627 ((-1269))) (-15 -3807 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -3843 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3843 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#3| (-112))) (-15 -3466 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -3344 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -4209 ((-112) |#4| |#5|)) (-15 -4209 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|)) (-15 -4231 ((-644 |#5|) |#4| |#5|)) (-15 -3311 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#5|))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -1071))
-((-3311 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4)))) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-4231 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4)) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-4209 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *4)))) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-4209 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3344 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4)))) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3466 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4)))) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3843 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2248 *9)))) (-5 *5 (-112)) (-4 *8 (-1064 *6 *7 *4)) (-4 *9 (-1070 *6 *7 *4 *8)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *4 (-850)) (-5 *2 (-644 (-2 (|:| |val| *8) (|:| -2248 *9)))) (-5 *1 (-1071 *6 *7 *4 *8 *9)))) (-3843 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4)))) (-5 *1 (-1071 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3)))) (-3807 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1627 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-1071 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-1834 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-1071 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-2128 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-1071 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-2949 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-1071 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2949 ((-1269) (-1157) (-1157) (-1157))) (-15 -2128 ((-1269))) (-15 -1834 ((-1269) (-1157) (-1157) (-1157))) (-15 -1627 ((-1269))) (-15 -3807 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -3843 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3843 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#3| (-112))) (-15 -3466 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -3344 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -4209 ((-112) |#4| |#5|)) (-15 -4209 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|)) (-15 -4231 ((-644 |#5|) |#4| |#5|)) (-15 -3311 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#5|)))
-((-2985 (((-112) $ $) NIL)) (-3812 (((-1213) $) 13)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1374 (((-1134) $) 10)) (-2512 (((-862) $) 20) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1072) (-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $)) (-15 -3812 ((-1213) $))))) (T -1072))
-((-1374 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1072)))) (-3812 (*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-1072)))))
-(-13 (-1082) (-10 -8 (-15 -1374 ((-1134) $)) (-15 -3812 ((-1213) $))))
-((-3525 (((-112) $ $) 7)))
-(((-1073) (-13 (-1214) (-10 -8 (-15 -3525 ((-112) $ $))))) (T -1073))
-((-3525 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1073)))))
-(-13 (-1214) (-10 -8 (-15 -3525 ((-112) $ $))))
-((-2985 (((-112) $ $) NIL)) (-2628 (((-1175) $) 8)) (-2878 (((-1157) $) 17)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 11)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 14)))
-(((-1074 |#1|) (-13 (-1099) (-10 -8 (-15 -2628 ((-1175) $)))) (-1175)) (T -1074))
-((-2628 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-1074 *3)) (-14 *3 *2))))
-(-13 (-1099) (-10 -8 (-15 -2628 ((-1175) $))))
-((-2985 (((-112) $ $) NIL)) (-2197 (($ $ (-644 (-1175)) (-1 (-112) (-644 |#3|))) 34)) (-3861 (($ |#3| |#3|) 23) (($ |#3| |#3| (-644 (-1175))) 21)) (-3336 ((|#3| $) 13)) (-2977 (((-3 (-295 |#3|) "failed") $) 60)) (-1756 (((-295 |#3|) $) NIL)) (-3943 (((-644 (-1175)) $) 16)) (-1710 (((-892 |#1|) $) 11)) (-3324 ((|#3| $) 12)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4386 ((|#3| $ |#3|) 28) ((|#3| $ |#3| (-921)) 41)) (-2512 (((-862) $) 89) (($ (-295 |#3|)) 22)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 38)))
-(((-1075 |#1| |#2| |#3|) (-13 (-1099) (-287 |#3| |#3|) (-1038 (-295 |#3|)) (-10 -8 (-15 -3861 ($ |#3| |#3|)) (-15 -3861 ($ |#3| |#3| (-644 (-1175)))) (-15 -2197 ($ $ (-644 (-1175)) (-1 (-112) (-644 |#3|)))) (-15 -1710 ((-892 |#1|) $)) (-15 -3324 (|#3| $)) (-15 -3336 (|#3| $)) (-15 -4386 (|#3| $ |#3| (-921))) (-15 -3943 ((-644 (-1175)) $)))) (-1099) (-13 (-1049) (-886 |#1|) (-614 (-892 |#1|))) (-13 (-432 |#2|) (-886 |#1|) (-614 (-892 |#1|)))) (T -1075))
-((-3861 (*1 *1 *2 *2) (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))) (-5 *1 (-1075 *3 *4 *2)) (-4 *2 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))) (-3861 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-1075 *4 *5 *2)) (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))))) (-2197 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-1 (-112) (-644 *6))) (-4 *6 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-1075 *4 *5 *6)))) (-1710 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 *2))) (-5 *2 (-892 *3)) (-5 *1 (-1075 *3 *4 *5)) (-4 *5 (-13 (-432 *4) (-886 *3) (-614 *2))))) (-3324 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *2 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))) (-5 *1 (-1075 *3 *4 *2)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))))) (-3336 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *2 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))) (-5 *1 (-1075 *3 *4 *2)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))))) (-4386 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-921)) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-1075 *4 *5 *2)) (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))))) (-3943 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))) (-5 *2 (-644 (-1175))) (-5 *1 (-1075 *3 *4 *5)) (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))))
-(-13 (-1099) (-287 |#3| |#3|) (-1038 (-295 |#3|)) (-10 -8 (-15 -3861 ($ |#3| |#3|)) (-15 -3861 ($ |#3| |#3| (-644 (-1175)))) (-15 -2197 ($ $ (-644 (-1175)) (-1 (-112) (-644 |#3|)))) (-15 -1710 ((-892 |#1|) $)) (-15 -3324 (|#3| $)) (-15 -3336 (|#3| $)) (-15 -4386 (|#3| $ |#3| (-921))) (-15 -3943 ((-644 (-1175)) $))))
-((-2985 (((-112) $ $) NIL)) (-2158 (($ (-644 (-1075 |#1| |#2| |#3|))) 14)) (-3328 (((-644 (-1075 |#1| |#2| |#3|)) $) 21)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4386 ((|#3| $ |#3|) 24) ((|#3| $ |#3| (-921)) 27)) (-2512 (((-862) $) 17)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 20)))
-(((-1076 |#1| |#2| |#3|) (-13 (-1099) (-287 |#3| |#3|) (-10 -8 (-15 -2158 ($ (-644 (-1075 |#1| |#2| |#3|)))) (-15 -3328 ((-644 (-1075 |#1| |#2| |#3|)) $)) (-15 -4386 (|#3| $ |#3| (-921))))) (-1099) (-13 (-1049) (-886 |#1|) (-614 (-892 |#1|))) (-13 (-432 |#2|) (-886 |#1|) (-614 (-892 |#1|)))) (T -1076))
-((-2158 (*1 *1 *2) (-12 (-5 *2 (-644 (-1075 *3 *4 *5))) (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))) (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))) (-5 *1 (-1076 *3 *4 *5)))) (-3328 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))) (-5 *2 (-644 (-1075 *3 *4 *5))) (-5 *1 (-1076 *3 *4 *5)) (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))) (-4386 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-921)) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-1076 *4 *5 *2)) (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))))))
-(-13 (-1099) (-287 |#3| |#3|) (-10 -8 (-15 -2158 ($ (-644 (-1075 |#1| |#2| |#3|)))) (-15 -3328 ((-644 (-1075 |#1| |#2| |#3|)) $)) (-15 -4386 (|#3| $ |#3| (-921)))))
-((-4180 (((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112)) 88) (((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|))) 92) (((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112)) 90)))
-(((-1077 |#1| |#2|) (-10 -7 (-15 -4180 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112))) (-15 -4180 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -4180 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112)))) (-13 (-308) (-147)) (-644 (-1175))) (T -1077))
-((-4180 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-2 (|:| -4137 (-1171 *5)) (|:| -2770 (-644 (-952 *5)))))) (-5 *1 (-1077 *5 *6)) (-5 *3 (-644 (-952 *5))) (-14 *6 (-644 (-1175))))) (-4180 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-2 (|:| -4137 (-1171 *4)) (|:| -2770 (-644 (-952 *4)))))) (-5 *1 (-1077 *4 *5)) (-5 *3 (-644 (-952 *4))) (-14 *5 (-644 (-1175))))) (-4180 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-2 (|:| -4137 (-1171 *5)) (|:| -2770 (-644 (-952 *5)))))) (-5 *1 (-1077 *5 *6)) (-5 *3 (-644 (-952 *5))) (-14 *6 (-644 (-1175))))))
-(-10 -7 (-15 -4180 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112))) (-15 -4180 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -4180 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112))))
-((-2391 (((-420 |#3|) |#3|) 18)))
-(((-1078 |#1| |#2| |#3|) (-10 -7 (-15 -2391 ((-420 |#3|) |#3|))) (-1240 (-409 (-566))) (-13 (-365) (-147) (-724 (-409 (-566)) |#1|)) (-1240 |#2|)) (T -1078))
-((-2391 (*1 *2 *3) (-12 (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-13 (-365) (-147) (-724 (-409 (-566)) *4))) (-5 *2 (-420 *3)) (-5 *1 (-1078 *4 *5 *3)) (-4 *3 (-1240 *5)))))
-(-10 -7 (-15 -2391 ((-420 |#3|) |#3|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 141)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-365)))) (-3653 (($ $) NIL (|has| |#1| (-365)))) (-2152 (((-112) $) NIL (|has| |#1| (-365)))) (-3953 (((-689 |#1|) (-1264 $)) NIL) (((-689 |#1|)) 125)) (-3817 ((|#1| $) 130)) (-4324 (((-1187 (-921) (-771)) (-566)) NIL (|has| |#1| (-351)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL (|has| |#1| (-365)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-4025 (((-771)) 46 (|has| |#1| (-370)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-1547 (($ (-1264 |#1|) (-1264 $)) NIL) (($ (-1264 |#1|)) 49)) (-3890 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-351)))) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-1929 (((-689 |#1|) $ (-1264 $)) NIL) (((-689 |#1|) $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 115) (((-689 |#1|) (-689 $)) 110)) (-4362 (($ |#2|) 67) (((-3 $ "failed") (-409 |#2|)) NIL (|has| |#1| (-365)))) (-1579 (((-3 $ "failed") $) NIL)) (-1821 (((-921)) 84)) (-3335 (($) 50 (|has| |#1| (-370)))) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-3092 (($) NIL (|has| |#1| (-351)))) (-3449 (((-112) $) NIL (|has| |#1| (-351)))) (-3626 (($ $ (-771)) NIL (|has| |#1| (-351))) (($ $) NIL (|has| |#1| (-351)))) (-2635 (((-112) $) NIL (|has| |#1| (-365)))) (-2716 (((-921) $) NIL (|has| |#1| (-351))) (((-833 (-921)) $) NIL (|has| |#1| (-351)))) (-2741 (((-112) $) NIL)) (-1559 ((|#1| $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-351)))) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3929 ((|#2| $) 91 (|has| |#1| (-365)))) (-3712 (((-921) $) 150 (|has| |#1| (-370)))) (-4350 ((|#2| $) 64)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| |#1| (-365)))) (-2759 (($) NIL (|has| |#1| (-351)) CONST)) (-2168 (($ (-921)) 140 (|has| |#1| (-370)))) (-4033 (((-1119) $) NIL)) (-4067 (($) 132)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3263 (((-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))) NIL (|has| |#1| (-351)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2408 ((|#1| (-1264 $)) NIL) ((|#1|) 119)) (-3379 (((-771) $) NIL (|has| |#1| (-351))) (((-3 (-771) "failed") $ $) NIL (|has| |#1| (-351)))) (-2862 (($ $) NIL (-2805 (-12 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-771)) NIL (-2805 (-12 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-1 |#1| |#1|) (-771)) NIL (|has| |#1| (-365))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-365)))) (-3042 (((-689 |#1|) (-1264 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-365)))) (-2127 ((|#2|) 80)) (-1536 (($) NIL (|has| |#1| (-351)))) (-2770 (((-1264 |#1|) $ (-1264 $)) 96) (((-689 |#1|) (-1264 $) (-1264 $)) NIL) (((-1264 |#1|) $) 77) (((-689 |#1|) (-1264 $)) 92)) (-3134 (((-1264 |#1|) $) NIL) (($ (-1264 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-351)))) (-2512 (((-862) $) 63) (($ (-566)) 59) (($ |#1|) 60) (($ $) NIL (|has| |#1| (-365))) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566))))))) (-3842 (($ $) NIL (|has| |#1| (-351))) (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-1963 ((|#2| $) 89)) (-3795 (((-771)) 82 T CONST)) (-3122 (((-112) $ $) NIL)) (-1990 (((-1264 $)) 88)) (-1634 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2485 (($) 32 T CONST)) (-2495 (($) 19 T CONST)) (-2840 (($ $) NIL (-2805 (-12 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-771)) NIL (-2805 (-12 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-1 |#1| |#1|) (-771)) NIL (|has| |#1| (-365))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-365)))) (-2940 (((-112) $ $) 69)) (-3061 (($ $ $) NIL (|has| |#1| (-365)))) (-3047 (($ $) 73) (($ $ $) NIL)) (-3034 (($ $ $) 71)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 57) (($ $ $) 75) (($ $ |#1|) NIL) (($ |#1| $) 54) (($ (-409 (-566)) $) NIL (|has| |#1| (-365))) (($ $ (-409 (-566))) NIL (|has| |#1| (-365)))))
+((-2953 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#5|) 87)) (-2028 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|) 128)) (-2631 (((-644 |#5|) |#4| |#5|) 75)) (-3608 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|) 48) (((-112) |#4| |#5|) 56)) (-2198 (((-1269)) 37)) (-3611 (((-1269)) 26)) (-2462 (((-1269) (-1157) (-1157) (-1157)) 33)) (-1843 (((-1269) (-1157) (-1157) (-1157)) 22)) (-4110 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#4| |#4| |#5|) 108)) (-3236 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#3| (-112)) 119) (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5| (-112) (-112)) 53)) (-3846 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|) 114)))
+(((-1071 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1843 ((-1269) (-1157) (-1157) (-1157))) (-15 -3611 ((-1269))) (-15 -2462 ((-1269) (-1157) (-1157) (-1157))) (-15 -2198 ((-1269))) (-15 -4110 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -3236 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3236 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#3| (-112))) (-15 -3846 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -2028 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -3608 ((-112) |#4| |#5|)) (-15 -3608 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|)) (-15 -2631 ((-644 |#5|) |#4| |#5|)) (-15 -2953 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#5|))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -1071))
+((-2953 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4)))) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-2631 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4)) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3608 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *4)))) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3608 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-2028 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4)))) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3846 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4)))) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3236 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2327 *9)))) (-5 *5 (-112)) (-4 *8 (-1064 *6 *7 *4)) (-4 *9 (-1070 *6 *7 *4 *8)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *4 (-850)) (-5 *2 (-644 (-2 (|:| |val| *8) (|:| -2327 *9)))) (-5 *1 (-1071 *6 *7 *4 *8 *9)))) (-3236 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4)))) (-5 *1 (-1071 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3)))) (-4110 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))) (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-2198 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-1071 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-2462 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-1071 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-3611 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-1071 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-1843 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-1071 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1843 ((-1269) (-1157) (-1157) (-1157))) (-15 -3611 ((-1269))) (-15 -2462 ((-1269) (-1157) (-1157) (-1157))) (-15 -2198 ((-1269))) (-15 -4110 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -3236 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3236 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#3| (-112))) (-15 -3846 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -2028 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -3608 ((-112) |#4| |#5|)) (-15 -3608 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|)) (-15 -2631 ((-644 |#5|) |#4| |#5|)) (-15 -2953 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#5|)))
+((-3009 (((-112) $ $) NIL)) (-3848 (((-1213) $) 13)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1424 (((-1134) $) 10)) (-3780 (((-862) $) 20) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1072) (-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $)) (-15 -3848 ((-1213) $))))) (T -1072))
+((-1424 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1072)))) (-3848 (*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-1072)))))
+(-13 (-1082) (-10 -8 (-15 -1424 ((-1134) $)) (-15 -3848 ((-1213) $))))
+((-4257 (((-112) $ $) 7)))
+(((-1073) (-13 (-1214) (-10 -8 (-15 -4257 ((-112) $ $))))) (T -1073))
+((-4257 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1073)))))
+(-13 (-1214) (-10 -8 (-15 -4257 ((-112) $ $))))
+((-3009 (((-112) $ $) NIL)) (-2639 (((-1175) $) 8)) (-2402 (((-1157) $) 17)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 11)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 14)))
+(((-1074 |#1|) (-13 (-1099) (-10 -8 (-15 -2639 ((-1175) $)))) (-1175)) (T -1074))
+((-2639 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-1074 *3)) (-14 *3 *2))))
+(-13 (-1099) (-10 -8 (-15 -2639 ((-1175) $))))
+((-3009 (((-112) $ $) NIL)) (-3055 (($ $ (-644 (-1175)) (-1 (-112) (-644 |#3|))) 34)) (-1538 (($ |#3| |#3|) 23) (($ |#3| |#3| (-644 (-1175))) 21)) (-3361 ((|#3| $) 13)) (-3066 (((-3 (-295 |#3|) "failed") $) 60)) (-1867 (((-295 |#3|) $) NIL)) (-2866 (((-644 (-1175)) $) 16)) (-1773 (((-892 |#1|) $) 11)) (-3349 ((|#3| $) 12)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4393 ((|#3| $ |#3|) 28) ((|#3| $ |#3| (-921)) 41)) (-3780 (((-862) $) 89) (($ (-295 |#3|)) 22)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 38)))
+(((-1075 |#1| |#2| |#3|) (-13 (-1099) (-287 |#3| |#3|) (-1038 (-295 |#3|)) (-10 -8 (-15 -1538 ($ |#3| |#3|)) (-15 -1538 ($ |#3| |#3| (-644 (-1175)))) (-15 -3055 ($ $ (-644 (-1175)) (-1 (-112) (-644 |#3|)))) (-15 -1773 ((-892 |#1|) $)) (-15 -3349 (|#3| $)) (-15 -3361 (|#3| $)) (-15 -4393 (|#3| $ |#3| (-921))) (-15 -2866 ((-644 (-1175)) $)))) (-1099) (-13 (-1049) (-886 |#1|) (-614 (-892 |#1|))) (-13 (-432 |#2|) (-886 |#1|) (-614 (-892 |#1|)))) (T -1075))
+((-1538 (*1 *1 *2 *2) (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))) (-5 *1 (-1075 *3 *4 *2)) (-4 *2 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))) (-1538 (*1 *1 *2 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-1075 *4 *5 *2)) (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))))) (-3055 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-1 (-112) (-644 *6))) (-4 *6 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-1075 *4 *5 *6)))) (-1773 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 *2))) (-5 *2 (-892 *3)) (-5 *1 (-1075 *3 *4 *5)) (-4 *5 (-13 (-432 *4) (-886 *3) (-614 *2))))) (-3349 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *2 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))) (-5 *1 (-1075 *3 *4 *2)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))))) (-3361 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *2 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))) (-5 *1 (-1075 *3 *4 *2)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))))) (-4393 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-921)) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-1075 *4 *5 *2)) (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))))) (-2866 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))) (-5 *2 (-644 (-1175))) (-5 *1 (-1075 *3 *4 *5)) (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))))
+(-13 (-1099) (-287 |#3| |#3|) (-1038 (-295 |#3|)) (-10 -8 (-15 -1538 ($ |#3| |#3|)) (-15 -1538 ($ |#3| |#3| (-644 (-1175)))) (-15 -3055 ($ $ (-644 (-1175)) (-1 (-112) (-644 |#3|)))) (-15 -1773 ((-892 |#1|) $)) (-15 -3349 (|#3| $)) (-15 -3361 (|#3| $)) (-15 -4393 (|#3| $ |#3| (-921))) (-15 -2866 ((-644 (-1175)) $))))
+((-3009 (((-112) $ $) NIL)) (-3023 (($ (-644 (-1075 |#1| |#2| |#3|))) 14)) (-3657 (((-644 (-1075 |#1| |#2| |#3|)) $) 21)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4393 ((|#3| $ |#3|) 24) ((|#3| $ |#3| (-921)) 27)) (-3780 (((-862) $) 17)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 20)))
+(((-1076 |#1| |#2| |#3|) (-13 (-1099) (-287 |#3| |#3|) (-10 -8 (-15 -3023 ($ (-644 (-1075 |#1| |#2| |#3|)))) (-15 -3657 ((-644 (-1075 |#1| |#2| |#3|)) $)) (-15 -4393 (|#3| $ |#3| (-921))))) (-1099) (-13 (-1049) (-886 |#1|) (-614 (-892 |#1|))) (-13 (-432 |#2|) (-886 |#1|) (-614 (-892 |#1|)))) (T -1076))
+((-3023 (*1 *1 *2) (-12 (-5 *2 (-644 (-1075 *3 *4 *5))) (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))) (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))) (-5 *1 (-1076 *3 *4 *5)))) (-3657 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3)))) (-5 *2 (-644 (-1075 *3 *4 *5))) (-5 *1 (-1076 *3 *4 *5)) (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))) (-4393 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-921)) (-4 *4 (-1099)) (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4)))) (-5 *1 (-1076 *4 *5 *2)) (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))))))
+(-13 (-1099) (-287 |#3| |#3|) (-10 -8 (-15 -3023 ($ (-644 (-1075 |#1| |#2| |#3|)))) (-15 -3657 ((-644 (-1075 |#1| |#2| |#3|)) $)) (-15 -4393 (|#3| $ |#3| (-921)))))
+((-3323 (((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112)) 88) (((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|))) 92) (((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112)) 90)))
+(((-1077 |#1| |#2|) (-10 -7 (-15 -3323 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112))) (-15 -3323 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -3323 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112)))) (-13 (-308) (-147)) (-644 (-1175))) (T -1077))
+((-3323 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-2 (|:| -4126 (-1171 *5)) (|:| -2543 (-644 (-952 *5)))))) (-5 *1 (-1077 *5 *6)) (-5 *3 (-644 (-952 *5))) (-14 *6 (-644 (-1175))))) (-3323 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-2 (|:| -4126 (-1171 *4)) (|:| -2543 (-644 (-952 *4)))))) (-5 *1 (-1077 *4 *5)) (-5 *3 (-644 (-952 *4))) (-14 *5 (-644 (-1175))))) (-3323 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-2 (|:| -4126 (-1171 *5)) (|:| -2543 (-644 (-952 *5)))))) (-5 *1 (-1077 *5 *6)) (-5 *3 (-644 (-952 *5))) (-14 *6 (-644 (-1175))))))
+(-10 -7 (-15 -3323 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112))) (-15 -3323 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -3323 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112))))
+((-2473 (((-420 |#3|) |#3|) 18)))
+(((-1078 |#1| |#2| |#3|) (-10 -7 (-15 -2473 ((-420 |#3|) |#3|))) (-1240 (-409 (-566))) (-13 (-365) (-147) (-724 (-409 (-566)) |#1|)) (-1240 |#2|)) (T -1078))
+((-2473 (*1 *2 *3) (-12 (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-13 (-365) (-147) (-724 (-409 (-566)) *4))) (-5 *2 (-420 *3)) (-5 *1 (-1078 *4 *5 *3)) (-4 *3 (-1240 *5)))))
+(-10 -7 (-15 -2473 ((-420 |#3|) |#3|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 141)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-365)))) (-1968 (($ $) NIL (|has| |#1| (-365)))) (-2644 (((-112) $) NIL (|has| |#1| (-365)))) (-2965 (((-689 |#1|) (-1264 $)) NIL) (((-689 |#1|)) 125)) (-3834 ((|#1| $) 130)) (-2277 (((-1187 (-921) (-771)) (-566)) NIL (|has| |#1| (-351)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL (|has| |#1| (-365)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-4070 (((-771)) 46 (|has| |#1| (-370)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-2613 (($ (-1264 |#1|) (-1264 $)) NIL) (($ (-1264 |#1|)) 49)) (-3655 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-351)))) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-2205 (((-689 |#1|) $ (-1264 $)) NIL) (((-689 |#1|) $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 115) (((-689 |#1|) (-689 $)) 110)) (-1580 (($ |#2|) 67) (((-3 $ "failed") (-409 |#2|)) NIL (|has| |#1| (-365)))) (-2928 (((-3 $ "failed") $) NIL)) (-4157 (((-921)) 84)) (-1618 (($) 50 (|has| |#1| (-370)))) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-1676 (($) NIL (|has| |#1| (-351)))) (-3698 (((-112) $) NIL (|has| |#1| (-351)))) (-2901 (($ $ (-771)) NIL (|has| |#1| (-351))) (($ $) NIL (|has| |#1| (-351)))) (-1784 (((-112) $) NIL (|has| |#1| (-365)))) (-3227 (((-921) $) NIL (|has| |#1| (-351))) (((-833 (-921)) $) NIL (|has| |#1| (-351)))) (-3466 (((-112) $) NIL)) (-2719 ((|#1| $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-351)))) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-2750 ((|#2| $) 91 (|has| |#1| (-365)))) (-1299 (((-921) $) 150 (|has| |#1| (-370)))) (-1567 ((|#2| $) 64)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-365)))) (-3625 (($) NIL (|has| |#1| (-351)) CONST)) (-2208 (($ (-921)) 140 (|has| |#1| (-370)))) (-4056 (((-1119) $) NIL)) (-4152 (($) 132)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2580 (((-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))) NIL (|has| |#1| (-351)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-3309 ((|#1| (-1264 $)) NIL) ((|#1|) 119)) (-2347 (((-771) $) NIL (|has| |#1| (-351))) (((-3 (-771) "failed") $ $) NIL (|has| |#1| (-351)))) (-2578 (($ $) NIL (-2805 (-12 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-771)) NIL (-2805 (-12 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-1 |#1| |#1|) (-771)) NIL (|has| |#1| (-365))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-365)))) (-4359 (((-689 |#1|) (-1264 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-365)))) (-3601 ((|#2|) 80)) (-2507 (($) NIL (|has| |#1| (-351)))) (-2543 (((-1264 |#1|) $ (-1264 $)) 96) (((-689 |#1|) (-1264 $) (-1264 $)) NIL) (((-1264 |#1|) $) 77) (((-689 |#1|) (-1264 $)) 92)) (-3204 (((-1264 |#1|) $) NIL) (($ (-1264 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (|has| |#1| (-351)))) (-3780 (((-862) $) 63) (($ (-566)) 59) (($ |#1|) 60) (($ $) NIL (|has| |#1| (-365))) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-365)) (|has| |#1| (-1038 (-409 (-566))))))) (-3226 (($ $) NIL (|has| |#1| (-351))) (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-4370 ((|#2| $) 89)) (-3996 (((-771)) 82 T CONST)) (-3801 (((-112) $ $) NIL)) (-1575 (((-1264 $)) 88)) (-2278 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2493 (($) 32 T CONST)) (-4333 (($) 19 T CONST)) (-2876 (($ $) NIL (-2805 (-12 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-771)) NIL (-2805 (-12 (|has| |#1| (-233)) (|has| |#1| (-365))) (|has| |#1| (-351)))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-365)) (|has| |#1| (-900 (-1175))))) (($ $ (-1 |#1| |#1|) (-771)) NIL (|has| |#1| (-365))) (($ $ (-1 |#1| |#1|)) NIL (|has| |#1| (-365)))) (-2950 (((-112) $ $) 69)) (-3062 (($ $ $) NIL (|has| |#1| (-365)))) (-3051 (($ $) 73) (($ $ $) NIL)) (-3040 (($ $ $) 71)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 57) (($ $ $) 75) (($ $ |#1|) NIL) (($ |#1| $) 54) (($ (-409 (-566)) $) NIL (|has| |#1| (-365))) (($ $ (-409 (-566))) NIL (|has| |#1| (-365)))))
(((-1079 |#1| |#2| |#3|) (-724 |#1| |#2|) (-172) (-1240 |#1|) |#2|) (T -1079))
NIL
(-724 |#1| |#2|)
-((-2391 (((-420 |#3|) |#3|) 19)))
-(((-1080 |#1| |#2| |#3|) (-10 -7 (-15 -2391 ((-420 |#3|) |#3|))) (-1240 (-409 (-952 (-566)))) (-13 (-365) (-147) (-724 (-409 (-952 (-566))) |#1|)) (-1240 |#2|)) (T -1080))
-((-2391 (*1 *2 *3) (-12 (-4 *4 (-1240 (-409 (-952 (-566))))) (-4 *5 (-13 (-365) (-147) (-724 (-409 (-952 (-566))) *4))) (-5 *2 (-420 *3)) (-5 *1 (-1080 *4 *5 *3)) (-4 *3 (-1240 *5)))))
-(-10 -7 (-15 -2391 ((-420 |#3|) |#3|)))
-((-2985 (((-112) $ $) NIL)) (-1439 (($ $ $) 16)) (-3059 (($ $ $) 17)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3963 (($) 6)) (-3134 (((-1175) $) 20)) (-2512 (((-862) $) 13)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 15)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 9)))
-(((-1081) (-13 (-850) (-614 (-1175)) (-10 -8 (-15 -3963 ($))))) (T -1081))
-((-3963 (*1 *1) (-5 *1 (-1081))))
-(-13 (-850) (-614 (-1175)) (-10 -8 (-15 -3963 ($))))
-((-2985 (((-112) $ $) 7)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-1180)) 17) (((-1180) $) 16)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-2473 (((-420 |#3|) |#3|) 19)))
+(((-1080 |#1| |#2| |#3|) (-10 -7 (-15 -2473 ((-420 |#3|) |#3|))) (-1240 (-409 (-952 (-566)))) (-13 (-365) (-147) (-724 (-409 (-952 (-566))) |#1|)) (-1240 |#2|)) (T -1080))
+((-2473 (*1 *2 *3) (-12 (-4 *4 (-1240 (-409 (-952 (-566))))) (-4 *5 (-13 (-365) (-147) (-724 (-409 (-952 (-566))) *4))) (-5 *2 (-420 *3)) (-5 *1 (-1080 *4 *5 *3)) (-4 *3 (-1240 *5)))))
+(-10 -7 (-15 -2473 ((-420 |#3|) |#3|)))
+((-3009 (((-112) $ $) NIL)) (-1945 (($ $ $) 16)) (-2709 (($ $ $) 17)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3057 (($) 6)) (-3204 (((-1175) $) 20)) (-3780 (((-862) $) 13)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 15)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 9)))
+(((-1081) (-13 (-850) (-614 (-1175)) (-10 -8 (-15 -3057 ($))))) (T -1081))
+((-3057 (*1 *1) (-5 *1 (-1081))))
+(-13 (-850) (-614 (-1175)) (-10 -8 (-15 -3057 ($))))
+((-3009 (((-112) $ $) 7)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-1180)) 17) (((-1180) $) 16)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-1082) (-140)) (T -1082))
NIL
(-13 (-93))
(((-93) . T) ((-102) . T) ((-616 #0=(-1180)) . T) ((-613 (-862)) . T) ((-613 #0#) . T) ((-492 #0#) . T) ((-1099) . T))
-((-2537 ((|#1| |#1| (-1 (-566) |#1| |#1|)) 43) ((|#1| |#1| (-1 (-112) |#1|)) 34)) (-4283 (((-1269)) 22)) (-2585 (((-644 |#1|)) 13)))
-(((-1083 |#1|) (-10 -7 (-15 -4283 ((-1269))) (-15 -2585 ((-644 |#1|))) (-15 -2537 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2537 (|#1| |#1| (-1 (-566) |#1| |#1|)))) (-132)) (T -1083))
-((-2537 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-566) *2 *2)) (-4 *2 (-132)) (-5 *1 (-1083 *2)))) (-2537 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-132)) (-5 *1 (-1083 *2)))) (-2585 (*1 *2) (-12 (-5 *2 (-644 *3)) (-5 *1 (-1083 *3)) (-4 *3 (-132)))) (-4283 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1083 *3)) (-4 *3 (-132)))))
-(-10 -7 (-15 -4283 ((-1269))) (-15 -2585 ((-644 |#1|))) (-15 -2537 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2537 (|#1| |#1| (-1 (-566) |#1| |#1|))))
-((-3445 (($ (-109) $) 20)) (-4017 (((-691 (-109)) (-508) $) 19)) (-2954 (($) 7)) (-3572 (($) 21)) (-2874 (($) 22)) (-3995 (((-644 (-175)) $) 10)) (-2512 (((-862) $) 25)))
-(((-1084) (-13 (-613 (-862)) (-10 -8 (-15 -2954 ($)) (-15 -3995 ((-644 (-175)) $)) (-15 -4017 ((-691 (-109)) (-508) $)) (-15 -3445 ($ (-109) $)) (-15 -3572 ($)) (-15 -2874 ($))))) (T -1084))
-((-2954 (*1 *1) (-5 *1 (-1084))) (-3995 (*1 *2 *1) (-12 (-5 *2 (-644 (-175))) (-5 *1 (-1084)))) (-4017 (*1 *2 *3 *1) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-109))) (-5 *1 (-1084)))) (-3445 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1084)))) (-3572 (*1 *1) (-5 *1 (-1084))) (-2874 (*1 *1) (-5 *1 (-1084))))
-(-13 (-613 (-862)) (-10 -8 (-15 -2954 ($)) (-15 -3995 ((-644 (-175)) $)) (-15 -4017 ((-691 (-109)) (-508) $)) (-15 -3445 ($ (-109) $)) (-15 -3572 ($)) (-15 -2874 ($))))
-((-3950 (((-1264 (-689 |#1|)) (-644 (-689 |#1|))) 47) (((-1264 (-689 (-952 |#1|))) (-644 (-1175)) (-689 (-952 |#1|))) 75) (((-1264 (-689 (-409 (-952 |#1|)))) (-644 (-1175)) (-689 (-409 (-952 |#1|)))) 92)) (-2770 (((-1264 |#1|) (-689 |#1|) (-644 (-689 |#1|))) 41)))
-(((-1085 |#1|) (-10 -7 (-15 -3950 ((-1264 (-689 (-409 (-952 |#1|)))) (-644 (-1175)) (-689 (-409 (-952 |#1|))))) (-15 -3950 ((-1264 (-689 (-952 |#1|))) (-644 (-1175)) (-689 (-952 |#1|)))) (-15 -3950 ((-1264 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -2770 ((-1264 |#1|) (-689 |#1|) (-644 (-689 |#1|))))) (-365)) (T -1085))
-((-2770 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-689 *5))) (-5 *3 (-689 *5)) (-4 *5 (-365)) (-5 *2 (-1264 *5)) (-5 *1 (-1085 *5)))) (-3950 (*1 *2 *3) (-12 (-5 *3 (-644 (-689 *4))) (-4 *4 (-365)) (-5 *2 (-1264 (-689 *4))) (-5 *1 (-1085 *4)))) (-3950 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-1175))) (-4 *5 (-365)) (-5 *2 (-1264 (-689 (-952 *5)))) (-5 *1 (-1085 *5)) (-5 *4 (-689 (-952 *5))))) (-3950 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-1175))) (-4 *5 (-365)) (-5 *2 (-1264 (-689 (-409 (-952 *5))))) (-5 *1 (-1085 *5)) (-5 *4 (-689 (-409 (-952 *5)))))))
-(-10 -7 (-15 -3950 ((-1264 (-689 (-409 (-952 |#1|)))) (-644 (-1175)) (-689 (-409 (-952 |#1|))))) (-15 -3950 ((-1264 (-689 (-952 |#1|))) (-644 (-1175)) (-689 (-952 |#1|)))) (-15 -3950 ((-1264 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -2770 ((-1264 |#1|) (-689 |#1|) (-644 (-689 |#1|)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3598 (((-644 (-771)) $) NIL) (((-644 (-771)) $ (-1175)) NIL)) (-3467 (((-771) $) NIL) (((-771) $ (-1175)) NIL)) (-2540 (((-644 (-1087 (-1175))) $) NIL)) (-2358 (((-1171 $) $ (-1087 (-1175))) NIL) (((-1171 |#1|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-1087 (-1175)))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2857 (($ $) NIL (|has| |#1| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-3456 (($ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-1087 (-1175)) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL) (((-3 (-1124 |#1| (-1175)) "failed") $) NIL)) (-1756 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-1087 (-1175)) $) NIL) (((-1175) $) NIL) (((-1124 |#1| (-1175)) $) NIL)) (-1552 (($ $ $ (-1087 (-1175))) NIL (|has| |#1| (-172)))) (-3577 (($ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#1| (-454))) (($ $ (-1087 (-1175))) NIL (|has| |#1| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#1| (-909)))) (-2804 (($ $ |#1| (-533 (-1087 (-1175))) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1087 (-1175)) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1087 (-1175)) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-2716 (((-771) $ (-1175)) NIL) (((-771) $) NIL)) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-2530 (($ (-1171 |#1|) (-1087 (-1175))) NIL) (($ (-1171 $) (-1087 (-1175))) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-533 (-1087 (-1175)))) NIL) (($ $ (-1087 (-1175)) (-771)) NIL) (($ $ (-644 (-1087 (-1175))) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-1087 (-1175))) NIL)) (-3251 (((-533 (-1087 (-1175))) $) NIL) (((-771) $ (-1087 (-1175))) NIL) (((-644 (-771)) $ (-644 (-1087 (-1175)))) NIL)) (-2132 (($ (-1 (-533 (-1087 (-1175))) (-533 (-1087 (-1175)))) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3646 (((-1 $ (-771)) (-1175)) NIL) (((-1 $ (-771)) $) NIL (|has| |#1| (-233)))) (-3339 (((-3 (-1087 (-1175)) "failed") $) NIL)) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-3919 (((-1087 (-1175)) $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2878 (((-1157) $) NIL)) (-1726 (((-112) $) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-1087 (-1175))) (|:| -3250 (-771))) "failed") $) NIL)) (-1960 (($ $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 ((|#1| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1087 (-1175)) |#1|) NIL) (($ $ (-644 (-1087 (-1175))) (-644 |#1|)) NIL) (($ $ (-1087 (-1175)) $) NIL) (($ $ (-644 (-1087 (-1175))) (-644 $)) NIL) (($ $ (-1175) $) NIL (|has| |#1| (-233))) (($ $ (-644 (-1175)) (-644 $)) NIL (|has| |#1| (-233))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-233))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-233)))) (-2408 (($ $ (-1087 (-1175))) NIL (|has| |#1| (-172)))) (-2862 (($ $ (-1087 (-1175))) NIL) (($ $ (-644 (-1087 (-1175)))) NIL) (($ $ (-1087 (-1175)) (-771)) NIL) (($ $ (-644 (-1087 (-1175))) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-1496 (((-644 (-1175)) $) NIL)) (-3992 (((-533 (-1087 (-1175))) $) NIL) (((-771) $ (-1087 (-1175))) NIL) (((-644 (-771)) $ (-644 (-1087 (-1175)))) NIL) (((-771) $ (-1175)) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-1087 (-1175)) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1087 (-1175)) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1087 (-1175)) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3181 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ (-1087 (-1175))) NIL (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-1087 (-1175))) NIL) (($ (-1175)) NIL) (($ (-1124 |#1| (-1175))) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-533 (-1087 (-1175)))) NIL) (($ $ (-1087 (-1175)) (-771)) NIL) (($ $ (-644 (-1087 (-1175))) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-1087 (-1175))) NIL) (($ $ (-644 (-1087 (-1175)))) NIL) (($ $ (-1087 (-1175)) (-771)) NIL) (($ $ (-644 (-1087 (-1175))) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+((-2058 ((|#1| |#1| (-1 (-566) |#1| |#1|)) 43) ((|#1| |#1| (-1 (-112) |#1|)) 34)) (-4299 (((-1269)) 22)) (-2616 (((-644 |#1|)) 13)))
+(((-1083 |#1|) (-10 -7 (-15 -4299 ((-1269))) (-15 -2616 ((-644 |#1|))) (-15 -2058 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2058 (|#1| |#1| (-1 (-566) |#1| |#1|)))) (-132)) (T -1083))
+((-2058 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-566) *2 *2)) (-4 *2 (-132)) (-5 *1 (-1083 *2)))) (-2058 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-132)) (-5 *1 (-1083 *2)))) (-2616 (*1 *2) (-12 (-5 *2 (-644 *3)) (-5 *1 (-1083 *3)) (-4 *3 (-132)))) (-4299 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1083 *3)) (-4 *3 (-132)))))
+(-10 -7 (-15 -4299 ((-1269))) (-15 -2616 ((-644 |#1|))) (-15 -2058 (|#1| |#1| (-1 (-112) |#1|))) (-15 -2058 (|#1| |#1| (-1 (-566) |#1| |#1|))))
+((-1788 (($ (-109) $) 20)) (-2349 (((-691 (-109)) (-508) $) 19)) (-1793 (($) 7)) (-3617 (($) 21)) (-2360 (($) 22)) (-2139 (((-644 (-175)) $) 10)) (-3780 (((-862) $) 25)))
+(((-1084) (-13 (-613 (-862)) (-10 -8 (-15 -1793 ($)) (-15 -2139 ((-644 (-175)) $)) (-15 -2349 ((-691 (-109)) (-508) $)) (-15 -1788 ($ (-109) $)) (-15 -3617 ($)) (-15 -2360 ($))))) (T -1084))
+((-1793 (*1 *1) (-5 *1 (-1084))) (-2139 (*1 *2 *1) (-12 (-5 *2 (-644 (-175))) (-5 *1 (-1084)))) (-2349 (*1 *2 *3 *1) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-109))) (-5 *1 (-1084)))) (-1788 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1084)))) (-3617 (*1 *1) (-5 *1 (-1084))) (-2360 (*1 *1) (-5 *1 (-1084))))
+(-13 (-613 (-862)) (-10 -8 (-15 -1793 ($)) (-15 -2139 ((-644 (-175)) $)) (-15 -2349 ((-691 (-109)) (-508) $)) (-15 -1788 ($ (-109) $)) (-15 -3617 ($)) (-15 -2360 ($))))
+((-2932 (((-1264 (-689 |#1|)) (-644 (-689 |#1|))) 47) (((-1264 (-689 (-952 |#1|))) (-644 (-1175)) (-689 (-952 |#1|))) 75) (((-1264 (-689 (-409 (-952 |#1|)))) (-644 (-1175)) (-689 (-409 (-952 |#1|)))) 92)) (-2543 (((-1264 |#1|) (-689 |#1|) (-644 (-689 |#1|))) 41)))
+(((-1085 |#1|) (-10 -7 (-15 -2932 ((-1264 (-689 (-409 (-952 |#1|)))) (-644 (-1175)) (-689 (-409 (-952 |#1|))))) (-15 -2932 ((-1264 (-689 (-952 |#1|))) (-644 (-1175)) (-689 (-952 |#1|)))) (-15 -2932 ((-1264 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -2543 ((-1264 |#1|) (-689 |#1|) (-644 (-689 |#1|))))) (-365)) (T -1085))
+((-2543 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-689 *5))) (-5 *3 (-689 *5)) (-4 *5 (-365)) (-5 *2 (-1264 *5)) (-5 *1 (-1085 *5)))) (-2932 (*1 *2 *3) (-12 (-5 *3 (-644 (-689 *4))) (-4 *4 (-365)) (-5 *2 (-1264 (-689 *4))) (-5 *1 (-1085 *4)))) (-2932 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-1175))) (-4 *5 (-365)) (-5 *2 (-1264 (-689 (-952 *5)))) (-5 *1 (-1085 *5)) (-5 *4 (-689 (-952 *5))))) (-2932 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-1175))) (-4 *5 (-365)) (-5 *2 (-1264 (-689 (-409 (-952 *5))))) (-5 *1 (-1085 *5)) (-5 *4 (-689 (-409 (-952 *5)))))))
+(-10 -7 (-15 -2932 ((-1264 (-689 (-409 (-952 |#1|)))) (-644 (-1175)) (-689 (-409 (-952 |#1|))))) (-15 -2932 ((-1264 (-689 (-952 |#1|))) (-644 (-1175)) (-689 (-952 |#1|)))) (-15 -2932 ((-1264 (-689 |#1|)) (-644 (-689 |#1|)))) (-15 -2543 ((-1264 |#1|) (-689 |#1|) (-644 (-689 |#1|)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2658 (((-644 (-771)) $) NIL) (((-644 (-771)) $ (-1175)) NIL)) (-3856 (((-771) $) NIL) (((-771) $ (-1175)) NIL)) (-2608 (((-644 (-1087 (-1175))) $) NIL)) (-2438 (((-1171 $) $ (-1087 (-1175))) NIL) (((-1171 |#1|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-1087 (-1175)))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2179 (($ $) NIL (|has| |#1| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-3759 (($ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-1087 (-1175)) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL) (((-3 (-1124 |#1| (-1175)) "failed") $) NIL)) (-1867 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-1087 (-1175)) $) NIL) (((-1175) $) NIL) (((-1124 |#1| (-1175)) $) NIL)) (-2662 (($ $ $ (-1087 (-1175))) NIL (|has| |#1| (-172)))) (-3645 (($ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#1| (-454))) (($ $ (-1087 (-1175))) NIL (|has| |#1| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#1| (-909)))) (-2871 (($ $ |#1| (-533 (-1087 (-1175))) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1087 (-1175)) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1087 (-1175)) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3227 (((-771) $ (-1175)) NIL) (((-771) $) NIL)) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2597 (($ (-1171 |#1|) (-1087 (-1175))) NIL) (($ (-1171 $) (-1087 (-1175))) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-533 (-1087 (-1175)))) NIL) (($ $ (-1087 (-1175)) (-771)) NIL) (($ $ (-644 (-1087 (-1175))) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-1087 (-1175))) NIL)) (-2466 (((-533 (-1087 (-1175))) $) NIL) (((-771) $ (-1087 (-1175))) NIL) (((-644 (-771)) $ (-644 (-1087 (-1175)))) NIL)) (-2443 (($ (-1 (-533 (-1087 (-1175))) (-533 (-1087 (-1175)))) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1894 (((-1 $ (-771)) (-1175)) NIL) (((-1 $ (-771)) $) NIL (|has| |#1| (-233)))) (-1984 (((-3 (-1087 (-1175)) "failed") $) NIL)) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-4144 (((-1087 (-1175)) $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2402 (((-1157) $) NIL)) (-3814 (((-112) $) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-1087 (-1175))) (|:| -2456 (-771))) "failed") $) NIL)) (-1486 (($ $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 ((|#1| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1087 (-1175)) |#1|) NIL) (($ $ (-644 (-1087 (-1175))) (-644 |#1|)) NIL) (($ $ (-1087 (-1175)) $) NIL) (($ $ (-644 (-1087 (-1175))) (-644 $)) NIL) (($ $ (-1175) $) NIL (|has| |#1| (-233))) (($ $ (-644 (-1175)) (-644 $)) NIL (|has| |#1| (-233))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-233))) (($ $ (-644 (-1175)) (-644 |#1|)) NIL (|has| |#1| (-233)))) (-3309 (($ $ (-1087 (-1175))) NIL (|has| |#1| (-172)))) (-2578 (($ $ (-1087 (-1175))) NIL) (($ $ (-644 (-1087 (-1175)))) NIL) (($ $ (-1087 (-1175)) (-771)) NIL) (($ $ (-644 (-1087 (-1175))) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-3302 (((-644 (-1175)) $) NIL)) (-2108 (((-533 (-1087 (-1175))) $) NIL) (((-771) $ (-1087 (-1175))) NIL) (((-644 (-771)) $ (-644 (-1087 (-1175)))) NIL) (((-771) $ (-1175)) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-1087 (-1175)) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1087 (-1175)) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1087 (-1175)) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3042 ((|#1| $) NIL (|has| |#1| (-454))) (($ $ (-1087 (-1175))) NIL (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-1087 (-1175))) NIL) (($ (-1175)) NIL) (($ (-1124 |#1| (-1175))) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-533 (-1087 (-1175)))) NIL) (($ $ (-1087 (-1175)) (-771)) NIL) (($ $ (-644 (-1087 (-1175))) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-1087 (-1175))) NIL) (($ $ (-644 (-1087 (-1175)))) NIL) (($ $ (-1087 (-1175)) (-771)) NIL) (($ $ (-644 (-1087 (-1175))) (-644 (-771))) NIL) (($ $) NIL (|has| |#1| (-233))) (($ $ (-771)) NIL (|has| |#1| (-233))) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
(((-1086 |#1|) (-13 (-254 |#1| (-1175) (-1087 (-1175)) (-533 (-1087 (-1175)))) (-1038 (-1124 |#1| (-1175)))) (-1049)) (T -1086))
NIL
(-13 (-254 |#1| (-1175) (-1087 (-1175)) (-533 (-1087 (-1175)))) (-1038 (-1124 |#1| (-1175))))
-((-2985 (((-112) $ $) NIL)) (-3467 (((-771) $) NIL)) (-1353 ((|#1| $) 10)) (-2977 (((-3 |#1| "failed") $) NIL)) (-1756 ((|#1| $) NIL)) (-2716 (((-771) $) 11)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3646 (($ |#1| (-771)) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2862 (($ $) NIL) (($ $ (-771)) NIL)) (-2512 (((-862) $) NIL) (($ |#1|) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 16)))
+((-3009 (((-112) $ $) NIL)) (-3856 (((-771) $) NIL)) (-1401 ((|#1| $) 10)) (-3066 (((-3 |#1| "failed") $) NIL)) (-1867 ((|#1| $) NIL)) (-3227 (((-771) $) 11)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-1894 (($ |#1| (-771)) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2578 (($ $) NIL) (($ $ (-771)) NIL)) (-3780 (((-862) $) NIL) (($ |#1|) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 16)))
(((-1087 |#1|) (-267 |#1|) (-850)) (T -1087))
NIL
(-267 |#1|)
-((-3077 (((-644 |#2|) (-1 |#2| |#1|) (-1093 |#1|)) 29 (|has| |#1| (-848))) (((-1093 |#2|) (-1 |#2| |#1|) (-1093 |#1|)) 14)))
-(((-1088 |#1| |#2|) (-10 -7 (-15 -3077 ((-1093 |#2|) (-1 |#2| |#1|) (-1093 |#1|))) (IF (|has| |#1| (-848)) (-15 -3077 ((-644 |#2|) (-1 |#2| |#1|) (-1093 |#1|))) |%noBranch|)) (-1214) (-1214)) (T -1088))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1093 *5)) (-4 *5 (-848)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-644 *6)) (-5 *1 (-1088 *5 *6)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1093 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1093 *6)) (-5 *1 (-1088 *5 *6)))))
-(-10 -7 (-15 -3077 ((-1093 |#2|) (-1 |#2| |#1|) (-1093 |#1|))) (IF (|has| |#1| (-848)) (-15 -3077 ((-644 |#2|) (-1 |#2| |#1|) (-1093 |#1|))) |%noBranch|))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 16) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3121 (((-644 (-1134)) $) 10)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1089) (-13 (-1082) (-10 -8 (-15 -3121 ((-644 (-1134)) $))))) (T -1089))
-((-3121 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1089)))))
-(-13 (-1082) (-10 -8 (-15 -3121 ((-644 (-1134)) $))))
-((-3077 (((-1091 |#2|) (-1 |#2| |#1|) (-1091 |#1|)) 19)))
-(((-1090 |#1| |#2|) (-10 -7 (-15 -3077 ((-1091 |#2|) (-1 |#2| |#1|) (-1091 |#1|)))) (-1214) (-1214)) (T -1090))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1091 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1091 *6)) (-5 *1 (-1090 *5 *6)))))
-(-10 -7 (-15 -3077 ((-1091 |#2|) (-1 |#2| |#1|) (-1091 |#1|))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1353 (((-1175) $) 11)) (-3510 (((-1093 |#1|) $) 12)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2077 (($ (-1175) (-1093 |#1|)) 10)) (-2512 (((-862) $) 22 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2940 (((-112) $ $) 17 (|has| |#1| (-1099)))))
-(((-1091 |#1|) (-13 (-1214) (-10 -8 (-15 -2077 ($ (-1175) (-1093 |#1|))) (-15 -1353 ((-1175) $)) (-15 -3510 ((-1093 |#1|) $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|))) (-1214)) (T -1091))
-((-2077 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1093 *4)) (-4 *4 (-1214)) (-5 *1 (-1091 *4)))) (-1353 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-1091 *3)) (-4 *3 (-1214)))) (-3510 (*1 *2 *1) (-12 (-5 *2 (-1093 *3)) (-5 *1 (-1091 *3)) (-4 *3 (-1214)))))
-(-13 (-1214) (-10 -8 (-15 -2077 ($ (-1175) (-1093 |#1|))) (-15 -1353 ((-1175) $)) (-15 -3510 ((-1093 |#1|) $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|)))
-((-3510 (($ |#1| |#1|) 8)) (-3753 ((|#1| $) 11)) (-3503 ((|#1| $) 13)) (-4234 (((-566) $) 9)) (-3885 ((|#1| $) 10)) (-4258 ((|#1| $) 12)) (-3134 (($ |#1|) 6)) (-3619 (($ |#1| |#1|) 15)) (-2729 (($ $ (-566)) 14)))
+((-3152 (((-644 |#2|) (-1 |#2| |#1|) (-1093 |#1|)) 29 (|has| |#1| (-848))) (((-1093 |#2|) (-1 |#2| |#1|) (-1093 |#1|)) 14)))
+(((-1088 |#1| |#2|) (-10 -7 (-15 -3152 ((-1093 |#2|) (-1 |#2| |#1|) (-1093 |#1|))) (IF (|has| |#1| (-848)) (-15 -3152 ((-644 |#2|) (-1 |#2| |#1|) (-1093 |#1|))) |%noBranch|)) (-1214) (-1214)) (T -1088))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1093 *5)) (-4 *5 (-848)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-644 *6)) (-5 *1 (-1088 *5 *6)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1093 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1093 *6)) (-5 *1 (-1088 *5 *6)))))
+(-10 -7 (-15 -3152 ((-1093 |#2|) (-1 |#2| |#1|) (-1093 |#1|))) (IF (|has| |#1| (-848)) (-15 -3152 ((-644 |#2|) (-1 |#2| |#1|) (-1093 |#1|))) |%noBranch|))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 16) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3787 (((-644 (-1134)) $) 10)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1089) (-13 (-1082) (-10 -8 (-15 -3787 ((-644 (-1134)) $))))) (T -1089))
+((-3787 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1089)))))
+(-13 (-1082) (-10 -8 (-15 -3787 ((-644 (-1134)) $))))
+((-3152 (((-1091 |#2|) (-1 |#2| |#1|) (-1091 |#1|)) 19)))
+(((-1090 |#1| |#2|) (-10 -7 (-15 -3152 ((-1091 |#2|) (-1 |#2| |#1|) (-1091 |#1|)))) (-1214) (-1214)) (T -1090))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1091 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1091 *6)) (-5 *1 (-1090 *5 *6)))))
+(-10 -7 (-15 -3152 ((-1091 |#2|) (-1 |#2| |#1|) (-1091 |#1|))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1401 (((-1175) $) 11)) (-4210 (((-1093 |#1|) $) 12)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2175 (($ (-1175) (-1093 |#1|)) 10)) (-3780 (((-862) $) 22 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2950 (((-112) $ $) 17 (|has| |#1| (-1099)))))
+(((-1091 |#1|) (-13 (-1214) (-10 -8 (-15 -2175 ($ (-1175) (-1093 |#1|))) (-15 -1401 ((-1175) $)) (-15 -4210 ((-1093 |#1|) $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|))) (-1214)) (T -1091))
+((-2175 (*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1093 *4)) (-4 *4 (-1214)) (-5 *1 (-1091 *4)))) (-1401 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-1091 *3)) (-4 *3 (-1214)))) (-4210 (*1 *2 *1) (-12 (-5 *2 (-1093 *3)) (-5 *1 (-1091 *3)) (-4 *3 (-1214)))))
+(-13 (-1214) (-10 -8 (-15 -2175 ($ (-1175) (-1093 |#1|))) (-15 -1401 ((-1175) $)) (-15 -4210 ((-1093 |#1|) $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|)))
+((-4210 (($ |#1| |#1|) 8)) (-1762 ((|#1| $) 11)) (-3290 ((|#1| $) 13)) (-3577 (((-566) $) 9)) (-3603 ((|#1| $) 10)) (-3589 ((|#1| $) 12)) (-3204 (($ |#1|) 6)) (-3646 (($ |#1| |#1|) 15)) (-2733 (($ $ (-566)) 14)))
(((-1092 |#1|) (-140) (-1214)) (T -1092))
-((-3619 (*1 *1 *2 *2) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))) (-2729 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1092 *3)) (-4 *3 (-1214)))) (-3503 (*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))) (-4258 (*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))) (-3753 (*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))) (-3885 (*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))) (-4234 (*1 *2 *1) (-12 (-4 *1 (-1092 *3)) (-4 *3 (-1214)) (-5 *2 (-566)))) (-3510 (*1 *1 *2 *2) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))))
-(-13 (-618 |t#1|) (-10 -8 (-15 -3619 ($ |t#1| |t#1|)) (-15 -2729 ($ $ (-566))) (-15 -3503 (|t#1| $)) (-15 -4258 (|t#1| $)) (-15 -3753 (|t#1| $)) (-15 -3885 (|t#1| $)) (-15 -4234 ((-566) $)) (-15 -3510 ($ |t#1| |t#1|))))
+((-3646 (*1 *1 *2 *2) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))) (-2733 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1092 *3)) (-4 *3 (-1214)))) (-3290 (*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))) (-3589 (*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))) (-1762 (*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))) (-3603 (*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))) (-3577 (*1 *2 *1) (-12 (-4 *1 (-1092 *3)) (-4 *3 (-1214)) (-5 *2 (-566)))) (-4210 (*1 *1 *2 *2) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))))
+(-13 (-618 |t#1|) (-10 -8 (-15 -3646 ($ |t#1| |t#1|)) (-15 -2733 ($ $ (-566))) (-15 -3290 (|t#1| $)) (-15 -3589 (|t#1| $)) (-15 -1762 (|t#1| $)) (-15 -3603 (|t#1| $)) (-15 -3577 ((-566) $)) (-15 -4210 ($ |t#1| |t#1|))))
(((-618 |#1|) . T))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3510 (($ |#1| |#1|) 16)) (-3077 (((-644 |#1|) (-1 |#1| |#1|) $) 46 (|has| |#1| (-848)))) (-3753 ((|#1| $) 12)) (-3503 ((|#1| $) 11)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4234 (((-566) $) 15)) (-3885 ((|#1| $) 14)) (-4258 ((|#1| $) 13)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4154 (((-644 |#1|) $) 44 (|has| |#1| (-848))) (((-644 |#1|) (-644 $)) 43 (|has| |#1| (-848)))) (-3134 (($ |#1|) 29)) (-2512 (((-862) $) 28 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3619 (($ |#1| |#1|) 10)) (-2729 (($ $ (-566)) 17)) (-2940 (((-112) $ $) 22 (|has| |#1| (-1099)))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4210 (($ |#1| |#1|) 16)) (-3152 (((-644 |#1|) (-1 |#1| |#1|) $) 46 (|has| |#1| (-848)))) (-1762 ((|#1| $) 12)) (-3290 ((|#1| $) 11)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3577 (((-566) $) 15)) (-3603 ((|#1| $) 14)) (-3589 ((|#1| $) 13)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1351 (((-644 |#1|) $) 44 (|has| |#1| (-848))) (((-644 |#1|) (-644 $)) 43 (|has| |#1| (-848)))) (-3204 (($ |#1|) 29)) (-3780 (((-862) $) 28 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3646 (($ |#1| |#1|) 10)) (-2733 (($ $ (-566)) 17)) (-2950 (((-112) $ $) 22 (|has| |#1| (-1099)))))
(((-1093 |#1|) (-13 (-1092 |#1|) (-10 -7 (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-1094 |#1| (-644 |#1|))) |%noBranch|))) (-1214)) (T -1093))
NIL
(-13 (-1092 |#1|) (-10 -7 (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-1094 |#1| (-644 |#1|))) |%noBranch|)))
-((-3510 (($ |#1| |#1|) 8)) (-3077 ((|#2| (-1 |#1| |#1|) $) 16)) (-3753 ((|#1| $) 11)) (-3503 ((|#1| $) 13)) (-4234 (((-566) $) 9)) (-3885 ((|#1| $) 10)) (-4258 ((|#1| $) 12)) (-4154 ((|#2| (-644 $)) 18) ((|#2| $) 17)) (-3134 (($ |#1|) 6)) (-3619 (($ |#1| |#1|) 15)) (-2729 (($ $ (-566)) 14)))
+((-4210 (($ |#1| |#1|) 8)) (-3152 ((|#2| (-1 |#1| |#1|) $) 16)) (-1762 ((|#1| $) 11)) (-3290 ((|#1| $) 13)) (-3577 (((-566) $) 9)) (-3603 ((|#1| $) 10)) (-3589 ((|#1| $) 12)) (-1351 ((|#2| (-644 $)) 18) ((|#2| $) 17)) (-3204 (($ |#1|) 6)) (-3646 (($ |#1| |#1|) 15)) (-2733 (($ $ (-566)) 14)))
(((-1094 |#1| |#2|) (-140) (-848) (-1148 |t#1|)) (T -1094))
-((-4154 (*1 *2 *3) (-12 (-5 *3 (-644 *1)) (-4 *1 (-1094 *4 *2)) (-4 *4 (-848)) (-4 *2 (-1148 *4)))) (-4154 (*1 *2 *1) (-12 (-4 *1 (-1094 *3 *2)) (-4 *3 (-848)) (-4 *2 (-1148 *3)))) (-3077 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1094 *4 *2)) (-4 *4 (-848)) (-4 *2 (-1148 *4)))))
-(-13 (-1092 |t#1|) (-10 -8 (-15 -4154 (|t#2| (-644 $))) (-15 -4154 (|t#2| $)) (-15 -3077 (|t#2| (-1 |t#1| |t#1|) $))))
+((-1351 (*1 *2 *3) (-12 (-5 *3 (-644 *1)) (-4 *1 (-1094 *4 *2)) (-4 *4 (-848)) (-4 *2 (-1148 *4)))) (-1351 (*1 *2 *1) (-12 (-4 *1 (-1094 *3 *2)) (-4 *3 (-848)) (-4 *2 (-1148 *3)))) (-3152 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *4 *4)) (-4 *1 (-1094 *4 *2)) (-4 *4 (-848)) (-4 *2 (-1148 *4)))))
+(-13 (-1092 |t#1|) (-10 -8 (-15 -1351 (|t#2| (-644 $))) (-15 -1351 (|t#2| $)) (-15 -3152 (|t#2| (-1 |t#1| |t#1|) $))))
(((-618 |#1|) . T) ((-1092 |#1|) . T))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-2670 (((-1134) $) 12)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 18) (($ (-1180)) NIL) (((-1180) $) NIL)) (-2639 (((-644 (-1134)) $) 10)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1095) (-13 (-1082) (-10 -8 (-15 -2639 ((-644 (-1134)) $)) (-15 -2670 ((-1134) $))))) (T -1095))
-((-2639 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1095)))) (-2670 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1095)))))
-(-13 (-1082) (-10 -8 (-15 -2639 ((-644 (-1134)) $)) (-15 -2670 ((-1134) $))))
-((-1781 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-1757 (($ $ $) 10)) (-3209 (($ $ $) NIL) (($ $ |#2|) 15)))
-(((-1096 |#1| |#2|) (-10 -8 (-15 -1781 (|#1| |#2| |#1|)) (-15 -1781 (|#1| |#1| |#2|)) (-15 -1781 (|#1| |#1| |#1|)) (-15 -1757 (|#1| |#1| |#1|)) (-15 -3209 (|#1| |#1| |#2|)) (-15 -3209 (|#1| |#1| |#1|))) (-1097 |#2|) (-1099)) (T -1096))
-NIL
-(-10 -8 (-15 -1781 (|#1| |#2| |#1|)) (-15 -1781 (|#1| |#1| |#2|)) (-15 -1781 (|#1| |#1| |#1|)) (-15 -1757 (|#1| |#1| |#1|)) (-15 -3209 (|#1| |#1| |#2|)) (-15 -3209 (|#1| |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-1781 (($ $ $) 19) (($ $ |#1|) 18) (($ |#1| $) 17)) (-1757 (($ $ $) 21)) (-2768 (((-112) $ $) 20)) (-3081 (((-112) $ (-771)) 36)) (-1819 (($) 26) (($ (-644 |#1|)) 25)) (-4186 (($ (-1 (-112) |#1|) $) 57 (|has| $ (-6 -4417)))) (-2342 (($) 37 T CONST)) (-4093 (($ $) 60 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#1| $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 55 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 54 (|has| $ (-6 -4417)))) (-3372 (((-644 |#1|) $) 44 (|has| $ (-6 -4417)))) (-3641 (((-112) $ $) 29)) (-2744 (((-112) $ (-771)) 35)) (-2404 (((-644 |#1|) $) 45 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 47 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 40 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 39)) (-3882 (((-112) $ (-771)) 34)) (-2878 (((-1157) $) 10)) (-2390 (($ $ $) 24)) (-4033 (((-1119) $) 11)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 53)) (-2822 (((-112) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#1|) (-644 |#1|)) 51 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 50 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 49 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 (-295 |#1|))) 48 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 30)) (-4194 (((-112) $) 33)) (-2954 (($) 32)) (-3209 (($ $ $) 23) (($ $ |#1|) 22)) (-4044 (((-771) |#1| $) 46 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) |#1|) $) 43 (|has| $ (-6 -4417)))) (-3895 (($ $) 31)) (-3134 (((-538) $) 61 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 52)) (-2512 (((-862) $) 12)) (-2465 (($) 28) (($ (-644 |#1|)) 27)) (-3122 (((-112) $ $) 9)) (-3427 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 6)) (-2997 (((-771) $) 38 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-2680 (((-1134) $) 12)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 18) (($ (-1180)) NIL) (((-1180) $) NIL)) (-1398 (((-644 (-1134)) $) 10)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1095) (-13 (-1082) (-10 -8 (-15 -1398 ((-644 (-1134)) $)) (-15 -2680 ((-1134) $))))) (T -1095))
+((-1398 (*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1095)))) (-2680 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1095)))))
+(-13 (-1082) (-10 -8 (-15 -1398 ((-644 (-1134)) $)) (-15 -2680 ((-1134) $))))
+((-1814 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-4134 (($ $ $) 10)) (-3304 (($ $ $) NIL) (($ $ |#2|) 15)))
+(((-1096 |#1| |#2|) (-10 -8 (-15 -1814 (|#1| |#2| |#1|)) (-15 -1814 (|#1| |#1| |#2|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -4134 (|#1| |#1| |#1|)) (-15 -3304 (|#1| |#1| |#2|)) (-15 -3304 (|#1| |#1| |#1|))) (-1097 |#2|) (-1099)) (T -1096))
+NIL
+(-10 -8 (-15 -1814 (|#1| |#2| |#1|)) (-15 -1814 (|#1| |#1| |#2|)) (-15 -1814 (|#1| |#1| |#1|)) (-15 -4134 (|#1| |#1| |#1|)) (-15 -3304 (|#1| |#1| |#2|)) (-15 -3304 (|#1| |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-1814 (($ $ $) 19) (($ $ |#1|) 18) (($ |#1| $) 17)) (-4134 (($ $ $) 21)) (-2523 (((-112) $ $) 20)) (-1574 (((-112) $ (-771)) 36)) (-3712 (($) 26) (($ (-644 |#1|)) 25)) (-1386 (($ (-1 (-112) |#1|) $) 57 (|has| $ (-6 -4414)))) (-3877 (($) 37 T CONST)) (-4133 (($ $) 60 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#1| $) 59 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 58 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 55 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 54 (|has| $ (-6 -4414)))) (-3799 (((-644 |#1|) $) 44 (|has| $ (-6 -4414)))) (-1866 (((-112) $ $) 29)) (-3501 (((-112) $ (-771)) 35)) (-3276 (((-644 |#1|) $) 45 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 47 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 40 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 39)) (-3582 (((-112) $ (-771)) 34)) (-2402 (((-1157) $) 10)) (-3147 (($ $ $) 24)) (-4056 (((-1119) $) 11)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 53)) (-3044 (((-112) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#1|) (-644 |#1|)) 51 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 50 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 49 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 (-295 |#1|))) 48 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 30)) (-3461 (((-112) $) 33)) (-1793 (($) 32)) (-3304 (($ $ $) 23) (($ $ |#1|) 22)) (-4067 (((-771) |#1| $) 46 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) |#1|) $) 43 (|has| $ (-6 -4414)))) (-3940 (($ $) 31)) (-3204 (((-538) $) 61 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 52)) (-3780 (((-862) $) 12)) (-2535 (($) 28) (($ (-644 |#1|)) 27)) (-3801 (((-112) $ $) 9)) (-1583 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 6)) (-3020 (((-771) $) 38 (|has| $ (-6 -4414)))))
(((-1097 |#1|) (-140) (-1099)) (T -1097))
-((-3641 (*1 *2 *1 *1) (-12 (-4 *1 (-1097 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-2465 (*1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-2465 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-1097 *3)))) (-1819 (*1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-1819 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-1097 *3)))) (-2390 (*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-3209 (*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-3209 (*1 *1 *1 *2) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-1757 (*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-2768 (*1 *2 *1 *1) (-12 (-4 *1 (-1097 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-1781 (*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-1781 (*1 *1 *1 *2) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-1781 (*1 *1 *2 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
-(-13 (-1099) (-151 |t#1|) (-10 -8 (-6 -4407) (-15 -3641 ((-112) $ $)) (-15 -2465 ($)) (-15 -2465 ($ (-644 |t#1|))) (-15 -1819 ($)) (-15 -1819 ($ (-644 |t#1|))) (-15 -2390 ($ $ $)) (-15 -3209 ($ $ $)) (-15 -3209 ($ $ |t#1|)) (-15 -1757 ($ $ $)) (-15 -2768 ((-112) $ $)) (-15 -1781 ($ $ $)) (-15 -1781 ($ $ |t#1|)) (-15 -1781 ($ |t#1| $))))
+((-1866 (*1 *2 *1 *1) (-12 (-4 *1 (-1097 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-2535 (*1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-2535 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-1097 *3)))) (-3712 (*1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-3712 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-1097 *3)))) (-3147 (*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-3304 (*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-3304 (*1 *1 *1 *2) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-4134 (*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-2523 (*1 *2 *1 *1) (-12 (-4 *1 (-1097 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))) (-1814 (*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-1814 (*1 *1 *1 *2) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))) (-1814 (*1 *1 *2 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
+(-13 (-1099) (-151 |t#1|) (-10 -8 (-6 -4404) (-15 -1866 ((-112) $ $)) (-15 -2535 ($)) (-15 -2535 ($ (-644 |t#1|))) (-15 -3712 ($)) (-15 -3712 ($ (-644 |t#1|))) (-15 -3147 ($ $ $)) (-15 -3304 ($ $ $)) (-15 -3304 ($ $ |t#1|)) (-15 -4134 ($ $ $)) (-15 -2523 ((-112) $ $)) (-15 -1814 ($ $ $)) (-15 -1814 ($ $ |t#1|)) (-15 -1814 ($ |t#1| $))))
(((-34) . T) ((-102) . T) ((-613 (-862)) . T) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) . T) ((-1214) . T))
-((-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 8)) (-3122 (((-112) $ $) 12)))
-(((-1098 |#1|) (-10 -8 (-15 -3122 ((-112) |#1| |#1|)) (-15 -2878 ((-1157) |#1|)) (-15 -4033 ((-1119) |#1|))) (-1099)) (T -1098))
+((-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 8)) (-3801 (((-112) $ $) 12)))
+(((-1098 |#1|) (-10 -8 (-15 -3801 ((-112) |#1| |#1|)) (-15 -2402 ((-1157) |#1|)) (-15 -4056 ((-1119) |#1|))) (-1099)) (T -1098))
NIL
-(-10 -8 (-15 -3122 ((-112) |#1| |#1|)) (-15 -2878 ((-1157) |#1|)) (-15 -4033 ((-1119) |#1|)))
-((-2985 (((-112) $ $) 7)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+(-10 -8 (-15 -3801 ((-112) |#1| |#1|)) (-15 -2402 ((-1157) |#1|)) (-15 -4056 ((-1119) |#1|)))
+((-3009 (((-112) $ $) 7)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-1099) (-140)) (T -1099))
-((-4033 (*1 *2 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-1119)))) (-2878 (*1 *2 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-1157)))) (-3122 (*1 *2 *1 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-112)))))
-(-13 (-102) (-613 (-862)) (-10 -8 (-15 -4033 ((-1119) $)) (-15 -2878 ((-1157) $)) (-15 -3122 ((-112) $ $))))
+((-4056 (*1 *2 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-1119)))) (-2402 (*1 *2 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-1157)))) (-3801 (*1 *2 *1 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-112)))))
+(-13 (-102) (-613 (-862)) (-10 -8 (-15 -4056 ((-1119) $)) (-15 -2402 ((-1157) $)) (-15 -3801 ((-112) $ $))))
(((-102) . T) ((-613 (-862)) . T))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) 36)) (-3776 (($ (-644 (-921))) 73)) (-4193 (((-3 $ "failed") $ (-921) (-921)) 84)) (-3335 (($) 40)) (-1927 (((-112) (-921) $) 44)) (-3712 (((-921) $) 66)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) 39)) (-3713 (((-3 $ "failed") $ (-921)) 80)) (-4033 (((-1119) $) NIL)) (-4152 (((-1264 $)) 49)) (-3210 (((-644 (-921)) $) 27)) (-2916 (((-771) $ (-921) (-921)) 81)) (-2512 (((-862) $) 32)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 24)))
-(((-1100 |#1| |#2|) (-13 (-370) (-10 -8 (-15 -3713 ((-3 $ "failed") $ (-921))) (-15 -4193 ((-3 $ "failed") $ (-921) (-921))) (-15 -3210 ((-644 (-921)) $)) (-15 -3776 ($ (-644 (-921)))) (-15 -4152 ((-1264 $))) (-15 -1927 ((-112) (-921) $)) (-15 -2916 ((-771) $ (-921) (-921))))) (-921) (-921)) (T -1100))
-((-3713 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-921)) (-5 *1 (-1100 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-4193 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-921)) (-5 *1 (-1100 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-3210 (*1 *2 *1) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1100 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))) (-3776 (*1 *1 *2) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1100 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))) (-4152 (*1 *2) (-12 (-5 *2 (-1264 (-1100 *3 *4))) (-5 *1 (-1100 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))) (-1927 (*1 *2 *3 *1) (-12 (-5 *3 (-921)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-2916 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-771)) (-5 *1 (-1100 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-13 (-370) (-10 -8 (-15 -3713 ((-3 $ "failed") $ (-921))) (-15 -4193 ((-3 $ "failed") $ (-921) (-921))) (-15 -3210 ((-644 (-921)) $)) (-15 -3776 ($ (-644 (-921)))) (-15 -4152 ((-1264 $))) (-15 -1927 ((-112) (-921) $)) (-15 -2916 ((-771) $ (-921) (-921)))))
-((-2985 (((-112) $ $) NIL)) (-1795 (($) NIL (|has| |#1| (-370)))) (-1781 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 83)) (-1757 (($ $ $) 81)) (-2768 (((-112) $ $) 82)) (-3081 (((-112) $ (-771)) NIL)) (-4025 (((-771)) NIL (|has| |#1| (-370)))) (-1819 (($ (-644 |#1|)) NIL) (($) 13)) (-3586 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3066 (($ |#1| $) 74 (|has| $ (-6 -4417))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4417)))) (-3335 (($) NIL (|has| |#1| (-370)))) (-3372 (((-644 |#1|) $) 19 (|has| $ (-6 -4417)))) (-3641 (((-112) $ $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-1439 ((|#1| $) 55 (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 73 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3059 ((|#1| $) 53 (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 34)) (-3712 (((-921) $) NIL (|has| |#1| (-370)))) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-2390 (($ $ $) 79)) (-3119 ((|#1| $) 25)) (-4265 (($ |#1| $) 69)) (-2168 (($ (-921)) NIL (|has| |#1| (-370)))) (-4033 (((-1119) $) NIL)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-2658 ((|#1| $) 27)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 21)) (-2954 (($) 11)) (-3209 (($ $ |#1|) NIL) (($ $ $) 80)) (-3879 (($) NIL) (($ (-644 |#1|)) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) 16)) (-3134 (((-538) $) 50 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 62)) (-2718 (($ $) NIL (|has| |#1| (-370)))) (-2512 (((-862) $) NIL)) (-2870 (((-771) $) NIL)) (-2465 (($ (-644 |#1|)) NIL) (($) 12)) (-3122 (((-112) $ $) NIL)) (-3309 (($ (-644 |#1|)) NIL)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 52)) (-2997 (((-771) $) 10 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) 36)) (-3824 (($ (-644 (-921))) 73)) (-3450 (((-3 $ "failed") $ (-921) (-921)) 84)) (-1618 (($) 40)) (-2183 (((-112) (-921) $) 44)) (-1299 (((-921) $) 66)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) 39)) (-1311 (((-3 $ "failed") $ (-921)) 80)) (-4056 (((-1119) $) NIL)) (-4256 (((-1264 $)) 49)) (-3314 (((-644 (-921)) $) 27)) (-1545 (((-771) $ (-921) (-921)) 81)) (-3780 (((-862) $) 32)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 24)))
+(((-1100 |#1| |#2|) (-13 (-370) (-10 -8 (-15 -1311 ((-3 $ "failed") $ (-921))) (-15 -3450 ((-3 $ "failed") $ (-921) (-921))) (-15 -3314 ((-644 (-921)) $)) (-15 -3824 ($ (-644 (-921)))) (-15 -4256 ((-1264 $))) (-15 -2183 ((-112) (-921) $)) (-15 -1545 ((-771) $ (-921) (-921))))) (-921) (-921)) (T -1100))
+((-1311 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-921)) (-5 *1 (-1100 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-3450 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-921)) (-5 *1 (-1100 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-3314 (*1 *2 *1) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1100 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))) (-3824 (*1 *1 *2) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1100 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))) (-4256 (*1 *2) (-12 (-5 *2 (-1264 (-1100 *3 *4))) (-5 *1 (-1100 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921)))) (-2183 (*1 *2 *3 *1) (-12 (-5 *3 (-921)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-1545 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-771)) (-5 *1 (-1100 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-13 (-370) (-10 -8 (-15 -1311 ((-3 $ "failed") $ (-921))) (-15 -3450 ((-3 $ "failed") $ (-921) (-921))) (-15 -3314 ((-644 (-921)) $)) (-15 -3824 ($ (-644 (-921)))) (-15 -4256 ((-1264 $))) (-15 -2183 ((-112) (-921) $)) (-15 -1545 ((-771) $ (-921) (-921)))))
+((-3009 (((-112) $ $) NIL)) (-3297 (($) NIL (|has| |#1| (-370)))) (-1814 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 83)) (-4134 (($ $ $) 81)) (-2523 (((-112) $ $) 82)) (-1574 (((-112) $ (-771)) NIL)) (-4070 (((-771)) NIL (|has| |#1| (-370)))) (-3712 (($ (-644 |#1|)) NIL) (($) 13)) (-2556 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-1450 (($ |#1| $) 74 (|has| $ (-6 -4414))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4414)))) (-1618 (($) NIL (|has| |#1| (-370)))) (-3799 (((-644 |#1|) $) 19 (|has| $ (-6 -4414)))) (-1866 (((-112) $ $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-1945 ((|#1| $) 55 (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 73 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2709 ((|#1| $) 53 (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 34)) (-1299 (((-921) $) NIL (|has| |#1| (-370)))) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-3147 (($ $ $) 79)) (-3765 ((|#1| $) 25)) (-2903 (($ |#1| $) 69)) (-2208 (($ (-921)) NIL (|has| |#1| (-370)))) (-4056 (((-1119) $) NIL)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-3852 ((|#1| $) 27)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 21)) (-1793 (($) 11)) (-3304 (($ $ |#1|) NIL) (($ $ $) 80)) (-3551 (($) NIL) (($ (-644 |#1|)) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) 16)) (-3204 (((-538) $) 50 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 62)) (-3247 (($ $) NIL (|has| |#1| (-370)))) (-3780 (((-862) $) NIL)) (-2313 (((-771) $) NIL)) (-2535 (($ (-644 |#1|)) NIL) (($) 12)) (-3801 (((-112) $ $) NIL)) (-2926 (($ (-644 |#1|)) NIL)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 52)) (-3020 (((-771) $) 10 (|has| $ (-6 -4414)))))
(((-1101 |#1|) (-427 |#1|) (-1099)) (T -1101))
NIL
(-427 |#1|)
-((-2985 (((-112) $ $) 7)) (-1739 (((-112) $) 33)) (-1361 ((|#2| $) 28)) (-3964 (((-112) $) 34)) (-4318 ((|#1| $) 29)) (-2504 (((-112) $) 36)) (-3625 (((-112) $) 38)) (-2879 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-1776 (((-112) $) 32)) (-1383 ((|#3| $) 27)) (-4033 (((-1119) $) 11)) (-1986 (((-112) $) 31)) (-2965 ((|#4| $) 26)) (-1316 ((|#5| $) 25)) (-3525 (((-112) $ $) 39)) (-4386 (($ $ (-566)) 21) (($ $ (-644 (-566))) 20)) (-2477 (((-644 $) $) 30)) (-3134 (($ |#1|) 45) (($ |#2|) 44) (($ |#3|) 43) (($ |#4|) 42) (($ |#5|) 41) (($ (-644 $)) 40)) (-2512 (((-862) $) 12)) (-3954 (($ $) 23)) (-3940 (($ $) 24)) (-3122 (((-112) $ $) 9)) (-1612 (((-112) $) 37)) (-2940 (((-112) $ $) 6)) (-2997 (((-566) $) 22)))
+((-3009 (((-112) $ $) 7)) (-3941 (((-112) $) 33)) (-1410 ((|#2| $) 28)) (-3068 (((-112) $) 34)) (-4336 ((|#1| $) 29)) (-2959 (((-112) $) 36)) (-2892 (((-112) $) 38)) (-2413 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-3103 (((-112) $) 32)) (-1435 ((|#3| $) 27)) (-4056 (((-1119) $) 11)) (-1528 (((-112) $) 31)) (-2987 ((|#4| $) 26)) (-1355 ((|#5| $) 25)) (-4257 (((-112) $ $) 39)) (-4393 (($ $ (-566)) 21) (($ $ (-644 (-566))) 20)) (-2545 (((-644 $) $) 30)) (-3204 (($ |#1|) 45) (($ |#2|) 44) (($ |#3|) 43) (($ |#4|) 42) (($ |#5|) 41) (($ (-644 $)) 40)) (-3780 (((-862) $) 12)) (-3999 (($ $) 23)) (-3988 (($ $) 24)) (-3801 (((-112) $ $) 9)) (-2051 (((-112) $) 37)) (-2950 (((-112) $ $) 6)) (-3020 (((-566) $) 22)))
(((-1102 |#1| |#2| |#3| |#4| |#5|) (-140) (-1099) (-1099) (-1099) (-1099) (-1099)) (T -1102))
-((-3525 (*1 *2 *1 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-3625 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-1612 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-2504 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-2879 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-3964 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-1739 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-1776 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-1986 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-2477 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-644 *1)) (-4 *1 (-1102 *3 *4 *5 *6 *7)))) (-4318 (*1 *2 *1) (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))) (-1361 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *2 *4 *5 *6)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))) (-1383 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *2 *5 *6)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))) (-2965 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *2 *6)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))) (-1316 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *2)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))) (-3940 (*1 *1 *1) (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *2 (-1099)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)))) (-3954 (*1 *1 *1) (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *2 (-1099)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)))) (-2997 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-566)))) (-4386 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)))) (-4386 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)))))
-(-13 (-1099) (-618 |t#1|) (-618 |t#2|) (-618 |t#3|) (-618 |t#4|) (-618 |t#4|) (-618 |t#5|) (-618 (-644 $)) (-10 -8 (-15 -3525 ((-112) $ $)) (-15 -3625 ((-112) $)) (-15 -1612 ((-112) $)) (-15 -2504 ((-112) $)) (-15 -2879 ((-112) $)) (-15 -3964 ((-112) $)) (-15 -1739 ((-112) $)) (-15 -1776 ((-112) $)) (-15 -1986 ((-112) $)) (-15 -2477 ((-644 $) $)) (-15 -4318 (|t#1| $)) (-15 -1361 (|t#2| $)) (-15 -1383 (|t#3| $)) (-15 -2965 (|t#4| $)) (-15 -1316 (|t#5| $)) (-15 -3940 ($ $)) (-15 -3954 ($ $)) (-15 -2997 ((-566) $)) (-15 -4386 ($ $ (-566))) (-15 -4386 ($ $ (-644 (-566))))))
+((-4257 (*1 *2 *1 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-2892 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-2051 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-2959 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-2413 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-3068 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-3941 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-3103 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-1528 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))) (-2545 (*1 *2 *1) (-12 (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-644 *1)) (-4 *1 (-1102 *3 *4 *5 *6 *7)))) (-4336 (*1 *2 *1) (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))) (-1410 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *2 *4 *5 *6)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))) (-1435 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *2 *5 *6)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))) (-2987 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *2 *6)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))) (-1355 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *2)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))) (-3988 (*1 *1 *1) (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *2 (-1099)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)))) (-3999 (*1 *1 *1) (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *2 (-1099)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)))) (-3020 (*1 *2 *1) (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-566)))) (-4393 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)))) (-4393 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)))))
+(-13 (-1099) (-618 |t#1|) (-618 |t#2|) (-618 |t#3|) (-618 |t#4|) (-618 |t#4|) (-618 |t#5|) (-618 (-644 $)) (-10 -8 (-15 -4257 ((-112) $ $)) (-15 -2892 ((-112) $)) (-15 -2051 ((-112) $)) (-15 -2959 ((-112) $)) (-15 -2413 ((-112) $)) (-15 -3068 ((-112) $)) (-15 -3941 ((-112) $)) (-15 -3103 ((-112) $)) (-15 -1528 ((-112) $)) (-15 -2545 ((-644 $) $)) (-15 -4336 (|t#1| $)) (-15 -1410 (|t#2| $)) (-15 -1435 (|t#3| $)) (-15 -2987 (|t#4| $)) (-15 -1355 (|t#5| $)) (-15 -3988 ($ $)) (-15 -3999 ($ $)) (-15 -3020 ((-566) $)) (-15 -4393 ($ $ (-566))) (-15 -4393 ($ $ (-644 (-566))))))
(((-102) . T) ((-613 (-862)) . T) ((-618 (-644 $)) . T) ((-618 |#1|) . T) ((-618 |#2|) . T) ((-618 |#3|) . T) ((-618 |#4|) . T) ((-618 |#5|) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-1739 (((-112) $) NIL)) (-1361 (((-1175) $) NIL)) (-3964 (((-112) $) NIL)) (-4318 (((-1157) $) NIL)) (-2504 (((-112) $) NIL)) (-3625 (((-112) $) NIL)) (-2879 (((-112) $) NIL)) (-2878 (((-1157) $) NIL)) (-1776 (((-112) $) NIL)) (-1383 (((-566) $) NIL)) (-4033 (((-1119) $) NIL)) (-1986 (((-112) $) NIL)) (-2965 (((-225) $) NIL)) (-1316 (((-862) $) NIL)) (-3525 (((-112) $ $) NIL)) (-4386 (($ $ (-566)) NIL) (($ $ (-644 (-566))) NIL)) (-2477 (((-644 $) $) NIL)) (-3134 (($ (-1157)) NIL) (($ (-1175)) NIL) (($ (-566)) NIL) (($ (-225)) NIL) (($ (-862)) NIL) (($ (-644 $)) NIL)) (-2512 (((-862) $) NIL)) (-3954 (($ $) NIL)) (-3940 (($ $) NIL)) (-3122 (((-112) $ $) NIL)) (-1612 (((-112) $) NIL)) (-2940 (((-112) $ $) NIL)) (-2997 (((-566) $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3941 (((-112) $) NIL)) (-1410 (((-1175) $) NIL)) (-3068 (((-112) $) NIL)) (-4336 (((-1157) $) NIL)) (-2959 (((-112) $) NIL)) (-2892 (((-112) $) NIL)) (-2413 (((-112) $) NIL)) (-2402 (((-1157) $) NIL)) (-3103 (((-112) $) NIL)) (-1435 (((-566) $) NIL)) (-4056 (((-1119) $) NIL)) (-1528 (((-112) $) NIL)) (-2987 (((-225) $) NIL)) (-1355 (((-862) $) NIL)) (-4257 (((-112) $ $) NIL)) (-4393 (($ $ (-566)) NIL) (($ $ (-644 (-566))) NIL)) (-2545 (((-644 $) $) NIL)) (-3204 (($ (-1157)) NIL) (($ (-1175)) NIL) (($ (-566)) NIL) (($ (-225)) NIL) (($ (-862)) NIL) (($ (-644 $)) NIL)) (-3780 (((-862) $) NIL)) (-3999 (($ $) NIL)) (-3988 (($ $) NIL)) (-3801 (((-112) $ $) NIL)) (-2051 (((-112) $) NIL)) (-2950 (((-112) $ $) NIL)) (-3020 (((-566) $) NIL)))
(((-1103) (-1102 (-1157) (-1175) (-566) (-225) (-862))) (T -1103))
NIL
(-1102 (-1157) (-1175) (-566) (-225) (-862))
-((-2985 (((-112) $ $) NIL)) (-1739 (((-112) $) 45)) (-1361 ((|#2| $) 48)) (-3964 (((-112) $) 20)) (-4318 ((|#1| $) 21)) (-2504 (((-112) $) 42)) (-3625 (((-112) $) 14)) (-2879 (((-112) $) 44)) (-2878 (((-1157) $) NIL)) (-1776 (((-112) $) 46)) (-1383 ((|#3| $) 50)) (-4033 (((-1119) $) NIL)) (-1986 (((-112) $) 47)) (-2965 ((|#4| $) 49)) (-1316 ((|#5| $) 51)) (-3525 (((-112) $ $) 41)) (-4386 (($ $ (-566)) 62) (($ $ (-644 (-566))) 64)) (-2477 (((-644 $) $) 27)) (-3134 (($ |#1|) 53) (($ |#2|) 54) (($ |#3|) 55) (($ |#4|) 56) (($ |#5|) 57) (($ (-644 $)) 52)) (-2512 (((-862) $) 28)) (-3954 (($ $) 26)) (-3940 (($ $) 58)) (-3122 (((-112) $ $) NIL)) (-1612 (((-112) $) 23)) (-2940 (((-112) $ $) 40)) (-2997 (((-566) $) 60)))
+((-3009 (((-112) $ $) NIL)) (-3941 (((-112) $) 45)) (-1410 ((|#2| $) 48)) (-3068 (((-112) $) 20)) (-4336 ((|#1| $) 21)) (-2959 (((-112) $) 42)) (-2892 (((-112) $) 14)) (-2413 (((-112) $) 44)) (-2402 (((-1157) $) NIL)) (-3103 (((-112) $) 46)) (-1435 ((|#3| $) 50)) (-4056 (((-1119) $) NIL)) (-1528 (((-112) $) 47)) (-2987 ((|#4| $) 49)) (-1355 ((|#5| $) 51)) (-4257 (((-112) $ $) 41)) (-4393 (($ $ (-566)) 62) (($ $ (-644 (-566))) 64)) (-2545 (((-644 $) $) 27)) (-3204 (($ |#1|) 53) (($ |#2|) 54) (($ |#3|) 55) (($ |#4|) 56) (($ |#5|) 57) (($ (-644 $)) 52)) (-3780 (((-862) $) 28)) (-3999 (($ $) 26)) (-3988 (($ $) 58)) (-3801 (((-112) $ $) NIL)) (-2051 (((-112) $) 23)) (-2950 (((-112) $ $) 40)) (-3020 (((-566) $) 60)))
(((-1104 |#1| |#2| |#3| |#4| |#5|) (-1102 |#1| |#2| |#3| |#4| |#5|) (-1099) (-1099) (-1099) (-1099) (-1099)) (T -1104))
NIL
(-1102 |#1| |#2| |#3| |#4| |#5|)
-((-2733 (((-1269) $) 23)) (-3591 (($ (-1175) (-436) |#2|) 11)) (-2512 (((-862) $) 16)))
-(((-1105 |#1| |#2|) (-13 (-397) (-10 -8 (-15 -3591 ($ (-1175) (-436) |#2|)))) (-1099) (-432 |#1|)) (T -1105))
-((-3591 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-436)) (-4 *5 (-1099)) (-5 *1 (-1105 *5 *4)) (-4 *4 (-432 *5)))))
-(-13 (-397) (-10 -8 (-15 -3591 ($ (-1175) (-436) |#2|))))
-((-3163 (((-112) |#5| |#5|) 45)) (-2483 (((-112) |#5| |#5|) 60)) (-2621 (((-112) |#5| (-644 |#5|)) 83) (((-112) |#5| |#5|) 69)) (-1686 (((-112) (-644 |#4|) (-644 |#4|)) 66)) (-4253 (((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) 71)) (-4374 (((-1269)) 33)) (-2332 (((-1269) (-1157) (-1157) (-1157)) 29)) (-2488 (((-644 |#5|) (-644 |#5|)) 102)) (-3786 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)))) 94)) (-3666 (((-644 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112)) 124)) (-3637 (((-112) |#5| |#5|) 54)) (-2848 (((-3 (-112) "failed") |#5| |#5|) 79)) (-4396 (((-112) (-644 |#4|) (-644 |#4|)) 65)) (-2675 (((-112) (-644 |#4|) (-644 |#4|)) 67)) (-2343 (((-112) (-644 |#4|) (-644 |#4|)) 68)) (-4320 (((-3 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112)) 119)) (-3876 (((-644 |#5|) (-644 |#5|)) 50)))
-(((-1106 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2332 ((-1269) (-1157) (-1157) (-1157))) (-15 -4374 ((-1269))) (-15 -3163 ((-112) |#5| |#5|)) (-15 -3876 ((-644 |#5|) (-644 |#5|))) (-15 -3637 ((-112) |#5| |#5|)) (-15 -2483 ((-112) |#5| |#5|)) (-15 -1686 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -4396 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2675 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2343 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2848 ((-3 (-112) "failed") |#5| |#5|)) (-15 -2621 ((-112) |#5| |#5|)) (-15 -2621 ((-112) |#5| (-644 |#5|))) (-15 -2488 ((-644 |#5|) (-644 |#5|))) (-15 -4253 ((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)))) (-15 -3786 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) (-15 -3666 ((-644 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -4320 ((-3 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -1106))
-((-4320 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| -3525 (-644 *9)) (|:| -2248 *4) (|:| |ineq| (-644 *9)))) (-5 *1 (-1106 *6 *7 *8 *9 *4)) (-5 *3 (-644 *9)) (-4 *4 (-1070 *6 *7 *8 *9)))) (-3666 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-644 *10)) (-5 *5 (-112)) (-4 *10 (-1070 *6 *7 *8 *9)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8)) (-5 *2 (-644 (-2 (|:| -3525 (-644 *9)) (|:| -2248 *10) (|:| |ineq| (-644 *9))))) (-5 *1 (-1106 *6 *7 *8 *9 *10)) (-5 *3 (-644 *9)))) (-3786 (*1 *2 *2) (-12 (-5 *2 (-644 (-2 (|:| |val| (-644 *6)) (|:| -2248 *7)))) (-4 *6 (-1064 *3 *4 *5)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1106 *3 *4 *5 *6 *7)))) (-4253 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2248 *8))) (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *8)))) (-2488 (*1 *2 *2) (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-1106 *3 *4 *5 *6 *7)))) (-2621 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1106 *5 *6 *7 *8 *3)))) (-2621 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-2848 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-2343 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-2675 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-4396 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-1686 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-2483 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-3637 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-3876 (*1 *2 *2) (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-1106 *3 *4 *5 *6 *7)))) (-3163 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-4374 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-1106 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-2332 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2332 ((-1269) (-1157) (-1157) (-1157))) (-15 -4374 ((-1269))) (-15 -3163 ((-112) |#5| |#5|)) (-15 -3876 ((-644 |#5|) (-644 |#5|))) (-15 -3637 ((-112) |#5| |#5|)) (-15 -2483 ((-112) |#5| |#5|)) (-15 -1686 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -4396 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2675 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2343 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2848 ((-3 (-112) "failed") |#5| |#5|)) (-15 -2621 ((-112) |#5| |#5|)) (-15 -2621 ((-112) |#5| (-644 |#5|))) (-15 -2488 ((-644 |#5|) (-644 |#5|))) (-15 -4253 ((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)))) (-15 -3786 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) (-15 -3666 ((-644 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -4320 ((-3 (-2 (|:| -3525 (-644 |#4|)) (|:| -2248 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-3937 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#5|) 109)) (-2297 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#4| |#4| |#5|) 81)) (-1486 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|) 103)) (-1408 (((-644 |#5|) |#4| |#5|) 125)) (-2363 (((-644 |#5|) |#4| |#5|) 132)) (-3978 (((-644 |#5|) |#4| |#5|) 133)) (-3156 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|) 110)) (-4015 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|) 131)) (-3287 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|) 48) (((-112) |#4| |#5|) 56)) (-3329 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#3| (-112)) 93) (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5| (-112) (-112)) 53)) (-2203 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|) 88)) (-1627 (((-1269)) 37)) (-2128 (((-1269)) 26)) (-1834 (((-1269) (-1157) (-1157) (-1157)) 33)) (-2949 (((-1269) (-1157) (-1157) (-1157)) 22)))
-(((-1107 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2949 ((-1269) (-1157) (-1157) (-1157))) (-15 -2128 ((-1269))) (-15 -1834 ((-1269) (-1157) (-1157) (-1157))) (-15 -1627 ((-1269))) (-15 -2297 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -3329 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3329 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#3| (-112))) (-15 -2203 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -1486 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -3287 ((-112) |#4| |#5|)) (-15 -3156 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|)) (-15 -1408 ((-644 |#5|) |#4| |#5|)) (-15 -4015 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|)) (-15 -2363 ((-644 |#5|) |#4| |#5|)) (-15 -3287 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|)) (-15 -3978 ((-644 |#5|) |#4| |#5|)) (-15 -3937 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#5|))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -1107))
-((-3937 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3978 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4)) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3287 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-2363 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4)) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-4015 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1408 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4)) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3156 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3287 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1486 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-2203 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3329 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2248 *9)))) (-5 *5 (-112)) (-4 *8 (-1064 *6 *7 *4)) (-4 *9 (-1070 *6 *7 *4 *8)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *4 (-850)) (-5 *2 (-644 (-2 (|:| |val| *8) (|:| -2248 *9)))) (-5 *1 (-1107 *6 *7 *4 *8 *9)))) (-3329 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4)))) (-5 *1 (-1107 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3)))) (-2297 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1627 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-1107 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-1834 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-1107 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-2128 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-1107 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-2949 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-1107 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
-(-10 -7 (-15 -2949 ((-1269) (-1157) (-1157) (-1157))) (-15 -2128 ((-1269))) (-15 -1834 ((-1269) (-1157) (-1157) (-1157))) (-15 -1627 ((-1269))) (-15 -2297 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -3329 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3329 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) |#3| (-112))) (-15 -2203 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -1486 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#4| |#5|)) (-15 -3287 ((-112) |#4| |#5|)) (-15 -3156 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|)) (-15 -1408 ((-644 |#5|) |#4| |#5|)) (-15 -4015 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|)) (-15 -2363 ((-644 |#5|) |#4| |#5|)) (-15 -3287 ((-644 (-2 (|:| |val| (-112)) (|:| -2248 |#5|))) |#4| |#5|)) (-15 -3978 ((-644 |#5|) |#4| |#5|)) (-15 -3937 ((-644 (-2 (|:| |val| |#4|) (|:| -2248 |#5|))) |#4| |#5|)))
-((-2985 (((-112) $ $) 7)) (-2072 (((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 |#4|)))) (-644 |#4|)) 86)) (-1725 (((-644 $) (-644 |#4|)) 87) (((-644 $) (-644 |#4|) (-112)) 112)) (-2540 (((-644 |#3|) $) 34)) (-2598 (((-112) $) 27)) (-2740 (((-112) $) 18 (|has| |#1| (-558)))) (-4390 (((-112) |#4| $) 102) (((-112) $) 98)) (-3761 ((|#4| |#4| $) 93)) (-2857 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| $) 127)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) 28)) (-3081 (((-112) $ (-771)) 45)) (-4186 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4417))) (((-3 |#4| "failed") $ |#3|) 80)) (-2342 (($) 46 T CONST)) (-4179 (((-112) $) 23 (|has| |#1| (-558)))) (-4184 (((-112) $ $) 25 (|has| |#1| (-558)))) (-1576 (((-112) $ $) 24 (|has| |#1| (-558)))) (-2398 (((-112) $) 26 (|has| |#1| (-558)))) (-3772 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2380 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) 37)) (-1756 (($ (-644 |#4|)) 36)) (-4076 (((-3 $ "failed") $) 83)) (-2668 ((|#4| |#4| $) 90)) (-4093 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-4200 ((|#4| |#4| $) 88)) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4417))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-3810 (((-2 (|:| -1673 (-644 |#4|)) (|:| -3509 (-644 |#4|))) $) 106)) (-3422 (((-112) |#4| $) 137)) (-2192 (((-112) |#4| $) 134)) (-1602 (((-112) |#4| $) 138) (((-112) $) 135)) (-3372 (((-644 |#4|) $) 53 (|has| $ (-6 -4417)))) (-4260 (((-112) |#4| $) 105) (((-112) $) 104)) (-1594 ((|#3| $) 35)) (-2744 (((-112) $ (-771)) 44)) (-2404 (((-644 |#4|) $) 54 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) 48)) (-3097 (((-644 |#3|) $) 33)) (-3492 (((-112) |#3| $) 32)) (-3882 (((-112) $ (-771)) 43)) (-2878 (((-1157) $) 10)) (-2501 (((-3 |#4| (-644 $)) |#4| |#4| $) 129)) (-1624 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| |#4| $) 128)) (-2670 (((-3 |#4| "failed") $) 84)) (-2909 (((-644 $) |#4| $) 130)) (-4343 (((-3 (-112) (-644 $)) |#4| $) 133)) (-2620 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2390 (((-644 $) |#4| $) 126) (((-644 $) (-644 |#4|) $) 125) (((-644 $) (-644 |#4|) (-644 $)) 124) (((-644 $) |#4| (-644 $)) 123)) (-1937 (($ |#4| $) 118) (($ (-644 |#4|) $) 117)) (-1798 (((-644 |#4|) $) 108)) (-3377 (((-112) |#4| $) 100) (((-112) $) 96)) (-1687 ((|#4| |#4| $) 91)) (-2343 (((-112) $ $) 111)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-3257 (((-112) |#4| $) 101) (((-112) $) 97)) (-2930 ((|#4| |#4| $) 92)) (-4033 (((-1119) $) 11)) (-4062 (((-3 |#4| "failed") $) 85)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1583 (((-3 $ "failed") $ |#4|) 79)) (-1938 (($ $ |#4|) 78) (((-644 $) |#4| $) 116) (((-644 $) |#4| (-644 $)) 115) (((-644 $) (-644 |#4|) $) 114) (((-644 $) (-644 |#4|) (-644 $)) 113)) (-2822 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) 39)) (-4194 (((-112) $) 42)) (-2954 (($) 41)) (-3992 (((-771) $) 107)) (-4044 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4417)))) (-3895 (($ $) 40)) (-3134 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-2523 (($ (-644 |#4|)) 61)) (-1945 (($ $ |#3|) 29)) (-1398 (($ $ |#3|) 31)) (-2280 (($ $) 89)) (-4287 (($ $ |#3|) 30)) (-2512 (((-862) $) 12) (((-644 |#4|) $) 38)) (-2748 (((-771) $) 77 (|has| |#3| (-370)))) (-3122 (((-112) $ $) 9)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3130 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) 99)) (-1848 (((-644 $) |#4| $) 122) (((-644 $) |#4| (-644 $)) 121) (((-644 $) (-644 |#4|) $) 120) (((-644 $) (-644 |#4|) (-644 $)) 119)) (-3427 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4417)))) (-1427 (((-644 |#3|) $) 82)) (-1737 (((-112) |#4| $) 136)) (-1369 (((-112) |#3| $) 81)) (-2940 (((-112) $ $) 6)) (-2997 (((-771) $) 47 (|has| $ (-6 -4417)))))
+((-2440 (((-1269) $) 23)) (-3274 (($ (-1175) (-436) |#2|) 11)) (-3780 (((-862) $) 16)))
+(((-1105 |#1| |#2|) (-13 (-397) (-10 -8 (-15 -3274 ($ (-1175) (-436) |#2|)))) (-1099) (-432 |#1|)) (T -1105))
+((-3274 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1175)) (-5 *3 (-436)) (-4 *5 (-1099)) (-5 *1 (-1105 *5 *4)) (-4 *4 (-432 *5)))))
+(-13 (-397) (-10 -8 (-15 -3274 ($ (-1175) (-436) |#2|))))
+((-4097 (((-112) |#5| |#5|) 45)) (-2754 (((-112) |#5| |#5|) 60)) (-1640 (((-112) |#5| (-644 |#5|)) 83) (((-112) |#5| |#5|) 69)) (-1556 (((-112) (-644 |#4|) (-644 |#4|)) 66)) (-2794 (((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) 71)) (-1521 (((-1269)) 33)) (-3784 (((-1269) (-1157) (-1157) (-1157)) 29)) (-2792 (((-644 |#5|) (-644 |#5|)) 102)) (-3914 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)))) 94)) (-2090 (((-644 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112)) 124)) (-3027 (((-112) |#5| |#5|) 54)) (-2099 (((-3 (-112) "failed") |#5| |#5|) 79)) (-1774 (((-112) (-644 |#4|) (-644 |#4|)) 65)) (-4032 (((-112) (-644 |#4|) (-644 |#4|)) 67)) (-3886 (((-112) (-644 |#4|) (-644 |#4|)) 68)) (-2233 (((-3 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112)) 119)) (-3532 (((-644 |#5|) (-644 |#5|)) 50)))
+(((-1106 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3784 ((-1269) (-1157) (-1157) (-1157))) (-15 -1521 ((-1269))) (-15 -4097 ((-112) |#5| |#5|)) (-15 -3532 ((-644 |#5|) (-644 |#5|))) (-15 -3027 ((-112) |#5| |#5|)) (-15 -2754 ((-112) |#5| |#5|)) (-15 -1556 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -1774 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -4032 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -3886 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2099 ((-3 (-112) "failed") |#5| |#5|)) (-15 -1640 ((-112) |#5| |#5|)) (-15 -1640 ((-112) |#5| (-644 |#5|))) (-15 -2792 ((-644 |#5|) (-644 |#5|))) (-15 -2794 ((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)))) (-15 -3914 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) (-15 -2090 ((-644 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -2233 ((-3 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112)))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -1106))
+((-2233 (*1 *2 *3 *4 *3 *5 *5 *5 *5 *5) (|partial| -12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| -4257 (-644 *9)) (|:| -2327 *4) (|:| |ineq| (-644 *9)))) (-5 *1 (-1106 *6 *7 *8 *9 *4)) (-5 *3 (-644 *9)) (-4 *4 (-1070 *6 *7 *8 *9)))) (-2090 (*1 *2 *3 *4 *5 *5) (-12 (-5 *4 (-644 *10)) (-5 *5 (-112)) (-4 *10 (-1070 *6 *7 *8 *9)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8)) (-5 *2 (-644 (-2 (|:| -4257 (-644 *9)) (|:| -2327 *10) (|:| |ineq| (-644 *9))))) (-5 *1 (-1106 *6 *7 *8 *9 *10)) (-5 *3 (-644 *9)))) (-3914 (*1 *2 *2) (-12 (-5 *2 (-644 (-2 (|:| |val| (-644 *6)) (|:| -2327 *7)))) (-4 *6 (-1064 *3 *4 *5)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1106 *3 *4 *5 *6 *7)))) (-2794 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2327 *8))) (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *8)))) (-2792 (*1 *2 *2) (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-1106 *3 *4 *5 *6 *7)))) (-1640 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1106 *5 *6 *7 *8 *3)))) (-1640 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-2099 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-3886 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-4032 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-1774 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-1556 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-2754 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-3027 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-3532 (*1 *2 *2) (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-1106 *3 *4 *5 *6 *7)))) (-4097 (*1 *2 *3 *3) (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)) (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))) (-1521 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-1106 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-3784 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+(-10 -7 (-15 -3784 ((-1269) (-1157) (-1157) (-1157))) (-15 -1521 ((-1269))) (-15 -4097 ((-112) |#5| |#5|)) (-15 -3532 ((-644 |#5|) (-644 |#5|))) (-15 -3027 ((-112) |#5| |#5|)) (-15 -2754 ((-112) |#5| |#5|)) (-15 -1556 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -1774 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -4032 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -3886 ((-112) (-644 |#4|) (-644 |#4|))) (-15 -2099 ((-3 (-112) "failed") |#5| |#5|)) (-15 -1640 ((-112) |#5| |#5|)) (-15 -1640 ((-112) |#5| (-644 |#5|))) (-15 -2792 ((-644 |#5|) (-644 |#5|))) (-15 -2794 ((-112) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)))) (-15 -3914 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) (-15 -2090 ((-644 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|)))) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -2233 ((-3 (-2 (|:| -4257 (-644 |#4|)) (|:| -2327 |#5|) (|:| |ineq| (-644 |#4|))) "failed") (-644 |#4|) |#5| (-644 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-2812 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#5|) 109)) (-1548 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#4| |#4| |#5|) 81)) (-3203 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|) 103)) (-3652 (((-644 |#5|) |#4| |#5|) 125)) (-4082 (((-644 |#5|) |#4| |#5|) 132)) (-1975 (((-644 |#5|) |#4| |#5|) 133)) (-4064 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|) 110)) (-2325 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|) 131)) (-2768 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|) 48) (((-112) |#4| |#5|) 56)) (-1898 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#3| (-112)) 93) (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5| (-112) (-112)) 53)) (-1870 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|) 88)) (-2198 (((-1269)) 37)) (-3611 (((-1269)) 26)) (-2462 (((-1269) (-1157) (-1157) (-1157)) 33)) (-1843 (((-1269) (-1157) (-1157) (-1157)) 22)))
+(((-1107 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1843 ((-1269) (-1157) (-1157) (-1157))) (-15 -3611 ((-1269))) (-15 -2462 ((-1269) (-1157) (-1157) (-1157))) (-15 -2198 ((-1269))) (-15 -1548 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -1898 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1898 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#3| (-112))) (-15 -1870 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -3203 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -2768 ((-112) |#4| |#5|)) (-15 -4064 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|)) (-15 -3652 ((-644 |#5|) |#4| |#5|)) (-15 -2325 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|)) (-15 -4082 ((-644 |#5|) |#4| |#5|)) (-15 -2768 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|)) (-15 -1975 ((-644 |#5|) |#4| |#5|)) (-15 -2812 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#5|))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1070 |#1| |#2| |#3| |#4|)) (T -1107))
+((-2812 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1975 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4)) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-2768 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-4082 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4)) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-2325 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3652 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4)) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-4064 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-2768 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112)) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-3203 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1870 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-1898 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2327 *9)))) (-5 *5 (-112)) (-4 *8 (-1064 *6 *7 *4)) (-4 *9 (-1070 *6 *7 *4 *8)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *4 (-850)) (-5 *2 (-644 (-2 (|:| |val| *8) (|:| -2327 *9)))) (-5 *1 (-1107 *6 *7 *4 *8 *9)))) (-1898 (*1 *2 *3 *3 *4 *5 *5) (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4)))) (-5 *1 (-1107 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3)))) (-1548 (*1 *2 *3 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))) (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))) (-2198 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-1107 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-2462 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-1107 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))) (-3611 (*1 *2) (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269)) (-5 *1 (-1107 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))) (-1843 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269)) (-5 *1 (-1107 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+(-10 -7 (-15 -1843 ((-1269) (-1157) (-1157) (-1157))) (-15 -3611 ((-1269))) (-15 -2462 ((-1269) (-1157) (-1157) (-1157))) (-15 -2198 ((-1269))) (-15 -1548 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -1898 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1898 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) |#3| (-112))) (-15 -1870 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -3203 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#4| |#5|)) (-15 -2768 ((-112) |#4| |#5|)) (-15 -4064 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|)) (-15 -3652 ((-644 |#5|) |#4| |#5|)) (-15 -2325 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|)) (-15 -4082 ((-644 |#5|) |#4| |#5|)) (-15 -2768 ((-644 (-2 (|:| |val| (-112)) (|:| -2327 |#5|))) |#4| |#5|)) (-15 -1975 ((-644 |#5|) |#4| |#5|)) (-15 -2812 ((-644 (-2 (|:| |val| |#4|) (|:| -2327 |#5|))) |#4| |#5|)))
+((-3009 (((-112) $ $) 7)) (-3043 (((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 |#4|)))) (-644 |#4|)) 86)) (-3804 (((-644 $) (-644 |#4|)) 87) (((-644 $) (-644 |#4|) (-112)) 112)) (-2608 (((-644 |#3|) $) 34)) (-1390 (((-112) $) 27)) (-3455 (((-112) $) 18 (|has| |#1| (-558)))) (-1702 (((-112) |#4| $) 102) (((-112) $) 98)) (-3713 ((|#4| |#4| $) 93)) (-2179 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| $) 127)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) 28)) (-1574 (((-112) $ (-771)) 45)) (-1386 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4414))) (((-3 |#4| "failed") $ |#3|) 80)) (-3877 (($) 46 T CONST)) (-3310 (((-112) $) 23 (|has| |#1| (-558)))) (-3367 (((-112) $ $) 25 (|has| |#1| (-558)))) (-2895 (((-112) $ $) 24 (|has| |#1| (-558)))) (-3219 (((-112) $) 26 (|has| |#1| (-558)))) (-3790 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-4239 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) 37)) (-1867 (($ (-644 |#4|)) 36)) (-4112 (((-3 $ "failed") $) 83)) (-3963 ((|#4| |#4| $) 90)) (-4133 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-1991 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-3517 ((|#4| |#4| $) 88)) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4414))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-4143 (((-2 (|:| -1713 (-644 |#4|)) (|:| -3537 (-644 |#4|))) $) 106)) (-1535 (((-112) |#4| $) 137)) (-2976 (((-112) |#4| $) 134)) (-1961 (((-112) |#4| $) 138) (((-112) $) 135)) (-3799 (((-644 |#4|) $) 53 (|has| $ (-6 -4414)))) (-2848 (((-112) |#4| $) 105) (((-112) $) 104)) (-1887 ((|#3| $) 35)) (-3501 (((-112) $ (-771)) 44)) (-3276 (((-644 |#4|) $) 54 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) 48)) (-1711 (((-644 |#3|) $) 33)) (-4113 (((-112) |#3| $) 32)) (-3582 (((-112) $ (-771)) 43)) (-2402 (((-1157) $) 10)) (-2924 (((-3 |#4| (-644 $)) |#4| |#4| $) 129)) (-2165 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| |#4| $) 128)) (-2680 (((-3 |#4| "failed") $) 84)) (-1468 (((-644 $) |#4| $) 130)) (-2487 (((-3 (-112) (-644 $)) |#4| $) 133)) (-1627 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-3147 (((-644 $) |#4| $) 126) (((-644 $) (-644 |#4|) $) 125) (((-644 $) (-644 |#4|) (-644 $)) 124) (((-644 $) |#4| (-644 $)) 123)) (-2284 (($ |#4| $) 118) (($ (-644 |#4|) $) 117)) (-3329 (((-644 |#4|) $) 108)) (-2337 (((-112) |#4| $) 100) (((-112) $) 96)) (-1569 ((|#4| |#4| $) 91)) (-3886 (((-112) $ $) 111)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $) 101) (((-112) $) 97)) (-1671 ((|#4| |#4| $) 92)) (-4056 (((-1119) $) 11)) (-4101 (((-3 |#4| "failed") $) 85)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1775 (((-3 $ "failed") $ |#4|) 79)) (-2295 (($ $ |#4|) 78) (((-644 $) |#4| $) 116) (((-644 $) |#4| (-644 $)) 115) (((-644 $) (-644 |#4|) $) 114) (((-644 $) (-644 |#4|) (-644 $)) 113)) (-3044 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) 39)) (-3461 (((-112) $) 42)) (-1793 (($) 41)) (-2108 (((-771) $) 107)) (-4067 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4414)))) (-3940 (($ $) 40)) (-3204 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-3791 (($ (-644 |#4|)) 61)) (-2363 (($ $ |#3|) 29)) (-3513 (($ $ |#3|) 31)) (-1360 (($ $) 89)) (-3130 (($ $ |#3|) 30)) (-3780 (((-862) $) 12) (((-644 |#4|) $) 38)) (-3542 (((-771) $) 77 (|has| |#3| (-370)))) (-3801 (((-112) $ $) 9)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3870 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) 99)) (-2607 (((-644 $) |#4| $) 122) (((-644 $) |#4| (-644 $)) 121) (((-644 $) (-644 |#4|) $) 120) (((-644 $) (-644 |#4|) (-644 $)) 119)) (-1583 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4414)))) (-3830 (((-644 |#3|) $) 82)) (-3917 (((-112) |#4| $) 136)) (-3258 (((-112) |#3| $) 81)) (-2950 (((-112) $ $) 6)) (-3020 (((-771) $) 47 (|has| $ (-6 -4414)))))
(((-1108 |#1| |#2| |#3| |#4|) (-140) (-454) (-793) (-850) (-1064 |t#1| |t#2| |t#3|)) (T -1108))
NIL
(-13 (-1070 |t#1| |t#2| |t#3| |t#4|))
(((-34) . T) ((-102) . T) ((-613 (-644 |#4|)) . T) ((-613 (-862)) . T) ((-151 |#4|) . T) ((-614 (-538)) |has| |#4| (-614 (-538))) ((-310 |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-491 |#4|) . T) ((-516 |#4| |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-976 |#1| |#2| |#3| |#4|) . T) ((-1070 |#1| |#2| |#3| |#4|) . T) ((-1099) . T) ((-1207 |#1| |#2| |#3| |#4|) . T) ((-1214) . T))
-((-3060 (((-644 (-566)) (-566) (-566) (-566)) 39)) (-1788 (((-644 (-566)) (-566) (-566) (-566)) 29)) (-3170 (((-644 (-566)) (-566) (-566) (-566)) 34)) (-1859 (((-566) (-566) (-566)) 23)) (-4028 (((-1264 (-566)) (-644 (-566)) (-1264 (-566)) (-566)) 75) (((-1264 (-566)) (-1264 (-566)) (-1264 (-566)) (-566)) 70)) (-2376 (((-644 (-566)) (-644 (-566)) (-644 (-566)) (-112)) 52)) (-2019 (((-689 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566))) 74)) (-3927 (((-689 (-566)) (-644 (-566)) (-644 (-566))) 58)) (-2826 (((-644 (-689 (-566))) (-644 (-566))) 63)) (-4247 (((-644 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566))) 78)) (-3745 (((-689 (-566)) (-644 (-566)) (-644 (-566)) (-644 (-566))) 88)))
-(((-1109) (-10 -7 (-15 -3745 ((-689 (-566)) (-644 (-566)) (-644 (-566)) (-644 (-566)))) (-15 -4247 ((-644 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566)))) (-15 -2826 ((-644 (-689 (-566))) (-644 (-566)))) (-15 -3927 ((-689 (-566)) (-644 (-566)) (-644 (-566)))) (-15 -2019 ((-689 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566)))) (-15 -2376 ((-644 (-566)) (-644 (-566)) (-644 (-566)) (-112))) (-15 -4028 ((-1264 (-566)) (-1264 (-566)) (-1264 (-566)) (-566))) (-15 -4028 ((-1264 (-566)) (-644 (-566)) (-1264 (-566)) (-566))) (-15 -1859 ((-566) (-566) (-566))) (-15 -3170 ((-644 (-566)) (-566) (-566) (-566))) (-15 -1788 ((-644 (-566)) (-566) (-566) (-566))) (-15 -3060 ((-644 (-566)) (-566) (-566) (-566))))) (T -1109))
-((-3060 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))) (-1788 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))) (-3170 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))) (-1859 (*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1109)))) (-4028 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1264 (-566))) (-5 *3 (-644 (-566))) (-5 *4 (-566)) (-5 *1 (-1109)))) (-4028 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1264 (-566))) (-5 *3 (-566)) (-5 *1 (-1109)))) (-2376 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *3 (-112)) (-5 *1 (-1109)))) (-2019 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-689 (-566))) (-5 *3 (-644 (-566))) (-5 *1 (-1109)))) (-3927 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1109)))) (-2826 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-644 (-689 (-566)))) (-5 *1 (-1109)))) (-4247 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *3 (-689 (-566))) (-5 *1 (-1109)))) (-3745 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1109)))))
-(-10 -7 (-15 -3745 ((-689 (-566)) (-644 (-566)) (-644 (-566)) (-644 (-566)))) (-15 -4247 ((-644 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566)))) (-15 -2826 ((-644 (-689 (-566))) (-644 (-566)))) (-15 -3927 ((-689 (-566)) (-644 (-566)) (-644 (-566)))) (-15 -2019 ((-689 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566)))) (-15 -2376 ((-644 (-566)) (-644 (-566)) (-644 (-566)) (-112))) (-15 -4028 ((-1264 (-566)) (-1264 (-566)) (-1264 (-566)) (-566))) (-15 -4028 ((-1264 (-566)) (-644 (-566)) (-1264 (-566)) (-566))) (-15 -1859 ((-566) (-566) (-566))) (-15 -3170 ((-644 (-566)) (-566) (-566) (-566))) (-15 -1788 ((-644 (-566)) (-566) (-566) (-566))) (-15 -3060 ((-644 (-566)) (-566) (-566) (-566))))
+((-1412 (((-644 (-566)) (-566) (-566) (-566)) 39)) (-3218 (((-644 (-566)) (-566) (-566) (-566)) 29)) (-4171 (((-644 (-566)) (-566) (-566) (-566)) 34)) (-2715 (((-566) (-566) (-566)) 23)) (-2448 (((-1264 (-566)) (-644 (-566)) (-1264 (-566)) (-566)) 75) (((-1264 (-566)) (-1264 (-566)) (-1264 (-566)) (-566)) 70)) (-4204 (((-644 (-566)) (-644 (-566)) (-644 (-566)) (-112)) 52)) (-3729 (((-689 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566))) 74)) (-2741 (((-689 (-566)) (-644 (-566)) (-644 (-566))) 58)) (-3092 (((-644 (-689 (-566))) (-644 (-566))) 63)) (-2746 (((-644 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566))) 78)) (-1675 (((-689 (-566)) (-644 (-566)) (-644 (-566)) (-644 (-566))) 88)))
+(((-1109) (-10 -7 (-15 -1675 ((-689 (-566)) (-644 (-566)) (-644 (-566)) (-644 (-566)))) (-15 -2746 ((-644 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566)))) (-15 -3092 ((-644 (-689 (-566))) (-644 (-566)))) (-15 -2741 ((-689 (-566)) (-644 (-566)) (-644 (-566)))) (-15 -3729 ((-689 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566)))) (-15 -4204 ((-644 (-566)) (-644 (-566)) (-644 (-566)) (-112))) (-15 -2448 ((-1264 (-566)) (-1264 (-566)) (-1264 (-566)) (-566))) (-15 -2448 ((-1264 (-566)) (-644 (-566)) (-1264 (-566)) (-566))) (-15 -2715 ((-566) (-566) (-566))) (-15 -4171 ((-644 (-566)) (-566) (-566) (-566))) (-15 -3218 ((-644 (-566)) (-566) (-566) (-566))) (-15 -1412 ((-644 (-566)) (-566) (-566) (-566))))) (T -1109))
+((-1412 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))) (-3218 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))) (-4171 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))) (-2715 (*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1109)))) (-2448 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1264 (-566))) (-5 *3 (-644 (-566))) (-5 *4 (-566)) (-5 *1 (-1109)))) (-2448 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1264 (-566))) (-5 *3 (-566)) (-5 *1 (-1109)))) (-4204 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *3 (-112)) (-5 *1 (-1109)))) (-3729 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-689 (-566))) (-5 *3 (-644 (-566))) (-5 *1 (-1109)))) (-2741 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1109)))) (-3092 (*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-644 (-689 (-566)))) (-5 *1 (-1109)))) (-2746 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *3 (-689 (-566))) (-5 *1 (-1109)))) (-1675 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1109)))))
+(-10 -7 (-15 -1675 ((-689 (-566)) (-644 (-566)) (-644 (-566)) (-644 (-566)))) (-15 -2746 ((-644 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566)))) (-15 -3092 ((-644 (-689 (-566))) (-644 (-566)))) (-15 -2741 ((-689 (-566)) (-644 (-566)) (-644 (-566)))) (-15 -3729 ((-689 (-566)) (-644 (-566)) (-644 (-566)) (-689 (-566)))) (-15 -4204 ((-644 (-566)) (-644 (-566)) (-644 (-566)) (-112))) (-15 -2448 ((-1264 (-566)) (-1264 (-566)) (-1264 (-566)) (-566))) (-15 -2448 ((-1264 (-566)) (-644 (-566)) (-1264 (-566)) (-566))) (-15 -2715 ((-566) (-566) (-566))) (-15 -4171 ((-644 (-566)) (-566) (-566) (-566))) (-15 -3218 ((-644 (-566)) (-566) (-566) (-566))) (-15 -1412 ((-644 (-566)) (-566) (-566) (-566))))
((** (($ $ (-921)) 10)))
(((-1110 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-921)))) (-1111)) (T -1110))
NIL
(-10 -8 (-15 ** (|#1| |#1| (-921))))
-((-2985 (((-112) $ $) 7)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)) (** (($ $ (-921)) 14)) (* (($ $ $) 15)))
+((-3009 (((-112) $ $) 7)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)) (** (($ $ (-921)) 14)) (* (($ $ $) 15)))
(((-1111) (-140)) (T -1111))
((* (*1 *1 *1 *1) (-4 *1 (-1111))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1111)) (-5 *2 (-921)))))
(-13 (-1099) (-10 -8 (-15 * ($ $ $)) (-15 ** ($ $ (-921)))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL (|has| |#3| (-1099)))) (-3958 (((-112) $) NIL (|has| |#3| (-131)))) (-3639 (($ (-921)) NIL (|has| |#3| (-1049)))) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-3711 (($ $ $) NIL (|has| |#3| (-793)))) (-4126 (((-3 $ "failed") $ $) NIL (|has| |#3| (-131)))) (-3081 (((-112) $ (-771)) NIL)) (-4025 (((-771)) NIL (|has| |#3| (-370)))) (-2807 (((-566) $) NIL (|has| |#3| (-848)))) (-3874 ((|#3| $ (-566) |#3|) NIL (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1099)))) (-1756 (((-566) $) NIL (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099)))) ((|#3| $) NIL (|has| |#3| (-1099)))) (-1628 (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049)))) (((-2 (|:| -1380 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 $) (-1264 $)) NIL (|has| |#3| (-1049))) (((-689 |#3|) (-689 $)) NIL (|has| |#3| (-1049)))) (-1579 (((-3 $ "failed") $) NIL (|has| |#3| (-726)))) (-3335 (($) NIL (|has| |#3| (-370)))) (-1332 ((|#3| $ (-566) |#3|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#3| $ (-566)) 12)) (-1684 (((-112) $) NIL (|has| |#3| (-848)))) (-3372 (((-644 |#3|) $) NIL (|has| $ (-6 -4417)))) (-2741 (((-112) $) NIL (|has| |#3| (-726)))) (-1578 (((-112) $) NIL (|has| |#3| (-848)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2404 (((-644 |#3|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#3| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-1323 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#3| |#3|) $) NIL)) (-3712 (((-921) $) NIL (|has| |#3| (-370)))) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#3| (-1099)))) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-2168 (($ (-921)) NIL (|has| |#3| (-370)))) (-4033 (((-1119) $) NIL (|has| |#3| (-1099)))) (-4062 ((|#3| $) NIL (|has| (-566) (-850)))) (-1720 (($ $ |#3|) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#3|))) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-295 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-644 |#3|) (-644 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#3| (-1099))))) (-2784 (((-644 |#3|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#3| $ (-566) |#3|) NIL) ((|#3| $ (-566)) NIL)) (-1452 ((|#3| $ $) NIL (|has| |#3| (-1049)))) (-2440 (($ (-1264 |#3|)) NIL)) (-1909 (((-134)) NIL (|has| |#3| (-365)))) (-2862 (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1 |#3| |#3|) (-771)) NIL (|has| |#3| (-1049))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1049)))) (-4044 (((-771) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4417))) (((-771) |#3| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#3| (-1099))))) (-3895 (($ $) NIL)) (-2512 (((-1264 |#3|) $) NIL) (($ (-566)) NIL (-2805 (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099))) (|has| |#3| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099)))) (($ |#3|) NIL (|has| |#3| (-1099))) (((-862) $) NIL (|has| |#3| (-613 (-862))))) (-3795 (((-771)) NIL (|has| |#3| (-1049)) CONST)) (-3122 (((-112) $ $) NIL (|has| |#3| (-1099)))) (-3427 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4417)))) (-1346 (($ $) NIL (|has| |#3| (-848)))) (-2485 (($) NIL (|has| |#3| (-131)) CONST)) (-2495 (($) NIL (|has| |#3| (-726)) CONST)) (-2840 (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1 |#3| |#3|) (-771)) NIL (|has| |#3| (-1049))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1049)))) (-2998 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2974 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2940 (((-112) $ $) NIL (|has| |#3| (-1099)))) (-2987 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2962 (((-112) $ $) 24 (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-3061 (($ $ |#3|) NIL (|has| |#3| (-365)))) (-3047 (($ $ $) NIL (|has| |#3| (-1049))) (($ $) NIL (|has| |#3| (-1049)))) (-3034 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-771)) NIL (|has| |#3| (-726))) (($ $ (-921)) NIL (|has| |#3| (-726)))) (* (($ (-566) $) NIL (|has| |#3| (-1049))) (($ $ $) NIL (|has| |#3| (-726))) (($ $ |#3|) NIL (|has| |#3| (-726))) (($ |#3| $) NIL (|has| |#3| (-726))) (($ (-771) $) NIL (|has| |#3| (-131))) (($ (-921) $) NIL (|has| |#3| (-25)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL (|has| |#3| (-1099)))) (-3015 (((-112) $) NIL (|has| |#3| (-131)))) (-3047 (($ (-921)) NIL (|has| |#3| (-1049)))) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-4385 (($ $ $) NIL (|has| |#3| (-793)))) (-4014 (((-3 $ "failed") $ $) NIL (|has| |#3| (-131)))) (-1574 (((-112) $ (-771)) NIL)) (-4070 (((-771)) NIL (|has| |#3| (-370)))) (-2899 (((-566) $) NIL (|has| |#3| (-848)))) (-3916 ((|#3| $ (-566) |#3|) NIL (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099)))) (((-3 |#3| "failed") $) NIL (|has| |#3| (-1099)))) (-1867 (((-566) $) NIL (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099)))) (((-409 (-566)) $) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099)))) ((|#3| $) NIL (|has| |#3| (-1099)))) (-2210 (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#3| (-639 (-566))) (|has| |#3| (-1049)))) (((-2 (|:| -4193 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 $) (-1264 $)) NIL (|has| |#3| (-1049))) (((-689 |#3|) (-689 $)) NIL (|has| |#3| (-1049)))) (-2928 (((-3 $ "failed") $) NIL (|has| |#3| (-726)))) (-1618 (($) NIL (|has| |#3| (-370)))) (-3128 ((|#3| $ (-566) |#3|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#3| $ (-566)) 12)) (-1533 (((-112) $) NIL (|has| |#3| (-848)))) (-3799 (((-644 |#3|) $) NIL (|has| $ (-6 -4414)))) (-3466 (((-112) $) NIL (|has| |#3| (-726)))) (-2917 (((-112) $) NIL (|has| |#3| (-848)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-3276 (((-644 |#3|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#3| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-3117 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#3| |#3|) $) NIL)) (-1299 (((-921) $) NIL (|has| |#3| (-370)))) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#3| (-1099)))) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-2208 (($ (-921)) NIL (|has| |#3| (-370)))) (-4056 (((-1119) $) NIL (|has| |#3| (-1099)))) (-4101 ((|#3| $) NIL (|has| (-566) (-850)))) (-3750 (($ $ |#3|) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#3|))) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-295 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ |#3| |#3|) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099)))) (($ $ (-644 |#3|) (-644 |#3|)) NIL (-12 (|has| |#3| (-310 |#3|)) (|has| |#3| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#3| (-1099))))) (-2684 (((-644 |#3|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#3| $ (-566) |#3|) NIL) ((|#3| $ (-566)) NIL)) (-4086 ((|#3| $ $) NIL (|has| |#3| (-1049)))) (-2512 (($ (-1264 |#3|)) NIL)) (-2012 (((-134)) NIL (|has| |#3| (-365)))) (-2578 (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1 |#3| |#3|) (-771)) NIL (|has| |#3| (-1049))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1049)))) (-4067 (((-771) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4414))) (((-771) |#3| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#3| (-1099))))) (-3940 (($ $) NIL)) (-3780 (((-1264 |#3|) $) NIL) (($ (-566)) NIL (-2805 (-12 (|has| |#3| (-1038 (-566))) (|has| |#3| (-1099))) (|has| |#3| (-1049)))) (($ (-409 (-566))) NIL (-12 (|has| |#3| (-1038 (-409 (-566)))) (|has| |#3| (-1099)))) (($ |#3|) NIL (|has| |#3| (-1099))) (((-862) $) NIL (|has| |#3| (-613 (-862))))) (-3996 (((-771)) NIL (|has| |#3| (-1049)) CONST)) (-3801 (((-112) $ $) NIL (|has| |#3| (-1099)))) (-1583 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4414)))) (-3333 (($ $) NIL (|has| |#3| (-848)))) (-2493 (($) NIL (|has| |#3| (-131)) CONST)) (-4333 (($) NIL (|has| |#3| (-726)) CONST)) (-2876 (($ $) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $ (-771)) NIL (-12 (|has| |#3| (-233)) (|has| |#3| (-1049)))) (($ $ (-1175)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#3| (-900 (-1175))) (|has| |#3| (-1049)))) (($ $ (-1 |#3| |#3|) (-771)) NIL (|has| |#3| (-1049))) (($ $ (-1 |#3| |#3|)) NIL (|has| |#3| (-1049)))) (-3010 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2984 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2950 (((-112) $ $) NIL (|has| |#3| (-1099)))) (-2999 (((-112) $ $) NIL (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-2972 (((-112) $ $) 24 (-2805 (|has| |#3| (-793)) (|has| |#3| (-848))))) (-3062 (($ $ |#3|) NIL (|has| |#3| (-365)))) (-3051 (($ $ $) NIL (|has| |#3| (-1049))) (($ $) NIL (|has| |#3| (-1049)))) (-3040 (($ $ $) NIL (|has| |#3| (-25)))) (** (($ $ (-771)) NIL (|has| |#3| (-726))) (($ $ (-921)) NIL (|has| |#3| (-726)))) (* (($ (-566) $) NIL (|has| |#3| (-1049))) (($ $ $) NIL (|has| |#3| (-726))) (($ $ |#3|) NIL (|has| |#3| (-726))) (($ |#3| $) NIL (|has| |#3| (-726))) (($ (-771) $) NIL (|has| |#3| (-131))) (($ (-921) $) NIL (|has| |#3| (-25)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-1112 |#1| |#2| |#3|) (-238 |#1| |#3|) (-771) (-771) (-793)) (T -1112))
NIL
(-238 |#1| |#3|)
-((-2235 (((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|)) 53)) (-1622 (((-566) (-1237 |#2| |#1|)) 100 (|has| |#1| (-454)))) (-4372 (((-566) (-1237 |#2| |#1|)) 82)) (-2424 (((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|)) 63)) (-2038 (((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|)) 99 (|has| |#1| (-454)))) (-3230 (((-644 |#1|) (-1237 |#2| |#1|) (-1237 |#2| |#1|)) 67)) (-1861 (((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|)) 81)))
-(((-1113 |#1| |#2|) (-10 -7 (-15 -2235 ((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -2424 ((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -3230 ((-644 |#1|) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -1861 ((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -4372 ((-566) (-1237 |#2| |#1|))) (IF (|has| |#1| (-454)) (PROGN (-15 -2038 ((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -1622 ((-566) (-1237 |#2| |#1|)))) |%noBranch|)) (-820) (-1175)) (T -1113))
-((-1622 (*1 *2 *3) (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-454)) (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))) (-2038 (*1 *2 *3 *3) (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-454)) (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))) (-4372 (*1 *2 *3) (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))) (-1861 (*1 *2 *3 *3) (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))) (-3230 (*1 *2 *3 *3) (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-644 *4)) (-5 *1 (-1113 *4 *5)))) (-2424 (*1 *2 *3 *3) (-12 (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-644 (-1237 *5 *4))) (-5 *1 (-1113 *4 *5)) (-5 *3 (-1237 *5 *4)))) (-2235 (*1 *2 *3 *3) (-12 (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-644 (-1237 *5 *4))) (-5 *1 (-1113 *4 *5)) (-5 *3 (-1237 *5 *4)))))
-(-10 -7 (-15 -2235 ((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -2424 ((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -3230 ((-644 |#1|) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -1861 ((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -4372 ((-566) (-1237 |#2| |#1|))) (IF (|has| |#1| (-454)) (PROGN (-15 -2038 ((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -1622 ((-566) (-1237 |#2| |#1|)))) |%noBranch|))
-((-2985 (((-112) $ $) NIL)) (-3222 (($ (-508) (-1117)) 13)) (-3011 (((-1117) $) 19)) (-2628 (((-508) $) 16)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 26) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1114) (-13 (-1082) (-10 -8 (-15 -3222 ($ (-508) (-1117))) (-15 -2628 ((-508) $)) (-15 -3011 ((-1117) $))))) (T -1114))
-((-3222 (*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1117)) (-5 *1 (-1114)))) (-2628 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1114)))) (-3011 (*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-1114)))))
-(-13 (-1082) (-10 -8 (-15 -3222 ($ (-508) (-1117))) (-15 -2628 ((-508) $)) (-15 -3011 ((-1117) $))))
-((-2807 (((-3 (-566) "failed") |#2| (-1175) |#2| (-1157)) 19) (((-3 (-566) "failed") |#2| (-1175) (-843 |#2|)) 17) (((-3 (-566) "failed") |#2|) 60)))
-(((-1115 |#1| |#2|) (-10 -7 (-15 -2807 ((-3 (-566) "failed") |#2|)) (-15 -2807 ((-3 (-566) "failed") |#2| (-1175) (-843 |#2|))) (-15 -2807 ((-3 (-566) "failed") |#2| (-1175) |#2| (-1157)))) (-13 (-558) (-1038 (-566)) (-639 (-566)) (-454)) (-13 (-27) (-1199) (-432 |#1|))) (T -1115))
-((-2807 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-1157)) (-4 *6 (-13 (-558) (-1038 *2) (-639 *2) (-454))) (-5 *2 (-566)) (-5 *1 (-1115 *6 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))))) (-2807 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-843 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 *2) (-639 *2) (-454))) (-5 *2 (-566)) (-5 *1 (-1115 *6 *3)))) (-2807 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-558) (-1038 *2) (-639 *2) (-454))) (-5 *2 (-566)) (-5 *1 (-1115 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))))
-(-10 -7 (-15 -2807 ((-3 (-566) "failed") |#2|)) (-15 -2807 ((-3 (-566) "failed") |#2| (-1175) (-843 |#2|))) (-15 -2807 ((-3 (-566) "failed") |#2| (-1175) |#2| (-1157))))
-((-2807 (((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)) (-1157)) 38) (((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-843 (-409 (-952 |#1|)))) 33) (((-3 (-566) "failed") (-409 (-952 |#1|))) 14)))
-(((-1116 |#1|) (-10 -7 (-15 -2807 ((-3 (-566) "failed") (-409 (-952 |#1|)))) (-15 -2807 ((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-843 (-409 (-952 |#1|))))) (-15 -2807 ((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)) (-1157)))) (-454)) (T -1116))
-((-2807 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-409 (-952 *6))) (-5 *4 (-1175)) (-5 *5 (-1157)) (-4 *6 (-454)) (-5 *2 (-566)) (-5 *1 (-1116 *6)))) (-2807 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-843 (-409 (-952 *6)))) (-5 *3 (-409 (-952 *6))) (-4 *6 (-454)) (-5 *2 (-566)) (-5 *1 (-1116 *6)))) (-2807 (*1 *2 *3) (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-454)) (-5 *2 (-566)) (-5 *1 (-1116 *4)))))
-(-10 -7 (-15 -2807 ((-3 (-566) "failed") (-409 (-952 |#1|)))) (-15 -2807 ((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-843 (-409 (-952 |#1|))))) (-15 -2807 ((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)) (-1157))))
-((-2985 (((-112) $ $) NIL)) (-3812 (((-1180) $) 12)) (-3767 (((-644 (-1180)) $) 14)) (-3011 (($ (-644 (-1180)) (-1180)) 10)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 29)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 17)))
-(((-1117) (-13 (-1099) (-10 -8 (-15 -3011 ($ (-644 (-1180)) (-1180))) (-15 -3812 ((-1180) $)) (-15 -3767 ((-644 (-1180)) $))))) (T -1117))
-((-3011 (*1 *1 *2 *3) (-12 (-5 *2 (-644 (-1180))) (-5 *3 (-1180)) (-5 *1 (-1117)))) (-3812 (*1 *2 *1) (-12 (-5 *2 (-1180)) (-5 *1 (-1117)))) (-3767 (*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1117)))))
-(-13 (-1099) (-10 -8 (-15 -3011 ($ (-644 (-1180)) (-1180))) (-15 -3812 ((-1180) $)) (-15 -3767 ((-644 (-1180)) $))))
-((-3164 (((-317 (-566)) (-48)) 12)))
-(((-1118) (-10 -7 (-15 -3164 ((-317 (-566)) (-48))))) (T -1118))
-((-3164 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-317 (-566))) (-5 *1 (-1118)))))
-(-10 -7 (-15 -3164 ((-317 (-566)) (-48))))
-((-2985 (((-112) $ $) NIL)) (-3009 (($ $) 44)) (-3958 (((-112) $) 69)) (-2461 (($ $ $) 51)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 97)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-1657 (($ $ $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $ $ $) 80)) (-2857 (($ $) NIL)) (-1370 (((-420 $) $) NIL)) (-1561 (((-112) $ $) NIL)) (-4025 (((-771)) 82)) (-2807 (((-566) $) NIL)) (-3096 (($ $ $) 77)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL)) (-1756 (((-566) $) NIL)) (-2926 (($ $ $) 63)) (-1628 (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 91) (((-689 (-566)) (-689 $)) 32)) (-1579 (((-3 $ "failed") $) NIL)) (-3800 (((-3 (-409 (-566)) "failed") $) NIL)) (-3717 (((-112) $) NIL)) (-3370 (((-409 (-566)) $) NIL)) (-3335 (($) 94) (($ $) 95)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL)) (-2635 (((-112) $) NIL)) (-3481 (($ $ $ $) NIL)) (-2570 (($ $ $) 92)) (-1684 (((-112) $) NIL)) (-3870 (($ $ $) NIL)) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL)) (-2741 (((-112) $) 71)) (-2884 (((-112) $) 68)) (-2426 (($ $) 45)) (-2546 (((-3 $ "failed") $) NIL)) (-1578 (((-112) $) 81)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1839 (($ $ $ $) 78)) (-1439 (($ $ $) 73) (($) 42 T CONST)) (-3059 (($ $ $) 72) (($) 41 T CONST)) (-1623 (($ $) NIL)) (-3712 (((-921) $) 87)) (-3822 (($ $) 76)) (-2184 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2878 (((-1157) $) NIL)) (-2518 (($ $ $) NIL)) (-2759 (($) NIL T CONST)) (-2168 (($ (-921)) 86)) (-1863 (($ $) 56)) (-4033 (((-1119) $) 75)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2222 (($ $ $) 66) (($ (-644 $)) NIL)) (-3280 (($ $) NIL)) (-2391 (((-420 $) $) NIL)) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL)) (-2972 (((-3 $ "failed") $ $) NIL)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1693 (((-112) $) NIL)) (-1813 (((-771) $) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 65)) (-2862 (($ $ (-771)) NIL) (($ $) NIL)) (-2538 (($ $) 57)) (-3895 (($ $) NIL)) (-3134 (((-566) $) 17) (((-538) $) NIL) (((-892 (-566)) $) NIL) (((-381) $) NIL) (((-225) $) NIL)) (-2512 (((-862) $) 35) (($ (-566)) 93) (($ $) NIL) (($ (-566)) 93)) (-3795 (((-771)) NIL T CONST)) (-1916 (((-112) $ $) NIL)) (-1523 (($ $ $) NIL)) (-3122 (((-112) $ $) NIL)) (-3306 (($) 40)) (-1634 (((-112) $ $) NIL)) (-2275 (($ $ $ $) 79)) (-1346 (($ $) 67)) (-3058 (($ $ $) 47)) (-2485 (($) 7 T CONST)) (-2177 (($ $ $) 50)) (-2495 (($) 39 T CONST)) (-2178 (((-1157) $) 26) (((-1157) $ (-112)) 27) (((-1269) (-822) $) 28) (((-1269) (-822) $ (-112)) 29)) (-2190 (($ $) 48)) (-2840 (($ $ (-771)) NIL) (($ $) NIL)) (-2163 (($ $ $) 49)) (-2998 (((-112) $ $) 55)) (-2974 (((-112) $ $) 52)) (-2940 (((-112) $ $) 43)) (-2987 (((-112) $ $) 54)) (-2962 (((-112) $ $) 10)) (-3044 (($ $ $) 46)) (-3047 (($ $) 16) (($ $ $) 59)) (-3034 (($ $ $) 58)) (** (($ $ (-921)) NIL) (($ $ (-771)) 61)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 38) (($ $ $) 37)))
-(((-1119) (-13 (-547) (-844) (-661) (-828) (-10 -8 (-6 -4404) (-6 -4409) (-6 -4405) (-15 -2426 ($ $)) (-15 -2461 ($ $ $)) (-15 -2190 ($ $)) (-15 -2163 ($ $ $)) (-15 -2177 ($ $ $))))) (T -1119))
-((-2426 (*1 *1 *1) (-5 *1 (-1119))) (-2461 (*1 *1 *1 *1) (-5 *1 (-1119))) (-2190 (*1 *1 *1) (-5 *1 (-1119))) (-2163 (*1 *1 *1 *1) (-5 *1 (-1119))) (-2177 (*1 *1 *1 *1) (-5 *1 (-1119))))
-(-13 (-547) (-844) (-661) (-828) (-10 -8 (-6 -4404) (-6 -4409) (-6 -4405) (-15 -2426 ($ $)) (-15 -2461 ($ $ $)) (-15 -2190 ($ $)) (-15 -2163 ($ $ $)) (-15 -2177 ($ $ $))))
+((-2157 (((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|)) 53)) (-2155 (((-566) (-1237 |#2| |#1|)) 100 (|has| |#1| (-454)))) (-1498 (((-566) (-1237 |#2| |#1|)) 82)) (-3439 (((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|)) 63)) (-3912 (((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|)) 99 (|has| |#1| (-454)))) (-3487 (((-644 |#1|) (-1237 |#2| |#1|) (-1237 |#2| |#1|)) 67)) (-2734 (((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|)) 81)))
+(((-1113 |#1| |#2|) (-10 -7 (-15 -2157 ((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -3439 ((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -3487 ((-644 |#1|) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -2734 ((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -1498 ((-566) (-1237 |#2| |#1|))) (IF (|has| |#1| (-454)) (PROGN (-15 -3912 ((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -2155 ((-566) (-1237 |#2| |#1|)))) |%noBranch|)) (-820) (-1175)) (T -1113))
+((-2155 (*1 *2 *3) (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-454)) (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))) (-3912 (*1 *2 *3 *3) (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-454)) (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))) (-1498 (*1 *2 *3) (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))) (-2734 (*1 *2 *3 *3) (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))) (-3487 (*1 *2 *3 *3) (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-644 *4)) (-5 *1 (-1113 *4 *5)))) (-3439 (*1 *2 *3 *3) (-12 (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-644 (-1237 *5 *4))) (-5 *1 (-1113 *4 *5)) (-5 *3 (-1237 *5 *4)))) (-2157 (*1 *2 *3 *3) (-12 (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-644 (-1237 *5 *4))) (-5 *1 (-1113 *4 *5)) (-5 *3 (-1237 *5 *4)))))
+(-10 -7 (-15 -2157 ((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -3439 ((-644 (-1237 |#2| |#1|)) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -3487 ((-644 |#1|) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -2734 ((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -1498 ((-566) (-1237 |#2| |#1|))) (IF (|has| |#1| (-454)) (PROGN (-15 -3912 ((-566) (-1237 |#2| |#1|) (-1237 |#2| |#1|))) (-15 -2155 ((-566) (-1237 |#2| |#1|)))) |%noBranch|))
+((-3009 (((-112) $ $) NIL)) (-3432 (($ (-508) (-1117)) 13)) (-3049 (((-1117) $) 19)) (-2639 (((-508) $) 16)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 26) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1114) (-13 (-1082) (-10 -8 (-15 -3432 ($ (-508) (-1117))) (-15 -2639 ((-508) $)) (-15 -3049 ((-1117) $))))) (T -1114))
+((-3432 (*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1117)) (-5 *1 (-1114)))) (-2639 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1114)))) (-3049 (*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-1114)))))
+(-13 (-1082) (-10 -8 (-15 -3432 ($ (-508) (-1117))) (-15 -2639 ((-508) $)) (-15 -3049 ((-1117) $))))
+((-2899 (((-3 (-566) "failed") |#2| (-1175) |#2| (-1157)) 19) (((-3 (-566) "failed") |#2| (-1175) (-843 |#2|)) 17) (((-3 (-566) "failed") |#2|) 60)))
+(((-1115 |#1| |#2|) (-10 -7 (-15 -2899 ((-3 (-566) "failed") |#2|)) (-15 -2899 ((-3 (-566) "failed") |#2| (-1175) (-843 |#2|))) (-15 -2899 ((-3 (-566) "failed") |#2| (-1175) |#2| (-1157)))) (-13 (-558) (-1038 (-566)) (-639 (-566)) (-454)) (-13 (-27) (-1199) (-432 |#1|))) (T -1115))
+((-2899 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-1157)) (-4 *6 (-13 (-558) (-1038 *2) (-639 *2) (-454))) (-5 *2 (-566)) (-5 *1 (-1115 *6 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))))) (-2899 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-843 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6))) (-4 *6 (-13 (-558) (-1038 *2) (-639 *2) (-454))) (-5 *2 (-566)) (-5 *1 (-1115 *6 *3)))) (-2899 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-558) (-1038 *2) (-639 *2) (-454))) (-5 *2 (-566)) (-5 *1 (-1115 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))))
+(-10 -7 (-15 -2899 ((-3 (-566) "failed") |#2|)) (-15 -2899 ((-3 (-566) "failed") |#2| (-1175) (-843 |#2|))) (-15 -2899 ((-3 (-566) "failed") |#2| (-1175) |#2| (-1157))))
+((-2899 (((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)) (-1157)) 38) (((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-843 (-409 (-952 |#1|)))) 33) (((-3 (-566) "failed") (-409 (-952 |#1|))) 14)))
+(((-1116 |#1|) (-10 -7 (-15 -2899 ((-3 (-566) "failed") (-409 (-952 |#1|)))) (-15 -2899 ((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-843 (-409 (-952 |#1|))))) (-15 -2899 ((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)) (-1157)))) (-454)) (T -1116))
+((-2899 (*1 *2 *3 *4 *3 *5) (|partial| -12 (-5 *3 (-409 (-952 *6))) (-5 *4 (-1175)) (-5 *5 (-1157)) (-4 *6 (-454)) (-5 *2 (-566)) (-5 *1 (-1116 *6)))) (-2899 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-843 (-409 (-952 *6)))) (-5 *3 (-409 (-952 *6))) (-4 *6 (-454)) (-5 *2 (-566)) (-5 *1 (-1116 *6)))) (-2899 (*1 *2 *3) (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-454)) (-5 *2 (-566)) (-5 *1 (-1116 *4)))))
+(-10 -7 (-15 -2899 ((-3 (-566) "failed") (-409 (-952 |#1|)))) (-15 -2899 ((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-843 (-409 (-952 |#1|))))) (-15 -2899 ((-3 (-566) "failed") (-409 (-952 |#1|)) (-1175) (-409 (-952 |#1|)) (-1157))))
+((-3009 (((-112) $ $) NIL)) (-3848 (((-1180) $) 12)) (-3797 (((-644 (-1180)) $) 14)) (-3049 (($ (-644 (-1180)) (-1180)) 10)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 29)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 17)))
+(((-1117) (-13 (-1099) (-10 -8 (-15 -3049 ($ (-644 (-1180)) (-1180))) (-15 -3848 ((-1180) $)) (-15 -3797 ((-644 (-1180)) $))))) (T -1117))
+((-3049 (*1 *1 *2 *3) (-12 (-5 *2 (-644 (-1180))) (-5 *3 (-1180)) (-5 *1 (-1117)))) (-3848 (*1 *2 *1) (-12 (-5 *2 (-1180)) (-5 *1 (-1117)))) (-3797 (*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1117)))))
+(-13 (-1099) (-10 -8 (-15 -3049 ($ (-644 (-1180)) (-1180))) (-15 -3848 ((-1180) $)) (-15 -3797 ((-644 (-1180)) $))))
+((-4108 (((-317 (-566)) (-48)) 12)))
+(((-1118) (-10 -7 (-15 -4108 ((-317 (-566)) (-48))))) (T -1118))
+((-4108 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-317 (-566))) (-5 *1 (-1118)))))
+(-10 -7 (-15 -4108 ((-317 (-566)) (-48))))
+((-3009 (((-112) $ $) NIL)) (-3028 (($ $) 44)) (-3015 (((-112) $) 69)) (-2470 (($ $ $) 51)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 97)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4332 (($ $ $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4172 (($ $ $ $) 80)) (-2179 (($ $) NIL)) (-3271 (((-420 $) $) NIL)) (-2738 (((-112) $ $) NIL)) (-4070 (((-771)) 82)) (-2899 (((-566) $) NIL)) (-3129 (($ $ $) 77)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL)) (-1867 (((-566) $) NIL)) (-2949 (($ $ $) 63)) (-2210 (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 91) (((-689 (-566)) (-689 $)) 32)) (-2928 (((-3 $ "failed") $) NIL)) (-4045 (((-3 (-409 (-566)) "failed") $) NIL)) (-1356 (((-112) $) NIL)) (-2269 (((-409 (-566)) $) NIL)) (-1618 (($) 94) (($ $) 95)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL)) (-1784 (((-112) $) NIL)) (-4012 (($ $ $ $) NIL)) (-2385 (($ $ $) 92)) (-1533 (((-112) $) NIL)) (-3477 (($ $ $) NIL)) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL)) (-3466 (((-112) $) 71)) (-2469 (((-112) $) 68)) (-2436 (($ $) 45)) (-2133 (((-3 $ "failed") $) NIL)) (-2917 (((-112) $) 81)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-2513 (($ $ $ $) 78)) (-1945 (($ $ $) 73) (($) 42 T CONST)) (-2709 (($ $ $) 72) (($) 41 T CONST)) (-2428 (($ $) NIL)) (-1299 (((-921) $) 87)) (-3945 (($ $) 76)) (-2197 (($ $ $) NIL) (($ (-644 $)) NIL)) (-2402 (((-1157) $) NIL)) (-1885 (($ $ $) NIL)) (-3625 (($) NIL T CONST)) (-2208 (($ (-921)) 86)) (-2637 (($ $) 56)) (-4056 (((-1119) $) 75)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL)) (-2235 (($ $ $) 66) (($ (-644 $)) NIL)) (-2711 (($ $) NIL)) (-2473 (((-420 $) $) NIL)) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL)) (-2997 (((-3 $ "failed") $ $) NIL)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL)) (-1630 (((-112) $) NIL)) (-3470 (((-771) $) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 65)) (-2578 (($ $ (-771)) NIL) (($ $) NIL)) (-4090 (($ $) 57)) (-3940 (($ $) NIL)) (-3204 (((-566) $) 17) (((-538) $) NIL) (((-892 (-566)) $) NIL) (((-381) $) NIL) (((-225) $) NIL)) (-3780 (((-862) $) 35) (($ (-566)) 93) (($ $) NIL) (($ (-566)) 93)) (-3996 (((-771)) NIL T CONST)) (-2078 (((-112) $ $) NIL)) (-2378 (($ $ $) NIL)) (-3801 (((-112) $ $) NIL)) (-3819 (($) 40)) (-2278 (((-112) $ $) NIL)) (-1314 (($ $ $ $) 79)) (-3333 (($ $) 67)) (-3074 (($ $ $) 47)) (-2493 (($) 7 T CONST)) (-2216 (($ $ $) 50)) (-4333 (($) 39 T CONST)) (-2852 (((-1157) $) 26) (((-1157) $ (-112)) 27) (((-1269) (-822) $) 28) (((-1269) (-822) $ (-112)) 29)) (-2228 (($ $) 48)) (-2876 (($ $ (-771)) NIL) (($ $) NIL)) (-2203 (($ $ $) 49)) (-3010 (((-112) $ $) 55)) (-2984 (((-112) $ $) 52)) (-2950 (((-112) $ $) 43)) (-2999 (((-112) $ $) 54)) (-2972 (((-112) $ $) 10)) (-3061 (($ $ $) 46)) (-3051 (($ $) 16) (($ $ $) 59)) (-3040 (($ $ $) 58)) (** (($ $ (-921)) NIL) (($ $ (-771)) 61)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 38) (($ $ $) 37)))
+(((-1119) (-13 (-547) (-844) (-661) (-828) (-10 -8 (-6 -4401) (-6 -4406) (-6 -4402) (-15 -2436 ($ $)) (-15 -2470 ($ $ $)) (-15 -2228 ($ $)) (-15 -2203 ($ $ $)) (-15 -2216 ($ $ $))))) (T -1119))
+((-2436 (*1 *1 *1) (-5 *1 (-1119))) (-2470 (*1 *1 *1 *1) (-5 *1 (-1119))) (-2228 (*1 *1 *1) (-5 *1 (-1119))) (-2203 (*1 *1 *1 *1) (-5 *1 (-1119))) (-2216 (*1 *1 *1 *1) (-5 *1 (-1119))))
+(-13 (-547) (-844) (-661) (-828) (-10 -8 (-6 -4401) (-6 -4406) (-6 -4402) (-15 -2436 ($ $)) (-15 -2470 ($ $ $)) (-15 -2228 ($ $)) (-15 -2203 ($ $ $)) (-15 -2216 ($ $ $))))
((|Integer|) (SMINTP |#1|))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3877 ((|#1| $) 45)) (-3081 (((-112) $ (-771)) 8)) (-2342 (($) 7 T CONST)) (-1774 ((|#1| |#1| $) 47)) (-3464 ((|#1| $) 46)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3119 ((|#1| $) 40)) (-4265 (($ |#1| $) 41)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-2658 ((|#1| $) 42)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-2753 (((-771) $) 44)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) 43)) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-3918 ((|#1| $) 45)) (-1574 (((-112) $ (-771)) 8)) (-3877 (($) 7 T CONST)) (-3082 ((|#1| |#1| $) 47)) (-3827 ((|#1| $) 46)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-3765 ((|#1| $) 40)) (-2903 (($ |#1| $) 41)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-3852 ((|#1| $) 42)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-1677 (((-771) $) 44)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) 43)) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-1120 |#1|) (-140) (-1214)) (T -1120))
-((-1774 (*1 *2 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))) (-3464 (*1 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))) (-3877 (*1 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))) (-2753 (*1 *2 *1) (-12 (-4 *1 (-1120 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4417) (-15 -1774 (|t#1| |t#1| $)) (-15 -3464 (|t#1| $)) (-15 -3877 (|t#1| $)) (-15 -2753 ((-771) $))))
+((-3082 (*1 *2 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))) (-3827 (*1 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))) (-3918 (*1 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))) (-1677 (*1 *2 *1) (-12 (-4 *1 (-1120 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4414) (-15 -3082 (|t#1| |t#1| $)) (-15 -3827 (|t#1| $)) (-15 -3918 (|t#1| $)) (-15 -1677 ((-771) $))))
(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-3817 ((|#3| $) 87)) (-2977 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#3| "failed") $) 50)) (-1756 (((-566) $) NIL) (((-409 (-566)) $) NIL) ((|#3| $) 47)) (-1628 (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -1380 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 $) (-1264 $)) 84) (((-689 |#3|) (-689 $)) 76)) (-2862 (($ $ (-1 |#3| |#3|)) 28) (($ $ (-1 |#3| |#3|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)) (-2447 ((|#3| $) 89)) (-1906 ((|#4| $) 43)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL) (($ |#3|) 25)) (** (($ $ (-921)) NIL) (($ $ (-771)) 24) (($ $ (-566)) 95)))
-(((-1121 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-566))) (-15 -2447 (|#3| |#1|)) (-15 -3817 (|#3| |#1|)) (-15 -1906 (|#4| |#1|)) (-15 -1628 ((-689 |#3|) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -2512 (|#1| |#3|)) (-15 -2977 ((-3 |#3| "failed") |#1|)) (-15 -1756 (|#3| |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1 |#3| |#3|) (-771))) (-15 -2862 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2512 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))) (-15 -2512 ((-862) |#1|))) (-1122 |#2| |#3| |#4| |#5|) (-771) (-1049) (-238 |#2| |#3|) (-238 |#2| |#3|)) (T -1121))
+((-3834 ((|#3| $) 87)) (-3066 (((-3 (-566) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 |#3| "failed") $) 50)) (-1867 (((-566) $) NIL) (((-409 (-566)) $) NIL) ((|#3| $) 47)) (-2210 (((-689 (-566)) (-689 $)) NIL) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL) (((-2 (|:| -4193 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 $) (-1264 $)) 84) (((-689 |#3|) (-689 $)) 76)) (-2578 (($ $ (-1 |#3| |#3|)) 28) (($ $ (-1 |#3| |#3|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175)) NIL) (($ $ (-771)) NIL) (($ $) NIL)) (-3638 ((|#3| $) 89)) (-1978 ((|#4| $) 43)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ (-409 (-566))) NIL) (($ |#3|) 25)) (** (($ $ (-921)) NIL) (($ $ (-771)) 24) (($ $ (-566)) 95)))
+(((-1121 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 ** (|#1| |#1| (-566))) (-15 -3638 (|#3| |#1|)) (-15 -3834 (|#3| |#1|)) (-15 -1978 (|#4| |#1|)) (-15 -2210 ((-689 |#3|) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -3780 (|#1| |#3|)) (-15 -3066 ((-3 |#3| "failed") |#1|)) (-15 -1867 (|#3| |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1 |#3| |#3|) (-771))) (-15 -2578 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3780 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))) (-15 -3780 ((-862) |#1|))) (-1122 |#2| |#3| |#4| |#5|) (-771) (-1049) (-238 |#2| |#3|) (-238 |#2| |#3|)) (T -1121))
NIL
-(-10 -8 (-15 ** (|#1| |#1| (-566))) (-15 -2447 (|#3| |#1|)) (-15 -3817 (|#3| |#1|)) (-15 -1906 (|#4| |#1|)) (-15 -1628 ((-689 |#3|) (-689 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -1628 ((-689 (-566)) (-689 |#1|))) (-15 -2512 (|#1| |#3|)) (-15 -2977 ((-3 |#3| "failed") |#1|)) (-15 -1756 (|#3| |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1 |#3| |#3|) (-771))) (-15 -2862 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2512 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-3817 ((|#2| $) 77)) (-2087 (((-112) $) 117)) (-4126 (((-3 $ "failed") $ $) 20)) (-4072 (((-112) $) 115)) (-3081 (((-112) $ (-771)) 107)) (-3701 (($ |#2|) 80)) (-2342 (($) 18 T CONST)) (-3071 (($ $) 134 (|has| |#2| (-308)))) (-4134 ((|#3| $ (-566)) 129)) (-2977 (((-3 (-566) "failed") $) 92 (|has| |#2| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 89 (|has| |#2| (-1038 (-409 (-566))))) (((-3 |#2| "failed") $) 86)) (-1756 (((-566) $) 91 (|has| |#2| (-1038 (-566)))) (((-409 (-566)) $) 88 (|has| |#2| (-1038 (-409 (-566))))) ((|#2| $) 87)) (-1628 (((-689 (-566)) (-689 $)) 84 (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 83 (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 82) (((-689 |#2|) (-689 $)) 81)) (-1579 (((-3 $ "failed") $) 37)) (-1821 (((-771) $) 135 (|has| |#2| (-558)))) (-3137 ((|#2| $ (-566) (-566)) 127)) (-3372 (((-644 |#2|) $) 100 (|has| $ (-6 -4417)))) (-2741 (((-112) $) 35)) (-2481 (((-771) $) 136 (|has| |#2| (-558)))) (-2442 (((-644 |#4|) $) 137 (|has| |#2| (-558)))) (-2042 (((-771) $) 123)) (-2053 (((-771) $) 124)) (-2744 (((-112) $ (-771)) 108)) (-1299 ((|#2| $) 72 (|has| |#2| (-6 (-4419 "*"))))) (-3266 (((-566) $) 119)) (-1905 (((-566) $) 121)) (-2404 (((-644 |#2|) $) 99 (|has| $ (-6 -4417)))) (-1927 (((-112) |#2| $) 97 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4417))))) (-4385 (((-566) $) 120)) (-4106 (((-566) $) 122)) (-4198 (($ (-644 (-644 |#2|))) 114)) (-1323 (($ (-1 |#2| |#2|) $) 104 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#2| |#2| |#2|) $ $) 131) (($ (-1 |#2| |#2|) $) 105)) (-2503 (((-644 (-644 |#2|)) $) 125)) (-3882 (((-112) $ (-771)) 109)) (-2878 (((-1157) $) 10)) (-2565 (((-3 $ "failed") $) 71 (|has| |#2| (-365)))) (-4033 (((-1119) $) 11)) (-2972 (((-3 $ "failed") $ |#2|) 132 (|has| |#2| (-558)))) (-2822 (((-112) (-1 (-112) |#2|) $) 102 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#2|))) 96 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) 95 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) 94 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) 93 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) 113)) (-4194 (((-112) $) 110)) (-2954 (($) 111)) (-4386 ((|#2| $ (-566) (-566) |#2|) 128) ((|#2| $ (-566) (-566)) 126)) (-2862 (($ $ (-1 |#2| |#2|)) 56) (($ $ (-1 |#2| |#2|) (-771)) 55) (($ $ (-644 (-1175)) (-644 (-771))) 48 (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) 47 (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) 46 (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) 45 (|has| |#2| (-900 (-1175)))) (($ $ (-771)) 43 (|has| |#2| (-233))) (($ $) 41 (|has| |#2| (-233)))) (-2447 ((|#2| $) 76)) (-3744 (($ (-644 |#2|)) 79)) (-2742 (((-112) $) 116)) (-1906 ((|#3| $) 78)) (-1595 ((|#2| $) 73 (|has| |#2| (-6 (-4419 "*"))))) (-4044 (((-771) (-1 (-112) |#2|) $) 101 (|has| $ (-6 -4417))) (((-771) |#2| $) 98 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 112)) (-4074 ((|#4| $ (-566)) 130)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 90 (|has| |#2| (-1038 (-409 (-566))))) (($ |#2|) 85)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-3427 (((-112) (-1 (-112) |#2|) $) 103 (|has| $ (-6 -4417)))) (-2103 (((-112) $) 118)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-1 |#2| |#2|)) 54) (($ $ (-1 |#2| |#2|) (-771)) 53) (($ $ (-644 (-1175)) (-644 (-771))) 52 (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) 51 (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) 50 (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) 49 (|has| |#2| (-900 (-1175)))) (($ $ (-771)) 44 (|has| |#2| (-233))) (($ $) 42 (|has| |#2| (-233)))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#2|) 133 (|has| |#2| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 70 (|has| |#2| (-365)))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#2|) 139) (($ |#2| $) 138) ((|#4| $ |#4|) 75) ((|#3| |#3| $) 74)) (-2997 (((-771) $) 106 (|has| $ (-6 -4417)))))
+(-10 -8 (-15 ** (|#1| |#1| (-566))) (-15 -3638 (|#3| |#1|)) (-15 -3834 (|#3| |#1|)) (-15 -1978 (|#4| |#1|)) (-15 -2210 ((-689 |#3|) (-689 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 |#3|)) (|:| |vec| (-1264 |#3|))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 |#1|) (-1264 |#1|))) (-15 -2210 ((-689 (-566)) (-689 |#1|))) (-15 -3780 (|#1| |#3|)) (-15 -3066 ((-3 |#3| "failed") |#1|)) (-15 -1867 (|#3| |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1 |#3| |#3|) (-771))) (-15 -2578 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3780 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3834 ((|#2| $) 77)) (-3194 (((-112) $) 117)) (-4014 (((-3 $ "failed") $ $) 20)) (-1597 (((-112) $) 115)) (-1574 (((-112) $ (-771)) 107)) (-2453 (($ |#2|) 80)) (-3877 (($) 18 T CONST)) (-1495 (($ $) 134 (|has| |#2| (-308)))) (-4104 ((|#3| $ (-566)) 129)) (-3066 (((-3 (-566) "failed") $) 92 (|has| |#2| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) 89 (|has| |#2| (-1038 (-409 (-566))))) (((-3 |#2| "failed") $) 86)) (-1867 (((-566) $) 91 (|has| |#2| (-1038 (-566)))) (((-409 (-566)) $) 88 (|has| |#2| (-1038 (-409 (-566))))) ((|#2| $) 87)) (-2210 (((-689 (-566)) (-689 $)) 84 (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 83 (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 82) (((-689 |#2|) (-689 $)) 81)) (-2928 (((-3 $ "failed") $) 37)) (-4157 (((-771) $) 135 (|has| |#2| (-558)))) (-3059 ((|#2| $ (-566) (-566)) 127)) (-3799 (((-644 |#2|) $) 100 (|has| $ (-6 -4414)))) (-3466 (((-112) $) 35)) (-2736 (((-771) $) 136 (|has| |#2| (-558)))) (-3586 (((-644 |#4|) $) 137 (|has| |#2| (-558)))) (-4301 (((-771) $) 123)) (-4313 (((-771) $) 124)) (-3501 (((-112) $ (-771)) 108)) (-1647 ((|#2| $) 72 (|has| |#2| (-6 (-4416 "*"))))) (-2615 (((-566) $) 119)) (-1966 (((-566) $) 121)) (-3276 (((-644 |#2|) $) 99 (|has| $ (-6 -4414)))) (-2183 (((-112) |#2| $) 97 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4414))))) (-1653 (((-566) $) 120)) (-3807 (((-566) $) 122)) (-1883 (($ (-644 (-644 |#2|))) 114)) (-3117 (($ (-1 |#2| |#2|) $) 104 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#2| |#2| |#2|) $ $) 131) (($ (-1 |#2| |#2|) $) 105)) (-2947 (((-644 (-644 |#2|)) $) 125)) (-3582 (((-112) $ (-771)) 109)) (-2402 (((-1157) $) 10)) (-2344 (((-3 $ "failed") $) 71 (|has| |#2| (-365)))) (-4056 (((-1119) $) 11)) (-2997 (((-3 $ "failed") $ |#2|) 132 (|has| |#2| (-558)))) (-3044 (((-112) (-1 (-112) |#2|) $) 102 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#2|))) 96 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) 95 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) 94 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) 93 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) 113)) (-3461 (((-112) $) 110)) (-1793 (($) 111)) (-4393 ((|#2| $ (-566) (-566) |#2|) 128) ((|#2| $ (-566) (-566)) 126)) (-2578 (($ $ (-1 |#2| |#2|)) 56) (($ $ (-1 |#2| |#2|) (-771)) 55) (($ $ (-644 (-1175)) (-644 (-771))) 48 (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) 47 (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) 46 (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) 45 (|has| |#2| (-900 (-1175)))) (($ $ (-771)) 43 (|has| |#2| (-233))) (($ $) 41 (|has| |#2| (-233)))) (-3638 ((|#2| $) 76)) (-1664 (($ (-644 |#2|)) 79)) (-3478 (((-112) $) 116)) (-1978 ((|#3| $) 78)) (-1896 ((|#2| $) 73 (|has| |#2| (-6 (-4416 "*"))))) (-4067 (((-771) (-1 (-112) |#2|) $) 101 (|has| $ (-6 -4414))) (((-771) |#2| $) 98 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 112)) (-1621 ((|#4| $ (-566)) 130)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 90 (|has| |#2| (-1038 (-409 (-566))))) (($ |#2|) 85)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-1583 (((-112) (-1 (-112) |#2|) $) 103 (|has| $ (-6 -4414)))) (-3359 (((-112) $) 118)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-1 |#2| |#2|)) 54) (($ $ (-1 |#2| |#2|) (-771)) 53) (($ $ (-644 (-1175)) (-644 (-771))) 52 (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) 51 (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) 50 (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) 49 (|has| |#2| (-900 (-1175)))) (($ $ (-771)) 44 (|has| |#2| (-233))) (($ $) 42 (|has| |#2| (-233)))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#2|) 133 (|has| |#2| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 70 (|has| |#2| (-365)))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#2|) 139) (($ |#2| $) 138) ((|#4| $ |#4|) 75) ((|#3| |#3| $) 74)) (-3020 (((-771) $) 106 (|has| $ (-6 -4414)))))
(((-1122 |#1| |#2| |#3| |#4|) (-140) (-771) (-1049) (-238 |t#1| |t#2|) (-238 |t#1| |t#2|)) (T -1122))
-((-3701 (*1 *1 *2) (-12 (-4 *2 (-1049)) (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)))) (-3744 (*1 *1 *2) (-12 (-5 *2 (-644 *4)) (-4 *4 (-1049)) (-4 *1 (-1122 *3 *4 *5 *6)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)))) (-1906 (*1 *2 *1) (-12 (-4 *1 (-1122 *3 *4 *2 *5)) (-4 *4 (-1049)) (-4 *5 (-238 *3 *4)) (-4 *2 (-238 *3 *4)))) (-3817 (*1 *2 *1) (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (-4 *2 (-1049)))) (-2447 (*1 *2 *1) (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (-4 *2 (-1049)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1122 *3 *4 *5 *2)) (-4 *4 (-1049)) (-4 *5 (-238 *3 *4)) (-4 *2 (-238 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1122 *3 *4 *2 *5)) (-4 *4 (-1049)) (-4 *2 (-238 *3 *4)) (-4 *5 (-238 *3 *4)))) (-1595 (*1 *2 *1) (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4419 "*"))) (-4 *2 (-1049)))) (-1299 (*1 *2 *1) (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4419 "*"))) (-4 *2 (-1049)))) (-2565 (*1 *1 *1) (|partial| -12 (-4 *1 (-1122 *2 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-238 *2 *3)) (-4 *5 (-238 *2 *3)) (-4 *3 (-365)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1122 *3 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)) (-4 *4 (-365)))))
-(-13 (-231 |t#2|) (-111 |t#2| |t#2|) (-1053 |t#1| |t#1| |t#2| |t#3| |t#4|) (-413 |t#2|) (-379 |t#2|) (-10 -8 (IF (|has| |t#2| (-172)) (-6 (-717 |t#2|)) |%noBranch|) (-15 -3701 ($ |t#2|)) (-15 -3744 ($ (-644 |t#2|))) (-15 -1906 (|t#3| $)) (-15 -3817 (|t#2| $)) (-15 -2447 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4419 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -1595 (|t#2| $)) (-15 -1299 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-365)) (PROGN (-15 -2565 ((-3 $ "failed") $)) (-15 ** ($ $ (-566)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4419 "*"))) ((-102) . T) ((-111 |#2| |#2|) . T) ((-131) . T) ((-616 #0=(-409 (-566))) |has| |#2| (-1038 (-409 (-566)))) ((-616 (-566)) . T) ((-616 |#2|) . T) ((-613 (-862)) . T) ((-231 |#2|) . T) ((-233) |has| |#2| (-233)) ((-310 |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-379 |#2|) . T) ((-413 |#2|) . T) ((-491 |#2|) . T) ((-516 |#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-646 (-566)) . T) ((-646 |#2|) . T) ((-646 $) . T) ((-648 |#2|) . T) ((-648 $) . T) ((-640 |#2|) -2805 (|has| |#2| (-172)) (|has| |#2| (-6 (-4419 "*")))) ((-639 (-566)) |has| |#2| (-639 (-566))) ((-639 |#2|) . T) ((-717 |#2|) -2805 (|has| |#2| (-172)) (|has| |#2| (-6 (-4419 "*")))) ((-726) . T) ((-900 (-1175)) |has| |#2| (-900 (-1175))) ((-1053 |#1| |#1| |#2| |#3| |#4|) . T) ((-1038 #0#) |has| |#2| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#2| (-1038 (-566))) ((-1038 |#2|) . T) ((-1051 |#2|) . T) ((-1056 |#2|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1214) . T))
-((-3150 ((|#4| |#4|) 81)) (-2869 ((|#4| |#4|) 76)) (-2799 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1990 (-644 |#3|))) |#4| |#3|) 91)) (-3406 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 80)) (-2118 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 78)))
-(((-1123 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2869 (|#4| |#4|)) (-15 -2118 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3150 (|#4| |#4|)) (-15 -3406 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2799 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1990 (-644 |#3|))) |#4| |#3|))) (-308) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|)) (T -1123))
-((-2799 (*1 *2 *3 *4) (-12 (-4 *5 (-308)) (-4 *6 (-375 *5)) (-4 *4 (-375 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4)))) (-5 *1 (-1123 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))) (-3406 (*1 *2 *3) (-12 (-4 *4 (-308)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1123 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-3150 (*1 *2 *2) (-12 (-4 *3 (-308)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-1123 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-2118 (*1 *2 *3) (-12 (-4 *4 (-308)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1123 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-2869 (*1 *2 *2) (-12 (-4 *3 (-308)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-1123 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
-(-10 -7 (-15 -2869 (|#4| |#4|)) (-15 -2118 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3150 (|#4| |#4|)) (-15 -3406 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2799 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1990 (-644 |#3|))) |#4| |#3|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 18)) (-2540 (((-644 |#2|) $) 178)) (-2358 (((-1171 $) $ |#2|) 63) (((-1171 |#1|) $) 52)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 118 (|has| |#1| (-558)))) (-3653 (($ $) 120 (|has| |#1| (-558)))) (-2152 (((-112) $) 122 (|has| |#1| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 |#2|)) 217)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2857 (($ $) NIL (|has| |#1| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) 172) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 |#2| "failed") $) NIL)) (-1756 ((|#1| $) 170) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) ((|#2| $) NIL)) (-1552 (($ $ $ |#2|) NIL (|has| |#1| (-172)))) (-3577 (($ $) 221)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) 92)) (-4248 (($ $) NIL (|has| |#1| (-454))) (($ $ |#2|) NIL (|has| |#1| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#1| (-909)))) (-2804 (($ $ |#1| (-533 |#2|) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| |#1| (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| |#1| (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-2741 (((-112) $) 20)) (-3505 (((-771) $) 30)) (-2530 (($ (-1171 |#1|) |#2|) 57) (($ (-1171 $) |#2|) 74)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) 41)) (-2519 (($ |#1| (-533 |#2|)) 81) (($ $ |#2| (-771)) 61) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ |#2|) NIL)) (-3251 (((-533 |#2|) $) 209) (((-771) $ |#2|) 210) (((-644 (-771)) $ (-644 |#2|)) 211)) (-2132 (($ (-1 (-533 |#2|) (-533 |#2|)) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) 130)) (-3339 (((-3 |#2| "failed") $) 181)) (-3545 (($ $) 220)) (-3557 ((|#1| $) 46)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2878 (((-1157) $) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| |#2|) (|:| -3250 (-771))) "failed") $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) 42)) (-3531 ((|#1| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 150 (|has| |#1| (-454)))) (-2222 (($ (-644 $)) 155 (|has| |#1| (-454))) (($ $ $) 140 (|has| |#1| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2972 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) 128 (|has| |#1| (-558)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ |#2| |#1|) 184) (($ $ (-644 |#2|) (-644 |#1|)) 199) (($ $ |#2| $) 183) (($ $ (-644 |#2|) (-644 $)) 198)) (-2408 (($ $ |#2|) NIL (|has| |#1| (-172)))) (-2862 (($ $ |#2|) 219) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-3992 (((-533 |#2|) $) 205) (((-771) $ |#2|) 200) (((-644 (-771)) $ (-644 |#2|)) 203)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| |#1| (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| |#1| (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| |#1| (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3181 ((|#1| $) 136 (|has| |#1| (-454))) (($ $ |#2|) 139 (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-2512 (((-862) $) 161) (($ (-566)) 86) (($ |#1|) 87) (($ |#2|) 33) (($ $) NIL (|has| |#1| (-558))) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-3868 (((-644 |#1|) $) 164)) (-2022 ((|#1| $ (-533 |#2|)) 83) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) 89 T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) 125 (|has| |#1| (-558)))) (-2485 (($) 12 T CONST)) (-2495 (($) 14 T CONST)) (-2840 (($ $ |#2|) NIL) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-2940 (((-112) $ $) 108)) (-3061 (($ $ |#1|) 134 (|has| |#1| (-365)))) (-3047 (($ $) 95) (($ $ $) 106)) (-3034 (($ $ $) 58)) (** (($ $ (-921)) 112) (($ $ (-771)) 111)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 98) (($ $ $) 75) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 101) (($ $ |#1|) NIL)))
+((-2453 (*1 *1 *2) (-12 (-4 *2 (-1049)) (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)))) (-1664 (*1 *1 *2) (-12 (-5 *2 (-644 *4)) (-4 *4 (-1049)) (-4 *1 (-1122 *3 *4 *5 *6)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)))) (-1978 (*1 *2 *1) (-12 (-4 *1 (-1122 *3 *4 *2 *5)) (-4 *4 (-1049)) (-4 *5 (-238 *3 *4)) (-4 *2 (-238 *3 *4)))) (-3834 (*1 *2 *1) (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (-4 *2 (-1049)))) (-3638 (*1 *2 *1) (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (-4 *2 (-1049)))) (* (*1 *2 *1 *2) (-12 (-4 *1 (-1122 *3 *4 *5 *2)) (-4 *4 (-1049)) (-4 *5 (-238 *3 *4)) (-4 *2 (-238 *3 *4)))) (* (*1 *2 *2 *1) (-12 (-4 *1 (-1122 *3 *4 *2 *5)) (-4 *4 (-1049)) (-4 *2 (-238 *3 *4)) (-4 *5 (-238 *3 *4)))) (-1896 (*1 *2 *1) (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4416 "*"))) (-4 *2 (-1049)))) (-1647 (*1 *2 *1) (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2)) (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4416 "*"))) (-4 *2 (-1049)))) (-2344 (*1 *1 *1) (|partial| -12 (-4 *1 (-1122 *2 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-238 *2 *3)) (-4 *5 (-238 *2 *3)) (-4 *3 (-365)))) (** (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1122 *3 *4 *5 *6)) (-4 *4 (-1049)) (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)) (-4 *4 (-365)))))
+(-13 (-231 |t#2|) (-111 |t#2| |t#2|) (-1053 |t#1| |t#1| |t#2| |t#3| |t#4|) (-413 |t#2|) (-379 |t#2|) (-10 -8 (IF (|has| |t#2| (-172)) (-6 (-717 |t#2|)) |%noBranch|) (-15 -2453 ($ |t#2|)) (-15 -1664 ($ (-644 |t#2|))) (-15 -1978 (|t#3| $)) (-15 -3834 (|t#2| $)) (-15 -3638 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4416 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -1896 (|t#2| $)) (-15 -1647 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-365)) (PROGN (-15 -2344 ((-3 $ "failed") $)) (-15 ** ($ $ (-566)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4416 "*"))) ((-102) . T) ((-111 |#2| |#2|) . T) ((-131) . T) ((-616 #0=(-409 (-566))) |has| |#2| (-1038 (-409 (-566)))) ((-616 (-566)) . T) ((-616 |#2|) . T) ((-613 (-862)) . T) ((-231 |#2|) . T) ((-233) |has| |#2| (-233)) ((-310 |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-379 |#2|) . T) ((-413 |#2|) . T) ((-491 |#2|) . T) ((-516 |#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-646 (-566)) . T) ((-646 |#2|) . T) ((-646 $) . T) ((-648 |#2|) . T) ((-648 $) . T) ((-640 |#2|) -2805 (|has| |#2| (-172)) (|has| |#2| (-6 (-4416 "*")))) ((-639 (-566)) |has| |#2| (-639 (-566))) ((-639 |#2|) . T) ((-717 |#2|) -2805 (|has| |#2| (-172)) (|has| |#2| (-6 (-4416 "*")))) ((-726) . T) ((-900 (-1175)) |has| |#2| (-900 (-1175))) ((-1053 |#1| |#1| |#2| |#3| |#4|) . T) ((-1038 #0#) |has| |#2| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#2| (-1038 (-566))) ((-1038 |#2|) . T) ((-1051 |#2|) . T) ((-1056 |#2|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1214) . T))
+((-4006 ((|#4| |#4|) 81)) (-2302 ((|#4| |#4|) 76)) (-2823 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1575 (-644 |#3|))) |#4| |#3|) 91)) (-1359 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 80)) (-3510 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 78)))
+(((-1123 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2302 (|#4| |#4|)) (-15 -3510 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -4006 (|#4| |#4|)) (-15 -1359 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2823 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1575 (-644 |#3|))) |#4| |#3|))) (-308) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|)) (T -1123))
+((-2823 (*1 *2 *3 *4) (-12 (-4 *5 (-308)) (-4 *6 (-375 *5)) (-4 *4 (-375 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4)))) (-5 *1 (-1123 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))) (-1359 (*1 *2 *3) (-12 (-4 *4 (-308)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3))) (-5 *1 (-1123 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-4006 (*1 *2 *2) (-12 (-4 *3 (-308)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-1123 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-3510 (*1 *2 *3) (-12 (-4 *4 (-308)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4)) (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3))) (-5 *1 (-1123 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))) (-2302 (*1 *2 *2) (-12 (-4 *3 (-308)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-1123 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
+(-10 -7 (-15 -2302 (|#4| |#4|)) (-15 -3510 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -4006 (|#4| |#4|)) (-15 -1359 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2823 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1575 (-644 |#3|))) |#4| |#3|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 18)) (-2608 (((-644 |#2|) $) 178)) (-2438 (((-1171 $) $ |#2|) 63) (((-1171 |#1|) $) 52)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 118 (|has| |#1| (-558)))) (-1968 (($ $) 120 (|has| |#1| (-558)))) (-2644 (((-112) $) 122 (|has| |#1| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 |#2|)) 217)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2179 (($ $) NIL (|has| |#1| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) 172) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 |#2| "failed") $) NIL)) (-1867 ((|#1| $) 170) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) ((|#2| $) NIL)) (-2662 (($ $ $ |#2|) NIL (|has| |#1| (-172)))) (-3645 (($ $) 221)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) 92)) (-2755 (($ $) NIL (|has| |#1| (-454))) (($ $ |#2|) NIL (|has| |#1| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#1| (-909)))) (-2871 (($ $ |#1| (-533 |#2|) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| |#1| (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| |#1| (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-3466 (((-112) $) 20)) (-4230 (((-771) $) 30)) (-2597 (($ (-1171 |#1|) |#2|) 57) (($ (-1171 $) |#2|) 74)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) 41)) (-2585 (($ |#1| (-533 |#2|)) 81) (($ $ |#2| (-771)) 61) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ |#2|) NIL)) (-2466 (((-533 |#2|) $) 209) (((-771) $ |#2|) 210) (((-644 (-771)) $ (-644 |#2|)) 211)) (-2443 (($ (-1 (-533 |#2|) (-533 |#2|)) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) 130)) (-1984 (((-3 |#2| "failed") $) 181)) (-3614 (($ $) 220)) (-3626 ((|#1| $) 46)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2402 (((-1157) $) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| |#2|) (|:| -2456 (-771))) "failed") $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) 42)) (-3604 ((|#1| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 150 (|has| |#1| (-454)))) (-2235 (($ (-644 $)) 155 (|has| |#1| (-454))) (($ $ $) 140 (|has| |#1| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#1| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-909)))) (-2997 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ $) 128 (|has| |#1| (-558)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ |#2| |#1|) 184) (($ $ (-644 |#2|) (-644 |#1|)) 199) (($ $ |#2| $) 183) (($ $ (-644 |#2|) (-644 $)) 198)) (-3309 (($ $ |#2|) NIL (|has| |#1| (-172)))) (-2578 (($ $ |#2|) 219) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-2108 (((-533 |#2|) $) 205) (((-771) $ |#2|) 200) (((-644 (-771)) $ (-644 |#2|)) 203)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| |#1| (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| |#1| (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| |#1| (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3042 ((|#1| $) 136 (|has| |#1| (-454))) (($ $ |#2|) 139 (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-3780 (((-862) $) 161) (($ (-566)) 86) (($ |#1|) 87) (($ |#2|) 33) (($ $) NIL (|has| |#1| (-558))) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-3456 (((-644 |#1|) $) 164)) (-3756 ((|#1| $ (-533 |#2|)) 83) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) 89 T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) 125 (|has| |#1| (-558)))) (-2493 (($) 12 T CONST)) (-4333 (($) 14 T CONST)) (-2876 (($ $ |#2|) NIL) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-2950 (((-112) $ $) 108)) (-3062 (($ $ |#1|) 134 (|has| |#1| (-365)))) (-3051 (($ $) 95) (($ $ $) 106)) (-3040 (($ $ $) 58)) (** (($ $ (-921)) 112) (($ $ (-771)) 111)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 98) (($ $ $) 75) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 101) (($ $ |#1|) NIL)))
(((-1124 |#1| |#2|) (-949 |#1| (-533 |#2|) |#2|) (-1049) (-850)) (T -1124))
NIL
(-949 |#1| (-533 |#2|) |#2|)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 |#2|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-3235 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 128 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3215 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 124 (|has| |#1| (-38 (-409 (-566)))))) (-3259 (($ $) 156 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3768 (((-952 |#1|) $ (-771)) NIL) (((-952 |#1|) $ (-771) (-771)) NIL)) (-4039 (((-112) $) NIL)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-771) $ |#2|) NIL) (((-771) $ |#2| (-771)) NIL)) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4367 (((-112) $) NIL)) (-2519 (($ $ (-644 |#2|) (-644 (-533 |#2|))) NIL) (($ $ |#2| (-533 |#2|)) NIL) (($ |#1| (-533 |#2|)) NIL) (($ $ |#2| (-771)) 63) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3668 (($ $) 122 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4117 (($ $ |#2|) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ |#2| |#1|) 175 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (((-1119) $) NIL)) (-2931 (($ (-1 $) |#2| |#1|) 174 (|has| |#1| (-38 (-409 (-566)))))) (-1938 (($ $ (-771)) 16)) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-3613 (($ $) 120 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (($ $ |#2| $) 106) (($ $ (-644 |#2|) (-644 $)) 99) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL)) (-2862 (($ $ |#2|) 109) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-3992 (((-533 |#2|) $) NIL)) (-2360 (((-1 (-1155 |#3|) |#3|) (-644 |#2|) (-644 (-1155 |#3|))) 87)) (-3267 (($ $) 158 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 126 (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) 18)) (-2512 (((-862) $) 199) (($ (-566)) NIL) (($ |#1|) 45 (|has| |#1| (-172))) (($ $) NIL (|has| |#1| (-558))) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#2|) 70) (($ |#3|) 68)) (-2022 ((|#1| $ (-533 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL) ((|#3| $ (-771)) 43)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) 164 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) 160 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 168 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-1382 (($ $) 170 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 166 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 162 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 52 T CONST)) (-2495 (($) 62 T CONST)) (-2840 (($ $ |#2|) NIL) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) 201 (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 66)) (** (($ $ (-921)) NIL) (($ $ (-771)) 77) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 112 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 65) (($ $ (-409 (-566))) 117 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 115 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 48) (($ $ |#1|) 49) (($ |#3| $) 47)))
-(((-1125 |#1| |#2| |#3|) (-13 (-740 |#1| |#2|) (-10 -8 (-15 -2022 (|#3| $ (-771))) (-15 -2512 ($ |#2|)) (-15 -2512 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -2360 ((-1 (-1155 |#3|) |#3|) (-644 |#2|) (-644 (-1155 |#3|)))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ($ $ |#2| |#1|)) (-15 -2931 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1049) (-850) (-949 |#1| (-533 |#2|) |#2|)) (T -1125))
-((-2022 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *2 (-949 *4 (-533 *5) *5)) (-5 *1 (-1125 *4 *5 *2)) (-4 *4 (-1049)) (-4 *5 (-850)))) (-2512 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-4 *2 (-850)) (-5 *1 (-1125 *3 *2 *4)) (-4 *4 (-949 *3 (-533 *2) *2)))) (-2512 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-4 *4 (-850)) (-5 *1 (-1125 *3 *4 *2)) (-4 *2 (-949 *3 (-533 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-850)) (-5 *1 (-1125 *3 *4 *2)) (-4 *2 (-949 *3 (-533 *4) *4)))) (-2360 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-1155 *7))) (-4 *6 (-850)) (-4 *7 (-949 *5 (-533 *6) *6)) (-4 *5 (-1049)) (-5 *2 (-1 (-1155 *7) *7)) (-5 *1 (-1125 *5 *6 *7)))) (-4117 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-4 *2 (-850)) (-5 *1 (-1125 *3 *2 *4)) (-4 *4 (-949 *3 (-533 *2) *2)))) (-2931 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1125 *4 *3 *5))) (-4 *4 (-38 (-409 (-566)))) (-4 *4 (-1049)) (-4 *3 (-850)) (-5 *1 (-1125 *4 *3 *5)) (-4 *5 (-949 *4 (-533 *3) *3)))))
-(-13 (-740 |#1| |#2|) (-10 -8 (-15 -2022 (|#3| $ (-771))) (-15 -2512 ($ |#2|)) (-15 -2512 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -2360 ((-1 (-1155 |#3|) |#3|) (-644 |#2|) (-644 (-1155 |#3|)))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ($ $ |#2| |#1|)) (-15 -2931 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
-((-2985 (((-112) $ $) 7)) (-2072 (((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 |#4|)))) (-644 |#4|)) 86)) (-1725 (((-644 $) (-644 |#4|)) 87) (((-644 $) (-644 |#4|) (-112)) 112)) (-2540 (((-644 |#3|) $) 34)) (-2598 (((-112) $) 27)) (-2740 (((-112) $) 18 (|has| |#1| (-558)))) (-4390 (((-112) |#4| $) 102) (((-112) $) 98)) (-3761 ((|#4| |#4| $) 93)) (-2857 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| $) 127)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) 28)) (-3081 (((-112) $ (-771)) 45)) (-4186 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4417))) (((-3 |#4| "failed") $ |#3|) 80)) (-2342 (($) 46 T CONST)) (-4179 (((-112) $) 23 (|has| |#1| (-558)))) (-4184 (((-112) $ $) 25 (|has| |#1| (-558)))) (-1576 (((-112) $ $) 24 (|has| |#1| (-558)))) (-2398 (((-112) $) 26 (|has| |#1| (-558)))) (-3772 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2380 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) 37)) (-1756 (($ (-644 |#4|)) 36)) (-4076 (((-3 $ "failed") $) 83)) (-2668 ((|#4| |#4| $) 90)) (-4093 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-4200 ((|#4| |#4| $) 88)) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4417))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-3810 (((-2 (|:| -1673 (-644 |#4|)) (|:| -3509 (-644 |#4|))) $) 106)) (-3422 (((-112) |#4| $) 137)) (-2192 (((-112) |#4| $) 134)) (-1602 (((-112) |#4| $) 138) (((-112) $) 135)) (-3372 (((-644 |#4|) $) 53 (|has| $ (-6 -4417)))) (-4260 (((-112) |#4| $) 105) (((-112) $) 104)) (-1594 ((|#3| $) 35)) (-2744 (((-112) $ (-771)) 44)) (-2404 (((-644 |#4|) $) 54 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) 48)) (-3097 (((-644 |#3|) $) 33)) (-3492 (((-112) |#3| $) 32)) (-3882 (((-112) $ (-771)) 43)) (-2878 (((-1157) $) 10)) (-2501 (((-3 |#4| (-644 $)) |#4| |#4| $) 129)) (-1624 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| |#4| $) 128)) (-2670 (((-3 |#4| "failed") $) 84)) (-2909 (((-644 $) |#4| $) 130)) (-4343 (((-3 (-112) (-644 $)) |#4| $) 133)) (-2620 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2390 (((-644 $) |#4| $) 126) (((-644 $) (-644 |#4|) $) 125) (((-644 $) (-644 |#4|) (-644 $)) 124) (((-644 $) |#4| (-644 $)) 123)) (-1937 (($ |#4| $) 118) (($ (-644 |#4|) $) 117)) (-1798 (((-644 |#4|) $) 108)) (-3377 (((-112) |#4| $) 100) (((-112) $) 96)) (-1687 ((|#4| |#4| $) 91)) (-2343 (((-112) $ $) 111)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-3257 (((-112) |#4| $) 101) (((-112) $) 97)) (-2930 ((|#4| |#4| $) 92)) (-4033 (((-1119) $) 11)) (-4062 (((-3 |#4| "failed") $) 85)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1583 (((-3 $ "failed") $ |#4|) 79)) (-1938 (($ $ |#4|) 78) (((-644 $) |#4| $) 116) (((-644 $) |#4| (-644 $)) 115) (((-644 $) (-644 |#4|) $) 114) (((-644 $) (-644 |#4|) (-644 $)) 113)) (-2822 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) 39)) (-4194 (((-112) $) 42)) (-2954 (($) 41)) (-3992 (((-771) $) 107)) (-4044 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4417)))) (-3895 (($ $) 40)) (-3134 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-2523 (($ (-644 |#4|)) 61)) (-1945 (($ $ |#3|) 29)) (-1398 (($ $ |#3|) 31)) (-2280 (($ $) 89)) (-4287 (($ $ |#3|) 30)) (-2512 (((-862) $) 12) (((-644 |#4|) $) 38)) (-2748 (((-771) $) 77 (|has| |#3| (-370)))) (-3122 (((-112) $ $) 9)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3130 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) 99)) (-1848 (((-644 $) |#4| $) 122) (((-644 $) |#4| (-644 $)) 121) (((-644 $) (-644 |#4|) $) 120) (((-644 $) (-644 |#4|) (-644 $)) 119)) (-3427 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4417)))) (-1427 (((-644 |#3|) $) 82)) (-1737 (((-112) |#4| $) 136)) (-1369 (((-112) |#3| $) 81)) (-2940 (((-112) $ $) 6)) (-2997 (((-771) $) 47 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 |#2|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2865 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 128 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2843 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 124 (|has| |#1| (-38 (-409 (-566)))))) (-2888 (($ $) 156 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-4215 (((-952 |#1|) $ (-771)) NIL) (((-952 |#1|) $ (-771) (-771)) NIL)) (-4392 (((-112) $) NIL)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-771) $ |#2|) NIL) (((-771) $ |#2| (-771)) NIL)) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1453 (((-112) $) NIL)) (-2585 (($ $ (-644 |#2|) (-644 (-533 |#2|))) NIL) (($ $ |#2| (-533 |#2|)) NIL) (($ |#1| (-533 |#2|)) NIL) (($ $ |#2| (-771)) 63) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3671 (($ $) 122 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-3921 (($ $ |#2|) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ |#2| |#1|) 175 (|has| |#1| (-38 (-409 (-566)))))) (-4056 (((-1119) $) NIL)) (-1684 (($ (-1 $) |#2| |#1|) 174 (|has| |#1| (-38 (-409 (-566)))))) (-2295 (($ $ (-771)) 16)) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-4337 (($ $) 120 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (($ $ |#2| $) 106) (($ $ (-644 |#2|) (-644 $)) 99) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL)) (-2578 (($ $ |#2|) 109) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-2108 (((-533 |#2|) $) NIL)) (-4049 (((-1 (-1155 |#3|) |#3|) (-644 |#2|) (-644 (-1155 |#3|))) 87)) (-2897 (($ $) 158 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 126 (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) 18)) (-3780 (((-862) $) 199) (($ (-566)) NIL) (($ |#1|) 45 (|has| |#1| (-172))) (($ $) NIL (|has| |#1| (-558))) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#2|) 70) (($ |#3|) 68)) (-3756 ((|#1| $ (-533 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL) ((|#3| $ (-771)) 43)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) 164 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) 160 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 168 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3181 (($ $) 170 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 166 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 162 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 52 T CONST)) (-4333 (($) 62 T CONST)) (-2876 (($ $ |#2|) NIL) (($ $ (-644 |#2|)) NIL) (($ $ |#2| (-771)) NIL) (($ $ (-644 |#2|) (-644 (-771))) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) 201 (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 66)) (** (($ $ (-921)) NIL) (($ $ (-771)) 77) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 112 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 65) (($ $ (-409 (-566))) 117 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 115 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 48) (($ $ |#1|) 49) (($ |#3| $) 47)))
+(((-1125 |#1| |#2| |#3|) (-13 (-740 |#1| |#2|) (-10 -8 (-15 -3756 (|#3| $ (-771))) (-15 -3780 ($ |#2|)) (-15 -3780 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -4049 ((-1 (-1155 |#3|) |#3|) (-644 |#2|) (-644 (-1155 |#3|)))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ($ $ |#2| |#1|)) (-15 -1684 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1049) (-850) (-949 |#1| (-533 |#2|) |#2|)) (T -1125))
+((-3756 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *2 (-949 *4 (-533 *5) *5)) (-5 *1 (-1125 *4 *5 *2)) (-4 *4 (-1049)) (-4 *5 (-850)))) (-3780 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-4 *2 (-850)) (-5 *1 (-1125 *3 *2 *4)) (-4 *4 (-949 *3 (-533 *2) *2)))) (-3780 (*1 *1 *2) (-12 (-4 *3 (-1049)) (-4 *4 (-850)) (-5 *1 (-1125 *3 *4 *2)) (-4 *2 (-949 *3 (-533 *4) *4)))) (* (*1 *1 *2 *1) (-12 (-4 *3 (-1049)) (-4 *4 (-850)) (-5 *1 (-1125 *3 *4 *2)) (-4 *2 (-949 *3 (-533 *4) *4)))) (-4049 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-1155 *7))) (-4 *6 (-850)) (-4 *7 (-949 *5 (-533 *6) *6)) (-4 *5 (-1049)) (-5 *2 (-1 (-1155 *7) *7)) (-5 *1 (-1125 *5 *6 *7)))) (-3921 (*1 *1 *1 *2 *3) (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-4 *2 (-850)) (-5 *1 (-1125 *3 *2 *4)) (-4 *4 (-949 *3 (-533 *2) *2)))) (-1684 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1125 *4 *3 *5))) (-4 *4 (-38 (-409 (-566)))) (-4 *4 (-1049)) (-4 *3 (-850)) (-5 *1 (-1125 *4 *3 *5)) (-4 *5 (-949 *4 (-533 *3) *3)))))
+(-13 (-740 |#1| |#2|) (-10 -8 (-15 -3756 (|#3| $ (-771))) (-15 -3780 ($ |#2|)) (-15 -3780 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -4049 ((-1 (-1155 |#3|) |#3|) (-644 |#2|) (-644 (-1155 |#3|)))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ($ $ |#2| |#1|)) (-15 -1684 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
+((-3009 (((-112) $ $) 7)) (-3043 (((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 |#4|)))) (-644 |#4|)) 86)) (-3804 (((-644 $) (-644 |#4|)) 87) (((-644 $) (-644 |#4|) (-112)) 112)) (-2608 (((-644 |#3|) $) 34)) (-1390 (((-112) $) 27)) (-3455 (((-112) $) 18 (|has| |#1| (-558)))) (-1702 (((-112) |#4| $) 102) (((-112) $) 98)) (-3713 ((|#4| |#4| $) 93)) (-2179 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| $) 127)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) 28)) (-1574 (((-112) $ (-771)) 45)) (-1386 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4414))) (((-3 |#4| "failed") $ |#3|) 80)) (-3877 (($) 46 T CONST)) (-3310 (((-112) $) 23 (|has| |#1| (-558)))) (-3367 (((-112) $ $) 25 (|has| |#1| (-558)))) (-2895 (((-112) $ $) 24 (|has| |#1| (-558)))) (-3219 (((-112) $) 26 (|has| |#1| (-558)))) (-3790 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-4239 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) 37)) (-1867 (($ (-644 |#4|)) 36)) (-4112 (((-3 $ "failed") $) 83)) (-3963 ((|#4| |#4| $) 90)) (-4133 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-1991 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-3517 ((|#4| |#4| $) 88)) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4414))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-4143 (((-2 (|:| -1713 (-644 |#4|)) (|:| -3537 (-644 |#4|))) $) 106)) (-1535 (((-112) |#4| $) 137)) (-2976 (((-112) |#4| $) 134)) (-1961 (((-112) |#4| $) 138) (((-112) $) 135)) (-3799 (((-644 |#4|) $) 53 (|has| $ (-6 -4414)))) (-2848 (((-112) |#4| $) 105) (((-112) $) 104)) (-1887 ((|#3| $) 35)) (-3501 (((-112) $ (-771)) 44)) (-3276 (((-644 |#4|) $) 54 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) 48)) (-1711 (((-644 |#3|) $) 33)) (-4113 (((-112) |#3| $) 32)) (-3582 (((-112) $ (-771)) 43)) (-2402 (((-1157) $) 10)) (-2924 (((-3 |#4| (-644 $)) |#4| |#4| $) 129)) (-2165 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| |#4| $) 128)) (-2680 (((-3 |#4| "failed") $) 84)) (-1468 (((-644 $) |#4| $) 130)) (-2487 (((-3 (-112) (-644 $)) |#4| $) 133)) (-1627 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-3147 (((-644 $) |#4| $) 126) (((-644 $) (-644 |#4|) $) 125) (((-644 $) (-644 |#4|) (-644 $)) 124) (((-644 $) |#4| (-644 $)) 123)) (-2284 (($ |#4| $) 118) (($ (-644 |#4|) $) 117)) (-3329 (((-644 |#4|) $) 108)) (-2337 (((-112) |#4| $) 100) (((-112) $) 96)) (-1569 ((|#4| |#4| $) 91)) (-3886 (((-112) $ $) 111)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $) 101) (((-112) $) 97)) (-1671 ((|#4| |#4| $) 92)) (-4056 (((-1119) $) 11)) (-4101 (((-3 |#4| "failed") $) 85)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1775 (((-3 $ "failed") $ |#4|) 79)) (-2295 (($ $ |#4|) 78) (((-644 $) |#4| $) 116) (((-644 $) |#4| (-644 $)) 115) (((-644 $) (-644 |#4|) $) 114) (((-644 $) (-644 |#4|) (-644 $)) 113)) (-3044 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) 39)) (-3461 (((-112) $) 42)) (-1793 (($) 41)) (-2108 (((-771) $) 107)) (-4067 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4414)))) (-3940 (($ $) 40)) (-3204 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-3791 (($ (-644 |#4|)) 61)) (-2363 (($ $ |#3|) 29)) (-3513 (($ $ |#3|) 31)) (-1360 (($ $) 89)) (-3130 (($ $ |#3|) 30)) (-3780 (((-862) $) 12) (((-644 |#4|) $) 38)) (-3542 (((-771) $) 77 (|has| |#3| (-370)))) (-3801 (((-112) $ $) 9)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3870 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) 99)) (-2607 (((-644 $) |#4| $) 122) (((-644 $) |#4| (-644 $)) 121) (((-644 $) (-644 |#4|) $) 120) (((-644 $) (-644 |#4|) (-644 $)) 119)) (-1583 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4414)))) (-3830 (((-644 |#3|) $) 82)) (-3917 (((-112) |#4| $) 136)) (-3258 (((-112) |#3| $) 81)) (-2950 (((-112) $ $) 6)) (-3020 (((-771) $) 47 (|has| $ (-6 -4414)))))
(((-1126 |#1| |#2| |#3| |#4|) (-140) (-454) (-793) (-850) (-1064 |t#1| |t#2| |t#3|)) (T -1126))
NIL
(-13 (-1108 |t#1| |t#2| |t#3| |t#4|) (-784 |t#1| |t#2| |t#3| |t#4|))
(((-34) . T) ((-102) . T) ((-613 (-644 |#4|)) . T) ((-613 (-862)) . T) ((-151 |#4|) . T) ((-614 (-538)) |has| |#4| (-614 (-538))) ((-310 |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-491 |#4|) . T) ((-516 |#4| |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-784 |#1| |#2| |#3| |#4|) . T) ((-976 |#1| |#2| |#3| |#4|) . T) ((-1070 |#1| |#2| |#3| |#4|) . T) ((-1099) . T) ((-1108 |#1| |#2| |#3| |#4|) . T) ((-1207 |#1| |#2| |#3| |#4|) . T) ((-1214) . T))
-((-2371 (((-644 |#2|) |#1|) 15)) (-2520 (((-644 |#2|) |#2| |#2| |#2| |#2| |#2|) 47) (((-644 |#2|) |#1|) 63)) (-1833 (((-644 |#2|) |#2| |#2| |#2|) 45) (((-644 |#2|) |#1|) 61)) (-1462 ((|#2| |#1|) 56)) (-2925 (((-2 (|:| |solns| (-644 |#2|)) (|:| |maps| (-644 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 20)) (-3749 (((-644 |#2|) |#2| |#2|) 42) (((-644 |#2|) |#1|) 60)) (-4218 (((-644 |#2|) |#2| |#2| |#2| |#2|) 46) (((-644 |#2|) |#1|) 62)) (-1447 ((|#2| |#2| |#2| |#2| |#2| |#2|) 55)) (-3078 ((|#2| |#2| |#2| |#2|) 53)) (-3446 ((|#2| |#2| |#2|) 52)) (-3563 ((|#2| |#2| |#2| |#2| |#2|) 54)))
-(((-1127 |#1| |#2|) (-10 -7 (-15 -2371 ((-644 |#2|) |#1|)) (-15 -1462 (|#2| |#1|)) (-15 -2925 ((-2 (|:| |solns| (-644 |#2|)) (|:| |maps| (-644 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3749 ((-644 |#2|) |#1|)) (-15 -1833 ((-644 |#2|) |#1|)) (-15 -4218 ((-644 |#2|) |#1|)) (-15 -2520 ((-644 |#2|) |#1|)) (-15 -3749 ((-644 |#2|) |#2| |#2|)) (-15 -1833 ((-644 |#2|) |#2| |#2| |#2|)) (-15 -4218 ((-644 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2520 ((-644 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -3446 (|#2| |#2| |#2|)) (-15 -3078 (|#2| |#2| |#2| |#2|)) (-15 -3563 (|#2| |#2| |#2| |#2| |#2|)) (-15 -1447 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1240 |#2|) (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (T -1127))
-((-1447 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))) (-3563 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))) (-3078 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))) (-3446 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))) (-2520 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))) (-4218 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))) (-1833 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))) (-3749 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))) (-2520 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4)))) (-4218 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4)))) (-1833 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4)))) (-3749 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4)))) (-2925 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-2 (|:| |solns| (-644 *5)) (|:| |maps| (-644 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1127 *3 *5)) (-4 *3 (-1240 *5)))) (-1462 (*1 *2 *3) (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))) (-2371 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4)))))
-(-10 -7 (-15 -2371 ((-644 |#2|) |#1|)) (-15 -1462 (|#2| |#1|)) (-15 -2925 ((-2 (|:| |solns| (-644 |#2|)) (|:| |maps| (-644 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3749 ((-644 |#2|) |#1|)) (-15 -1833 ((-644 |#2|) |#1|)) (-15 -4218 ((-644 |#2|) |#1|)) (-15 -2520 ((-644 |#2|) |#1|)) (-15 -3749 ((-644 |#2|) |#2| |#2|)) (-15 -1833 ((-644 |#2|) |#2| |#2| |#2|)) (-15 -4218 ((-644 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2520 ((-644 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -3446 (|#2| |#2| |#2|)) (-15 -3078 (|#2| |#2| |#2| |#2|)) (-15 -3563 (|#2| |#2| |#2| |#2| |#2|)) (-15 -1447 (|#2| |#2| |#2| |#2| |#2| |#2|)))
-((-3179 (((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|))))) 124) (((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175))) 123) (((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|)))) 121) (((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|))) (-644 (-1175))) 119) (((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|)))) 97) (((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|))) (-1175)) 98) (((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|))) 92) (((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|)) (-1175)) 82)) (-2827 (((-644 (-644 (-317 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175))) 117) (((-644 (-317 |#1|)) (-409 (-952 |#1|)) (-1175)) 54)) (-3976 (((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-409 (-952 |#1|)) (-1175)) 128) (((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175)) 127)))
-(((-1128 |#1|) (-10 -7 (-15 -3179 ((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -3179 ((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|)))) (-15 -3179 ((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -3179 ((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|))))) (-15 -3179 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -3179 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|))))) (-15 -3179 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175)))) (-15 -3179 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -2827 ((-644 (-317 |#1|)) (-409 (-952 |#1|)) (-1175))) (-15 -2827 ((-644 (-644 (-317 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -3976 ((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -3976 ((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-409 (-952 |#1|)) (-1175)))) (-13 (-308) (-147))) (T -1128))
-((-3976 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-1164 (-644 (-317 *5)) (-644 (-295 (-317 *5))))) (-5 *1 (-1128 *5)))) (-3976 (*1 *2 *3 *4) (-12 (-5 *3 (-295 (-409 (-952 *5)))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-1164 (-644 (-317 *5)) (-644 (-295 (-317 *5))))) (-5 *1 (-1128 *5)))) (-2827 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175))) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-317 *5)))) (-5 *1 (-1128 *5)))) (-2827 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-317 *5))) (-5 *1 (-1128 *5)))) (-3179 (*1 *2 *3) (-12 (-5 *3 (-644 (-295 (-409 (-952 *4))))) (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *4))))) (-5 *1 (-1128 *4)))) (-3179 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-295 (-409 (-952 *5))))) (-5 *4 (-644 (-1175))) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *5))))) (-5 *1 (-1128 *5)))) (-3179 (*1 *2 *3) (-12 (-5 *3 (-644 (-409 (-952 *4)))) (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *4))))) (-5 *1 (-1128 *4)))) (-3179 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175))) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *5))))) (-5 *1 (-1128 *5)))) (-3179 (*1 *2 *3) (-12 (-5 *3 (-295 (-409 (-952 *4)))) (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1128 *4)))) (-3179 (*1 *2 *3 *4) (-12 (-5 *3 (-295 (-409 (-952 *5)))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1128 *5)))) (-3179 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1128 *4)))) (-3179 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1128 *5)))))
-(-10 -7 (-15 -3179 ((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -3179 ((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|)))) (-15 -3179 ((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -3179 ((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|))))) (-15 -3179 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -3179 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|))))) (-15 -3179 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175)))) (-15 -3179 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -2827 ((-644 (-317 |#1|)) (-409 (-952 |#1|)) (-1175))) (-15 -2827 ((-644 (-644 (-317 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -3976 ((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -3976 ((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-409 (-952 |#1|)) (-1175))))
-((-3117 (((-409 (-1171 (-317 |#1|))) (-1264 (-317 |#1|)) (-409 (-1171 (-317 |#1|))) (-566)) 38)) (-2261 (((-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|)))) 49)))
-(((-1129 |#1|) (-10 -7 (-15 -2261 ((-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))))) (-15 -3117 ((-409 (-1171 (-317 |#1|))) (-1264 (-317 |#1|)) (-409 (-1171 (-317 |#1|))) (-566)))) (-558)) (T -1129))
-((-3117 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-409 (-1171 (-317 *5)))) (-5 *3 (-1264 (-317 *5))) (-5 *4 (-566)) (-4 *5 (-558)) (-5 *1 (-1129 *5)))) (-2261 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-409 (-1171 (-317 *3)))) (-4 *3 (-558)) (-5 *1 (-1129 *3)))))
-(-10 -7 (-15 -2261 ((-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))))) (-15 -3117 ((-409 (-1171 (-317 |#1|))) (-1264 (-317 |#1|)) (-409 (-1171 (-317 |#1|))) (-566))))
-((-2371 (((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-317 |#1|))) (-644 (-1175))) 250) (((-644 (-295 (-317 |#1|))) (-317 |#1|) (-1175)) 23) (((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|)) (-1175)) 29) (((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|))) 28) (((-644 (-295 (-317 |#1|))) (-317 |#1|)) 24)))
-(((-1130 |#1|) (-10 -7 (-15 -2371 ((-644 (-295 (-317 |#1|))) (-317 |#1|))) (-15 -2371 ((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|)))) (-15 -2371 ((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|)) (-1175))) (-15 -2371 ((-644 (-295 (-317 |#1|))) (-317 |#1|) (-1175))) (-15 -2371 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-317 |#1|))) (-644 (-1175))))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (T -1130))
-((-2371 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-1175))) (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *5))))) (-5 *1 (-1130 *5)) (-5 *3 (-644 (-295 (-317 *5)))))) (-2371 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1130 *5)) (-5 *3 (-317 *5)))) (-2371 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1130 *5)) (-5 *3 (-295 (-317 *5))))) (-2371 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1130 *4)) (-5 *3 (-295 (-317 *4))))) (-2371 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1130 *4)) (-5 *3 (-317 *4)))))
-(-10 -7 (-15 -2371 ((-644 (-295 (-317 |#1|))) (-317 |#1|))) (-15 -2371 ((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|)))) (-15 -2371 ((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|)) (-1175))) (-15 -2371 ((-644 (-295 (-317 |#1|))) (-317 |#1|) (-1175))) (-15 -2371 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-317 |#1|))) (-644 (-1175)))))
-((-2627 ((|#2| |#2|) 30 (|has| |#1| (-850))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 27)) (-1613 ((|#2| |#2|) 29 (|has| |#1| (-850))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 22)))
-(((-1131 |#1| |#2|) (-10 -7 (-15 -1613 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -2627 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-850)) (PROGN (-15 -1613 (|#2| |#2|)) (-15 -2627 (|#2| |#2|))) |%noBranch|)) (-1214) (-13 (-604 (-566) |#1|) (-10 -7 (-6 -4417) (-6 -4418)))) (T -1131))
-((-2627 (*1 *2 *2) (-12 (-4 *3 (-850)) (-4 *3 (-1214)) (-5 *1 (-1131 *3 *2)) (-4 *2 (-13 (-604 (-566) *3) (-10 -7 (-6 -4417) (-6 -4418)))))) (-1613 (*1 *2 *2) (-12 (-4 *3 (-850)) (-4 *3 (-1214)) (-5 *1 (-1131 *3 *2)) (-4 *2 (-13 (-604 (-566) *3) (-10 -7 (-6 -4417) (-6 -4418)))))) (-2627 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-1131 *4 *2)) (-4 *2 (-13 (-604 (-566) *4) (-10 -7 (-6 -4417) (-6 -4418)))))) (-1613 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-1131 *4 *2)) (-4 *2 (-13 (-604 (-566) *4) (-10 -7 (-6 -4417) (-6 -4418)))))))
-(-10 -7 (-15 -1613 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -2627 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-850)) (PROGN (-15 -1613 (|#2| |#2|)) (-15 -2627 (|#2| |#2|))) |%noBranch|))
-((-2985 (((-112) $ $) NIL)) (-2448 (((-1163 3 |#1|) $) 141)) (-2662 (((-112) $) 101)) (-1976 (($ $ (-644 (-943 |#1|))) 44) (($ $ (-644 (-644 |#1|))) 104) (($ (-644 (-943 |#1|))) 103) (((-644 (-943 |#1|)) $) 102)) (-3962 (((-112) $) 72)) (-1372 (($ $ (-943 |#1|)) 76) (($ $ (-644 |#1|)) 81) (($ $ (-771)) 83) (($ (-943 |#1|)) 77) (((-943 |#1|) $) 75)) (-3296 (((-2 (|:| -1917 (-771)) (|:| |curves| (-771)) (|:| |polygons| (-771)) (|:| |constructs| (-771))) $) 139)) (-4296 (((-771) $) 53)) (-4302 (((-771) $) 52)) (-1888 (($ $ (-771) (-943 |#1|)) 67)) (-3535 (((-112) $) 111)) (-4131 (($ $ (-644 (-644 (-943 |#1|))) (-644 (-171)) (-171)) 118) (($ $ (-644 (-644 (-644 |#1|))) (-644 (-171)) (-171)) 120) (($ $ (-644 (-644 (-943 |#1|))) (-112) (-112)) 115) (($ $ (-644 (-644 (-644 |#1|))) (-112) (-112)) 127) (($ (-644 (-644 (-943 |#1|)))) 116) (($ (-644 (-644 (-943 |#1|))) (-112) (-112)) 117) (((-644 (-644 (-943 |#1|))) $) 114)) (-3132 (($ (-644 $)) 56) (($ $ $) 57)) (-1413 (((-644 (-171)) $) 133)) (-3740 (((-644 (-943 |#1|)) $) 130)) (-2941 (((-644 (-644 (-171))) $) 132)) (-1769 (((-644 (-644 (-644 (-943 |#1|)))) $) NIL)) (-3898 (((-644 (-644 (-644 (-771)))) $) 131)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2737 (((-771) $ (-644 (-943 |#1|))) 65)) (-4078 (((-112) $) 84)) (-2136 (($ $ (-644 (-943 |#1|))) 86) (($ $ (-644 (-644 |#1|))) 92) (($ (-644 (-943 |#1|))) 87) (((-644 (-943 |#1|)) $) 85)) (-1653 (($) 48) (($ (-1163 3 |#1|)) 49)) (-3895 (($ $) 63)) (-2106 (((-644 $) $) 62)) (-4293 (($ (-644 $)) 59)) (-2963 (((-644 $) $) 61)) (-2512 (((-862) $) 146)) (-2967 (((-112) $) 94)) (-2257 (($ $ (-644 (-943 |#1|))) 96) (($ $ (-644 (-644 |#1|))) 99) (($ (-644 (-943 |#1|))) 97) (((-644 (-943 |#1|)) $) 95)) (-2694 (($ $) 140)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-4159 (((-644 |#2|) |#1|) 15)) (-1895 (((-644 |#2|) |#2| |#2| |#2| |#2| |#2|) 47) (((-644 |#2|) |#1|) 63)) (-2451 (((-644 |#2|) |#2| |#2| |#2|) 45) (((-644 |#2|) |#1|) 61)) (-2951 ((|#2| |#1|) 56)) (-1622 (((-2 (|:| |solns| (-644 |#2|)) (|:| |maps| (-644 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 20)) (-4197 (((-644 |#2|) |#2| |#2|) 42) (((-644 |#2|) |#1|) 60)) (-3700 (((-644 |#2|) |#2| |#2| |#2| |#2|) 46) (((-644 |#2|) |#1|) 62)) (-4028 ((|#2| |#2| |#2| |#2| |#2| |#2|) 55)) (-1540 ((|#2| |#2| |#2| |#2|) 53)) (-1800 ((|#2| |#2| |#2|) 52)) (-3535 ((|#2| |#2| |#2| |#2| |#2|) 54)))
+(((-1127 |#1| |#2|) (-10 -7 (-15 -4159 ((-644 |#2|) |#1|)) (-15 -2951 (|#2| |#1|)) (-15 -1622 ((-2 (|:| |solns| (-644 |#2|)) (|:| |maps| (-644 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -4197 ((-644 |#2|) |#1|)) (-15 -2451 ((-644 |#2|) |#1|)) (-15 -3700 ((-644 |#2|) |#1|)) (-15 -1895 ((-644 |#2|) |#1|)) (-15 -4197 ((-644 |#2|) |#2| |#2|)) (-15 -2451 ((-644 |#2|) |#2| |#2| |#2|)) (-15 -3700 ((-644 |#2|) |#2| |#2| |#2| |#2|)) (-15 -1895 ((-644 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1800 (|#2| |#2| |#2|)) (-15 -1540 (|#2| |#2| |#2| |#2|)) (-15 -3535 (|#2| |#2| |#2| |#2| |#2|)) (-15 -4028 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1240 |#2|) (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (T -1127))
+((-4028 (*1 *2 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))) (-3535 (*1 *2 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))) (-1540 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))) (-1800 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))) (-1895 (*1 *2 *3 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))) (-3700 (*1 *2 *3 *3 *3 *3) (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))) (-2451 (*1 *2 *3 *3 *3) (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))) (-4197 (*1 *2 *3 *3) (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))) (-1895 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4)))) (-3700 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4)))) (-2451 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4)))) (-4197 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4)))) (-1622 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *5 *5)) (-4 *5 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-2 (|:| |solns| (-644 *5)) (|:| |maps| (-644 (-2 (|:| |arg| *5) (|:| |res| *5)))))) (-5 *1 (-1127 *3 *5)) (-4 *3 (-1240 *5)))) (-2951 (*1 *2 *3) (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))) (-4159 (*1 *2 *3) (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566))))))) (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4)))))
+(-10 -7 (-15 -4159 ((-644 |#2|) |#1|)) (-15 -2951 (|#2| |#1|)) (-15 -1622 ((-2 (|:| |solns| (-644 |#2|)) (|:| |maps| (-644 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -4197 ((-644 |#2|) |#1|)) (-15 -2451 ((-644 |#2|) |#1|)) (-15 -3700 ((-644 |#2|) |#1|)) (-15 -1895 ((-644 |#2|) |#1|)) (-15 -4197 ((-644 |#2|) |#2| |#2|)) (-15 -2451 ((-644 |#2|) |#2| |#2| |#2|)) (-15 -3700 ((-644 |#2|) |#2| |#2| |#2| |#2|)) (-15 -1895 ((-644 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -1800 (|#2| |#2| |#2|)) (-15 -1540 (|#2| |#2| |#2| |#2|)) (-15 -3535 (|#2| |#2| |#2| |#2| |#2|)) (-15 -4028 (|#2| |#2| |#2| |#2| |#2| |#2|)))
+((-4216 (((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|))))) 124) (((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175))) 123) (((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|)))) 121) (((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|))) (-644 (-1175))) 119) (((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|)))) 97) (((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|))) (-1175)) 98) (((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|))) 92) (((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|)) (-1175)) 82)) (-1890 (((-644 (-644 (-317 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175))) 117) (((-644 (-317 |#1|)) (-409 (-952 |#1|)) (-1175)) 54)) (-1954 (((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-409 (-952 |#1|)) (-1175)) 128) (((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175)) 127)))
+(((-1128 |#1|) (-10 -7 (-15 -4216 ((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -4216 ((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|)))) (-15 -4216 ((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -4216 ((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|))))) (-15 -4216 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -4216 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|))))) (-15 -4216 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175)))) (-15 -4216 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -1890 ((-644 (-317 |#1|)) (-409 (-952 |#1|)) (-1175))) (-15 -1890 ((-644 (-644 (-317 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -1954 ((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -1954 ((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-409 (-952 |#1|)) (-1175)))) (-13 (-308) (-147))) (T -1128))
+((-1954 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-1164 (-644 (-317 *5)) (-644 (-295 (-317 *5))))) (-5 *1 (-1128 *5)))) (-1954 (*1 *2 *3 *4) (-12 (-5 *3 (-295 (-409 (-952 *5)))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-1164 (-644 (-317 *5)) (-644 (-295 (-317 *5))))) (-5 *1 (-1128 *5)))) (-1890 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175))) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-317 *5)))) (-5 *1 (-1128 *5)))) (-1890 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-317 *5))) (-5 *1 (-1128 *5)))) (-4216 (*1 *2 *3) (-12 (-5 *3 (-644 (-295 (-409 (-952 *4))))) (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *4))))) (-5 *1 (-1128 *4)))) (-4216 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-295 (-409 (-952 *5))))) (-5 *4 (-644 (-1175))) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *5))))) (-5 *1 (-1128 *5)))) (-4216 (*1 *2 *3) (-12 (-5 *3 (-644 (-409 (-952 *4)))) (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *4))))) (-5 *1 (-1128 *4)))) (-4216 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175))) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *5))))) (-5 *1 (-1128 *5)))) (-4216 (*1 *2 *3) (-12 (-5 *3 (-295 (-409 (-952 *4)))) (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1128 *4)))) (-4216 (*1 *2 *3 *4) (-12 (-5 *3 (-295 (-409 (-952 *5)))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1128 *5)))) (-4216 (*1 *2 *3) (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1128 *4)))) (-4216 (*1 *2 *3 *4) (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1128 *5)))))
+(-10 -7 (-15 -4216 ((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|)) (-1175))) (-15 -4216 ((-644 (-295 (-317 |#1|))) (-409 (-952 |#1|)))) (-15 -4216 ((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -4216 ((-644 (-295 (-317 |#1|))) (-295 (-409 (-952 |#1|))))) (-15 -4216 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -4216 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-409 (-952 |#1|))))) (-15 -4216 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175)))) (-15 -4216 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -1890 ((-644 (-317 |#1|)) (-409 (-952 |#1|)) (-1175))) (-15 -1890 ((-644 (-644 (-317 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -1954 ((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -1954 ((-1164 (-644 (-317 |#1|)) (-644 (-295 (-317 |#1|)))) (-409 (-952 |#1|)) (-1175))))
+((-3747 (((-409 (-1171 (-317 |#1|))) (-1264 (-317 |#1|)) (-409 (-1171 (-317 |#1|))) (-566)) 38)) (-4276 (((-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|)))) 49)))
+(((-1129 |#1|) (-10 -7 (-15 -4276 ((-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))))) (-15 -3747 ((-409 (-1171 (-317 |#1|))) (-1264 (-317 |#1|)) (-409 (-1171 (-317 |#1|))) (-566)))) (-558)) (T -1129))
+((-3747 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-409 (-1171 (-317 *5)))) (-5 *3 (-1264 (-317 *5))) (-5 *4 (-566)) (-4 *5 (-558)) (-5 *1 (-1129 *5)))) (-4276 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-409 (-1171 (-317 *3)))) (-4 *3 (-558)) (-5 *1 (-1129 *3)))))
+(-10 -7 (-15 -4276 ((-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))) (-409 (-1171 (-317 |#1|))))) (-15 -3747 ((-409 (-1171 (-317 |#1|))) (-1264 (-317 |#1|)) (-409 (-1171 (-317 |#1|))) (-566))))
+((-4159 (((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-317 |#1|))) (-644 (-1175))) 250) (((-644 (-295 (-317 |#1|))) (-317 |#1|) (-1175)) 23) (((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|)) (-1175)) 29) (((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|))) 28) (((-644 (-295 (-317 |#1|))) (-317 |#1|)) 24)))
+(((-1130 |#1|) (-10 -7 (-15 -4159 ((-644 (-295 (-317 |#1|))) (-317 |#1|))) (-15 -4159 ((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|)))) (-15 -4159 ((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|)) (-1175))) (-15 -4159 ((-644 (-295 (-317 |#1|))) (-317 |#1|) (-1175))) (-15 -4159 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-317 |#1|))) (-644 (-1175))))) (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (T -1130))
+((-4159 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-1175))) (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *5))))) (-5 *1 (-1130 *5)) (-5 *3 (-644 (-295 (-317 *5)))))) (-4159 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1130 *5)) (-5 *3 (-317 *5)))) (-4159 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1130 *5)) (-5 *3 (-295 (-317 *5))))) (-4159 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1130 *4)) (-5 *3 (-295 (-317 *4))))) (-4159 (*1 *2 *3) (-12 (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147))) (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1130 *4)) (-5 *3 (-317 *4)))))
+(-10 -7 (-15 -4159 ((-644 (-295 (-317 |#1|))) (-317 |#1|))) (-15 -4159 ((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|)))) (-15 -4159 ((-644 (-295 (-317 |#1|))) (-295 (-317 |#1|)) (-1175))) (-15 -4159 ((-644 (-295 (-317 |#1|))) (-317 |#1|) (-1175))) (-15 -4159 ((-644 (-644 (-295 (-317 |#1|)))) (-644 (-295 (-317 |#1|))) (-644 (-1175)))))
+((-1700 ((|#2| |#2|) 30 (|has| |#1| (-850))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 27)) (-2061 ((|#2| |#2|) 29 (|has| |#1| (-850))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 22)))
+(((-1131 |#1| |#2|) (-10 -7 (-15 -2061 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -1700 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-850)) (PROGN (-15 -2061 (|#2| |#2|)) (-15 -1700 (|#2| |#2|))) |%noBranch|)) (-1214) (-13 (-604 (-566) |#1|) (-10 -7 (-6 -4414) (-6 -4415)))) (T -1131))
+((-1700 (*1 *2 *2) (-12 (-4 *3 (-850)) (-4 *3 (-1214)) (-5 *1 (-1131 *3 *2)) (-4 *2 (-13 (-604 (-566) *3) (-10 -7 (-6 -4414) (-6 -4415)))))) (-2061 (*1 *2 *2) (-12 (-4 *3 (-850)) (-4 *3 (-1214)) (-5 *1 (-1131 *3 *2)) (-4 *2 (-13 (-604 (-566) *3) (-10 -7 (-6 -4414) (-6 -4415)))))) (-1700 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-1131 *4 *2)) (-4 *2 (-13 (-604 (-566) *4) (-10 -7 (-6 -4414) (-6 -4415)))))) (-2061 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-1131 *4 *2)) (-4 *2 (-13 (-604 (-566) *4) (-10 -7 (-6 -4414) (-6 -4415)))))))
+(-10 -7 (-15 -2061 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -1700 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-850)) (PROGN (-15 -2061 (|#2| |#2|)) (-15 -1700 (|#2| |#2|))) |%noBranch|))
+((-3009 (((-112) $ $) NIL)) (-3649 (((-1163 3 |#1|) $) 141)) (-3893 (((-112) $) 101)) (-1413 (($ $ (-644 (-943 |#1|))) 44) (($ $ (-644 (-644 |#1|))) 104) (($ (-644 (-943 |#1|))) 103) (((-644 (-943 |#1|)) $) 102)) (-3045 (((-112) $) 72)) (-1876 (($ $ (-943 |#1|)) 76) (($ $ (-644 |#1|)) 81) (($ $ (-771)) 83) (($ (-943 |#1|)) 77) (((-943 |#1|) $) 75)) (-2527 (((-2 (|:| -2089 (-771)) (|:| |curves| (-771)) (|:| |polygons| (-771)) (|:| |constructs| (-771))) $) 139)) (-2004 (((-771) $) 53)) (-2060 (((-771) $) 52)) (-1804 (($ $ (-771) (-943 |#1|)) 67)) (-3308 (((-112) $) 111)) (-4073 (($ $ (-644 (-644 (-943 |#1|))) (-644 (-171)) (-171)) 118) (($ $ (-644 (-644 (-644 |#1|))) (-644 (-171)) (-171)) 120) (($ $ (-644 (-644 (-943 |#1|))) (-112) (-112)) 115) (($ $ (-644 (-644 (-644 |#1|))) (-112) (-112)) 127) (($ (-644 (-644 (-943 |#1|)))) 116) (($ (-644 (-644 (-943 |#1|))) (-112) (-112)) 117) (((-644 (-644 (-943 |#1|))) $) 114)) (-3891 (($ (-644 $)) 56) (($ $ $) 57)) (-3701 (((-644 (-171)) $) 133)) (-1492 (((-644 (-943 |#1|)) $) 130)) (-1768 (((-644 (-644 (-171))) $) 132)) (-3036 (((-644 (-644 (-644 (-943 |#1|)))) $) NIL)) (-2511 (((-644 (-644 (-644 (-771)))) $) 131)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3425 (((-771) $ (-644 (-943 |#1|))) 65)) (-1659 (((-112) $) 84)) (-2490 (($ $ (-644 (-943 |#1|))) 86) (($ $ (-644 (-644 |#1|))) 92) (($ (-644 (-943 |#1|))) 87) (((-644 (-943 |#1|)) $) 85)) (-4311 (($) 48) (($ (-1163 3 |#1|)) 49)) (-3940 (($ $) 63)) (-3391 (((-644 $) $) 62)) (-1970 (($ (-644 $)) 59)) (-1865 (((-644 $) $) 61)) (-3780 (((-862) $) 146)) (-1893 (((-112) $) 94)) (-2391 (($ $ (-644 (-943 |#1|))) 96) (($ $ (-644 (-644 |#1|))) 99) (($ (-644 (-943 |#1|))) 97) (((-644 (-943 |#1|)) $) 95)) (-4209 (($ $) 140)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-1132 |#1|) (-1133 |#1|) (-1049)) (T -1132))
NIL
(-1133 |#1|)
-((-2985 (((-112) $ $) 7)) (-2448 (((-1163 3 |#1|) $) 14)) (-2662 (((-112) $) 30)) (-1976 (($ $ (-644 (-943 |#1|))) 34) (($ $ (-644 (-644 |#1|))) 33) (($ (-644 (-943 |#1|))) 32) (((-644 (-943 |#1|)) $) 31)) (-3962 (((-112) $) 45)) (-1372 (($ $ (-943 |#1|)) 50) (($ $ (-644 |#1|)) 49) (($ $ (-771)) 48) (($ (-943 |#1|)) 47) (((-943 |#1|) $) 46)) (-3296 (((-2 (|:| -1917 (-771)) (|:| |curves| (-771)) (|:| |polygons| (-771)) (|:| |constructs| (-771))) $) 16)) (-4296 (((-771) $) 59)) (-4302 (((-771) $) 60)) (-1888 (($ $ (-771) (-943 |#1|)) 51)) (-3535 (((-112) $) 22)) (-4131 (($ $ (-644 (-644 (-943 |#1|))) (-644 (-171)) (-171)) 29) (($ $ (-644 (-644 (-644 |#1|))) (-644 (-171)) (-171)) 28) (($ $ (-644 (-644 (-943 |#1|))) (-112) (-112)) 27) (($ $ (-644 (-644 (-644 |#1|))) (-112) (-112)) 26) (($ (-644 (-644 (-943 |#1|)))) 25) (($ (-644 (-644 (-943 |#1|))) (-112) (-112)) 24) (((-644 (-644 (-943 |#1|))) $) 23)) (-3132 (($ (-644 $)) 58) (($ $ $) 57)) (-1413 (((-644 (-171)) $) 17)) (-3740 (((-644 (-943 |#1|)) $) 21)) (-2941 (((-644 (-644 (-171))) $) 18)) (-1769 (((-644 (-644 (-644 (-943 |#1|)))) $) 19)) (-3898 (((-644 (-644 (-644 (-771)))) $) 20)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2737 (((-771) $ (-644 (-943 |#1|))) 52)) (-4078 (((-112) $) 40)) (-2136 (($ $ (-644 (-943 |#1|))) 44) (($ $ (-644 (-644 |#1|))) 43) (($ (-644 (-943 |#1|))) 42) (((-644 (-943 |#1|)) $) 41)) (-1653 (($) 62) (($ (-1163 3 |#1|)) 61)) (-3895 (($ $) 53)) (-2106 (((-644 $) $) 54)) (-4293 (($ (-644 $)) 56)) (-2963 (((-644 $) $) 55)) (-2512 (((-862) $) 12)) (-2967 (((-112) $) 35)) (-2257 (($ $ (-644 (-943 |#1|))) 39) (($ $ (-644 (-644 |#1|))) 38) (($ (-644 (-943 |#1|))) 37) (((-644 (-943 |#1|)) $) 36)) (-2694 (($ $) 15)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-3009 (((-112) $ $) 7)) (-3649 (((-1163 3 |#1|) $) 14)) (-3893 (((-112) $) 30)) (-1413 (($ $ (-644 (-943 |#1|))) 34) (($ $ (-644 (-644 |#1|))) 33) (($ (-644 (-943 |#1|))) 32) (((-644 (-943 |#1|)) $) 31)) (-3045 (((-112) $) 45)) (-1876 (($ $ (-943 |#1|)) 50) (($ $ (-644 |#1|)) 49) (($ $ (-771)) 48) (($ (-943 |#1|)) 47) (((-943 |#1|) $) 46)) (-2527 (((-2 (|:| -2089 (-771)) (|:| |curves| (-771)) (|:| |polygons| (-771)) (|:| |constructs| (-771))) $) 16)) (-2004 (((-771) $) 59)) (-2060 (((-771) $) 60)) (-1804 (($ $ (-771) (-943 |#1|)) 51)) (-3308 (((-112) $) 22)) (-4073 (($ $ (-644 (-644 (-943 |#1|))) (-644 (-171)) (-171)) 29) (($ $ (-644 (-644 (-644 |#1|))) (-644 (-171)) (-171)) 28) (($ $ (-644 (-644 (-943 |#1|))) (-112) (-112)) 27) (($ $ (-644 (-644 (-644 |#1|))) (-112) (-112)) 26) (($ (-644 (-644 (-943 |#1|)))) 25) (($ (-644 (-644 (-943 |#1|))) (-112) (-112)) 24) (((-644 (-644 (-943 |#1|))) $) 23)) (-3891 (($ (-644 $)) 58) (($ $ $) 57)) (-3701 (((-644 (-171)) $) 17)) (-1492 (((-644 (-943 |#1|)) $) 21)) (-1768 (((-644 (-644 (-171))) $) 18)) (-3036 (((-644 (-644 (-644 (-943 |#1|)))) $) 19)) (-2511 (((-644 (-644 (-644 (-771)))) $) 20)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3425 (((-771) $ (-644 (-943 |#1|))) 52)) (-1659 (((-112) $) 40)) (-2490 (($ $ (-644 (-943 |#1|))) 44) (($ $ (-644 (-644 |#1|))) 43) (($ (-644 (-943 |#1|))) 42) (((-644 (-943 |#1|)) $) 41)) (-4311 (($) 62) (($ (-1163 3 |#1|)) 61)) (-3940 (($ $) 53)) (-3391 (((-644 $) $) 54)) (-1970 (($ (-644 $)) 56)) (-1865 (((-644 $) $) 55)) (-3780 (((-862) $) 12)) (-1893 (((-112) $) 35)) (-2391 (($ $ (-644 (-943 |#1|))) 39) (($ $ (-644 (-644 |#1|))) 38) (($ (-644 (-943 |#1|))) 37) (((-644 (-943 |#1|)) $) 36)) (-4209 (($ $) 15)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-1133 |#1|) (-140) (-1049)) (T -1133))
-((-2512 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-862)))) (-1653 (*1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))) (-1653 (*1 *1 *2) (-12 (-5 *2 (-1163 3 *3)) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-4302 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-4296 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-3132 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-3132 (*1 *1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))) (-4293 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-2963 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)))) (-2106 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)))) (-3895 (*1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))) (-2737 (*1 *2 *1 *3) (-12 (-5 *3 (-644 (-943 *4))) (-4 *1 (-1133 *4)) (-4 *4 (-1049)) (-5 *2 (-771)))) (-1888 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *3 (-943 *4)) (-4 *1 (-1133 *4)) (-4 *4 (-1049)))) (-1372 (*1 *1 *1 *2) (-12 (-5 *2 (-943 *3)) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1372 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1372 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1372 (*1 *1 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-1372 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-943 *3)))) (-3962 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))) (-2136 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-2136 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-2136 (*1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-2136 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3))))) (-4078 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))) (-2257 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-2257 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-2257 (*1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-2257 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3))))) (-2967 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))) (-1976 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1976 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1976 (*1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-1976 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3))))) (-2662 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))) (-4131 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-644 (-644 (-943 *5)))) (-5 *3 (-644 (-171))) (-5 *4 (-171)) (-4 *1 (-1133 *5)) (-4 *5 (-1049)))) (-4131 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-644 (-644 (-644 *5)))) (-5 *3 (-644 (-171))) (-5 *4 (-171)) (-4 *1 (-1133 *5)) (-4 *5 (-1049)))) (-4131 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-644 (-644 (-943 *4)))) (-5 *3 (-112)) (-4 *1 (-1133 *4)) (-4 *4 (-1049)))) (-4131 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-644 (-644 (-644 *4)))) (-5 *3 (-112)) (-4 *1 (-1133 *4)) (-4 *4 (-1049)))) (-4131 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-943 *3)))) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-4131 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-644 (-644 (-943 *4)))) (-5 *3 (-112)) (-4 *4 (-1049)) (-4 *1 (-1133 *4)))) (-4131 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-644 (-943 *3)))))) (-3535 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))) (-3740 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3))))) (-3898 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-644 (-644 (-771))))))) (-1769 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-644 (-644 (-943 *3))))))) (-2941 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-644 (-171)))))) (-1413 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-171))))) (-3296 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -1917 (-771)) (|:| |curves| (-771)) (|:| |polygons| (-771)) (|:| |constructs| (-771)))))) (-2694 (*1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))) (-2448 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-1163 3 *3)))))
-(-13 (-1099) (-10 -8 (-15 -1653 ($)) (-15 -1653 ($ (-1163 3 |t#1|))) (-15 -4302 ((-771) $)) (-15 -4296 ((-771) $)) (-15 -3132 ($ (-644 $))) (-15 -3132 ($ $ $)) (-15 -4293 ($ (-644 $))) (-15 -2963 ((-644 $) $)) (-15 -2106 ((-644 $) $)) (-15 -3895 ($ $)) (-15 -2737 ((-771) $ (-644 (-943 |t#1|)))) (-15 -1888 ($ $ (-771) (-943 |t#1|))) (-15 -1372 ($ $ (-943 |t#1|))) (-15 -1372 ($ $ (-644 |t#1|))) (-15 -1372 ($ $ (-771))) (-15 -1372 ($ (-943 |t#1|))) (-15 -1372 ((-943 |t#1|) $)) (-15 -3962 ((-112) $)) (-15 -2136 ($ $ (-644 (-943 |t#1|)))) (-15 -2136 ($ $ (-644 (-644 |t#1|)))) (-15 -2136 ($ (-644 (-943 |t#1|)))) (-15 -2136 ((-644 (-943 |t#1|)) $)) (-15 -4078 ((-112) $)) (-15 -2257 ($ $ (-644 (-943 |t#1|)))) (-15 -2257 ($ $ (-644 (-644 |t#1|)))) (-15 -2257 ($ (-644 (-943 |t#1|)))) (-15 -2257 ((-644 (-943 |t#1|)) $)) (-15 -2967 ((-112) $)) (-15 -1976 ($ $ (-644 (-943 |t#1|)))) (-15 -1976 ($ $ (-644 (-644 |t#1|)))) (-15 -1976 ($ (-644 (-943 |t#1|)))) (-15 -1976 ((-644 (-943 |t#1|)) $)) (-15 -2662 ((-112) $)) (-15 -4131 ($ $ (-644 (-644 (-943 |t#1|))) (-644 (-171)) (-171))) (-15 -4131 ($ $ (-644 (-644 (-644 |t#1|))) (-644 (-171)) (-171))) (-15 -4131 ($ $ (-644 (-644 (-943 |t#1|))) (-112) (-112))) (-15 -4131 ($ $ (-644 (-644 (-644 |t#1|))) (-112) (-112))) (-15 -4131 ($ (-644 (-644 (-943 |t#1|))))) (-15 -4131 ($ (-644 (-644 (-943 |t#1|))) (-112) (-112))) (-15 -4131 ((-644 (-644 (-943 |t#1|))) $)) (-15 -3535 ((-112) $)) (-15 -3740 ((-644 (-943 |t#1|)) $)) (-15 -3898 ((-644 (-644 (-644 (-771)))) $)) (-15 -1769 ((-644 (-644 (-644 (-943 |t#1|)))) $)) (-15 -2941 ((-644 (-644 (-171))) $)) (-15 -1413 ((-644 (-171)) $)) (-15 -3296 ((-2 (|:| -1917 (-771)) (|:| |curves| (-771)) (|:| |polygons| (-771)) (|:| |constructs| (-771))) $)) (-15 -2694 ($ $)) (-15 -2448 ((-1163 3 |t#1|) $)) (-15 -2512 ((-862) $))))
+((-3780 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-862)))) (-4311 (*1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))) (-4311 (*1 *1 *2) (-12 (-5 *2 (-1163 3 *3)) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-2060 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-2004 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))) (-3891 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-3891 (*1 *1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))) (-1970 (*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1865 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)))) (-3391 (*1 *2 *1) (-12 (-4 *3 (-1049)) (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)))) (-3940 (*1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))) (-3425 (*1 *2 *1 *3) (-12 (-5 *3 (-644 (-943 *4))) (-4 *1 (-1133 *4)) (-4 *4 (-1049)) (-5 *2 (-771)))) (-1804 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *3 (-943 *4)) (-4 *1 (-1133 *4)) (-4 *4 (-1049)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-943 *3)) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1876 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1876 (*1 *1 *2) (-12 (-5 *2 (-943 *3)) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-1876 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-943 *3)))) (-3045 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))) (-2490 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-2490 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-2490 (*1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-2490 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3))))) (-1659 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))) (-2391 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-2391 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-2391 (*1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-2391 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3))))) (-1893 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))) (-1413 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1413 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))) (-1413 (*1 *1 *2) (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-1413 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3))))) (-3893 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))) (-4073 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-644 (-644 (-943 *5)))) (-5 *3 (-644 (-171))) (-5 *4 (-171)) (-4 *1 (-1133 *5)) (-4 *5 (-1049)))) (-4073 (*1 *1 *1 *2 *3 *4) (-12 (-5 *2 (-644 (-644 (-644 *5)))) (-5 *3 (-644 (-171))) (-5 *4 (-171)) (-4 *1 (-1133 *5)) (-4 *5 (-1049)))) (-4073 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-644 (-644 (-943 *4)))) (-5 *3 (-112)) (-4 *1 (-1133 *4)) (-4 *4 (-1049)))) (-4073 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-644 (-644 (-644 *4)))) (-5 *3 (-112)) (-4 *1 (-1133 *4)) (-4 *4 (-1049)))) (-4073 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-943 *3)))) (-4 *3 (-1049)) (-4 *1 (-1133 *3)))) (-4073 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-644 (-644 (-943 *4)))) (-5 *3 (-112)) (-4 *4 (-1049)) (-4 *1 (-1133 *4)))) (-4073 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-644 (-943 *3)))))) (-3308 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))) (-1492 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3))))) (-2511 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-644 (-644 (-771))))))) (-3036 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-644 (-644 (-943 *3))))))) (-1768 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-644 (-171)))))) (-3701 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-171))))) (-2527 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -2089 (-771)) (|:| |curves| (-771)) (|:| |polygons| (-771)) (|:| |constructs| (-771)))))) (-4209 (*1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))) (-3649 (*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-1163 3 *3)))))
+(-13 (-1099) (-10 -8 (-15 -4311 ($)) (-15 -4311 ($ (-1163 3 |t#1|))) (-15 -2060 ((-771) $)) (-15 -2004 ((-771) $)) (-15 -3891 ($ (-644 $))) (-15 -3891 ($ $ $)) (-15 -1970 ($ (-644 $))) (-15 -1865 ((-644 $) $)) (-15 -3391 ((-644 $) $)) (-15 -3940 ($ $)) (-15 -3425 ((-771) $ (-644 (-943 |t#1|)))) (-15 -1804 ($ $ (-771) (-943 |t#1|))) (-15 -1876 ($ $ (-943 |t#1|))) (-15 -1876 ($ $ (-644 |t#1|))) (-15 -1876 ($ $ (-771))) (-15 -1876 ($ (-943 |t#1|))) (-15 -1876 ((-943 |t#1|) $)) (-15 -3045 ((-112) $)) (-15 -2490 ($ $ (-644 (-943 |t#1|)))) (-15 -2490 ($ $ (-644 (-644 |t#1|)))) (-15 -2490 ($ (-644 (-943 |t#1|)))) (-15 -2490 ((-644 (-943 |t#1|)) $)) (-15 -1659 ((-112) $)) (-15 -2391 ($ $ (-644 (-943 |t#1|)))) (-15 -2391 ($ $ (-644 (-644 |t#1|)))) (-15 -2391 ($ (-644 (-943 |t#1|)))) (-15 -2391 ((-644 (-943 |t#1|)) $)) (-15 -1893 ((-112) $)) (-15 -1413 ($ $ (-644 (-943 |t#1|)))) (-15 -1413 ($ $ (-644 (-644 |t#1|)))) (-15 -1413 ($ (-644 (-943 |t#1|)))) (-15 -1413 ((-644 (-943 |t#1|)) $)) (-15 -3893 ((-112) $)) (-15 -4073 ($ $ (-644 (-644 (-943 |t#1|))) (-644 (-171)) (-171))) (-15 -4073 ($ $ (-644 (-644 (-644 |t#1|))) (-644 (-171)) (-171))) (-15 -4073 ($ $ (-644 (-644 (-943 |t#1|))) (-112) (-112))) (-15 -4073 ($ $ (-644 (-644 (-644 |t#1|))) (-112) (-112))) (-15 -4073 ($ (-644 (-644 (-943 |t#1|))))) (-15 -4073 ($ (-644 (-644 (-943 |t#1|))) (-112) (-112))) (-15 -4073 ((-644 (-644 (-943 |t#1|))) $)) (-15 -3308 ((-112) $)) (-15 -1492 ((-644 (-943 |t#1|)) $)) (-15 -2511 ((-644 (-644 (-644 (-771)))) $)) (-15 -3036 ((-644 (-644 (-644 (-943 |t#1|)))) $)) (-15 -1768 ((-644 (-644 (-171))) $)) (-15 -3701 ((-644 (-171)) $)) (-15 -2527 ((-2 (|:| -2089 (-771)) (|:| |curves| (-771)) (|:| |polygons| (-771)) (|:| |constructs| (-771))) $)) (-15 -4209 ($ $)) (-15 -3649 ((-1163 3 |t#1|) $)) (-15 -3780 ((-862) $))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 174) (($ (-1180)) NIL) (((-1180) $) 7)) (-2473 (((-112) $ (|[\|\|]| (-526))) 19) (((-112) $ (|[\|\|]| (-218))) 23) (((-112) $ (|[\|\|]| (-676))) 27) (((-112) $ (|[\|\|]| (-1274))) 31) (((-112) $ (|[\|\|]| (-138))) 35) (((-112) $ (|[\|\|]| (-133))) 39) (((-112) $ (|[\|\|]| (-1114))) 43) (((-112) $ (|[\|\|]| (-96))) 47) (((-112) $ (|[\|\|]| (-681))) 51) (((-112) $ (|[\|\|]| (-519))) 55) (((-112) $ (|[\|\|]| (-1065))) 59) (((-112) $ (|[\|\|]| (-1275))) 63) (((-112) $ (|[\|\|]| (-527))) 67) (((-112) $ (|[\|\|]| (-154))) 71) (((-112) $ (|[\|\|]| (-671))) 75) (((-112) $ (|[\|\|]| (-312))) 79) (((-112) $ (|[\|\|]| (-1036))) 83) (((-112) $ (|[\|\|]| (-180))) 87) (((-112) $ (|[\|\|]| (-970))) 91) (((-112) $ (|[\|\|]| (-1072))) 95) (((-112) $ (|[\|\|]| (-1089))) 99) (((-112) $ (|[\|\|]| (-1095))) 103) (((-112) $ (|[\|\|]| (-626))) 107) (((-112) $ (|[\|\|]| (-1165))) 111) (((-112) $ (|[\|\|]| (-156))) 115) (((-112) $ (|[\|\|]| (-137))) 119) (((-112) $ (|[\|\|]| (-480))) 123) (((-112) $ (|[\|\|]| (-593))) 127) (((-112) $ (|[\|\|]| (-508))) 131) (((-112) $ (|[\|\|]| (-1157))) 135) (((-112) $ (|[\|\|]| (-566))) 139)) (-3122 (((-112) $ $) NIL)) (-3928 (((-526) $) 20) (((-218) $) 24) (((-676) $) 28) (((-1274) $) 32) (((-138) $) 36) (((-133) $) 40) (((-1114) $) 44) (((-96) $) 48) (((-681) $) 52) (((-519) $) 56) (((-1065) $) 60) (((-1275) $) 64) (((-527) $) 68) (((-154) $) 72) (((-671) $) 76) (((-312) $) 80) (((-1036) $) 84) (((-180) $) 88) (((-970) $) 92) (((-1072) $) 96) (((-1089) $) 100) (((-1095) $) 104) (((-626) $) 108) (((-1165) $) 112) (((-156) $) 116) (((-137) $) 120) (((-480) $) 124) (((-593) $) 128) (((-508) $) 132) (((-1157) $) 136) (((-566) $) 140)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 174) (($ (-1180)) NIL) (((-1180) $) 7)) (-2482 (((-112) $ (|[\|\|]| (-526))) 19) (((-112) $ (|[\|\|]| (-218))) 23) (((-112) $ (|[\|\|]| (-676))) 27) (((-112) $ (|[\|\|]| (-1274))) 31) (((-112) $ (|[\|\|]| (-138))) 35) (((-112) $ (|[\|\|]| (-133))) 39) (((-112) $ (|[\|\|]| (-1114))) 43) (((-112) $ (|[\|\|]| (-96))) 47) (((-112) $ (|[\|\|]| (-681))) 51) (((-112) $ (|[\|\|]| (-519))) 55) (((-112) $ (|[\|\|]| (-1065))) 59) (((-112) $ (|[\|\|]| (-1275))) 63) (((-112) $ (|[\|\|]| (-527))) 67) (((-112) $ (|[\|\|]| (-154))) 71) (((-112) $ (|[\|\|]| (-671))) 75) (((-112) $ (|[\|\|]| (-312))) 79) (((-112) $ (|[\|\|]| (-1036))) 83) (((-112) $ (|[\|\|]| (-180))) 87) (((-112) $ (|[\|\|]| (-970))) 91) (((-112) $ (|[\|\|]| (-1072))) 95) (((-112) $ (|[\|\|]| (-1089))) 99) (((-112) $ (|[\|\|]| (-1095))) 103) (((-112) $ (|[\|\|]| (-626))) 107) (((-112) $ (|[\|\|]| (-1165))) 111) (((-112) $ (|[\|\|]| (-156))) 115) (((-112) $ (|[\|\|]| (-137))) 119) (((-112) $ (|[\|\|]| (-480))) 123) (((-112) $ (|[\|\|]| (-593))) 127) (((-112) $ (|[\|\|]| (-508))) 131) (((-112) $ (|[\|\|]| (-1157))) 135) (((-112) $ (|[\|\|]| (-566))) 139)) (-3801 (((-112) $ $) NIL)) (-3975 (((-526) $) 20) (((-218) $) 24) (((-676) $) 28) (((-1274) $) 32) (((-138) $) 36) (((-133) $) 40) (((-1114) $) 44) (((-96) $) 48) (((-681) $) 52) (((-519) $) 56) (((-1065) $) 60) (((-1275) $) 64) (((-527) $) 68) (((-154) $) 72) (((-671) $) 76) (((-312) $) 80) (((-1036) $) 84) (((-180) $) 88) (((-970) $) 92) (((-1072) $) 96) (((-1089) $) 100) (((-1095) $) 104) (((-626) $) 108) (((-1165) $) 112) (((-156) $) 116) (((-137) $) 120) (((-480) $) 124) (((-593) $) 128) (((-508) $) 132) (((-1157) $) 136) (((-566) $) 140)) (-2950 (((-112) $ $) NIL)))
(((-1134) (-1136)) (T -1134))
NIL
(-1136)
-((-2048 (((-644 (-1180)) (-1157)) 9)))
-(((-1135) (-10 -7 (-15 -2048 ((-644 (-1180)) (-1157))))) (T -1135))
-((-2048 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-644 (-1180))) (-5 *1 (-1135)))))
-(-10 -7 (-15 -2048 ((-644 (-1180)) (-1157))))
-((-2985 (((-112) $ $) 7)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-1180)) 17) (((-1180) $) 16)) (-2473 (((-112) $ (|[\|\|]| (-526))) 81) (((-112) $ (|[\|\|]| (-218))) 79) (((-112) $ (|[\|\|]| (-676))) 77) (((-112) $ (|[\|\|]| (-1274))) 75) (((-112) $ (|[\|\|]| (-138))) 73) (((-112) $ (|[\|\|]| (-133))) 71) (((-112) $ (|[\|\|]| (-1114))) 69) (((-112) $ (|[\|\|]| (-96))) 67) (((-112) $ (|[\|\|]| (-681))) 65) (((-112) $ (|[\|\|]| (-519))) 63) (((-112) $ (|[\|\|]| (-1065))) 61) (((-112) $ (|[\|\|]| (-1275))) 59) (((-112) $ (|[\|\|]| (-527))) 57) (((-112) $ (|[\|\|]| (-154))) 55) (((-112) $ (|[\|\|]| (-671))) 53) (((-112) $ (|[\|\|]| (-312))) 51) (((-112) $ (|[\|\|]| (-1036))) 49) (((-112) $ (|[\|\|]| (-180))) 47) (((-112) $ (|[\|\|]| (-970))) 45) (((-112) $ (|[\|\|]| (-1072))) 43) (((-112) $ (|[\|\|]| (-1089))) 41) (((-112) $ (|[\|\|]| (-1095))) 39) (((-112) $ (|[\|\|]| (-626))) 37) (((-112) $ (|[\|\|]| (-1165))) 35) (((-112) $ (|[\|\|]| (-156))) 33) (((-112) $ (|[\|\|]| (-137))) 31) (((-112) $ (|[\|\|]| (-480))) 29) (((-112) $ (|[\|\|]| (-593))) 27) (((-112) $ (|[\|\|]| (-508))) 25) (((-112) $ (|[\|\|]| (-1157))) 23) (((-112) $ (|[\|\|]| (-566))) 21)) (-3122 (((-112) $ $) 9)) (-3928 (((-526) $) 80) (((-218) $) 78) (((-676) $) 76) (((-1274) $) 74) (((-138) $) 72) (((-133) $) 70) (((-1114) $) 68) (((-96) $) 66) (((-681) $) 64) (((-519) $) 62) (((-1065) $) 60) (((-1275) $) 58) (((-527) $) 56) (((-154) $) 54) (((-671) $) 52) (((-312) $) 50) (((-1036) $) 48) (((-180) $) 46) (((-970) $) 44) (((-1072) $) 42) (((-1089) $) 40) (((-1095) $) 38) (((-626) $) 36) (((-1165) $) 34) (((-156) $) 32) (((-137) $) 30) (((-480) $) 28) (((-593) $) 26) (((-508) $) 24) (((-1157) $) 22) (((-566) $) 20)) (-2940 (((-112) $ $) 6)))
+((-2093 (((-644 (-1180)) (-1157)) 9)))
+(((-1135) (-10 -7 (-15 -2093 ((-644 (-1180)) (-1157))))) (T -1135))
+((-2093 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-644 (-1180))) (-5 *1 (-1135)))))
+(-10 -7 (-15 -2093 ((-644 (-1180)) (-1157))))
+((-3009 (((-112) $ $) 7)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-1180)) 17) (((-1180) $) 16)) (-2482 (((-112) $ (|[\|\|]| (-526))) 81) (((-112) $ (|[\|\|]| (-218))) 79) (((-112) $ (|[\|\|]| (-676))) 77) (((-112) $ (|[\|\|]| (-1274))) 75) (((-112) $ (|[\|\|]| (-138))) 73) (((-112) $ (|[\|\|]| (-133))) 71) (((-112) $ (|[\|\|]| (-1114))) 69) (((-112) $ (|[\|\|]| (-96))) 67) (((-112) $ (|[\|\|]| (-681))) 65) (((-112) $ (|[\|\|]| (-519))) 63) (((-112) $ (|[\|\|]| (-1065))) 61) (((-112) $ (|[\|\|]| (-1275))) 59) (((-112) $ (|[\|\|]| (-527))) 57) (((-112) $ (|[\|\|]| (-154))) 55) (((-112) $ (|[\|\|]| (-671))) 53) (((-112) $ (|[\|\|]| (-312))) 51) (((-112) $ (|[\|\|]| (-1036))) 49) (((-112) $ (|[\|\|]| (-180))) 47) (((-112) $ (|[\|\|]| (-970))) 45) (((-112) $ (|[\|\|]| (-1072))) 43) (((-112) $ (|[\|\|]| (-1089))) 41) (((-112) $ (|[\|\|]| (-1095))) 39) (((-112) $ (|[\|\|]| (-626))) 37) (((-112) $ (|[\|\|]| (-1165))) 35) (((-112) $ (|[\|\|]| (-156))) 33) (((-112) $ (|[\|\|]| (-137))) 31) (((-112) $ (|[\|\|]| (-480))) 29) (((-112) $ (|[\|\|]| (-593))) 27) (((-112) $ (|[\|\|]| (-508))) 25) (((-112) $ (|[\|\|]| (-1157))) 23) (((-112) $ (|[\|\|]| (-566))) 21)) (-3801 (((-112) $ $) 9)) (-3975 (((-526) $) 80) (((-218) $) 78) (((-676) $) 76) (((-1274) $) 74) (((-138) $) 72) (((-133) $) 70) (((-1114) $) 68) (((-96) $) 66) (((-681) $) 64) (((-519) $) 62) (((-1065) $) 60) (((-1275) $) 58) (((-527) $) 56) (((-154) $) 54) (((-671) $) 52) (((-312) $) 50) (((-1036) $) 48) (((-180) $) 46) (((-970) $) 44) (((-1072) $) 42) (((-1089) $) 40) (((-1095) $) 38) (((-626) $) 36) (((-1165) $) 34) (((-156) $) 32) (((-137) $) 30) (((-480) $) 28) (((-593) $) 26) (((-508) $) 24) (((-1157) $) 22) (((-566) $) 20)) (-2950 (((-112) $ $) 6)))
(((-1136) (-140)) (T -1136))
-((-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-526))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-526)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-218))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-218)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-676))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-676)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1274))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1274)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-138))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-138)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-133))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-133)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1114))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1114)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-96))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-96)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-681))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-681)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-519))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-519)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1065))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1065)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1275))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1275)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-527))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-527)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-154))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-154)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-671))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-671)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-312))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-312)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1036))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1036)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-180))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-180)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-970))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-970)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1072))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1072)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1089))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1089)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1095))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1095)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-626))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-626)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1165))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1165)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-156))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-156)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-137))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-137)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-480))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-480)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-593))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-593)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-508))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-508)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1157))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1157)))) (-2473 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-566))) (-5 *2 (-112)))) (-3928 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-566)))))
-(-13 (-1082) (-1259) (-10 -8 (-15 -2473 ((-112) $ (|[\|\|]| (-526)))) (-15 -3928 ((-526) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-218)))) (-15 -3928 ((-218) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-676)))) (-15 -3928 ((-676) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-1274)))) (-15 -3928 ((-1274) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-138)))) (-15 -3928 ((-138) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-133)))) (-15 -3928 ((-133) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-1114)))) (-15 -3928 ((-1114) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-96)))) (-15 -3928 ((-96) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-681)))) (-15 -3928 ((-681) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-519)))) (-15 -3928 ((-519) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-1065)))) (-15 -3928 ((-1065) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-1275)))) (-15 -3928 ((-1275) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-527)))) (-15 -3928 ((-527) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-154)))) (-15 -3928 ((-154) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-671)))) (-15 -3928 ((-671) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-312)))) (-15 -3928 ((-312) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-1036)))) (-15 -3928 ((-1036) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-180)))) (-15 -3928 ((-180) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-970)))) (-15 -3928 ((-970) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-1072)))) (-15 -3928 ((-1072) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-1089)))) (-15 -3928 ((-1089) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-1095)))) (-15 -3928 ((-1095) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-626)))) (-15 -3928 ((-626) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-1165)))) (-15 -3928 ((-1165) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-156)))) (-15 -3928 ((-156) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-137)))) (-15 -3928 ((-137) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-480)))) (-15 -3928 ((-480) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-593)))) (-15 -3928 ((-593) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-508)))) (-15 -3928 ((-508) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-1157)))) (-15 -3928 ((-1157) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-566)))) (-15 -3928 ((-566) $))))
+((-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-526))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-526)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-218))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-218)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-676))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-676)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1274))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1274)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-138))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-138)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-133))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-133)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1114))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1114)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-96))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-96)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-681))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-681)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-519))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-519)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1065))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1065)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1275))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1275)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-527))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-527)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-154))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-154)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-671))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-671)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-312))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-312)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1036))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1036)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-180))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-180)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-970))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-970)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1072))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1072)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1089))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1089)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1095))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1095)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-626))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-626)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1165))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1165)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-156))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-156)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-137))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-137)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-480))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-480)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-593))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-593)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-508))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-508)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-1157))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1157)))) (-2482 (*1 *2 *1 *3) (-12 (-4 *1 (-1136)) (-5 *3 (|[\|\|]| (-566))) (-5 *2 (-112)))) (-3975 (*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-566)))))
+(-13 (-1082) (-1259) (-10 -8 (-15 -2482 ((-112) $ (|[\|\|]| (-526)))) (-15 -3975 ((-526) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-218)))) (-15 -3975 ((-218) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-676)))) (-15 -3975 ((-676) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-1274)))) (-15 -3975 ((-1274) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-138)))) (-15 -3975 ((-138) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-133)))) (-15 -3975 ((-133) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-1114)))) (-15 -3975 ((-1114) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-96)))) (-15 -3975 ((-96) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-681)))) (-15 -3975 ((-681) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-519)))) (-15 -3975 ((-519) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-1065)))) (-15 -3975 ((-1065) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-1275)))) (-15 -3975 ((-1275) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-527)))) (-15 -3975 ((-527) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-154)))) (-15 -3975 ((-154) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-671)))) (-15 -3975 ((-671) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-312)))) (-15 -3975 ((-312) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-1036)))) (-15 -3975 ((-1036) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-180)))) (-15 -3975 ((-180) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-970)))) (-15 -3975 ((-970) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-1072)))) (-15 -3975 ((-1072) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-1089)))) (-15 -3975 ((-1089) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-1095)))) (-15 -3975 ((-1095) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-626)))) (-15 -3975 ((-626) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-1165)))) (-15 -3975 ((-1165) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-156)))) (-15 -3975 ((-156) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-137)))) (-15 -3975 ((-137) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-480)))) (-15 -3975 ((-480) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-593)))) (-15 -3975 ((-593) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-508)))) (-15 -3975 ((-508) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-1157)))) (-15 -3975 ((-1157) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-566)))) (-15 -3975 ((-566) $))))
(((-93) . T) ((-102) . T) ((-616 #0=(-1180)) . T) ((-613 (-862)) . T) ((-613 #0#) . T) ((-492 #0#) . T) ((-1099) . T) ((-1082) . T) ((-1259) . T))
-((-2246 (((-1269) (-644 (-862))) 23) (((-1269) (-862)) 22)) (-1607 (((-1269) (-644 (-862))) 21) (((-1269) (-862)) 20)) (-2733 (((-1269) (-644 (-862))) 19) (((-1269) (-862)) 11) (((-1269) (-1157) (-862)) 17)))
-(((-1137) (-10 -7 (-15 -2733 ((-1269) (-1157) (-862))) (-15 -2733 ((-1269) (-862))) (-15 -1607 ((-1269) (-862))) (-15 -2246 ((-1269) (-862))) (-15 -2733 ((-1269) (-644 (-862)))) (-15 -1607 ((-1269) (-644 (-862)))) (-15 -2246 ((-1269) (-644 (-862)))))) (T -1137))
-((-2246 (*1 *2 *3) (-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-1607 (*1 *2 *3) (-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-2733 (*1 *2 *3) (-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-2246 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-1607 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-2733 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-2733 (*1 *2 *3 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137)))))
-(-10 -7 (-15 -2733 ((-1269) (-1157) (-862))) (-15 -2733 ((-1269) (-862))) (-15 -1607 ((-1269) (-862))) (-15 -2246 ((-1269) (-862))) (-15 -2733 ((-1269) (-644 (-862)))) (-15 -1607 ((-1269) (-644 (-862)))) (-15 -2246 ((-1269) (-644 (-862)))))
-((-3019 (($ $ $) 10)) (-1748 (($ $) 9)) (-3151 (($ $ $) 13)) (-4347 (($ $ $) 15)) (-2649 (($ $ $) 12)) (-2075 (($ $ $) 14)) (-2223 (($ $) 17)) (-2134 (($ $) 16)) (-1346 (($ $) 6)) (-3090 (($ $ $) 11) (($ $) 7)) (-3193 (($ $ $) 8)))
+((-2279 (((-1269) (-644 (-862))) 23) (((-1269) (-862)) 22)) (-2016 (((-1269) (-644 (-862))) 21) (((-1269) (-862)) 20)) (-2440 (((-1269) (-644 (-862))) 19) (((-1269) (-862)) 11) (((-1269) (-1157) (-862)) 17)))
+(((-1137) (-10 -7 (-15 -2440 ((-1269) (-1157) (-862))) (-15 -2440 ((-1269) (-862))) (-15 -2016 ((-1269) (-862))) (-15 -2279 ((-1269) (-862))) (-15 -2440 ((-1269) (-644 (-862)))) (-15 -2016 ((-1269) (-644 (-862)))) (-15 -2279 ((-1269) (-644 (-862)))))) (T -1137))
+((-2279 (*1 *2 *3) (-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-2016 (*1 *2 *3) (-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-2440 (*1 *2 *3) (-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-2279 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-2016 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-2440 (*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137)))) (-2440 (*1 *2 *3 *4) (-12 (-5 *3 (-1157)) (-5 *4 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137)))))
+(-10 -7 (-15 -2440 ((-1269) (-1157) (-862))) (-15 -2440 ((-1269) (-862))) (-15 -2016 ((-1269) (-862))) (-15 -2279 ((-1269) (-862))) (-15 -2440 ((-1269) (-644 (-862)))) (-15 -2016 ((-1269) (-644 (-862)))) (-15 -2279 ((-1269) (-644 (-862)))))
+((-2306 (($ $ $) 10)) (-4047 (($ $) 9)) (-4018 (($ $ $) 13)) (-2528 (($ $ $) 15)) (-3768 (($ $ $) 12)) (-3078 (($ $ $) 14)) (-2038 (($ $) 17)) (-2467 (($ $) 16)) (-3333 (($ $) 6)) (-1650 (($ $ $) 11) (($ $) 7)) (-3162 (($ $ $) 8)))
(((-1138) (-140)) (T -1138))
-((-2223 (*1 *1 *1) (-4 *1 (-1138))) (-2134 (*1 *1 *1) (-4 *1 (-1138))) (-4347 (*1 *1 *1 *1) (-4 *1 (-1138))) (-2075 (*1 *1 *1 *1) (-4 *1 (-1138))) (-3151 (*1 *1 *1 *1) (-4 *1 (-1138))) (-2649 (*1 *1 *1 *1) (-4 *1 (-1138))) (-3090 (*1 *1 *1 *1) (-4 *1 (-1138))) (-3019 (*1 *1 *1 *1) (-4 *1 (-1138))) (-1748 (*1 *1 *1) (-4 *1 (-1138))) (-3193 (*1 *1 *1 *1) (-4 *1 (-1138))) (-3090 (*1 *1 *1) (-4 *1 (-1138))) (-1346 (*1 *1 *1) (-4 *1 (-1138))))
-(-13 (-10 -8 (-15 -1346 ($ $)) (-15 -3090 ($ $)) (-15 -3193 ($ $ $)) (-15 -1748 ($ $)) (-15 -3019 ($ $ $)) (-15 -3090 ($ $ $)) (-15 -2649 ($ $ $)) (-15 -3151 ($ $ $)) (-15 -2075 ($ $ $)) (-15 -4347 ($ $ $)) (-15 -2134 ($ $)) (-15 -2223 ($ $))))
-((-2985 (((-112) $ $) 44)) (-2212 ((|#1| $) 17)) (-2703 (((-112) $ $ (-1 (-112) |#2| |#2|)) 39)) (-2405 (((-112) $) 19)) (-2366 (($ $ |#1|) 30)) (-4391 (($ $ (-112)) 32)) (-3448 (($ $) 33)) (-4104 (($ $ |#2|) 31)) (-2878 (((-1157) $) NIL)) (-3499 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 38)) (-4033 (((-1119) $) NIL)) (-4194 (((-112) $) 16)) (-2954 (($) 13)) (-3895 (($ $) 29)) (-2523 (($ |#1| |#2| (-112)) 20) (($ |#1| |#2|) 21) (($ (-2 (|:| |val| |#1|) (|:| -2248 |#2|))) 23) (((-644 $) (-644 (-2 (|:| |val| |#1|) (|:| -2248 |#2|)))) 26) (((-644 $) |#1| (-644 |#2|)) 28)) (-1640 ((|#2| $) 18)) (-2512 (((-862) $) 53)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 42)))
-(((-1139 |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -2954 ($)) (-15 -4194 ((-112) $)) (-15 -2212 (|#1| $)) (-15 -1640 (|#2| $)) (-15 -2405 ((-112) $)) (-15 -2523 ($ |#1| |#2| (-112))) (-15 -2523 ($ |#1| |#2|)) (-15 -2523 ($ (-2 (|:| |val| |#1|) (|:| -2248 |#2|)))) (-15 -2523 ((-644 $) (-644 (-2 (|:| |val| |#1|) (|:| -2248 |#2|))))) (-15 -2523 ((-644 $) |#1| (-644 |#2|))) (-15 -3895 ($ $)) (-15 -2366 ($ $ |#1|)) (-15 -4104 ($ $ |#2|)) (-15 -4391 ($ $ (-112))) (-15 -3448 ($ $)) (-15 -3499 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -2703 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1099) (-34)) (-13 (-1099) (-34))) (T -1139))
-((-2954 (*1 *1) (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-4194 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))) (-2212 (*1 *2 *1) (-12 (-4 *2 (-13 (-1099) (-34))) (-5 *1 (-1139 *2 *3)) (-4 *3 (-13 (-1099) (-34))))) (-1640 (*1 *2 *1) (-12 (-4 *2 (-13 (-1099) (-34))) (-5 *1 (-1139 *3 *2)) (-4 *3 (-13 (-1099) (-34))))) (-2405 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))) (-2523 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-2523 (*1 *1 *2 *3) (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-2523 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -2248 *4))) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1139 *3 *4)))) (-2523 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| |val| *4) (|:| -2248 *5)))) (-4 *4 (-13 (-1099) (-34))) (-4 *5 (-13 (-1099) (-34))) (-5 *2 (-644 (-1139 *4 *5))) (-5 *1 (-1139 *4 *5)))) (-2523 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *5)) (-4 *5 (-13 (-1099) (-34))) (-5 *2 (-644 (-1139 *3 *5))) (-5 *1 (-1139 *3 *5)) (-4 *3 (-13 (-1099) (-34))))) (-3895 (*1 *1 *1) (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-2366 (*1 *1 *1 *2) (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-4104 (*1 *1 *1 *2) (-12 (-5 *1 (-1139 *3 *2)) (-4 *3 (-13 (-1099) (-34))) (-4 *2 (-13 (-1099) (-34))))) (-4391 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))) (-3448 (*1 *1 *1) (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-3499 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1099) (-34))) (-4 *6 (-13 (-1099) (-34))) (-5 *2 (-112)) (-5 *1 (-1139 *5 *6)))) (-2703 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1099) (-34))) (-5 *2 (-112)) (-5 *1 (-1139 *4 *5)) (-4 *4 (-13 (-1099) (-34))))))
-(-13 (-1099) (-10 -8 (-15 -2954 ($)) (-15 -4194 ((-112) $)) (-15 -2212 (|#1| $)) (-15 -1640 (|#2| $)) (-15 -2405 ((-112) $)) (-15 -2523 ($ |#1| |#2| (-112))) (-15 -2523 ($ |#1| |#2|)) (-15 -2523 ($ (-2 (|:| |val| |#1|) (|:| -2248 |#2|)))) (-15 -2523 ((-644 $) (-644 (-2 (|:| |val| |#1|) (|:| -2248 |#2|))))) (-15 -2523 ((-644 $) |#1| (-644 |#2|))) (-15 -3895 ($ $)) (-15 -2366 ($ $ |#1|)) (-15 -4104 ($ $ |#2|)) (-15 -4391 ($ $ (-112))) (-15 -3448 ($ $)) (-15 -3499 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -2703 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
-((-2985 (((-112) $ $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-2212 (((-1139 |#1| |#2|) $) 27)) (-3171 (($ $) 91)) (-2951 (((-112) (-1139 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 100)) (-2443 (($ $ $ (-644 (-1139 |#1| |#2|))) 108) (($ $ $ (-644 (-1139 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 109)) (-3081 (((-112) $ (-771)) NIL)) (-3087 (((-1139 |#1| |#2|) $ (-1139 |#1| |#2|)) 46 (|has| $ (-6 -4418)))) (-3874 (((-1139 |#1| |#2|) $ "value" (-1139 |#1| |#2|)) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 44 (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-3999 (((-644 (-2 (|:| |val| |#1|) (|:| -2248 |#2|))) $) 95)) (-3066 (($ (-1139 |#1| |#2|) $) 42)) (-2651 (($ (-1139 |#1| |#2|) $) 34)) (-3372 (((-644 (-1139 |#1| |#2|)) $) NIL (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) 54)) (-2245 (((-112) (-1139 |#1| |#2|) $) 97)) (-4129 (((-112) $ $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 (-1139 |#1| |#2|)) $) 58 (|has| $ (-6 -4417)))) (-1927 (((-112) (-1139 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-1139 |#1| |#2|) (-1099))))) (-1323 (($ (-1 (-1139 |#1| |#2|) (-1139 |#1| |#2|)) $) 50 (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-1139 |#1| |#2|) (-1139 |#1| |#2|)) $) 49)) (-3882 (((-112) $ (-771)) NIL)) (-2996 (((-644 (-1139 |#1| |#2|)) $) 56)) (-2783 (((-112) $) 45)) (-2878 (((-1157) $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-4033 (((-1119) $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-4140 (((-3 $ "failed") $) 89)) (-2822 (((-112) (-1 (-112) (-1139 |#1| |#2|)) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-1139 |#1| |#2|)))) NIL (-12 (|has| (-1139 |#1| |#2|) (-310 (-1139 |#1| |#2|))) (|has| (-1139 |#1| |#2|) (-1099)))) (($ $ (-295 (-1139 |#1| |#2|))) NIL (-12 (|has| (-1139 |#1| |#2|) (-310 (-1139 |#1| |#2|))) (|has| (-1139 |#1| |#2|) (-1099)))) (($ $ (-1139 |#1| |#2|) (-1139 |#1| |#2|)) NIL (-12 (|has| (-1139 |#1| |#2|) (-310 (-1139 |#1| |#2|))) (|has| (-1139 |#1| |#2|) (-1099)))) (($ $ (-644 (-1139 |#1| |#2|)) (-644 (-1139 |#1| |#2|))) NIL (-12 (|has| (-1139 |#1| |#2|) (-310 (-1139 |#1| |#2|))) (|has| (-1139 |#1| |#2|) (-1099))))) (-2587 (((-112) $ $) 53)) (-4194 (((-112) $) 24)) (-2954 (($) 26)) (-4386 (((-1139 |#1| |#2|) $ "value") NIL)) (-1442 (((-566) $ $) NIL)) (-1313 (((-112) $) 47)) (-4044 (((-771) (-1 (-112) (-1139 |#1| |#2|)) $) NIL (|has| $ (-6 -4417))) (((-771) (-1139 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-1139 |#1| |#2|) (-1099))))) (-3895 (($ $) 52)) (-2523 (($ (-1139 |#1| |#2|)) 10) (($ |#1| |#2| (-644 $)) 13) (($ |#1| |#2| (-644 (-1139 |#1| |#2|))) 15) (($ |#1| |#2| |#1| (-644 |#2|)) 18)) (-3913 (((-644 |#2|) $) 96)) (-2512 (((-862) $) 87 (|has| (-1139 |#1| |#2|) (-613 (-862))))) (-1448 (((-644 $) $) 31)) (-2105 (((-112) $ $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-3122 (((-112) $ $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-3427 (((-112) (-1 (-112) (-1139 |#1| |#2|)) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 70 (|has| (-1139 |#1| |#2|) (-1099)))) (-2997 (((-771) $) 64 (|has| $ (-6 -4417)))))
-(((-1140 |#1| |#2|) (-13 (-1010 (-1139 |#1| |#2|)) (-10 -8 (-6 -4418) (-6 -4417) (-15 -4140 ((-3 $ "failed") $)) (-15 -3171 ($ $)) (-15 -2523 ($ (-1139 |#1| |#2|))) (-15 -2523 ($ |#1| |#2| (-644 $))) (-15 -2523 ($ |#1| |#2| (-644 (-1139 |#1| |#2|)))) (-15 -2523 ($ |#1| |#2| |#1| (-644 |#2|))) (-15 -3913 ((-644 |#2|) $)) (-15 -3999 ((-644 (-2 (|:| |val| |#1|) (|:| -2248 |#2|))) $)) (-15 -2245 ((-112) (-1139 |#1| |#2|) $)) (-15 -2951 ((-112) (-1139 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -2651 ($ (-1139 |#1| |#2|) $)) (-15 -3066 ($ (-1139 |#1| |#2|) $)) (-15 -2443 ($ $ $ (-644 (-1139 |#1| |#2|)))) (-15 -2443 ($ $ $ (-644 (-1139 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1099) (-34)) (-13 (-1099) (-34))) (T -1140))
-((-4140 (*1 *1 *1) (|partial| -12 (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-3171 (*1 *1 *1) (-12 (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-2523 (*1 *1 *2) (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))) (-2523 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-644 (-1140 *2 *3))) (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-2523 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-644 (-1139 *2 *3))) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))) (-5 *1 (-1140 *2 *3)))) (-2523 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-13 (-1099) (-34))) (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34))))) (-3913 (*1 *2 *1) (-12 (-5 *2 (-644 *4)) (-5 *1 (-1140 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))) (-3999 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4)))) (-5 *1 (-1140 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))) (-2245 (*1 *2 *3 *1) (-12 (-5 *3 (-1139 *4 *5)) (-4 *4 (-13 (-1099) (-34))) (-4 *5 (-13 (-1099) (-34))) (-5 *2 (-112)) (-5 *1 (-1140 *4 *5)))) (-2951 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1139 *5 *6)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1099) (-34))) (-4 *6 (-13 (-1099) (-34))) (-5 *2 (-112)) (-5 *1 (-1140 *5 *6)))) (-2651 (*1 *1 *2 *1) (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))) (-3066 (*1 *1 *2 *1) (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))) (-2443 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-644 (-1139 *3 *4))) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))) (-2443 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1139 *4 *5))) (-5 *3 (-1 (-112) *5 *5)) (-4 *4 (-13 (-1099) (-34))) (-4 *5 (-13 (-1099) (-34))) (-5 *1 (-1140 *4 *5)))))
-(-13 (-1010 (-1139 |#1| |#2|)) (-10 -8 (-6 -4418) (-6 -4417) (-15 -4140 ((-3 $ "failed") $)) (-15 -3171 ($ $)) (-15 -2523 ($ (-1139 |#1| |#2|))) (-15 -2523 ($ |#1| |#2| (-644 $))) (-15 -2523 ($ |#1| |#2| (-644 (-1139 |#1| |#2|)))) (-15 -2523 ($ |#1| |#2| |#1| (-644 |#2|))) (-15 -3913 ((-644 |#2|) $)) (-15 -3999 ((-644 (-2 (|:| |val| |#1|) (|:| -2248 |#2|))) $)) (-15 -2245 ((-112) (-1139 |#1| |#2|) $)) (-15 -2951 ((-112) (-1139 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -2651 ($ (-1139 |#1| |#2|) $)) (-15 -3066 ($ (-1139 |#1| |#2|) $)) (-15 -2443 ($ $ $ (-644 (-1139 |#1| |#2|)))) (-15 -2443 ($ $ $ (-644 (-1139 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-3804 (($ $) NIL)) (-3817 ((|#2| $) NIL)) (-2087 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-1354 (($ (-689 |#2|)) 56)) (-4072 (((-112) $) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-3701 (($ |#2|) 14)) (-2342 (($) NIL T CONST)) (-3071 (($ $) 69 (|has| |#2| (-308)))) (-4134 (((-240 |#1| |#2|) $ (-566)) 42)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 |#2| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) ((|#2| $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) 83)) (-1821 (((-771) $) 71 (|has| |#2| (-558)))) (-3137 ((|#2| $ (-566) (-566)) NIL)) (-3372 (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-2741 (((-112) $) NIL)) (-2481 (((-771) $) 73 (|has| |#2| (-558)))) (-2442 (((-644 (-240 |#1| |#2|)) $) 77 (|has| |#2| (-558)))) (-2042 (((-771) $) NIL)) (-4257 (($ |#2|) 25)) (-2053 (((-771) $) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-1299 ((|#2| $) 67 (|has| |#2| (-6 (-4419 "*"))))) (-3266 (((-566) $) NIL)) (-1905 (((-566) $) NIL)) (-2404 (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-4385 (((-566) $) NIL)) (-4106 (((-566) $) NIL)) (-4198 (($ (-644 (-644 |#2|))) 37)) (-1323 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2503 (((-644 (-644 |#2|)) $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-2565 (((-3 $ "failed") $) 80 (|has| |#2| (-365)))) (-4033 (((-1119) $) NIL)) (-2972 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558)))) (-2822 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#2| $ (-566) (-566) |#2|) NIL) ((|#2| $ (-566) (-566)) NIL)) (-2862 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2447 ((|#2| $) NIL)) (-3744 (($ (-644 |#2|)) 50)) (-2742 (((-112) $) NIL)) (-1906 (((-240 |#1| |#2|) $) NIL)) (-1595 ((|#2| $) 65 (|has| |#2| (-6 (-4419 "*"))))) (-4044 (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-3895 (($ $) NIL)) (-3134 (((-538) $) 89 (|has| |#2| (-614 (-538))))) (-4074 (((-240 |#1| |#2|) $ (-566)) 44)) (-2512 (((-862) $) 47) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#2| (-1038 (-409 (-566))))) (($ |#2|) NIL) (((-689 |#2|) $) 52)) (-3795 (((-771)) 23 T CONST)) (-3122 (((-112) $ $) NIL)) (-3427 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2103 (((-112) $) NIL)) (-2485 (($) 16 T CONST)) (-2495 (($) 21 T CONST)) (-2840 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) 63) (($ $ (-566)) 82 (|has| |#2| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-240 |#1| |#2|) $ (-240 |#1| |#2|)) 59) (((-240 |#1| |#2|) (-240 |#1| |#2|) $) 61)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1141 |#1| |#2|) (-13 (-1122 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-613 (-689 |#2|)) (-10 -8 (-15 -4257 ($ |#2|)) (-15 -3804 ($ $)) (-15 -1354 ($ (-689 |#2|))) (IF (|has| |#2| (-6 (-4419 "*"))) (-6 -4406) |%noBranch|) (IF (|has| |#2| (-6 (-4419 "*"))) (IF (|has| |#2| (-6 -4414)) (-6 -4414) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|))) (-771) (-1049)) (T -1141))
-((-4257 (*1 *1 *2) (-12 (-5 *1 (-1141 *3 *2)) (-14 *3 (-771)) (-4 *2 (-1049)))) (-3804 (*1 *1 *1) (-12 (-5 *1 (-1141 *2 *3)) (-14 *2 (-771)) (-4 *3 (-1049)))) (-1354 (*1 *1 *2) (-12 (-5 *2 (-689 *4)) (-4 *4 (-1049)) (-5 *1 (-1141 *3 *4)) (-14 *3 (-771)))))
-(-13 (-1122 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-613 (-689 |#2|)) (-10 -8 (-15 -4257 ($ |#2|)) (-15 -3804 ($ $)) (-15 -1354 ($ (-689 |#2|))) (IF (|has| |#2| (-6 (-4419 "*"))) (-6 -4406) |%noBranch|) (IF (|has| |#2| (-6 (-4419 "*"))) (IF (|has| |#2| (-6 -4414)) (-6 -4414) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|)))
-((-1760 (($ $) 19)) (-1896 (($ $ (-144)) 10) (($ $ (-141)) 14)) (-1540 (((-112) $ $) 24)) (-1482 (($ $) 17)) (-4386 (((-144) $ (-566) (-144)) NIL) (((-144) $ (-566)) NIL) (($ $ (-1231 (-566))) NIL) (($ $ $) 31)) (-2512 (($ (-144)) 29) (((-862) $) NIL)))
-(((-1142 |#1|) (-10 -8 (-15 -2512 ((-862) |#1|)) (-15 -4386 (|#1| |#1| |#1|)) (-15 -1896 (|#1| |#1| (-141))) (-15 -1896 (|#1| |#1| (-144))) (-15 -2512 (|#1| (-144))) (-15 -1540 ((-112) |#1| |#1|)) (-15 -1760 (|#1| |#1|)) (-15 -1482 (|#1| |#1|)) (-15 -4386 (|#1| |#1| (-1231 (-566)))) (-15 -4386 ((-144) |#1| (-566))) (-15 -4386 ((-144) |#1| (-566) (-144)))) (-1143)) (T -1142))
-NIL
-(-10 -8 (-15 -2512 ((-862) |#1|)) (-15 -4386 (|#1| |#1| |#1|)) (-15 -1896 (|#1| |#1| (-141))) (-15 -1896 (|#1| |#1| (-144))) (-15 -2512 (|#1| (-144))) (-15 -1540 ((-112) |#1| |#1|)) (-15 -1760 (|#1| |#1|)) (-15 -1482 (|#1| |#1|)) (-15 -4386 (|#1| |#1| (-1231 (-566)))) (-15 -4386 ((-144) |#1| (-566))) (-15 -4386 ((-144) |#1| (-566) (-144))))
-((-2985 (((-112) $ $) 19 (|has| (-144) (-1099)))) (-2849 (($ $) 121)) (-1760 (($ $) 122)) (-1896 (($ $ (-144)) 109) (($ $ (-141)) 108)) (-1537 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4418)))) (-1516 (((-112) $ $) 119)) (-1493 (((-112) $ $ (-566)) 118)) (-3473 (((-644 $) $ (-144)) 111) (((-644 $) $ (-141)) 110)) (-2383 (((-112) (-1 (-112) (-144) (-144)) $) 99) (((-112) $) 93 (|has| (-144) (-850)))) (-3426 (($ (-1 (-112) (-144) (-144)) $) 90 (|has| $ (-6 -4418))) (($ $) 89 (-12 (|has| (-144) (-850)) (|has| $ (-6 -4418))))) (-3290 (($ (-1 (-112) (-144) (-144)) $) 100) (($ $) 94 (|has| (-144) (-850)))) (-3081 (((-112) $ (-771)) 8)) (-3874 (((-144) $ (-566) (-144)) 53 (|has| $ (-6 -4418))) (((-144) $ (-1231 (-566)) (-144)) 59 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) (-144)) $) 76 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-1596 (($ $ (-144)) 105) (($ $ (-141)) 104)) (-2736 (($ $) 91 (|has| $ (-6 -4418)))) (-3852 (($ $) 101)) (-4121 (($ $ (-1231 (-566)) $) 115)) (-4093 (($ $) 79 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ (-144) $) 78 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) (-144)) $) 75 (|has| $ (-6 -4417)))) (-4362 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) 77 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4417)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) 74 (|has| $ (-6 -4417))) (((-144) (-1 (-144) (-144) (-144)) $) 73 (|has| $ (-6 -4417)))) (-1332 (((-144) $ (-566) (-144)) 54 (|has| $ (-6 -4418)))) (-3137 (((-144) $ (-566)) 52)) (-1540 (((-112) $ $) 120)) (-3968 (((-566) (-1 (-112) (-144)) $) 98) (((-566) (-144) $) 97 (|has| (-144) (-1099))) (((-566) (-144) $ (-566)) 96 (|has| (-144) (-1099))) (((-566) $ $ (-566)) 114) (((-566) (-141) $ (-566)) 113)) (-3372 (((-644 (-144)) $) 31 (|has| $ (-6 -4417)))) (-4257 (($ (-771) (-144)) 70)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 44 (|has| (-566) (-850)))) (-1439 (($ $ $) 88 (|has| (-144) (-850)))) (-3132 (($ (-1 (-112) (-144) (-144)) $ $) 102) (($ $ $) 95 (|has| (-144) (-850)))) (-2404 (((-644 (-144)) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) (-144) $) 28 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 45 (|has| (-566) (-850)))) (-3059 (($ $ $) 87 (|has| (-144) (-850)))) (-3990 (((-112) $ $ (-144)) 116)) (-3926 (((-771) $ $ (-144)) 117)) (-1323 (($ (-1 (-144) (-144)) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-144) (-144)) $) 36) (($ (-1 (-144) (-144) (-144)) $ $) 65)) (-3438 (($ $) 123)) (-1482 (($ $) 124)) (-3882 (((-112) $ (-771)) 10)) (-1608 (($ $ (-144)) 107) (($ $ (-141)) 106)) (-2878 (((-1157) $) 22 (|has| (-144) (-1099)))) (-4268 (($ (-144) $ (-566)) 61) (($ $ $ (-566)) 60)) (-1922 (((-644 (-566)) $) 47)) (-2040 (((-112) (-566) $) 48)) (-4033 (((-1119) $) 21 (|has| (-144) (-1099)))) (-4062 (((-144) $) 43 (|has| (-566) (-850)))) (-2126 (((-3 (-144) "failed") (-1 (-112) (-144)) $) 72)) (-1720 (($ $ (-144)) 42 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) (-144)) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-144)))) 27 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-295 (-144))) 26 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-144) (-144)) 25 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-644 (-144)) (-644 (-144))) 24 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) (-144) $) 46 (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-2784 (((-644 (-144)) $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 (((-144) $ (-566) (-144)) 51) (((-144) $ (-566)) 50) (($ $ (-1231 (-566))) 64) (($ $ $) 103)) (-2201 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4044 (((-771) (-1 (-112) (-144)) $) 32 (|has| $ (-6 -4417))) (((-771) (-144) $) 29 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4417))))) (-3245 (($ $ $ (-566)) 92 (|has| $ (-6 -4418)))) (-3895 (($ $) 13)) (-3134 (((-538) $) 80 (|has| (-144) (-614 (-538))))) (-2523 (($ (-644 (-144))) 71)) (-3704 (($ $ (-144)) 69) (($ (-144) $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-2512 (($ (-144)) 112) (((-862) $) 18 (|has| (-144) (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| (-144) (-1099)))) (-3427 (((-112) (-1 (-112) (-144)) $) 34 (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) 85 (|has| (-144) (-850)))) (-2974 (((-112) $ $) 84 (|has| (-144) (-850)))) (-2940 (((-112) $ $) 20 (|has| (-144) (-1099)))) (-2987 (((-112) $ $) 86 (|has| (-144) (-850)))) (-2962 (((-112) $ $) 83 (|has| (-144) (-850)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-2038 (*1 *1 *1) (-4 *1 (-1138))) (-2467 (*1 *1 *1) (-4 *1 (-1138))) (-2528 (*1 *1 *1 *1) (-4 *1 (-1138))) (-3078 (*1 *1 *1 *1) (-4 *1 (-1138))) (-4018 (*1 *1 *1 *1) (-4 *1 (-1138))) (-3768 (*1 *1 *1 *1) (-4 *1 (-1138))) (-1650 (*1 *1 *1 *1) (-4 *1 (-1138))) (-2306 (*1 *1 *1 *1) (-4 *1 (-1138))) (-4047 (*1 *1 *1) (-4 *1 (-1138))) (-3162 (*1 *1 *1 *1) (-4 *1 (-1138))) (-1650 (*1 *1 *1) (-4 *1 (-1138))) (-3333 (*1 *1 *1) (-4 *1 (-1138))))
+(-13 (-10 -8 (-15 -3333 ($ $)) (-15 -1650 ($ $)) (-15 -3162 ($ $ $)) (-15 -4047 ($ $)) (-15 -2306 ($ $ $)) (-15 -1650 ($ $ $)) (-15 -3768 ($ $ $)) (-15 -4018 ($ $ $)) (-15 -3078 ($ $ $)) (-15 -2528 ($ $ $)) (-15 -2467 ($ $)) (-15 -2038 ($ $))))
+((-3009 (((-112) $ $) 44)) (-2252 ((|#1| $) 17)) (-4282 (((-112) $ $ (-1 (-112) |#2| |#2|)) 39)) (-3254 (((-112) $) 19)) (-4114 (($ $ |#1|) 30)) (-1714 (($ $ (-112)) 32)) (-3688 (($ $) 33)) (-3785 (($ $ |#2|) 31)) (-2402 (((-1157) $) NIL)) (-4186 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 38)) (-4056 (((-1119) $) NIL)) (-3461 (((-112) $) 16)) (-1793 (($) 13)) (-3940 (($ $) 29)) (-3791 (($ |#1| |#2| (-112)) 20) (($ |#1| |#2|) 21) (($ (-2 (|:| |val| |#1|) (|:| -2327 |#2|))) 23) (((-644 $) (-644 (-2 (|:| |val| |#1|) (|:| -2327 |#2|)))) 26) (((-644 $) |#1| (-644 |#2|)) 28)) (-2445 ((|#2| $) 18)) (-3780 (((-862) $) 53)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 42)))
+(((-1139 |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -1793 ($)) (-15 -3461 ((-112) $)) (-15 -2252 (|#1| $)) (-15 -2445 (|#2| $)) (-15 -3254 ((-112) $)) (-15 -3791 ($ |#1| |#2| (-112))) (-15 -3791 ($ |#1| |#2|)) (-15 -3791 ($ (-2 (|:| |val| |#1|) (|:| -2327 |#2|)))) (-15 -3791 ((-644 $) (-644 (-2 (|:| |val| |#1|) (|:| -2327 |#2|))))) (-15 -3791 ((-644 $) |#1| (-644 |#2|))) (-15 -3940 ($ $)) (-15 -4114 ($ $ |#1|)) (-15 -3785 ($ $ |#2|)) (-15 -1714 ($ $ (-112))) (-15 -3688 ($ $)) (-15 -4186 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -4282 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1099) (-34)) (-13 (-1099) (-34))) (T -1139))
+((-1793 (*1 *1) (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-3461 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))) (-2252 (*1 *2 *1) (-12 (-4 *2 (-13 (-1099) (-34))) (-5 *1 (-1139 *2 *3)) (-4 *3 (-13 (-1099) (-34))))) (-2445 (*1 *2 *1) (-12 (-4 *2 (-13 (-1099) (-34))) (-5 *1 (-1139 *3 *2)) (-4 *3 (-13 (-1099) (-34))))) (-3254 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))) (-3791 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-3791 (*1 *1 *2 *3) (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-3791 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -2327 *4))) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1139 *3 *4)))) (-3791 (*1 *2 *3) (-12 (-5 *3 (-644 (-2 (|:| |val| *4) (|:| -2327 *5)))) (-4 *4 (-13 (-1099) (-34))) (-4 *5 (-13 (-1099) (-34))) (-5 *2 (-644 (-1139 *4 *5))) (-5 *1 (-1139 *4 *5)))) (-3791 (*1 *2 *3 *4) (-12 (-5 *4 (-644 *5)) (-4 *5 (-13 (-1099) (-34))) (-5 *2 (-644 (-1139 *3 *5))) (-5 *1 (-1139 *3 *5)) (-4 *3 (-13 (-1099) (-34))))) (-3940 (*1 *1 *1) (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-4114 (*1 *1 *1 *2) (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-3785 (*1 *1 *1 *2) (-12 (-5 *1 (-1139 *3 *2)) (-4 *3 (-13 (-1099) (-34))) (-4 *2 (-13 (-1099) (-34))))) (-1714 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))) (-3688 (*1 *1 *1) (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-4186 (*1 *2 *1 *1 *3 *4) (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1099) (-34))) (-4 *6 (-13 (-1099) (-34))) (-5 *2 (-112)) (-5 *1 (-1139 *5 *6)))) (-4282 (*1 *2 *1 *1 *3) (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1099) (-34))) (-5 *2 (-112)) (-5 *1 (-1139 *4 *5)) (-4 *4 (-13 (-1099) (-34))))))
+(-13 (-1099) (-10 -8 (-15 -1793 ($)) (-15 -3461 ((-112) $)) (-15 -2252 (|#1| $)) (-15 -2445 (|#2| $)) (-15 -3254 ((-112) $)) (-15 -3791 ($ |#1| |#2| (-112))) (-15 -3791 ($ |#1| |#2|)) (-15 -3791 ($ (-2 (|:| |val| |#1|) (|:| -2327 |#2|)))) (-15 -3791 ((-644 $) (-644 (-2 (|:| |val| |#1|) (|:| -2327 |#2|))))) (-15 -3791 ((-644 $) |#1| (-644 |#2|))) (-15 -3940 ($ $)) (-15 -4114 ($ $ |#1|)) (-15 -3785 ($ $ |#2|)) (-15 -1714 ($ $ (-112))) (-15 -3688 ($ $)) (-15 -4186 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -4282 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
+((-3009 (((-112) $ $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-2252 (((-1139 |#1| |#2|) $) 27)) (-4180 (($ $) 91)) (-1861 (((-112) (-1139 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 100)) (-3597 (($ $ $ (-644 (-1139 |#1| |#2|))) 108) (($ $ $ (-644 (-1139 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 109)) (-1574 (((-112) $ (-771)) NIL)) (-1637 (((-1139 |#1| |#2|) $ (-1139 |#1| |#2|)) 46 (|has| $ (-6 -4415)))) (-3916 (((-1139 |#1| |#2|) $ "value" (-1139 |#1| |#2|)) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 44 (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-1691 (((-644 (-2 (|:| |val| |#1|) (|:| -2327 |#2|))) $) 95)) (-1450 (($ (-1139 |#1| |#2|) $) 42)) (-2661 (($ (-1139 |#1| |#2|) $) 34)) (-3799 (((-644 (-1139 |#1| |#2|)) $) NIL (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) 54)) (-2270 (((-112) (-1139 |#1| |#2|) $) 97)) (-4050 (((-112) $ $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 (-1139 |#1| |#2|)) $) 58 (|has| $ (-6 -4414)))) (-2183 (((-112) (-1139 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-1139 |#1| |#2|) (-1099))))) (-3117 (($ (-1 (-1139 |#1| |#2|) (-1139 |#1| |#2|)) $) 50 (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-1139 |#1| |#2|) (-1139 |#1| |#2|)) $) 49)) (-3582 (((-112) $ (-771)) NIL)) (-3318 (((-644 (-1139 |#1| |#2|)) $) 56)) (-2675 (((-112) $) 45)) (-2402 (((-1157) $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-4056 (((-1119) $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-4160 (((-3 $ "failed") $) 89)) (-3044 (((-112) (-1 (-112) (-1139 |#1| |#2|)) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-1139 |#1| |#2|)))) NIL (-12 (|has| (-1139 |#1| |#2|) (-310 (-1139 |#1| |#2|))) (|has| (-1139 |#1| |#2|) (-1099)))) (($ $ (-295 (-1139 |#1| |#2|))) NIL (-12 (|has| (-1139 |#1| |#2|) (-310 (-1139 |#1| |#2|))) (|has| (-1139 |#1| |#2|) (-1099)))) (($ $ (-1139 |#1| |#2|) (-1139 |#1| |#2|)) NIL (-12 (|has| (-1139 |#1| |#2|) (-310 (-1139 |#1| |#2|))) (|has| (-1139 |#1| |#2|) (-1099)))) (($ $ (-644 (-1139 |#1| |#2|)) (-644 (-1139 |#1| |#2|))) NIL (-12 (|has| (-1139 |#1| |#2|) (-310 (-1139 |#1| |#2|))) (|has| (-1139 |#1| |#2|) (-1099))))) (-4372 (((-112) $ $) 53)) (-3461 (((-112) $) 24)) (-1793 (($) 26)) (-4393 (((-1139 |#1| |#2|) $ "value") NIL)) (-3969 (((-566) $ $) NIL)) (-1638 (((-112) $) 47)) (-4067 (((-771) (-1 (-112) (-1139 |#1| |#2|)) $) NIL (|has| $ (-6 -4414))) (((-771) (-1139 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-1139 |#1| |#2|) (-1099))))) (-3940 (($ $) 52)) (-3791 (($ (-1139 |#1| |#2|)) 10) (($ |#1| |#2| (-644 $)) 13) (($ |#1| |#2| (-644 (-1139 |#1| |#2|))) 15) (($ |#1| |#2| |#1| (-644 |#2|)) 18)) (-2799 (((-644 |#2|) $) 96)) (-3780 (((-862) $) 87 (|has| (-1139 |#1| |#2|) (-613 (-862))))) (-4041 (((-644 $) $) 31)) (-3381 (((-112) $ $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-3801 (((-112) $ $) NIL (|has| (-1139 |#1| |#2|) (-1099)))) (-1583 (((-112) (-1 (-112) (-1139 |#1| |#2|)) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 70 (|has| (-1139 |#1| |#2|) (-1099)))) (-3020 (((-771) $) 64 (|has| $ (-6 -4414)))))
+(((-1140 |#1| |#2|) (-13 (-1010 (-1139 |#1| |#2|)) (-10 -8 (-6 -4415) (-6 -4414) (-15 -4160 ((-3 $ "failed") $)) (-15 -4180 ($ $)) (-15 -3791 ($ (-1139 |#1| |#2|))) (-15 -3791 ($ |#1| |#2| (-644 $))) (-15 -3791 ($ |#1| |#2| (-644 (-1139 |#1| |#2|)))) (-15 -3791 ($ |#1| |#2| |#1| (-644 |#2|))) (-15 -2799 ((-644 |#2|) $)) (-15 -1691 ((-644 (-2 (|:| |val| |#1|) (|:| -2327 |#2|))) $)) (-15 -2270 ((-112) (-1139 |#1| |#2|) $)) (-15 -1861 ((-112) (-1139 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -2661 ($ (-1139 |#1| |#2|) $)) (-15 -1450 ($ (-1139 |#1| |#2|) $)) (-15 -3597 ($ $ $ (-644 (-1139 |#1| |#2|)))) (-15 -3597 ($ $ $ (-644 (-1139 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1099) (-34)) (-13 (-1099) (-34))) (T -1140))
+((-4160 (*1 *1 *1) (|partial| -12 (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-4180 (*1 *1 *1) (-12 (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-3791 (*1 *1 *2) (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))) (-3791 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-644 (-1140 *2 *3))) (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))))) (-3791 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-644 (-1139 *2 *3))) (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34))) (-5 *1 (-1140 *2 *3)))) (-3791 (*1 *1 *2 *3 *2 *4) (-12 (-5 *4 (-644 *3)) (-4 *3 (-13 (-1099) (-34))) (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34))))) (-2799 (*1 *2 *1) (-12 (-5 *2 (-644 *4)) (-5 *1 (-1140 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))) (-1691 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4)))) (-5 *1 (-1140 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))) (-2270 (*1 *2 *3 *1) (-12 (-5 *3 (-1139 *4 *5)) (-4 *4 (-13 (-1099) (-34))) (-4 *5 (-13 (-1099) (-34))) (-5 *2 (-112)) (-5 *1 (-1140 *4 *5)))) (-1861 (*1 *2 *3 *1 *4) (-12 (-5 *3 (-1139 *5 *6)) (-5 *4 (-1 (-112) *6 *6)) (-4 *5 (-13 (-1099) (-34))) (-4 *6 (-13 (-1099) (-34))) (-5 *2 (-112)) (-5 *1 (-1140 *5 *6)))) (-2661 (*1 *1 *2 *1) (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))) (-1450 (*1 *1 *2 *1) (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))) (-3597 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-644 (-1139 *3 *4))) (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))) (-3597 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-1139 *4 *5))) (-5 *3 (-1 (-112) *5 *5)) (-4 *4 (-13 (-1099) (-34))) (-4 *5 (-13 (-1099) (-34))) (-5 *1 (-1140 *4 *5)))))
+(-13 (-1010 (-1139 |#1| |#2|)) (-10 -8 (-6 -4415) (-6 -4414) (-15 -4160 ((-3 $ "failed") $)) (-15 -4180 ($ $)) (-15 -3791 ($ (-1139 |#1| |#2|))) (-15 -3791 ($ |#1| |#2| (-644 $))) (-15 -3791 ($ |#1| |#2| (-644 (-1139 |#1| |#2|)))) (-15 -3791 ($ |#1| |#2| |#1| (-644 |#2|))) (-15 -2799 ((-644 |#2|) $)) (-15 -1691 ((-644 (-2 (|:| |val| |#1|) (|:| -2327 |#2|))) $)) (-15 -2270 ((-112) (-1139 |#1| |#2|) $)) (-15 -1861 ((-112) (-1139 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -2661 ($ (-1139 |#1| |#2|) $)) (-15 -1450 ($ (-1139 |#1| |#2|) $)) (-15 -3597 ($ $ $ (-644 (-1139 |#1| |#2|)))) (-15 -3597 ($ $ $ (-644 (-1139 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4078 (($ $) NIL)) (-3834 ((|#2| $) NIL)) (-3194 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-1409 (($ (-689 |#2|)) 56)) (-1597 (((-112) $) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-2453 (($ |#2|) 14)) (-3877 (($) NIL T CONST)) (-1495 (($ $) 69 (|has| |#2| (-308)))) (-4104 (((-240 |#1| |#2|) $ (-566)) 42)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 |#2| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) ((|#2| $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) 83)) (-4157 (((-771) $) 71 (|has| |#2| (-558)))) (-3059 ((|#2| $ (-566) (-566)) NIL)) (-3799 (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-3466 (((-112) $) NIL)) (-2736 (((-771) $) 73 (|has| |#2| (-558)))) (-3586 (((-644 (-240 |#1| |#2|)) $) 77 (|has| |#2| (-558)))) (-4301 (((-771) $) NIL)) (-4278 (($ |#2|) 25)) (-4313 (((-771) $) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-1647 ((|#2| $) 67 (|has| |#2| (-6 (-4416 "*"))))) (-2615 (((-566) $) NIL)) (-1966 (((-566) $) NIL)) (-3276 (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-1653 (((-566) $) NIL)) (-3807 (((-566) $) NIL)) (-1883 (($ (-644 (-644 |#2|))) 37)) (-3117 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2947 (((-644 (-644 |#2|)) $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-2344 (((-3 $ "failed") $) 80 (|has| |#2| (-365)))) (-4056 (((-1119) $) NIL)) (-2997 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558)))) (-3044 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#2| $ (-566) (-566) |#2|) NIL) ((|#2| $ (-566) (-566)) NIL)) (-2578 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-3638 ((|#2| $) NIL)) (-1664 (($ (-644 |#2|)) 50)) (-3478 (((-112) $) NIL)) (-1978 (((-240 |#1| |#2|) $) NIL)) (-1896 ((|#2| $) 65 (|has| |#2| (-6 (-4416 "*"))))) (-4067 (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-3940 (($ $) NIL)) (-3204 (((-538) $) 89 (|has| |#2| (-614 (-538))))) (-1621 (((-240 |#1| |#2|) $ (-566)) 44)) (-3780 (((-862) $) 47) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#2| (-1038 (-409 (-566))))) (($ |#2|) NIL) (((-689 |#2|) $) 52)) (-3996 (((-771)) 23 T CONST)) (-3801 (((-112) $ $) NIL)) (-1583 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3359 (((-112) $) NIL)) (-2493 (($) 16 T CONST)) (-4333 (($) 21 T CONST)) (-2876 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-771)) NIL (|has| |#2| (-233))) (($ $) NIL (|has| |#2| (-233)))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) 63) (($ $ (-566)) 82 (|has| |#2| (-365)))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL) (((-240 |#1| |#2|) $ (-240 |#1| |#2|)) 59) (((-240 |#1| |#2|) (-240 |#1| |#2|) $) 61)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1141 |#1| |#2|) (-13 (-1122 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-613 (-689 |#2|)) (-10 -8 (-15 -4278 ($ |#2|)) (-15 -4078 ($ $)) (-15 -1409 ($ (-689 |#2|))) (IF (|has| |#2| (-6 (-4416 "*"))) (-6 -4403) |%noBranch|) (IF (|has| |#2| (-6 (-4416 "*"))) (IF (|has| |#2| (-6 -4411)) (-6 -4411) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|))) (-771) (-1049)) (T -1141))
+((-4278 (*1 *1 *2) (-12 (-5 *1 (-1141 *3 *2)) (-14 *3 (-771)) (-4 *2 (-1049)))) (-4078 (*1 *1 *1) (-12 (-5 *1 (-1141 *2 *3)) (-14 *2 (-771)) (-4 *3 (-1049)))) (-1409 (*1 *1 *2) (-12 (-5 *2 (-689 *4)) (-4 *4 (-1049)) (-5 *1 (-1141 *3 *4)) (-14 *3 (-771)))))
+(-13 (-1122 |#1| |#2| (-240 |#1| |#2|) (-240 |#1| |#2|)) (-613 (-689 |#2|)) (-10 -8 (-15 -4278 ($ |#2|)) (-15 -4078 ($ $)) (-15 -1409 ($ (-689 |#2|))) (IF (|has| |#2| (-6 (-4416 "*"))) (-6 -4403) |%noBranch|) (IF (|has| |#2| (-6 (-4416 "*"))) (IF (|has| |#2| (-6 -4411)) (-6 -4411) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-614 (-538))) (-6 (-614 (-538))) |%noBranch|)))
+((-4146 (($ $) 19)) (-1884 (($ $ (-144)) 10) (($ $ (-141)) 14)) (-2353 (((-112) $ $) 24)) (-3160 (($ $) 17)) (-4393 (((-144) $ (-566) (-144)) NIL) (((-144) $ (-566)) NIL) (($ $ (-1231 (-566))) NIL) (($ $ $) 31)) (-3780 (($ (-144)) 29) (((-862) $) NIL)))
+(((-1142 |#1|) (-10 -8 (-15 -3780 ((-862) |#1|)) (-15 -4393 (|#1| |#1| |#1|)) (-15 -1884 (|#1| |#1| (-141))) (-15 -1884 (|#1| |#1| (-144))) (-15 -3780 (|#1| (-144))) (-15 -2353 ((-112) |#1| |#1|)) (-15 -4146 (|#1| |#1|)) (-15 -3160 (|#1| |#1|)) (-15 -4393 (|#1| |#1| (-1231 (-566)))) (-15 -4393 ((-144) |#1| (-566))) (-15 -4393 ((-144) |#1| (-566) (-144)))) (-1143)) (T -1142))
+NIL
+(-10 -8 (-15 -3780 ((-862) |#1|)) (-15 -4393 (|#1| |#1| |#1|)) (-15 -1884 (|#1| |#1| (-141))) (-15 -1884 (|#1| |#1| (-144))) (-15 -3780 (|#1| (-144))) (-15 -2353 ((-112) |#1| |#1|)) (-15 -4146 (|#1| |#1|)) (-15 -3160 (|#1| |#1|)) (-15 -4393 (|#1| |#1| (-1231 (-566)))) (-15 -4393 ((-144) |#1| (-566))) (-15 -4393 ((-144) |#1| (-566) (-144))))
+((-3009 (((-112) $ $) 19 (|has| (-144) (-1099)))) (-2107 (($ $) 121)) (-4146 (($ $) 122)) (-1884 (($ $ (-144)) 109) (($ $ (-141)) 108)) (-2518 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4415)))) (-2329 (((-112) $ $) 119)) (-2307 (((-112) $ $ (-566)) 118)) (-3920 (((-644 $) $ (-144)) 111) (((-644 $) $ (-141)) 110)) (-3070 (((-112) (-1 (-112) (-144) (-144)) $) 99) (((-112) $) 93 (|has| (-144) (-850)))) (-1570 (($ (-1 (-112) (-144) (-144)) $) 90 (|has| $ (-6 -4415))) (($ $) 89 (-12 (|has| (-144) (-850)) (|has| $ (-6 -4415))))) (-1568 (($ (-1 (-112) (-144) (-144)) $) 100) (($ $) 94 (|has| (-144) (-850)))) (-1574 (((-112) $ (-771)) 8)) (-3916 (((-144) $ (-566) (-144)) 53 (|has| $ (-6 -4415))) (((-144) $ (-1231 (-566)) (-144)) 59 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) (-144)) $) 76 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-1660 (($ $ (-144)) 105) (($ $ (-141)) 104)) (-3416 (($ $) 91 (|has| $ (-6 -4415)))) (-3507 (($ $) 101)) (-3956 (($ $ (-1231 (-566)) $) 115)) (-4133 (($ $) 79 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ (-144) $) 78 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) (-144)) $) 75 (|has| $ (-6 -4414)))) (-1580 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) 77 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4414)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) 74 (|has| $ (-6 -4414))) (((-144) (-1 (-144) (-144) (-144)) $) 73 (|has| $ (-6 -4414)))) (-3128 (((-144) $ (-566) (-144)) 54 (|has| $ (-6 -4415)))) (-3059 (((-144) $ (-566)) 52)) (-2353 (((-112) $ $) 120)) (-4015 (((-566) (-1 (-112) (-144)) $) 98) (((-566) (-144) $) 97 (|has| (-144) (-1099))) (((-566) (-144) $ (-566)) 96 (|has| (-144) (-1099))) (((-566) $ $ (-566)) 114) (((-566) (-141) $ (-566)) 113)) (-3799 (((-644 (-144)) $) 31 (|has| $ (-6 -4414)))) (-4278 (($ (-771) (-144)) 70)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 44 (|has| (-566) (-850)))) (-1945 (($ $ $) 88 (|has| (-144) (-850)))) (-3891 (($ (-1 (-112) (-144) (-144)) $ $) 102) (($ $ $) 95 (|has| (-144) (-850)))) (-3276 (((-644 (-144)) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) (-144) $) 28 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 45 (|has| (-566) (-850)))) (-2709 (($ $ $) 87 (|has| (-144) (-850)))) (-4039 (((-112) $ $ (-144)) 116)) (-2810 (((-771) $ $ (-144)) 117)) (-3117 (($ (-1 (-144) (-144)) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-144) (-144)) $) 36) (($ (-1 (-144) (-144) (-144)) $ $) 65)) (-1718 (($ $) 123)) (-3160 (($ $) 124)) (-3582 (((-112) $ (-771)) 10)) (-1672 (($ $ (-144)) 107) (($ $ (-141)) 106)) (-2402 (((-1157) $) 22 (|has| (-144) (-1099)))) (-4286 (($ (-144) $ (-566)) 61) (($ $ $ (-566)) 60)) (-2140 (((-644 (-566)) $) 47)) (-3935 (((-112) (-566) $) 48)) (-4056 (((-1119) $) 21 (|has| (-144) (-1099)))) (-4101 (((-144) $) 43 (|has| (-566) (-850)))) (-3591 (((-3 (-144) "failed") (-1 (-112) (-144)) $) 72)) (-3750 (($ $ (-144)) 42 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) (-144)) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-144)))) 27 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-295 (-144))) 26 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-144) (-144)) 25 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-644 (-144)) (-644 (-144))) 24 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) (-144) $) 46 (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-2684 (((-644 (-144)) $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 (((-144) $ (-566) (-144)) 51) (((-144) $ (-566)) 50) (($ $ (-1231 (-566))) 64) (($ $ $) 103)) (-2215 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4067 (((-771) (-1 (-112) (-144)) $) 32 (|has| $ (-6 -4414))) (((-771) (-144) $) 29 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4414))))) (-3610 (($ $ $ (-566)) 92 (|has| $ (-6 -4415)))) (-3940 (($ $) 13)) (-3204 (((-538) $) 80 (|has| (-144) (-614 (-538))))) (-3791 (($ (-644 (-144))) 71)) (-3727 (($ $ (-144)) 69) (($ (-144) $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-3780 (($ (-144)) 112) (((-862) $) 18 (|has| (-144) (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| (-144) (-1099)))) (-1583 (((-112) (-1 (-112) (-144)) $) 34 (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) 85 (|has| (-144) (-850)))) (-2984 (((-112) $ $) 84 (|has| (-144) (-850)))) (-2950 (((-112) $ $) 20 (|has| (-144) (-1099)))) (-2999 (((-112) $ $) 86 (|has| (-144) (-850)))) (-2972 (((-112) $ $) 83 (|has| (-144) (-850)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-1143) (-140)) (T -1143))
-((-1482 (*1 *1 *1) (-4 *1 (-1143))) (-3438 (*1 *1 *1) (-4 *1 (-1143))) (-1760 (*1 *1 *1) (-4 *1 (-1143))) (-2849 (*1 *1 *1) (-4 *1 (-1143))) (-1540 (*1 *2 *1 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-112)))) (-1516 (*1 *2 *1 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-112)))) (-1493 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-566)) (-5 *2 (-112)))) (-3926 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-144)) (-5 *2 (-771)))) (-3990 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-144)) (-5 *2 (-112)))) (-4121 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-1231 (-566))))) (-3968 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-566)))) (-3968 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-566)) (-5 *3 (-141)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-144)) (-4 *1 (-1143)))) (-3473 (*1 *2 *1 *3) (-12 (-5 *3 (-144)) (-5 *2 (-644 *1)) (-4 *1 (-1143)))) (-3473 (*1 *2 *1 *3) (-12 (-5 *3 (-141)) (-5 *2 (-644 *1)) (-4 *1 (-1143)))) (-1896 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))) (-1896 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141)))) (-1608 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))) (-1608 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141)))) (-1596 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))) (-1596 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141)))) (-4386 (*1 *1 *1 *1) (-4 *1 (-1143))))
-(-13 (-19 (-144)) (-10 -8 (-15 -1482 ($ $)) (-15 -3438 ($ $)) (-15 -1760 ($ $)) (-15 -2849 ($ $)) (-15 -1540 ((-112) $ $)) (-15 -1516 ((-112) $ $)) (-15 -1493 ((-112) $ $ (-566))) (-15 -3926 ((-771) $ $ (-144))) (-15 -3990 ((-112) $ $ (-144))) (-15 -4121 ($ $ (-1231 (-566)) $)) (-15 -3968 ((-566) $ $ (-566))) (-15 -3968 ((-566) (-141) $ (-566))) (-15 -2512 ($ (-144))) (-15 -3473 ((-644 $) $ (-144))) (-15 -3473 ((-644 $) $ (-141))) (-15 -1896 ($ $ (-144))) (-15 -1896 ($ $ (-141))) (-15 -1608 ($ $ (-144))) (-15 -1608 ($ $ (-141))) (-15 -1596 ($ $ (-144))) (-15 -1596 ($ $ (-141))) (-15 -4386 ($ $ $))))
+((-3160 (*1 *1 *1) (-4 *1 (-1143))) (-1718 (*1 *1 *1) (-4 *1 (-1143))) (-4146 (*1 *1 *1) (-4 *1 (-1143))) (-2107 (*1 *1 *1) (-4 *1 (-1143))) (-2353 (*1 *2 *1 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-112)))) (-2329 (*1 *2 *1 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-112)))) (-2307 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-566)) (-5 *2 (-112)))) (-2810 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-144)) (-5 *2 (-771)))) (-4039 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-144)) (-5 *2 (-112)))) (-3956 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-1231 (-566))))) (-4015 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-566)))) (-4015 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-566)) (-5 *3 (-141)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-144)) (-4 *1 (-1143)))) (-3920 (*1 *2 *1 *3) (-12 (-5 *3 (-144)) (-5 *2 (-644 *1)) (-4 *1 (-1143)))) (-3920 (*1 *2 *1 *3) (-12 (-5 *3 (-141)) (-5 *2 (-644 *1)) (-4 *1 (-1143)))) (-1884 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))) (-1884 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141)))) (-1672 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))) (-1672 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141)))) (-1660 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))) (-1660 (*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141)))) (-4393 (*1 *1 *1 *1) (-4 *1 (-1143))))
+(-13 (-19 (-144)) (-10 -8 (-15 -3160 ($ $)) (-15 -1718 ($ $)) (-15 -4146 ($ $)) (-15 -2107 ($ $)) (-15 -2353 ((-112) $ $)) (-15 -2329 ((-112) $ $)) (-15 -2307 ((-112) $ $ (-566))) (-15 -2810 ((-771) $ $ (-144))) (-15 -4039 ((-112) $ $ (-144))) (-15 -3956 ($ $ (-1231 (-566)) $)) (-15 -4015 ((-566) $ $ (-566))) (-15 -4015 ((-566) (-141) $ (-566))) (-15 -3780 ($ (-144))) (-15 -3920 ((-644 $) $ (-144))) (-15 -3920 ((-644 $) $ (-141))) (-15 -1884 ($ $ (-144))) (-15 -1884 ($ $ (-141))) (-15 -1672 ($ $ (-144))) (-15 -1672 ($ $ (-141))) (-15 -1660 ($ $ (-144))) (-15 -1660 ($ $ (-141))) (-15 -4393 ($ $ $))))
(((-34) . T) ((-102) -2805 (|has| (-144) (-1099)) (|has| (-144) (-850))) ((-613 (-862)) -2805 (|has| (-144) (-1099)) (|has| (-144) (-850)) (|has| (-144) (-613 (-862)))) ((-151 #0=(-144)) . T) ((-614 (-538)) |has| (-144) (-614 (-538))) ((-287 #1=(-566) #0#) . T) ((-289 #1# #0#) . T) ((-310 #0#) -12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))) ((-375 #0#) . T) ((-491 #0#) . T) ((-604 #1# #0#) . T) ((-516 #0# #0#) -12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))) ((-651 #0#) . T) ((-19 #0#) . T) ((-850) |has| (-144) (-850)) ((-1099) -2805 (|has| (-144) (-1099)) (|has| (-144) (-850))) ((-1214) . T))
-((-4153 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) (-771)) 113)) (-3508 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|) 62) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771)) 61)) (-1914 (((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-771)) 98)) (-4312 (((-771) (-644 |#4|) (-644 |#5|)) 30)) (-1307 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771)) 63) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771) (-112)) 65)) (-3282 (((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112)) 84) (((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112)) 85)) (-3134 (((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) 90)) (-1368 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|) 60)) (-1437 (((-771) (-644 |#4|) (-644 |#5|)) 21)))
-(((-1144 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1437 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -4312 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -1368 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|)) (-15 -3508 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771))) (-15 -3508 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|)) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771) (-112))) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771))) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|)) (-15 -3282 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -3282 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4153 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) (-771))) (-15 -3134 ((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)))) (-15 -1914 ((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-771)))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1108 |#1| |#2| |#3| |#4|)) (T -1144))
-((-1914 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2248 *9)))) (-5 *4 (-771)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-1269)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))) (-3134 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2248 *8))) (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1108 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1157)) (-5 *1 (-1144 *4 *5 *6 *7 *8)))) (-4153 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-644 *11)) (|:| |todo| (-644 (-2 (|:| |val| *3) (|:| -2248 *11)))))) (-5 *6 (-771)) (-5 *2 (-644 (-2 (|:| |val| (-644 *10)) (|:| -2248 *11)))) (-5 *3 (-644 *10)) (-5 *4 (-644 *11)) (-4 *10 (-1064 *7 *8 *9)) (-4 *11 (-1108 *7 *8 *9 *10)) (-4 *7 (-454)) (-4 *8 (-793)) (-4 *9 (-850)) (-5 *1 (-1144 *7 *8 *9 *10 *11)))) (-3282 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))) (-3282 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))) (-1307 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))) (-1307 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1144 *6 *7 *8 *3 *4)) (-4 *4 (-1108 *6 *7 *8 *3)))) (-1307 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-771)) (-5 *6 (-112)) (-4 *7 (-454)) (-4 *8 (-793)) (-4 *9 (-850)) (-4 *3 (-1064 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1144 *7 *8 *9 *3 *4)) (-4 *4 (-1108 *7 *8 *9 *3)))) (-3508 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))) (-3508 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1144 *6 *7 *8 *3 *4)) (-4 *4 (-1108 *6 *7 *8 *3)))) (-1368 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4)))))) (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))) (-4312 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))) (-1437 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))))
-(-10 -7 (-15 -1437 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -4312 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -1368 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|)) (-15 -3508 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771))) (-15 -3508 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|)) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771) (-112))) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5| (-771))) (-15 -1307 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) |#4| |#5|)) (-15 -3282 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -3282 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4153 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))))) (-771))) (-15 -3134 ((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|)))) (-15 -1914 ((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2248 |#5|))) (-771))))
-((-2985 (((-112) $ $) NIL)) (-2072 (((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 |#4|)))) (-644 |#4|)) NIL)) (-1725 (((-644 $) (-644 |#4|)) 124) (((-644 $) (-644 |#4|) (-112)) 125) (((-644 $) (-644 |#4|) (-112) (-112)) 123) (((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112)) 126)) (-2540 (((-644 |#3|) $) NIL)) (-2598 (((-112) $) NIL)) (-2740 (((-112) $) NIL (|has| |#1| (-558)))) (-4390 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3761 ((|#4| |#4| $) NIL)) (-2857 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| $) 97)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-4186 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417))) (((-3 |#4| "failed") $ |#3|) 75)) (-2342 (($) NIL T CONST)) (-4179 (((-112) $) 29 (|has| |#1| (-558)))) (-4184 (((-112) $ $) NIL (|has| |#1| (-558)))) (-1576 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2398 (((-112) $) NIL (|has| |#1| (-558)))) (-3772 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2380 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) NIL)) (-1756 (($ (-644 |#4|)) NIL)) (-4076 (((-3 $ "failed") $) 45)) (-2668 ((|#4| |#4| $) 78)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-2651 (($ |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 91 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-4200 ((|#4| |#4| $) NIL)) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4417))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3810 (((-2 (|:| -1673 (-644 |#4|)) (|:| -3509 (-644 |#4|))) $) NIL)) (-3422 (((-112) |#4| $) NIL)) (-2192 (((-112) |#4| $) NIL)) (-1602 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1446 (((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112)) 139)) (-3372 (((-644 |#4|) $) 18 (|has| $ (-6 -4417)))) (-4260 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1594 ((|#3| $) 38)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#4|) $) 19 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-1323 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) 23)) (-3097 (((-644 |#3|) $) NIL)) (-3492 (((-112) |#3| $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-2501 (((-3 |#4| (-644 $)) |#4| |#4| $) NIL)) (-1624 (((-644 (-2 (|:| |val| |#4|) (|:| -2248 $))) |#4| |#4| $) 117)) (-2670 (((-3 |#4| "failed") $) 42)) (-2909 (((-644 $) |#4| $) 102)) (-4343 (((-3 (-112) (-644 $)) |#4| $) NIL)) (-2620 (((-644 (-2 (|:| |val| (-112)) (|:| -2248 $))) |#4| $) 112) (((-112) |#4| $) 65)) (-2390 (((-644 $) |#4| $) 121) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) 122) (((-644 $) |#4| (-644 $)) NIL)) (-4166 (((-644 $) (-644 |#4|) (-112) (-112) (-112)) 134)) (-1937 (($ |#4| $) 88) (($ (-644 |#4|) $) 89) (((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 87)) (-1798 (((-644 |#4|) $) NIL)) (-3377 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1687 ((|#4| |#4| $) NIL)) (-2343 (((-112) $ $) NIL)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-3257 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2930 ((|#4| |#4| $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 (((-3 |#4| "failed") $) 40)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1583 (((-3 $ "failed") $ |#4|) 59)) (-1938 (($ $ |#4|) NIL) (((-644 $) |#4| $) 104) (((-644 $) |#4| (-644 $)) NIL) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) 99)) (-2822 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 17)) (-2954 (($) 14)) (-3992 (((-771) $) NIL)) (-4044 (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) 13)) (-3134 (((-538) $) NIL (|has| |#4| (-614 (-538))))) (-2523 (($ (-644 |#4|)) 22)) (-1945 (($ $ |#3|) 52)) (-1398 (($ $ |#3|) 54)) (-2280 (($ $) NIL)) (-4287 (($ $ |#3|) NIL)) (-2512 (((-862) $) 35) (((-644 |#4|) $) 46)) (-2748 (((-771) $) NIL (|has| |#3| (-370)))) (-3122 (((-112) $ $) NIL)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3130 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) NIL)) (-1848 (((-644 $) |#4| $) 66) (((-644 $) |#4| (-644 $)) NIL) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) NIL)) (-3427 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-1427 (((-644 |#3|) $) NIL)) (-1737 (((-112) |#4| $) NIL)) (-1369 (((-112) |#3| $) 74)) (-2940 (((-112) $ $) NIL)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1145 |#1| |#2| |#3| |#4|) (-13 (-1108 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1937 ((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1725 ((-644 $) (-644 |#4|) (-112) (-112))) (-15 -1725 ((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112))) (-15 -4166 ((-644 $) (-644 |#4|) (-112) (-112) (-112))) (-15 -1446 ((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112))))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -1145))
-((-1937 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1145 *5 *6 *7 *3))) (-5 *1 (-1145 *5 *6 *7 *3)) (-4 *3 (-1064 *5 *6 *7)))) (-1725 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8)))) (-1725 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8)))) (-4166 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8)))) (-1446 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-644 *8)) (|:| |towers| (-644 (-1145 *5 *6 *7 *8))))) (-5 *1 (-1145 *5 *6 *7 *8)) (-5 *3 (-644 *8)))))
-(-13 (-1108 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1937 ((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1725 ((-644 $) (-644 |#4|) (-112) (-112))) (-15 -1725 ((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112))) (-15 -4166 ((-644 $) (-644 |#4|) (-112) (-112) (-112))) (-15 -1446 ((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112)))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3877 ((|#1| $) 37)) (-2277 (($ (-644 |#1|)) 45)) (-3081 (((-112) $ (-771)) NIL)) (-2342 (($) NIL T CONST)) (-1774 ((|#1| |#1| $) 40)) (-3464 ((|#1| $) 35)) (-3372 (((-644 |#1|) $) 18 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 22)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3119 ((|#1| $) 38)) (-4265 (($ |#1| $) 41)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2658 ((|#1| $) 36)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 32)) (-2954 (($) 43)) (-2753 (((-771) $) 30)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) 27)) (-2512 (((-862) $) 14 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3309 (($ (-644 |#1|)) NIL)) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 17 (|has| |#1| (-1099)))) (-2997 (((-771) $) 31 (|has| $ (-6 -4417)))))
-(((-1146 |#1|) (-13 (-1120 |#1|) (-10 -8 (-15 -2277 ($ (-644 |#1|))))) (-1214)) (T -1146))
-((-2277 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1146 *3)))))
-(-13 (-1120 |#1|) (-10 -8 (-15 -2277 ($ (-644 |#1|)))))
-((-3874 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1231 (-566)) |#2|) 55) ((|#2| $ (-566) |#2|) 52)) (-1901 (((-112) $) 12)) (-1323 (($ (-1 |#2| |#2|) $) 50)) (-4062 ((|#2| $) NIL) (($ $ (-771)) 20)) (-1720 (($ $ |#2|) 51)) (-1335 (((-112) $) 11)) (-4386 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1231 (-566))) 38) ((|#2| $ (-566)) 29) ((|#2| $ (-566) |#2|) NIL)) (-1498 (($ $ $) 58) (($ $ |#2|) NIL)) (-3704 (($ $ $) 40) (($ |#2| $) NIL) (($ (-644 $)) 47) (($ $ |#2|) NIL)))
-(((-1147 |#1| |#2|) (-10 -8 (-15 -1901 ((-112) |#1|)) (-15 -1335 ((-112) |#1|)) (-15 -3874 (|#2| |#1| (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566))) (-15 -1720 (|#1| |#1| |#2|)) (-15 -3704 (|#1| |#1| |#2|)) (-15 -3704 (|#1| (-644 |#1|))) (-15 -4386 (|#1| |#1| (-1231 (-566)))) (-15 -3874 (|#2| |#1| (-1231 (-566)) |#2|)) (-15 -3874 (|#2| |#1| "last" |#2|)) (-15 -3874 (|#1| |#1| "rest" |#1|)) (-15 -3874 (|#2| |#1| "first" |#2|)) (-15 -1498 (|#1| |#1| |#2|)) (-15 -1498 (|#1| |#1| |#1|)) (-15 -4386 (|#2| |#1| "last")) (-15 -4386 (|#1| |#1| "rest")) (-15 -4062 (|#1| |#1| (-771))) (-15 -4386 (|#2| |#1| "first")) (-15 -4062 (|#2| |#1|)) (-15 -3704 (|#1| |#2| |#1|)) (-15 -3704 (|#1| |#1| |#1|)) (-15 -3874 (|#2| |#1| "value" |#2|)) (-15 -4386 (|#2| |#1| "value")) (-15 -1323 (|#1| (-1 |#2| |#2|) |#1|))) (-1148 |#2|) (-1214)) (T -1147))
-NIL
-(-10 -8 (-15 -1901 ((-112) |#1|)) (-15 -1335 ((-112) |#1|)) (-15 -3874 (|#2| |#1| (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566) |#2|)) (-15 -4386 (|#2| |#1| (-566))) (-15 -1720 (|#1| |#1| |#2|)) (-15 -3704 (|#1| |#1| |#2|)) (-15 -3704 (|#1| (-644 |#1|))) (-15 -4386 (|#1| |#1| (-1231 (-566)))) (-15 -3874 (|#2| |#1| (-1231 (-566)) |#2|)) (-15 -3874 (|#2| |#1| "last" |#2|)) (-15 -3874 (|#1| |#1| "rest" |#1|)) (-15 -3874 (|#2| |#1| "first" |#2|)) (-15 -1498 (|#1| |#1| |#2|)) (-15 -1498 (|#1| |#1| |#1|)) (-15 -4386 (|#2| |#1| "last")) (-15 -4386 (|#1| |#1| "rest")) (-15 -4062 (|#1| |#1| (-771))) (-15 -4386 (|#2| |#1| "first")) (-15 -4062 (|#2| |#1|)) (-15 -3704 (|#1| |#2| |#1|)) (-15 -3704 (|#1| |#1| |#1|)) (-15 -3874 (|#2| |#1| "value" |#2|)) (-15 -4386 (|#2| |#1| "value")) (-15 -1323 (|#1| (-1 |#2| |#2|) |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2212 ((|#1| $) 49)) (-4309 ((|#1| $) 66)) (-3301 (($ $) 68)) (-1537 (((-1269) $ (-566) (-566)) 98 (|has| $ (-6 -4418)))) (-1410 (($ $ (-566)) 53 (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) 8)) (-3087 ((|#1| $ |#1|) 40 (|has| $ (-6 -4418)))) (-4290 (($ $ $) 57 (|has| $ (-6 -4418)))) (-1587 ((|#1| $ |#1|) 55 (|has| $ (-6 -4418)))) (-2831 ((|#1| $ |#1|) 59 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4418))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4418))) (($ $ "rest" $) 56 (|has| $ (-6 -4418))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) 118 (|has| $ (-6 -4418))) ((|#1| $ (-566) |#1|) 87 (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 42 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4417)))) (-4299 ((|#1| $) 67)) (-2342 (($) 7 T CONST)) (-4076 (($ $) 74) (($ $ (-771)) 72)) (-4093 (($ $) 100 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4417))) (($ |#1| $) 101 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1332 ((|#1| $ (-566) |#1|) 86 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 88)) (-1901 (((-112) $) 84)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) 51)) (-4129 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-4257 (($ (-771) |#1|) 109)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 96 (|has| (-566) (-850)))) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 95 (|has| (-566) (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3882 (((-112) $ (-771)) 10)) (-2996 (((-644 |#1|) $) 46)) (-2783 (((-112) $) 50)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2670 ((|#1| $) 71) (($ $ (-771)) 69)) (-4268 (($ $ $ (-566)) 117) (($ |#1| $ (-566)) 116)) (-1922 (((-644 (-566)) $) 93)) (-2040 (((-112) (-566) $) 92)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4062 ((|#1| $) 77) (($ $ (-771)) 75)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-1720 (($ $ |#1|) 97 (|has| $ (-6 -4418)))) (-1335 (((-112) $) 85)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) 91)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1231 (-566))) 113) ((|#1| $ (-566)) 90) ((|#1| $ (-566) |#1|) 89)) (-1442 (((-566) $ $) 45)) (-2201 (($ $ (-1231 (-566))) 115) (($ $ (-566)) 114)) (-1313 (((-112) $) 47)) (-1636 (($ $) 63)) (-2231 (($ $) 60 (|has| $ (-6 -4418)))) (-3069 (((-771) $) 64)) (-1904 (($ $) 65)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-3134 (((-538) $) 99 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 108)) (-1498 (($ $ $) 62 (|has| $ (-6 -4418))) (($ $ |#1|) 61 (|has| $ (-6 -4418)))) (-3704 (($ $ $) 79) (($ |#1| $) 78) (($ (-644 $)) 111) (($ $ |#1|) 110)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) 52)) (-2105 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-4267 (((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) (-771)) 113)) (-3071 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|) 62) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771)) 61)) (-3489 (((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-771)) 98)) (-2154 (((-771) (-644 |#4|) (-644 |#5|)) 30)) (-1577 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771)) 63) (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771) (-112)) 65)) (-2731 (((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112)) 84) (((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112)) 85)) (-3204 (((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) 90)) (-2040 (((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|) 60)) (-3922 (((-771) (-644 |#4|) (-644 |#5|)) 21)))
+(((-1144 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3922 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -2154 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -2040 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|)) (-15 -3071 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771))) (-15 -3071 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|)) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771) (-112))) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771))) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|)) (-15 -2731 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -2731 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4267 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) (-771))) (-15 -3204 ((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)))) (-15 -3489 ((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-771)))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|) (-1108 |#1| |#2| |#3| |#4|)) (T -1144))
+((-3489 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2327 *9)))) (-5 *4 (-771)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-1269)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))) (-3204 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2327 *8))) (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1108 *4 *5 *6 *7)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1157)) (-5 *1 (-1144 *4 *5 *6 *7 *8)))) (-4267 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-644 *11)) (|:| |todo| (-644 (-2 (|:| |val| *3) (|:| -2327 *11)))))) (-5 *6 (-771)) (-5 *2 (-644 (-2 (|:| |val| (-644 *10)) (|:| -2327 *11)))) (-5 *3 (-644 *10)) (-5 *4 (-644 *11)) (-4 *10 (-1064 *7 *8 *9)) (-4 *11 (-1108 *7 *8 *9 *10)) (-4 *7 (-454)) (-4 *8 (-793)) (-4 *9 (-850)) (-5 *1 (-1144 *7 *8 *9 *10 *11)))) (-2731 (*1 *2 *3 *2 *4 *4 *4 *4 *4) (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))) (-2731 (*1 *2 *3 *2 *4 *4) (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))) (-1577 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))) (-1577 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1144 *6 *7 *8 *3 *4)) (-4 *4 (-1108 *6 *7 *8 *3)))) (-1577 (*1 *2 *3 *4 *5 *6) (-12 (-5 *5 (-771)) (-5 *6 (-112)) (-4 *7 (-454)) (-4 *8 (-793)) (-4 *9 (-850)) (-4 *3 (-1064 *7 *8 *9)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1144 *7 *8 *9 *3 *4)) (-4 *4 (-1108 *7 *8 *9 *3)))) (-3071 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))) (-3071 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *3 (-1064 *6 *7 *8)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1144 *6 *7 *8 *3 *4)) (-4 *4 (-1108 *6 *7 *8 *3)))) (-2040 (*1 *2 *3 *4) (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |done| (-644 *4)) (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4)))))) (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))) (-2154 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))) (-3922 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))))
+(-10 -7 (-15 -3922 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -2154 ((-771) (-644 |#4|) (-644 |#5|))) (-15 -2040 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|)) (-15 -3071 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771))) (-15 -3071 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|)) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771) (-112))) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5| (-771))) (-15 -1577 ((-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) |#4| |#5|)) (-15 -2731 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112))) (-15 -2731 ((-644 |#5|) (-644 |#4|) (-644 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4267 ((-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-644 |#4|) (-644 |#5|) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-2 (|:| |done| (-644 |#5|)) (|:| |todo| (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))))) (-771))) (-15 -3204 ((-1157) (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|)))) (-15 -3489 ((-1269) (-644 (-2 (|:| |val| (-644 |#4|)) (|:| -2327 |#5|))) (-771))))
+((-3009 (((-112) $ $) NIL)) (-3043 (((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 |#4|)))) (-644 |#4|)) NIL)) (-3804 (((-644 $) (-644 |#4|)) 124) (((-644 $) (-644 |#4|) (-112)) 125) (((-644 $) (-644 |#4|) (-112) (-112)) 123) (((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112)) 126)) (-2608 (((-644 |#3|) $) NIL)) (-1390 (((-112) $) NIL)) (-3455 (((-112) $) NIL (|has| |#1| (-558)))) (-1702 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3713 ((|#4| |#4| $) NIL)) (-2179 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| $) 97)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-1386 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414))) (((-3 |#4| "failed") $ |#3|) 75)) (-3877 (($) NIL T CONST)) (-3310 (((-112) $) 29 (|has| |#1| (-558)))) (-3367 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2895 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3219 (((-112) $) NIL (|has| |#1| (-558)))) (-3790 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4239 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) NIL)) (-1867 (($ (-644 |#4|)) NIL)) (-4112 (((-3 $ "failed") $) 45)) (-3963 ((|#4| |#4| $) 78)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-2661 (($ |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 91 (|has| |#1| (-558)))) (-1991 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3517 ((|#4| |#4| $) NIL)) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4414))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4143 (((-2 (|:| -1713 (-644 |#4|)) (|:| -3537 (-644 |#4|))) $) NIL)) (-1535 (((-112) |#4| $) NIL)) (-2976 (((-112) |#4| $) NIL)) (-1961 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4016 (((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112)) 139)) (-3799 (((-644 |#4|) $) 18 (|has| $ (-6 -4414)))) (-2848 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1887 ((|#3| $) 38)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#4|) $) 19 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-3117 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) 23)) (-1711 (((-644 |#3|) $) NIL)) (-4113 (((-112) |#3| $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-2924 (((-3 |#4| (-644 $)) |#4| |#4| $) NIL)) (-2165 (((-644 (-2 (|:| |val| |#4|) (|:| -2327 $))) |#4| |#4| $) 117)) (-2680 (((-3 |#4| "failed") $) 42)) (-1468 (((-644 $) |#4| $) 102)) (-2487 (((-3 (-112) (-644 $)) |#4| $) NIL)) (-1627 (((-644 (-2 (|:| |val| (-112)) (|:| -2327 $))) |#4| $) 112) (((-112) |#4| $) 65)) (-3147 (((-644 $) |#4| $) 121) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) 122) (((-644 $) |#4| (-644 $)) NIL)) (-3191 (((-644 $) (-644 |#4|) (-112) (-112) (-112)) 134)) (-2284 (($ |#4| $) 88) (($ (-644 |#4|) $) 89) (((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 87)) (-3329 (((-644 |#4|) $) NIL)) (-2337 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1569 ((|#4| |#4| $) NIL)) (-3886 (((-112) $ $) NIL)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-2531 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1671 ((|#4| |#4| $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 (((-3 |#4| "failed") $) 40)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1775 (((-3 $ "failed") $ |#4|) 59)) (-2295 (($ $ |#4|) NIL) (((-644 $) |#4| $) 104) (((-644 $) |#4| (-644 $)) NIL) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) 99)) (-3044 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 17)) (-1793 (($) 14)) (-2108 (((-771) $) NIL)) (-4067 (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) 13)) (-3204 (((-538) $) NIL (|has| |#4| (-614 (-538))))) (-3791 (($ (-644 |#4|)) 22)) (-2363 (($ $ |#3|) 52)) (-3513 (($ $ |#3|) 54)) (-1360 (($ $) NIL)) (-3130 (($ $ |#3|) NIL)) (-3780 (((-862) $) 35) (((-644 |#4|) $) 46)) (-3542 (((-771) $) NIL (|has| |#3| (-370)))) (-3801 (((-112) $ $) NIL)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3870 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) NIL)) (-2607 (((-644 $) |#4| $) 66) (((-644 $) |#4| (-644 $)) NIL) (((-644 $) (-644 |#4|) $) NIL) (((-644 $) (-644 |#4|) (-644 $)) NIL)) (-1583 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3830 (((-644 |#3|) $) NIL)) (-3917 (((-112) |#4| $) NIL)) (-3258 (((-112) |#3| $) 74)) (-2950 (((-112) $ $) NIL)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1145 |#1| |#2| |#3| |#4|) (-13 (-1108 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2284 ((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3804 ((-644 $) (-644 |#4|) (-112) (-112))) (-15 -3804 ((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112))) (-15 -3191 ((-644 $) (-644 |#4|) (-112) (-112) (-112))) (-15 -4016 ((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112))))) (-454) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -1145))
+((-2284 (*1 *2 *3 *1 *4 *4 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1145 *5 *6 *7 *3))) (-5 *1 (-1145 *5 *6 *7 *3)) (-4 *3 (-1064 *5 *6 *7)))) (-3804 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8)))) (-3804 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8)))) (-3191 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8)))) (-4016 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |val| (-644 *8)) (|:| |towers| (-644 (-1145 *5 *6 *7 *8))))) (-5 *1 (-1145 *5 *6 *7 *8)) (-5 *3 (-644 *8)))))
+(-13 (-1108 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2284 ((-644 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -3804 ((-644 $) (-644 |#4|) (-112) (-112))) (-15 -3804 ((-644 $) (-644 |#4|) (-112) (-112) (-112) (-112))) (-15 -3191 ((-644 $) (-644 |#4|) (-112) (-112) (-112))) (-15 -4016 ((-2 (|:| |val| (-644 |#4|)) (|:| |towers| (-644 $))) (-644 |#4|) (-112) (-112)))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3918 ((|#1| $) 37)) (-1369 (($ (-644 |#1|)) 45)) (-1574 (((-112) $ (-771)) NIL)) (-3877 (($) NIL T CONST)) (-3082 ((|#1| |#1| $) 40)) (-3827 ((|#1| $) 35)) (-3799 (((-644 |#1|) $) 18 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 22)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3765 ((|#1| $) 38)) (-2903 (($ |#1| $) 41)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3852 ((|#1| $) 36)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 32)) (-1793 (($) 43)) (-1677 (((-771) $) 30)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) 27)) (-3780 (((-862) $) 14 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2926 (($ (-644 |#1|)) NIL)) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 17 (|has| |#1| (-1099)))) (-3020 (((-771) $) 31 (|has| $ (-6 -4414)))))
+(((-1146 |#1|) (-13 (-1120 |#1|) (-10 -8 (-15 -1369 ($ (-644 |#1|))))) (-1214)) (T -1146))
+((-1369 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1146 *3)))))
+(-13 (-1120 |#1|) (-10 -8 (-15 -1369 ($ (-644 |#1|)))))
+((-3916 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1231 (-566)) |#2|) 55) ((|#2| $ (-566) |#2|) 52)) (-1935 (((-112) $) 12)) (-3117 (($ (-1 |#2| |#2|) $) 50)) (-4101 ((|#2| $) NIL) (($ $ (-771)) 20)) (-3750 (($ $ |#2|) 51)) (-1927 (((-112) $) 11)) (-4393 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1231 (-566))) 38) ((|#2| $ (-566)) 29) ((|#2| $ (-566) |#2|) NIL)) (-3324 (($ $ $) 58) (($ $ |#2|) NIL)) (-3727 (($ $ $) 40) (($ |#2| $) NIL) (($ (-644 $)) 47) (($ $ |#2|) NIL)))
+(((-1147 |#1| |#2|) (-10 -8 (-15 -1935 ((-112) |#1|)) (-15 -1927 ((-112) |#1|)) (-15 -3916 (|#2| |#1| (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566))) (-15 -3750 (|#1| |#1| |#2|)) (-15 -3727 (|#1| |#1| |#2|)) (-15 -3727 (|#1| (-644 |#1|))) (-15 -4393 (|#1| |#1| (-1231 (-566)))) (-15 -3916 (|#2| |#1| (-1231 (-566)) |#2|)) (-15 -3916 (|#2| |#1| "last" |#2|)) (-15 -3916 (|#1| |#1| "rest" |#1|)) (-15 -3916 (|#2| |#1| "first" |#2|)) (-15 -3324 (|#1| |#1| |#2|)) (-15 -3324 (|#1| |#1| |#1|)) (-15 -4393 (|#2| |#1| "last")) (-15 -4393 (|#1| |#1| "rest")) (-15 -4101 (|#1| |#1| (-771))) (-15 -4393 (|#2| |#1| "first")) (-15 -4101 (|#2| |#1|)) (-15 -3727 (|#1| |#2| |#1|)) (-15 -3727 (|#1| |#1| |#1|)) (-15 -3916 (|#2| |#1| "value" |#2|)) (-15 -4393 (|#2| |#1| "value")) (-15 -3117 (|#1| (-1 |#2| |#2|) |#1|))) (-1148 |#2|) (-1214)) (T -1147))
+NIL
+(-10 -8 (-15 -1935 ((-112) |#1|)) (-15 -1927 ((-112) |#1|)) (-15 -3916 (|#2| |#1| (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566) |#2|)) (-15 -4393 (|#2| |#1| (-566))) (-15 -3750 (|#1| |#1| |#2|)) (-15 -3727 (|#1| |#1| |#2|)) (-15 -3727 (|#1| (-644 |#1|))) (-15 -4393 (|#1| |#1| (-1231 (-566)))) (-15 -3916 (|#2| |#1| (-1231 (-566)) |#2|)) (-15 -3916 (|#2| |#1| "last" |#2|)) (-15 -3916 (|#1| |#1| "rest" |#1|)) (-15 -3916 (|#2| |#1| "first" |#2|)) (-15 -3324 (|#1| |#1| |#2|)) (-15 -3324 (|#1| |#1| |#1|)) (-15 -4393 (|#2| |#1| "last")) (-15 -4393 (|#1| |#1| "rest")) (-15 -4101 (|#1| |#1| (-771))) (-15 -4393 (|#2| |#1| "first")) (-15 -4101 (|#2| |#1|)) (-15 -3727 (|#1| |#2| |#1|)) (-15 -3727 (|#1| |#1| |#1|)) (-15 -3916 (|#2| |#1| "value" |#2|)) (-15 -4393 (|#2| |#1| "value")) (-15 -3117 (|#1| (-1 |#2| |#2|) |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2252 ((|#1| $) 49)) (-4369 ((|#1| $) 66)) (-4043 (($ $) 68)) (-2518 (((-1269) $ (-566) (-566)) 98 (|has| $ (-6 -4415)))) (-3670 (($ $ (-566)) 53 (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) 8)) (-1637 ((|#1| $ |#1|) 40 (|has| $ (-6 -4415)))) (-1938 (($ $ $) 57 (|has| $ (-6 -4415)))) (-1819 ((|#1| $ |#1|) 55 (|has| $ (-6 -4415)))) (-1921 ((|#1| $ |#1|) 59 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4415))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4415))) (($ $ "rest" $) 56 (|has| $ (-6 -4415))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) 118 (|has| $ (-6 -4415))) ((|#1| $ (-566) |#1|) 87 (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 42 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4414)))) (-4358 ((|#1| $) 67)) (-3877 (($) 7 T CONST)) (-4112 (($ $) 74) (($ $ (-771)) 72)) (-4133 (($ $) 100 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4414))) (($ |#1| $) 101 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3128 ((|#1| $ (-566) |#1|) 86 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 88)) (-1935 (((-112) $) 84)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) 51)) (-4050 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-4278 (($ (-771) |#1|) 109)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 96 (|has| (-566) (-850)))) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 95 (|has| (-566) (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3582 (((-112) $ (-771)) 10)) (-3318 (((-644 |#1|) $) 46)) (-2675 (((-112) $) 50)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2680 ((|#1| $) 71) (($ $ (-771)) 69)) (-4286 (($ $ $ (-566)) 117) (($ |#1| $ (-566)) 116)) (-2140 (((-644 (-566)) $) 93)) (-3935 (((-112) (-566) $) 92)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4101 ((|#1| $) 77) (($ $ (-771)) 75)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-3750 (($ $ |#1|) 97 (|has| $ (-6 -4415)))) (-1927 (((-112) $) 85)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) 91)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1231 (-566))) 113) ((|#1| $ (-566)) 90) ((|#1| $ (-566) |#1|) 89)) (-3969 (((-566) $ $) 45)) (-2215 (($ $ (-1231 (-566))) 115) (($ $ (-566)) 114)) (-1638 (((-112) $) 47)) (-2299 (($ $) 63)) (-2127 (($ $) 60 (|has| $ (-6 -4415)))) (-1472 (((-771) $) 64)) (-1957 (($ $) 65)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3204 (((-538) $) 99 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 108)) (-3324 (($ $ $) 62 (|has| $ (-6 -4415))) (($ $ |#1|) 61 (|has| $ (-6 -4415)))) (-3727 (($ $ $) 79) (($ |#1| $) 78) (($ (-644 $)) 111) (($ $ |#1|) 110)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) 52)) (-3381 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-1148 |#1|) (-140) (-1214)) (T -1148))
-((-1335 (*1 *2 *1) (-12 (-4 *1 (-1148 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-1901 (*1 *2 *1) (-12 (-4 *1 (-1148 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
-(-13 (-1252 |t#1|) (-651 |t#1|) (-10 -8 (-15 -1335 ((-112) $)) (-15 -1901 ((-112) $))))
+((-1927 (*1 *2 *1) (-12 (-4 *1 (-1148 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))) (-1935 (*1 *2 *1) (-12 (-4 *1 (-1148 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
+(-13 (-1252 |t#1|) (-651 |t#1|) (-10 -8 (-15 -1927 ((-112) $)) (-15 -1935 ((-112) $))))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-287 #0=(-566) |#1|) . T) ((-289 #0# |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-604 #0# |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-651 |#1|) . T) ((-1010 |#1|) . T) ((-1099) |has| |#1| (-1099)) ((-1214) . T) ((-1252 |#1|) . T))
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-1537 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#2| $ |#1| |#2|) NIL)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-2414 (((-3 |#2| "failed") |#1| $) NIL)) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-3066 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-3 |#2| "failed") |#1| $) NIL)) (-2651 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) NIL)) (-3372 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 ((|#1| $) NIL (|has| |#1| (-850)))) (-2404 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-1544 ((|#1| $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4418))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3949 (((-644 |#1|) $) NIL)) (-3221 (((-112) |#1| $) NIL)) (-3119 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-4265 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-1922 (((-644 |#1|) $) NIL)) (-2040 (((-112) |#1| $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4062 ((|#2| $) NIL (|has| |#1| (-850)))) (-2126 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL)) (-1720 (($ $ |#2|) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3879 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-2512 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3122 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-2518 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#2| $ |#1| |#2|) NIL)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2450 (((-3 |#2| "failed") |#1| $) NIL)) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-1450 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-3 |#2| "failed") |#1| $) NIL)) (-2661 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) NIL)) (-3799 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 ((|#1| $) NIL (|has| |#1| (-850)))) (-3276 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2579 ((|#1| $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4415))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4314 (((-644 |#1|) $) NIL)) (-3422 (((-112) |#1| $) NIL)) (-3765 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2903 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2140 (((-644 |#1|) $) NIL)) (-3935 (((-112) |#1| $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4101 ((|#2| $) NIL (|has| |#1| (-850)))) (-3591 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL)) (-3750 (($ $ |#2|) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3551 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-3780 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3801 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-1149 |#1| |#2| |#3|) (-1190 |#1| |#2|) (-1099) (-1099) |#2|) (T -1149))
NIL
(-1190 |#1| |#2|)
-((-2985 (((-112) $ $) 7)) (-2546 (((-3 $ "failed") $) 14)) (-2878 (((-1157) $) 10)) (-2759 (($) 15 T CONST)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2940 (((-112) $ $) 6)))
+((-3009 (((-112) $ $) 7)) (-2133 (((-3 $ "failed") $) 14)) (-2402 (((-1157) $) 10)) (-3625 (($) 15 T CONST)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2950 (((-112) $ $) 6)))
(((-1150) (-140)) (T -1150))
-((-2759 (*1 *1) (-4 *1 (-1150))) (-2546 (*1 *1 *1) (|partial| -4 *1 (-1150))))
-(-13 (-1099) (-10 -8 (-15 -2759 ($) -1655) (-15 -2546 ((-3 $ "failed") $))))
+((-3625 (*1 *1) (-4 *1 (-1150))) (-2133 (*1 *1 *1) (|partial| -4 *1 (-1150))))
+(-13 (-1099) (-10 -8 (-15 -3625 ($) -2460) (-15 -2133 ((-3 $ "failed") $))))
(((-102) . T) ((-613 (-862)) . T) ((-1099) . T))
-((-3039 (((-1155 |#1|) (-1155 |#1|)) 17)) (-4370 (((-1155 |#1|) (-1155 |#1|)) 13)) (-2790 (((-1155 |#1|) (-1155 |#1|) (-566) (-566)) 20)) (-4345 (((-1155 |#1|) (-1155 |#1|)) 15)))
-(((-1151 |#1|) (-10 -7 (-15 -4370 ((-1155 |#1|) (-1155 |#1|))) (-15 -4345 ((-1155 |#1|) (-1155 |#1|))) (-15 -3039 ((-1155 |#1|) (-1155 |#1|))) (-15 -2790 ((-1155 |#1|) (-1155 |#1|) (-566) (-566)))) (-13 (-558) (-147))) (T -1151))
-((-2790 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-13 (-558) (-147))) (-5 *1 (-1151 *4)))) (-3039 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147))) (-5 *1 (-1151 *3)))) (-4345 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147))) (-5 *1 (-1151 *3)))) (-4370 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147))) (-5 *1 (-1151 *3)))))
-(-10 -7 (-15 -4370 ((-1155 |#1|) (-1155 |#1|))) (-15 -4345 ((-1155 |#1|) (-1155 |#1|))) (-15 -3039 ((-1155 |#1|) (-1155 |#1|))) (-15 -2790 ((-1155 |#1|) (-1155 |#1|) (-566) (-566))))
-((-3704 (((-1155 |#1|) (-1155 (-1155 |#1|))) 15)))
-(((-1152 |#1|) (-10 -7 (-15 -3704 ((-1155 |#1|) (-1155 (-1155 |#1|))))) (-1214)) (T -1152))
-((-3704 (*1 *2 *3) (-12 (-5 *3 (-1155 (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1152 *4)) (-4 *4 (-1214)))))
-(-10 -7 (-15 -3704 ((-1155 |#1|) (-1155 (-1155 |#1|)))))
-((-2403 (((-1155 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|)) 25)) (-4362 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|)) 26)) (-3077 (((-1155 |#2|) (-1 |#2| |#1|) (-1155 |#1|)) 16)))
-(((-1153 |#1| |#2|) (-10 -7 (-15 -3077 ((-1155 |#2|) (-1 |#2| |#1|) (-1155 |#1|))) (-15 -2403 ((-1155 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|))) (-15 -4362 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|)))) (-1214) (-1214)) (T -1153))
-((-4362 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1155 *5)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-1153 *5 *2)))) (-2403 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1155 *6)) (-4 *6 (-1214)) (-4 *3 (-1214)) (-5 *2 (-1155 *3)) (-5 *1 (-1153 *6 *3)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1155 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1155 *6)) (-5 *1 (-1153 *5 *6)))))
-(-10 -7 (-15 -3077 ((-1155 |#2|) (-1 |#2| |#1|) (-1155 |#1|))) (-15 -2403 ((-1155 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|))) (-15 -4362 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|))))
-((-3077 (((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-1155 |#2|)) 21)))
-(((-1154 |#1| |#2| |#3|) (-10 -7 (-15 -3077 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-1155 |#2|)))) (-1214) (-1214) (-1214)) (T -1154))
-((-3077 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1155 *6)) (-5 *5 (-1155 *7)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-4 *8 (-1214)) (-5 *2 (-1155 *8)) (-5 *1 (-1154 *6 *7 *8)))))
-(-10 -7 (-15 -3077 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-1155 |#2|))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2212 ((|#1| $) NIL)) (-4309 ((|#1| $) NIL)) (-3301 (($ $) 67)) (-1537 (((-1269) $ (-566) (-566)) 99 (|has| $ (-6 -4418)))) (-1410 (($ $ (-566)) 129 (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-2769 (((-862) $) 56 (|has| |#1| (-1099)))) (-3994 (((-112)) 55 (|has| |#1| (-1099)))) (-3087 ((|#1| $ |#1|) NIL (|has| $ (-6 -4418)))) (-4290 (($ $ $) 116 (|has| $ (-6 -4418))) (($ $ (-566) $) 142)) (-1587 ((|#1| $ |#1|) 126 (|has| $ (-6 -4418)))) (-2831 ((|#1| $ |#1|) 121 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ "first" |#1|) 123 (|has| $ (-6 -4418))) (($ $ "rest" $) 125 (|has| $ (-6 -4418))) ((|#1| $ "last" |#1|) 128 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) 113 (|has| $ (-6 -4418))) ((|#1| $ (-566) |#1|) 77 (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) NIL (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) 80)) (-4299 ((|#1| $) NIL)) (-2342 (($) NIL T CONST)) (-4124 (($ $) 14)) (-4076 (($ $) 42) (($ $ (-771)) 111)) (-3027 (((-112) (-644 |#1|) $) 135 (|has| |#1| (-1099)))) (-4132 (($ (-644 |#1|)) 131)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) 79)) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1332 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) NIL)) (-1901 (((-112) $) NIL)) (-3372 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-3587 (((-1269) (-566) $) 141 (|has| |#1| (-1099)))) (-1317 (((-771) $) 138)) (-2286 (((-644 $) $) NIL)) (-4129 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4257 (($ (-771) |#1|) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 95 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 85) (($ (-1 |#1| |#1| |#1|) $ $) 89)) (-3882 (((-112) $ (-771)) NIL)) (-2996 (((-644 |#1|) $) NIL)) (-2783 (((-112) $) NIL)) (-4118 (($ $) 114)) (-2338 (((-112) $) 13)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2670 ((|#1| $) NIL) (($ $ (-771)) NIL)) (-4268 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) 96)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4119 (($ (-1 |#1|)) 144) (($ (-1 |#1| |#1|) |#1|) 145)) (-3640 ((|#1| $) 10)) (-4062 ((|#1| $) 41) (($ $ (-771)) 65)) (-3029 (((-2 (|:| |cycle?| (-112)) (|:| -3541 (-771)) (|:| |period| (-771))) (-771) $) 36)) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-4165 (($ (-1 (-112) |#1|) $) 146)) (-4176 (($ (-1 (-112) |#1|) $) 147)) (-1720 (($ $ |#1|) 90 (|has| $ (-6 -4418)))) (-1938 (($ $ (-566)) 45)) (-1335 (((-112) $) 94)) (-2295 (((-112) $) 12)) (-2550 (((-112) $) 137)) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 30)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) 20)) (-2954 (($) 60)) (-4386 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1231 (-566))) NIL) ((|#1| $ (-566)) 75) ((|#1| $ (-566) |#1|) NIL)) (-1442 (((-566) $ $) 64)) (-2201 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-2623 (($ (-1 $)) 63)) (-1313 (((-112) $) 91)) (-1636 (($ $) 92)) (-2231 (($ $) 117 (|has| $ (-6 -4418)))) (-3069 (((-771) $) NIL)) (-1904 (($ $) NIL)) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) 59)) (-3134 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 73)) (-1827 (($ |#1| $) 115)) (-1498 (($ $ $) 119 (|has| $ (-6 -4418))) (($ $ |#1|) 120 (|has| $ (-6 -4418)))) (-3704 (($ $ $) 101) (($ |#1| $) 61) (($ (-644 $)) 106) (($ $ |#1|) 100)) (-1973 (($ $) 66)) (-2512 (($ (-644 |#1|)) 130) (((-862) $) 57 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) NIL)) (-2105 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 133 (|has| |#1| (-1099)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1155 |#1|) (-13 (-674 |#1|) (-616 (-644 |#1|)) (-10 -8 (-6 -4418) (-15 -4132 ($ (-644 |#1|))) (IF (|has| |#1| (-1099)) (-15 -3027 ((-112) (-644 |#1|) $)) |%noBranch|) (-15 -3029 ((-2 (|:| |cycle?| (-112)) (|:| -3541 (-771)) (|:| |period| (-771))) (-771) $)) (-15 -2623 ($ (-1 $))) (-15 -1827 ($ |#1| $)) (IF (|has| |#1| (-1099)) (PROGN (-15 -3587 ((-1269) (-566) $)) (-15 -2769 ((-862) $)) (-15 -3994 ((-112)))) |%noBranch|) (-15 -4290 ($ $ (-566) $)) (-15 -4119 ($ (-1 |#1|))) (-15 -4119 ($ (-1 |#1| |#1|) |#1|)) (-15 -4165 ($ (-1 (-112) |#1|) $)) (-15 -4176 ($ (-1 (-112) |#1|) $)))) (-1214)) (T -1155))
-((-4132 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))) (-3027 (*1 *2 *3 *1) (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-4 *4 (-1214)) (-5 *2 (-112)) (-5 *1 (-1155 *4)))) (-3029 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -3541 (-771)) (|:| |period| (-771)))) (-5 *1 (-1155 *4)) (-4 *4 (-1214)) (-5 *3 (-771)))) (-2623 (*1 *1 *2) (-12 (-5 *2 (-1 (-1155 *3))) (-5 *1 (-1155 *3)) (-4 *3 (-1214)))) (-1827 (*1 *1 *2 *1) (-12 (-5 *1 (-1155 *2)) (-4 *2 (-1214)))) (-3587 (*1 *2 *3 *1) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1155 *4)) (-4 *4 (-1099)) (-4 *4 (-1214)))) (-2769 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-1155 *3)) (-4 *3 (-1099)) (-4 *3 (-1214)))) (-3994 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1155 *3)) (-4 *3 (-1099)) (-4 *3 (-1214)))) (-4290 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1155 *3)) (-4 *3 (-1214)))) (-4119 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))) (-4119 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))) (-4165 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))) (-4176 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))))
-(-13 (-674 |#1|) (-616 (-644 |#1|)) (-10 -8 (-6 -4418) (-15 -4132 ($ (-644 |#1|))) (IF (|has| |#1| (-1099)) (-15 -3027 ((-112) (-644 |#1|) $)) |%noBranch|) (-15 -3029 ((-2 (|:| |cycle?| (-112)) (|:| -3541 (-771)) (|:| |period| (-771))) (-771) $)) (-15 -2623 ($ (-1 $))) (-15 -1827 ($ |#1| $)) (IF (|has| |#1| (-1099)) (PROGN (-15 -3587 ((-1269) (-566) $)) (-15 -2769 ((-862) $)) (-15 -3994 ((-112)))) |%noBranch|) (-15 -4290 ($ $ (-566) $)) (-15 -4119 ($ (-1 |#1|))) (-15 -4119 ($ (-1 |#1| |#1|) |#1|)) (-15 -4165 ($ (-1 (-112) |#1|) $)) (-15 -4176 ($ (-1 (-112) |#1|) $))))
-((-2985 (((-112) $ $) 19)) (-2849 (($ $) 121)) (-1760 (($ $) 122)) (-1896 (($ $ (-144)) 109) (($ $ (-141)) 108)) (-1537 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4418)))) (-1516 (((-112) $ $) 119)) (-1493 (((-112) $ $ (-566)) 118)) (-4318 (($ (-566)) 128)) (-3473 (((-644 $) $ (-144)) 111) (((-644 $) $ (-141)) 110)) (-2383 (((-112) (-1 (-112) (-144) (-144)) $) 99) (((-112) $) 93 (|has| (-144) (-850)))) (-3426 (($ (-1 (-112) (-144) (-144)) $) 90 (|has| $ (-6 -4418))) (($ $) 89 (-12 (|has| (-144) (-850)) (|has| $ (-6 -4418))))) (-3290 (($ (-1 (-112) (-144) (-144)) $) 100) (($ $) 94 (|has| (-144) (-850)))) (-3081 (((-112) $ (-771)) 8)) (-3874 (((-144) $ (-566) (-144)) 53 (|has| $ (-6 -4418))) (((-144) $ (-1231 (-566)) (-144)) 59 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) (-144)) $) 76 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-1596 (($ $ (-144)) 105) (($ $ (-141)) 104)) (-2736 (($ $) 91 (|has| $ (-6 -4418)))) (-3852 (($ $) 101)) (-4121 (($ $ (-1231 (-566)) $) 115)) (-4093 (($ $) 79 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ (-144) $) 78 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) (-144)) $) 75 (|has| $ (-6 -4417)))) (-4362 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) 77 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4417)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) 74 (|has| $ (-6 -4417))) (((-144) (-1 (-144) (-144) (-144)) $) 73 (|has| $ (-6 -4417)))) (-1332 (((-144) $ (-566) (-144)) 54 (|has| $ (-6 -4418)))) (-3137 (((-144) $ (-566)) 52)) (-1540 (((-112) $ $) 120)) (-3968 (((-566) (-1 (-112) (-144)) $) 98) (((-566) (-144) $) 97 (|has| (-144) (-1099))) (((-566) (-144) $ (-566)) 96 (|has| (-144) (-1099))) (((-566) $ $ (-566)) 114) (((-566) (-141) $ (-566)) 113)) (-3372 (((-644 (-144)) $) 31 (|has| $ (-6 -4417)))) (-4257 (($ (-771) (-144)) 70)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 44 (|has| (-566) (-850)))) (-1439 (($ $ $) 88 (|has| (-144) (-850)))) (-3132 (($ (-1 (-112) (-144) (-144)) $ $) 102) (($ $ $) 95 (|has| (-144) (-850)))) (-2404 (((-644 (-144)) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) (-144) $) 28 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 45 (|has| (-566) (-850)))) (-3059 (($ $ $) 87 (|has| (-144) (-850)))) (-3990 (((-112) $ $ (-144)) 116)) (-3926 (((-771) $ $ (-144)) 117)) (-1323 (($ (-1 (-144) (-144)) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-144) (-144)) $) 36) (($ (-1 (-144) (-144) (-144)) $ $) 65)) (-3438 (($ $) 123)) (-1482 (($ $) 124)) (-3882 (((-112) $ (-771)) 10)) (-1608 (($ $ (-144)) 107) (($ $ (-141)) 106)) (-2878 (((-1157) $) 22)) (-4268 (($ (-144) $ (-566)) 61) (($ $ $ (-566)) 60)) (-1922 (((-644 (-566)) $) 47)) (-2040 (((-112) (-566) $) 48)) (-4033 (((-1119) $) 21)) (-4062 (((-144) $) 43 (|has| (-566) (-850)))) (-2126 (((-3 (-144) "failed") (-1 (-112) (-144)) $) 72)) (-1720 (($ $ (-144)) 42 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) (-144)) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-144)))) 27 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-295 (-144))) 26 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-144) (-144)) 25 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-644 (-144)) (-644 (-144))) 24 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) (-144) $) 46 (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-2784 (((-644 (-144)) $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 (((-144) $ (-566) (-144)) 51) (((-144) $ (-566)) 50) (($ $ (-1231 (-566))) 64) (($ $ $) 103)) (-2201 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4044 (((-771) (-1 (-112) (-144)) $) 32 (|has| $ (-6 -4417))) (((-771) (-144) $) 29 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4417))))) (-3245 (($ $ $ (-566)) 92 (|has| $ (-6 -4418)))) (-3895 (($ $) 13)) (-3134 (((-538) $) 80 (|has| (-144) (-614 (-538))))) (-2523 (($ (-644 (-144))) 71)) (-3704 (($ $ (-144)) 69) (($ (-144) $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-2512 (($ (-144)) 112) (((-862) $) 18)) (-3122 (((-112) $ $) 23)) (-3427 (((-112) (-1 (-112) (-144)) $) 34 (|has| $ (-6 -4417)))) (-2178 (((-1157) $) 132) (((-1157) $ (-112)) 131) (((-1269) (-822) $) 130) (((-1269) (-822) $ (-112)) 129)) (-2998 (((-112) $ $) 85 (|has| (-144) (-850)))) (-2974 (((-112) $ $) 84 (|has| (-144) (-850)))) (-2940 (((-112) $ $) 20)) (-2987 (((-112) $ $) 86 (|has| (-144) (-850)))) (-2962 (((-112) $ $) 83 (|has| (-144) (-850)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-4326 (((-1155 |#1|) (-1155 |#1|)) 17)) (-1475 (((-1155 |#1|) (-1155 |#1|)) 13)) (-2742 (((-1155 |#1|) (-1155 |#1|) (-566) (-566)) 20)) (-2506 (((-1155 |#1|) (-1155 |#1|)) 15)))
+(((-1151 |#1|) (-10 -7 (-15 -1475 ((-1155 |#1|) (-1155 |#1|))) (-15 -2506 ((-1155 |#1|) (-1155 |#1|))) (-15 -4326 ((-1155 |#1|) (-1155 |#1|))) (-15 -2742 ((-1155 |#1|) (-1155 |#1|) (-566) (-566)))) (-13 (-558) (-147))) (T -1151))
+((-2742 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-13 (-558) (-147))) (-5 *1 (-1151 *4)))) (-4326 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147))) (-5 *1 (-1151 *3)))) (-2506 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147))) (-5 *1 (-1151 *3)))) (-1475 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147))) (-5 *1 (-1151 *3)))))
+(-10 -7 (-15 -1475 ((-1155 |#1|) (-1155 |#1|))) (-15 -2506 ((-1155 |#1|) (-1155 |#1|))) (-15 -4326 ((-1155 |#1|) (-1155 |#1|))) (-15 -2742 ((-1155 |#1|) (-1155 |#1|) (-566) (-566))))
+((-3727 (((-1155 |#1|) (-1155 (-1155 |#1|))) 15)))
+(((-1152 |#1|) (-10 -7 (-15 -3727 ((-1155 |#1|) (-1155 (-1155 |#1|))))) (-1214)) (T -1152))
+((-3727 (*1 *2 *3) (-12 (-5 *3 (-1155 (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1152 *4)) (-4 *4 (-1214)))))
+(-10 -7 (-15 -3727 ((-1155 |#1|) (-1155 (-1155 |#1|)))))
+((-3264 (((-1155 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|)) 25)) (-1580 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|)) 26)) (-3152 (((-1155 |#2|) (-1 |#2| |#1|) (-1155 |#1|)) 16)))
+(((-1153 |#1| |#2|) (-10 -7 (-15 -3152 ((-1155 |#2|) (-1 |#2| |#1|) (-1155 |#1|))) (-15 -3264 ((-1155 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|))) (-15 -1580 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|)))) (-1214) (-1214)) (T -1153))
+((-1580 (*1 *2 *2 *3 *4) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1155 *5)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-1153 *5 *2)))) (-3264 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1155 *6)) (-4 *6 (-1214)) (-4 *3 (-1214)) (-5 *2 (-1155 *3)) (-5 *1 (-1153 *6 *3)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1155 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1155 *6)) (-5 *1 (-1153 *5 *6)))))
+(-10 -7 (-15 -3152 ((-1155 |#2|) (-1 |#2| |#1|) (-1155 |#1|))) (-15 -3264 ((-1155 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|))) (-15 -1580 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1155 |#1|))))
+((-3152 (((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-1155 |#2|)) 21)))
+(((-1154 |#1| |#2| |#3|) (-10 -7 (-15 -3152 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-1155 |#2|)))) (-1214) (-1214) (-1214)) (T -1154))
+((-3152 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *8 *6 *7)) (-5 *4 (-1155 *6)) (-5 *5 (-1155 *7)) (-4 *6 (-1214)) (-4 *7 (-1214)) (-4 *8 (-1214)) (-5 *2 (-1155 *8)) (-5 *1 (-1154 *6 *7 *8)))))
+(-10 -7 (-15 -3152 ((-1155 |#3|) (-1 |#3| |#1| |#2|) (-1155 |#1|) (-1155 |#2|))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2252 ((|#1| $) NIL)) (-4369 ((|#1| $) NIL)) (-4043 (($ $) 67)) (-2518 (((-1269) $ (-566) (-566)) 99 (|has| $ (-6 -4415)))) (-3670 (($ $ (-566)) 129 (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-2533 (((-862) $) 56 (|has| |#1| (-1099)))) (-2129 (((-112)) 55 (|has| |#1| (-1099)))) (-1637 ((|#1| $ |#1|) NIL (|has| $ (-6 -4415)))) (-1938 (($ $ $) 116 (|has| $ (-6 -4415))) (($ $ (-566) $) 142)) (-1819 ((|#1| $ |#1|) 126 (|has| $ (-6 -4415)))) (-1921 ((|#1| $ |#1|) 121 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ "first" |#1|) 123 (|has| $ (-6 -4415))) (($ $ "rest" $) 125 (|has| $ (-6 -4415))) ((|#1| $ "last" |#1|) 128 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) 113 (|has| $ (-6 -4415))) ((|#1| $ (-566) |#1|) 77 (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) NIL (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) 80)) (-4358 ((|#1| $) NIL)) (-3877 (($) NIL T CONST)) (-3991 (($ $) 14)) (-4112 (($ $) 42) (($ $ (-771)) 111)) (-4234 (((-112) (-644 |#1|) $) 135 (|has| |#1| (-1099)))) (-4083 (($ (-644 |#1|)) 131)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) 79)) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3128 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) NIL)) (-1935 (((-112) $) NIL)) (-3799 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-4312 (((-1269) (-566) $) 141 (|has| |#1| (-1099)))) (-1674 (((-771) $) 138)) (-1432 (((-644 $) $) NIL)) (-4050 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4278 (($ (-771) |#1|) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 95 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 85) (($ (-1 |#1| |#1| |#1|) $ $) 89)) (-3582 (((-112) $ (-771)) NIL)) (-3318 (((-644 |#1|) $) NIL)) (-2675 (((-112) $) NIL)) (-3931 (($ $) 114)) (-3836 (((-112) $) 13)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-2680 ((|#1| $) NIL) (($ $ (-771)) NIL)) (-4286 (($ $ $ (-566)) NIL) (($ |#1| $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) 96)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1318 (($ (-1 |#1|)) 144) (($ (-1 |#1| |#1|) |#1|) 145)) (-1857 ((|#1| $) 10)) (-4101 ((|#1| $) 41) (($ $ (-771)) 65)) (-4252 (((-2 (|:| |cycle?| (-112)) (|:| -4271 (-771)) (|:| |period| (-771))) (-771) $) 36)) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1363 (($ (-1 (-112) |#1|) $) 146)) (-1375 (($ (-1 (-112) |#1|) $) 147)) (-3750 (($ $ |#1|) 90 (|has| $ (-6 -4415)))) (-2295 (($ $ (-566)) 45)) (-1927 (((-112) $) 94)) (-1524 (((-112) $) 12)) (-2173 (((-112) $) 137)) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 30)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) 20)) (-1793 (($) 60)) (-4393 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1231 (-566))) NIL) ((|#1| $ (-566)) 75) ((|#1| $ (-566) |#1|) NIL)) (-3969 (((-566) $ $) 64)) (-2215 (($ $ (-1231 (-566))) NIL) (($ $ (-566)) NIL)) (-1665 (($ (-1 $)) 63)) (-1638 (((-112) $) 91)) (-2299 (($ $) 92)) (-2127 (($ $) 117 (|has| $ (-6 -4415)))) (-1472 (((-771) $) NIL)) (-1957 (($ $) NIL)) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) 59)) (-3204 (((-538) $) NIL (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 73)) (-1873 (($ |#1| $) 115)) (-3324 (($ $ $) 119 (|has| $ (-6 -4415))) (($ $ |#1|) 120 (|has| $ (-6 -4415)))) (-3727 (($ $ $) 101) (($ |#1| $) 61) (($ (-644 $)) 106) (($ $ |#1|) 100)) (-1377 (($ $) 66)) (-3780 (($ (-644 |#1|)) 130) (((-862) $) 57 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) NIL)) (-3381 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 133 (|has| |#1| (-1099)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1155 |#1|) (-13 (-674 |#1|) (-616 (-644 |#1|)) (-10 -8 (-6 -4415) (-15 -4083 ($ (-644 |#1|))) (IF (|has| |#1| (-1099)) (-15 -4234 ((-112) (-644 |#1|) $)) |%noBranch|) (-15 -4252 ((-2 (|:| |cycle?| (-112)) (|:| -4271 (-771)) (|:| |period| (-771))) (-771) $)) (-15 -1665 ($ (-1 $))) (-15 -1873 ($ |#1| $)) (IF (|has| |#1| (-1099)) (PROGN (-15 -4312 ((-1269) (-566) $)) (-15 -2533 ((-862) $)) (-15 -2129 ((-112)))) |%noBranch|) (-15 -1938 ($ $ (-566) $)) (-15 -1318 ($ (-1 |#1|))) (-15 -1318 ($ (-1 |#1| |#1|) |#1|)) (-15 -1363 ($ (-1 (-112) |#1|) $)) (-15 -1375 ($ (-1 (-112) |#1|) $)))) (-1214)) (T -1155))
+((-4083 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))) (-4234 (*1 *2 *3 *1) (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-4 *4 (-1214)) (-5 *2 (-112)) (-5 *1 (-1155 *4)))) (-4252 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -4271 (-771)) (|:| |period| (-771)))) (-5 *1 (-1155 *4)) (-4 *4 (-1214)) (-5 *3 (-771)))) (-1665 (*1 *1 *2) (-12 (-5 *2 (-1 (-1155 *3))) (-5 *1 (-1155 *3)) (-4 *3 (-1214)))) (-1873 (*1 *1 *2 *1) (-12 (-5 *1 (-1155 *2)) (-4 *2 (-1214)))) (-4312 (*1 *2 *3 *1) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1155 *4)) (-4 *4 (-1099)) (-4 *4 (-1214)))) (-2533 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-1155 *3)) (-4 *3 (-1099)) (-4 *3 (-1214)))) (-2129 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1155 *3)) (-4 *3 (-1099)) (-4 *3 (-1214)))) (-1938 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1155 *3)) (-4 *3 (-1214)))) (-1318 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))) (-1318 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))) (-1363 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))) (-1375 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))))
+(-13 (-674 |#1|) (-616 (-644 |#1|)) (-10 -8 (-6 -4415) (-15 -4083 ($ (-644 |#1|))) (IF (|has| |#1| (-1099)) (-15 -4234 ((-112) (-644 |#1|) $)) |%noBranch|) (-15 -4252 ((-2 (|:| |cycle?| (-112)) (|:| -4271 (-771)) (|:| |period| (-771))) (-771) $)) (-15 -1665 ($ (-1 $))) (-15 -1873 ($ |#1| $)) (IF (|has| |#1| (-1099)) (PROGN (-15 -4312 ((-1269) (-566) $)) (-15 -2533 ((-862) $)) (-15 -2129 ((-112)))) |%noBranch|) (-15 -1938 ($ $ (-566) $)) (-15 -1318 ($ (-1 |#1|))) (-15 -1318 ($ (-1 |#1| |#1|) |#1|)) (-15 -1363 ($ (-1 (-112) |#1|) $)) (-15 -1375 ($ (-1 (-112) |#1|) $))))
+((-3009 (((-112) $ $) 19)) (-2107 (($ $) 121)) (-4146 (($ $) 122)) (-1884 (($ $ (-144)) 109) (($ $ (-141)) 108)) (-2518 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4415)))) (-2329 (((-112) $ $) 119)) (-2307 (((-112) $ $ (-566)) 118)) (-4336 (($ (-566)) 128)) (-3920 (((-644 $) $ (-144)) 111) (((-644 $) $ (-141)) 110)) (-3070 (((-112) (-1 (-112) (-144) (-144)) $) 99) (((-112) $) 93 (|has| (-144) (-850)))) (-1570 (($ (-1 (-112) (-144) (-144)) $) 90 (|has| $ (-6 -4415))) (($ $) 89 (-12 (|has| (-144) (-850)) (|has| $ (-6 -4415))))) (-1568 (($ (-1 (-112) (-144) (-144)) $) 100) (($ $) 94 (|has| (-144) (-850)))) (-1574 (((-112) $ (-771)) 8)) (-3916 (((-144) $ (-566) (-144)) 53 (|has| $ (-6 -4415))) (((-144) $ (-1231 (-566)) (-144)) 59 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) (-144)) $) 76 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-1660 (($ $ (-144)) 105) (($ $ (-141)) 104)) (-3416 (($ $) 91 (|has| $ (-6 -4415)))) (-3507 (($ $) 101)) (-3956 (($ $ (-1231 (-566)) $) 115)) (-4133 (($ $) 79 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ (-144) $) 78 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) (-144)) $) 75 (|has| $ (-6 -4414)))) (-1580 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) 77 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4414)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) 74 (|has| $ (-6 -4414))) (((-144) (-1 (-144) (-144) (-144)) $) 73 (|has| $ (-6 -4414)))) (-3128 (((-144) $ (-566) (-144)) 54 (|has| $ (-6 -4415)))) (-3059 (((-144) $ (-566)) 52)) (-2353 (((-112) $ $) 120)) (-4015 (((-566) (-1 (-112) (-144)) $) 98) (((-566) (-144) $) 97 (|has| (-144) (-1099))) (((-566) (-144) $ (-566)) 96 (|has| (-144) (-1099))) (((-566) $ $ (-566)) 114) (((-566) (-141) $ (-566)) 113)) (-3799 (((-644 (-144)) $) 31 (|has| $ (-6 -4414)))) (-4278 (($ (-771) (-144)) 70)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 44 (|has| (-566) (-850)))) (-1945 (($ $ $) 88 (|has| (-144) (-850)))) (-3891 (($ (-1 (-112) (-144) (-144)) $ $) 102) (($ $ $) 95 (|has| (-144) (-850)))) (-3276 (((-644 (-144)) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) (-144) $) 28 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 45 (|has| (-566) (-850)))) (-2709 (($ $ $) 87 (|has| (-144) (-850)))) (-4039 (((-112) $ $ (-144)) 116)) (-2810 (((-771) $ $ (-144)) 117)) (-3117 (($ (-1 (-144) (-144)) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-144) (-144)) $) 36) (($ (-1 (-144) (-144) (-144)) $ $) 65)) (-1718 (($ $) 123)) (-3160 (($ $) 124)) (-3582 (((-112) $ (-771)) 10)) (-1672 (($ $ (-144)) 107) (($ $ (-141)) 106)) (-2402 (((-1157) $) 22)) (-4286 (($ (-144) $ (-566)) 61) (($ $ $ (-566)) 60)) (-2140 (((-644 (-566)) $) 47)) (-3935 (((-112) (-566) $) 48)) (-4056 (((-1119) $) 21)) (-4101 (((-144) $) 43 (|has| (-566) (-850)))) (-3591 (((-3 (-144) "failed") (-1 (-112) (-144)) $) 72)) (-3750 (($ $ (-144)) 42 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) (-144)) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-144)))) 27 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-295 (-144))) 26 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-144) (-144)) 25 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-644 (-144)) (-644 (-144))) 24 (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) (-144) $) 46 (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-2684 (((-644 (-144)) $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 (((-144) $ (-566) (-144)) 51) (((-144) $ (-566)) 50) (($ $ (-1231 (-566))) 64) (($ $ $) 103)) (-2215 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4067 (((-771) (-1 (-112) (-144)) $) 32 (|has| $ (-6 -4414))) (((-771) (-144) $) 29 (-12 (|has| (-144) (-1099)) (|has| $ (-6 -4414))))) (-3610 (($ $ $ (-566)) 92 (|has| $ (-6 -4415)))) (-3940 (($ $) 13)) (-3204 (((-538) $) 80 (|has| (-144) (-614 (-538))))) (-3791 (($ (-644 (-144))) 71)) (-3727 (($ $ (-144)) 69) (($ (-144) $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-3780 (($ (-144)) 112) (((-862) $) 18)) (-3801 (((-112) $ $) 23)) (-1583 (((-112) (-1 (-112) (-144)) $) 34 (|has| $ (-6 -4414)))) (-2852 (((-1157) $) 132) (((-1157) $ (-112)) 131) (((-1269) (-822) $) 130) (((-1269) (-822) $ (-112)) 129)) (-3010 (((-112) $ $) 85 (|has| (-144) (-850)))) (-2984 (((-112) $ $) 84 (|has| (-144) (-850)))) (-2950 (((-112) $ $) 20)) (-2999 (((-112) $ $) 86 (|has| (-144) (-850)))) (-2972 (((-112) $ $) 83 (|has| (-144) (-850)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-1156) (-140)) (T -1156))
-((-4318 (*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1156)))))
-(-13 (-1143) (-1099) (-828) (-10 -8 (-15 -4318 ($ (-566)))))
+((-4336 (*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1156)))))
+(-13 (-1143) (-1099) (-828) (-10 -8 (-15 -4336 ($ (-566)))))
(((-34) . T) ((-102) . T) ((-613 (-862)) . T) ((-151 #0=(-144)) . T) ((-614 (-538)) |has| (-144) (-614 (-538))) ((-287 #1=(-566) #0#) . T) ((-289 #1# #0#) . T) ((-310 #0#) -12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))) ((-375 #0#) . T) ((-491 #0#) . T) ((-604 #1# #0#) . T) ((-516 #0# #0#) -12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))) ((-651 #0#) . T) ((-19 #0#) . T) ((-828) . T) ((-850) |has| (-144) (-850)) ((-1099) . T) ((-1143) . T) ((-1214) . T))
-((-2985 (((-112) $ $) NIL)) (-2849 (($ $) NIL)) (-1760 (($ $) NIL)) (-1896 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-1516 (((-112) $ $) NIL)) (-1493 (((-112) $ $ (-566)) NIL)) (-4318 (($ (-566)) 8)) (-3473 (((-644 $) $ (-144)) NIL) (((-644 $) $ (-141)) NIL)) (-2383 (((-112) (-1 (-112) (-144) (-144)) $) NIL) (((-112) $) NIL (|has| (-144) (-850)))) (-3426 (($ (-1 (-112) (-144) (-144)) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| (-144) (-850))))) (-3290 (($ (-1 (-112) (-144) (-144)) $) NIL) (($ $) NIL (|has| (-144) (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 (((-144) $ (-566) (-144)) NIL (|has| $ (-6 -4418))) (((-144) $ (-1231 (-566)) (-144)) NIL (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-1596 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4121 (($ $ (-1231 (-566)) $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-2651 (($ (-144) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099)))) (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4417))) (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4417)))) (-1332 (((-144) $ (-566) (-144)) NIL (|has| $ (-6 -4418)))) (-3137 (((-144) $ (-566)) NIL)) (-1540 (((-112) $ $) NIL)) (-3968 (((-566) (-1 (-112) (-144)) $) NIL) (((-566) (-144) $) NIL (|has| (-144) (-1099))) (((-566) (-144) $ (-566)) NIL (|has| (-144) (-1099))) (((-566) $ $ (-566)) NIL) (((-566) (-141) $ (-566)) NIL)) (-3372 (((-644 (-144)) $) NIL (|has| $ (-6 -4417)))) (-4257 (($ (-771) (-144)) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| (-144) (-850)))) (-3132 (($ (-1 (-112) (-144) (-144)) $ $) NIL) (($ $ $) NIL (|has| (-144) (-850)))) (-2404 (((-644 (-144)) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| (-144) (-850)))) (-3990 (((-112) $ $ (-144)) NIL)) (-3926 (((-771) $ $ (-144)) NIL)) (-1323 (($ (-1 (-144) (-144)) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-144) (-144)) $) NIL) (($ (-1 (-144) (-144) (-144)) $ $) NIL)) (-3438 (($ $) NIL)) (-1482 (($ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-1608 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-2878 (((-1157) $) NIL)) (-4268 (($ (-144) $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 (((-144) $) NIL (|has| (-566) (-850)))) (-2126 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-1720 (($ $ (-144)) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-144)))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-295 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-644 (-144)) (-644 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-2784 (((-644 (-144)) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 (((-144) $ (-566) (-144)) NIL) (((-144) $ (-566)) NIL) (($ $ (-1231 (-566))) NIL) (($ $ $) NIL)) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4044 (((-771) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417))) (((-771) (-144) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-144) (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-144) (-614 (-538))))) (-2523 (($ (-644 (-144))) NIL)) (-3704 (($ $ (-144)) NIL) (($ (-144) $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-2512 (($ (-144)) NIL) (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-3427 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4417)))) (-2178 (((-1157) $) 19) (((-1157) $ (-112)) 21) (((-1269) (-822) $) 22) (((-1269) (-822) $ (-112)) 23)) (-2998 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2974 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2962 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-2107 (($ $) NIL)) (-4146 (($ $) NIL)) (-1884 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-2329 (((-112) $ $) NIL)) (-2307 (((-112) $ $ (-566)) NIL)) (-4336 (($ (-566)) 8)) (-3920 (((-644 $) $ (-144)) NIL) (((-644 $) $ (-141)) NIL)) (-3070 (((-112) (-1 (-112) (-144) (-144)) $) NIL) (((-112) $) NIL (|has| (-144) (-850)))) (-1570 (($ (-1 (-112) (-144) (-144)) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| (-144) (-850))))) (-1568 (($ (-1 (-112) (-144) (-144)) $) NIL) (($ $) NIL (|has| (-144) (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 (((-144) $ (-566) (-144)) NIL (|has| $ (-6 -4415))) (((-144) $ (-1231 (-566)) (-144)) NIL (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-1660 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-3956 (($ $ (-1231 (-566)) $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-2661 (($ (-144) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099)))) (($ (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-144) (-1 (-144) (-144) (-144)) $ (-144) (-144)) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099)))) (((-144) (-1 (-144) (-144) (-144)) $ (-144)) NIL (|has| $ (-6 -4414))) (((-144) (-1 (-144) (-144) (-144)) $) NIL (|has| $ (-6 -4414)))) (-3128 (((-144) $ (-566) (-144)) NIL (|has| $ (-6 -4415)))) (-3059 (((-144) $ (-566)) NIL)) (-2353 (((-112) $ $) NIL)) (-4015 (((-566) (-1 (-112) (-144)) $) NIL) (((-566) (-144) $) NIL (|has| (-144) (-1099))) (((-566) (-144) $ (-566)) NIL (|has| (-144) (-1099))) (((-566) $ $ (-566)) NIL) (((-566) (-141) $ (-566)) NIL)) (-3799 (((-644 (-144)) $) NIL (|has| $ (-6 -4414)))) (-4278 (($ (-771) (-144)) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| (-144) (-850)))) (-3891 (($ (-1 (-112) (-144) (-144)) $ $) NIL) (($ $ $) NIL (|has| (-144) (-850)))) (-3276 (((-644 (-144)) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| (-144) (-850)))) (-4039 (((-112) $ $ (-144)) NIL)) (-2810 (((-771) $ $ (-144)) NIL)) (-3117 (($ (-1 (-144) (-144)) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-144) (-144)) $) NIL) (($ (-1 (-144) (-144) (-144)) $ $) NIL)) (-1718 (($ $) NIL)) (-3160 (($ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-1672 (($ $ (-144)) NIL) (($ $ (-141)) NIL)) (-2402 (((-1157) $) NIL)) (-4286 (($ (-144) $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 (((-144) $) NIL (|has| (-566) (-850)))) (-3591 (((-3 (-144) "failed") (-1 (-112) (-144)) $) NIL)) (-3750 (($ $ (-144)) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-144)))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-295 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-144) (-144)) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099)))) (($ $ (-644 (-144)) (-644 (-144))) NIL (-12 (|has| (-144) (-310 (-144))) (|has| (-144) (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) (-144) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-2684 (((-644 (-144)) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 (((-144) $ (-566) (-144)) NIL) (((-144) $ (-566)) NIL) (($ $ (-1231 (-566))) NIL) (($ $ $) NIL)) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4067 (((-771) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414))) (((-771) (-144) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-144) (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-144) (-614 (-538))))) (-3791 (($ (-644 (-144))) NIL)) (-3727 (($ $ (-144)) NIL) (($ (-144) $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-3780 (($ (-144)) NIL) (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-1583 (((-112) (-1 (-112) (-144)) $) NIL (|has| $ (-6 -4414)))) (-2852 (((-1157) $) 19) (((-1157) $ (-112)) 21) (((-1269) (-822) $) 22) (((-1269) (-822) $ (-112)) 23)) (-3010 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2984 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (|has| (-144) (-850)))) (-2972 (((-112) $ $) NIL (|has| (-144) (-850)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
(((-1157) (-1156)) (T -1157))
NIL
(-1156)
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)) (|has| |#1| (-1099))))) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL)) (-1537 (((-1269) $ (-1157) (-1157)) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-1157) |#1|) NIL)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-2414 (((-3 |#1| "failed") (-1157) $) NIL)) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099))))) (-3066 (($ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417))) (((-3 |#1| "failed") (-1157) $) NIL)) (-2651 (($ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-1157) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-1157)) NIL)) (-3372 (((-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-1157) $) NIL (|has| (-1157) (-850)))) (-2404 (((-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-1157) $) NIL (|has| (-1157) (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4418))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)) (|has| |#1| (-1099))))) (-3949 (((-644 (-1157)) $) NIL)) (-3221 (((-112) (-1157) $) NIL)) (-3119 (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL)) (-4265 (($ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL)) (-1922 (((-644 (-1157)) $) NIL)) (-2040 (((-112) (-1157) $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)) (|has| |#1| (-1099))))) (-4062 ((|#1| $) NIL (|has| (-1157) (-850)))) (-2126 (((-3 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) "failed") (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL)) (-1720 (($ $ |#1|) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (($ $ (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL (-12 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-310 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-1157)) NIL) ((|#1| $ (-1157) |#1|) NIL)) (-3879 (($) NIL) (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL)) (-2512 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-613 (-862))) (|has| |#1| (-613 (-862)))))) (-3122 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)) (|has| |#1| (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)))) NIL)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 (-1157)) (|:| -2818 |#1|)) (-1099)) (|has| |#1| (-1099))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1158 |#1|) (-13 (-1190 (-1157) |#1|) (-10 -7 (-6 -4417))) (-1099)) (T -1158))
-NIL
-(-13 (-1190 (-1157) |#1|) (-10 -7 (-6 -4417)))
-((-2186 (((-1155 |#1|) (-1155 |#1|)) 85)) (-1579 (((-3 (-1155 |#1|) "failed") (-1155 |#1|)) 42)) (-3025 (((-1155 |#1|) (-409 (-566)) (-1155 |#1|)) 136 (|has| |#1| (-38 (-409 (-566)))))) (-1812 (((-1155 |#1|) |#1| (-1155 |#1|)) 142 (|has| |#1| (-365)))) (-1841 (((-1155 |#1|) (-1155 |#1|)) 100)) (-2992 (((-1155 (-566)) (-566)) 64)) (-4310 (((-1155 |#1|) (-1155 (-1155 |#1|))) 119 (|has| |#1| (-38 (-409 (-566)))))) (-2924 (((-1155 |#1|) (-566) (-566) (-1155 |#1|)) 105)) (-1966 (((-1155 |#1|) |#1| (-566)) 54)) (-3476 (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 67)) (-4356 (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 139 (|has| |#1| (-365)))) (-3381 (((-1155 |#1|) |#1| (-1 (-1155 |#1|))) 118 (|has| |#1| (-38 (-409 (-566)))))) (-1592 (((-1155 |#1|) (-1 |#1| (-566)) |#1| (-1 (-1155 |#1|))) 140 (|has| |#1| (-365)))) (-2764 (((-1155 |#1|) (-1155 |#1|)) 99)) (-1584 (((-1155 |#1|) (-1155 |#1|)) 83)) (-4013 (((-1155 |#1|) (-566) (-566) (-1155 |#1|)) 106)) (-4117 (((-1155 |#1|) |#1| (-1155 |#1|)) 115 (|has| |#1| (-38 (-409 (-566)))))) (-2215 (((-1155 (-566)) (-566)) 63)) (-1395 (((-1155 |#1|) |#1|) 66)) (-1352 (((-1155 |#1|) (-1155 |#1|) (-566) (-566)) 102)) (-3316 (((-1155 |#1|) (-1 |#1| (-566)) (-1155 |#1|)) 73)) (-2972 (((-3 (-1155 |#1|) "failed") (-1155 |#1|) (-1155 |#1|)) 40)) (-2146 (((-1155 |#1|) (-1155 |#1|)) 101)) (-2070 (((-1155 |#1|) (-1155 |#1|) |#1|) 78)) (-3989 (((-1155 |#1|) (-1155 |#1|)) 69)) (-1803 (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 79)) (-2512 (((-1155 |#1|) |#1|) 74)) (-1597 (((-1155 |#1|) (-1155 (-1155 |#1|))) 90)) (-3061 (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 41)) (-3047 (((-1155 |#1|) (-1155 |#1|)) 21) (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 23)) (-3034 (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 17)) (* (((-1155 |#1|) (-1155 |#1|) |#1|) 29) (((-1155 |#1|) |#1| (-1155 |#1|)) 26) (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 27)))
-(((-1159 |#1|) (-10 -7 (-15 -3034 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3047 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3047 ((-1155 |#1|) (-1155 |#1|))) (-15 * ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 * ((-1155 |#1|) |#1| (-1155 |#1|))) (-15 * ((-1155 |#1|) (-1155 |#1|) |#1|)) (-15 -2972 ((-3 (-1155 |#1|) "failed") (-1155 |#1|) (-1155 |#1|))) (-15 -3061 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -1579 ((-3 (-1155 |#1|) "failed") (-1155 |#1|))) (-15 -1966 ((-1155 |#1|) |#1| (-566))) (-15 -2215 ((-1155 (-566)) (-566))) (-15 -2992 ((-1155 (-566)) (-566))) (-15 -1395 ((-1155 |#1|) |#1|)) (-15 -3476 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3989 ((-1155 |#1|) (-1155 |#1|))) (-15 -3316 ((-1155 |#1|) (-1 |#1| (-566)) (-1155 |#1|))) (-15 -2512 ((-1155 |#1|) |#1|)) (-15 -2070 ((-1155 |#1|) (-1155 |#1|) |#1|)) (-15 -1803 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -1584 ((-1155 |#1|) (-1155 |#1|))) (-15 -2186 ((-1155 |#1|) (-1155 |#1|))) (-15 -1597 ((-1155 |#1|) (-1155 (-1155 |#1|)))) (-15 -2764 ((-1155 |#1|) (-1155 |#1|))) (-15 -1841 ((-1155 |#1|) (-1155 |#1|))) (-15 -2146 ((-1155 |#1|) (-1155 |#1|))) (-15 -1352 ((-1155 |#1|) (-1155 |#1|) (-566) (-566))) (-15 -2924 ((-1155 |#1|) (-566) (-566) (-1155 |#1|))) (-15 -4013 ((-1155 |#1|) (-566) (-566) (-1155 |#1|))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ((-1155 |#1|) |#1| (-1155 |#1|))) (-15 -3381 ((-1155 |#1|) |#1| (-1 (-1155 |#1|)))) (-15 -4310 ((-1155 |#1|) (-1155 (-1155 |#1|)))) (-15 -3025 ((-1155 |#1|) (-409 (-566)) (-1155 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -4356 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -1592 ((-1155 |#1|) (-1 |#1| (-566)) |#1| (-1 (-1155 |#1|)))) (-15 -1812 ((-1155 |#1|) |#1| (-1155 |#1|)))) |%noBranch|)) (-1049)) (T -1159))
-((-1812 (*1 *2 *3 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-1592 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-566))) (-5 *5 (-1 (-1155 *4))) (-4 *4 (-365)) (-4 *4 (-1049)) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4)))) (-4356 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3025 (*1 *2 *3 *2) (-12 (-5 *2 (-1155 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1049)) (-5 *3 (-409 (-566))) (-5 *1 (-1159 *4)))) (-4310 (*1 *2 *3) (-12 (-5 *3 (-1155 (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4)) (-4 *4 (-38 (-409 (-566)))) (-4 *4 (-1049)))) (-3381 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1155 *3))) (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)))) (-4117 (*1 *2 *3 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-4013 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049)) (-5 *1 (-1159 *4)))) (-2924 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049)) (-5 *1 (-1159 *4)))) (-1352 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049)) (-5 *1 (-1159 *4)))) (-2146 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-1841 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-2764 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-1597 (*1 *2 *3) (-12 (-5 *3 (-1155 (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4)) (-4 *4 (-1049)))) (-2186 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-1584 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-1803 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-2070 (*1 *2 *2 *3) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-2512 (*1 *2 *3) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-1049)))) (-3316 (*1 *2 *3 *2) (-12 (-5 *2 (-1155 *4)) (-5 *3 (-1 *4 (-566))) (-4 *4 (-1049)) (-5 *1 (-1159 *4)))) (-3989 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3476 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-1395 (*1 *2 *3) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-1049)))) (-2992 (*1 *2 *3) (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1159 *4)) (-4 *4 (-1049)) (-5 *3 (-566)))) (-2215 (*1 *2 *3) (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1159 *4)) (-4 *4 (-1049)) (-5 *3 (-566)))) (-1966 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-1049)))) (-1579 (*1 *2 *2) (|partial| -12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3061 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-2972 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3047 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3047 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3034 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
-(-10 -7 (-15 -3034 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3047 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3047 ((-1155 |#1|) (-1155 |#1|))) (-15 * ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 * ((-1155 |#1|) |#1| (-1155 |#1|))) (-15 * ((-1155 |#1|) (-1155 |#1|) |#1|)) (-15 -2972 ((-3 (-1155 |#1|) "failed") (-1155 |#1|) (-1155 |#1|))) (-15 -3061 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -1579 ((-3 (-1155 |#1|) "failed") (-1155 |#1|))) (-15 -1966 ((-1155 |#1|) |#1| (-566))) (-15 -2215 ((-1155 (-566)) (-566))) (-15 -2992 ((-1155 (-566)) (-566))) (-15 -1395 ((-1155 |#1|) |#1|)) (-15 -3476 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3989 ((-1155 |#1|) (-1155 |#1|))) (-15 -3316 ((-1155 |#1|) (-1 |#1| (-566)) (-1155 |#1|))) (-15 -2512 ((-1155 |#1|) |#1|)) (-15 -2070 ((-1155 |#1|) (-1155 |#1|) |#1|)) (-15 -1803 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -1584 ((-1155 |#1|) (-1155 |#1|))) (-15 -2186 ((-1155 |#1|) (-1155 |#1|))) (-15 -1597 ((-1155 |#1|) (-1155 (-1155 |#1|)))) (-15 -2764 ((-1155 |#1|) (-1155 |#1|))) (-15 -1841 ((-1155 |#1|) (-1155 |#1|))) (-15 -2146 ((-1155 |#1|) (-1155 |#1|))) (-15 -1352 ((-1155 |#1|) (-1155 |#1|) (-566) (-566))) (-15 -2924 ((-1155 |#1|) (-566) (-566) (-1155 |#1|))) (-15 -4013 ((-1155 |#1|) (-566) (-566) (-1155 |#1|))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ((-1155 |#1|) |#1| (-1155 |#1|))) (-15 -3381 ((-1155 |#1|) |#1| (-1 (-1155 |#1|)))) (-15 -4310 ((-1155 |#1|) (-1155 (-1155 |#1|)))) (-15 -3025 ((-1155 |#1|) (-409 (-566)) (-1155 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -4356 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -1592 ((-1155 |#1|) (-1 |#1| (-566)) |#1| (-1 (-1155 |#1|)))) (-15 -1812 ((-1155 |#1|) |#1| (-1155 |#1|)))) |%noBranch|))
-((-3235 (((-1155 |#1|) (-1155 |#1|)) 60)) (-3102 (((-1155 |#1|) (-1155 |#1|)) 42)) (-3215 (((-1155 |#1|) (-1155 |#1|)) 56)) (-3076 (((-1155 |#1|) (-1155 |#1|)) 38)) (-3259 (((-1155 |#1|) (-1155 |#1|)) 63)) (-3123 (((-1155 |#1|) (-1155 |#1|)) 45)) (-3668 (((-1155 |#1|) (-1155 |#1|)) 34)) (-3613 (((-1155 |#1|) (-1155 |#1|)) 29)) (-3267 (((-1155 |#1|) (-1155 |#1|)) 64)) (-3133 (((-1155 |#1|) (-1155 |#1|)) 46)) (-3248 (((-1155 |#1|) (-1155 |#1|)) 61)) (-3112 (((-1155 |#1|) (-1155 |#1|)) 43)) (-3223 (((-1155 |#1|) (-1155 |#1|)) 58)) (-3089 (((-1155 |#1|) (-1155 |#1|)) 40)) (-3302 (((-1155 |#1|) (-1155 |#1|)) 68)) (-3172 (((-1155 |#1|) (-1155 |#1|)) 50)) (-3279 (((-1155 |#1|) (-1155 |#1|)) 66)) (-3146 (((-1155 |#1|) (-1155 |#1|)) 48)) (-3323 (((-1155 |#1|) (-1155 |#1|)) 71)) (-3194 (((-1155 |#1|) (-1155 |#1|)) 53)) (-1382 (((-1155 |#1|) (-1155 |#1|)) 72)) (-3205 (((-1155 |#1|) (-1155 |#1|)) 54)) (-3313 (((-1155 |#1|) (-1155 |#1|)) 70)) (-3185 (((-1155 |#1|) (-1155 |#1|)) 52)) (-3291 (((-1155 |#1|) (-1155 |#1|)) 69)) (-3160 (((-1155 |#1|) (-1155 |#1|)) 51)) (** (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 36)))
-(((-1160 |#1|) (-10 -7 (-15 -3613 ((-1155 |#1|) (-1155 |#1|))) (-15 -3668 ((-1155 |#1|) (-1155 |#1|))) (-15 ** ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3076 ((-1155 |#1|) (-1155 |#1|))) (-15 -3089 ((-1155 |#1|) (-1155 |#1|))) (-15 -3102 ((-1155 |#1|) (-1155 |#1|))) (-15 -3112 ((-1155 |#1|) (-1155 |#1|))) (-15 -3123 ((-1155 |#1|) (-1155 |#1|))) (-15 -3133 ((-1155 |#1|) (-1155 |#1|))) (-15 -3146 ((-1155 |#1|) (-1155 |#1|))) (-15 -3160 ((-1155 |#1|) (-1155 |#1|))) (-15 -3172 ((-1155 |#1|) (-1155 |#1|))) (-15 -3185 ((-1155 |#1|) (-1155 |#1|))) (-15 -3194 ((-1155 |#1|) (-1155 |#1|))) (-15 -3205 ((-1155 |#1|) (-1155 |#1|))) (-15 -3215 ((-1155 |#1|) (-1155 |#1|))) (-15 -3223 ((-1155 |#1|) (-1155 |#1|))) (-15 -3235 ((-1155 |#1|) (-1155 |#1|))) (-15 -3248 ((-1155 |#1|) (-1155 |#1|))) (-15 -3259 ((-1155 |#1|) (-1155 |#1|))) (-15 -3267 ((-1155 |#1|) (-1155 |#1|))) (-15 -3279 ((-1155 |#1|) (-1155 |#1|))) (-15 -3291 ((-1155 |#1|) (-1155 |#1|))) (-15 -3302 ((-1155 |#1|) (-1155 |#1|))) (-15 -3313 ((-1155 |#1|) (-1155 |#1|))) (-15 -3323 ((-1155 |#1|) (-1155 |#1|))) (-15 -1382 ((-1155 |#1|) (-1155 |#1|)))) (-38 (-409 (-566)))) (T -1160))
-((-1382 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3323 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3313 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3302 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3291 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3279 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3267 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3259 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3248 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3235 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3223 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3215 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3205 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3194 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3185 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3172 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3160 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3146 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3133 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3123 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3112 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3102 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3089 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3076 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3668 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3613 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))))
-(-10 -7 (-15 -3613 ((-1155 |#1|) (-1155 |#1|))) (-15 -3668 ((-1155 |#1|) (-1155 |#1|))) (-15 ** ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3076 ((-1155 |#1|) (-1155 |#1|))) (-15 -3089 ((-1155 |#1|) (-1155 |#1|))) (-15 -3102 ((-1155 |#1|) (-1155 |#1|))) (-15 -3112 ((-1155 |#1|) (-1155 |#1|))) (-15 -3123 ((-1155 |#1|) (-1155 |#1|))) (-15 -3133 ((-1155 |#1|) (-1155 |#1|))) (-15 -3146 ((-1155 |#1|) (-1155 |#1|))) (-15 -3160 ((-1155 |#1|) (-1155 |#1|))) (-15 -3172 ((-1155 |#1|) (-1155 |#1|))) (-15 -3185 ((-1155 |#1|) (-1155 |#1|))) (-15 -3194 ((-1155 |#1|) (-1155 |#1|))) (-15 -3205 ((-1155 |#1|) (-1155 |#1|))) (-15 -3215 ((-1155 |#1|) (-1155 |#1|))) (-15 -3223 ((-1155 |#1|) (-1155 |#1|))) (-15 -3235 ((-1155 |#1|) (-1155 |#1|))) (-15 -3248 ((-1155 |#1|) (-1155 |#1|))) (-15 -3259 ((-1155 |#1|) (-1155 |#1|))) (-15 -3267 ((-1155 |#1|) (-1155 |#1|))) (-15 -3279 ((-1155 |#1|) (-1155 |#1|))) (-15 -3291 ((-1155 |#1|) (-1155 |#1|))) (-15 -3302 ((-1155 |#1|) (-1155 |#1|))) (-15 -3313 ((-1155 |#1|) (-1155 |#1|))) (-15 -3323 ((-1155 |#1|) (-1155 |#1|))) (-15 -1382 ((-1155 |#1|) (-1155 |#1|))))
-((-3235 (((-1155 |#1|) (-1155 |#1|)) 108)) (-3102 (((-1155 |#1|) (-1155 |#1|)) 65)) (-3023 (((-2 (|:| -3215 (-1155 |#1|)) (|:| -3223 (-1155 |#1|))) (-1155 |#1|)) 104)) (-3215 (((-1155 |#1|) (-1155 |#1|)) 105)) (-4322 (((-2 (|:| -3076 (-1155 |#1|)) (|:| -3089 (-1155 |#1|))) (-1155 |#1|)) 54)) (-3076 (((-1155 |#1|) (-1155 |#1|)) 55)) (-3259 (((-1155 |#1|) (-1155 |#1|)) 110)) (-3123 (((-1155 |#1|) (-1155 |#1|)) 72)) (-3668 (((-1155 |#1|) (-1155 |#1|)) 40)) (-3613 (((-1155 |#1|) (-1155 |#1|)) 37)) (-3267 (((-1155 |#1|) (-1155 |#1|)) 111)) (-3133 (((-1155 |#1|) (-1155 |#1|)) 73)) (-3248 (((-1155 |#1|) (-1155 |#1|)) 109)) (-3112 (((-1155 |#1|) (-1155 |#1|)) 68)) (-3223 (((-1155 |#1|) (-1155 |#1|)) 106)) (-3089 (((-1155 |#1|) (-1155 |#1|)) 56)) (-3302 (((-1155 |#1|) (-1155 |#1|)) 119)) (-3172 (((-1155 |#1|) (-1155 |#1|)) 94)) (-3279 (((-1155 |#1|) (-1155 |#1|)) 113)) (-3146 (((-1155 |#1|) (-1155 |#1|)) 90)) (-3323 (((-1155 |#1|) (-1155 |#1|)) 123)) (-3194 (((-1155 |#1|) (-1155 |#1|)) 98)) (-1382 (((-1155 |#1|) (-1155 |#1|)) 125)) (-3205 (((-1155 |#1|) (-1155 |#1|)) 100)) (-3313 (((-1155 |#1|) (-1155 |#1|)) 121)) (-3185 (((-1155 |#1|) (-1155 |#1|)) 96)) (-3291 (((-1155 |#1|) (-1155 |#1|)) 115)) (-3160 (((-1155 |#1|) (-1155 |#1|)) 92)) (** (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 41)))
-(((-1161 |#1|) (-10 -7 (-15 -3613 ((-1155 |#1|) (-1155 |#1|))) (-15 -3668 ((-1155 |#1|) (-1155 |#1|))) (-15 ** ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -4322 ((-2 (|:| -3076 (-1155 |#1|)) (|:| -3089 (-1155 |#1|))) (-1155 |#1|))) (-15 -3076 ((-1155 |#1|) (-1155 |#1|))) (-15 -3089 ((-1155 |#1|) (-1155 |#1|))) (-15 -3102 ((-1155 |#1|) (-1155 |#1|))) (-15 -3112 ((-1155 |#1|) (-1155 |#1|))) (-15 -3123 ((-1155 |#1|) (-1155 |#1|))) (-15 -3133 ((-1155 |#1|) (-1155 |#1|))) (-15 -3146 ((-1155 |#1|) (-1155 |#1|))) (-15 -3160 ((-1155 |#1|) (-1155 |#1|))) (-15 -3172 ((-1155 |#1|) (-1155 |#1|))) (-15 -3185 ((-1155 |#1|) (-1155 |#1|))) (-15 -3194 ((-1155 |#1|) (-1155 |#1|))) (-15 -3205 ((-1155 |#1|) (-1155 |#1|))) (-15 -3023 ((-2 (|:| -3215 (-1155 |#1|)) (|:| -3223 (-1155 |#1|))) (-1155 |#1|))) (-15 -3215 ((-1155 |#1|) (-1155 |#1|))) (-15 -3223 ((-1155 |#1|) (-1155 |#1|))) (-15 -3235 ((-1155 |#1|) (-1155 |#1|))) (-15 -3248 ((-1155 |#1|) (-1155 |#1|))) (-15 -3259 ((-1155 |#1|) (-1155 |#1|))) (-15 -3267 ((-1155 |#1|) (-1155 |#1|))) (-15 -3279 ((-1155 |#1|) (-1155 |#1|))) (-15 -3291 ((-1155 |#1|) (-1155 |#1|))) (-15 -3302 ((-1155 |#1|) (-1155 |#1|))) (-15 -3313 ((-1155 |#1|) (-1155 |#1|))) (-15 -3323 ((-1155 |#1|) (-1155 |#1|))) (-15 -1382 ((-1155 |#1|) (-1155 |#1|)))) (-38 (-409 (-566)))) (T -1161))
-((-1382 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3323 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3313 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3302 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3291 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3279 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3267 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3259 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3248 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3235 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3223 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3215 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3023 (*1 *2 *3) (-12 (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-2 (|:| -3215 (-1155 *4)) (|:| -3223 (-1155 *4)))) (-5 *1 (-1161 *4)) (-5 *3 (-1155 *4)))) (-3205 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3194 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3185 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3172 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3160 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3146 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3133 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3123 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3112 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3102 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3089 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3076 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-4322 (*1 *2 *3) (-12 (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-2 (|:| -3076 (-1155 *4)) (|:| -3089 (-1155 *4)))) (-5 *1 (-1161 *4)) (-5 *3 (-1155 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3668 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3613 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))))
-(-10 -7 (-15 -3613 ((-1155 |#1|) (-1155 |#1|))) (-15 -3668 ((-1155 |#1|) (-1155 |#1|))) (-15 ** ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -4322 ((-2 (|:| -3076 (-1155 |#1|)) (|:| -3089 (-1155 |#1|))) (-1155 |#1|))) (-15 -3076 ((-1155 |#1|) (-1155 |#1|))) (-15 -3089 ((-1155 |#1|) (-1155 |#1|))) (-15 -3102 ((-1155 |#1|) (-1155 |#1|))) (-15 -3112 ((-1155 |#1|) (-1155 |#1|))) (-15 -3123 ((-1155 |#1|) (-1155 |#1|))) (-15 -3133 ((-1155 |#1|) (-1155 |#1|))) (-15 -3146 ((-1155 |#1|) (-1155 |#1|))) (-15 -3160 ((-1155 |#1|) (-1155 |#1|))) (-15 -3172 ((-1155 |#1|) (-1155 |#1|))) (-15 -3185 ((-1155 |#1|) (-1155 |#1|))) (-15 -3194 ((-1155 |#1|) (-1155 |#1|))) (-15 -3205 ((-1155 |#1|) (-1155 |#1|))) (-15 -3023 ((-2 (|:| -3215 (-1155 |#1|)) (|:| -3223 (-1155 |#1|))) (-1155 |#1|))) (-15 -3215 ((-1155 |#1|) (-1155 |#1|))) (-15 -3223 ((-1155 |#1|) (-1155 |#1|))) (-15 -3235 ((-1155 |#1|) (-1155 |#1|))) (-15 -3248 ((-1155 |#1|) (-1155 |#1|))) (-15 -3259 ((-1155 |#1|) (-1155 |#1|))) (-15 -3267 ((-1155 |#1|) (-1155 |#1|))) (-15 -3279 ((-1155 |#1|) (-1155 |#1|))) (-15 -3291 ((-1155 |#1|) (-1155 |#1|))) (-15 -3302 ((-1155 |#1|) (-1155 |#1|))) (-15 -3313 ((-1155 |#1|) (-1155 |#1|))) (-15 -3323 ((-1155 |#1|) (-1155 |#1|))) (-15 -1382 ((-1155 |#1|) (-1155 |#1|))))
-((-4145 (((-958 |#2|) |#2| |#2|) 51)) (-4248 ((|#2| |#2| |#1|) 19 (|has| |#1| (-308)))))
-(((-1162 |#1| |#2|) (-10 -7 (-15 -4145 ((-958 |#2|) |#2| |#2|)) (IF (|has| |#1| (-308)) (-15 -4248 (|#2| |#2| |#1|)) |%noBranch|)) (-558) (-1240 |#1|)) (T -1162))
-((-4248 (*1 *2 *2 *3) (-12 (-4 *3 (-308)) (-4 *3 (-558)) (-5 *1 (-1162 *3 *2)) (-4 *2 (-1240 *3)))) (-4145 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-958 *3)) (-5 *1 (-1162 *4 *3)) (-4 *3 (-1240 *4)))))
-(-10 -7 (-15 -4145 ((-958 |#2|) |#2| |#2|)) (IF (|has| |#1| (-308)) (-15 -4248 (|#2| |#2| |#1|)) |%noBranch|))
-((-2985 (((-112) $ $) NIL)) (-3696 (($ $ (-644 (-771))) 81)) (-2448 (($) 33)) (-3176 (($ $) 51)) (-2542 (((-644 $) $) 60)) (-3033 (((-112) $) 19)) (-2697 (((-644 (-943 |#2|)) $) 88)) (-3341 (($ $) 82)) (-4070 (((-771) $) 47)) (-4257 (($) 32)) (-1742 (($ $ (-644 (-771)) (-943 |#2|)) 74) (($ $ (-644 (-771)) (-771)) 75) (($ $ (-771) (-943 |#2|)) 77)) (-3132 (($ $ $) 57) (($ (-644 $)) 59)) (-4155 (((-771) $) 89)) (-2783 (((-112) $) 15)) (-2878 (((-1157) $) NIL)) (-2041 (((-112) $) 22)) (-4033 (((-1119) $) NIL)) (-3065 (((-171) $) 87)) (-4096 (((-943 |#2|) $) 83)) (-3460 (((-771) $) 84)) (-3543 (((-112) $) 86)) (-4388 (($ $ (-644 (-771)) (-171)) 80)) (-4376 (($ $) 52)) (-2512 (((-862) $) 100)) (-4242 (($ $ (-644 (-771)) (-112)) 79)) (-1448 (((-644 $) $) 11)) (-4021 (($ $ (-771)) 46)) (-3871 (($ $) 43)) (-3122 (((-112) $ $) NIL)) (-2101 (($ $ $ (-943 |#2|) (-771)) 70)) (-3020 (($ $ (-943 |#2|)) 69)) (-1321 (($ $ (-644 (-771)) (-943 |#2|)) 66) (($ $ (-644 (-771)) (-771)) 72) (((-771) $ (-943 |#2|)) 73)) (-2940 (((-112) $ $) 94)))
-(((-1163 |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -2783 ((-112) $)) (-15 -3033 ((-112) $)) (-15 -2041 ((-112) $)) (-15 -4257 ($)) (-15 -2448 ($)) (-15 -3871 ($ $)) (-15 -4021 ($ $ (-771))) (-15 -1448 ((-644 $) $)) (-15 -4070 ((-771) $)) (-15 -3176 ($ $)) (-15 -4376 ($ $)) (-15 -3132 ($ $ $)) (-15 -3132 ($ (-644 $))) (-15 -2542 ((-644 $) $)) (-15 -1321 ($ $ (-644 (-771)) (-943 |#2|))) (-15 -3020 ($ $ (-943 |#2|))) (-15 -2101 ($ $ $ (-943 |#2|) (-771))) (-15 -1742 ($ $ (-644 (-771)) (-943 |#2|))) (-15 -1321 ($ $ (-644 (-771)) (-771))) (-15 -1742 ($ $ (-644 (-771)) (-771))) (-15 -1321 ((-771) $ (-943 |#2|))) (-15 -1742 ($ $ (-771) (-943 |#2|))) (-15 -4242 ($ $ (-644 (-771)) (-112))) (-15 -4388 ($ $ (-644 (-771)) (-171))) (-15 -3696 ($ $ (-644 (-771)))) (-15 -4096 ((-943 |#2|) $)) (-15 -3460 ((-771) $)) (-15 -3543 ((-112) $)) (-15 -3065 ((-171) $)) (-15 -4155 ((-771) $)) (-15 -3341 ($ $)) (-15 -2697 ((-644 (-943 |#2|)) $)))) (-921) (-1049)) (T -1163))
-((-2783 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-3033 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-2041 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-4257 (*1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-2448 (*1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-3871 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-4021 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-1448 (*1 *2 *1) (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-4070 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-3176 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-4376 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-3132 (*1 *1 *1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-3132 (*1 *1 *2) (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-2542 (*1 *2 *1) (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-1321 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-943 *5)) (-4 *5 (-1049)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))) (-3020 (*1 *1 *1 *2) (-12 (-5 *2 (-943 *4)) (-4 *4 (-1049)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)))) (-2101 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-943 *5)) (-5 *3 (-771)) (-4 *5 (-1049)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))) (-1742 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-943 *5)) (-4 *5 (-1049)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))) (-1321 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-771)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)) (-4 *5 (-1049)))) (-1742 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-771)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)) (-4 *5 (-1049)))) (-1321 (*1 *2 *1 *3) (-12 (-5 *3 (-943 *5)) (-4 *5 (-1049)) (-5 *2 (-771)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))) (-1742 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *3 (-943 *5)) (-4 *5 (-1049)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))) (-4242 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-112)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)) (-4 *5 (-1049)))) (-4388 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-171)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)) (-4 *5 (-1049)))) (-3696 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-4096 (*1 *2 *1) (-12 (-5 *2 (-943 *4)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-3460 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-3543 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-3065 (*1 *2 *1) (-12 (-5 *2 (-171)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-4155 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-3341 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-2697 (*1 *2 *1) (-12 (-5 *2 (-644 (-943 *4))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))))
-(-13 (-1099) (-10 -8 (-15 -2783 ((-112) $)) (-15 -3033 ((-112) $)) (-15 -2041 ((-112) $)) (-15 -4257 ($)) (-15 -2448 ($)) (-15 -3871 ($ $)) (-15 -4021 ($ $ (-771))) (-15 -1448 ((-644 $) $)) (-15 -4070 ((-771) $)) (-15 -3176 ($ $)) (-15 -4376 ($ $)) (-15 -3132 ($ $ $)) (-15 -3132 ($ (-644 $))) (-15 -2542 ((-644 $) $)) (-15 -1321 ($ $ (-644 (-771)) (-943 |#2|))) (-15 -3020 ($ $ (-943 |#2|))) (-15 -2101 ($ $ $ (-943 |#2|) (-771))) (-15 -1742 ($ $ (-644 (-771)) (-943 |#2|))) (-15 -1321 ($ $ (-644 (-771)) (-771))) (-15 -1742 ($ $ (-644 (-771)) (-771))) (-15 -1321 ((-771) $ (-943 |#2|))) (-15 -1742 ($ $ (-771) (-943 |#2|))) (-15 -4242 ($ $ (-644 (-771)) (-112))) (-15 -4388 ($ $ (-644 (-771)) (-171))) (-15 -3696 ($ $ (-644 (-771)))) (-15 -4096 ((-943 |#2|) $)) (-15 -3460 ((-771) $)) (-15 -3543 ((-112) $)) (-15 -3065 ((-171) $)) (-15 -4155 ((-771) $)) (-15 -3341 ($ $)) (-15 -2697 ((-644 (-943 |#2|)) $))))
-((-2985 (((-112) $ $) NIL)) (-3336 ((|#2| $) 11)) (-3324 ((|#1| $) 10)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2523 (($ |#1| |#2|) 9)) (-2512 (((-862) $) 16)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1164 |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -2523 ($ |#1| |#2|)) (-15 -3324 (|#1| $)) (-15 -3336 (|#2| $)))) (-1099) (-1099)) (T -1164))
-((-2523 (*1 *1 *2 *3) (-12 (-5 *1 (-1164 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-3324 (*1 *2 *1) (-12 (-4 *2 (-1099)) (-5 *1 (-1164 *2 *3)) (-4 *3 (-1099)))) (-3336 (*1 *2 *1) (-12 (-4 *2 (-1099)) (-5 *1 (-1164 *3 *2)) (-4 *3 (-1099)))))
-(-13 (-1099) (-10 -8 (-15 -2523 ($ |#1| |#2|)) (-15 -3324 (|#1| $)) (-15 -3336 (|#2| $))))
-((-2985 (((-112) $ $) NIL)) (-4043 (((-1134) $) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 15) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1165) (-13 (-1082) (-10 -8 (-15 -4043 ((-1134) $))))) (T -1165))
-((-4043 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1165)))))
-(-13 (-1082) (-10 -8 (-15 -4043 ((-1134) $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2452 (((-1173 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-308)) (|has| |#1| (-365))))) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) 11)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-3653 (($ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-2152 (((-112) $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-1881 (($ $ (-566)) NIL) (($ $ (-566) (-566)) 75)) (-1530 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) NIL)) (-4297 (((-1173 |#1| |#2| |#3|) $) 42)) (-1337 (((-3 (-1173 |#1| |#2| |#3|) "failed") $) 32)) (-2590 (((-1173 |#1| |#2| |#3|) $) 33)) (-3235 (($ $) 116 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 92 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-2857 (($ $) NIL (|has| |#1| (-365)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-3215 (($ $) 112 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 88 (|has| |#1| (-38 (-409 (-566)))))) (-2807 (((-566) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-1401 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) NIL)) (-3259 (($ $) 120 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 96 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-1173 |#1| |#2| |#3|) "failed") $) 34) (((-3 (-1175) "failed") $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-566) "failed") $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))))) (-1756 (((-1173 |#1| |#2| |#3|) $) 140) (((-1175) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (((-409 (-566)) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365)))) (((-566) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))))) (-1669 (($ $) 37) (($ (-566) $) 38)) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) NIL)) (-1628 (((-689 (-1173 |#1| |#2| |#3|)) (-689 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -1380 (-689 (-1173 |#1| |#2| |#3|))) (|:| |vec| (-1264 (-1173 |#1| |#2| |#3|)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-639 (-566))) (|has| |#1| (-365)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-639 (-566))) (|has| |#1| (-365))))) (-1579 (((-3 $ "failed") $) 54)) (-3528 (((-409 (-952 |#1|)) $ (-566)) 74 (|has| |#1| (-558))) (((-409 (-952 |#1|)) $ (-566) (-566)) 76 (|has| |#1| (-558)))) (-3335 (($) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2635 (((-112) $) NIL (|has| |#1| (-365)))) (-1684 (((-112) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-4039 (((-112) $) 28)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-886 (-381))) (|has| |#1| (-365)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-886 (-566))) (|has| |#1| (-365))))) (-2716 (((-566) $) NIL) (((-566) $ (-566)) 26)) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL (|has| |#1| (-365)))) (-3001 (((-1173 |#1| |#2| |#3|) $) 44 (|has| |#1| (-365)))) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2546 (((-3 $ "failed") $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1150)) (|has| |#1| (-365))))) (-1578 (((-112) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-3432 (($ $ (-921)) NIL)) (-2153 (($ (-1 |#1| (-566)) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-566)) 19) (($ $ (-1081) (-566)) NIL) (($ $ (-644 (-1081)) (-644 (-566))) NIL)) (-1439 (($ $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-3059 (($ $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-365)))) (-3668 (($ $) 81 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2599 (($ (-566) (-1173 |#1| |#2| |#3|)) 36)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| |#1| (-365)))) (-4117 (($ $) 79 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 80 (|has| |#1| (-38 (-409 (-566)))))) (-2759 (($) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1150)) (|has| |#1| (-365))) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-1539 (($ $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-308)) (|has| |#1| (-365))))) (-4317 (((-1173 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-2391 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-1938 (($ $ (-566)) 158)) (-2972 (((-3 $ "failed") $ $) 55 (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3613 (($ $) 82 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-566))))) (($ $ (-1175) (-1173 |#1| |#2| |#3|)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-516 (-1175) (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 (-1173 |#1| |#2| |#3|))) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-516 (-1175) (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-295 (-1173 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-310 (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-295 (-1173 |#1| |#2| |#3|))) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-310 (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-310 (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-1173 |#1| |#2| |#3|)) (-644 (-1173 |#1| |#2| |#3|))) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-310 (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365))))) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ (-566)) NIL) (($ $ $) 61 (|has| (-566) (-1111))) (($ $ (-1173 |#1| |#2| |#3|)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-287 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2862 (($ $ (-1 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|))) NIL (|has| |#1| (-365))) (($ $ (-1 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|)) (-771)) NIL (|has| |#1| (-365))) (($ $ (-1260 |#2|)) 57) (($ $ (-771)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) 56 (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-3413 (($ $) NIL (|has| |#1| (-365)))) (-3013 (((-1173 |#1| |#2| |#3|) $) 46 (|has| |#1| (-365)))) (-3992 (((-566) $) 43)) (-3267 (($ $) 122 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 98 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 118 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 94 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 114 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 90 (|has| |#1| (-38 (-409 (-566)))))) (-3134 (((-538) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-614 (-538))) (|has| |#1| (-365)))) (((-381) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1022)) (|has| |#1| (-365)))) (((-225) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1022)) (|has| |#1| (-365)))) (((-892 (-381)) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-614 (-892 (-381)))) (|has| |#1| (-365)))) (((-892 (-566)) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-614 (-892 (-566)))) (|has| |#1| (-365))))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-1973 (($ $) NIL)) (-2512 (((-862) $) 162) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1173 |#1| |#2| |#3|)) 30) (($ (-1260 |#2|)) 25) (($ (-1175)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (($ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558)))) (($ (-409 (-566))) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))) (|has| |#1| (-38 (-409 (-566))))))) (-2022 ((|#1| $ (-566)) 77)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-145)) (|has| |#1| (-365))) (|has| |#1| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2420 ((|#1| $) 12)) (-1604 (((-1173 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) 128 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 104 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-3279 (($ $) 124 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 100 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 108 (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-566)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 110 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 106 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 126 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 102 (|has| |#1| (-38 (-409 (-566)))))) (-1346 (($ $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-2485 (($) 21 T CONST)) (-2495 (($) 16 T CONST)) (-2840 (($ $ (-1 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|))) NIL (|has| |#1| (-365))) (($ $ (-1 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|)) (-771)) NIL (|has| |#1| (-365))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-2998 (((-112) $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2974 (((-112) $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2962 (((-112) $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) 49 (|has| |#1| (-365))) (($ (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|)) 50 (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 23)) (** (($ $ (-921)) NIL) (($ $ (-771)) 60) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) 83 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 137 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 35) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1173 |#1| |#2| |#3|)) 48 (|has| |#1| (-365))) (($ (-1173 |#1| |#2| |#3|) $) 47 (|has| |#1| (-365))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-1166 |#1| |#2| |#3|) (-13 (-1226 |#1| (-1173 |#1| |#2| |#3|)) (-10 -8 (-15 -2512 ($ (-1260 |#2|))) (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1166))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-4117 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
-(-13 (-1226 |#1| (-1173 |#1| |#2| |#3|)) (-10 -8 (-15 -2512 ($ (-1260 |#2|))) (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|)))
-((-3698 ((|#2| |#2| (-1091 |#2|)) 26) ((|#2| |#2| (-1175)) 28)))
-(((-1167 |#1| |#2|) (-10 -7 (-15 -3698 (|#2| |#2| (-1175))) (-15 -3698 (|#2| |#2| (-1091 |#2|)))) (-13 (-558) (-1038 (-566)) (-639 (-566))) (-13 (-432 |#1|) (-160) (-27) (-1199))) (T -1167))
-((-3698 (*1 *2 *2 *3) (-12 (-5 *3 (-1091 *2)) (-4 *2 (-13 (-432 *4) (-160) (-27) (-1199))) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1167 *4 *2)))) (-3698 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1167 *4 *2)) (-4 *2 (-13 (-432 *4) (-160) (-27) (-1199))))))
-(-10 -7 (-15 -3698 (|#2| |#2| (-1175))) (-15 -3698 (|#2| |#2| (-1091 |#2|))))
-((-3698 (((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1091 (-409 (-952 |#1|)))) 31) (((-409 (-952 |#1|)) (-952 |#1|) (-1091 (-952 |#1|))) 44) (((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1175)) 33) (((-409 (-952 |#1|)) (-952 |#1|) (-1175)) 36)))
-(((-1168 |#1|) (-10 -7 (-15 -3698 ((-409 (-952 |#1|)) (-952 |#1|) (-1175))) (-15 -3698 ((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1175))) (-15 -3698 ((-409 (-952 |#1|)) (-952 |#1|) (-1091 (-952 |#1|)))) (-15 -3698 ((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1091 (-409 (-952 |#1|)))))) (-13 (-558) (-1038 (-566)))) (T -1168))
-((-3698 (*1 *2 *3 *4) (-12 (-5 *4 (-1091 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5))) (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-3 *3 (-317 *5))) (-5 *1 (-1168 *5)))) (-3698 (*1 *2 *3 *4) (-12 (-5 *4 (-1091 (-952 *5))) (-5 *3 (-952 *5)) (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-409 *3)) (-5 *1 (-1168 *5)))) (-3698 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-3 (-409 (-952 *5)) (-317 *5))) (-5 *1 (-1168 *5)) (-5 *3 (-409 (-952 *5))))) (-3698 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-409 (-952 *5))) (-5 *1 (-1168 *5)) (-5 *3 (-952 *5)))))
-(-10 -7 (-15 -3698 ((-409 (-952 |#1|)) (-952 |#1|) (-1175))) (-15 -3698 ((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1175))) (-15 -3698 ((-409 (-952 |#1|)) (-952 |#1|) (-1091 (-952 |#1|)))) (-15 -3698 ((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1091 (-409 (-952 |#1|))))))
-((-3077 (((-1171 |#2|) (-1 |#2| |#1|) (-1171 |#1|)) 13)))
-(((-1169 |#1| |#2|) (-10 -7 (-15 -3077 ((-1171 |#2|) (-1 |#2| |#1|) (-1171 |#1|)))) (-1049) (-1049)) (T -1169))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1171 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-5 *2 (-1171 *6)) (-5 *1 (-1169 *5 *6)))))
-(-10 -7 (-15 -3077 ((-1171 |#2|) (-1 |#2| |#1|) (-1171 |#1|))))
-((-1370 (((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|))) 51)) (-2391 (((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|))) 52)))
-(((-1170 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2391 ((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|)))) (-15 -1370 ((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|))))) (-793) (-850) (-454) (-949 |#3| |#1| |#2|)) (T -1170))
-((-1370 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-454)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-420 (-1171 (-409 *7)))) (-5 *1 (-1170 *4 *5 *6 *7)) (-5 *3 (-1171 (-409 *7))))) (-2391 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-454)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-420 (-1171 (-409 *7)))) (-5 *1 (-1170 *4 *5 *6 *7)) (-5 *3 (-1171 (-409 *7))))))
-(-10 -7 (-15 -2391 ((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|)))) (-15 -1370 ((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|)))))
-((-2985 (((-112) $ $) 171)) (-3958 (((-112) $) 43)) (-2025 (((-1264 |#1|) $ (-771)) NIL)) (-2540 (((-644 (-1081)) $) NIL)) (-3526 (($ (-1171 |#1|)) NIL)) (-2358 (((-1171 $) $ (-1081)) 82) (((-1171 |#1|) $) 71)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) 164 (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-1081))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2829 (($ $ $) 158 (|has| |#1| (-558)))) (-2055 (((-420 (-1171 $)) (-1171 $)) 95 (|has| |#1| (-909)))) (-2857 (($ $) NIL (|has| |#1| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 115 (|has| |#1| (-909)))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-4047 (($ $ (-771)) 61)) (-2284 (($ $ (-771)) 63)) (-2542 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-454)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-1081) "failed") $) NIL)) (-1756 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-1081) $) NIL)) (-1552 (($ $ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $ $) 160 (|has| |#1| (-172)))) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) 80)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-2762 (($ $ $) 131)) (-2213 (($ $ $) NIL (|has| |#1| (-558)))) (-2513 (((-2 (|:| -3157 |#1|) (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-558)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-4248 (($ $) 165 (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#1| (-909)))) (-2804 (($ $ |#1| (-771) $) 69)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1081) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1081) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3834 (((-862) $ (-862)) 148)) (-2716 (((-771) $ $) NIL (|has| |#1| (-558)))) (-2741 (((-112) $) 48)) (-3505 (((-771) $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| |#1| (-1150)))) (-2530 (($ (-1171 |#1|) (-1081)) 73) (($ (-1171 $) (-1081)) 89)) (-3432 (($ $ (-771)) 51)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-771)) 87) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-1081)) NIL) (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 153)) (-3251 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-2132 (($ (-1 (-771) (-771)) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3840 (((-1171 |#1|) $) NIL)) (-3339 (((-3 (-1081) "failed") $) NIL)) (-3545 (($ $) NIL)) (-3557 ((|#1| $) 76)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2878 (((-1157) $) NIL)) (-1497 (((-2 (|:| -2760 $) (|:| -1644 $)) $ (-771)) 60)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-1081)) (|:| -3250 (-771))) "failed") $) NIL)) (-4117 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2759 (($) NIL (|has| |#1| (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) 50)) (-3531 ((|#1| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 103 (|has| |#1| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) 167 (|has| |#1| (-454)))) (-1441 (($ $ (-771) |#1| $) 123)) (-1647 (((-420 (-1171 $)) (-1171 $)) 101 (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) 100 (|has| |#1| (-909)))) (-2391 (((-420 $) $) 108 (|has| |#1| (-909)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-2972 (((-3 $ "failed") $ |#1|) 163 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 124 (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1081) |#1|) NIL) (($ $ (-644 (-1081)) (-644 |#1|)) NIL) (($ $ (-1081) $) NIL) (($ $ (-644 (-1081)) (-644 $)) NIL)) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ |#1|) 150) (($ $ $) 151) (((-409 $) (-409 $) (-409 $)) NIL (|has| |#1| (-558))) ((|#1| (-409 $) |#1|) NIL (|has| |#1| (-365))) (((-409 $) $ (-409 $)) NIL (|has| |#1| (-558)))) (-1876 (((-3 $ "failed") $ (-771)) 54)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 172 (|has| |#1| (-365)))) (-2408 (($ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $) 156 (|has| |#1| (-172)))) (-2862 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-3992 (((-771) $) 78) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1081) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3181 ((|#1| $) 162 (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-4293 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558))) (((-3 (-409 $) "failed") (-409 $) $) NIL (|has| |#1| (-558)))) (-2512 (((-862) $) 149) (($ (-566)) NIL) (($ |#1|) 77) (($ (-1081)) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-771)) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) 41 (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2485 (($) 17 T CONST)) (-2495 (($) 19 T CONST)) (-2840 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2940 (((-112) $ $) 120)) (-3061 (($ $ |#1|) 173 (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 90)) (** (($ $ (-921)) 14) (($ $ (-771)) 12)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 39) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 129) (($ $ |#1|) NIL)))
-(((-1171 |#1|) (-13 (-1240 |#1|) (-10 -8 (-15 -3834 ((-862) $ (-862))) (-15 -1441 ($ $ (-771) |#1| $)))) (-1049)) (T -1171))
-((-3834 (*1 *2 *1 *2) (-12 (-5 *2 (-862)) (-5 *1 (-1171 *3)) (-4 *3 (-1049)))) (-1441 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1171 *3)) (-4 *3 (-1049)))))
-(-13 (-1240 |#1|) (-10 -8 (-15 -3834 ((-862) $ (-862))) (-15 -1441 ($ $ (-771) |#1| $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) 11)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-1881 (($ $ (-409 (-566))) NIL) (($ $ (-409 (-566)) (-409 (-566))) NIL)) (-1530 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) NIL)) (-3235 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL (|has| |#1| (-365)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-3215 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) NIL)) (-3259 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-1166 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1173 |#1| |#2| |#3|) "failed") $) 36)) (-1756 (((-1166 |#1| |#2| |#3|) $) NIL) (((-1173 |#1| |#2| |#3|) $) NIL)) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3116 (((-409 (-566)) $) 59)) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-2610 (($ (-409 (-566)) (-1166 |#1| |#2| |#3|)) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2635 (((-112) $) NIL (|has| |#1| (-365)))) (-4039 (((-112) $) NIL)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-409 (-566)) $) NIL) (((-409 (-566)) $ (-409 (-566))) NIL)) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3432 (($ $ (-921)) NIL) (($ $ (-409 (-566))) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-409 (-566))) 20) (($ $ (-1081) (-409 (-566))) NIL) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3668 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2603 (((-1166 |#1| |#2| |#3|) $) 41)) (-4397 (((-3 (-1166 |#1| |#2| |#3|) "failed") $) NIL)) (-2599 (((-1166 |#1| |#2| |#3|) $) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| |#1| (-365)))) (-4117 (($ $) 39 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 40 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-1938 (($ $ (-409 (-566))) NIL)) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3613 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ (-409 (-566))) NIL) (($ $ $) NIL (|has| (-409 (-566)) (-1111)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $ (-1260 |#2|)) 38)) (-3992 (((-409 (-566)) $) NIL)) (-3267 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) NIL)) (-2512 (((-862) $) 62) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1166 |#1| |#2| |#3|)) 30) (($ (-1173 |#1| |#2| |#3|)) 31) (($ (-1260 |#2|)) 26) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-2022 ((|#1| $ (-409 (-566))) NIL)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-2420 ((|#1| $) 12)) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-409 (-566))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 22 T CONST)) (-2495 (($) 16 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 24)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-1172 |#1| |#2| |#3|) (-13 (-1247 |#1| (-1166 |#1| |#2| |#3|)) (-1038 (-1173 |#1| |#2| |#3|)) (-616 (-1260 |#2|)) (-10 -8 (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1172))
-((-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1172 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-4117 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1172 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
-(-13 (-1247 |#1| (-1166 |#1| |#2| |#3|)) (-1038 (-1173 |#1| |#2| |#3|)) (-616 (-1260 |#2|)) (-10 -8 (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 131)) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) 121)) (-3504 (((-1237 |#2| |#1|) $ (-771)) 69)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-1881 (($ $ (-771)) 85) (($ $ (-771) (-771)) 82)) (-1530 (((-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|))) $) 107)) (-3235 (($ $) 175 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3215 (($ $) 171 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|)))) 120) (($ (-1155 |#1|)) 115)) (-3259 (($ $) 179 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) 25)) (-2578 (($ $) 28)) (-3768 (((-952 |#1|) $ (-771)) 81) (((-952 |#1|) $ (-771) (-771)) 83)) (-4039 (((-112) $) 126)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-771) $) 128) (((-771) $ (-771)) 130)) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3432 (($ $ (-921)) NIL)) (-2153 (($ (-1 |#1| (-566)) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-771)) 13) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3668 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4117 (($ $) 135 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 136 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (((-1119) $) NIL)) (-1938 (($ $ (-771)) 15)) (-2972 (((-3 $ "failed") $ $) 26 (|has| |#1| (-558)))) (-3613 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-771)))))) (-4386 ((|#1| $ (-771)) 124) (($ $ $) 134 (|has| (-771) (-1111)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) 29 (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $ (-1260 |#2|)) 31)) (-3992 (((-771) $) NIL)) (-3267 (($ $) 181 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 157 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 177 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 173 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) NIL)) (-2512 (((-862) $) 208) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558))) (($ |#1|) 132 (|has| |#1| (-172))) (($ (-1237 |#2| |#1|)) 55) (($ (-1260 |#2|)) 36)) (-3868 (((-1155 |#1|) $) 103)) (-2022 ((|#1| $ (-771)) 123)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-2420 ((|#1| $) 58)) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) 187 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 163 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) 183 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 159 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 191 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 167 (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-771)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-771)))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) 193 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 169 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 189 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 165 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 185 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 161 (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 17 T CONST)) (-2495 (($) 20 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) 200)) (-3034 (($ $ $) 35)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ |#1|) 205 (|has| |#1| (-365))) (($ $ $) 140 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 143 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 138) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-1173 |#1| |#2| |#3|) (-13 (-1255 |#1|) (-10 -8 (-15 -2512 ($ (-1237 |#2| |#1|))) (-15 -3504 ((-1237 |#2| |#1|) $ (-771))) (-15 -2512 ($ (-1260 |#2|))) (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1173))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1237 *4 *3)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3) (-5 *1 (-1173 *3 *4 *5)))) (-3504 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1237 *5 *4)) (-5 *1 (-1173 *4 *5 *6)) (-4 *4 (-1049)) (-14 *5 (-1175)) (-14 *6 *4))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1173 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1173 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-4117 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1173 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
-(-13 (-1255 |#1|) (-10 -8 (-15 -2512 ($ (-1237 |#2| |#1|))) (-15 -3504 ((-1237 |#2| |#1|) $ (-771))) (-15 -2512 ($ (-1260 |#2|))) (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|)))
-((-2512 (((-862) $) 33) (($ (-1175)) 35)) (-2805 (($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 46)) (-2794 (($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 39) (($ $) 40)) (-3099 (($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 41)) (-3088 (($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 43)) (-3074 (($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 42)) (-3063 (($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 44)) (-2097 (($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 47)) (-12 (($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 45)))
-(((-1174) (-13 (-613 (-862)) (-10 -8 (-15 -2512 ($ (-1175))) (-15 -3099 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3074 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3088 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3063 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2805 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2097 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2794 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2794 ($ $))))) (T -1174))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1174)))) (-3099 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-3074 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-3088 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-3063 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-2805 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-2097 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-2794 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-2794 (*1 *1 *1) (-5 *1 (-1174))))
-(-13 (-613 (-862)) (-10 -8 (-15 -2512 ($ (-1175))) (-15 -3099 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3074 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3088 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3063 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2805 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2097 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2794 ($ (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2794 ($ $))))
-((-2985 (((-112) $ $) NIL)) (-1645 (($ $ (-644 (-862))) 64)) (-1517 (($ $ (-644 (-862))) 62)) (-4318 (((-1157) $) 103)) (-3831 (((-2 (|:| -1553 (-644 (-862))) (|:| -3711 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -1722 (-644 (-862))) (|:| |args| (-644 (-862)))) $) 110)) (-3787 (((-112) $) 23)) (-3161 (($ $ (-644 (-644 (-862)))) 61) (($ $ (-2 (|:| -1553 (-644 (-862))) (|:| -3711 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -1722 (-644 (-862))) (|:| |args| (-644 (-862))))) 101)) (-2342 (($) 166 T CONST)) (-3858 (((-1269)) 138)) (-1356 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 71) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 78)) (-4257 (($) 124) (($ $) 133)) (-2628 (($ $) 102)) (-1439 (($ $ $) NIL)) (-3059 (($ $ $) NIL)) (-3932 (((-644 $) $) 139)) (-2878 (((-1157) $) 116)) (-4033 (((-1119) $) NIL)) (-4386 (($ $ (-644 (-862))) 63)) (-3134 (((-538) $) 48) (((-1175) $) 49) (((-892 (-566)) $) 82) (((-892 (-381)) $) 80)) (-2512 (((-862) $) 55) (($ (-1157)) 50)) (-3122 (((-112) $ $) NIL)) (-3947 (($ $ (-644 (-862))) 65)) (-2178 (((-1157) $) 34) (((-1157) $ (-112)) 35) (((-1269) (-822) $) 36) (((-1269) (-822) $ (-112)) 37)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 51)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) 52)))
-(((-1175) (-13 (-850) (-614 (-538)) (-828) (-614 (-1175)) (-616 (-1157)) (-614 (-892 (-566))) (-614 (-892 (-381))) (-886 (-566)) (-886 (-381)) (-10 -8 (-15 -4257 ($)) (-15 -4257 ($ $)) (-15 -3858 ((-1269))) (-15 -2628 ($ $)) (-15 -3787 ((-112) $)) (-15 -3831 ((-2 (|:| -1553 (-644 (-862))) (|:| -3711 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -1722 (-644 (-862))) (|:| |args| (-644 (-862)))) $)) (-15 -3161 ($ $ (-644 (-644 (-862))))) (-15 -3161 ($ $ (-2 (|:| -1553 (-644 (-862))) (|:| -3711 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -1722 (-644 (-862))) (|:| |args| (-644 (-862)))))) (-15 -1517 ($ $ (-644 (-862)))) (-15 -1645 ($ $ (-644 (-862)))) (-15 -3947 ($ $ (-644 (-862)))) (-15 -4386 ($ $ (-644 (-862)))) (-15 -4318 ((-1157) $)) (-15 -3932 ((-644 $) $)) (-15 -2342 ($) -1655)))) (T -1175))
-((-4257 (*1 *1) (-5 *1 (-1175))) (-4257 (*1 *1 *1) (-5 *1 (-1175))) (-3858 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1175)))) (-2628 (*1 *1 *1) (-5 *1 (-1175))) (-3787 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1175)))) (-3831 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -1553 (-644 (-862))) (|:| -3711 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -1722 (-644 (-862))) (|:| |args| (-644 (-862))))) (-5 *1 (-1175)))) (-3161 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-644 (-862)))) (-5 *1 (-1175)))) (-3161 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -1553 (-644 (-862))) (|:| -3711 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -1722 (-644 (-862))) (|:| |args| (-644 (-862))))) (-5 *1 (-1175)))) (-1517 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))) (-1645 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))) (-3947 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))) (-4386 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))) (-4318 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1175)))) (-3932 (*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1175)))) (-2342 (*1 *1) (-5 *1 (-1175))))
-(-13 (-850) (-614 (-538)) (-828) (-614 (-1175)) (-616 (-1157)) (-614 (-892 (-566))) (-614 (-892 (-381))) (-886 (-566)) (-886 (-381)) (-10 -8 (-15 -4257 ($)) (-15 -4257 ($ $)) (-15 -3858 ((-1269))) (-15 -2628 ($ $)) (-15 -3787 ((-112) $)) (-15 -3831 ((-2 (|:| -1553 (-644 (-862))) (|:| -3711 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -1722 (-644 (-862))) (|:| |args| (-644 (-862)))) $)) (-15 -3161 ($ $ (-644 (-644 (-862))))) (-15 -3161 ($ $ (-2 (|:| -1553 (-644 (-862))) (|:| -3711 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -1722 (-644 (-862))) (|:| |args| (-644 (-862)))))) (-15 -1517 ($ $ (-644 (-862)))) (-15 -1645 ($ $ (-644 (-862)))) (-15 -3947 ($ $ (-644 (-862)))) (-15 -4386 ($ $ (-644 (-862)))) (-15 -4318 ((-1157) $)) (-15 -3932 ((-644 $) $)) (-15 -2342 ($) -1655)))
-((-1835 (((-1264 |#1|) |#1| (-921)) 18) (((-1264 |#1|) (-644 |#1|)) 25)))
-(((-1176 |#1|) (-10 -7 (-15 -1835 ((-1264 |#1|) (-644 |#1|))) (-15 -1835 ((-1264 |#1|) |#1| (-921)))) (-1049)) (T -1176))
-((-1835 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-5 *2 (-1264 *3)) (-5 *1 (-1176 *3)) (-4 *3 (-1049)))) (-1835 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-1049)) (-5 *2 (-1264 *4)) (-5 *1 (-1176 *4)))))
-(-10 -7 (-15 -1835 ((-1264 |#1|) (-644 |#1|))) (-15 -1835 ((-1264 |#1|) |#1| (-921))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1756 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-4248 (($ $) NIL (|has| |#1| (-454)))) (-2804 (($ $ |#1| (-971) $) NIL)) (-2741 (((-112) $) 17)) (-3505 (((-771) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-971)) NIL)) (-3251 (((-971) $) NIL)) (-2132 (($ (-1 (-971) (-971)) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 ((|#1| $) NIL)) (-1441 (($ $ (-971) |#1| $) NIL (-12 (|has| (-971) (-131)) (|has| |#1| (-558))))) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-3992 (((-971) $) NIL)) (-3181 ((|#1| $) NIL (|has| |#1| (-454)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL (|has| |#1| (-558))) (($ |#1|) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ (-971)) NIL)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2485 (($) 11 T CONST)) (-2495 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 21)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 22) (($ $ |#1|) NIL) (($ |#1| $) 16) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-1177 |#1|) (-13 (-327 |#1| (-971)) (-10 -8 (IF (|has| |#1| (-558)) (IF (|has| (-971) (-131)) (-15 -1441 ($ $ (-971) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4415)) (-6 -4415) |%noBranch|))) (-1049)) (T -1177))
-((-1441 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-971)) (-4 *2 (-131)) (-5 *1 (-1177 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))))
-(-13 (-327 |#1| (-971)) (-10 -8 (IF (|has| |#1| (-558)) (IF (|has| (-971) (-131)) (-15 -1441 ($ $ (-971) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4415)) (-6 -4415) |%noBranch|)))
-((-3888 (((-1179) (-1175) $) 25)) (-3600 (($) 29)) (-2299 (((-3 (|:| |fst| (-436)) (|:| -4354 "void")) (-1175) $) 22)) (-1956 (((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -4354 "void")) $) 41) (((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) 42) (((-1269) (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) 43)) (-2809 (((-1269) (-1175)) 58)) (-2082 (((-1269) (-1175) $) 55) (((-1269) (-1175)) 56) (((-1269)) 57)) (-2612 (((-1269) (-1175)) 37)) (-2953 (((-1175)) 36)) (-2954 (($) 34)) (-3439 (((-439) (-1175) (-439) (-1175) $) 45) (((-439) (-644 (-1175)) (-439) (-1175) $) 49) (((-439) (-1175) (-439)) 46) (((-439) (-1175) (-439) (-1175)) 50)) (-2715 (((-1175)) 35)) (-2512 (((-862) $) 28)) (-1598 (((-1269)) 30) (((-1269) (-1175)) 33)) (-3139 (((-644 (-1175)) (-1175) $) 24)) (-3862 (((-1269) (-1175) (-644 (-1175)) $) 38) (((-1269) (-1175) (-644 (-1175))) 39) (((-1269) (-644 (-1175))) 40)))
-(((-1178) (-13 (-613 (-862)) (-10 -8 (-15 -3600 ($)) (-15 -1598 ((-1269))) (-15 -1598 ((-1269) (-1175))) (-15 -3439 ((-439) (-1175) (-439) (-1175) $)) (-15 -3439 ((-439) (-644 (-1175)) (-439) (-1175) $)) (-15 -3439 ((-439) (-1175) (-439))) (-15 -3439 ((-439) (-1175) (-439) (-1175))) (-15 -2612 ((-1269) (-1175))) (-15 -2715 ((-1175))) (-15 -2953 ((-1175))) (-15 -3862 ((-1269) (-1175) (-644 (-1175)) $)) (-15 -3862 ((-1269) (-1175) (-644 (-1175)))) (-15 -3862 ((-1269) (-644 (-1175)))) (-15 -1956 ((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -4354 "void")) $)) (-15 -1956 ((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -4354 "void")))) (-15 -1956 ((-1269) (-3 (|:| |fst| (-436)) (|:| -4354 "void")))) (-15 -2082 ((-1269) (-1175) $)) (-15 -2082 ((-1269) (-1175))) (-15 -2082 ((-1269))) (-15 -2809 ((-1269) (-1175))) (-15 -2954 ($)) (-15 -2299 ((-3 (|:| |fst| (-436)) (|:| -4354 "void")) (-1175) $)) (-15 -3139 ((-644 (-1175)) (-1175) $)) (-15 -3888 ((-1179) (-1175) $))))) (T -1178))
-((-3600 (*1 *1) (-5 *1 (-1178))) (-1598 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1178)))) (-1598 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-3439 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178)))) (-3439 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-439)) (-5 *3 (-644 (-1175))) (-5 *4 (-1175)) (-5 *1 (-1178)))) (-3439 (*1 *2 *3 *2) (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178)))) (-3439 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178)))) (-2612 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-2715 (*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1178)))) (-2953 (*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1178)))) (-3862 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-3862 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-3862 (*1 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-1956 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1175)) (-5 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-1956 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-1956 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-2082 (*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-2082 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-2082 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1178)))) (-2809 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-2954 (*1 *1) (-5 *1 (-1178))) (-2299 (*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-5 *1 (-1178)))) (-3139 (*1 *2 *3 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1178)) (-5 *3 (-1175)))) (-3888 (*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-1179)) (-5 *1 (-1178)))))
-(-13 (-613 (-862)) (-10 -8 (-15 -3600 ($)) (-15 -1598 ((-1269))) (-15 -1598 ((-1269) (-1175))) (-15 -3439 ((-439) (-1175) (-439) (-1175) $)) (-15 -3439 ((-439) (-644 (-1175)) (-439) (-1175) $)) (-15 -3439 ((-439) (-1175) (-439))) (-15 -3439 ((-439) (-1175) (-439) (-1175))) (-15 -2612 ((-1269) (-1175))) (-15 -2715 ((-1175))) (-15 -2953 ((-1175))) (-15 -3862 ((-1269) (-1175) (-644 (-1175)) $)) (-15 -3862 ((-1269) (-1175) (-644 (-1175)))) (-15 -3862 ((-1269) (-644 (-1175)))) (-15 -1956 ((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -4354 "void")) $)) (-15 -1956 ((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -4354 "void")))) (-15 -1956 ((-1269) (-3 (|:| |fst| (-436)) (|:| -4354 "void")))) (-15 -2082 ((-1269) (-1175) $)) (-15 -2082 ((-1269) (-1175))) (-15 -2082 ((-1269))) (-15 -2809 ((-1269) (-1175))) (-15 -2954 ($)) (-15 -2299 ((-3 (|:| |fst| (-436)) (|:| -4354 "void")) (-1175) $)) (-15 -3139 ((-644 (-1175)) (-1175) $)) (-15 -3888 ((-1179) (-1175) $))))
-((-3067 (((-644 (-644 (-3 (|:| -2628 (-1175)) (|:| -3121 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566))))))))) $) 66)) (-2079 (((-644 (-3 (|:| -2628 (-1175)) (|:| -3121 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566)))))))) (-436) $) 47)) (-2693 (($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-439))))) 17)) (-2809 (((-1269) $) 74)) (-1968 (((-644 (-1175)) $) 22)) (-3573 (((-1103) $) 60)) (-4190 (((-439) (-1175) $) 27)) (-2976 (((-644 (-1175)) $) 30)) (-2954 (($) 19)) (-3439 (((-439) (-644 (-1175)) (-439) $) 25) (((-439) (-1175) (-439) $) 24)) (-2512 (((-862) $) 9) (((-1187 (-1175) (-439)) $) 13)))
-(((-1179) (-13 (-613 (-862)) (-10 -8 (-15 -2512 ((-1187 (-1175) (-439)) $)) (-15 -2954 ($)) (-15 -3439 ((-439) (-644 (-1175)) (-439) $)) (-15 -3439 ((-439) (-1175) (-439) $)) (-15 -4190 ((-439) (-1175) $)) (-15 -1968 ((-644 (-1175)) $)) (-15 -2079 ((-644 (-3 (|:| -2628 (-1175)) (|:| -3121 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566)))))))) (-436) $)) (-15 -2976 ((-644 (-1175)) $)) (-15 -3067 ((-644 (-644 (-3 (|:| -2628 (-1175)) (|:| -3121 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566))))))))) $)) (-15 -3573 ((-1103) $)) (-15 -2809 ((-1269) $)) (-15 -2693 ($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-439))))))))) (T -1179))
-((-2512 (*1 *2 *1) (-12 (-5 *2 (-1187 (-1175) (-439))) (-5 *1 (-1179)))) (-2954 (*1 *1) (-5 *1 (-1179))) (-3439 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-439)) (-5 *3 (-644 (-1175))) (-5 *1 (-1179)))) (-3439 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1179)))) (-4190 (*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-439)) (-5 *1 (-1179)))) (-1968 (*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1179)))) (-2079 (*1 *2 *3 *1) (-12 (-5 *3 (-436)) (-5 *2 (-644 (-3 (|:| -2628 (-1175)) (|:| -3121 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566))))))))) (-5 *1 (-1179)))) (-2976 (*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1179)))) (-3067 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-3 (|:| -2628 (-1175)) (|:| -3121 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566)))))))))) (-5 *1 (-1179)))) (-3573 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-1179)))) (-2809 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1179)))) (-2693 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-439))))) (-5 *1 (-1179)))))
-(-13 (-613 (-862)) (-10 -8 (-15 -2512 ((-1187 (-1175) (-439)) $)) (-15 -2954 ($)) (-15 -3439 ((-439) (-644 (-1175)) (-439) $)) (-15 -3439 ((-439) (-1175) (-439) $)) (-15 -4190 ((-439) (-1175) $)) (-15 -1968 ((-644 (-1175)) $)) (-15 -2079 ((-644 (-3 (|:| -2628 (-1175)) (|:| -3121 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566)))))))) (-436) $)) (-15 -2976 ((-644 (-1175)) $)) (-15 -3067 ((-644 (-644 (-3 (|:| -2628 (-1175)) (|:| -3121 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566))))))))) $)) (-15 -3573 ((-1103) $)) (-15 -2809 ((-1269) $)) (-15 -2693 ($ (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-439))))))))
-((-2985 (((-112) $ $) NIL)) (-2977 (((-3 (-566) "failed") $) 29) (((-3 (-225) "failed") $) 35) (((-3 (-508) "failed") $) 43) (((-3 (-1157) "failed") $) 47)) (-1756 (((-566) $) 30) (((-225) $) 36) (((-508) $) 40) (((-1157) $) 48)) (-1791 (((-112) $) 53)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1331 (((-3 (-566) (-225) (-508) (-1157) $) $) 55)) (-2274 (((-644 $) $) 57)) (-3134 (((-1103) $) 24) (($ (-1103)) 25)) (-3471 (((-112) $) 56)) (-2512 (((-862) $) 23) (($ (-566)) 26) (($ (-225)) 32) (($ (-508)) 38) (($ (-1157)) 44) (((-538) $) 59) (((-566) $) 31) (((-225) $) 37) (((-508) $) 41) (((-1157) $) 49)) (-2473 (((-112) $ (|[\|\|]| (-566))) 10) (((-112) $ (|[\|\|]| (-225))) 13) (((-112) $ (|[\|\|]| (-508))) 19) (((-112) $ (|[\|\|]| (-1157))) 16)) (-3532 (($ (-508) (-644 $)) 51) (($ $ (-644 $)) 52)) (-3122 (((-112) $ $) NIL)) (-3928 (((-566) $) 27) (((-225) $) 33) (((-508) $) 39) (((-1157) $) 45)) (-2940 (((-112) $ $) 7)))
-(((-1180) (-13 (-1259) (-1099) (-1038 (-566)) (-1038 (-225)) (-1038 (-508)) (-1038 (-1157)) (-613 (-538)) (-10 -8 (-15 -3134 ((-1103) $)) (-15 -3134 ($ (-1103))) (-15 -2512 ((-566) $)) (-15 -3928 ((-566) $)) (-15 -2512 ((-225) $)) (-15 -3928 ((-225) $)) (-15 -2512 ((-508) $)) (-15 -3928 ((-508) $)) (-15 -2512 ((-1157) $)) (-15 -3928 ((-1157) $)) (-15 -3532 ($ (-508) (-644 $))) (-15 -3532 ($ $ (-644 $))) (-15 -1791 ((-112) $)) (-15 -1331 ((-3 (-566) (-225) (-508) (-1157) $) $)) (-15 -2274 ((-644 $) $)) (-15 -3471 ((-112) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-566)))) (-15 -2473 ((-112) $ (|[\|\|]| (-225)))) (-15 -2473 ((-112) $ (|[\|\|]| (-508)))) (-15 -2473 ((-112) $ (|[\|\|]| (-1157))))))) (T -1180))
-((-3134 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-1180)))) (-3134 (*1 *1 *2) (-12 (-5 *2 (-1103)) (-5 *1 (-1180)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1180)))) (-3928 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1180)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1180)))) (-3928 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1180)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1180)))) (-3928 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1180)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1180)))) (-3928 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1180)))) (-3532 (*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-644 (-1180))) (-5 *1 (-1180)))) (-3532 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1180)))) (-1791 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1180)))) (-1331 (*1 *2 *1) (-12 (-5 *2 (-3 (-566) (-225) (-508) (-1157) (-1180))) (-5 *1 (-1180)))) (-2274 (*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1180)))) (-3471 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1180)))) (-2473 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-566))) (-5 *2 (-112)) (-5 *1 (-1180)))) (-2473 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-225))) (-5 *2 (-112)) (-5 *1 (-1180)))) (-2473 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-508))) (-5 *2 (-112)) (-5 *1 (-1180)))) (-2473 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1157))) (-5 *2 (-112)) (-5 *1 (-1180)))))
-(-13 (-1259) (-1099) (-1038 (-566)) (-1038 (-225)) (-1038 (-508)) (-1038 (-1157)) (-613 (-538)) (-10 -8 (-15 -3134 ((-1103) $)) (-15 -3134 ($ (-1103))) (-15 -2512 ((-566) $)) (-15 -3928 ((-566) $)) (-15 -2512 ((-225) $)) (-15 -3928 ((-225) $)) (-15 -2512 ((-508) $)) (-15 -3928 ((-508) $)) (-15 -2512 ((-1157) $)) (-15 -3928 ((-1157) $)) (-15 -3532 ($ (-508) (-644 $))) (-15 -3532 ($ $ (-644 $))) (-15 -1791 ((-112) $)) (-15 -1331 ((-3 (-566) (-225) (-508) (-1157) $) $)) (-15 -2274 ((-644 $) $)) (-15 -3471 ((-112) $)) (-15 -2473 ((-112) $ (|[\|\|]| (-566)))) (-15 -2473 ((-112) $ (|[\|\|]| (-225)))) (-15 -2473 ((-112) $ (|[\|\|]| (-508)))) (-15 -2473 ((-112) $ (|[\|\|]| (-1157))))))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) 22)) (-2342 (($) 12 T CONST)) (-3335 (($) 27)) (-1439 (($ $ $) NIL) (($) 19 T CONST)) (-3059 (($ $ $) NIL) (($) 20 T CONST)) (-3712 (((-921) $) 24)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) 23)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
-(((-1181 |#1|) (-13 (-844) (-10 -8 (-15 -2342 ($) -1655))) (-921)) (T -1181))
-((-2342 (*1 *1) (-12 (-5 *1 (-1181 *2)) (-14 *2 (-921)))))
-(-13 (-844) (-10 -8 (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)) (|has| |#1| (-1099))))) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL)) (-2518 (((-1269) $ (-1157) (-1157)) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-1157) |#1|) NIL)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-2450 (((-3 |#1| "failed") (-1157) $) NIL)) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099))))) (-1450 (($ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414))) (((-3 |#1| "failed") (-1157) $) NIL)) (-2661 (($ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-1157) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-1157)) NIL)) (-3799 (((-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-1157) $) NIL (|has| (-1157) (-850)))) (-3276 (((-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-1157) $) NIL (|has| (-1157) (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4415))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)) (|has| |#1| (-1099))))) (-4314 (((-644 (-1157)) $) NIL)) (-3422 (((-112) (-1157) $) NIL)) (-3765 (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL)) (-2903 (($ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL)) (-2140 (((-644 (-1157)) $) NIL)) (-3935 (((-112) (-1157) $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)) (|has| |#1| (-1099))))) (-4101 ((|#1| $) NIL (|has| (-1157) (-850)))) (-3591 (((-3 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) "failed") (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL)) (-3750 (($ $ |#1|) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (($ $ (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL (-12 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-310 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-1157)) NIL) ((|#1| $ (-1157) |#1|) NIL)) (-3551 (($) NIL) (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL)) (-3780 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-613 (-862))) (|has| |#1| (-613 (-862)))))) (-3801 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)) (|has| |#1| (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)))) NIL)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 (-1157)) (|:| -2849 |#1|)) (-1099)) (|has| |#1| (-1099))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1158 |#1|) (-13 (-1190 (-1157) |#1|) (-10 -7 (-6 -4414))) (-1099)) (T -1158))
+NIL
+(-13 (-1190 (-1157) |#1|) (-10 -7 (-6 -4414)))
+((-2919 (((-1155 |#1|) (-1155 |#1|)) 85)) (-2928 (((-3 (-1155 |#1|) "failed") (-1155 |#1|)) 42)) (-2374 (((-1155 |#1|) (-409 (-566)) (-1155 |#1|)) 136 (|has| |#1| (-38 (-409 (-566)))))) (-3458 (((-1155 |#1|) |#1| (-1155 |#1|)) 142 (|has| |#1| (-365)))) (-2534 (((-1155 |#1|) (-1155 |#1|)) 100)) (-2088 (((-1155 (-566)) (-566)) 64)) (-2134 (((-1155 |#1|) (-1155 (-1155 |#1|))) 119 (|has| |#1| (-38 (-409 (-566)))))) (-1608 (((-1155 |#1|) (-566) (-566) (-1155 |#1|)) 105)) (-2044 (((-1155 |#1|) |#1| (-566)) 54)) (-3955 (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 67)) (-1345 (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 139 (|has| |#1| (-365)))) (-2369 (((-1155 |#1|) |#1| (-1 (-1155 |#1|))) 118 (|has| |#1| (-38 (-409 (-566)))))) (-1868 (((-1155 |#1|) (-1 |#1| (-566)) |#1| (-1 (-1155 |#1|))) 140 (|has| |#1| (-365)))) (-3675 (((-1155 |#1|) (-1155 |#1|)) 99)) (-1786 (((-1155 |#1|) (-1155 |#1|)) 83)) (-2303 (((-1155 |#1|) (-566) (-566) (-1155 |#1|)) 106)) (-3921 (((-1155 |#1|) |#1| (-1155 |#1|)) 115 (|has| |#1| (-38 (-409 (-566)))))) (-1963 (((-1155 (-566)) (-566)) 63)) (-3762 (((-1155 |#1|) |#1|) 66)) (-3398 (((-1155 |#1|) (-1155 |#1|) (-566) (-566)) 102)) (-3001 (((-1155 |#1|) (-1 |#1| (-566)) (-1155 |#1|)) 73)) (-2997 (((-3 (-1155 |#1|) "failed") (-1155 |#1|) (-1155 |#1|)) 40)) (-2581 (((-1155 |#1|) (-1155 |#1|)) 101)) (-2095 (((-1155 |#1|) (-1155 |#1|) |#1|) 78)) (-2086 (((-1155 |#1|) (-1155 |#1|)) 69)) (-3374 (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 79)) (-3780 (((-1155 |#1|) |#1|) 74)) (-1907 (((-1155 |#1|) (-1155 (-1155 |#1|))) 90)) (-3062 (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 41)) (-3051 (((-1155 |#1|) (-1155 |#1|)) 21) (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 23)) (-3040 (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 17)) (* (((-1155 |#1|) (-1155 |#1|) |#1|) 29) (((-1155 |#1|) |#1| (-1155 |#1|)) 26) (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 27)))
+(((-1159 |#1|) (-10 -7 (-15 -3040 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3051 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3051 ((-1155 |#1|) (-1155 |#1|))) (-15 * ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 * ((-1155 |#1|) |#1| (-1155 |#1|))) (-15 * ((-1155 |#1|) (-1155 |#1|) |#1|)) (-15 -2997 ((-3 (-1155 |#1|) "failed") (-1155 |#1|) (-1155 |#1|))) (-15 -3062 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -2928 ((-3 (-1155 |#1|) "failed") (-1155 |#1|))) (-15 -2044 ((-1155 |#1|) |#1| (-566))) (-15 -1963 ((-1155 (-566)) (-566))) (-15 -2088 ((-1155 (-566)) (-566))) (-15 -3762 ((-1155 |#1|) |#1|)) (-15 -3955 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -2086 ((-1155 |#1|) (-1155 |#1|))) (-15 -3001 ((-1155 |#1|) (-1 |#1| (-566)) (-1155 |#1|))) (-15 -3780 ((-1155 |#1|) |#1|)) (-15 -2095 ((-1155 |#1|) (-1155 |#1|) |#1|)) (-15 -3374 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -1786 ((-1155 |#1|) (-1155 |#1|))) (-15 -2919 ((-1155 |#1|) (-1155 |#1|))) (-15 -1907 ((-1155 |#1|) (-1155 (-1155 |#1|)))) (-15 -3675 ((-1155 |#1|) (-1155 |#1|))) (-15 -2534 ((-1155 |#1|) (-1155 |#1|))) (-15 -2581 ((-1155 |#1|) (-1155 |#1|))) (-15 -3398 ((-1155 |#1|) (-1155 |#1|) (-566) (-566))) (-15 -1608 ((-1155 |#1|) (-566) (-566) (-1155 |#1|))) (-15 -2303 ((-1155 |#1|) (-566) (-566) (-1155 |#1|))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ((-1155 |#1|) |#1| (-1155 |#1|))) (-15 -2369 ((-1155 |#1|) |#1| (-1 (-1155 |#1|)))) (-15 -2134 ((-1155 |#1|) (-1155 (-1155 |#1|)))) (-15 -2374 ((-1155 |#1|) (-409 (-566)) (-1155 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -1345 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -1868 ((-1155 |#1|) (-1 |#1| (-566)) |#1| (-1 (-1155 |#1|)))) (-15 -3458 ((-1155 |#1|) |#1| (-1155 |#1|)))) |%noBranch|)) (-1049)) (T -1159))
+((-3458 (*1 *2 *3 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-1868 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *4 (-566))) (-5 *5 (-1 (-1155 *4))) (-4 *4 (-365)) (-4 *4 (-1049)) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4)))) (-1345 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-365)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-2374 (*1 *2 *3 *2) (-12 (-5 *2 (-1155 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1049)) (-5 *3 (-409 (-566))) (-5 *1 (-1159 *4)))) (-2134 (*1 *2 *3) (-12 (-5 *3 (-1155 (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4)) (-4 *4 (-38 (-409 (-566)))) (-4 *4 (-1049)))) (-2369 (*1 *2 *3 *4) (-12 (-5 *4 (-1 (-1155 *3))) (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)))) (-3921 (*1 *2 *3 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-2303 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049)) (-5 *1 (-1159 *4)))) (-1608 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049)) (-5 *1 (-1159 *4)))) (-3398 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049)) (-5 *1 (-1159 *4)))) (-2581 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-2534 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3675 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-1907 (*1 *2 *3) (-12 (-5 *3 (-1155 (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4)) (-4 *4 (-1049)))) (-2919 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-1786 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3374 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-2095 (*1 *2 *2 *3) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3780 (*1 *2 *3) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-1049)))) (-3001 (*1 *2 *3 *2) (-12 (-5 *2 (-1155 *4)) (-5 *3 (-1 *4 (-566))) (-4 *4 (-1049)) (-5 *1 (-1159 *4)))) (-2086 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3955 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3762 (*1 *2 *3) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-1049)))) (-2088 (*1 *2 *3) (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1159 *4)) (-4 *4 (-1049)) (-5 *3 (-566)))) (-1963 (*1 *2 *3) (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1159 *4)) (-4 *4 (-1049)) (-5 *3 (-566)))) (-2044 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-1049)))) (-2928 (*1 *2 *2) (|partial| -12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3062 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-2997 (*1 *2 *2 *2) (|partial| -12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (* (*1 *2 *2 *3) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (* (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3051 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3051 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))) (-3040 (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
+(-10 -7 (-15 -3040 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3051 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3051 ((-1155 |#1|) (-1155 |#1|))) (-15 * ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 * ((-1155 |#1|) |#1| (-1155 |#1|))) (-15 * ((-1155 |#1|) (-1155 |#1|) |#1|)) (-15 -2997 ((-3 (-1155 |#1|) "failed") (-1155 |#1|) (-1155 |#1|))) (-15 -3062 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -2928 ((-3 (-1155 |#1|) "failed") (-1155 |#1|))) (-15 -2044 ((-1155 |#1|) |#1| (-566))) (-15 -1963 ((-1155 (-566)) (-566))) (-15 -2088 ((-1155 (-566)) (-566))) (-15 -3762 ((-1155 |#1|) |#1|)) (-15 -3955 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -2086 ((-1155 |#1|) (-1155 |#1|))) (-15 -3001 ((-1155 |#1|) (-1 |#1| (-566)) (-1155 |#1|))) (-15 -3780 ((-1155 |#1|) |#1|)) (-15 -2095 ((-1155 |#1|) (-1155 |#1|) |#1|)) (-15 -3374 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -1786 ((-1155 |#1|) (-1155 |#1|))) (-15 -2919 ((-1155 |#1|) (-1155 |#1|))) (-15 -1907 ((-1155 |#1|) (-1155 (-1155 |#1|)))) (-15 -3675 ((-1155 |#1|) (-1155 |#1|))) (-15 -2534 ((-1155 |#1|) (-1155 |#1|))) (-15 -2581 ((-1155 |#1|) (-1155 |#1|))) (-15 -3398 ((-1155 |#1|) (-1155 |#1|) (-566) (-566))) (-15 -1608 ((-1155 |#1|) (-566) (-566) (-1155 |#1|))) (-15 -2303 ((-1155 |#1|) (-566) (-566) (-1155 |#1|))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ((-1155 |#1|) |#1| (-1155 |#1|))) (-15 -2369 ((-1155 |#1|) |#1| (-1 (-1155 |#1|)))) (-15 -2134 ((-1155 |#1|) (-1155 (-1155 |#1|)))) (-15 -2374 ((-1155 |#1|) (-409 (-566)) (-1155 |#1|)))) |%noBranch|) (IF (|has| |#1| (-365)) (PROGN (-15 -1345 ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -1868 ((-1155 |#1|) (-1 |#1| (-566)) |#1| (-1 (-1155 |#1|)))) (-15 -3458 ((-1155 |#1|) |#1| (-1155 |#1|)))) |%noBranch|))
+((-2865 (((-1155 |#1|) (-1155 |#1|)) 60)) (-3939 (((-1155 |#1|) (-1155 |#1|)) 42)) (-2843 (((-1155 |#1|) (-1155 |#1|)) 56)) (-3915 (((-1155 |#1|) (-1155 |#1|)) 38)) (-2888 (((-1155 |#1|) (-1155 |#1|)) 63)) (-3964 (((-1155 |#1|) (-1155 |#1|)) 45)) (-3671 (((-1155 |#1|) (-1155 |#1|)) 34)) (-4337 (((-1155 |#1|) (-1155 |#1|)) 29)) (-2897 (((-1155 |#1|) (-1155 |#1|)) 64)) (-3974 (((-1155 |#1|) (-1155 |#1|)) 46)) (-2877 (((-1155 |#1|) (-1155 |#1|)) 61)) (-3951 (((-1155 |#1|) (-1155 |#1|)) 43)) (-2853 (((-1155 |#1|) (-1155 |#1|)) 58)) (-3927 (((-1155 |#1|) (-1155 |#1|)) 40)) (-2931 (((-1155 |#1|) (-1155 |#1|)) 68)) (-4009 (((-1155 |#1|) (-1155 |#1|)) 50)) (-2907 (((-1155 |#1|) (-1155 |#1|)) 66)) (-3986 (((-1155 |#1|) (-1155 |#1|)) 48)) (-2954 (((-1155 |#1|) (-1155 |#1|)) 71)) (-4033 (((-1155 |#1|) (-1155 |#1|)) 53)) (-3181 (((-1155 |#1|) (-1155 |#1|)) 72)) (-2834 (((-1155 |#1|) (-1155 |#1|)) 54)) (-2943 (((-1155 |#1|) (-1155 |#1|)) 70)) (-4021 (((-1155 |#1|) (-1155 |#1|)) 52)) (-2920 (((-1155 |#1|) (-1155 |#1|)) 69)) (-3997 (((-1155 |#1|) (-1155 |#1|)) 51)) (** (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 36)))
+(((-1160 |#1|) (-10 -7 (-15 -4337 ((-1155 |#1|) (-1155 |#1|))) (-15 -3671 ((-1155 |#1|) (-1155 |#1|))) (-15 ** ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3915 ((-1155 |#1|) (-1155 |#1|))) (-15 -3927 ((-1155 |#1|) (-1155 |#1|))) (-15 -3939 ((-1155 |#1|) (-1155 |#1|))) (-15 -3951 ((-1155 |#1|) (-1155 |#1|))) (-15 -3964 ((-1155 |#1|) (-1155 |#1|))) (-15 -3974 ((-1155 |#1|) (-1155 |#1|))) (-15 -3986 ((-1155 |#1|) (-1155 |#1|))) (-15 -3997 ((-1155 |#1|) (-1155 |#1|))) (-15 -4009 ((-1155 |#1|) (-1155 |#1|))) (-15 -4021 ((-1155 |#1|) (-1155 |#1|))) (-15 -4033 ((-1155 |#1|) (-1155 |#1|))) (-15 -2834 ((-1155 |#1|) (-1155 |#1|))) (-15 -2843 ((-1155 |#1|) (-1155 |#1|))) (-15 -2853 ((-1155 |#1|) (-1155 |#1|))) (-15 -2865 ((-1155 |#1|) (-1155 |#1|))) (-15 -2877 ((-1155 |#1|) (-1155 |#1|))) (-15 -2888 ((-1155 |#1|) (-1155 |#1|))) (-15 -2897 ((-1155 |#1|) (-1155 |#1|))) (-15 -2907 ((-1155 |#1|) (-1155 |#1|))) (-15 -2920 ((-1155 |#1|) (-1155 |#1|))) (-15 -2931 ((-1155 |#1|) (-1155 |#1|))) (-15 -2943 ((-1155 |#1|) (-1155 |#1|))) (-15 -2954 ((-1155 |#1|) (-1155 |#1|))) (-15 -3181 ((-1155 |#1|) (-1155 |#1|)))) (-38 (-409 (-566)))) (T -1160))
+((-3181 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2954 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2943 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2931 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2920 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2907 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2897 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2888 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2877 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2865 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2853 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2843 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-2834 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-4033 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-4021 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-4009 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3997 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3986 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3974 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3964 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3951 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3939 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3927 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3915 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-3671 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))) (-4337 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1160 *3)))))
+(-10 -7 (-15 -4337 ((-1155 |#1|) (-1155 |#1|))) (-15 -3671 ((-1155 |#1|) (-1155 |#1|))) (-15 ** ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -3915 ((-1155 |#1|) (-1155 |#1|))) (-15 -3927 ((-1155 |#1|) (-1155 |#1|))) (-15 -3939 ((-1155 |#1|) (-1155 |#1|))) (-15 -3951 ((-1155 |#1|) (-1155 |#1|))) (-15 -3964 ((-1155 |#1|) (-1155 |#1|))) (-15 -3974 ((-1155 |#1|) (-1155 |#1|))) (-15 -3986 ((-1155 |#1|) (-1155 |#1|))) (-15 -3997 ((-1155 |#1|) (-1155 |#1|))) (-15 -4009 ((-1155 |#1|) (-1155 |#1|))) (-15 -4021 ((-1155 |#1|) (-1155 |#1|))) (-15 -4033 ((-1155 |#1|) (-1155 |#1|))) (-15 -2834 ((-1155 |#1|) (-1155 |#1|))) (-15 -2843 ((-1155 |#1|) (-1155 |#1|))) (-15 -2853 ((-1155 |#1|) (-1155 |#1|))) (-15 -2865 ((-1155 |#1|) (-1155 |#1|))) (-15 -2877 ((-1155 |#1|) (-1155 |#1|))) (-15 -2888 ((-1155 |#1|) (-1155 |#1|))) (-15 -2897 ((-1155 |#1|) (-1155 |#1|))) (-15 -2907 ((-1155 |#1|) (-1155 |#1|))) (-15 -2920 ((-1155 |#1|) (-1155 |#1|))) (-15 -2931 ((-1155 |#1|) (-1155 |#1|))) (-15 -2943 ((-1155 |#1|) (-1155 |#1|))) (-15 -2954 ((-1155 |#1|) (-1155 |#1|))) (-15 -3181 ((-1155 |#1|) (-1155 |#1|))))
+((-2865 (((-1155 |#1|) (-1155 |#1|)) 108)) (-3939 (((-1155 |#1|) (-1155 |#1|)) 65)) (-2352 (((-2 (|:| -2843 (-1155 |#1|)) (|:| -2853 (-1155 |#1|))) (-1155 |#1|)) 104)) (-2843 (((-1155 |#1|) (-1155 |#1|)) 105)) (-2257 (((-2 (|:| -3915 (-1155 |#1|)) (|:| -3927 (-1155 |#1|))) (-1155 |#1|)) 54)) (-3915 (((-1155 |#1|) (-1155 |#1|)) 55)) (-2888 (((-1155 |#1|) (-1155 |#1|)) 110)) (-3964 (((-1155 |#1|) (-1155 |#1|)) 72)) (-3671 (((-1155 |#1|) (-1155 |#1|)) 40)) (-4337 (((-1155 |#1|) (-1155 |#1|)) 37)) (-2897 (((-1155 |#1|) (-1155 |#1|)) 111)) (-3974 (((-1155 |#1|) (-1155 |#1|)) 73)) (-2877 (((-1155 |#1|) (-1155 |#1|)) 109)) (-3951 (((-1155 |#1|) (-1155 |#1|)) 68)) (-2853 (((-1155 |#1|) (-1155 |#1|)) 106)) (-3927 (((-1155 |#1|) (-1155 |#1|)) 56)) (-2931 (((-1155 |#1|) (-1155 |#1|)) 119)) (-4009 (((-1155 |#1|) (-1155 |#1|)) 94)) (-2907 (((-1155 |#1|) (-1155 |#1|)) 113)) (-3986 (((-1155 |#1|) (-1155 |#1|)) 90)) (-2954 (((-1155 |#1|) (-1155 |#1|)) 123)) (-4033 (((-1155 |#1|) (-1155 |#1|)) 98)) (-3181 (((-1155 |#1|) (-1155 |#1|)) 125)) (-2834 (((-1155 |#1|) (-1155 |#1|)) 100)) (-2943 (((-1155 |#1|) (-1155 |#1|)) 121)) (-4021 (((-1155 |#1|) (-1155 |#1|)) 96)) (-2920 (((-1155 |#1|) (-1155 |#1|)) 115)) (-3997 (((-1155 |#1|) (-1155 |#1|)) 92)) (** (((-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) 41)))
+(((-1161 |#1|) (-10 -7 (-15 -4337 ((-1155 |#1|) (-1155 |#1|))) (-15 -3671 ((-1155 |#1|) (-1155 |#1|))) (-15 ** ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -2257 ((-2 (|:| -3915 (-1155 |#1|)) (|:| -3927 (-1155 |#1|))) (-1155 |#1|))) (-15 -3915 ((-1155 |#1|) (-1155 |#1|))) (-15 -3927 ((-1155 |#1|) (-1155 |#1|))) (-15 -3939 ((-1155 |#1|) (-1155 |#1|))) (-15 -3951 ((-1155 |#1|) (-1155 |#1|))) (-15 -3964 ((-1155 |#1|) (-1155 |#1|))) (-15 -3974 ((-1155 |#1|) (-1155 |#1|))) (-15 -3986 ((-1155 |#1|) (-1155 |#1|))) (-15 -3997 ((-1155 |#1|) (-1155 |#1|))) (-15 -4009 ((-1155 |#1|) (-1155 |#1|))) (-15 -4021 ((-1155 |#1|) (-1155 |#1|))) (-15 -4033 ((-1155 |#1|) (-1155 |#1|))) (-15 -2834 ((-1155 |#1|) (-1155 |#1|))) (-15 -2352 ((-2 (|:| -2843 (-1155 |#1|)) (|:| -2853 (-1155 |#1|))) (-1155 |#1|))) (-15 -2843 ((-1155 |#1|) (-1155 |#1|))) (-15 -2853 ((-1155 |#1|) (-1155 |#1|))) (-15 -2865 ((-1155 |#1|) (-1155 |#1|))) (-15 -2877 ((-1155 |#1|) (-1155 |#1|))) (-15 -2888 ((-1155 |#1|) (-1155 |#1|))) (-15 -2897 ((-1155 |#1|) (-1155 |#1|))) (-15 -2907 ((-1155 |#1|) (-1155 |#1|))) (-15 -2920 ((-1155 |#1|) (-1155 |#1|))) (-15 -2931 ((-1155 |#1|) (-1155 |#1|))) (-15 -2943 ((-1155 |#1|) (-1155 |#1|))) (-15 -2954 ((-1155 |#1|) (-1155 |#1|))) (-15 -3181 ((-1155 |#1|) (-1155 |#1|)))) (-38 (-409 (-566)))) (T -1161))
+((-3181 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2954 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2943 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2931 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2920 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2907 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2897 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2888 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2877 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2865 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2853 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2843 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2352 (*1 *2 *3) (-12 (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-2 (|:| -2843 (-1155 *4)) (|:| -2853 (-1155 *4)))) (-5 *1 (-1161 *4)) (-5 *3 (-1155 *4)))) (-2834 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-4033 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-4021 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-4009 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3997 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3986 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3974 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3964 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3951 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3939 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3927 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3915 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-2257 (*1 *2 *3) (-12 (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-2 (|:| -3915 (-1155 *4)) (|:| -3927 (-1155 *4)))) (-5 *1 (-1161 *4)) (-5 *3 (-1155 *4)))) (** (*1 *2 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-3671 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))) (-4337 (*1 *2 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1161 *3)))))
+(-10 -7 (-15 -4337 ((-1155 |#1|) (-1155 |#1|))) (-15 -3671 ((-1155 |#1|) (-1155 |#1|))) (-15 ** ((-1155 |#1|) (-1155 |#1|) (-1155 |#1|))) (-15 -2257 ((-2 (|:| -3915 (-1155 |#1|)) (|:| -3927 (-1155 |#1|))) (-1155 |#1|))) (-15 -3915 ((-1155 |#1|) (-1155 |#1|))) (-15 -3927 ((-1155 |#1|) (-1155 |#1|))) (-15 -3939 ((-1155 |#1|) (-1155 |#1|))) (-15 -3951 ((-1155 |#1|) (-1155 |#1|))) (-15 -3964 ((-1155 |#1|) (-1155 |#1|))) (-15 -3974 ((-1155 |#1|) (-1155 |#1|))) (-15 -3986 ((-1155 |#1|) (-1155 |#1|))) (-15 -3997 ((-1155 |#1|) (-1155 |#1|))) (-15 -4009 ((-1155 |#1|) (-1155 |#1|))) (-15 -4021 ((-1155 |#1|) (-1155 |#1|))) (-15 -4033 ((-1155 |#1|) (-1155 |#1|))) (-15 -2834 ((-1155 |#1|) (-1155 |#1|))) (-15 -2352 ((-2 (|:| -2843 (-1155 |#1|)) (|:| -2853 (-1155 |#1|))) (-1155 |#1|))) (-15 -2843 ((-1155 |#1|) (-1155 |#1|))) (-15 -2853 ((-1155 |#1|) (-1155 |#1|))) (-15 -2865 ((-1155 |#1|) (-1155 |#1|))) (-15 -2877 ((-1155 |#1|) (-1155 |#1|))) (-15 -2888 ((-1155 |#1|) (-1155 |#1|))) (-15 -2897 ((-1155 |#1|) (-1155 |#1|))) (-15 -2907 ((-1155 |#1|) (-1155 |#1|))) (-15 -2920 ((-1155 |#1|) (-1155 |#1|))) (-15 -2931 ((-1155 |#1|) (-1155 |#1|))) (-15 -2943 ((-1155 |#1|) (-1155 |#1|))) (-15 -2954 ((-1155 |#1|) (-1155 |#1|))) (-15 -3181 ((-1155 |#1|) (-1155 |#1|))))
+((-4196 (((-958 |#2|) |#2| |#2|) 51)) (-2755 ((|#2| |#2| |#1|) 19 (|has| |#1| (-308)))))
+(((-1162 |#1| |#2|) (-10 -7 (-15 -4196 ((-958 |#2|) |#2| |#2|)) (IF (|has| |#1| (-308)) (-15 -2755 (|#2| |#2| |#1|)) |%noBranch|)) (-558) (-1240 |#1|)) (T -1162))
+((-2755 (*1 *2 *2 *3) (-12 (-4 *3 (-308)) (-4 *3 (-558)) (-5 *1 (-1162 *3 *2)) (-4 *2 (-1240 *3)))) (-4196 (*1 *2 *3 *3) (-12 (-4 *4 (-558)) (-5 *2 (-958 *3)) (-5 *1 (-1162 *4 *3)) (-4 *3 (-1240 *4)))))
+(-10 -7 (-15 -4196 ((-958 |#2|) |#2| |#2|)) (IF (|has| |#1| (-308)) (-15 -2755 (|#2| |#2| |#1|)) |%noBranch|))
+((-3009 (((-112) $ $) NIL)) (-2407 (($ $ (-644 (-771))) 81)) (-3649 (($) 33)) (-4189 (($ $) 51)) (-2091 (((-644 $) $) 60)) (-4289 (((-112) $) 19)) (-4236 (((-644 (-943 |#2|)) $) 88)) (-2007 (($ $) 82)) (-1573 (((-771) $) 47)) (-4278 (($) 32)) (-3976 (($ $ (-644 (-771)) (-943 |#2|)) 74) (($ $ (-644 (-771)) (-771)) 75) (($ $ (-771) (-943 |#2|)) 77)) (-3891 (($ $ $) 57) (($ (-644 $)) 59)) (-1845 (((-771) $) 89)) (-2675 (((-112) $) 15)) (-2402 (((-1157) $) NIL)) (-3948 (((-112) $) 22)) (-4056 (((-1119) $) NIL)) (-1437 (((-171) $) 87)) (-1844 (((-943 |#2|) $) 83)) (-3806 (((-771) $) 84)) (-3364 (((-112) $) 86)) (-1679 (($ $ (-644 (-771)) (-171)) 80)) (-1543 (($ $) 52)) (-3780 (((-862) $) 100)) (-2718 (($ $ (-644 (-771)) (-112)) 79)) (-4041 (((-644 $) $) 11)) (-2393 (($ $ (-771)) 46)) (-3488 (($ $) 43)) (-3801 (((-112) $ $) NIL)) (-3336 (($ $ $ (-943 |#2|) (-771)) 70)) (-2316 (($ $ (-943 |#2|)) 69)) (-1725 (($ $ (-644 (-771)) (-943 |#2|)) 66) (($ $ (-644 (-771)) (-771)) 72) (((-771) $ (-943 |#2|)) 73)) (-2950 (((-112) $ $) 94)))
+(((-1163 |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -2675 ((-112) $)) (-15 -4289 ((-112) $)) (-15 -3948 ((-112) $)) (-15 -4278 ($)) (-15 -3649 ($)) (-15 -3488 ($ $)) (-15 -2393 ($ $ (-771))) (-15 -4041 ((-644 $) $)) (-15 -1573 ((-771) $)) (-15 -4189 ($ $)) (-15 -1543 ($ $)) (-15 -3891 ($ $ $)) (-15 -3891 ($ (-644 $))) (-15 -2091 ((-644 $) $)) (-15 -1725 ($ $ (-644 (-771)) (-943 |#2|))) (-15 -2316 ($ $ (-943 |#2|))) (-15 -3336 ($ $ $ (-943 |#2|) (-771))) (-15 -3976 ($ $ (-644 (-771)) (-943 |#2|))) (-15 -1725 ($ $ (-644 (-771)) (-771))) (-15 -3976 ($ $ (-644 (-771)) (-771))) (-15 -1725 ((-771) $ (-943 |#2|))) (-15 -3976 ($ $ (-771) (-943 |#2|))) (-15 -2718 ($ $ (-644 (-771)) (-112))) (-15 -1679 ($ $ (-644 (-771)) (-171))) (-15 -2407 ($ $ (-644 (-771)))) (-15 -1844 ((-943 |#2|) $)) (-15 -3806 ((-771) $)) (-15 -3364 ((-112) $)) (-15 -1437 ((-171) $)) (-15 -1845 ((-771) $)) (-15 -2007 ($ $)) (-15 -4236 ((-644 (-943 |#2|)) $)))) (-921) (-1049)) (T -1163))
+((-2675 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-4289 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-3948 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-4278 (*1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-3649 (*1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-3488 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-2393 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-4041 (*1 *2 *1) (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-1573 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-4189 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-1543 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-3891 (*1 *1 *1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-3891 (*1 *1 *2) (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-2091 (*1 *2 *1) (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-1725 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-943 *5)) (-4 *5 (-1049)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))) (-2316 (*1 *1 *1 *2) (-12 (-5 *2 (-943 *4)) (-4 *4 (-1049)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)))) (-3336 (*1 *1 *1 *1 *2 *3) (-12 (-5 *2 (-943 *5)) (-5 *3 (-771)) (-4 *5 (-1049)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))) (-3976 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-943 *5)) (-4 *5 (-1049)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))) (-1725 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-771)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)) (-4 *5 (-1049)))) (-3976 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-771)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)) (-4 *5 (-1049)))) (-1725 (*1 *2 *1 *3) (-12 (-5 *3 (-943 *5)) (-4 *5 (-1049)) (-5 *2 (-771)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))) (-3976 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *3 (-943 *5)) (-4 *5 (-1049)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))) (-2718 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-112)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)) (-4 *5 (-1049)))) (-1679 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-644 (-771))) (-5 *3 (-171)) (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)) (-4 *5 (-1049)))) (-2407 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-1844 (*1 *2 *1) (-12 (-5 *2 (-943 *4)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-3806 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-3364 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-1437 (*1 *2 *1) (-12 (-5 *2 (-171)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-1845 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))) (-2007 (*1 *1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))) (-4236 (*1 *2 *1) (-12 (-5 *2 (-644 (-943 *4))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921)) (-4 *4 (-1049)))))
+(-13 (-1099) (-10 -8 (-15 -2675 ((-112) $)) (-15 -4289 ((-112) $)) (-15 -3948 ((-112) $)) (-15 -4278 ($)) (-15 -3649 ($)) (-15 -3488 ($ $)) (-15 -2393 ($ $ (-771))) (-15 -4041 ((-644 $) $)) (-15 -1573 ((-771) $)) (-15 -4189 ($ $)) (-15 -1543 ($ $)) (-15 -3891 ($ $ $)) (-15 -3891 ($ (-644 $))) (-15 -2091 ((-644 $) $)) (-15 -1725 ($ $ (-644 (-771)) (-943 |#2|))) (-15 -2316 ($ $ (-943 |#2|))) (-15 -3336 ($ $ $ (-943 |#2|) (-771))) (-15 -3976 ($ $ (-644 (-771)) (-943 |#2|))) (-15 -1725 ($ $ (-644 (-771)) (-771))) (-15 -3976 ($ $ (-644 (-771)) (-771))) (-15 -1725 ((-771) $ (-943 |#2|))) (-15 -3976 ($ $ (-771) (-943 |#2|))) (-15 -2718 ($ $ (-644 (-771)) (-112))) (-15 -1679 ($ $ (-644 (-771)) (-171))) (-15 -2407 ($ $ (-644 (-771)))) (-15 -1844 ((-943 |#2|) $)) (-15 -3806 ((-771) $)) (-15 -3364 ((-112) $)) (-15 -1437 ((-171) $)) (-15 -1845 ((-771) $)) (-15 -2007 ($ $)) (-15 -4236 ((-644 (-943 |#2|)) $))))
+((-3009 (((-112) $ $) NIL)) (-3361 ((|#2| $) 11)) (-3349 ((|#1| $) 10)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3791 (($ |#1| |#2|) 9)) (-3780 (((-862) $) 16)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1164 |#1| |#2|) (-13 (-1099) (-10 -8 (-15 -3791 ($ |#1| |#2|)) (-15 -3349 (|#1| $)) (-15 -3361 (|#2| $)))) (-1099) (-1099)) (T -1164))
+((-3791 (*1 *1 *2 *3) (-12 (-5 *1 (-1164 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-3349 (*1 *2 *1) (-12 (-4 *2 (-1099)) (-5 *1 (-1164 *2 *3)) (-4 *3 (-1099)))) (-3361 (*1 *2 *1) (-12 (-4 *2 (-1099)) (-5 *1 (-1164 *3 *2)) (-4 *3 (-1099)))))
+(-13 (-1099) (-10 -8 (-15 -3791 ($ |#1| |#2|)) (-15 -3349 (|#1| $)) (-15 -3361 (|#2| $))))
+((-3009 (((-112) $ $) NIL)) (-4330 (((-1134) $) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 15) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1165) (-13 (-1082) (-10 -8 (-15 -4330 ((-1134) $))))) (T -1165))
+((-4330 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1165)))))
+(-13 (-1082) (-10 -8 (-15 -4330 ((-1134) $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2486 (((-1173 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-308)) (|has| |#1| (-365))))) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) 11)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-1968 (($ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-2644 (((-112) $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-2922 (($ $ (-566)) NIL) (($ $ (-566) (-566)) 75)) (-2455 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) NIL)) (-2015 (((-1173 |#1| |#2| |#3|) $) 42)) (-2827 (((-3 (-1173 |#1| |#2| |#3|) "failed") $) 32)) (-3543 (((-1173 |#1| |#2| |#3|) $) 33)) (-2865 (($ $) 116 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 92 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-2179 (($ $) NIL (|has| |#1| (-365)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2843 (($ $) 112 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 88 (|has| |#1| (-38 (-409 (-566)))))) (-2899 (((-566) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-1903 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) NIL)) (-2888 (($ $) 120 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 96 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-1173 |#1| |#2| |#3|) "failed") $) 34) (((-3 (-1175) "failed") $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-566) "failed") $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))))) (-1867 (((-1173 |#1| |#2| |#3|) $) 140) (((-1175) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (((-409 (-566)) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365)))) (((-566) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))))) (-1370 (($ $) 37) (($ (-566) $) 38)) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) NIL)) (-2210 (((-689 (-1173 |#1| |#2| |#3|)) (-689 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -4193 (-689 (-1173 |#1| |#2| |#3|))) (|:| |vec| (-1264 (-1173 |#1| |#2| |#3|)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-639 (-566))) (|has| |#1| (-365)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-639 (-566))) (|has| |#1| (-365))))) (-2928 (((-3 $ "failed") $) 54)) (-3240 (((-409 (-952 |#1|)) $ (-566)) 74 (|has| |#1| (-558))) (((-409 (-952 |#1|)) $ (-566) (-566)) 76 (|has| |#1| (-558)))) (-1618 (($) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-1784 (((-112) $) NIL (|has| |#1| (-365)))) (-1533 (((-112) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-4392 (((-112) $) 28)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-886 (-381))) (|has| |#1| (-365)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-886 (-566))) (|has| |#1| (-365))))) (-3227 (((-566) $) NIL) (((-566) $ (-566)) 26)) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL (|has| |#1| (-365)))) (-3088 (((-1173 |#1| |#2| |#3|) $) 44 (|has| |#1| (-365)))) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2133 (((-3 $ "failed") $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1150)) (|has| |#1| (-365))))) (-2917 (((-112) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-1644 (($ $ (-921)) NIL)) (-2654 (($ (-1 |#1| (-566)) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-566)) 19) (($ $ (-1081) (-566)) NIL) (($ $ (-644 (-1081)) (-644 (-566))) NIL)) (-1945 (($ $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2709 (($ $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-365)))) (-3671 (($ $) 81 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3553 (($ (-566) (-1173 |#1| |#2| |#3|)) 36)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-365)))) (-3921 (($ $) 79 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 80 (|has| |#1| (-38 (-409 (-566)))))) (-3625 (($) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1150)) (|has| |#1| (-365))) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2539 (($ $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-308)) (|has| |#1| (-365))))) (-2209 (((-1173 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-2473 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2295 (($ $ (-566)) 158)) (-2997 (((-3 $ "failed") $ $) 55 (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4337 (($ $) 82 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-566))))) (($ $ (-1175) (-1173 |#1| |#2| |#3|)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-516 (-1175) (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 (-1173 |#1| |#2| |#3|))) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-516 (-1175) (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-295 (-1173 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-310 (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-295 (-1173 |#1| |#2| |#3|))) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-310 (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-310 (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-1173 |#1| |#2| |#3|)) (-644 (-1173 |#1| |#2| |#3|))) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-310 (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365))))) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ (-566)) NIL) (($ $ $) 61 (|has| (-566) (-1111))) (($ $ (-1173 |#1| |#2| |#3|)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-287 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|))) (|has| |#1| (-365))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-2578 (($ $ (-1 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|))) NIL (|has| |#1| (-365))) (($ $ (-1 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|)) (-771)) NIL (|has| |#1| (-365))) (($ $ (-1260 |#2|)) 57) (($ $ (-771)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) 56 (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-1431 (($ $) NIL (|has| |#1| (-365)))) (-3100 (((-1173 |#1| |#2| |#3|) $) 46 (|has| |#1| (-365)))) (-2108 (((-566) $) 43)) (-2897 (($ $) 122 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 98 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 118 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 94 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 114 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 90 (|has| |#1| (-38 (-409 (-566)))))) (-3204 (((-538) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-614 (-538))) (|has| |#1| (-365)))) (((-381) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1022)) (|has| |#1| (-365)))) (((-225) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1022)) (|has| |#1| (-365)))) (((-892 (-381)) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-614 (-892 (-381)))) (|has| |#1| (-365)))) (((-892 (-566)) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-614 (-892 (-566)))) (|has| |#1| (-365))))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-1377 (($ $) NIL)) (-3780 (((-862) $) 162) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1173 |#1| |#2| |#3|)) 30) (($ (-1260 |#2|)) 25) (($ (-1175)) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (($ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558)))) (($ (-409 (-566))) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))) (|has| |#1| (-38 (-409 (-566))))))) (-3756 ((|#1| $ (-566)) 77)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-145)) (|has| |#1| (-365))) (|has| |#1| (-145))))) (-3996 (((-771)) NIL T CONST)) (-3174 ((|#1| $) 12)) (-1982 (((-1173 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) 128 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 104 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-2907 (($ $) 124 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 100 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 108 (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-566)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 110 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 106 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 126 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 102 (|has| |#1| (-38 (-409 (-566)))))) (-3333 (($ $) NIL (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-2493 (($) 21 T CONST)) (-4333 (($) 16 T CONST)) (-2876 (($ $ (-1 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|))) NIL (|has| |#1| (-365))) (($ $ (-1 (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|)) (-771)) NIL (|has| |#1| (-365))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-3010 (((-112) $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2984 (((-112) $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2972 (((-112) $ $) NIL (-2805 (-12 (|has| (-1173 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1173 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) 49 (|has| |#1| (-365))) (($ (-1173 |#1| |#2| |#3|) (-1173 |#1| |#2| |#3|)) 50 (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 23)) (** (($ $ (-921)) NIL) (($ $ (-771)) 60) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) 83 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 137 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 35) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1173 |#1| |#2| |#3|)) 48 (|has| |#1| (-365))) (($ (-1173 |#1| |#2| |#3|) $) 47 (|has| |#1| (-365))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-1166 |#1| |#2| |#3|) (-13 (-1226 |#1| (-1173 |#1| |#2| |#3|)) (-10 -8 (-15 -3780 ($ (-1260 |#2|))) (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1166))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-3921 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1166 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
+(-13 (-1226 |#1| (-1173 |#1| |#2| |#3|)) (-10 -8 (-15 -3780 ($ (-1260 |#2|))) (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|)))
+((-1441 ((|#2| |#2| (-1091 |#2|)) 26) ((|#2| |#2| (-1175)) 28)))
+(((-1167 |#1| |#2|) (-10 -7 (-15 -1441 (|#2| |#2| (-1175))) (-15 -1441 (|#2| |#2| (-1091 |#2|)))) (-13 (-558) (-1038 (-566)) (-639 (-566))) (-13 (-432 |#1|) (-160) (-27) (-1199))) (T -1167))
+((-1441 (*1 *2 *2 *3) (-12 (-5 *3 (-1091 *2)) (-4 *2 (-13 (-432 *4) (-160) (-27) (-1199))) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1167 *4 *2)))) (-1441 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1167 *4 *2)) (-4 *2 (-13 (-432 *4) (-160) (-27) (-1199))))))
+(-10 -7 (-15 -1441 (|#2| |#2| (-1175))) (-15 -1441 (|#2| |#2| (-1091 |#2|))))
+((-1441 (((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1091 (-409 (-952 |#1|)))) 31) (((-409 (-952 |#1|)) (-952 |#1|) (-1091 (-952 |#1|))) 44) (((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1175)) 33) (((-409 (-952 |#1|)) (-952 |#1|) (-1175)) 36)))
+(((-1168 |#1|) (-10 -7 (-15 -1441 ((-409 (-952 |#1|)) (-952 |#1|) (-1175))) (-15 -1441 ((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1175))) (-15 -1441 ((-409 (-952 |#1|)) (-952 |#1|) (-1091 (-952 |#1|)))) (-15 -1441 ((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1091 (-409 (-952 |#1|)))))) (-13 (-558) (-1038 (-566)))) (T -1168))
+((-1441 (*1 *2 *3 *4) (-12 (-5 *4 (-1091 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5))) (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-3 *3 (-317 *5))) (-5 *1 (-1168 *5)))) (-1441 (*1 *2 *3 *4) (-12 (-5 *4 (-1091 (-952 *5))) (-5 *3 (-952 *5)) (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-409 *3)) (-5 *1 (-1168 *5)))) (-1441 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-3 (-409 (-952 *5)) (-317 *5))) (-5 *1 (-1168 *5)) (-5 *3 (-409 (-952 *5))))) (-1441 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-409 (-952 *5))) (-5 *1 (-1168 *5)) (-5 *3 (-952 *5)))))
+(-10 -7 (-15 -1441 ((-409 (-952 |#1|)) (-952 |#1|) (-1175))) (-15 -1441 ((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1175))) (-15 -1441 ((-409 (-952 |#1|)) (-952 |#1|) (-1091 (-952 |#1|)))) (-15 -1441 ((-3 (-409 (-952 |#1|)) (-317 |#1|)) (-409 (-952 |#1|)) (-1091 (-409 (-952 |#1|))))))
+((-3152 (((-1171 |#2|) (-1 |#2| |#1|) (-1171 |#1|)) 13)))
+(((-1169 |#1| |#2|) (-10 -7 (-15 -3152 ((-1171 |#2|) (-1 |#2| |#1|) (-1171 |#1|)))) (-1049) (-1049)) (T -1169))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1171 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-5 *2 (-1171 *6)) (-5 *1 (-1169 *5 *6)))))
+(-10 -7 (-15 -3152 ((-1171 |#2|) (-1 |#2| |#1|) (-1171 |#1|))))
+((-3271 (((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|))) 51)) (-2473 (((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|))) 52)))
+(((-1170 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2473 ((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|)))) (-15 -3271 ((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|))))) (-793) (-850) (-454) (-949 |#3| |#1| |#2|)) (T -1170))
+((-3271 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-454)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-420 (-1171 (-409 *7)))) (-5 *1 (-1170 *4 *5 *6 *7)) (-5 *3 (-1171 (-409 *7))))) (-2473 (*1 *2 *3) (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-454)) (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-420 (-1171 (-409 *7)))) (-5 *1 (-1170 *4 *5 *6 *7)) (-5 *3 (-1171 (-409 *7))))))
+(-10 -7 (-15 -2473 ((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|)))) (-15 -3271 ((-420 (-1171 (-409 |#4|))) (-1171 (-409 |#4|)))))
+((-3009 (((-112) $ $) 171)) (-3015 (((-112) $) 43)) (-3788 (((-1264 |#1|) $ (-771)) NIL)) (-2608 (((-644 (-1081)) $) NIL)) (-3220 (($ (-1171 |#1|)) NIL)) (-2438 (((-1171 $) $ (-1081)) 82) (((-1171 |#1|) $) 71)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) 164 (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-1081))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-1911 (($ $ $) 158 (|has| |#1| (-558)))) (-4077 (((-420 (-1171 $)) (-1171 $)) 95 (|has| |#1| (-909)))) (-2179 (($ $) NIL (|has| |#1| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 115 (|has| |#1| (-909)))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-1362 (($ $ (-771)) 61)) (-1407 (($ $ (-771)) 63)) (-2091 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-454)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#1| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-1081) "failed") $) NIL)) (-1867 ((|#1| $) NIL) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-1081) $) NIL)) (-2662 (($ $ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $ $) 160 (|has| |#1| (-172)))) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) 80)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) NIL) (((-689 |#1|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3667 (($ $ $) 131)) (-1941 (($ $ $) NIL (|has| |#1| (-558)))) (-3048 (((-2 (|:| -3223 |#1|) (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-558)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2755 (($ $) 165 (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#1| (-909)))) (-2871 (($ $ |#1| (-771) $) 69)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1081) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1081) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3154 (((-862) $ (-862)) 148)) (-3227 (((-771) $ $) NIL (|has| |#1| (-558)))) (-3466 (((-112) $) 48)) (-4230 (((-771) $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| |#1| (-1150)))) (-2597 (($ (-1171 |#1|) (-1081)) 73) (($ (-1171 $) (-1081)) 89)) (-1644 (($ $ (-771)) 51)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-771)) 87) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-1081)) NIL) (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 153)) (-2466 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-2443 (($ (-1 (-771) (-771)) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3207 (((-1171 |#1|) $) NIL)) (-1984 (((-3 (-1081) "failed") $) NIL)) (-3614 (($ $) NIL)) (-3626 ((|#1| $) 76)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) NIL (|has| |#1| (-454)))) (-2402 (((-1157) $) NIL)) (-3312 (((-2 (|:| -3644 $) (|:| -4228 $)) $ (-771)) 60)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-1081)) (|:| -2456 (-771))) "failed") $) NIL)) (-3921 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3625 (($) NIL (|has| |#1| (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) 50)) (-3604 ((|#1| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 103 (|has| |#1| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-454))) (($ $ $) 167 (|has| |#1| (-454)))) (-3959 (($ $ (-771) |#1| $) 123)) (-4255 (((-420 (-1171 $)) (-1171 $)) 101 (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) 100 (|has| |#1| (-909)))) (-2473 (((-420 $) $) 108 (|has| |#1| (-909)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2997 (((-3 $ "failed") $ |#1|) 163 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 124 (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1081) |#1|) NIL) (($ $ (-644 (-1081)) (-644 |#1|)) NIL) (($ $ (-1081) $) NIL) (($ $ (-644 (-1081)) (-644 $)) NIL)) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ |#1|) 150) (($ $ $) 151) (((-409 $) (-409 $) (-409 $)) NIL (|has| |#1| (-558))) ((|#1| (-409 $) |#1|) NIL (|has| |#1| (-365))) (((-409 $) $ (-409 $)) NIL (|has| |#1| (-558)))) (-2867 (((-3 $ "failed") $ (-771)) 54)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 172 (|has| |#1| (-365)))) (-3309 (($ $ (-1081)) NIL (|has| |#1| (-172))) ((|#1| $) 156 (|has| |#1| (-172)))) (-2578 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL) (($ $ (-1 |#1| |#1|) $) NIL)) (-2108 (((-771) $) 78) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1081) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3042 ((|#1| $) 162 (|has| |#1| (-454))) (($ $ (-1081)) NIL (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#1| (-909))))) (-1970 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558))) (((-3 (-409 $) "failed") (-409 $) $) NIL (|has| |#1| (-558)))) (-3780 (((-862) $) 149) (($ (-566)) NIL) (($ |#1|) 77) (($ (-1081)) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-771)) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) 41 (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2493 (($) 17 T CONST)) (-4333 (($) 19 T CONST)) (-2876 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) NIL) (($ $ (-1 |#1| |#1|)) NIL)) (-2950 (((-112) $ $) 120)) (-3062 (($ $ |#1|) 173 (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 90)) (** (($ $ (-921)) 14) (($ $ (-771)) 12)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 39) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 129) (($ $ |#1|) NIL)))
+(((-1171 |#1|) (-13 (-1240 |#1|) (-10 -8 (-15 -3154 ((-862) $ (-862))) (-15 -3959 ($ $ (-771) |#1| $)))) (-1049)) (T -1171))
+((-3154 (*1 *2 *1 *2) (-12 (-5 *2 (-862)) (-5 *1 (-1171 *3)) (-4 *3 (-1049)))) (-3959 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1171 *3)) (-4 *3 (-1049)))))
+(-13 (-1240 |#1|) (-10 -8 (-15 -3154 ((-862) $ (-862))) (-15 -3959 ($ $ (-771) |#1| $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) 11)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2922 (($ $ (-409 (-566))) NIL) (($ $ (-409 (-566)) (-409 (-566))) NIL)) (-2455 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) NIL)) (-2865 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL (|has| |#1| (-365)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2843 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) NIL)) (-2888 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-1166 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1173 |#1| |#2| |#3|) "failed") $) 36)) (-1867 (((-1166 |#1| |#2| |#3|) $) NIL) (((-1173 |#1| |#2| |#3|) $) NIL)) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-3739 (((-409 (-566)) $) 59)) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3562 (($ (-409 (-566)) (-1166 |#1| |#2| |#3|)) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-1784 (((-112) $) NIL (|has| |#1| (-365)))) (-4392 (((-112) $) NIL)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-409 (-566)) $) NIL) (((-409 (-566)) $ (-409 (-566))) NIL)) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1644 (($ $ (-921)) NIL) (($ $ (-409 (-566))) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-409 (-566))) 20) (($ $ (-1081) (-409 (-566))) NIL) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3671 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-1438 (((-1166 |#1| |#2| |#3|) $) 41)) (-1785 (((-3 (-1166 |#1| |#2| |#3|) "failed") $) NIL)) (-3553 (((-1166 |#1| |#2| |#3|) $) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-365)))) (-3921 (($ $) 39 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 40 (|has| |#1| (-38 (-409 (-566)))))) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2295 (($ $ (-409 (-566))) NIL)) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4337 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ (-409 (-566))) NIL) (($ $ $) NIL (|has| (-409 (-566)) (-1111)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $ (-1260 |#2|)) 38)) (-2108 (((-409 (-566)) $) NIL)) (-2897 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) NIL)) (-3780 (((-862) $) 62) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1166 |#1| |#2| |#3|)) 30) (($ (-1173 |#1| |#2| |#3|)) 31) (($ (-1260 |#2|)) 26) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-3756 ((|#1| $ (-409 (-566))) NIL)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3174 ((|#1| $) 12)) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-409 (-566))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 22 T CONST)) (-4333 (($) 16 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 24)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-1172 |#1| |#2| |#3|) (-13 (-1247 |#1| (-1166 |#1| |#2| |#3|)) (-1038 (-1173 |#1| |#2| |#3|)) (-616 (-1260 |#2|)) (-10 -8 (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1172))
+((-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1172 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-3921 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1172 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
+(-13 (-1247 |#1| (-1166 |#1| |#2| |#3|)) (-1038 (-1173 |#1| |#2| |#3|)) (-616 (-1260 |#2|)) (-10 -8 (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 131)) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) 121)) (-4223 (((-1237 |#2| |#1|) $ (-771)) 69)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2922 (($ $ (-771)) 85) (($ $ (-771) (-771)) 82)) (-2455 (((-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|))) $) 107)) (-2865 (($ $) 175 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2843 (($ $) 171 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|)))) 120) (($ (-1155 |#1|)) 115)) (-2888 (($ $) 179 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) 25)) (-4298 (($ $) 28)) (-4215 (((-952 |#1|) $ (-771)) 81) (((-952 |#1|) $ (-771) (-771)) 83)) (-4392 (((-112) $) 126)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-771) $) 128) (((-771) $ (-771)) 130)) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1644 (($ $ (-921)) NIL)) (-2654 (($ (-1 |#1| (-566)) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-771)) 13) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3671 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-3921 (($ $) 135 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 136 (|has| |#1| (-38 (-409 (-566)))))) (-4056 (((-1119) $) NIL)) (-2295 (($ $ (-771)) 15)) (-2997 (((-3 $ "failed") $ $) 26 (|has| |#1| (-558)))) (-4337 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-771)))))) (-4393 ((|#1| $ (-771)) 124) (($ $ $) 134 (|has| (-771) (-1111)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) 29 (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $ (-1260 |#2|)) 31)) (-2108 (((-771) $) NIL)) (-2897 (($ $) 181 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 157 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 177 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 173 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) NIL)) (-3780 (((-862) $) 208) (($ (-566)) NIL) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558))) (($ |#1|) 132 (|has| |#1| (-172))) (($ (-1237 |#2| |#1|)) 55) (($ (-1260 |#2|)) 36)) (-3456 (((-1155 |#1|) $) 103)) (-3756 ((|#1| $ (-771)) 123)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3174 ((|#1| $) 58)) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) 187 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 163 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) 183 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 159 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 191 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 167 (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-771)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-771)))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) 193 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 169 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 189 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 165 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 185 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 161 (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 17 T CONST)) (-4333 (($) 20 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) 200)) (-3040 (($ $ $) 35)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ |#1|) 205 (|has| |#1| (-365))) (($ $ $) 140 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 143 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 138) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-1173 |#1| |#2| |#3|) (-13 (-1255 |#1|) (-10 -8 (-15 -3780 ($ (-1237 |#2| |#1|))) (-15 -4223 ((-1237 |#2| |#1|) $ (-771))) (-15 -3780 ($ (-1260 |#2|))) (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1173))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1237 *4 *3)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3) (-5 *1 (-1173 *3 *4 *5)))) (-4223 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1237 *5 *4)) (-5 *1 (-1173 *4 *5 *6)) (-4 *4 (-1049)) (-14 *5 (-1175)) (-14 *6 *4))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1173 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1173 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-3921 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1173 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
+(-13 (-1255 |#1|) (-10 -8 (-15 -3780 ($ (-1237 |#2| |#1|))) (-15 -4223 ((-1237 |#2| |#1|) $ (-771))) (-15 -3780 ($ (-1260 |#2|))) (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|)))
+((-3780 (((-862) $) 33) (($ (-1175)) 35)) (-2805 (($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 46)) (-2795 (($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 39) (($ $) 40)) (-3111 (($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 41)) (-3102 (($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 43)) (-3090 (($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 42)) (-3079 (($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 44)) (-2114 (($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 47)) (-12 (($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $))) 45)))
+(((-1174) (-13 (-613 (-862)) (-10 -8 (-15 -3780 ($ (-1175))) (-15 -3111 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3090 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3102 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3079 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2805 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2114 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2795 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2795 ($ $))))) (T -1174))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1174)))) (-3111 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-3090 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-3102 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-3079 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-2805 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-2114 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-2795 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174)))) (-5 *1 (-1174)))) (-2795 (*1 *1 *1) (-5 *1 (-1174))))
+(-13 (-613 (-862)) (-10 -8 (-15 -3780 ($ (-1175))) (-15 -3111 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3090 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3102 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -3079 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2805 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2114 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)) (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2795 ($ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381))) (|:| CF (-317 (-169 (-381)))) (|:| |switch| $)))) (-15 -2795 ($ $))))
+((-3009 (((-112) $ $) NIL)) (-4237 (($ $ (-644 (-862))) 64)) (-3519 (($ $ (-644 (-862))) 62)) (-4336 (((-1157) $) 103)) (-3957 (((-2 (|:| -2671 (-644 (-862))) (|:| -4385 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -3770 (-644 (-862))) (|:| |args| (-644 (-862)))) $) 110)) (-3926 (((-112) $) 23)) (-3406 (($ $ (-644 (-644 (-862)))) 61) (($ $ (-2 (|:| -2671 (-644 (-862))) (|:| -4385 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -3770 (-644 (-862))) (|:| |args| (-644 (-862))))) 101)) (-3877 (($) 166 T CONST)) (-3383 (((-1269)) 138)) (-1525 (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 71) (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 78)) (-4278 (($) 124) (($ $) 133)) (-2639 (($ $) 102)) (-1945 (($ $ $) NIL)) (-2709 (($ $ $) NIL)) (-3977 (((-644 $) $) 139)) (-2402 (((-1157) $) 116)) (-4056 (((-1119) $) NIL)) (-4393 (($ $ (-644 (-862))) 63)) (-3204 (((-538) $) 48) (((-1175) $) 49) (((-892 (-566)) $) 82) (((-892 (-381)) $) 80)) (-3780 (((-862) $) 55) (($ (-1157)) 50)) (-3801 (((-112) $ $) NIL)) (-2909 (($ $ (-644 (-862))) 65)) (-2852 (((-1157) $) 34) (((-1157) $ (-112)) 35) (((-1269) (-822) $) 36) (((-1269) (-822) $ (-112)) 37)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 51)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) 52)))
+(((-1175) (-13 (-850) (-614 (-538)) (-828) (-614 (-1175)) (-616 (-1157)) (-614 (-892 (-566))) (-614 (-892 (-381))) (-886 (-566)) (-886 (-381)) (-10 -8 (-15 -4278 ($)) (-15 -4278 ($ $)) (-15 -3383 ((-1269))) (-15 -2639 ($ $)) (-15 -3926 ((-112) $)) (-15 -3957 ((-2 (|:| -2671 (-644 (-862))) (|:| -4385 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -3770 (-644 (-862))) (|:| |args| (-644 (-862)))) $)) (-15 -3406 ($ $ (-644 (-644 (-862))))) (-15 -3406 ($ $ (-2 (|:| -2671 (-644 (-862))) (|:| -4385 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -3770 (-644 (-862))) (|:| |args| (-644 (-862)))))) (-15 -3519 ($ $ (-644 (-862)))) (-15 -4237 ($ $ (-644 (-862)))) (-15 -2909 ($ $ (-644 (-862)))) (-15 -4393 ($ $ (-644 (-862)))) (-15 -4336 ((-1157) $)) (-15 -3977 ((-644 $) $)) (-15 -3877 ($) -2460)))) (T -1175))
+((-4278 (*1 *1) (-5 *1 (-1175))) (-4278 (*1 *1 *1) (-5 *1 (-1175))) (-3383 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1175)))) (-2639 (*1 *1 *1) (-5 *1 (-1175))) (-3926 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1175)))) (-3957 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -2671 (-644 (-862))) (|:| -4385 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -3770 (-644 (-862))) (|:| |args| (-644 (-862))))) (-5 *1 (-1175)))) (-3406 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-644 (-862)))) (-5 *1 (-1175)))) (-3406 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -2671 (-644 (-862))) (|:| -4385 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -3770 (-644 (-862))) (|:| |args| (-644 (-862))))) (-5 *1 (-1175)))) (-3519 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))) (-4237 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))) (-2909 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))) (-4393 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))) (-4336 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1175)))) (-3977 (*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1175)))) (-3877 (*1 *1) (-5 *1 (-1175))))
+(-13 (-850) (-614 (-538)) (-828) (-614 (-1175)) (-616 (-1157)) (-614 (-892 (-566))) (-614 (-892 (-381))) (-886 (-566)) (-886 (-381)) (-10 -8 (-15 -4278 ($)) (-15 -4278 ($ $)) (-15 -3383 ((-1269))) (-15 -2639 ($ $)) (-15 -3926 ((-112) $)) (-15 -3957 ((-2 (|:| -2671 (-644 (-862))) (|:| -4385 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -3770 (-644 (-862))) (|:| |args| (-644 (-862)))) $)) (-15 -3406 ($ $ (-644 (-644 (-862))))) (-15 -3406 ($ $ (-2 (|:| -2671 (-644 (-862))) (|:| -4385 (-644 (-862))) (|:| |presup| (-644 (-862))) (|:| -3770 (-644 (-862))) (|:| |args| (-644 (-862)))))) (-15 -3519 ($ $ (-644 (-862)))) (-15 -4237 ($ $ (-644 (-862)))) (-15 -2909 ($ $ (-644 (-862)))) (-15 -4393 ($ $ (-644 (-862)))) (-15 -4336 ((-1157) $)) (-15 -3977 ((-644 $) $)) (-15 -3877 ($) -2460)))
+((-2472 (((-1264 |#1|) |#1| (-921)) 18) (((-1264 |#1|) (-644 |#1|)) 25)))
+(((-1176 |#1|) (-10 -7 (-15 -2472 ((-1264 |#1|) (-644 |#1|))) (-15 -2472 ((-1264 |#1|) |#1| (-921)))) (-1049)) (T -1176))
+((-2472 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-5 *2 (-1264 *3)) (-5 *1 (-1176 *3)) (-4 *3 (-1049)))) (-2472 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-1049)) (-5 *2 (-1264 *4)) (-5 *1 (-1176 *4)))))
+(-10 -7 (-15 -2472 ((-1264 |#1|) (-644 |#1|))) (-15 -2472 ((-1264 |#1|) |#1| (-921))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| |#1| (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#1| (-1038 (-409 (-566))))) (((-3 |#1| "failed") $) NIL)) (-1867 (((-566) $) NIL (|has| |#1| (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| |#1| (-1038 (-409 (-566))))) ((|#1| $) NIL)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2755 (($ $) NIL (|has| |#1| (-454)))) (-2871 (($ $ |#1| (-971) $) NIL)) (-3466 (((-112) $) 17)) (-4230 (((-771) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-971)) NIL)) (-2466 (((-971) $) NIL)) (-2443 (($ (-1 (-971) (-971)) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 ((|#1| $) NIL)) (-3959 (($ $ (-971) |#1| $) NIL (-12 (|has| (-971) (-131)) (|has| |#1| (-558))))) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-558)))) (-2108 (((-971) $) NIL)) (-3042 ((|#1| $) NIL (|has| |#1| (-454)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ $) NIL (|has| |#1| (-558))) (($ |#1|) NIL) (($ (-409 (-566))) NIL (-2805 (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-1038 (-409 (-566))))))) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ (-971)) NIL)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#1| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2493 (($) 11 T CONST)) (-4333 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 21)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 22) (($ $ |#1|) NIL) (($ |#1| $) 16) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-1177 |#1|) (-13 (-327 |#1| (-971)) (-10 -8 (IF (|has| |#1| (-558)) (IF (|has| (-971) (-131)) (-15 -3959 ($ $ (-971) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4412)) (-6 -4412) |%noBranch|))) (-1049)) (T -1177))
+((-3959 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-971)) (-4 *2 (-131)) (-5 *1 (-1177 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))))
+(-13 (-327 |#1| (-971)) (-10 -8 (IF (|has| |#1| (-558)) (IF (|has| (-971) (-131)) (-15 -3959 ($ $ (-971) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4412)) (-6 -4412) |%noBranch|)))
+((-3633 (((-1179) (-1175) $) 25)) (-2678 (($) 29)) (-1571 (((-3 (|:| |fst| (-436)) (|:| -1616 "void")) (-1175) $) 22)) (-4318 (((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -1616 "void")) $) 41) (((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) 42) (((-1269) (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) 43)) (-2921 (((-1269) (-1175)) 58)) (-3142 (((-1269) (-1175) $) 55) (((-1269) (-1175)) 56) (((-1269)) 57)) (-1531 (((-1269) (-1175)) 37)) (-1781 (((-1175)) 36)) (-1793 (($) 34)) (-4145 (((-439) (-1175) (-439) (-1175) $) 45) (((-439) (-644 (-1175)) (-439) (-1175) $) 49) (((-439) (-1175) (-439)) 46) (((-439) (-1175) (-439) (-1175)) 50)) (-3216 (((-1175)) 35)) (-3780 (((-862) $) 28)) (-1917 (((-1269)) 30) (((-1269) (-1175)) 33)) (-3923 (((-644 (-1175)) (-1175) $) 24)) (-3404 (((-1269) (-1175) (-644 (-1175)) $) 38) (((-1269) (-1175) (-644 (-1175))) 39) (((-1269) (-644 (-1175))) 40)))
+(((-1178) (-13 (-613 (-862)) (-10 -8 (-15 -2678 ($)) (-15 -1917 ((-1269))) (-15 -1917 ((-1269) (-1175))) (-15 -4145 ((-439) (-1175) (-439) (-1175) $)) (-15 -4145 ((-439) (-644 (-1175)) (-439) (-1175) $)) (-15 -4145 ((-439) (-1175) (-439))) (-15 -4145 ((-439) (-1175) (-439) (-1175))) (-15 -1531 ((-1269) (-1175))) (-15 -3216 ((-1175))) (-15 -1781 ((-1175))) (-15 -3404 ((-1269) (-1175) (-644 (-1175)) $)) (-15 -3404 ((-1269) (-1175) (-644 (-1175)))) (-15 -3404 ((-1269) (-644 (-1175)))) (-15 -4318 ((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -1616 "void")) $)) (-15 -4318 ((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -1616 "void")))) (-15 -4318 ((-1269) (-3 (|:| |fst| (-436)) (|:| -1616 "void")))) (-15 -3142 ((-1269) (-1175) $)) (-15 -3142 ((-1269) (-1175))) (-15 -3142 ((-1269))) (-15 -2921 ((-1269) (-1175))) (-15 -1793 ($)) (-15 -1571 ((-3 (|:| |fst| (-436)) (|:| -1616 "void")) (-1175) $)) (-15 -3923 ((-644 (-1175)) (-1175) $)) (-15 -3633 ((-1179) (-1175) $))))) (T -1178))
+((-2678 (*1 *1) (-5 *1 (-1178))) (-1917 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1178)))) (-1917 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-4145 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178)))) (-4145 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-439)) (-5 *3 (-644 (-1175))) (-5 *4 (-1175)) (-5 *1 (-1178)))) (-4145 (*1 *2 *3 *2) (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178)))) (-4145 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178)))) (-1531 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-3216 (*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1178)))) (-1781 (*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1178)))) (-3404 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-3404 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-3404 (*1 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-4318 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1175)) (-5 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-4318 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-5 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-4318 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-3142 (*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-3142 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-3142 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1178)))) (-2921 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))) (-1793 (*1 *1) (-5 *1 (-1178))) (-1571 (*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-5 *1 (-1178)))) (-3923 (*1 *2 *3 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1178)) (-5 *3 (-1175)))) (-3633 (*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-1179)) (-5 *1 (-1178)))))
+(-13 (-613 (-862)) (-10 -8 (-15 -2678 ($)) (-15 -1917 ((-1269))) (-15 -1917 ((-1269) (-1175))) (-15 -4145 ((-439) (-1175) (-439) (-1175) $)) (-15 -4145 ((-439) (-644 (-1175)) (-439) (-1175) $)) (-15 -4145 ((-439) (-1175) (-439))) (-15 -4145 ((-439) (-1175) (-439) (-1175))) (-15 -1531 ((-1269) (-1175))) (-15 -3216 ((-1175))) (-15 -1781 ((-1175))) (-15 -3404 ((-1269) (-1175) (-644 (-1175)) $)) (-15 -3404 ((-1269) (-1175) (-644 (-1175)))) (-15 -3404 ((-1269) (-644 (-1175)))) (-15 -4318 ((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -1616 "void")) $)) (-15 -4318 ((-1269) (-1175) (-3 (|:| |fst| (-436)) (|:| -1616 "void")))) (-15 -4318 ((-1269) (-3 (|:| |fst| (-436)) (|:| -1616 "void")))) (-15 -3142 ((-1269) (-1175) $)) (-15 -3142 ((-1269) (-1175))) (-15 -3142 ((-1269))) (-15 -2921 ((-1269) (-1175))) (-15 -1793 ($)) (-15 -1571 ((-3 (|:| |fst| (-436)) (|:| -1616 "void")) (-1175) $)) (-15 -3923 ((-644 (-1175)) (-1175) $)) (-15 -3633 ((-1179) (-1175) $))))
+((-1461 (((-644 (-644 (-3 (|:| -2639 (-1175)) (|:| -3787 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566))))))))) $) 66)) (-3109 (((-644 (-3 (|:| -2639 (-1175)) (|:| -3787 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566)))))))) (-436) $) 47)) (-2396 (($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-439))))) 17)) (-2921 (((-1269) $) 74)) (-1320 (((-644 (-1175)) $) 22)) (-3630 (((-1103) $) 60)) (-3420 (((-439) (-1175) $) 27)) (-1967 (((-644 (-1175)) $) 30)) (-1793 (($) 19)) (-4145 (((-439) (-644 (-1175)) (-439) $) 25) (((-439) (-1175) (-439) $) 24)) (-3780 (((-862) $) 9) (((-1187 (-1175) (-439)) $) 13)))
+(((-1179) (-13 (-613 (-862)) (-10 -8 (-15 -3780 ((-1187 (-1175) (-439)) $)) (-15 -1793 ($)) (-15 -4145 ((-439) (-644 (-1175)) (-439) $)) (-15 -4145 ((-439) (-1175) (-439) $)) (-15 -3420 ((-439) (-1175) $)) (-15 -1320 ((-644 (-1175)) $)) (-15 -3109 ((-644 (-3 (|:| -2639 (-1175)) (|:| -3787 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566)))))))) (-436) $)) (-15 -1967 ((-644 (-1175)) $)) (-15 -1461 ((-644 (-644 (-3 (|:| -2639 (-1175)) (|:| -3787 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566))))))))) $)) (-15 -3630 ((-1103) $)) (-15 -2921 ((-1269) $)) (-15 -2396 ($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-439))))))))) (T -1179))
+((-3780 (*1 *2 *1) (-12 (-5 *2 (-1187 (-1175) (-439))) (-5 *1 (-1179)))) (-1793 (*1 *1) (-5 *1 (-1179))) (-4145 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-439)) (-5 *3 (-644 (-1175))) (-5 *1 (-1179)))) (-4145 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1179)))) (-3420 (*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-439)) (-5 *1 (-1179)))) (-1320 (*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1179)))) (-3109 (*1 *2 *3 *1) (-12 (-5 *3 (-436)) (-5 *2 (-644 (-3 (|:| -2639 (-1175)) (|:| -3787 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566))))))))) (-5 *1 (-1179)))) (-1967 (*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1179)))) (-1461 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-3 (|:| -2639 (-1175)) (|:| -3787 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566)))))))))) (-5 *1 (-1179)))) (-3630 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-1179)))) (-2921 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1179)))) (-2396 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-439))))) (-5 *1 (-1179)))))
+(-13 (-613 (-862)) (-10 -8 (-15 -3780 ((-1187 (-1175) (-439)) $)) (-15 -1793 ($)) (-15 -4145 ((-439) (-644 (-1175)) (-439) $)) (-15 -4145 ((-439) (-1175) (-439) $)) (-15 -3420 ((-439) (-1175) $)) (-15 -1320 ((-644 (-1175)) $)) (-15 -3109 ((-644 (-3 (|:| -2639 (-1175)) (|:| -3787 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566)))))))) (-436) $)) (-15 -1967 ((-644 (-1175)) $)) (-15 -1461 ((-644 (-644 (-3 (|:| -2639 (-1175)) (|:| -3787 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566))))))))) $)) (-15 -3630 ((-1103) $)) (-15 -2921 ((-1269) $)) (-15 -2396 ($ (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-439))))))))
+((-3009 (((-112) $ $) NIL)) (-3066 (((-3 (-566) "failed") $) 29) (((-3 (-225) "failed") $) 35) (((-3 (-508) "failed") $) 43) (((-3 (-1157) "failed") $) 47)) (-1867 (((-566) $) 30) (((-225) $) 36) (((-508) $) 40) (((-1157) $) 48)) (-3249 (((-112) $) 53)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1829 (((-3 (-566) (-225) (-508) (-1157) $) $) 55)) (-1305 (((-644 $) $) 57)) (-3204 (((-1103) $) 24) (($ (-1103)) 25)) (-3896 (((-112) $) 56)) (-3780 (((-862) $) 23) (($ (-566)) 26) (($ (-225)) 32) (($ (-508)) 38) (($ (-1157)) 44) (((-538) $) 59) (((-566) $) 31) (((-225) $) 37) (((-508) $) 41) (((-1157) $) 49)) (-2482 (((-112) $ (|[\|\|]| (-566))) 10) (((-112) $ (|[\|\|]| (-225))) 13) (((-112) $ (|[\|\|]| (-508))) 19) (((-112) $ (|[\|\|]| (-1157))) 16)) (-3277 (($ (-508) (-644 $)) 51) (($ $ (-644 $)) 52)) (-3801 (((-112) $ $) NIL)) (-3975 (((-566) $) 27) (((-225) $) 33) (((-508) $) 39) (((-1157) $) 45)) (-2950 (((-112) $ $) 7)))
+(((-1180) (-13 (-1259) (-1099) (-1038 (-566)) (-1038 (-225)) (-1038 (-508)) (-1038 (-1157)) (-613 (-538)) (-10 -8 (-15 -3204 ((-1103) $)) (-15 -3204 ($ (-1103))) (-15 -3780 ((-566) $)) (-15 -3975 ((-566) $)) (-15 -3780 ((-225) $)) (-15 -3975 ((-225) $)) (-15 -3780 ((-508) $)) (-15 -3975 ((-508) $)) (-15 -3780 ((-1157) $)) (-15 -3975 ((-1157) $)) (-15 -3277 ($ (-508) (-644 $))) (-15 -3277 ($ $ (-644 $))) (-15 -3249 ((-112) $)) (-15 -1829 ((-3 (-566) (-225) (-508) (-1157) $) $)) (-15 -1305 ((-644 $) $)) (-15 -3896 ((-112) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-566)))) (-15 -2482 ((-112) $ (|[\|\|]| (-225)))) (-15 -2482 ((-112) $ (|[\|\|]| (-508)))) (-15 -2482 ((-112) $ (|[\|\|]| (-1157))))))) (T -1180))
+((-3204 (*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-1180)))) (-3204 (*1 *1 *2) (-12 (-5 *2 (-1103)) (-5 *1 (-1180)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1180)))) (-3975 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1180)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1180)))) (-3975 (*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1180)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1180)))) (-3975 (*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1180)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1180)))) (-3975 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1180)))) (-3277 (*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-644 (-1180))) (-5 *1 (-1180)))) (-3277 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1180)))) (-3249 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1180)))) (-1829 (*1 *2 *1) (-12 (-5 *2 (-3 (-566) (-225) (-508) (-1157) (-1180))) (-5 *1 (-1180)))) (-1305 (*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1180)))) (-3896 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1180)))) (-2482 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-566))) (-5 *2 (-112)) (-5 *1 (-1180)))) (-2482 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-225))) (-5 *2 (-112)) (-5 *1 (-1180)))) (-2482 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-508))) (-5 *2 (-112)) (-5 *1 (-1180)))) (-2482 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1157))) (-5 *2 (-112)) (-5 *1 (-1180)))))
+(-13 (-1259) (-1099) (-1038 (-566)) (-1038 (-225)) (-1038 (-508)) (-1038 (-1157)) (-613 (-538)) (-10 -8 (-15 -3204 ((-1103) $)) (-15 -3204 ($ (-1103))) (-15 -3780 ((-566) $)) (-15 -3975 ((-566) $)) (-15 -3780 ((-225) $)) (-15 -3975 ((-225) $)) (-15 -3780 ((-508) $)) (-15 -3975 ((-508) $)) (-15 -3780 ((-1157) $)) (-15 -3975 ((-1157) $)) (-15 -3277 ($ (-508) (-644 $))) (-15 -3277 ($ $ (-644 $))) (-15 -3249 ((-112) $)) (-15 -1829 ((-3 (-566) (-225) (-508) (-1157) $) $)) (-15 -1305 ((-644 $) $)) (-15 -3896 ((-112) $)) (-15 -2482 ((-112) $ (|[\|\|]| (-566)))) (-15 -2482 ((-112) $ (|[\|\|]| (-225)))) (-15 -2482 ((-112) $ (|[\|\|]| (-508)))) (-15 -2482 ((-112) $ (|[\|\|]| (-1157))))))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) 22)) (-3877 (($) 12 T CONST)) (-1618 (($) 27)) (-1945 (($ $ $) NIL) (($) 19 T CONST)) (-2709 (($ $ $) NIL) (($) 20 T CONST)) (-1299 (((-921) $) 24)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) 23)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
+(((-1181 |#1|) (-13 (-844) (-10 -8 (-15 -3877 ($) -2460))) (-921)) (T -1181))
+((-3877 (*1 *1) (-12 (-5 *1 (-1181 *2)) (-14 *2 (-921)))))
+(-13 (-844) (-10 -8 (-15 -3877 ($) -2460)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) @1)))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) 19 T CONST)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) 12 T CONST)) (-3059 (($ $ $) NIL) (($) 18 T CONST)) (-3712 (((-921) $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-2370 (($ $ $) 21)) (-2359 (($ $ $) 20)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
-(((-1182 |#1|) (-13 (-844) (-10 -8 (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655))) (-921)) (T -1182))
-((-2359 (*1 *1 *1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921)))) (-2370 (*1 *1 *1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921)))) (-2342 (*1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921)))))
-(-13 (-844) (-10 -8 (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) 19 T CONST)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) 12 T CONST)) (-2709 (($ $ $) NIL) (($) 18 T CONST)) (-1299 (((-921) $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-2384 (($ $ $) 21)) (-2372 (($ $ $) 20)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
+(((-1182 |#1|) (-13 (-844) (-10 -8 (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460))) (-921)) (T -1182))
+((-2372 (*1 *1 *1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921)))) (-2384 (*1 *1 *1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921)))) (-3877 (*1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921)))))
+(-13 (-844) (-10 -8 (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) @1)))
-((-1467 (((-644 (-644 (-952 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175))) 67)) (-2371 (((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|)))) 78) (((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|))) 74) (((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175)) 79) (((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175)) 73) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|))))) 106) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|)))) 105) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175))) 107) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|))) (-644 (-1175))) 104)))
-(((-1183 |#1|) (-10 -7 (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175)))) (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|))))) (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -2371 ((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175))) (-15 -2371 ((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -2371 ((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|)))) (-15 -2371 ((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|))))) (-15 -1467 ((-644 (-644 (-952 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175))))) (-558)) (T -1183))
-((-1467 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-952 *5)))) (-5 *1 (-1183 *5)))) (-2371 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *4))))) (-5 *1 (-1183 *4)) (-5 *3 (-295 (-409 (-952 *4)))))) (-2371 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *4))))) (-5 *1 (-1183 *4)) (-5 *3 (-409 (-952 *4))))) (-2371 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *5))))) (-5 *1 (-1183 *5)) (-5 *3 (-295 (-409 (-952 *5)))))) (-2371 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *5))))) (-5 *1 (-1183 *5)) (-5 *3 (-409 (-952 *5))))) (-2371 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-1183 *4)) (-5 *3 (-644 (-295 (-409 (-952 *4))))))) (-2371 (*1 *2 *3) (-12 (-5 *3 (-644 (-409 (-952 *4)))) (-4 *4 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-1183 *4)))) (-2371 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-1175))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-1183 *5)) (-5 *3 (-644 (-295 (-409 (-952 *5))))))) (-2371 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-1183 *5)))))
-(-10 -7 (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175)))) (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|))))) (-15 -2371 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -2371 ((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175))) (-15 -2371 ((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -2371 ((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|)))) (-15 -2371 ((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|))))) (-15 -1467 ((-644 (-644 (-952 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))))
-((-3922 (((-1157)) 7)) (-1489 (((-1157)) 11 T CONST)) (-4245 (((-1269) (-1157)) 13)) (-3737 (((-1157)) 8 T CONST)) (-1972 (((-130)) 10 T CONST)))
-(((-1184) (-13 (-1214) (-10 -7 (-15 -3922 ((-1157))) (-15 -3737 ((-1157)) -1655) (-15 -1972 ((-130)) -1655) (-15 -1489 ((-1157)) -1655) (-15 -4245 ((-1269) (-1157)))))) (T -1184))
-((-3922 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))) (-3737 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))) (-1972 (*1 *2) (-12 (-5 *2 (-130)) (-5 *1 (-1184)))) (-1489 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))) (-4245 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1184)))))
-(-13 (-1214) (-10 -7 (-15 -3922 ((-1157))) (-15 -3737 ((-1157)) -1655) (-15 -1972 ((-130)) -1655) (-15 -1489 ((-1157)) -1655) (-15 -4245 ((-1269) (-1157)))))
-((-3694 (((-644 (-644 |#1|)) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|)))) 56)) (-3115 (((-644 (-644 (-644 |#1|))) (-644 (-644 |#1|))) 38)) (-3956 (((-1186 (-644 |#1|)) (-644 |#1|)) 49)) (-4086 (((-644 (-644 |#1|)) (-644 |#1|)) 45)) (-1800 (((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 (-644 (-644 |#1|)))) 53)) (-2679 (((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 |#1|) (-644 (-644 (-644 |#1|))) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|)))) 52)) (-3399 (((-644 (-644 |#1|)) (-644 (-644 |#1|))) 43)) (-2565 (((-644 |#1|) (-644 |#1|)) 46)) (-3683 (((-644 (-644 (-644 |#1|))) (-644 |#1|) (-644 (-644 (-644 |#1|)))) 32)) (-4195 (((-644 (-644 (-644 |#1|))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 (-644 |#1|)))) 29)) (-2459 (((-2 (|:| |fs| (-112)) (|:| |sd| (-644 |#1|)) (|:| |td| (-644 (-644 |#1|)))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 |#1|))) 24)) (-4175 (((-644 (-644 |#1|)) (-644 (-644 (-644 |#1|)))) 58)) (-3103 (((-644 (-644 |#1|)) (-1186 (-644 |#1|))) 60)))
-(((-1185 |#1|) (-10 -7 (-15 -2459 ((-2 (|:| |fs| (-112)) (|:| |sd| (-644 |#1|)) (|:| |td| (-644 (-644 |#1|)))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 |#1|)))) (-15 -4195 ((-644 (-644 (-644 |#1|))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 (-644 |#1|))))) (-15 -3683 ((-644 (-644 (-644 |#1|))) (-644 |#1|) (-644 (-644 (-644 |#1|))))) (-15 -3694 ((-644 (-644 |#1|)) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))))) (-15 -4175 ((-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))))) (-15 -3103 ((-644 (-644 |#1|)) (-1186 (-644 |#1|)))) (-15 -3115 ((-644 (-644 (-644 |#1|))) (-644 (-644 |#1|)))) (-15 -3956 ((-1186 (-644 |#1|)) (-644 |#1|))) (-15 -3399 ((-644 (-644 |#1|)) (-644 (-644 |#1|)))) (-15 -4086 ((-644 (-644 |#1|)) (-644 |#1|))) (-15 -2565 ((-644 |#1|) (-644 |#1|))) (-15 -2679 ((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 |#1|) (-644 (-644 (-644 |#1|))) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|))))) (-15 -1800 ((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 (-644 (-644 |#1|)))))) (-850)) (T -1185))
-((-1800 (*1 *2 *3) (-12 (-4 *4 (-850)) (-5 *2 (-2 (|:| |f1| (-644 *4)) (|:| |f2| (-644 (-644 (-644 *4)))) (|:| |f3| (-644 (-644 *4))) (|:| |f4| (-644 (-644 (-644 *4)))))) (-5 *1 (-1185 *4)) (-5 *3 (-644 (-644 (-644 *4)))))) (-2679 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-850)) (-5 *3 (-644 *6)) (-5 *5 (-644 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-644 *5)) (|:| |f3| *5) (|:| |f4| (-644 *5)))) (-5 *1 (-1185 *6)) (-5 *4 (-644 *5)))) (-2565 (*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-1185 *3)))) (-4086 (*1 *2 *3) (-12 (-4 *4 (-850)) (-5 *2 (-644 (-644 *4))) (-5 *1 (-1185 *4)) (-5 *3 (-644 *4)))) (-3399 (*1 *2 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-850)) (-5 *1 (-1185 *3)))) (-3956 (*1 *2 *3) (-12 (-4 *4 (-850)) (-5 *2 (-1186 (-644 *4))) (-5 *1 (-1185 *4)) (-5 *3 (-644 *4)))) (-3115 (*1 *2 *3) (-12 (-4 *4 (-850)) (-5 *2 (-644 (-644 (-644 *4)))) (-5 *1 (-1185 *4)) (-5 *3 (-644 (-644 *4))))) (-3103 (*1 *2 *3) (-12 (-5 *3 (-1186 (-644 *4))) (-4 *4 (-850)) (-5 *2 (-644 (-644 *4))) (-5 *1 (-1185 *4)))) (-4175 (*1 *2 *3) (-12 (-5 *3 (-644 (-644 (-644 *4)))) (-5 *2 (-644 (-644 *4))) (-5 *1 (-1185 *4)) (-4 *4 (-850)))) (-3694 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-644 (-644 *4)))) (-5 *2 (-644 (-644 *4))) (-4 *4 (-850)) (-5 *1 (-1185 *4)))) (-3683 (*1 *2 *3 *2) (-12 (-5 *2 (-644 (-644 (-644 *4)))) (-5 *3 (-644 *4)) (-4 *4 (-850)) (-5 *1 (-1185 *4)))) (-4195 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-644 (-644 (-644 *5)))) (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-644 *5)) (-4 *5 (-850)) (-5 *1 (-1185 *5)))) (-2459 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-850)) (-5 *4 (-644 *6)) (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-644 *4)))) (-5 *1 (-1185 *6)) (-5 *5 (-644 *4)))))
-(-10 -7 (-15 -2459 ((-2 (|:| |fs| (-112)) (|:| |sd| (-644 |#1|)) (|:| |td| (-644 (-644 |#1|)))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 |#1|)))) (-15 -4195 ((-644 (-644 (-644 |#1|))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 (-644 |#1|))))) (-15 -3683 ((-644 (-644 (-644 |#1|))) (-644 |#1|) (-644 (-644 (-644 |#1|))))) (-15 -3694 ((-644 (-644 |#1|)) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))))) (-15 -4175 ((-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))))) (-15 -3103 ((-644 (-644 |#1|)) (-1186 (-644 |#1|)))) (-15 -3115 ((-644 (-644 (-644 |#1|))) (-644 (-644 |#1|)))) (-15 -3956 ((-1186 (-644 |#1|)) (-644 |#1|))) (-15 -3399 ((-644 (-644 |#1|)) (-644 (-644 |#1|)))) (-15 -4086 ((-644 (-644 |#1|)) (-644 |#1|))) (-15 -2565 ((-644 |#1|) (-644 |#1|))) (-15 -2679 ((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 |#1|) (-644 (-644 (-644 |#1|))) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|))))) (-15 -1800 ((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 (-644 (-644 |#1|))))))
-((-2045 (($ (-644 (-644 |#1|))) 10)) (-2503 (((-644 (-644 |#1|)) $) 11)) (-2512 (((-862) $) 38)))
-(((-1186 |#1|) (-10 -8 (-15 -2045 ($ (-644 (-644 |#1|)))) (-15 -2503 ((-644 (-644 |#1|)) $)) (-15 -2512 ((-862) $))) (-1099)) (T -1186))
-((-2512 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-1186 *3)) (-4 *3 (-1099)))) (-2503 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 *3))) (-5 *1 (-1186 *3)) (-4 *3 (-1099)))) (-2045 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-1186 *3)))))
-(-10 -8 (-15 -2045 ($ (-644 (-644 |#1|)))) (-15 -2503 ((-644 (-644 |#1|)) $)) (-15 -2512 ((-862) $)))
-((-2985 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4246 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-1537 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#2| $ |#1| |#2|) NIL)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-2414 (((-3 |#2| "failed") |#1| $) NIL)) (-2342 (($) NIL T CONST)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-3066 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-3 |#2| "failed") |#1| $) NIL)) (-2651 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) NIL)) (-3372 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) NIL)) (-2160 ((|#1| $) NIL (|has| |#1| (-850)))) (-2404 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-644 |#2|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-1544 ((|#1| $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4418))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3949 (((-644 |#1|) $) NIL)) (-3221 (((-112) |#1| $) NIL)) (-3119 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-4265 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-1922 (((-644 |#1|) $) NIL)) (-2040 (((-112) |#1| $) NIL)) (-4033 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4062 ((|#2| $) NIL (|has| |#1| (-850)))) (-2126 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL)) (-1720 (($ $ |#2|) NIL (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3879 (($) NIL) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) NIL (-12 (|has| $ (-6 -4417)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-2512 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3122 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) NIL)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) NIL (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1187 |#1| |#2|) (-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4417))) (-1099) (-1099)) (T -1187))
-NIL
-(-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4417)))
-((-3144 ((|#1| (-644 |#1|)) 49)) (-4087 ((|#1| |#1| (-566)) 24)) (-3040 (((-1171 |#1|) |#1| (-921)) 20)))
-(((-1188 |#1|) (-10 -7 (-15 -3144 (|#1| (-644 |#1|))) (-15 -3040 ((-1171 |#1|) |#1| (-921))) (-15 -4087 (|#1| |#1| (-566)))) (-365)) (T -1188))
-((-4087 (*1 *2 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-1188 *2)) (-4 *2 (-365)))) (-3040 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-5 *2 (-1171 *3)) (-5 *1 (-1188 *3)) (-4 *3 (-365)))) (-3144 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-5 *1 (-1188 *2)) (-4 *2 (-365)))))
-(-10 -7 (-15 -3144 (|#1| (-644 |#1|))) (-15 -3040 ((-1171 |#1|) |#1| (-921))) (-15 -4087 (|#1| |#1| (-566))))
-((-4246 (($) 10) (($ (-644 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)))) 14)) (-3066 (($ (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) $) 67) (($ (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-3372 (((-644 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) $) 39) (((-644 |#3|) $) 41)) (-1323 (($ (-1 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) $) 57) (($ (-1 |#3| |#3|) $) 33)) (-3077 (($ (-1 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-3119 (((-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) $) 60)) (-4265 (($ (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) $) 16)) (-1922 (((-644 |#2|) $) 19)) (-2040 (((-112) |#2| $) 65)) (-2126 (((-3 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) "failed") (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) $) 64)) (-2658 (((-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) $) 69)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 73)) (-2784 (((-644 |#3|) $) 43)) (-4386 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) $) NIL) (((-771) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) $) NIL) (((-771) |#3| $) NIL) (((-771) (-1 (-112) |#3|) $) 79)) (-2512 (((-862) $) 27)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 71)) (-2940 (((-112) $ $) 51)))
-(((-1189 |#1| |#2| |#3|) (-10 -8 (-15 -2940 ((-112) |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -3077 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4246 (|#1| (-644 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))))) (-15 -4246 (|#1|)) (-15 -3077 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1323 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -2822 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -4044 ((-771) (-1 (-112) |#3|) |#1|)) (-15 -3372 ((-644 |#3|) |#1|)) (-15 -4044 ((-771) |#3| |#1|)) (-15 -4386 (|#3| |#1| |#2| |#3|)) (-15 -4386 (|#3| |#1| |#2|)) (-15 -2784 ((-644 |#3|) |#1|)) (-15 -2040 ((-112) |#2| |#1|)) (-15 -1922 ((-644 |#2|) |#1|)) (-15 -3066 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3066 (|#1| (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -3066 (|#1| (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)) (-15 -2126 ((-3 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) "failed") (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -3119 ((-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)) (-15 -4265 (|#1| (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)) (-15 -2658 ((-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)) (-15 -4044 ((-771) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)) (-15 -3372 ((-644 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -4044 ((-771) (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -2822 ((-112) (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -3427 ((-112) (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -1323 (|#1| (-1 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -3077 (|#1| (-1 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|))) (-1190 |#2| |#3|) (-1099) (-1099)) (T -1189))
-NIL
-(-10 -8 (-15 -2940 ((-112) |#1| |#1|)) (-15 -2512 ((-862) |#1|)) (-15 -3077 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4246 (|#1| (-644 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))))) (-15 -4246 (|#1|)) (-15 -3077 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1323 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3427 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -2822 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -4044 ((-771) (-1 (-112) |#3|) |#1|)) (-15 -3372 ((-644 |#3|) |#1|)) (-15 -4044 ((-771) |#3| |#1|)) (-15 -4386 (|#3| |#1| |#2| |#3|)) (-15 -4386 (|#3| |#1| |#2|)) (-15 -2784 ((-644 |#3|) |#1|)) (-15 -2040 ((-112) |#2| |#1|)) (-15 -1922 ((-644 |#2|) |#1|)) (-15 -3066 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3066 (|#1| (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -3066 (|#1| (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)) (-15 -2126 ((-3 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) "failed") (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -3119 ((-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)) (-15 -4265 (|#1| (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)) (-15 -2658 ((-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)) (-15 -4044 ((-771) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) |#1|)) (-15 -3372 ((-644 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -4044 ((-771) (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -2822 ((-112) (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -3427 ((-112) (-1 (-112) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -1323 (|#1| (-1 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)) (-15 -3077 (|#1| (-1 (-2 (|:| -2010 |#2|) (|:| -2818 |#3|)) (-2 (|:| -2010 |#2|) (|:| -2818 |#3|))) |#1|)))
-((-2985 (((-112) $ $) 19 (-2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-4246 (($) 73) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 72)) (-1537 (((-1269) $ |#1| |#1|) 100 (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) 8)) (-3874 ((|#2| $ |#1| |#2|) 74)) (-3586 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 46 (|has| $ (-6 -4417)))) (-4186 (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 56 (|has| $ (-6 -4417)))) (-2414 (((-3 |#2| "failed") |#1| $) 62)) (-2342 (($) 7 T CONST)) (-4093 (($ $) 59 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417))))) (-3066 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 48 (|has| $ (-6 -4417))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 47 (|has| $ (-6 -4417))) (((-3 |#2| "failed") |#1| $) 63)) (-2651 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 55 (|has| $ (-6 -4417)))) (-4362 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 57 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 54 (|has| $ (-6 -4417))) (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 53 (|has| $ (-6 -4417)))) (-1332 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4418)))) (-3137 ((|#2| $ |#1|) 89)) (-3372 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 31 (|has| $ (-6 -4417))) (((-644 |#2|) $) 80 (|has| $ (-6 -4417)))) (-2744 (((-112) $ (-771)) 9)) (-2160 ((|#1| $) 97 (|has| |#1| (-850)))) (-2404 (((-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 30 (|has| $ (-6 -4417))) (((-644 |#2|) $) 81 (|has| $ (-6 -4417)))) (-1927 (((-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4417))))) (-1544 ((|#1| $) 96 (|has| |#1| (-850)))) (-1323 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 35 (|has| $ (-6 -4418))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4418)))) (-3077 (($ (-1 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71)) (-3882 (((-112) $ (-771)) 10)) (-2878 (((-1157) $) 22 (-2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-3949 (((-644 |#1|) $) 64)) (-3221 (((-112) |#1| $) 65)) (-3119 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 40)) (-4265 (($ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 41)) (-1922 (((-644 |#1|) $) 94)) (-2040 (((-112) |#1| $) 93)) (-4033 (((-1119) $) 21 (-2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-4062 ((|#2| $) 98 (|has| |#1| (-850)))) (-2126 (((-3 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) "failed") (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 52)) (-1720 (($ $ |#2|) 99 (|has| $ (-6 -4418)))) (-2658 (((-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 42)) (-2822 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 33 (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))))) 27 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 26 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) 25 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 24 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) 87 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) 86 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) 85 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) 84 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4417)) (|has| |#2| (-1099))))) (-2784 (((-644 |#2|) $) 92)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90)) (-3879 (($) 50) (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 49)) (-4044 (((-771) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 32 (|has| $ (-6 -4417))) (((-771) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| $ (-6 -4417)))) (((-771) |#2| $) 82 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4417)))) (-3895 (($ $) 13)) (-3134 (((-538) $) 60 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))))) (-2523 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 51)) (-2512 (((-862) $) 18 (-2805 (|has| |#2| (-613 (-862))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862)))))) (-3122 (((-112) $ $) 23 (-2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-3309 (($ (-644 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) 43)) (-3427 (((-112) (-1 (-112) (-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) $) 34 (|has| $ (-6 -4417))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (-2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3011 (((-644 (-644 (-952 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175))) 67)) (-4159 (((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|)))) 78) (((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|))) 74) (((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175)) 79) (((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175)) 73) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|))))) 106) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|)))) 105) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175))) 107) (((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|))) (-644 (-1175))) 104)))
+(((-1183 |#1|) (-10 -7 (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175)))) (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|))))) (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -4159 ((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175))) (-15 -4159 ((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -4159 ((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|)))) (-15 -4159 ((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|))))) (-15 -3011 ((-644 (-644 (-952 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175))))) (-558)) (T -1183))
+((-3011 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-952 *5)))) (-5 *1 (-1183 *5)))) (-4159 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *4))))) (-5 *1 (-1183 *4)) (-5 *3 (-295 (-409 (-952 *4)))))) (-4159 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *4))))) (-5 *1 (-1183 *4)) (-5 *3 (-409 (-952 *4))))) (-4159 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *5))))) (-5 *1 (-1183 *5)) (-5 *3 (-295 (-409 (-952 *5)))))) (-4159 (*1 *2 *3 *4) (-12 (-5 *4 (-1175)) (-4 *5 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *5))))) (-5 *1 (-1183 *5)) (-5 *3 (-409 (-952 *5))))) (-4159 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-1183 *4)) (-5 *3 (-644 (-295 (-409 (-952 *4))))))) (-4159 (*1 *2 *3) (-12 (-5 *3 (-644 (-409 (-952 *4)))) (-4 *4 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-1183 *4)))) (-4159 (*1 *2 *3 *4) (-12 (-5 *4 (-644 (-1175))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-1183 *5)) (-5 *3 (-644 (-295 (-409 (-952 *5))))))) (-4159 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175))) (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-1183 *5)))))
+(-10 -7 (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))) (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|)))) (-644 (-1175)))) (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-409 (-952 |#1|))))) (-15 -4159 ((-644 (-644 (-295 (-409 (-952 |#1|))))) (-644 (-295 (-409 (-952 |#1|)))))) (-15 -4159 ((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|)) (-1175))) (-15 -4159 ((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|))) (-1175))) (-15 -4159 ((-644 (-295 (-409 (-952 |#1|)))) (-409 (-952 |#1|)))) (-15 -4159 ((-644 (-295 (-409 (-952 |#1|)))) (-295 (-409 (-952 |#1|))))) (-15 -3011 ((-644 (-644 (-952 |#1|))) (-644 (-409 (-952 |#1|))) (-644 (-1175)))))
+((-2704 (((-1157)) 7)) (-3232 (((-1157)) 11 T CONST)) (-4238 (((-1269) (-1157)) 13)) (-1590 (((-1157)) 8 T CONST)) (-1365 (((-130)) 10 T CONST)))
+(((-1184) (-13 (-1214) (-10 -7 (-15 -2704 ((-1157))) (-15 -1590 ((-1157)) -2460) (-15 -1365 ((-130)) -2460) (-15 -3232 ((-1157)) -2460) (-15 -4238 ((-1269) (-1157)))))) (T -1184))
+((-2704 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))) (-1590 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))) (-1365 (*1 *2) (-12 (-5 *2 (-130)) (-5 *1 (-1184)))) (-3232 (*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))) (-4238 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1184)))))
+(-13 (-1214) (-10 -7 (-15 -2704 ((-1157))) (-15 -1590 ((-1157)) -2460) (-15 -1365 ((-130)) -2460) (-15 -3232 ((-1157)) -2460) (-15 -4238 ((-1269) (-1157)))))
+((-2387 (((-644 (-644 |#1|)) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|)))) 56)) (-3730 (((-644 (-644 (-644 |#1|))) (-644 (-644 |#1|))) 38)) (-2991 (((-1186 (-644 |#1|)) (-644 |#1|)) 49)) (-1744 (((-644 (-644 |#1|)) (-644 |#1|)) 45)) (-1851 (((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 (-644 (-644 |#1|)))) 53)) (-4066 (((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 |#1|) (-644 (-644 (-644 |#1|))) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|)))) 52)) (-4377 (((-644 (-644 |#1|)) (-644 (-644 |#1|))) 43)) (-2344 (((-644 |#1|) (-644 |#1|)) 46)) (-2266 (((-644 (-644 (-644 |#1|))) (-644 |#1|) (-644 (-644 (-644 |#1|)))) 32)) (-3473 (((-644 (-644 (-644 |#1|))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 (-644 |#1|)))) 29)) (-2557 (((-2 (|:| |fs| (-112)) (|:| |sd| (-644 |#1|)) (|:| |td| (-644 (-644 |#1|)))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 |#1|))) 24)) (-3278 (((-644 (-644 |#1|)) (-644 (-644 (-644 |#1|)))) 58)) (-1760 (((-644 (-644 |#1|)) (-1186 (-644 |#1|))) 60)))
+(((-1185 |#1|) (-10 -7 (-15 -2557 ((-2 (|:| |fs| (-112)) (|:| |sd| (-644 |#1|)) (|:| |td| (-644 (-644 |#1|)))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 |#1|)))) (-15 -3473 ((-644 (-644 (-644 |#1|))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 (-644 |#1|))))) (-15 -2266 ((-644 (-644 (-644 |#1|))) (-644 |#1|) (-644 (-644 (-644 |#1|))))) (-15 -2387 ((-644 (-644 |#1|)) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))))) (-15 -3278 ((-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))))) (-15 -1760 ((-644 (-644 |#1|)) (-1186 (-644 |#1|)))) (-15 -3730 ((-644 (-644 (-644 |#1|))) (-644 (-644 |#1|)))) (-15 -2991 ((-1186 (-644 |#1|)) (-644 |#1|))) (-15 -4377 ((-644 (-644 |#1|)) (-644 (-644 |#1|)))) (-15 -1744 ((-644 (-644 |#1|)) (-644 |#1|))) (-15 -2344 ((-644 |#1|) (-644 |#1|))) (-15 -4066 ((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 |#1|) (-644 (-644 (-644 |#1|))) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|))))) (-15 -1851 ((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 (-644 (-644 |#1|)))))) (-850)) (T -1185))
+((-1851 (*1 *2 *3) (-12 (-4 *4 (-850)) (-5 *2 (-2 (|:| |f1| (-644 *4)) (|:| |f2| (-644 (-644 (-644 *4)))) (|:| |f3| (-644 (-644 *4))) (|:| |f4| (-644 (-644 (-644 *4)))))) (-5 *1 (-1185 *4)) (-5 *3 (-644 (-644 (-644 *4)))))) (-4066 (*1 *2 *3 *4 *5 *4 *4 *4) (-12 (-4 *6 (-850)) (-5 *3 (-644 *6)) (-5 *5 (-644 *3)) (-5 *2 (-2 (|:| |f1| *3) (|:| |f2| (-644 *5)) (|:| |f3| *5) (|:| |f4| (-644 *5)))) (-5 *1 (-1185 *6)) (-5 *4 (-644 *5)))) (-2344 (*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-1185 *3)))) (-1744 (*1 *2 *3) (-12 (-4 *4 (-850)) (-5 *2 (-644 (-644 *4))) (-5 *1 (-1185 *4)) (-5 *3 (-644 *4)))) (-4377 (*1 *2 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-850)) (-5 *1 (-1185 *3)))) (-2991 (*1 *2 *3) (-12 (-4 *4 (-850)) (-5 *2 (-1186 (-644 *4))) (-5 *1 (-1185 *4)) (-5 *3 (-644 *4)))) (-3730 (*1 *2 *3) (-12 (-4 *4 (-850)) (-5 *2 (-644 (-644 (-644 *4)))) (-5 *1 (-1185 *4)) (-5 *3 (-644 (-644 *4))))) (-1760 (*1 *2 *3) (-12 (-5 *3 (-1186 (-644 *4))) (-4 *4 (-850)) (-5 *2 (-644 (-644 *4))) (-5 *1 (-1185 *4)))) (-3278 (*1 *2 *3) (-12 (-5 *3 (-644 (-644 (-644 *4)))) (-5 *2 (-644 (-644 *4))) (-5 *1 (-1185 *4)) (-4 *4 (-850)))) (-2387 (*1 *2 *2 *3) (-12 (-5 *3 (-644 (-644 (-644 *4)))) (-5 *2 (-644 (-644 *4))) (-4 *4 (-850)) (-5 *1 (-1185 *4)))) (-2266 (*1 *2 *3 *2) (-12 (-5 *2 (-644 (-644 (-644 *4)))) (-5 *3 (-644 *4)) (-4 *4 (-850)) (-5 *1 (-1185 *4)))) (-3473 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-644 (-644 (-644 *5)))) (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-644 *5)) (-4 *5 (-850)) (-5 *1 (-1185 *5)))) (-2557 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-850)) (-5 *4 (-644 *6)) (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-644 *4)))) (-5 *1 (-1185 *6)) (-5 *5 (-644 *4)))))
+(-10 -7 (-15 -2557 ((-2 (|:| |fs| (-112)) (|:| |sd| (-644 |#1|)) (|:| |td| (-644 (-644 |#1|)))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 |#1|)))) (-15 -3473 ((-644 (-644 (-644 |#1|))) (-1 (-112) |#1| |#1|) (-644 |#1|) (-644 (-644 (-644 |#1|))))) (-15 -2266 ((-644 (-644 (-644 |#1|))) (-644 |#1|) (-644 (-644 (-644 |#1|))))) (-15 -2387 ((-644 (-644 |#1|)) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))))) (-15 -3278 ((-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))))) (-15 -1760 ((-644 (-644 |#1|)) (-1186 (-644 |#1|)))) (-15 -3730 ((-644 (-644 (-644 |#1|))) (-644 (-644 |#1|)))) (-15 -2991 ((-1186 (-644 |#1|)) (-644 |#1|))) (-15 -4377 ((-644 (-644 |#1|)) (-644 (-644 |#1|)))) (-15 -1744 ((-644 (-644 |#1|)) (-644 |#1|))) (-15 -2344 ((-644 |#1|) (-644 |#1|))) (-15 -4066 ((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 |#1|) (-644 (-644 (-644 |#1|))) (-644 (-644 |#1|)) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|))) (-644 (-644 (-644 |#1|))))) (-15 -1851 ((-2 (|:| |f1| (-644 |#1|)) (|:| |f2| (-644 (-644 (-644 |#1|)))) (|:| |f3| (-644 (-644 |#1|))) (|:| |f4| (-644 (-644 (-644 |#1|))))) (-644 (-644 (-644 |#1|))))))
+((-3982 (($ (-644 (-644 |#1|))) 10)) (-2947 (((-644 (-644 |#1|)) $) 11)) (-3780 (((-862) $) 38)))
+(((-1186 |#1|) (-10 -8 (-15 -3982 ($ (-644 (-644 |#1|)))) (-15 -2947 ((-644 (-644 |#1|)) $)) (-15 -3780 ((-862) $))) (-1099)) (T -1186))
+((-3780 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-1186 *3)) (-4 *3 (-1099)))) (-2947 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 *3))) (-5 *1 (-1186 *3)) (-4 *3 (-1099)))) (-3982 (*1 *1 *2) (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-1186 *3)))))
+(-10 -8 (-15 -3982 ($ (-644 (-644 |#1|)))) (-15 -2947 ((-644 (-644 |#1|)) $)) (-15 -3780 ((-862) $)))
+((-3009 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4266 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-2518 (((-1269) $ |#1| |#1|) NIL (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#2| $ |#1| |#2|) NIL)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-2450 (((-3 |#2| "failed") |#1| $) NIL)) (-3877 (($) NIL T CONST)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-1450 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-3 |#2| "failed") |#1| $) NIL)) (-2661 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) NIL)) (-3799 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) NIL)) (-2712 ((|#1| $) NIL (|has| |#1| (-850)))) (-3276 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-644 |#2|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2579 ((|#1| $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4415))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4314 (((-644 |#1|) $) NIL)) (-3422 (((-112) |#1| $) NIL)) (-3765 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2903 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-2140 (((-644 |#1|) $) NIL)) (-3935 (((-112) |#1| $) NIL)) (-4056 (((-1119) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-4101 ((|#2| $) NIL (|has| |#1| (-850)))) (-3591 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL)) (-3750 (($ $ |#2|) NIL (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-3551 (($) NIL) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) NIL (-12 (|has| $ (-6 -4414)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (((-771) |#2| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099)))) (((-771) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-3780 (((-862) $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862))) (|has| |#2| (-613 (-862)))))) (-3801 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) NIL)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) NIL (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) NIL (-2805 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| |#2| (-1099))))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1187 |#1| |#2|) (-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4414))) (-1099) (-1099)) (T -1187))
+NIL
+(-13 (-1190 |#1| |#2|) (-10 -7 (-6 -4414)))
+((-3971 ((|#1| (-644 |#1|)) 49)) (-1756 ((|#1| |#1| (-566)) 24)) (-4339 (((-1171 |#1|) |#1| (-921)) 20)))
+(((-1188 |#1|) (-10 -7 (-15 -3971 (|#1| (-644 |#1|))) (-15 -4339 ((-1171 |#1|) |#1| (-921))) (-15 -1756 (|#1| |#1| (-566)))) (-365)) (T -1188))
+((-1756 (*1 *2 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-1188 *2)) (-4 *2 (-365)))) (-4339 (*1 *2 *3 *4) (-12 (-5 *4 (-921)) (-5 *2 (-1171 *3)) (-5 *1 (-1188 *3)) (-4 *3 (-365)))) (-3971 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-5 *1 (-1188 *2)) (-4 *2 (-365)))))
+(-10 -7 (-15 -3971 (|#1| (-644 |#1|))) (-15 -4339 ((-1171 |#1|) |#1| (-921))) (-15 -1756 (|#1| |#1| (-566))))
+((-4266 (($) 10) (($ (-644 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)))) 14)) (-1450 (($ (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) $) 67) (($ (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-3799 (((-644 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) $) 39) (((-644 |#3|) $) 41)) (-3117 (($ (-1 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) $) 57) (($ (-1 |#3| |#3|) $) 33)) (-3152 (($ (-1 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-3765 (((-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) $) 60)) (-2903 (($ (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) $) 16)) (-2140 (((-644 |#2|) $) 19)) (-3935 (((-112) |#2| $) 65)) (-3591 (((-3 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) "failed") (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) $) 64)) (-3852 (((-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) $) 69)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 73)) (-2684 (((-644 |#3|) $) 43)) (-4393 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) $) NIL) (((-771) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) $) NIL) (((-771) |#3| $) NIL) (((-771) (-1 (-112) |#3|) $) 79)) (-3780 (((-862) $) 27)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 71)) (-2950 (((-112) $ $) 51)))
+(((-1189 |#1| |#2| |#3|) (-10 -8 (-15 -2950 ((-112) |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -3152 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4266 (|#1| (-644 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))))) (-15 -4266 (|#1|)) (-15 -3152 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3117 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3044 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -4067 ((-771) (-1 (-112) |#3|) |#1|)) (-15 -3799 ((-644 |#3|) |#1|)) (-15 -4067 ((-771) |#3| |#1|)) (-15 -4393 (|#3| |#1| |#2| |#3|)) (-15 -4393 (|#3| |#1| |#2|)) (-15 -2684 ((-644 |#3|) |#1|)) (-15 -3935 ((-112) |#2| |#1|)) (-15 -2140 ((-644 |#2|) |#1|)) (-15 -1450 ((-3 |#3| "failed") |#2| |#1|)) (-15 -1450 (|#1| (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -1450 (|#1| (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)) (-15 -3591 ((-3 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) "failed") (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -3765 ((-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)) (-15 -2903 (|#1| (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)) (-15 -3852 ((-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)) (-15 -4067 ((-771) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)) (-15 -3799 ((-644 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -4067 ((-771) (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -3044 ((-112) (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -1583 ((-112) (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -3117 (|#1| (-1 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -3152 (|#1| (-1 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|))) (-1190 |#2| |#3|) (-1099) (-1099)) (T -1189))
+NIL
+(-10 -8 (-15 -2950 ((-112) |#1| |#1|)) (-15 -3780 ((-862) |#1|)) (-15 -3152 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4266 (|#1| (-644 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))))) (-15 -4266 (|#1|)) (-15 -3152 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -3117 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1583 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3044 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -4067 ((-771) (-1 (-112) |#3|) |#1|)) (-15 -3799 ((-644 |#3|) |#1|)) (-15 -4067 ((-771) |#3| |#1|)) (-15 -4393 (|#3| |#1| |#2| |#3|)) (-15 -4393 (|#3| |#1| |#2|)) (-15 -2684 ((-644 |#3|) |#1|)) (-15 -3935 ((-112) |#2| |#1|)) (-15 -2140 ((-644 |#2|) |#1|)) (-15 -1450 ((-3 |#3| "failed") |#2| |#1|)) (-15 -1450 (|#1| (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -1450 (|#1| (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)) (-15 -3591 ((-3 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) "failed") (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -3765 ((-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)) (-15 -2903 (|#1| (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)) (-15 -3852 ((-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)) (-15 -4067 ((-771) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) |#1|)) (-15 -3799 ((-644 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -4067 ((-771) (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -3044 ((-112) (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -1583 ((-112) (-1 (-112) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -3117 (|#1| (-1 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)) (-15 -3152 (|#1| (-1 (-2 (|:| -2050 |#2|) (|:| -2849 |#3|)) (-2 (|:| -2050 |#2|) (|:| -2849 |#3|))) |#1|)))
+((-3009 (((-112) $ $) 19 (-2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-4266 (($) 73) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 72)) (-2518 (((-1269) $ |#1| |#1|) 100 (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) 8)) (-3916 ((|#2| $ |#1| |#2|) 74)) (-2556 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 46 (|has| $ (-6 -4414)))) (-1386 (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 56 (|has| $ (-6 -4414)))) (-2450 (((-3 |#2| "failed") |#1| $) 62)) (-3877 (($) 7 T CONST)) (-4133 (($ $) 59 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414))))) (-1450 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 48 (|has| $ (-6 -4414))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 47 (|has| $ (-6 -4414))) (((-3 |#2| "failed") |#1| $) 63)) (-2661 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 55 (|has| $ (-6 -4414)))) (-1580 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 57 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 54 (|has| $ (-6 -4414))) (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 53 (|has| $ (-6 -4414)))) (-3128 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4415)))) (-3059 ((|#2| $ |#1|) 89)) (-3799 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 31 (|has| $ (-6 -4414))) (((-644 |#2|) $) 80 (|has| $ (-6 -4414)))) (-3501 (((-112) $ (-771)) 9)) (-2712 ((|#1| $) 97 (|has| |#1| (-850)))) (-3276 (((-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 30 (|has| $ (-6 -4414))) (((-644 |#2|) $) 81 (|has| $ (-6 -4414)))) (-2183 (((-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4414))))) (-2579 ((|#1| $) 96 (|has| |#1| (-850)))) (-3117 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 35 (|has| $ (-6 -4415))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4415)))) (-3152 (($ (-1 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71)) (-3582 (((-112) $ (-771)) 10)) (-2402 (((-1157) $) 22 (-2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-4314 (((-644 |#1|) $) 64)) (-3422 (((-112) |#1| $) 65)) (-3765 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 40)) (-2903 (($ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 41)) (-2140 (((-644 |#1|) $) 94)) (-3935 (((-112) |#1| $) 93)) (-4056 (((-1119) $) 21 (-2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-4101 ((|#2| $) 98 (|has| |#1| (-850)))) (-3591 (((-3 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) "failed") (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 52)) (-3750 (($ $ |#2|) 99 (|has| $ (-6 -4415)))) (-3852 (((-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 42)) (-3044 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 33 (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))))) 27 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-295 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 26 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) 25 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 24 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)))) (($ $ (-644 |#2|) (-644 |#2|)) 87 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ |#2| |#2|) 86 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-295 |#2|)) 85 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099)))) (($ $ (-644 (-295 |#2|))) 84 (-12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4414)) (|has| |#2| (-1099))))) (-2684 (((-644 |#2|) $) 92)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90)) (-3551 (($) 50) (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 49)) (-4067 (((-771) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 32 (|has| $ (-6 -4414))) (((-771) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| $ (-6 -4414)))) (((-771) |#2| $) 82 (-12 (|has| |#2| (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4414)))) (-3940 (($ $) 13)) (-3204 (((-538) $) 60 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))))) (-3791 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 51)) (-3780 (((-862) $) 18 (-2805 (|has| |#2| (-613 (-862))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862)))))) (-3801 (((-112) $ $) 23 (-2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-2926 (($ (-644 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) 43)) (-1583 (((-112) (-1 (-112) (-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) $) 34 (|has| $ (-6 -4414))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (-2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-1190 |#1| |#2|) (-140) (-1099) (-1099)) (T -1190))
-((-3874 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1190 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))) (-4246 (*1 *1) (-12 (-4 *1 (-1190 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-4246 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2010 *3) (|:| -2818 *4)))) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *1 (-1190 *3 *4)))) (-3077 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1190 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))))
-(-13 (-610 |t#1| |t#2|) (-604 |t#1| |t#2|) (-10 -8 (-15 -3874 (|t#2| $ |t#1| |t#2|)) (-15 -4246 ($)) (-15 -4246 ($ (-644 (-2 (|:| -2010 |t#1|) (|:| -2818 |t#2|))))) (-15 -3077 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2010 |#1|) (|:| -2818 |#2|))) . T) ((-102) -2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))) ((-613 (-862)) -2805 (|has| |#2| (-1099)) (|has| |#2| (-613 (-862))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-613 (-862)))) ((-151 #0#) . T) ((-614 (-538)) |has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-614 (-538))) ((-229 #0#) . T) ((-235 #0#) . T) ((-287 |#1| |#2|) . T) ((-289 |#1| |#2|) . T) ((-310 #0#) -12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))) ((-310 |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-491 #0#) . T) ((-491 |#2|) . T) ((-604 |#1| |#2|) . T) ((-516 #0# #0#) -12 (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-310 (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)))) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))) ((-516 |#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-610 |#1| |#2|) . T) ((-1099) -2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2010 |#1|) (|:| -2818 |#2|)) (-1099))) ((-1214) . T))
-((-3649 (((-112)) 29)) (-2039 (((-1269) (-1157)) 31)) (-2329 (((-112)) 41)) (-1305 (((-1269)) 39)) (-2387 (((-1269) (-1157) (-1157)) 30)) (-4059 (((-112)) 42)) (-4265 (((-1269) |#1| |#2|) 53)) (-3178 (((-1269)) 27)) (-2772 (((-3 |#2| "failed") |#1|) 51)) (-3254 (((-1269)) 40)))
-(((-1191 |#1| |#2|) (-10 -7 (-15 -3178 ((-1269))) (-15 -2387 ((-1269) (-1157) (-1157))) (-15 -2039 ((-1269) (-1157))) (-15 -1305 ((-1269))) (-15 -3254 ((-1269))) (-15 -3649 ((-112))) (-15 -2329 ((-112))) (-15 -4059 ((-112))) (-15 -2772 ((-3 |#2| "failed") |#1|)) (-15 -4265 ((-1269) |#1| |#2|))) (-1099) (-1099)) (T -1191))
-((-4265 (*1 *2 *3 *4) (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-2772 (*1 *2 *3) (|partial| -12 (-4 *2 (-1099)) (-5 *1 (-1191 *3 *2)) (-4 *3 (-1099)))) (-4059 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-2329 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-3649 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-3254 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-1305 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-2039 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1191 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099)))) (-2387 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1191 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099)))) (-3178 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))))
-(-10 -7 (-15 -3178 ((-1269))) (-15 -2387 ((-1269) (-1157) (-1157))) (-15 -2039 ((-1269) (-1157))) (-15 -1305 ((-1269))) (-15 -3254 ((-1269))) (-15 -3649 ((-112))) (-15 -2329 ((-112))) (-15 -4059 ((-112))) (-15 -2772 ((-3 |#2| "failed") |#1|)) (-15 -4265 ((-1269) |#1| |#2|)))
-((-4098 (((-1157) (-1157)) 22)) (-1465 (((-52) (-1157)) 25)))
-(((-1192) (-10 -7 (-15 -1465 ((-52) (-1157))) (-15 -4098 ((-1157) (-1157))))) (T -1192))
-((-4098 (*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1192)))) (-1465 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-1192)))))
-(-10 -7 (-15 -1465 ((-52) (-1157))) (-15 -4098 ((-1157) (-1157))))
-((-2512 (((-1194) |#1|) 11)))
-(((-1193 |#1|) (-10 -7 (-15 -2512 ((-1194) |#1|))) (-1099)) (T -1193))
-((-2512 (*1 *2 *3) (-12 (-5 *2 (-1194)) (-5 *1 (-1193 *3)) (-4 *3 (-1099)))))
-(-10 -7 (-15 -2512 ((-1194) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3195 (((-644 (-1157)) $) 39)) (-2453 (((-644 (-1157)) $ (-644 (-1157))) 42)) (-3659 (((-644 (-1157)) $ (-644 (-1157))) 41)) (-3312 (((-644 (-1157)) $ (-644 (-1157))) 43)) (-3385 (((-644 (-1157)) $) 38)) (-4257 (($) 26)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3145 (((-644 (-1157)) $) 40)) (-1697 (((-1269) $ (-566)) 35) (((-1269) $) 36)) (-3134 (($ (-862) (-566)) 32) (($ (-862) (-566) (-862)) NIL)) (-2512 (((-862) $) 53) (($ (-862)) 31)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1194) (-13 (-1099) (-616 (-862)) (-10 -8 (-15 -3134 ($ (-862) (-566))) (-15 -3134 ($ (-862) (-566) (-862))) (-15 -1697 ((-1269) $ (-566))) (-15 -1697 ((-1269) $)) (-15 -3145 ((-644 (-1157)) $)) (-15 -3195 ((-644 (-1157)) $)) (-15 -4257 ($)) (-15 -3385 ((-644 (-1157)) $)) (-15 -3312 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -2453 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -3659 ((-644 (-1157)) $ (-644 (-1157))))))) (T -1194))
-((-3134 (*1 *1 *2 *3) (-12 (-5 *2 (-862)) (-5 *3 (-566)) (-5 *1 (-1194)))) (-3134 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-862)) (-5 *3 (-566)) (-5 *1 (-1194)))) (-1697 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1194)))) (-1697 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1194)))) (-3145 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))) (-3195 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))) (-4257 (*1 *1) (-5 *1 (-1194))) (-3385 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))) (-3312 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))) (-2453 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))) (-3659 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
-(-13 (-1099) (-616 (-862)) (-10 -8 (-15 -3134 ($ (-862) (-566))) (-15 -3134 ($ (-862) (-566) (-862))) (-15 -1697 ((-1269) $ (-566))) (-15 -1697 ((-1269) $)) (-15 -3145 ((-644 (-1157)) $)) (-15 -3195 ((-644 (-1157)) $)) (-15 -4257 ($)) (-15 -3385 ((-644 (-1157)) $)) (-15 -3312 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -2453 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -3659 ((-644 (-1157)) $ (-644 (-1157))))))
-((-2985 (((-112) $ $) NIL)) (-2618 (((-1157) $ (-1157)) 17) (((-1157) $) 16)) (-3897 (((-1157) $ (-1157)) 15)) (-3416 (($ $ (-1157)) NIL)) (-3699 (((-3 (-1157) "failed") $) 11)) (-3477 (((-1157) $) 8)) (-4281 (((-3 (-1157) "failed") $) 12)) (-2534 (((-1157) $) 9)) (-3509 (($ (-390)) NIL) (($ (-390) (-1157)) NIL)) (-2628 (((-390) $) NIL)) (-2878 (((-1157) $) NIL)) (-1563 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3084 (((-112) $) 21)) (-2512 (((-862) $) NIL)) (-1459 (($ $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1195) (-13 (-366 (-390) (-1157)) (-10 -8 (-15 -2618 ((-1157) $ (-1157))) (-15 -2618 ((-1157) $)) (-15 -3477 ((-1157) $)) (-15 -3699 ((-3 (-1157) "failed") $)) (-15 -4281 ((-3 (-1157) "failed") $)) (-15 -3084 ((-112) $))))) (T -1195))
-((-2618 (*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1195)))) (-2618 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1195)))) (-3477 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1195)))) (-3699 (*1 *2 *1) (|partial| -12 (-5 *2 (-1157)) (-5 *1 (-1195)))) (-4281 (*1 *2 *1) (|partial| -12 (-5 *2 (-1157)) (-5 *1 (-1195)))) (-3084 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1195)))))
-(-13 (-366 (-390) (-1157)) (-10 -8 (-15 -2618 ((-1157) $ (-1157))) (-15 -2618 ((-1157) $)) (-15 -3477 ((-1157) $)) (-15 -3699 ((-3 (-1157) "failed") $)) (-15 -4281 ((-3 (-1157) "failed") $)) (-15 -3084 ((-112) $))))
-((-2807 (((-3 (-566) "failed") |#1|) 19)) (-3916 (((-3 (-566) "failed") |#1|) 14)) (-2292 (((-566) (-1157)) 33)))
-(((-1196 |#1|) (-10 -7 (-15 -2807 ((-3 (-566) "failed") |#1|)) (-15 -3916 ((-3 (-566) "failed") |#1|)) (-15 -2292 ((-566) (-1157)))) (-1049)) (T -1196))
-((-2292 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-566)) (-5 *1 (-1196 *4)) (-4 *4 (-1049)))) (-3916 (*1 *2 *3) (|partial| -12 (-5 *2 (-566)) (-5 *1 (-1196 *3)) (-4 *3 (-1049)))) (-2807 (*1 *2 *3) (|partial| -12 (-5 *2 (-566)) (-5 *1 (-1196 *3)) (-4 *3 (-1049)))))
-(-10 -7 (-15 -2807 ((-3 (-566) "failed") |#1|)) (-15 -3916 ((-3 (-566) "failed") |#1|)) (-15 -2292 ((-566) (-1157))))
-((-2088 (((-1132 (-225))) 9)))
-(((-1197) (-10 -7 (-15 -2088 ((-1132 (-225)))))) (T -1197))
-((-2088 (*1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1197)))))
-(-10 -7 (-15 -2088 ((-1132 (-225)))))
-((-3035 (($) 12)) (-3302 (($ $) 36)) (-3279 (($ $) 34)) (-3146 (($ $) 26)) (-3323 (($ $) 18)) (-1382 (($ $) 16)) (-3313 (($ $) 20)) (-3185 (($ $) 31)) (-3291 (($ $) 35)) (-3160 (($ $) 30)))
-(((-1198 |#1|) (-10 -8 (-15 -3035 (|#1|)) (-15 -3302 (|#1| |#1|)) (-15 -3279 (|#1| |#1|)) (-15 -3323 (|#1| |#1|)) (-15 -1382 (|#1| |#1|)) (-15 -3313 (|#1| |#1|)) (-15 -3291 (|#1| |#1|)) (-15 -3146 (|#1| |#1|)) (-15 -3185 (|#1| |#1|)) (-15 -3160 (|#1| |#1|))) (-1199)) (T -1198))
-NIL
-(-10 -8 (-15 -3035 (|#1|)) (-15 -3302 (|#1| |#1|)) (-15 -3279 (|#1| |#1|)) (-15 -3323 (|#1| |#1|)) (-15 -1382 (|#1| |#1|)) (-15 -3313 (|#1| |#1|)) (-15 -3291 (|#1| |#1|)) (-15 -3146 (|#1| |#1|)) (-15 -3185 (|#1| |#1|)) (-15 -3160 (|#1| |#1|)))
-((-3235 (($ $) 26)) (-3102 (($ $) 11)) (-3215 (($ $) 27)) (-3076 (($ $) 10)) (-3259 (($ $) 28)) (-3123 (($ $) 9)) (-3035 (($) 16)) (-3668 (($ $) 19)) (-3613 (($ $) 18)) (-3267 (($ $) 29)) (-3133 (($ $) 8)) (-3248 (($ $) 30)) (-3112 (($ $) 7)) (-3223 (($ $) 31)) (-3089 (($ $) 6)) (-3302 (($ $) 20)) (-3172 (($ $) 32)) (-3279 (($ $) 21)) (-3146 (($ $) 33)) (-3323 (($ $) 22)) (-3194 (($ $) 34)) (-1382 (($ $) 23)) (-3205 (($ $) 35)) (-3313 (($ $) 24)) (-3185 (($ $) 36)) (-3291 (($ $) 25)) (-3160 (($ $) 37)) (** (($ $ $) 17)))
+((-3916 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1190 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))) (-4266 (*1 *1) (-12 (-4 *1 (-1190 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))) (-4266 (*1 *1 *2) (-12 (-5 *2 (-644 (-2 (|:| -2050 *3) (|:| -2849 *4)))) (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *1 (-1190 *3 *4)))) (-3152 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *4 *4 *4)) (-4 *1 (-1190 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))))
+(-13 (-610 |t#1| |t#2|) (-604 |t#1| |t#2|) (-10 -8 (-15 -3916 (|t#2| $ |t#1| |t#2|)) (-15 -4266 ($)) (-15 -4266 ($ (-644 (-2 (|:| -2050 |t#1|) (|:| -2849 |t#2|))))) (-15 -3152 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2050 |#1|) (|:| -2849 |#2|))) . T) ((-102) -2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))) ((-613 (-862)) -2805 (|has| |#2| (-1099)) (|has| |#2| (-613 (-862))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-613 (-862)))) ((-151 #0#) . T) ((-614 (-538)) |has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-614 (-538))) ((-229 #0#) . T) ((-235 #0#) . T) ((-287 |#1| |#2|) . T) ((-289 |#1| |#2|) . T) ((-310 #0#) -12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))) ((-310 |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-491 #0#) . T) ((-491 |#2|) . T) ((-604 |#1| |#2|) . T) ((-516 #0# #0#) -12 (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-310 (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)))) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))) ((-516 |#2| |#2|) -12 (|has| |#2| (-310 |#2|)) (|has| |#2| (-1099))) ((-610 |#1| |#2|) . T) ((-1099) -2805 (|has| |#2| (-1099)) (|has| (-2 (|:| -2050 |#1|) (|:| -2849 |#2|)) (-1099))) ((-1214) . T))
+((-1925 (((-112)) 29)) (-3924 (((-1269) (-1157)) 31)) (-3752 (((-112)) 41)) (-4074 (((-1269)) 39)) (-3116 (((-1269) (-1157) (-1157)) 30)) (-1469 (((-112)) 42)) (-2903 (((-1269) |#1| |#2|) 53)) (-4207 (((-1269)) 27)) (-2563 (((-3 |#2| "failed") |#1|) 51)) (-2501 (((-1269)) 40)))
+(((-1191 |#1| |#2|) (-10 -7 (-15 -4207 ((-1269))) (-15 -3116 ((-1269) (-1157) (-1157))) (-15 -3924 ((-1269) (-1157))) (-15 -4074 ((-1269))) (-15 -2501 ((-1269))) (-15 -1925 ((-112))) (-15 -3752 ((-112))) (-15 -1469 ((-112))) (-15 -2563 ((-3 |#2| "failed") |#1|)) (-15 -2903 ((-1269) |#1| |#2|))) (-1099) (-1099)) (T -1191))
+((-2903 (*1 *2 *3 *4) (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-2563 (*1 *2 *3) (|partial| -12 (-4 *2 (-1099)) (-5 *1 (-1191 *3 *2)) (-4 *3 (-1099)))) (-1469 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-3752 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-1925 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-2501 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-4074 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))) (-3924 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1191 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099)))) (-3116 (*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1191 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099)))) (-4207 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099)))))
+(-10 -7 (-15 -4207 ((-1269))) (-15 -3116 ((-1269) (-1157) (-1157))) (-15 -3924 ((-1269) (-1157))) (-15 -4074 ((-1269))) (-15 -2501 ((-1269))) (-15 -1925 ((-112))) (-15 -3752 ((-112))) (-15 -1469 ((-112))) (-15 -2563 ((-3 |#2| "failed") |#1|)) (-15 -2903 ((-1269) |#1| |#2|)))
+((-1862 (((-1157) (-1157)) 22)) (-2985 (((-52) (-1157)) 25)))
+(((-1192) (-10 -7 (-15 -2985 ((-52) (-1157))) (-15 -1862 ((-1157) (-1157))))) (T -1192))
+((-1862 (*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1192)))) (-2985 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-1192)))))
+(-10 -7 (-15 -2985 ((-52) (-1157))) (-15 -1862 ((-1157) (-1157))))
+((-3780 (((-1194) |#1|) 11)))
+(((-1193 |#1|) (-10 -7 (-15 -3780 ((-1194) |#1|))) (-1099)) (T -1193))
+((-3780 (*1 *2 *3) (-12 (-5 *2 (-1194)) (-5 *1 (-1193 *3)) (-4 *3 (-1099)))))
+(-10 -7 (-15 -3780 ((-1194) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3436 (((-644 (-1157)) $) 39)) (-2497 (((-644 (-1157)) $ (-644 (-1157))) 42)) (-2024 (((-644 (-1157)) $ (-644 (-1157))) 41)) (-2964 (((-644 (-1157)) $ (-644 (-1157))) 43)) (-2411 (((-644 (-1157)) $) 38)) (-4278 (($) 26)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3983 (((-644 (-1157)) $) 40)) (-1736 (((-1269) $ (-566)) 35) (((-1269) $) 36)) (-3204 (($ (-862) (-566)) 32) (($ (-862) (-566) (-862)) NIL)) (-3780 (((-862) $) 53) (($ (-862)) 31)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1194) (-13 (-1099) (-616 (-862)) (-10 -8 (-15 -3204 ($ (-862) (-566))) (-15 -3204 ($ (-862) (-566) (-862))) (-15 -1736 ((-1269) $ (-566))) (-15 -1736 ((-1269) $)) (-15 -3983 ((-644 (-1157)) $)) (-15 -3436 ((-644 (-1157)) $)) (-15 -4278 ($)) (-15 -2411 ((-644 (-1157)) $)) (-15 -2964 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -2497 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -2024 ((-644 (-1157)) $ (-644 (-1157))))))) (T -1194))
+((-3204 (*1 *1 *2 *3) (-12 (-5 *2 (-862)) (-5 *3 (-566)) (-5 *1 (-1194)))) (-3204 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-862)) (-5 *3 (-566)) (-5 *1 (-1194)))) (-1736 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1194)))) (-1736 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1194)))) (-3983 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))) (-3436 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))) (-4278 (*1 *1) (-5 *1 (-1194))) (-2411 (*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))) (-2964 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))) (-2497 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))) (-2024 (*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
+(-13 (-1099) (-616 (-862)) (-10 -8 (-15 -3204 ($ (-862) (-566))) (-15 -3204 ($ (-862) (-566) (-862))) (-15 -1736 ((-1269) $ (-566))) (-15 -1736 ((-1269) $)) (-15 -3983 ((-644 (-1157)) $)) (-15 -3436 ((-644 (-1157)) $)) (-15 -4278 ($)) (-15 -2411 ((-644 (-1157)) $)) (-15 -2964 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -2497 ((-644 (-1157)) $ (-644 (-1157)))) (-15 -2024 ((-644 (-1157)) $ (-644 (-1157))))))
+((-3009 (((-112) $ $) NIL)) (-1601 (((-1157) $ (-1157)) 17) (((-1157) $) 16)) (-3696 (((-1157) $ (-1157)) 15)) (-1466 (($ $ (-1157)) NIL)) (-2429 (((-3 (-1157) "failed") $) 11)) (-3967 (((-1157) $) 8)) (-3075 (((-3 (-1157) "failed") $) 12)) (-2023 (((-1157) $) 9)) (-3537 (($ (-390)) NIL) (($ (-390) (-1157)) NIL)) (-2639 (((-390) $) NIL)) (-2402 (((-1157) $) NIL)) (-2756 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1600 (((-112) $) 21)) (-3780 (((-862) $) NIL)) (-4127 (($ $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1195) (-13 (-366 (-390) (-1157)) (-10 -8 (-15 -1601 ((-1157) $ (-1157))) (-15 -1601 ((-1157) $)) (-15 -3967 ((-1157) $)) (-15 -2429 ((-3 (-1157) "failed") $)) (-15 -3075 ((-3 (-1157) "failed") $)) (-15 -1600 ((-112) $))))) (T -1195))
+((-1601 (*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1195)))) (-1601 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1195)))) (-3967 (*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1195)))) (-2429 (*1 *2 *1) (|partial| -12 (-5 *2 (-1157)) (-5 *1 (-1195)))) (-3075 (*1 *2 *1) (|partial| -12 (-5 *2 (-1157)) (-5 *1 (-1195)))) (-1600 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1195)))))
+(-13 (-366 (-390) (-1157)) (-10 -8 (-15 -1601 ((-1157) $ (-1157))) (-15 -1601 ((-1157) $)) (-15 -3967 ((-1157) $)) (-15 -2429 ((-3 (-1157) "failed") $)) (-15 -3075 ((-3 (-1157) "failed") $)) (-15 -1600 ((-112) $))))
+((-2899 (((-3 (-566) "failed") |#1|) 19)) (-2666 (((-3 (-566) "failed") |#1|) 14)) (-1502 (((-566) (-1157)) 33)))
+(((-1196 |#1|) (-10 -7 (-15 -2899 ((-3 (-566) "failed") |#1|)) (-15 -2666 ((-3 (-566) "failed") |#1|)) (-15 -1502 ((-566) (-1157)))) (-1049)) (T -1196))
+((-1502 (*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-566)) (-5 *1 (-1196 *4)) (-4 *4 (-1049)))) (-2666 (*1 *2 *3) (|partial| -12 (-5 *2 (-566)) (-5 *1 (-1196 *3)) (-4 *3 (-1049)))) (-2899 (*1 *2 *3) (|partial| -12 (-5 *2 (-566)) (-5 *1 (-1196 *3)) (-4 *3 (-1049)))))
+(-10 -7 (-15 -2899 ((-3 (-566) "failed") |#1|)) (-15 -2666 ((-3 (-566) "failed") |#1|)) (-15 -1502 ((-566) (-1157))))
+((-3205 (((-1132 (-225))) 9)))
+(((-1197) (-10 -7 (-15 -3205 ((-1132 (-225)))))) (T -1197))
+((-3205 (*1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1197)))))
+(-10 -7 (-15 -3205 ((-1132 (-225)))))
+((-3120 (($) 12)) (-2931 (($ $) 36)) (-2907 (($ $) 34)) (-3986 (($ $) 26)) (-2954 (($ $) 18)) (-3181 (($ $) 16)) (-2943 (($ $) 20)) (-4021 (($ $) 31)) (-2920 (($ $) 35)) (-3997 (($ $) 30)))
+(((-1198 |#1|) (-10 -8 (-15 -3120 (|#1|)) (-15 -2931 (|#1| |#1|)) (-15 -2907 (|#1| |#1|)) (-15 -2954 (|#1| |#1|)) (-15 -3181 (|#1| |#1|)) (-15 -2943 (|#1| |#1|)) (-15 -2920 (|#1| |#1|)) (-15 -3986 (|#1| |#1|)) (-15 -4021 (|#1| |#1|)) (-15 -3997 (|#1| |#1|))) (-1199)) (T -1198))
+NIL
+(-10 -8 (-15 -3120 (|#1|)) (-15 -2931 (|#1| |#1|)) (-15 -2907 (|#1| |#1|)) (-15 -2954 (|#1| |#1|)) (-15 -3181 (|#1| |#1|)) (-15 -2943 (|#1| |#1|)) (-15 -2920 (|#1| |#1|)) (-15 -3986 (|#1| |#1|)) (-15 -4021 (|#1| |#1|)) (-15 -3997 (|#1| |#1|)))
+((-2865 (($ $) 26)) (-3939 (($ $) 11)) (-2843 (($ $) 27)) (-3915 (($ $) 10)) (-2888 (($ $) 28)) (-3964 (($ $) 9)) (-3120 (($) 16)) (-3671 (($ $) 19)) (-4337 (($ $) 18)) (-2897 (($ $) 29)) (-3974 (($ $) 8)) (-2877 (($ $) 30)) (-3951 (($ $) 7)) (-2853 (($ $) 31)) (-3927 (($ $) 6)) (-2931 (($ $) 20)) (-4009 (($ $) 32)) (-2907 (($ $) 21)) (-3986 (($ $) 33)) (-2954 (($ $) 22)) (-4033 (($ $) 34)) (-3181 (($ $) 23)) (-2834 (($ $) 35)) (-2943 (($ $) 24)) (-4021 (($ $) 36)) (-2920 (($ $) 25)) (-3997 (($ $) 37)) (** (($ $ $) 17)))
(((-1199) (-140)) (T -1199))
-((-3035 (*1 *1) (-4 *1 (-1199))))
-(-13 (-1202) (-95) (-495) (-35) (-285) (-10 -8 (-15 -3035 ($))))
+((-3120 (*1 *1) (-4 *1 (-1199))))
+(-13 (-1202) (-95) (-495) (-35) (-285) (-10 -8 (-15 -3120 ($))))
(((-35) . T) ((-95) . T) ((-285) . T) ((-495) . T) ((-1202) . T))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2212 ((|#1| $) 19)) (-3996 (($ |#1| (-644 $)) 28) (($ (-644 |#1|)) 35) (($ |#1|) 30)) (-3081 (((-112) $ (-771)) 72)) (-3087 ((|#1| $ |#1|) 14 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 13 (|has| $ (-6 -4418)))) (-2342 (($) NIL T CONST)) (-3372 (((-644 |#1|) $) 76 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) 64)) (-4129 (((-112) $ $) 49 (|has| |#1| (-1099)))) (-2744 (((-112) $ (-771)) 62)) (-2404 (((-644 |#1|) $) 77 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 75 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1323 (($ (-1 |#1| |#1|) $) 29 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 27)) (-3882 (((-112) $ (-771)) 60)) (-2996 (((-644 |#1|) $) 54)) (-2783 (((-112) $) 52)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2822 (((-112) (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 107)) (-4194 (((-112) $) 9)) (-2954 (($) 10)) (-4386 ((|#1| $ "value") NIL)) (-1442 (((-566) $ $) 48)) (-3896 (((-644 $) $) 89)) (-3662 (((-112) $ $) 110)) (-2505 (((-644 $) $) 105)) (-2559 (($ $) 106)) (-1313 (((-112) $) 84)) (-4044 (((-771) (-1 (-112) |#1|) $) 25 (|has| $ (-6 -4417))) (((-771) |#1| $) 17 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3895 (($ $) 88)) (-2512 (((-862) $) 91 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) 12)) (-2105 (((-112) $ $) 39 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 73 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 37 (|has| |#1| (-1099)))) (-2997 (((-771) $) 58 (|has| $ (-6 -4417)))))
-(((-1200 |#1|) (-13 (-1010 |#1|) (-10 -8 (-6 -4417) (-6 -4418) (-15 -3996 ($ |#1| (-644 $))) (-15 -3996 ($ (-644 |#1|))) (-15 -3996 ($ |#1|)) (-15 -1313 ((-112) $)) (-15 -2559 ($ $)) (-15 -2505 ((-644 $) $)) (-15 -3662 ((-112) $ $)) (-15 -3896 ((-644 $) $)))) (-1099)) (T -1200))
-((-1313 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))) (-3996 (*1 *1 *2 *3) (-12 (-5 *3 (-644 (-1200 *2))) (-5 *1 (-1200 *2)) (-4 *2 (-1099)))) (-3996 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-1200 *3)))) (-3996 (*1 *1 *2) (-12 (-5 *1 (-1200 *2)) (-4 *2 (-1099)))) (-2559 (*1 *1 *1) (-12 (-5 *1 (-1200 *2)) (-4 *2 (-1099)))) (-2505 (*1 *2 *1) (-12 (-5 *2 (-644 (-1200 *3))) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))) (-3662 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))) (-3896 (*1 *2 *1) (-12 (-5 *2 (-644 (-1200 *3))) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))))
-(-13 (-1010 |#1|) (-10 -8 (-6 -4417) (-6 -4418) (-15 -3996 ($ |#1| (-644 $))) (-15 -3996 ($ (-644 |#1|))) (-15 -3996 ($ |#1|)) (-15 -1313 ((-112) $)) (-15 -2559 ($ $)) (-15 -2505 ((-644 $) $)) (-15 -3662 ((-112) $ $)) (-15 -3896 ((-644 $) $))))
-((-3102 (($ $) 15)) (-3123 (($ $) 12)) (-3133 (($ $) 10)) (-3112 (($ $) 17)))
-(((-1201 |#1|) (-10 -8 (-15 -3112 (|#1| |#1|)) (-15 -3133 (|#1| |#1|)) (-15 -3123 (|#1| |#1|)) (-15 -3102 (|#1| |#1|))) (-1202)) (T -1201))
-NIL
-(-10 -8 (-15 -3112 (|#1| |#1|)) (-15 -3133 (|#1| |#1|)) (-15 -3123 (|#1| |#1|)) (-15 -3102 (|#1| |#1|)))
-((-3102 (($ $) 11)) (-3076 (($ $) 10)) (-3123 (($ $) 9)) (-3133 (($ $) 8)) (-3112 (($ $) 7)) (-3089 (($ $) 6)))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2252 ((|#1| $) 19)) (-4088 (($ |#1| (-644 $)) 28) (($ (-644 |#1|)) 35) (($ |#1|) 30)) (-1574 (((-112) $ (-771)) 72)) (-1637 ((|#1| $ |#1|) 14 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 13 (|has| $ (-6 -4415)))) (-3877 (($) NIL T CONST)) (-3799 (((-644 |#1|) $) 76 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) 64)) (-4050 (((-112) $ $) 49 (|has| |#1| (-1099)))) (-3501 (((-112) $ (-771)) 62)) (-3276 (((-644 |#1|) $) 77 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 75 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3117 (($ (-1 |#1| |#1|) $) 29 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 27)) (-3582 (((-112) $ (-771)) 60)) (-3318 (((-644 |#1|) $) 54)) (-2675 (((-112) $) 52)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3044 (((-112) (-1 (-112) |#1|) $) 74 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 107)) (-3461 (((-112) $) 9)) (-1793 (($) 10)) (-4393 ((|#1| $ "value") NIL)) (-3969 (((-566) $ $) 48)) (-3685 (((-644 $) $) 89)) (-2059 (((-112) $ $) 110)) (-2969 (((-644 $) $) 105)) (-2276 (($ $) 106)) (-1638 (((-112) $) 84)) (-4067 (((-771) (-1 (-112) |#1|) $) 25 (|has| $ (-6 -4414))) (((-771) |#1| $) 17 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3940 (($ $) 88)) (-3780 (((-862) $) 91 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) 12)) (-3381 (((-112) $ $) 39 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 73 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 37 (|has| |#1| (-1099)))) (-3020 (((-771) $) 58 (|has| $ (-6 -4414)))))
+(((-1200 |#1|) (-13 (-1010 |#1|) (-10 -8 (-6 -4414) (-6 -4415) (-15 -4088 ($ |#1| (-644 $))) (-15 -4088 ($ (-644 |#1|))) (-15 -4088 ($ |#1|)) (-15 -1638 ((-112) $)) (-15 -2276 ($ $)) (-15 -2969 ((-644 $) $)) (-15 -2059 ((-112) $ $)) (-15 -3685 ((-644 $) $)))) (-1099)) (T -1200))
+((-1638 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))) (-4088 (*1 *1 *2 *3) (-12 (-5 *3 (-644 (-1200 *2))) (-5 *1 (-1200 *2)) (-4 *2 (-1099)))) (-4088 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-1200 *3)))) (-4088 (*1 *1 *2) (-12 (-5 *1 (-1200 *2)) (-4 *2 (-1099)))) (-2276 (*1 *1 *1) (-12 (-5 *1 (-1200 *2)) (-4 *2 (-1099)))) (-2969 (*1 *2 *1) (-12 (-5 *2 (-644 (-1200 *3))) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))) (-2059 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))) (-3685 (*1 *2 *1) (-12 (-5 *2 (-644 (-1200 *3))) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))))
+(-13 (-1010 |#1|) (-10 -8 (-6 -4414) (-6 -4415) (-15 -4088 ($ |#1| (-644 $))) (-15 -4088 ($ (-644 |#1|))) (-15 -4088 ($ |#1|)) (-15 -1638 ((-112) $)) (-15 -2276 ($ $)) (-15 -2969 ((-644 $) $)) (-15 -2059 ((-112) $ $)) (-15 -3685 ((-644 $) $))))
+((-3939 (($ $) 15)) (-3964 (($ $) 12)) (-3974 (($ $) 10)) (-3951 (($ $) 17)))
+(((-1201 |#1|) (-10 -8 (-15 -3951 (|#1| |#1|)) (-15 -3974 (|#1| |#1|)) (-15 -3964 (|#1| |#1|)) (-15 -3939 (|#1| |#1|))) (-1202)) (T -1201))
+NIL
+(-10 -8 (-15 -3951 (|#1| |#1|)) (-15 -3974 (|#1| |#1|)) (-15 -3964 (|#1| |#1|)) (-15 -3939 (|#1| |#1|)))
+((-3939 (($ $) 11)) (-3915 (($ $) 10)) (-3964 (($ $) 9)) (-3974 (($ $) 8)) (-3951 (($ $) 7)) (-3927 (($ $) 6)))
(((-1202) (-140)) (T -1202))
-((-3102 (*1 *1 *1) (-4 *1 (-1202))) (-3076 (*1 *1 *1) (-4 *1 (-1202))) (-3123 (*1 *1 *1) (-4 *1 (-1202))) (-3133 (*1 *1 *1) (-4 *1 (-1202))) (-3112 (*1 *1 *1) (-4 *1 (-1202))) (-3089 (*1 *1 *1) (-4 *1 (-1202))))
-(-13 (-10 -8 (-15 -3089 ($ $)) (-15 -3112 ($ $)) (-15 -3133 ($ $)) (-15 -3123 ($ $)) (-15 -3076 ($ $)) (-15 -3102 ($ $))))
-((-1817 ((|#2| |#2|) 98)) (-3128 (((-112) |#2|) 29)) (-2417 ((|#2| |#2|) 33)) (-2430 ((|#2| |#2|) 35)) (-3697 ((|#2| |#2| (-1175)) 92) ((|#2| |#2|) 93)) (-3247 (((-169 |#2|) |#2|) 31)) (-1988 ((|#2| |#2| (-1175)) 94) ((|#2| |#2|) 95)))
-(((-1203 |#1| |#2|) (-10 -7 (-15 -3697 (|#2| |#2|)) (-15 -3697 (|#2| |#2| (-1175))) (-15 -1988 (|#2| |#2|)) (-15 -1988 (|#2| |#2| (-1175))) (-15 -1817 (|#2| |#2|)) (-15 -2417 (|#2| |#2|)) (-15 -2430 (|#2| |#2|)) (-15 -3128 ((-112) |#2|)) (-15 -3247 ((-169 |#2|) |#2|))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -1203))
-((-3247 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-169 *3)) (-5 *1 (-1203 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-3128 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-112)) (-5 *1 (-1203 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-2430 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))) (-2417 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))) (-1817 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))) (-1988 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-1988 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))) (-3697 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-3697 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))))
-(-10 -7 (-15 -3697 (|#2| |#2|)) (-15 -3697 (|#2| |#2| (-1175))) (-15 -1988 (|#2| |#2|)) (-15 -1988 (|#2| |#2| (-1175))) (-15 -1817 (|#2| |#2|)) (-15 -2417 (|#2| |#2|)) (-15 -2430 (|#2| |#2|)) (-15 -3128 ((-112) |#2|)) (-15 -3247 ((-169 |#2|) |#2|)))
-((-4323 ((|#4| |#4| |#1|) 32)) (-4332 ((|#4| |#4| |#1|) 33)))
-(((-1204 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4323 (|#4| |#4| |#1|)) (-15 -4332 (|#4| |#4| |#1|))) (-558) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|)) (T -1204))
-((-4332 (*1 *2 *2 *3) (-12 (-4 *3 (-558)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-1204 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-4323 (*1 *2 *2 *3) (-12 (-4 *3 (-558)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-1204 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
-(-10 -7 (-15 -4323 (|#4| |#4| |#1|)) (-15 -4332 (|#4| |#4| |#1|)))
-((-4233 ((|#2| |#2|) 148)) (-1793 ((|#2| |#2|) 145)) (-3000 ((|#2| |#2|) 136)) (-3689 ((|#2| |#2|) 133)) (-2112 ((|#2| |#2|) 141)) (-2069 ((|#2| |#2|) 129)) (-1721 ((|#2| |#2|) 44)) (-1715 ((|#2| |#2|) 105)) (-3164 ((|#2| |#2|) 88)) (-3513 ((|#2| |#2|) 143)) (-2939 ((|#2| |#2|) 131)) (-3188 ((|#2| |#2|) 153)) (-3308 ((|#2| |#2|) 151)) (-3622 ((|#2| |#2|) 152)) (-1479 ((|#2| |#2|) 150)) (-3075 ((|#2| |#2|) 163)) (-1677 ((|#2| |#2|) 30 (-12 (|has| |#2| (-614 (-892 |#1|))) (|has| |#2| (-886 |#1|)) (|has| |#1| (-614 (-892 |#1|))) (|has| |#1| (-886 |#1|))))) (-3969 ((|#2| |#2|) 89)) (-2142 ((|#2| |#2|) 154)) (-4154 ((|#2| |#2|) 155)) (-1403 ((|#2| |#2|) 142)) (-2454 ((|#2| |#2|) 130)) (-4352 ((|#2| |#2|) 149)) (-1505 ((|#2| |#2|) 147)) (-2304 ((|#2| |#2|) 137)) (-3100 ((|#2| |#2|) 135)) (-4284 ((|#2| |#2|) 139)) (-1770 ((|#2| |#2|) 127)))
-(((-1205 |#1| |#2|) (-10 -7 (-15 -4154 (|#2| |#2|)) (-15 -3164 (|#2| |#2|)) (-15 -3075 (|#2| |#2|)) (-15 -1715 (|#2| |#2|)) (-15 -1721 (|#2| |#2|)) (-15 -3969 (|#2| |#2|)) (-15 -2142 (|#2| |#2|)) (-15 -1770 (|#2| |#2|)) (-15 -4284 (|#2| |#2|)) (-15 -2304 (|#2| |#2|)) (-15 -4352 (|#2| |#2|)) (-15 -2454 (|#2| |#2|)) (-15 -1403 (|#2| |#2|)) (-15 -2939 (|#2| |#2|)) (-15 -3513 (|#2| |#2|)) (-15 -2069 (|#2| |#2|)) (-15 -2112 (|#2| |#2|)) (-15 -3000 (|#2| |#2|)) (-15 -4233 (|#2| |#2|)) (-15 -3689 (|#2| |#2|)) (-15 -1793 (|#2| |#2|)) (-15 -3100 (|#2| |#2|)) (-15 -1505 (|#2| |#2|)) (-15 -1479 (|#2| |#2|)) (-15 -3308 (|#2| |#2|)) (-15 -3622 (|#2| |#2|)) (-15 -3188 (|#2| |#2|)) (IF (|has| |#1| (-886 |#1|)) (IF (|has| |#1| (-614 (-892 |#1|))) (IF (|has| |#2| (-614 (-892 |#1|))) (IF (|has| |#2| (-886 |#1|)) (-15 -1677 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-454) (-13 (-432 |#1|) (-1199))) (T -1205))
-((-1677 (*1 *2 *2) (-12 (-4 *3 (-614 (-892 *3))) (-4 *3 (-886 *3)) (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-614 (-892 *3))) (-4 *2 (-886 *3)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3188 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3622 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3308 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1479 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1505 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3100 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1793 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3689 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-4233 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3000 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2112 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2069 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3513 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2939 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1403 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2454 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-4352 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2304 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-4284 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1770 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2142 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3969 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1721 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1715 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3075 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3164 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-4154 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))))
-(-10 -7 (-15 -4154 (|#2| |#2|)) (-15 -3164 (|#2| |#2|)) (-15 -3075 (|#2| |#2|)) (-15 -1715 (|#2| |#2|)) (-15 -1721 (|#2| |#2|)) (-15 -3969 (|#2| |#2|)) (-15 -2142 (|#2| |#2|)) (-15 -1770 (|#2| |#2|)) (-15 -4284 (|#2| |#2|)) (-15 -2304 (|#2| |#2|)) (-15 -4352 (|#2| |#2|)) (-15 -2454 (|#2| |#2|)) (-15 -1403 (|#2| |#2|)) (-15 -2939 (|#2| |#2|)) (-15 -3513 (|#2| |#2|)) (-15 -2069 (|#2| |#2|)) (-15 -2112 (|#2| |#2|)) (-15 -3000 (|#2| |#2|)) (-15 -4233 (|#2| |#2|)) (-15 -3689 (|#2| |#2|)) (-15 -1793 (|#2| |#2|)) (-15 -3100 (|#2| |#2|)) (-15 -1505 (|#2| |#2|)) (-15 -1479 (|#2| |#2|)) (-15 -3308 (|#2| |#2|)) (-15 -3622 (|#2| |#2|)) (-15 -3188 (|#2| |#2|)) (IF (|has| |#1| (-886 |#1|)) (IF (|has| |#1| (-614 (-892 |#1|))) (IF (|has| |#2| (-614 (-892 |#1|))) (IF (|has| |#2| (-886 |#1|)) (-15 -1677 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-4390 (((-112) |#5| $) 68) (((-112) $) 110)) (-3761 ((|#5| |#5| $) 83)) (-4186 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 127)) (-3772 (((-644 |#5|) (-644 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 81)) (-2977 (((-3 $ "failed") (-644 |#5|)) 135)) (-4076 (((-3 $ "failed") $) 120)) (-2668 ((|#5| |#5| $) 102)) (-2531 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 36)) (-4200 ((|#5| |#5| $) 106)) (-4362 ((|#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 (-112) |#5| |#5|)) 77)) (-3810 (((-2 (|:| -1673 (-644 |#5|)) (|:| -3509 (-644 |#5|))) $) 63)) (-4260 (((-112) |#5| $) 66) (((-112) $) 111)) (-1594 ((|#4| $) 116)) (-2670 (((-3 |#5| "failed") $) 118)) (-1798 (((-644 |#5|) $) 55)) (-3377 (((-112) |#5| $) 75) (((-112) $) 115)) (-1687 ((|#5| |#5| $) 89)) (-2343 (((-112) $ $) 29)) (-3257 (((-112) |#5| $) 71) (((-112) $) 113)) (-2930 ((|#5| |#5| $) 86)) (-4062 (((-3 |#5| "failed") $) 117)) (-1938 (($ $ |#5|) 136)) (-3992 (((-771) $) 60)) (-2523 (($ (-644 |#5|)) 133)) (-1945 (($ $ |#4|) 131)) (-1398 (($ $ |#4|) 129)) (-2280 (($ $) 128)) (-2512 (((-862) $) NIL) (((-644 |#5|) $) 121)) (-2748 (((-771) $) 140)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5| |#5|)) 49) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 51)) (-3130 (((-112) $ (-1 (-112) |#5| (-644 |#5|))) 108)) (-1427 (((-644 |#4|) $) 123)) (-1369 (((-112) |#4| $) 126)) (-2940 (((-112) $ $) 20)))
-(((-1206 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2748 ((-771) |#1|)) (-15 -1938 (|#1| |#1| |#5|)) (-15 -4186 ((-3 |#5| "failed") |#1| |#4|)) (-15 -1369 ((-112) |#4| |#1|)) (-15 -1427 ((-644 |#4|) |#1|)) (-15 -4076 ((-3 |#1| "failed") |#1|)) (-15 -2670 ((-3 |#5| "failed") |#1|)) (-15 -4062 ((-3 |#5| "failed") |#1|)) (-15 -4200 (|#5| |#5| |#1|)) (-15 -2280 (|#1| |#1|)) (-15 -2668 (|#5| |#5| |#1|)) (-15 -1687 (|#5| |#5| |#1|)) (-15 -2930 (|#5| |#5| |#1|)) (-15 -3761 (|#5| |#5| |#1|)) (-15 -3772 ((-644 |#5|) (-644 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -4362 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -3377 ((-112) |#1|)) (-15 -3257 ((-112) |#1|)) (-15 -4390 ((-112) |#1|)) (-15 -3130 ((-112) |#1| (-1 (-112) |#5| (-644 |#5|)))) (-15 -3377 ((-112) |#5| |#1|)) (-15 -3257 ((-112) |#5| |#1|)) (-15 -4390 ((-112) |#5| |#1|)) (-15 -2531 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -4260 ((-112) |#1|)) (-15 -4260 ((-112) |#5| |#1|)) (-15 -3810 ((-2 (|:| -1673 (-644 |#5|)) (|:| -3509 (-644 |#5|))) |#1|)) (-15 -3992 ((-771) |#1|)) (-15 -1798 ((-644 |#5|) |#1|)) (-15 -4285 ((-3 (-2 (|:| |bas| |#1|) (|:| -3877 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -4285 ((-3 (-2 (|:| |bas| |#1|) (|:| -3877 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5| |#5|))) (-15 -2343 ((-112) |#1| |#1|)) (-15 -1945 (|#1| |#1| |#4|)) (-15 -1398 (|#1| |#1| |#4|)) (-15 -1594 (|#4| |#1|)) (-15 -2977 ((-3 |#1| "failed") (-644 |#5|))) (-15 -2512 ((-644 |#5|) |#1|)) (-15 -2523 (|#1| (-644 |#5|))) (-15 -4362 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -4362 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -4186 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -4362 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|))) (-1207 |#2| |#3| |#4| |#5|) (-558) (-793) (-850) (-1064 |#2| |#3| |#4|)) (T -1206))
-NIL
-(-10 -8 (-15 -2748 ((-771) |#1|)) (-15 -1938 (|#1| |#1| |#5|)) (-15 -4186 ((-3 |#5| "failed") |#1| |#4|)) (-15 -1369 ((-112) |#4| |#1|)) (-15 -1427 ((-644 |#4|) |#1|)) (-15 -4076 ((-3 |#1| "failed") |#1|)) (-15 -2670 ((-3 |#5| "failed") |#1|)) (-15 -4062 ((-3 |#5| "failed") |#1|)) (-15 -4200 (|#5| |#5| |#1|)) (-15 -2280 (|#1| |#1|)) (-15 -2668 (|#5| |#5| |#1|)) (-15 -1687 (|#5| |#5| |#1|)) (-15 -2930 (|#5| |#5| |#1|)) (-15 -3761 (|#5| |#5| |#1|)) (-15 -3772 ((-644 |#5|) (-644 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -4362 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -3377 ((-112) |#1|)) (-15 -3257 ((-112) |#1|)) (-15 -4390 ((-112) |#1|)) (-15 -3130 ((-112) |#1| (-1 (-112) |#5| (-644 |#5|)))) (-15 -3377 ((-112) |#5| |#1|)) (-15 -3257 ((-112) |#5| |#1|)) (-15 -4390 ((-112) |#5| |#1|)) (-15 -2531 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -4260 ((-112) |#1|)) (-15 -4260 ((-112) |#5| |#1|)) (-15 -3810 ((-2 (|:| -1673 (-644 |#5|)) (|:| -3509 (-644 |#5|))) |#1|)) (-15 -3992 ((-771) |#1|)) (-15 -1798 ((-644 |#5|) |#1|)) (-15 -4285 ((-3 (-2 (|:| |bas| |#1|) (|:| -3877 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -4285 ((-3 (-2 (|:| |bas| |#1|) (|:| -3877 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5| |#5|))) (-15 -2343 ((-112) |#1| |#1|)) (-15 -1945 (|#1| |#1| |#4|)) (-15 -1398 (|#1| |#1| |#4|)) (-15 -1594 (|#4| |#1|)) (-15 -2977 ((-3 |#1| "failed") (-644 |#5|))) (-15 -2512 ((-644 |#5|) |#1|)) (-15 -2523 (|#1| (-644 |#5|))) (-15 -4362 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -4362 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -4186 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -4362 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -2512 ((-862) |#1|)) (-15 -2940 ((-112) |#1| |#1|)))
-((-2985 (((-112) $ $) 7)) (-2072 (((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 |#4|)))) (-644 |#4|)) 86)) (-1725 (((-644 $) (-644 |#4|)) 87)) (-2540 (((-644 |#3|) $) 34)) (-2598 (((-112) $) 27)) (-2740 (((-112) $) 18 (|has| |#1| (-558)))) (-4390 (((-112) |#4| $) 102) (((-112) $) 98)) (-3761 ((|#4| |#4| $) 93)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) 28)) (-3081 (((-112) $ (-771)) 45)) (-4186 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4417))) (((-3 |#4| "failed") $ |#3|) 80)) (-2342 (($) 46 T CONST)) (-4179 (((-112) $) 23 (|has| |#1| (-558)))) (-4184 (((-112) $ $) 25 (|has| |#1| (-558)))) (-1576 (((-112) $ $) 24 (|has| |#1| (-558)))) (-2398 (((-112) $) 26 (|has| |#1| (-558)))) (-3772 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2380 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) 37)) (-1756 (($ (-644 |#4|)) 36)) (-4076 (((-3 $ "failed") $) 83)) (-2668 ((|#4| |#4| $) 90)) (-4093 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-4200 ((|#4| |#4| $) 88)) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4417))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-3810 (((-2 (|:| -1673 (-644 |#4|)) (|:| -3509 (-644 |#4|))) $) 106)) (-3372 (((-644 |#4|) $) 53 (|has| $ (-6 -4417)))) (-4260 (((-112) |#4| $) 105) (((-112) $) 104)) (-1594 ((|#3| $) 35)) (-2744 (((-112) $ (-771)) 44)) (-2404 (((-644 |#4|) $) 54 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) 48)) (-3097 (((-644 |#3|) $) 33)) (-3492 (((-112) |#3| $) 32)) (-3882 (((-112) $ (-771)) 43)) (-2878 (((-1157) $) 10)) (-2670 (((-3 |#4| "failed") $) 84)) (-1798 (((-644 |#4|) $) 108)) (-3377 (((-112) |#4| $) 100) (((-112) $) 96)) (-1687 ((|#4| |#4| $) 91)) (-2343 (((-112) $ $) 111)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-3257 (((-112) |#4| $) 101) (((-112) $) 97)) (-2930 ((|#4| |#4| $) 92)) (-4033 (((-1119) $) 11)) (-4062 (((-3 |#4| "failed") $) 85)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1583 (((-3 $ "failed") $ |#4|) 79)) (-1938 (($ $ |#4|) 78)) (-2822 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) 39)) (-4194 (((-112) $) 42)) (-2954 (($) 41)) (-3992 (((-771) $) 107)) (-4044 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4417)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4417)))) (-3895 (($ $) 40)) (-3134 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-2523 (($ (-644 |#4|)) 61)) (-1945 (($ $ |#3|) 29)) (-1398 (($ $ |#3|) 31)) (-2280 (($ $) 89)) (-4287 (($ $ |#3|) 30)) (-2512 (((-862) $) 12) (((-644 |#4|) $) 38)) (-2748 (((-771) $) 77 (|has| |#3| (-370)))) (-3122 (((-112) $ $) 9)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3130 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) 99)) (-3427 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4417)))) (-1427 (((-644 |#3|) $) 82)) (-1369 (((-112) |#3| $) 81)) (-2940 (((-112) $ $) 6)) (-2997 (((-771) $) 47 (|has| $ (-6 -4417)))))
+((-3939 (*1 *1 *1) (-4 *1 (-1202))) (-3915 (*1 *1 *1) (-4 *1 (-1202))) (-3964 (*1 *1 *1) (-4 *1 (-1202))) (-3974 (*1 *1 *1) (-4 *1 (-1202))) (-3951 (*1 *1 *1) (-4 *1 (-1202))) (-3927 (*1 *1 *1) (-4 *1 (-1202))))
+(-13 (-10 -8 (-15 -3927 ($ $)) (-15 -3951 ($ $)) (-15 -3974 ($ $)) (-15 -3964 ($ $)) (-15 -3915 ($ $)) (-15 -3939 ($ $))))
+((-3514 ((|#2| |#2|) 98)) (-3851 (((-112) |#2|) 29)) (-2495 ((|#2| |#2|) 33)) (-2503 ((|#2| |#2|) 35)) (-2419 ((|#2| |#2| (-1175)) 92) ((|#2| |#2|) 93)) (-2433 (((-169 |#2|) |#2|) 31)) (-1552 ((|#2| |#2| (-1175)) 94) ((|#2| |#2|) 95)))
+(((-1203 |#1| |#2|) (-10 -7 (-15 -2419 (|#2| |#2|)) (-15 -2419 (|#2| |#2| (-1175))) (-15 -1552 (|#2| |#2|)) (-15 -1552 (|#2| |#2| (-1175))) (-15 -3514 (|#2| |#2|)) (-15 -2495 (|#2| |#2|)) (-15 -2503 (|#2| |#2|)) (-15 -3851 ((-112) |#2|)) (-15 -2433 ((-169 |#2|) |#2|))) (-13 (-454) (-1038 (-566)) (-639 (-566))) (-13 (-27) (-1199) (-432 |#1|))) (T -1203))
+((-2433 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-169 *3)) (-5 *1 (-1203 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-3851 (*1 *2 *3) (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-112)) (-5 *1 (-1203 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))) (-2503 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))) (-2495 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))) (-3514 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))) (-1552 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-1552 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))) (-2419 (*1 *2 *2 *3) (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))) (-2419 (*1 *2 *2) (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))))
+(-10 -7 (-15 -2419 (|#2| |#2|)) (-15 -2419 (|#2| |#2| (-1175))) (-15 -1552 (|#2| |#2|)) (-15 -1552 (|#2| |#2| (-1175))) (-15 -3514 (|#2| |#2|)) (-15 -2495 (|#2| |#2|)) (-15 -2503 (|#2| |#2|)) (-15 -3851 ((-112) |#2|)) (-15 -2433 ((-169 |#2|) |#2|)))
+((-2267 ((|#4| |#4| |#1|) 32)) (-2366 ((|#4| |#4| |#1|) 33)))
+(((-1204 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2267 (|#4| |#4| |#1|)) (-15 -2366 (|#4| |#4| |#1|))) (-558) (-375 |#1|) (-375 |#1|) (-687 |#1| |#2| |#3|)) (T -1204))
+((-2366 (*1 *2 *2 *3) (-12 (-4 *3 (-558)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-1204 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))) (-2267 (*1 *2 *2 *3) (-12 (-4 *3 (-558)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3)) (-5 *1 (-1204 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
+(-10 -7 (-15 -2267 (|#4| |#4| |#1|)) (-15 -2366 (|#4| |#4| |#1|)))
+((-2651 ((|#2| |#2|) 148)) (-3275 ((|#2| |#2|) 145)) (-2141 ((|#2| |#2|) 136)) (-2332 ((|#2| |#2|) 133)) (-3454 ((|#2| |#2|) 141)) (-4217 ((|#2| |#2|) 129)) (-3760 ((|#2| |#2|) 44)) (-3714 ((|#2| |#2|) 105)) (-4108 ((|#2| |#2|) 88)) (-3105 ((|#2| |#2|) 143)) (-1757 ((|#2| |#2|) 131)) (-3110 ((|#2| |#2|) 153)) (-2918 ((|#2| |#2|) 151)) (-2857 ((|#2| |#2|) 152)) (-3132 ((|#2| |#2|) 150)) (-1529 ((|#2| |#2|) 163)) (-1454 ((|#2| |#2|) 30 (-12 (|has| |#2| (-614 (-892 |#1|))) (|has| |#2| (-886 |#1|)) (|has| |#1| (-614 (-892 |#1|))) (|has| |#1| (-886 |#1|))))) (-1891 ((|#2| |#2|) 89)) (-2540 ((|#2| |#2|) 154)) (-1351 ((|#2| |#2|) 155)) (-3599 ((|#2| |#2|) 142)) (-2505 ((|#2| |#2|) 130)) (-1312 ((|#2| |#2|) 149)) (-3399 ((|#2| |#2|) 147)) (-1620 ((|#2| |#2|) 137)) (-1735 ((|#2| |#2|) 135)) (-3098 ((|#2| |#2|) 139)) (-3046 ((|#2| |#2|) 127)))
+(((-1205 |#1| |#2|) (-10 -7 (-15 -1351 (|#2| |#2|)) (-15 -4108 (|#2| |#2|)) (-15 -1529 (|#2| |#2|)) (-15 -3714 (|#2| |#2|)) (-15 -3760 (|#2| |#2|)) (-15 -1891 (|#2| |#2|)) (-15 -2540 (|#2| |#2|)) (-15 -3046 (|#2| |#2|)) (-15 -3098 (|#2| |#2|)) (-15 -1620 (|#2| |#2|)) (-15 -1312 (|#2| |#2|)) (-15 -2505 (|#2| |#2|)) (-15 -3599 (|#2| |#2|)) (-15 -1757 (|#2| |#2|)) (-15 -3105 (|#2| |#2|)) (-15 -4217 (|#2| |#2|)) (-15 -3454 (|#2| |#2|)) (-15 -2141 (|#2| |#2|)) (-15 -2651 (|#2| |#2|)) (-15 -2332 (|#2| |#2|)) (-15 -3275 (|#2| |#2|)) (-15 -1735 (|#2| |#2|)) (-15 -3399 (|#2| |#2|)) (-15 -3132 (|#2| |#2|)) (-15 -2918 (|#2| |#2|)) (-15 -2857 (|#2| |#2|)) (-15 -3110 (|#2| |#2|)) (IF (|has| |#1| (-886 |#1|)) (IF (|has| |#1| (-614 (-892 |#1|))) (IF (|has| |#2| (-614 (-892 |#1|))) (IF (|has| |#2| (-886 |#1|)) (-15 -1454 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-454) (-13 (-432 |#1|) (-1199))) (T -1205))
+((-1454 (*1 *2 *2) (-12 (-4 *3 (-614 (-892 *3))) (-4 *3 (-886 *3)) (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-614 (-892 *3))) (-4 *2 (-886 *3)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3110 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2857 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2918 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3132 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3399 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1735 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3275 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2332 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2651 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2141 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3454 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-4217 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3105 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1757 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3599 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2505 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1312 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1620 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3098 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3046 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-2540 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1891 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3760 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-3714 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1529 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-4108 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))) (-1351 (*1 *2 *2) (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2)) (-4 *2 (-13 (-432 *3) (-1199))))))
+(-10 -7 (-15 -1351 (|#2| |#2|)) (-15 -4108 (|#2| |#2|)) (-15 -1529 (|#2| |#2|)) (-15 -3714 (|#2| |#2|)) (-15 -3760 (|#2| |#2|)) (-15 -1891 (|#2| |#2|)) (-15 -2540 (|#2| |#2|)) (-15 -3046 (|#2| |#2|)) (-15 -3098 (|#2| |#2|)) (-15 -1620 (|#2| |#2|)) (-15 -1312 (|#2| |#2|)) (-15 -2505 (|#2| |#2|)) (-15 -3599 (|#2| |#2|)) (-15 -1757 (|#2| |#2|)) (-15 -3105 (|#2| |#2|)) (-15 -4217 (|#2| |#2|)) (-15 -3454 (|#2| |#2|)) (-15 -2141 (|#2| |#2|)) (-15 -2651 (|#2| |#2|)) (-15 -2332 (|#2| |#2|)) (-15 -3275 (|#2| |#2|)) (-15 -1735 (|#2| |#2|)) (-15 -3399 (|#2| |#2|)) (-15 -3132 (|#2| |#2|)) (-15 -2918 (|#2| |#2|)) (-15 -2857 (|#2| |#2|)) (-15 -3110 (|#2| |#2|)) (IF (|has| |#1| (-886 |#1|)) (IF (|has| |#1| (-614 (-892 |#1|))) (IF (|has| |#2| (-614 (-892 |#1|))) (IF (|has| |#2| (-886 |#1|)) (-15 -1454 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-1702 (((-112) |#5| $) 68) (((-112) $) 110)) (-3713 ((|#5| |#5| $) 83)) (-1386 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 127)) (-3790 (((-644 |#5|) (-644 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 81)) (-3066 (((-3 $ "failed") (-644 |#5|)) 135)) (-4112 (((-3 $ "failed") $) 120)) (-3963 ((|#5| |#5| $) 102)) (-1991 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 36)) (-3517 ((|#5| |#5| $) 106)) (-1580 ((|#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 (-112) |#5| |#5|)) 77)) (-4143 (((-2 (|:| -1713 (-644 |#5|)) (|:| -3537 (-644 |#5|))) $) 63)) (-2848 (((-112) |#5| $) 66) (((-112) $) 111)) (-1887 ((|#4| $) 116)) (-2680 (((-3 |#5| "failed") $) 118)) (-3329 (((-644 |#5|) $) 55)) (-2337 (((-112) |#5| $) 75) (((-112) $) 115)) (-1569 ((|#5| |#5| $) 89)) (-3886 (((-112) $ $) 29)) (-2531 (((-112) |#5| $) 71) (((-112) $) 113)) (-1671 ((|#5| |#5| $) 86)) (-4101 (((-3 |#5| "failed") $) 117)) (-2295 (($ $ |#5|) 136)) (-2108 (((-771) $) 60)) (-3791 (($ (-644 |#5|)) 133)) (-2363 (($ $ |#4|) 131)) (-3513 (($ $ |#4|) 129)) (-1360 (($ $) 128)) (-3780 (((-862) $) NIL) (((-644 |#5|) $) 121)) (-3542 (((-771) $) 140)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5| |#5|)) 49) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 51)) (-3870 (((-112) $ (-1 (-112) |#5| (-644 |#5|))) 108)) (-3830 (((-644 |#4|) $) 123)) (-3258 (((-112) |#4| $) 126)) (-2950 (((-112) $ $) 20)))
+(((-1206 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3542 ((-771) |#1|)) (-15 -2295 (|#1| |#1| |#5|)) (-15 -1386 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3258 ((-112) |#4| |#1|)) (-15 -3830 ((-644 |#4|) |#1|)) (-15 -4112 ((-3 |#1| "failed") |#1|)) (-15 -2680 ((-3 |#5| "failed") |#1|)) (-15 -4101 ((-3 |#5| "failed") |#1|)) (-15 -3517 (|#5| |#5| |#1|)) (-15 -1360 (|#1| |#1|)) (-15 -3963 (|#5| |#5| |#1|)) (-15 -1569 (|#5| |#5| |#1|)) (-15 -1671 (|#5| |#5| |#1|)) (-15 -3713 (|#5| |#5| |#1|)) (-15 -3790 ((-644 |#5|) (-644 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1580 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2337 ((-112) |#1|)) (-15 -2531 ((-112) |#1|)) (-15 -1702 ((-112) |#1|)) (-15 -3870 ((-112) |#1| (-1 (-112) |#5| (-644 |#5|)))) (-15 -2337 ((-112) |#5| |#1|)) (-15 -2531 ((-112) |#5| |#1|)) (-15 -1702 ((-112) |#5| |#1|)) (-15 -1991 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2848 ((-112) |#1|)) (-15 -2848 ((-112) |#5| |#1|)) (-15 -4143 ((-2 (|:| -1713 (-644 |#5|)) (|:| -3537 (-644 |#5|))) |#1|)) (-15 -2108 ((-771) |#1|)) (-15 -3329 ((-644 |#5|) |#1|)) (-15 -3107 ((-3 (-2 (|:| |bas| |#1|) (|:| -3918 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -3107 ((-3 (-2 (|:| |bas| |#1|) (|:| -3918 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5| |#5|))) (-15 -3886 ((-112) |#1| |#1|)) (-15 -2363 (|#1| |#1| |#4|)) (-15 -3513 (|#1| |#1| |#4|)) (-15 -1887 (|#4| |#1|)) (-15 -3066 ((-3 |#1| "failed") (-644 |#5|))) (-15 -3780 ((-644 |#5|) |#1|)) (-15 -3791 (|#1| (-644 |#5|))) (-15 -1580 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -1580 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1386 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -1580 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|))) (-1207 |#2| |#3| |#4| |#5|) (-558) (-793) (-850) (-1064 |#2| |#3| |#4|)) (T -1206))
+NIL
+(-10 -8 (-15 -3542 ((-771) |#1|)) (-15 -2295 (|#1| |#1| |#5|)) (-15 -1386 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3258 ((-112) |#4| |#1|)) (-15 -3830 ((-644 |#4|) |#1|)) (-15 -4112 ((-3 |#1| "failed") |#1|)) (-15 -2680 ((-3 |#5| "failed") |#1|)) (-15 -4101 ((-3 |#5| "failed") |#1|)) (-15 -3517 (|#5| |#5| |#1|)) (-15 -1360 (|#1| |#1|)) (-15 -3963 (|#5| |#5| |#1|)) (-15 -1569 (|#5| |#5| |#1|)) (-15 -1671 (|#5| |#5| |#1|)) (-15 -3713 (|#5| |#5| |#1|)) (-15 -3790 ((-644 |#5|) (-644 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1580 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2337 ((-112) |#1|)) (-15 -2531 ((-112) |#1|)) (-15 -1702 ((-112) |#1|)) (-15 -3870 ((-112) |#1| (-1 (-112) |#5| (-644 |#5|)))) (-15 -2337 ((-112) |#5| |#1|)) (-15 -2531 ((-112) |#5| |#1|)) (-15 -1702 ((-112) |#5| |#1|)) (-15 -1991 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2848 ((-112) |#1|)) (-15 -2848 ((-112) |#5| |#1|)) (-15 -4143 ((-2 (|:| -1713 (-644 |#5|)) (|:| -3537 (-644 |#5|))) |#1|)) (-15 -2108 ((-771) |#1|)) (-15 -3329 ((-644 |#5|) |#1|)) (-15 -3107 ((-3 (-2 (|:| |bas| |#1|) (|:| -3918 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -3107 ((-3 (-2 (|:| |bas| |#1|) (|:| -3918 (-644 |#5|))) "failed") (-644 |#5|) (-1 (-112) |#5| |#5|))) (-15 -3886 ((-112) |#1| |#1|)) (-15 -2363 (|#1| |#1| |#4|)) (-15 -3513 (|#1| |#1| |#4|)) (-15 -1887 (|#4| |#1|)) (-15 -3066 ((-3 |#1| "failed") (-644 |#5|))) (-15 -3780 ((-644 |#5|) |#1|)) (-15 -3791 (|#1| (-644 |#5|))) (-15 -1580 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -1580 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1386 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -1580 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3780 ((-862) |#1|)) (-15 -2950 ((-112) |#1| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3043 (((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 |#4|)))) (-644 |#4|)) 86)) (-3804 (((-644 $) (-644 |#4|)) 87)) (-2608 (((-644 |#3|) $) 34)) (-1390 (((-112) $) 27)) (-3455 (((-112) $) 18 (|has| |#1| (-558)))) (-1702 (((-112) |#4| $) 102) (((-112) $) 98)) (-3713 ((|#4| |#4| $) 93)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) 28)) (-1574 (((-112) $ (-771)) 45)) (-1386 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4414))) (((-3 |#4| "failed") $ |#3|) 80)) (-3877 (($) 46 T CONST)) (-3310 (((-112) $) 23 (|has| |#1| (-558)))) (-3367 (((-112) $ $) 25 (|has| |#1| (-558)))) (-2895 (((-112) $ $) 24 (|has| |#1| (-558)))) (-3219 (((-112) $) 26 (|has| |#1| (-558)))) (-3790 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-4239 (((-644 |#4|) (-644 |#4|) $) 19 (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) 20 (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) 37)) (-1867 (($ (-644 |#4|)) 36)) (-4112 (((-3 $ "failed") $) 83)) (-3963 ((|#4| |#4| $) 90)) (-4133 (($ $) 69 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#4| $) 68 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-558)))) (-1991 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-3517 ((|#4| |#4| $) 88)) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4414))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-4143 (((-2 (|:| -1713 (-644 |#4|)) (|:| -3537 (-644 |#4|))) $) 106)) (-3799 (((-644 |#4|) $) 53 (|has| $ (-6 -4414)))) (-2848 (((-112) |#4| $) 105) (((-112) $) 104)) (-1887 ((|#3| $) 35)) (-3501 (((-112) $ (-771)) 44)) (-3276 (((-644 |#4|) $) 54 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) 48)) (-1711 (((-644 |#3|) $) 33)) (-4113 (((-112) |#3| $) 32)) (-3582 (((-112) $ (-771)) 43)) (-2402 (((-1157) $) 10)) (-2680 (((-3 |#4| "failed") $) 84)) (-3329 (((-644 |#4|) $) 108)) (-2337 (((-112) |#4| $) 100) (((-112) $) 96)) (-1569 ((|#4| |#4| $) 91)) (-3886 (((-112) $ $) 111)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-558)))) (-2531 (((-112) |#4| $) 101) (((-112) $) 97)) (-1671 ((|#4| |#4| $) 92)) (-4056 (((-1119) $) 11)) (-4101 (((-3 |#4| "failed") $) 85)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1775 (((-3 $ "failed") $ |#4|) 79)) (-2295 (($ $ |#4|) 78)) (-3044 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) 60 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) 59 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) 58 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) 57 (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) 39)) (-3461 (((-112) $) 42)) (-1793 (($) 41)) (-2108 (((-771) $) 107)) (-4067 (((-771) |#4| $) 55 (-12 (|has| |#4| (-1099)) (|has| $ (-6 -4414)))) (((-771) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4414)))) (-3940 (($ $) 40)) (-3204 (((-538) $) 70 (|has| |#4| (-614 (-538))))) (-3791 (($ (-644 |#4|)) 61)) (-2363 (($ $ |#3|) 29)) (-3513 (($ $ |#3|) 31)) (-1360 (($ $) 89)) (-3130 (($ $ |#3|) 30)) (-3780 (((-862) $) 12) (((-644 |#4|) $) 38)) (-3542 (((-771) $) 77 (|has| |#3| (-370)))) (-3801 (((-112) $ $) 9)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-3870 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) 99)) (-1583 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4414)))) (-3830 (((-644 |#3|) $) 82)) (-3258 (((-112) |#3| $) 81)) (-2950 (((-112) $ $) 6)) (-3020 (((-771) $) 47 (|has| $ (-6 -4414)))))
(((-1207 |#1| |#2| |#3| |#4|) (-140) (-558) (-793) (-850) (-1064 |t#1| |t#2| |t#3|)) (T -1207))
-((-2343 (*1 *2 *1 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-4285 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3877 (-644 *8)))) (-5 *3 (-644 *8)) (-4 *1 (-1207 *5 *6 *7 *8)))) (-4285 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9)) (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558)) (-4 *7 (-793)) (-4 *8 (-850)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3877 (-644 *9)))) (-5 *3 (-644 *9)) (-4 *1 (-1207 *6 *7 *8 *9)))) (-1798 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *6)))) (-3992 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-771)))) (-3810 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-2 (|:| -1673 (-644 *6)) (|:| -3509 (-644 *6)))))) (-4260 (*1 *2 *3 *1) (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-4260 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-2531 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1207 *5 *6 *7 *3)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112)))) (-4390 (*1 *2 *3 *1) (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-3257 (*1 *2 *3 *1) (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-3377 (*1 *2 *3 *1) (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-3130 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-112) *7 (-644 *7))) (-4 *1 (-1207 *4 *5 *6 *7)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-4390 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-3257 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-3377 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-4362 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2)) (-4 *1 (-1207 *5 *6 *7 *2)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *2 (-1064 *5 *6 *7)))) (-3772 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-644 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1207 *5 *6 *7 *8)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)))) (-3761 (*1 *2 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-2930 (*1 *2 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-1687 (*1 *2 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-2668 (*1 *2 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-2280 (*1 *1 *1) (-12 (-4 *1 (-1207 *2 *3 *4 *5)) (-4 *2 (-558)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-1064 *2 *3 *4)))) (-4200 (*1 *2 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-1725 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1207 *4 *5 *6 *7)))) (-2072 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-644 (-2 (|:| -1673 *1) (|:| -3509 (-644 *7))))) (-5 *3 (-644 *7)) (-4 *1 (-1207 *4 *5 *6 *7)))) (-4062 (*1 *2 *1) (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-2670 (*1 *2 *1) (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-4076 (*1 *1 *1) (|partial| -12 (-4 *1 (-1207 *2 *3 *4 *5)) (-4 *2 (-558)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-1064 *2 *3 *4)))) (-1427 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *5)))) (-1369 (*1 *2 *3 *1) (-12 (-4 *1 (-1207 *4 *5 *3 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *3 (-850)) (-4 *6 (-1064 *4 *5 *3)) (-5 *2 (-112)))) (-4186 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1207 *4 *5 *3 *2)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *3 (-850)) (-4 *2 (-1064 *4 *5 *3)))) (-1583 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-1938 (*1 *1 *1 *2) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-2748 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *5 (-370)) (-5 *2 (-771)))))
-(-13 (-976 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4417) (-6 -4418) (-15 -2343 ((-112) $ $)) (-15 -4285 ((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |t#4|))) "failed") (-644 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -4285 ((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |t#4|))) "failed") (-644 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -1798 ((-644 |t#4|) $)) (-15 -3992 ((-771) $)) (-15 -3810 ((-2 (|:| -1673 (-644 |t#4|)) (|:| -3509 (-644 |t#4|))) $)) (-15 -4260 ((-112) |t#4| $)) (-15 -4260 ((-112) $)) (-15 -2531 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -4390 ((-112) |t#4| $)) (-15 -3257 ((-112) |t#4| $)) (-15 -3377 ((-112) |t#4| $)) (-15 -3130 ((-112) $ (-1 (-112) |t#4| (-644 |t#4|)))) (-15 -4390 ((-112) $)) (-15 -3257 ((-112) $)) (-15 -3377 ((-112) $)) (-15 -4362 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3772 ((-644 |t#4|) (-644 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3761 (|t#4| |t#4| $)) (-15 -2930 (|t#4| |t#4| $)) (-15 -1687 (|t#4| |t#4| $)) (-15 -2668 (|t#4| |t#4| $)) (-15 -2280 ($ $)) (-15 -4200 (|t#4| |t#4| $)) (-15 -1725 ((-644 $) (-644 |t#4|))) (-15 -2072 ((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 |t#4|)))) (-644 |t#4|))) (-15 -4062 ((-3 |t#4| "failed") $)) (-15 -2670 ((-3 |t#4| "failed") $)) (-15 -4076 ((-3 $ "failed") $)) (-15 -1427 ((-644 |t#3|) $)) (-15 -1369 ((-112) |t#3| $)) (-15 -4186 ((-3 |t#4| "failed") $ |t#3|)) (-15 -1583 ((-3 $ "failed") $ |t#4|)) (-15 -1938 ($ $ |t#4|)) (IF (|has| |t#3| (-370)) (-15 -2748 ((-771) $)) |%noBranch|)))
+((-3886 (*1 *2 *1 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-3107 (*1 *2 *3 *4) (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3918 (-644 *8)))) (-5 *3 (-644 *8)) (-4 *1 (-1207 *5 *6 *7 *8)))) (-3107 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9)) (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558)) (-4 *7 (-793)) (-4 *8 (-850)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3918 (-644 *9)))) (-5 *3 (-644 *9)) (-4 *1 (-1207 *6 *7 *8 *9)))) (-3329 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *6)))) (-2108 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-771)))) (-4143 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-2 (|:| -1713 (-644 *6)) (|:| -3537 (-644 *6)))))) (-2848 (*1 *2 *3 *1) (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-2848 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-1991 (*1 *2 *3 *1 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1207 *5 *6 *7 *3)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112)))) (-1702 (*1 *2 *3 *1) (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-2531 (*1 *2 *3 *1) (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-2337 (*1 *2 *3 *1) (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-3870 (*1 *2 *1 *3) (-12 (-5 *3 (-1 (-112) *7 (-644 *7))) (-4 *1 (-1207 *4 *5 *6 *7)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)))) (-1702 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-2531 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-2337 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))) (-1580 (*1 *2 *2 *1 *3 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2)) (-4 *1 (-1207 *5 *6 *7 *2)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *2 (-1064 *5 *6 *7)))) (-3790 (*1 *2 *2 *1 *3 *4) (-12 (-5 *2 (-644 *8)) (-5 *3 (-1 *8 *8 *8)) (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1207 *5 *6 *7 *8)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)))) (-3713 (*1 *2 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-1671 (*1 *2 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-1569 (*1 *2 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-3963 (*1 *2 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-1360 (*1 *1 *1) (-12 (-4 *1 (-1207 *2 *3 *4 *5)) (-4 *2 (-558)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-1064 *2 *3 *4)))) (-3517 (*1 *2 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-3804 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1)) (-4 *1 (-1207 *4 *5 *6 *7)))) (-3043 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-644 (-2 (|:| -1713 *1) (|:| -3537 (-644 *7))))) (-5 *3 (-644 *7)) (-4 *1 (-1207 *4 *5 *6 *7)))) (-4101 (*1 *2 *1) (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-2680 (*1 *2 *1) (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-4112 (*1 *1 *1) (|partial| -12 (-4 *1 (-1207 *2 *3 *4 *5)) (-4 *2 (-558)) (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-1064 *2 *3 *4)))) (-3830 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *5)))) (-3258 (*1 *2 *3 *1) (-12 (-4 *1 (-1207 *4 *5 *3 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *3 (-850)) (-4 *6 (-1064 *4 *5 *3)) (-5 *2 (-112)))) (-1386 (*1 *2 *1 *3) (|partial| -12 (-4 *1 (-1207 *4 *5 *3 *2)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *3 (-850)) (-4 *2 (-1064 *4 *5 *3)))) (-1775 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-2295 (*1 *1 *1 *2) (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))) (-3542 (*1 *2 *1) (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *5 (-370)) (-5 *2 (-771)))))
+(-13 (-976 |t#1| |t#2| |t#3| |t#4|) (-10 -8 (-6 -4414) (-6 -4415) (-15 -3886 ((-112) $ $)) (-15 -3107 ((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |t#4|))) "failed") (-644 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3107 ((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |t#4|))) "failed") (-644 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3329 ((-644 |t#4|) $)) (-15 -2108 ((-771) $)) (-15 -4143 ((-2 (|:| -1713 (-644 |t#4|)) (|:| -3537 (-644 |t#4|))) $)) (-15 -2848 ((-112) |t#4| $)) (-15 -2848 ((-112) $)) (-15 -1991 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -1702 ((-112) |t#4| $)) (-15 -2531 ((-112) |t#4| $)) (-15 -2337 ((-112) |t#4| $)) (-15 -3870 ((-112) $ (-1 (-112) |t#4| (-644 |t#4|)))) (-15 -1702 ((-112) $)) (-15 -2531 ((-112) $)) (-15 -2337 ((-112) $)) (-15 -1580 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3790 ((-644 |t#4|) (-644 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3713 (|t#4| |t#4| $)) (-15 -1671 (|t#4| |t#4| $)) (-15 -1569 (|t#4| |t#4| $)) (-15 -3963 (|t#4| |t#4| $)) (-15 -1360 ($ $)) (-15 -3517 (|t#4| |t#4| $)) (-15 -3804 ((-644 $) (-644 |t#4|))) (-15 -3043 ((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 |t#4|)))) (-644 |t#4|))) (-15 -4101 ((-3 |t#4| "failed") $)) (-15 -2680 ((-3 |t#4| "failed") $)) (-15 -4112 ((-3 $ "failed") $)) (-15 -3830 ((-644 |t#3|) $)) (-15 -3258 ((-112) |t#3| $)) (-15 -1386 ((-3 |t#4| "failed") $ |t#3|)) (-15 -1775 ((-3 $ "failed") $ |t#4|)) (-15 -2295 ($ $ |t#4|)) (IF (|has| |t#3| (-370)) (-15 -3542 ((-771) $)) |%noBranch|)))
(((-34) . T) ((-102) . T) ((-613 (-644 |#4|)) . T) ((-613 (-862)) . T) ((-151 |#4|) . T) ((-614 (-538)) |has| |#4| (-614 (-538))) ((-310 |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-491 |#4|) . T) ((-516 |#4| |#4|) -12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))) ((-976 |#1| |#2| |#3| |#4|) . T) ((-1099) . T) ((-1214) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-1175)) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-3235 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3215 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3259 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3768 (((-952 |#1|) $ (-771)) 20) (((-952 |#1|) $ (-771) (-771)) NIL)) (-4039 (((-112) $) NIL)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-771) $ (-1175)) NIL) (((-771) $ (-1175) (-771)) NIL)) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4367 (((-112) $) NIL)) (-2519 (($ $ (-644 (-1175)) (-644 (-533 (-1175)))) NIL) (($ $ (-1175) (-533 (-1175))) NIL) (($ |#1| (-533 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3668 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4117 (($ $ (-1175)) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4033 (((-1119) $) NIL)) (-2931 (($ (-1 $) (-1175) |#1|) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1938 (($ $ (-771)) NIL)) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-3613 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2070 (($ $ (-1175) $) NIL) (($ $ (-644 (-1175)) (-644 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL)) (-2862 (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-3992 (((-533 (-1175)) $) NIL)) (-3267 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ $) NIL (|has| |#1| (-558))) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-1175)) NIL) (($ (-952 |#1|)) NIL)) (-2022 ((|#1| $ (-533 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (((-952 |#1|) $ (-771)) NIL)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1382 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2840 (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-1208 |#1|) (-13 (-740 |#1| (-1175)) (-10 -8 (-15 -2022 ((-952 |#1|) $ (-771))) (-15 -2512 ($ (-1175))) (-15 -2512 ($ (-952 |#1|))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ($ $ (-1175) |#1|)) (-15 -2931 ($ (-1 $) (-1175) |#1|))) |%noBranch|))) (-1049)) (T -1208))
-((-2022 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-952 *4)) (-5 *1 (-1208 *4)) (-4 *4 (-1049)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1208 *3)) (-4 *3 (-1049)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-952 *3)) (-4 *3 (-1049)) (-5 *1 (-1208 *3)))) (-4117 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *1 (-1208 *3)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)))) (-2931 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1208 *4))) (-5 *3 (-1175)) (-5 *1 (-1208 *4)) (-4 *4 (-38 (-409 (-566)))) (-4 *4 (-1049)))))
-(-13 (-740 |#1| (-1175)) (-10 -8 (-15 -2022 ((-952 |#1|) $ (-771))) (-15 -2512 ($ (-1175))) (-15 -2512 ($ (-952 |#1|))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ($ $ (-1175) |#1|)) (-15 -2931 ($ (-1 $) (-1175) |#1|))) |%noBranch|)))
-((-4094 (($ |#1| (-644 (-644 (-943 (-225)))) (-112)) 19)) (-3780 (((-112) $ (-112)) 18)) (-3867 (((-112) $) 17)) (-3434 (((-644 (-644 (-943 (-225)))) $) 13)) (-2511 ((|#1| $) 8)) (-3494 (((-112) $) 15)))
-(((-1209 |#1|) (-10 -8 (-15 -2511 (|#1| $)) (-15 -3434 ((-644 (-644 (-943 (-225)))) $)) (-15 -3494 ((-112) $)) (-15 -3867 ((-112) $)) (-15 -3780 ((-112) $ (-112))) (-15 -4094 ($ |#1| (-644 (-644 (-943 (-225)))) (-112)))) (-974)) (T -1209))
-((-4094 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-112)) (-5 *1 (-1209 *2)) (-4 *2 (-974)))) (-3780 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))) (-3867 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))) (-3494 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))) (-3434 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-1209 *3)) (-4 *3 (-974)))) (-2511 (*1 *2 *1) (-12 (-5 *1 (-1209 *2)) (-4 *2 (-974)))))
-(-10 -8 (-15 -2511 (|#1| $)) (-15 -3434 ((-644 (-644 (-943 (-225)))) $)) (-15 -3494 ((-112) $)) (-15 -3867 ((-112) $)) (-15 -3780 ((-112) $ (-112))) (-15 -4094 ($ |#1| (-644 (-644 (-943 (-225)))) (-112))))
-((-3639 (((-943 (-225)) (-943 (-225))) 31)) (-1372 (((-943 (-225)) (-225) (-225) (-225) (-225)) 10)) (-4214 (((-644 (-943 (-225))) (-943 (-225)) (-943 (-225)) (-943 (-225)) (-225) (-644 (-644 (-225)))) 60)) (-1452 (((-225) (-943 (-225)) (-943 (-225))) 27)) (-2689 (((-943 (-225)) (-943 (-225)) (-943 (-225))) 28)) (-2254 (((-644 (-644 (-225))) (-566)) 48)) (-3047 (((-943 (-225)) (-943 (-225)) (-943 (-225))) 26)) (-3034 (((-943 (-225)) (-943 (-225)) (-943 (-225))) 24)) (* (((-943 (-225)) (-225) (-943 (-225))) 22)))
-(((-1210) (-10 -7 (-15 -1372 ((-943 (-225)) (-225) (-225) (-225) (-225))) (-15 * ((-943 (-225)) (-225) (-943 (-225)))) (-15 -3034 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -3047 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -1452 ((-225) (-943 (-225)) (-943 (-225)))) (-15 -2689 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -3639 ((-943 (-225)) (-943 (-225)))) (-15 -2254 ((-644 (-644 (-225))) (-566))) (-15 -4214 ((-644 (-943 (-225))) (-943 (-225)) (-943 (-225)) (-943 (-225)) (-225) (-644 (-644 (-225))))))) (T -1210))
-((-4214 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-644 (-644 (-225)))) (-5 *4 (-225)) (-5 *2 (-644 (-943 *4))) (-5 *1 (-1210)) (-5 *3 (-943 *4)))) (-2254 (*1 *2 *3) (-12 (-5 *3 (-566)) (-5 *2 (-644 (-644 (-225)))) (-5 *1 (-1210)))) (-3639 (*1 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)))) (-2689 (*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)))) (-1452 (*1 *2 *3 *3) (-12 (-5 *3 (-943 (-225))) (-5 *2 (-225)) (-5 *1 (-1210)))) (-3047 (*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)))) (-3034 (*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-943 (-225))) (-5 *3 (-225)) (-5 *1 (-1210)))) (-1372 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)) (-5 *3 (-225)))))
-(-10 -7 (-15 -1372 ((-943 (-225)) (-225) (-225) (-225) (-225))) (-15 * ((-943 (-225)) (-225) (-943 (-225)))) (-15 -3034 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -3047 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -1452 ((-225) (-943 (-225)) (-943 (-225)))) (-15 -2689 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -3639 ((-943 (-225)) (-943 (-225)))) (-15 -2254 ((-644 (-644 (-225))) (-566))) (-15 -4214 ((-644 (-943 (-225))) (-943 (-225)) (-943 (-225)) (-943 (-225)) (-225) (-644 (-644 (-225))))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4186 ((|#1| $ (-771)) 18)) (-3822 (((-771) $) 13)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-2512 (((-958 |#1|) $) 12) (($ (-958 |#1|)) 11) (((-862) $) 29 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2940 (((-112) $ $) 22 (|has| |#1| (-1099)))))
-(((-1211 |#1|) (-13 (-492 (-958 |#1|)) (-10 -8 (-15 -4186 (|#1| $ (-771))) (-15 -3822 ((-771) $)) (IF (|has| |#1| (-613 (-862))) (-6 (-613 (-862))) |%noBranch|) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|))) (-1214)) (T -1211))
-((-4186 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-1211 *2)) (-4 *2 (-1214)))) (-3822 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1211 *3)) (-4 *3 (-1214)))))
-(-13 (-492 (-958 |#1|)) (-10 -8 (-15 -4186 (|#1| $ (-771))) (-15 -3822 ((-771) $)) (IF (|has| |#1| (-613 (-862))) (-6 (-613 (-862))) |%noBranch|) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|)))
-((-3002 (((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)) (-566)) 94)) (-2431 (((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|))) 86)) (-4254 (((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|))) 70)))
-(((-1212 |#1|) (-10 -7 (-15 -2431 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)))) (-15 -4254 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)))) (-15 -3002 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)) (-566)))) (-351)) (T -1212))
-((-3002 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-4 *5 (-351)) (-5 *2 (-420 (-1171 (-1171 *5)))) (-5 *1 (-1212 *5)) (-5 *3 (-1171 (-1171 *5))))) (-4254 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-420 (-1171 (-1171 *4)))) (-5 *1 (-1212 *4)) (-5 *3 (-1171 (-1171 *4))))) (-2431 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-420 (-1171 (-1171 *4)))) (-5 *1 (-1212 *4)) (-5 *3 (-1171 (-1171 *4))))))
-(-10 -7 (-15 -2431 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)))) (-15 -4254 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)))) (-15 -3002 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)) (-566))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 9) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-1175)) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2865 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2843 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2888 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-4215 (((-952 |#1|) $ (-771)) 20) (((-952 |#1|) $ (-771) (-771)) NIL)) (-4392 (((-112) $) NIL)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-771) $ (-1175)) NIL) (((-771) $ (-1175) (-771)) NIL)) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1453 (((-112) $) NIL)) (-2585 (($ $ (-644 (-1175)) (-644 (-533 (-1175)))) NIL) (($ $ (-1175) (-533 (-1175))) NIL) (($ |#1| (-533 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3671 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-3921 (($ $ (-1175)) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175) |#1|) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4056 (((-1119) $) NIL)) (-1684 (($ (-1 $) (-1175) |#1|) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2295 (($ $ (-771)) NIL)) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-4337 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2095 (($ $ (-1175) $) NIL) (($ $ (-644 (-1175)) (-644 $)) NIL) (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL)) (-2578 (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-2108 (((-533 (-1175)) $) NIL)) (-2897 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ $) NIL (|has| |#1| (-558))) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-1175)) NIL) (($ (-952 |#1|)) NIL)) (-3756 ((|#1| $ (-533 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (((-952 |#1|) $ (-771)) NIL)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3181 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2876 (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-1208 |#1|) (-13 (-740 |#1| (-1175)) (-10 -8 (-15 -3756 ((-952 |#1|) $ (-771))) (-15 -3780 ($ (-1175))) (-15 -3780 ($ (-952 |#1|))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ($ $ (-1175) |#1|)) (-15 -1684 ($ (-1 $) (-1175) |#1|))) |%noBranch|))) (-1049)) (T -1208))
+((-3756 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-952 *4)) (-5 *1 (-1208 *4)) (-4 *4 (-1049)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1208 *3)) (-4 *3 (-1049)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-952 *3)) (-4 *3 (-1049)) (-5 *1 (-1208 *3)))) (-3921 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *1 (-1208 *3)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)))) (-1684 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1 (-1208 *4))) (-5 *3 (-1175)) (-5 *1 (-1208 *4)) (-4 *4 (-38 (-409 (-566)))) (-4 *4 (-1049)))))
+(-13 (-740 |#1| (-1175)) (-10 -8 (-15 -3756 ((-952 |#1|) $ (-771))) (-15 -3780 ($ (-1175))) (-15 -3780 ($ (-952 |#1|))) (IF (|has| |#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ($ $ (-1175) |#1|)) (-15 -1684 ($ (-1 $) (-1175) |#1|))) |%noBranch|)))
+((-1823 (($ |#1| (-644 (-644 (-943 (-225)))) (-112)) 19)) (-3863 (((-112) $ (-112)) 18)) (-3444 (((-112) $) 17)) (-1669 (((-644 (-644 (-943 (-225)))) $) 13)) (-3038 ((|#1| $) 8)) (-4136 (((-112) $) 15)))
+(((-1209 |#1|) (-10 -8 (-15 -3038 (|#1| $)) (-15 -1669 ((-644 (-644 (-943 (-225)))) $)) (-15 -4136 ((-112) $)) (-15 -3444 ((-112) $)) (-15 -3863 ((-112) $ (-112))) (-15 -1823 ($ |#1| (-644 (-644 (-943 (-225)))) (-112)))) (-974)) (T -1209))
+((-1823 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-112)) (-5 *1 (-1209 *2)) (-4 *2 (-974)))) (-3863 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))) (-3444 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))) (-4136 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))) (-1669 (*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-1209 *3)) (-4 *3 (-974)))) (-3038 (*1 *2 *1) (-12 (-5 *1 (-1209 *2)) (-4 *2 (-974)))))
+(-10 -8 (-15 -3038 (|#1| $)) (-15 -1669 ((-644 (-644 (-943 (-225)))) $)) (-15 -4136 ((-112) $)) (-15 -3444 ((-112) $)) (-15 -3863 ((-112) $ (-112))) (-15 -1823 ($ |#1| (-644 (-644 (-943 (-225)))) (-112))))
+((-3047 (((-943 (-225)) (-943 (-225))) 31)) (-1876 (((-943 (-225)) (-225) (-225) (-225) (-225)) 10)) (-3662 (((-644 (-943 (-225))) (-943 (-225)) (-943 (-225)) (-943 (-225)) (-225) (-644 (-644 (-225)))) 60)) (-4086 (((-225) (-943 (-225)) (-943 (-225))) 27)) (-4173 (((-943 (-225)) (-943 (-225)) (-943 (-225))) 28)) (-2358 (((-644 (-644 (-225))) (-566)) 48)) (-3051 (((-943 (-225)) (-943 (-225)) (-943 (-225))) 26)) (-3040 (((-943 (-225)) (-943 (-225)) (-943 (-225))) 24)) (* (((-943 (-225)) (-225) (-943 (-225))) 22)))
+(((-1210) (-10 -7 (-15 -1876 ((-943 (-225)) (-225) (-225) (-225) (-225))) (-15 * ((-943 (-225)) (-225) (-943 (-225)))) (-15 -3040 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -3051 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -4086 ((-225) (-943 (-225)) (-943 (-225)))) (-15 -4173 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -3047 ((-943 (-225)) (-943 (-225)))) (-15 -2358 ((-644 (-644 (-225))) (-566))) (-15 -3662 ((-644 (-943 (-225))) (-943 (-225)) (-943 (-225)) (-943 (-225)) (-225) (-644 (-644 (-225))))))) (T -1210))
+((-3662 (*1 *2 *3 *3 *3 *4 *5) (-12 (-5 *5 (-644 (-644 (-225)))) (-5 *4 (-225)) (-5 *2 (-644 (-943 *4))) (-5 *1 (-1210)) (-5 *3 (-943 *4)))) (-2358 (*1 *2 *3) (-12 (-5 *3 (-566)) (-5 *2 (-644 (-644 (-225)))) (-5 *1 (-1210)))) (-3047 (*1 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)))) (-4173 (*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)))) (-4086 (*1 *2 *3 *3) (-12 (-5 *3 (-943 (-225))) (-5 *2 (-225)) (-5 *1 (-1210)))) (-3051 (*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)))) (-3040 (*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)))) (* (*1 *2 *3 *2) (-12 (-5 *2 (-943 (-225))) (-5 *3 (-225)) (-5 *1 (-1210)))) (-1876 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)) (-5 *3 (-225)))))
+(-10 -7 (-15 -1876 ((-943 (-225)) (-225) (-225) (-225) (-225))) (-15 * ((-943 (-225)) (-225) (-943 (-225)))) (-15 -3040 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -3051 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -4086 ((-225) (-943 (-225)) (-943 (-225)))) (-15 -4173 ((-943 (-225)) (-943 (-225)) (-943 (-225)))) (-15 -3047 ((-943 (-225)) (-943 (-225)))) (-15 -2358 ((-644 (-644 (-225))) (-566))) (-15 -3662 ((-644 (-943 (-225))) (-943 (-225)) (-943 (-225)) (-943 (-225)) (-225) (-644 (-644 (-225))))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1386 ((|#1| $ (-771)) 18)) (-3945 (((-771) $) 13)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-3780 (((-958 |#1|) $) 12) (($ (-958 |#1|)) 11) (((-862) $) 29 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2950 (((-112) $ $) 22 (|has| |#1| (-1099)))))
+(((-1211 |#1|) (-13 (-492 (-958 |#1|)) (-10 -8 (-15 -1386 (|#1| $ (-771))) (-15 -3945 ((-771) $)) (IF (|has| |#1| (-613 (-862))) (-6 (-613 (-862))) |%noBranch|) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|))) (-1214)) (T -1211))
+((-1386 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-1211 *2)) (-4 *2 (-1214)))) (-3945 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1211 *3)) (-4 *3 (-1214)))))
+(-13 (-492 (-958 |#1|)) (-10 -8 (-15 -1386 (|#1| $ (-771))) (-15 -3945 ((-771) $)) (IF (|has| |#1| (-613 (-862))) (-6 (-613 (-862))) |%noBranch|) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|)))
+((-2151 (((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)) (-566)) 94)) (-3494 (((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|))) 86)) (-2806 (((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|))) 70)))
+(((-1212 |#1|) (-10 -7 (-15 -3494 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)))) (-15 -2806 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)))) (-15 -2151 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)) (-566)))) (-351)) (T -1212))
+((-2151 (*1 *2 *3 *4) (-12 (-5 *4 (-566)) (-4 *5 (-351)) (-5 *2 (-420 (-1171 (-1171 *5)))) (-5 *1 (-1212 *5)) (-5 *3 (-1171 (-1171 *5))))) (-2806 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-420 (-1171 (-1171 *4)))) (-5 *1 (-1212 *4)) (-5 *3 (-1171 (-1171 *4))))) (-3494 (*1 *2 *3) (-12 (-4 *4 (-351)) (-5 *2 (-420 (-1171 (-1171 *4)))) (-5 *1 (-1212 *4)) (-5 *3 (-1171 (-1171 *4))))))
+(-10 -7 (-15 -3494 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)))) (-15 -2806 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)))) (-15 -2151 ((-420 (-1171 (-1171 |#1|))) (-1171 (-1171 |#1|)) (-566))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 9) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
(((-1213) (-1082)) (T -1213))
NIL
(-1082)
NIL
(((-1214) (-140)) (T -1214))
NIL
-(-13 (-10 -7 (-6 -3612)))
-((-1849 (((-112)) 18)) (-2541 (((-1269) (-644 |#1|) (-644 |#1|)) 22) (((-1269) (-644 |#1|)) 23)) (-2744 (((-112) |#1| |#1|) 38 (|has| |#1| (-850)))) (-3882 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 30) (((-3 (-112) "failed") |#1| |#1|) 28)) (-2876 ((|#1| (-644 |#1|)) 39 (|has| |#1| (-850))) ((|#1| (-644 |#1|) (-1 (-112) |#1| |#1|)) 33)) (-3793 (((-2 (|:| -3753 (-644 |#1|)) (|:| -3885 (-644 |#1|)))) 20)))
-(((-1215 |#1|) (-10 -7 (-15 -2541 ((-1269) (-644 |#1|))) (-15 -2541 ((-1269) (-644 |#1|) (-644 |#1|))) (-15 -3793 ((-2 (|:| -3753 (-644 |#1|)) (|:| -3885 (-644 |#1|))))) (-15 -3882 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3882 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -2876 (|#1| (-644 |#1|) (-1 (-112) |#1| |#1|))) (-15 -1849 ((-112))) (IF (|has| |#1| (-850)) (PROGN (-15 -2876 (|#1| (-644 |#1|))) (-15 -2744 ((-112) |#1| |#1|))) |%noBranch|)) (-1099)) (T -1215))
-((-2744 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-850)) (-4 *3 (-1099)))) (-2876 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-850)) (-5 *1 (-1215 *2)))) (-1849 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-1099)))) (-2876 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1215 *2)) (-4 *2 (-1099)))) (-3882 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1099)) (-5 *2 (-112)) (-5 *1 (-1215 *3)))) (-3882 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-1099)))) (-3793 (*1 *2) (-12 (-5 *2 (-2 (|:| -3753 (-644 *3)) (|:| -3885 (-644 *3)))) (-5 *1 (-1215 *3)) (-4 *3 (-1099)))) (-2541 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-5 *2 (-1269)) (-5 *1 (-1215 *4)))) (-2541 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-5 *2 (-1269)) (-5 *1 (-1215 *4)))))
-(-10 -7 (-15 -2541 ((-1269) (-644 |#1|))) (-15 -2541 ((-1269) (-644 |#1|) (-644 |#1|))) (-15 -3793 ((-2 (|:| -3753 (-644 |#1|)) (|:| -3885 (-644 |#1|))))) (-15 -3882 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3882 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -2876 (|#1| (-644 |#1|) (-1 (-112) |#1| |#1|))) (-15 -1849 ((-112))) (IF (|has| |#1| (-850)) (PROGN (-15 -2876 (|#1| (-644 |#1|))) (-15 -2744 ((-112) |#1| |#1|))) |%noBranch|))
-((-3835 (((-1269) (-644 (-1175)) (-644 (-1175))) 14) (((-1269) (-644 (-1175))) 12)) (-2882 (((-1269)) 16)) (-4216 (((-2 (|:| -3885 (-644 (-1175))) (|:| -3753 (-644 (-1175))))) 20)))
-(((-1216) (-10 -7 (-15 -3835 ((-1269) (-644 (-1175)))) (-15 -3835 ((-1269) (-644 (-1175)) (-644 (-1175)))) (-15 -4216 ((-2 (|:| -3885 (-644 (-1175))) (|:| -3753 (-644 (-1175)))))) (-15 -2882 ((-1269))))) (T -1216))
-((-2882 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1216)))) (-4216 (*1 *2) (-12 (-5 *2 (-2 (|:| -3885 (-644 (-1175))) (|:| -3753 (-644 (-1175))))) (-5 *1 (-1216)))) (-3835 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1216)))) (-3835 (*1 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1216)))))
-(-10 -7 (-15 -3835 ((-1269) (-644 (-1175)))) (-15 -3835 ((-1269) (-644 (-1175)) (-644 (-1175)))) (-15 -4216 ((-2 (|:| -3885 (-644 (-1175))) (|:| -3753 (-644 (-1175)))))) (-15 -2882 ((-1269))))
-((-2857 (($ $) 17)) (-2635 (((-112) $) 28)))
-(((-1217 |#1|) (-10 -8 (-15 -2857 (|#1| |#1|)) (-15 -2635 ((-112) |#1|))) (-1218)) (T -1217))
-NIL
-(-10 -8 (-15 -2857 (|#1| |#1|)) (-15 -2635 ((-112) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 57)) (-1370 (((-420 $) $) 58)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2635 (((-112) $) 59)) (-2741 (((-112) $) 35)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-2391 (((-420 $) $) 56)) (-2972 (((-3 $ "failed") $ $) 48)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
+(-13 (-10 -7 (-6 -3618)))
+((-2619 (((-112)) 18)) (-2081 (((-1269) (-644 |#1|) (-644 |#1|)) 22) (((-1269) (-644 |#1|)) 23)) (-3501 (((-112) |#1| |#1|) 38 (|has| |#1| (-850)))) (-3582 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 30) (((-3 (-112) "failed") |#1| |#1|) 28)) (-2382 ((|#1| (-644 |#1|)) 39 (|has| |#1| (-850))) ((|#1| (-644 |#1|) (-1 (-112) |#1| |#1|)) 33)) (-3985 (((-2 (|:| -1762 (-644 |#1|)) (|:| -3603 (-644 |#1|)))) 20)))
+(((-1215 |#1|) (-10 -7 (-15 -2081 ((-1269) (-644 |#1|))) (-15 -2081 ((-1269) (-644 |#1|) (-644 |#1|))) (-15 -3985 ((-2 (|:| -1762 (-644 |#1|)) (|:| -3603 (-644 |#1|))))) (-15 -3582 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3582 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -2382 (|#1| (-644 |#1|) (-1 (-112) |#1| |#1|))) (-15 -2619 ((-112))) (IF (|has| |#1| (-850)) (PROGN (-15 -2382 (|#1| (-644 |#1|))) (-15 -3501 ((-112) |#1| |#1|))) |%noBranch|)) (-1099)) (T -1215))
+((-3501 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-850)) (-4 *3 (-1099)))) (-2382 (*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-850)) (-5 *1 (-1215 *2)))) (-2619 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-1099)))) (-2382 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1215 *2)) (-4 *2 (-1099)))) (-3582 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1099)) (-5 *2 (-112)) (-5 *1 (-1215 *3)))) (-3582 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-1099)))) (-3985 (*1 *2) (-12 (-5 *2 (-2 (|:| -1762 (-644 *3)) (|:| -3603 (-644 *3)))) (-5 *1 (-1215 *3)) (-4 *3 (-1099)))) (-2081 (*1 *2 *3 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-5 *2 (-1269)) (-5 *1 (-1215 *4)))) (-2081 (*1 *2 *3) (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-5 *2 (-1269)) (-5 *1 (-1215 *4)))))
+(-10 -7 (-15 -2081 ((-1269) (-644 |#1|))) (-15 -2081 ((-1269) (-644 |#1|) (-644 |#1|))) (-15 -3985 ((-2 (|:| -1762 (-644 |#1|)) (|:| -3603 (-644 |#1|))))) (-15 -3582 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3582 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -2382 (|#1| (-644 |#1|) (-1 (-112) |#1| |#1|))) (-15 -2619 ((-112))) (IF (|has| |#1| (-850)) (PROGN (-15 -2382 (|#1| (-644 |#1|))) (-15 -3501 ((-112) |#1| |#1|))) |%noBranch|))
+((-3163 (((-1269) (-644 (-1175)) (-644 (-1175))) 14) (((-1269) (-644 (-1175))) 12)) (-2449 (((-1269)) 16)) (-3679 (((-2 (|:| -3603 (-644 (-1175))) (|:| -1762 (-644 (-1175))))) 20)))
+(((-1216) (-10 -7 (-15 -3163 ((-1269) (-644 (-1175)))) (-15 -3163 ((-1269) (-644 (-1175)) (-644 (-1175)))) (-15 -3679 ((-2 (|:| -3603 (-644 (-1175))) (|:| -1762 (-644 (-1175)))))) (-15 -2449 ((-1269))))) (T -1216))
+((-2449 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1216)))) (-3679 (*1 *2) (-12 (-5 *2 (-2 (|:| -3603 (-644 (-1175))) (|:| -1762 (-644 (-1175))))) (-5 *1 (-1216)))) (-3163 (*1 *2 *3 *3) (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1216)))) (-3163 (*1 *2 *3) (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1216)))))
+(-10 -7 (-15 -3163 ((-1269) (-644 (-1175)))) (-15 -3163 ((-1269) (-644 (-1175)) (-644 (-1175)))) (-15 -3679 ((-2 (|:| -3603 (-644 (-1175))) (|:| -1762 (-644 (-1175)))))) (-15 -2449 ((-1269))))
+((-2179 (($ $) 17)) (-1784 (((-112) $) 28)))
+(((-1217 |#1|) (-10 -8 (-15 -2179 (|#1| |#1|)) (-15 -1784 ((-112) |#1|))) (-1218)) (T -1217))
+NIL
+(-10 -8 (-15 -2179 (|#1| |#1|)) (-15 -1784 ((-112) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 57)) (-3271 (((-420 $) $) 58)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-1784 (((-112) $) 59)) (-3466 (((-112) $) 35)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2473 (((-420 $) $) 56)) (-2997 (((-3 $ "failed") $ $) 48)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27)))
(((-1218) (-140)) (T -1218))
-((-2635 (*1 *2 *1) (-12 (-4 *1 (-1218)) (-5 *2 (-112)))) (-1370 (*1 *2 *1) (-12 (-5 *2 (-420 *1)) (-4 *1 (-1218)))) (-2857 (*1 *1 *1) (-4 *1 (-1218))) (-2391 (*1 *2 *1) (-12 (-5 *2 (-420 *1)) (-4 *1 (-1218)))))
-(-13 (-454) (-10 -8 (-15 -2635 ((-112) $)) (-15 -1370 ((-420 $) $)) (-15 -2857 ($ $)) (-15 -2391 ((-420 $) $))))
+((-1784 (*1 *2 *1) (-12 (-4 *1 (-1218)) (-5 *2 (-112)))) (-3271 (*1 *2 *1) (-12 (-5 *2 (-420 *1)) (-4 *1 (-1218)))) (-2179 (*1 *1 *1) (-4 *1 (-1218))) (-2473 (*1 *2 *1) (-12 (-5 *2 (-420 *1)) (-4 *1 (-1218)))))
+(-13 (-454) (-10 -8 (-15 -1784 ((-112) $)) (-15 -3271 ((-420 $) $)) (-15 -2179 ($ $)) (-15 -2473 ((-420 $) $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 $) . T) ((-102) . T) ((-111 $ $) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-291) . T) ((-454) . T) ((-558) . T) ((-646 (-566)) . T) ((-646 $) . T) ((-648 $) . T) ((-640 $) . T) ((-717 $) . T) ((-726) . T) ((-1051 $) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) NIL T CONST)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3712 (((-921) $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-2370 (($ $ $) NIL)) (-2359 (($ $ $) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
-(((-1219) (-13 (-844) (-10 -8 (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))) (T -1219))
-((-2359 (*1 *1 *1 *1) (-5 *1 (-1219))) (-2370 (*1 *1 *1 *1) (-5 *1 (-1219))) (-2342 (*1 *1) (-5 *1 (-1219))))
-(-13 (-844) (-10 -8 (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) NIL T CONST)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1299 (((-921) $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-2384 (($ $ $) NIL)) (-2372 (($ $ $) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
+(((-1219) (-13 (-844) (-10 -8 (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))) (T -1219))
+((-2372 (*1 *1 *1 *1) (-5 *1 (-1219))) (-2384 (*1 *1 *1 *1) (-5 *1 (-1219))) (-3877 (*1 *1) (-5 *1 (-1219))))
+(-13 (-844) (-10 -8 (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 16)))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) NIL T CONST)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3712 (((-921) $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-2370 (($ $ $) NIL)) (-2359 (($ $ $) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
-(((-1220) (-13 (-844) (-10 -8 (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))) (T -1220))
-((-2359 (*1 *1 *1 *1) (-5 *1 (-1220))) (-2370 (*1 *1 *1 *1) (-5 *1 (-1220))) (-2342 (*1 *1) (-5 *1 (-1220))))
-(-13 (-844) (-10 -8 (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) NIL T CONST)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1299 (((-921) $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-2384 (($ $ $) NIL)) (-2372 (($ $ $) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
+(((-1220) (-13 (-844) (-10 -8 (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))) (T -1220))
+((-2372 (*1 *1 *1 *1) (-5 *1 (-1220))) (-2384 (*1 *1 *1 *1) (-5 *1 (-1220))) (-3877 (*1 *1) (-5 *1 (-1220))))
+(-13 (-844) (-10 -8 (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 32)))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) NIL T CONST)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3712 (((-921) $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-2370 (($ $ $) NIL)) (-2359 (($ $ $) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
-(((-1221) (-13 (-844) (-10 -8 (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))) (T -1221))
-((-2359 (*1 *1 *1 *1) (-5 *1 (-1221))) (-2370 (*1 *1 *1 *1) (-5 *1 (-1221))) (-2342 (*1 *1) (-5 *1 (-1221))))
-(-13 (-844) (-10 -8 (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) NIL T CONST)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1299 (((-921) $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-2384 (($ $ $) NIL)) (-2372 (($ $ $) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
+(((-1221) (-13 (-844) (-10 -8 (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))) (T -1221))
+((-2372 (*1 *1 *1 *1) (-5 *1 (-1221))) (-2384 (*1 *1 *1 *1) (-5 *1 (-1221))) (-3877 (*1 *1) (-5 *1 (-1221))))
+(-13 (-844) (-10 -8 (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 64)))
-((-2985 (((-112) $ $) NIL)) (-4025 (((-771)) NIL)) (-2342 (($) NIL T CONST)) (-3335 (($) NIL)) (-1439 (($ $ $) NIL) (($) NIL T CONST)) (-3059 (($ $ $) NIL) (($) NIL T CONST)) (-3712 (((-921) $) NIL)) (-2878 (((-1157) $) NIL)) (-2168 (($ (-921)) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) NIL)) (-2370 (($ $ $) NIL)) (-2359 (($ $ $) NIL)) (-3122 (((-112) $ $) NIL)) (-2998 (((-112) $ $) NIL)) (-2974 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL)) (-2962 (((-112) $ $) NIL)))
-(((-1222) (-13 (-844) (-10 -8 (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))) (T -1222))
-((-2359 (*1 *1 *1 *1) (-5 *1 (-1222))) (-2370 (*1 *1 *1 *1) (-5 *1 (-1222))) (-2342 (*1 *1) (-5 *1 (-1222))))
-(-13 (-844) (-10 -8 (-15 -2359 ($ $ $)) (-15 -2370 ($ $ $)) (-15 -2342 ($) -1655)))
+((-3009 (((-112) $ $) NIL)) (-4070 (((-771)) NIL)) (-3877 (($) NIL T CONST)) (-1618 (($) NIL)) (-1945 (($ $ $) NIL) (($) NIL T CONST)) (-2709 (($ $ $) NIL) (($) NIL T CONST)) (-1299 (((-921) $) NIL)) (-2402 (((-1157) $) NIL)) (-2208 (($ (-921)) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) NIL)) (-2384 (($ $ $) NIL)) (-2372 (($ $ $) NIL)) (-3801 (((-112) $ $) NIL)) (-3010 (((-112) $ $) NIL)) (-2984 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL)) (-2972 (((-112) $ $) NIL)))
+(((-1222) (-13 (-844) (-10 -8 (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))) (T -1222))
+((-2372 (*1 *1 *1 *1) (-5 *1 (-1222))) (-2384 (*1 *1 *1 *1) (-5 *1 (-1222))) (-3877 (*1 *1) (-5 *1 (-1222))))
+(-13 (-844) (-10 -8 (-15 -2372 ($ $ $)) (-15 -2384 ($ $ $)) (-15 -3877 ($) -2460)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 8)))
-((-3077 (((-1228 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1228 |#1| |#3| |#5|)) 23)))
-(((-1223 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3077 ((-1228 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1228 |#1| |#3| |#5|)))) (-1049) (-1049) (-1175) (-1175) |#1| |#2|) (T -1223))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1228 *5 *7 *9)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-14 *7 (-1175)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1228 *6 *8 *10)) (-5 *1 (-1223 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1175)))))
-(-10 -7 (-15 -3077 ((-1228 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1228 |#1| |#3| |#5|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2540 (((-644 (-1081)) $) 86)) (-1353 (((-1175) $) 115)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-3653 (($ $) 64 (|has| |#1| (-558)))) (-2152 (((-112) $) 66 (|has| |#1| (-558)))) (-1881 (($ $ (-566)) 110) (($ $ (-566) (-566)) 109)) (-1530 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) 117)) (-3235 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 174 (|has| |#1| (-365)))) (-1370 (((-420 $) $) 175 (|has| |#1| (-365)))) (-2402 (($ $) 129 (|has| |#1| (-38 (-409 (-566)))))) (-1561 (((-112) $ $) 165 (|has| |#1| (-365)))) (-3215 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 131 (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) 185)) (-3259 (($ $) 145 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) 18 T CONST)) (-2926 (($ $ $) 169 (|has| |#1| (-365)))) (-3577 (($ $) 72)) (-1579 (((-3 $ "failed") $) 37)) (-3528 (((-409 (-952 |#1|)) $ (-566)) 183 (|has| |#1| (-558))) (((-409 (-952 |#1|)) $ (-566) (-566)) 182 (|has| |#1| (-558)))) (-2938 (($ $ $) 168 (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 163 (|has| |#1| (-365)))) (-2635 (((-112) $) 176 (|has| |#1| (-365)))) (-4039 (((-112) $) 85)) (-3035 (($) 157 (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-566) $) 112) (((-566) $ (-566)) 111)) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 128 (|has| |#1| (-38 (-409 (-566)))))) (-3432 (($ $ (-921)) 113)) (-2153 (($ (-1 |#1| (-566)) $) 184)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 172 (|has| |#1| (-365)))) (-4367 (((-112) $) 74)) (-2519 (($ |#1| (-566)) 73) (($ $ (-1081) (-566)) 88) (($ $ (-644 (-1081)) (-644 (-566))) 87)) (-3077 (($ (-1 |#1| |#1|) $) 75)) (-3668 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) 77)) (-3557 ((|#1| $) 78)) (-2184 (($ (-644 $)) 161 (|has| |#1| (-365))) (($ $ $) 160 (|has| |#1| (-365)))) (-2878 (((-1157) $) 10)) (-2626 (($ $) 177 (|has| |#1| (-365)))) (-4117 (($ $) 181 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 180 (-2805 (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-959)) (|has| |#1| (-1199)) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-38 (-409 (-566)))))))) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 162 (|has| |#1| (-365)))) (-2222 (($ (-644 $)) 159 (|has| |#1| (-365))) (($ $ $) 158 (|has| |#1| (-365)))) (-2391 (((-420 $) $) 173 (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 170 (|has| |#1| (-365)))) (-1938 (($ $ (-566)) 107)) (-2972 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 164 (|has| |#1| (-365)))) (-3613 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-566)))))) (-1813 (((-771) $) 166 (|has| |#1| (-365)))) (-4386 ((|#1| $ (-566)) 116) (($ $ $) 93 (|has| (-566) (-1111)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 167 (|has| |#1| (-365)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) 101 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-1175) (-771)) 100 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175))) 99 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-1175)) 98 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-771)) 96 (|has| |#1| (-15 * (|#1| (-566) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (-3992 (((-566) $) 76)) (-3267 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 133 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 143 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 135 (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) 84)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 59 (|has| |#1| (-172))) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558)))) (-2022 ((|#1| $ (-566)) 71)) (-3842 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-2420 ((|#1| $) 114)) (-3122 (((-112) $ $) 9)) (-3302 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 141 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) 65 (|has| |#1| (-558)))) (-3279 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-566)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) 105 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-1175) (-771)) 104 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175))) 103 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-1175)) 102 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-771)) 97 (|has| |#1| (-15 * (|#1| (-566) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 70 (|has| |#1| (-365))) (($ $ $) 179 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 178 (|has| |#1| (-365))) (($ $ $) 156 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 127 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
+((-3152 (((-1228 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1228 |#1| |#3| |#5|)) 23)))
+(((-1223 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3152 ((-1228 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1228 |#1| |#3| |#5|)))) (-1049) (-1049) (-1175) (-1175) |#1| |#2|) (T -1223))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1228 *5 *7 *9)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-14 *7 (-1175)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1228 *6 *8 *10)) (-5 *1 (-1223 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1175)))))
+(-10 -7 (-15 -3152 ((-1228 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1228 |#1| |#3| |#5|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2608 (((-644 (-1081)) $) 86)) (-1401 (((-1175) $) 115)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-1968 (($ $) 64 (|has| |#1| (-558)))) (-2644 (((-112) $) 66 (|has| |#1| (-558)))) (-2922 (($ $ (-566)) 110) (($ $ (-566) (-566)) 109)) (-2455 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) 117)) (-2865 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 174 (|has| |#1| (-365)))) (-3271 (((-420 $) $) 175 (|has| |#1| (-365)))) (-2484 (($ $) 129 (|has| |#1| (-38 (-409 (-566)))))) (-2738 (((-112) $ $) 165 (|has| |#1| (-365)))) (-2843 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 131 (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) 185)) (-2888 (($ $) 145 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) 18 T CONST)) (-2949 (($ $ $) 169 (|has| |#1| (-365)))) (-3645 (($ $) 72)) (-2928 (((-3 $ "failed") $) 37)) (-3240 (((-409 (-952 |#1|)) $ (-566)) 183 (|has| |#1| (-558))) (((-409 (-952 |#1|)) $ (-566) (-566)) 182 (|has| |#1| (-558)))) (-2960 (($ $ $) 168 (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 163 (|has| |#1| (-365)))) (-1784 (((-112) $) 176 (|has| |#1| (-365)))) (-4392 (((-112) $) 85)) (-3120 (($) 157 (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-566) $) 112) (((-566) $ (-566)) 111)) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 128 (|has| |#1| (-38 (-409 (-566)))))) (-1644 (($ $ (-921)) 113)) (-2654 (($ (-1 |#1| (-566)) $) 184)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 172 (|has| |#1| (-365)))) (-1453 (((-112) $) 74)) (-2585 (($ |#1| (-566)) 73) (($ $ (-1081) (-566)) 88) (($ $ (-644 (-1081)) (-644 (-566))) 87)) (-3152 (($ (-1 |#1| |#1|) $) 75)) (-3671 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) 77)) (-3626 ((|#1| $) 78)) (-2197 (($ (-644 $)) 161 (|has| |#1| (-365))) (($ $ $) 160 (|has| |#1| (-365)))) (-2402 (((-1157) $) 10)) (-3584 (($ $) 177 (|has| |#1| (-365)))) (-3921 (($ $) 181 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 180 (-2805 (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-959)) (|has| |#1| (-1199)) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-38 (-409 (-566)))))))) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 162 (|has| |#1| (-365)))) (-2235 (($ (-644 $)) 159 (|has| |#1| (-365))) (($ $ $) 158 (|has| |#1| (-365)))) (-2473 (((-420 $) $) 173 (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 170 (|has| |#1| (-365)))) (-2295 (($ $ (-566)) 107)) (-2997 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 164 (|has| |#1| (-365)))) (-4337 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-566)))))) (-3470 (((-771) $) 166 (|has| |#1| (-365)))) (-4393 ((|#1| $ (-566)) 116) (($ $ $) 93 (|has| (-566) (-1111)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 167 (|has| |#1| (-365)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) 101 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-1175) (-771)) 100 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175))) 99 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-1175)) 98 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-771)) 96 (|has| |#1| (-15 * (|#1| (-566) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (-2108 (((-566) $) 76)) (-2897 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 133 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 143 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 135 (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) 84)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 59 (|has| |#1| (-172))) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558)))) (-3756 ((|#1| $ (-566)) 71)) (-3226 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3174 ((|#1| $) 114)) (-3801 (((-112) $ $) 9)) (-2931 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 141 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2907 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-566)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) 105 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-1175) (-771)) 104 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175))) 103 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-1175)) 102 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-771)) 97 (|has| |#1| (-15 * (|#1| (-566) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 70 (|has| |#1| (-365))) (($ $ $) 179 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 178 (|has| |#1| (-365))) (($ $ $) 156 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 127 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
(((-1224 |#1|) (-140) (-1049)) (T -1224))
-((-1401 (*1 *1 *2) (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3)))) (-4 *3 (-1049)) (-4 *1 (-1224 *3)))) (-2153 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-566))) (-4 *1 (-1224 *3)) (-4 *3 (-1049)))) (-3528 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1224 *4)) (-4 *4 (-1049)) (-4 *4 (-558)) (-5 *2 (-409 (-952 *4))))) (-3528 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1224 *4)) (-4 *4 (-1049)) (-4 *4 (-558)) (-5 *2 (-409 (-952 *4))))) (-4117 (*1 *1 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566)))))) (-4117 (*1 *1 *1 *2) (-2805 (-12 (-5 *2 (-1175)) (-4 *1 (-1224 *3)) (-4 *3 (-1049)) (-12 (-4 *3 (-29 (-566))) (-4 *3 (-959)) (-4 *3 (-1199)) (-4 *3 (-38 (-409 (-566)))))) (-12 (-5 *2 (-1175)) (-4 *1 (-1224 *3)) (-4 *3 (-1049)) (-12 (|has| *3 (-15 -2540 ((-644 *2) *3))) (|has| *3 (-15 -4117 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566)))))))))
-(-13 (-1242 |t#1| (-566)) (-10 -8 (-15 -1401 ($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |t#1|))))) (-15 -2153 ($ (-1 |t#1| (-566)) $)) (IF (|has| |t#1| (-558)) (PROGN (-15 -3528 ((-409 (-952 |t#1|)) $ (-566))) (-15 -3528 ((-409 (-952 |t#1|)) $ (-566) (-566)))) |%noBranch|) (IF (|has| |t#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ($ $)) (IF (|has| |t#1| (-15 -4117 (|t#1| |t#1| (-1175)))) (IF (|has| |t#1| (-15 -2540 ((-644 (-1175)) |t#1|))) (-15 -4117 ($ $ (-1175))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1199)) (IF (|has| |t#1| (-959)) (IF (|has| |t#1| (-29 (-566))) (-15 -4117 ($ $ (-1175))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1002)) (-6 (-1199))) |%noBranch|) (IF (|has| |t#1| (-365)) (-6 (-365)) |%noBranch|)))
+((-1903 (*1 *1 *2) (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3)))) (-4 *3 (-1049)) (-4 *1 (-1224 *3)))) (-2654 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-566))) (-4 *1 (-1224 *3)) (-4 *3 (-1049)))) (-3240 (*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1224 *4)) (-4 *4 (-1049)) (-4 *4 (-558)) (-5 *2 (-409 (-952 *4))))) (-3240 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-4 *1 (-1224 *4)) (-4 *4 (-1049)) (-4 *4 (-558)) (-5 *2 (-409 (-952 *4))))) (-3921 (*1 *1 *1) (-12 (-4 *1 (-1224 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566)))))) (-3921 (*1 *1 *1 *2) (-2805 (-12 (-5 *2 (-1175)) (-4 *1 (-1224 *3)) (-4 *3 (-1049)) (-12 (-4 *3 (-29 (-566))) (-4 *3 (-959)) (-4 *3 (-1199)) (-4 *3 (-38 (-409 (-566)))))) (-12 (-5 *2 (-1175)) (-4 *1 (-1224 *3)) (-4 *3 (-1049)) (-12 (|has| *3 (-15 -2608 ((-644 *2) *3))) (|has| *3 (-15 -3921 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566)))))))))
+(-13 (-1242 |t#1| (-566)) (-10 -8 (-15 -1903 ($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |t#1|))))) (-15 -2654 ($ (-1 |t#1| (-566)) $)) (IF (|has| |t#1| (-558)) (PROGN (-15 -3240 ((-409 (-952 |t#1|)) $ (-566))) (-15 -3240 ((-409 (-952 |t#1|)) $ (-566) (-566)))) |%noBranch|) (IF (|has| |t#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ($ $)) (IF (|has| |t#1| (-15 -3921 (|t#1| |t#1| (-1175)))) (IF (|has| |t#1| (-15 -2608 ((-644 (-1175)) |t#1|))) (-15 -3921 ($ $ (-1175))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1199)) (IF (|has| |t#1| (-959)) (IF (|has| |t#1| (-29 (-566))) (-15 -3921 ($ $ (-1175))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1002)) (-6 (-1199))) |%noBranch|) (IF (|has| |t#1| (-365)) (-6 (-365)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-566)) . T) ((-25) . T) ((-38 #1=(-409 (-566))) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-35) |has| |#1| (-38 (-409 (-566)))) ((-95) |has| |#1| (-38 (-409 (-566)))) ((-102) . T) ((-111 #1# #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-616 (-566)) . T) ((-616 |#1|) |has| |#1| (-172)) ((-616 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-566) |#1|))) ((-243) |has| |#1| (-365)) ((-285) |has| |#1| (-38 (-409 (-566)))) ((-287 $ $) |has| (-566) (-1111)) ((-291) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-308) |has| |#1| (-365)) ((-365) |has| |#1| (-365)) ((-454) |has| |#1| (-365)) ((-495) |has| |#1| (-38 (-409 (-566)))) ((-558) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-646 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-717 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-726) . T) ((-900 (-1175)) -12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))) ((-973 |#1| #0# (-1081)) . T) ((-920) |has| |#1| (-365)) ((-1002) |has| |#1| (-38 (-409 (-566)))) ((-1051 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-1056 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1199) |has| |#1| (-38 (-409 (-566)))) ((-1202) |has| |#1| (-38 (-409 (-566)))) ((-1218) |has| |#1| (-365)) ((-1242 |#1| #0#) . T))
-((-3958 (((-112) $) 12)) (-2977 (((-3 |#3| "failed") $) 17) (((-3 (-1175) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) NIL)) (-1756 ((|#3| $) 14) (((-1175) $) NIL) (((-409 (-566)) $) NIL) (((-566) $) NIL)))
-(((-1225 |#1| |#2| |#3|) (-10 -8 (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-1175) "failed") |#1|)) (-15 -1756 ((-1175) |#1|)) (-15 -2977 ((-3 |#3| "failed") |#1|)) (-15 -1756 (|#3| |#1|)) (-15 -3958 ((-112) |#1|))) (-1226 |#2| |#3|) (-1049) (-1255 |#2|)) (T -1225))
+((-3015 (((-112) $) 12)) (-3066 (((-3 |#3| "failed") $) 17) (((-3 (-1175) "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) NIL)) (-1867 ((|#3| $) 14) (((-1175) $) NIL) (((-409 (-566)) $) NIL) (((-566) $) NIL)))
+(((-1225 |#1| |#2| |#3|) (-10 -8 (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-1175) "failed") |#1|)) (-15 -1867 ((-1175) |#1|)) (-15 -3066 ((-3 |#3| "failed") |#1|)) (-15 -1867 (|#3| |#1|)) (-15 -3015 ((-112) |#1|))) (-1226 |#2| |#3|) (-1049) (-1255 |#2|)) (T -1225))
NIL
-(-10 -8 (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -2977 ((-3 (-1175) "failed") |#1|)) (-15 -1756 ((-1175) |#1|)) (-15 -2977 ((-3 |#3| "failed") |#1|)) (-15 -1756 (|#3| |#1|)) (-15 -3958 ((-112) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2452 ((|#2| $) 242 (-2438 (|has| |#2| (-308)) (|has| |#1| (-365))))) (-2540 (((-644 (-1081)) $) 86)) (-1353 (((-1175) $) 115)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-3653 (($ $) 64 (|has| |#1| (-558)))) (-2152 (((-112) $) 66 (|has| |#1| (-558)))) (-1881 (($ $ (-566)) 110) (($ $ (-566) (-566)) 109)) (-1530 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) 117)) (-4297 ((|#2| $) 278)) (-1337 (((-3 |#2| "failed") $) 274)) (-2590 ((|#2| $) 275)) (-3235 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) 20)) (-2055 (((-420 (-1171 $)) (-1171 $)) 251 (-2438 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-2857 (($ $) 174 (|has| |#1| (-365)))) (-1370 (((-420 $) $) 175 (|has| |#1| (-365)))) (-2402 (($ $) 129 (|has| |#1| (-38 (-409 (-566)))))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 248 (-2438 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-1561 (((-112) $ $) 165 (|has| |#1| (-365)))) (-3215 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 131 (|has| |#1| (-38 (-409 (-566)))))) (-2807 (((-566) $) 260 (-2438 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-1401 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) 185)) (-3259 (($ $) 145 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#2| "failed") $) 281) (((-3 (-566) "failed") $) 271 (-2438 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-409 (-566)) "failed") $) 269 (-2438 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-1175) "failed") $) 253 (-2438 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365))))) (-1756 ((|#2| $) 282) (((-566) $) 270 (-2438 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-409 (-566)) $) 268 (-2438 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-1175) $) 252 (-2438 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365))))) (-1669 (($ $) 277) (($ (-566) $) 276)) (-2926 (($ $ $) 169 (|has| |#1| (-365)))) (-3577 (($ $) 72)) (-1628 (((-689 |#2|) (-689 $)) 232 (|has| |#1| (-365))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 231 (|has| |#1| (-365))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 230 (-2438 (|has| |#2| (-639 (-566))) (|has| |#1| (-365)))) (((-689 (-566)) (-689 $)) 229 (-2438 (|has| |#2| (-639 (-566))) (|has| |#1| (-365))))) (-1579 (((-3 $ "failed") $) 37)) (-3528 (((-409 (-952 |#1|)) $ (-566)) 183 (|has| |#1| (-558))) (((-409 (-952 |#1|)) $ (-566) (-566)) 182 (|has| |#1| (-558)))) (-3335 (($) 244 (-2438 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-2938 (($ $ $) 168 (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 163 (|has| |#1| (-365)))) (-2635 (((-112) $) 176 (|has| |#1| (-365)))) (-1684 (((-112) $) 258 (-2438 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-4039 (((-112) $) 85)) (-3035 (($) 157 (|has| |#1| (-38 (-409 (-566)))))) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 236 (-2438 (|has| |#2| (-886 (-381))) (|has| |#1| (-365)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 235 (-2438 (|has| |#2| (-886 (-566))) (|has| |#1| (-365))))) (-2716 (((-566) $) 112) (((-566) $ (-566)) 111)) (-2741 (((-112) $) 35)) (-2861 (($ $) 240 (|has| |#1| (-365)))) (-3001 ((|#2| $) 238 (|has| |#1| (-365)))) (-3979 (($ $ (-566)) 128 (|has| |#1| (-38 (-409 (-566)))))) (-2546 (((-3 $ "failed") $) 272 (-2438 (|has| |#2| (-1150)) (|has| |#1| (-365))))) (-1578 (((-112) $) 259 (-2438 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-3432 (($ $ (-921)) 113)) (-2153 (($ (-1 |#1| (-566)) $) 184)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 172 (|has| |#1| (-365)))) (-4367 (((-112) $) 74)) (-2519 (($ |#1| (-566)) 73) (($ $ (-1081) (-566)) 88) (($ $ (-644 (-1081)) (-644 (-566))) 87)) (-1439 (($ $ $) 262 (-2438 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-3059 (($ $ $) 263 (-2438 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-3077 (($ (-1 |#1| |#1|) $) 75) (($ (-1 |#2| |#2|) $) 224 (|has| |#1| (-365)))) (-3668 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) 77)) (-3557 ((|#1| $) 78)) (-2184 (($ (-644 $)) 161 (|has| |#1| (-365))) (($ $ $) 160 (|has| |#1| (-365)))) (-2599 (($ (-566) |#2|) 279)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 177 (|has| |#1| (-365)))) (-4117 (($ $) 181 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 180 (-2805 (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-959)) (|has| |#1| (-1199)) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-38 (-409 (-566)))))))) (-2759 (($) 273 (-2438 (|has| |#2| (-1150)) (|has| |#1| (-365))) CONST)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 162 (|has| |#1| (-365)))) (-2222 (($ (-644 $)) 159 (|has| |#1| (-365))) (($ $ $) 158 (|has| |#1| (-365)))) (-1539 (($ $) 243 (-2438 (|has| |#2| (-308)) (|has| |#1| (-365))))) (-4317 ((|#2| $) 246 (-2438 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-1647 (((-420 (-1171 $)) (-1171 $)) 249 (-2438 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-4138 (((-420 (-1171 $)) (-1171 $)) 250 (-2438 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-2391 (((-420 $) $) 173 (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 170 (|has| |#1| (-365)))) (-1938 (($ $ (-566)) 107)) (-2972 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 164 (|has| |#1| (-365)))) (-3613 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-566))))) (($ $ (-1175) |#2|) 223 (-2438 (|has| |#2| (-516 (-1175) |#2|)) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 |#2|)) 222 (-2438 (|has| |#2| (-516 (-1175) |#2|)) (|has| |#1| (-365)))) (($ $ (-644 (-295 |#2|))) 221 (-2438 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ (-295 |#2|)) 220 (-2438 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ |#2| |#2|) 219 (-2438 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ (-644 |#2|) (-644 |#2|)) 218 (-2438 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365))))) (-1813 (((-771) $) 166 (|has| |#1| (-365)))) (-4386 ((|#1| $ (-566)) 116) (($ $ $) 93 (|has| (-566) (-1111))) (($ $ |#2|) 217 (-2438 (|has| |#2| (-287 |#2| |#2|)) (|has| |#1| (-365))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 167 (|has| |#1| (-365)))) (-2862 (($ $ (-1 |#2| |#2|)) 228 (|has| |#1| (-365))) (($ $ (-1 |#2| |#2|) (-771)) 227 (|has| |#1| (-365))) (($ $ (-771)) 96 (-2805 (-2438 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) 94 (-2805 (-2438 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) 101 (-2805 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-1175) (-771)) 100 (-2805 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-644 (-1175))) 99 (-2805 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-1175)) 98 (-2805 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))))) (-3413 (($ $) 241 (|has| |#1| (-365)))) (-3013 ((|#2| $) 239 (|has| |#1| (-365)))) (-3992 (((-566) $) 76)) (-3267 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 133 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 143 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 135 (|has| |#1| (-38 (-409 (-566)))))) (-3134 (((-225) $) 257 (-2438 (|has| |#2| (-1022)) (|has| |#1| (-365)))) (((-381) $) 256 (-2438 (|has| |#2| (-1022)) (|has| |#1| (-365)))) (((-538) $) 255 (-2438 (|has| |#2| (-614 (-538))) (|has| |#1| (-365)))) (((-892 (-381)) $) 234 (-2438 (|has| |#2| (-614 (-892 (-381)))) (|has| |#1| (-365)))) (((-892 (-566)) $) 233 (-2438 (|has| |#2| (-614 (-892 (-566)))) (|has| |#1| (-365))))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 247 (-2438 (-2438 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#1| (-365))))) (-1973 (($ $) 84)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 59 (|has| |#1| (-172))) (($ |#2|) 280) (($ (-1175)) 254 (-2438 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365)))) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558)))) (-2022 ((|#1| $ (-566)) 71)) (-3842 (((-3 $ "failed") $) 60 (-2805 (-2438 (-2805 (|has| |#2| (-145)) (-2438 (|has| $ (-145)) (|has| |#2| (-909)))) (|has| |#1| (-365))) (|has| |#1| (-145))))) (-3795 (((-771)) 32 T CONST)) (-2420 ((|#1| $) 114)) (-1604 ((|#2| $) 245 (-2438 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-3122 (((-112) $ $) 9)) (-3302 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 141 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) 65 (|has| |#1| (-558)))) (-3279 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-566)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-1346 (($ $) 261 (-2438 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-1 |#2| |#2|)) 226 (|has| |#1| (-365))) (($ $ (-1 |#2| |#2|) (-771)) 225 (|has| |#1| (-365))) (($ $ (-771)) 97 (-2805 (-2438 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) 95 (-2805 (-2438 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) 105 (-2805 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-1175) (-771)) 104 (-2805 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-644 (-1175))) 103 (-2805 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-1175)) 102 (-2805 (-2438 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))))) (-2998 (((-112) $ $) 265 (-2438 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2974 (((-112) $ $) 266 (-2438 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2940 (((-112) $ $) 6)) (-2987 (((-112) $ $) 264 (-2438 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2962 (((-112) $ $) 267 (-2438 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-3061 (($ $ |#1|) 70 (|has| |#1| (-365))) (($ $ $) 179 (|has| |#1| (-365))) (($ |#2| |#2|) 237 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 178 (|has| |#1| (-365))) (($ $ $) 156 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 127 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ $ |#2|) 216 (|has| |#1| (-365))) (($ |#2| $) 215 (|has| |#1| (-365))) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
+(-10 -8 (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -3066 ((-3 (-1175) "failed") |#1|)) (-15 -1867 ((-1175) |#1|)) (-15 -3066 ((-3 |#3| "failed") |#1|)) (-15 -1867 (|#3| |#1|)) (-15 -3015 ((-112) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2486 ((|#2| $) 242 (-2447 (|has| |#2| (-308)) (|has| |#1| (-365))))) (-2608 (((-644 (-1081)) $) 86)) (-1401 (((-1175) $) 115)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-1968 (($ $) 64 (|has| |#1| (-558)))) (-2644 (((-112) $) 66 (|has| |#1| (-558)))) (-2922 (($ $ (-566)) 110) (($ $ (-566) (-566)) 109)) (-2455 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) 117)) (-2015 ((|#2| $) 278)) (-2827 (((-3 |#2| "failed") $) 274)) (-3543 ((|#2| $) 275)) (-2865 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) 20)) (-4077 (((-420 (-1171 $)) (-1171 $)) 251 (-2447 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-2179 (($ $) 174 (|has| |#1| (-365)))) (-3271 (((-420 $) $) 175 (|has| |#1| (-365)))) (-2484 (($ $) 129 (|has| |#1| (-38 (-409 (-566)))))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 248 (-2447 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-2738 (((-112) $ $) 165 (|has| |#1| (-365)))) (-2843 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 131 (|has| |#1| (-38 (-409 (-566)))))) (-2899 (((-566) $) 260 (-2447 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-1903 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) 185)) (-2888 (($ $) 145 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#2| "failed") $) 281) (((-3 (-566) "failed") $) 271 (-2447 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-409 (-566)) "failed") $) 269 (-2447 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-1175) "failed") $) 253 (-2447 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365))))) (-1867 ((|#2| $) 282) (((-566) $) 270 (-2447 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-409 (-566)) $) 268 (-2447 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-1175) $) 252 (-2447 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365))))) (-1370 (($ $) 277) (($ (-566) $) 276)) (-2949 (($ $ $) 169 (|has| |#1| (-365)))) (-3645 (($ $) 72)) (-2210 (((-689 |#2|) (-689 $)) 232 (|has| |#1| (-365))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) 231 (|has| |#1| (-365))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 230 (-2447 (|has| |#2| (-639 (-566))) (|has| |#1| (-365)))) (((-689 (-566)) (-689 $)) 229 (-2447 (|has| |#2| (-639 (-566))) (|has| |#1| (-365))))) (-2928 (((-3 $ "failed") $) 37)) (-3240 (((-409 (-952 |#1|)) $ (-566)) 183 (|has| |#1| (-558))) (((-409 (-952 |#1|)) $ (-566) (-566)) 182 (|has| |#1| (-558)))) (-1618 (($) 244 (-2447 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-2960 (($ $ $) 168 (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 163 (|has| |#1| (-365)))) (-1784 (((-112) $) 176 (|has| |#1| (-365)))) (-1533 (((-112) $) 258 (-2447 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-4392 (((-112) $) 85)) (-3120 (($) 157 (|has| |#1| (-38 (-409 (-566)))))) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 236 (-2447 (|has| |#2| (-886 (-381))) (|has| |#1| (-365)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 235 (-2447 (|has| |#2| (-886 (-566))) (|has| |#1| (-365))))) (-3227 (((-566) $) 112) (((-566) $ (-566)) 111)) (-3466 (((-112) $) 35)) (-2227 (($ $) 240 (|has| |#1| (-365)))) (-3088 ((|#2| $) 238 (|has| |#1| (-365)))) (-1986 (($ $ (-566)) 128 (|has| |#1| (-38 (-409 (-566)))))) (-2133 (((-3 $ "failed") $) 272 (-2447 (|has| |#2| (-1150)) (|has| |#1| (-365))))) (-2917 (((-112) $) 259 (-2447 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-1644 (($ $ (-921)) 113)) (-2654 (($ (-1 |#1| (-566)) $) 184)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 172 (|has| |#1| (-365)))) (-1453 (((-112) $) 74)) (-2585 (($ |#1| (-566)) 73) (($ $ (-1081) (-566)) 88) (($ $ (-644 (-1081)) (-644 (-566))) 87)) (-1945 (($ $ $) 262 (-2447 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2709 (($ $ $) 263 (-2447 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-3152 (($ (-1 |#1| |#1|) $) 75) (($ (-1 |#2| |#2|) $) 224 (|has| |#1| (-365)))) (-3671 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) 77)) (-3626 ((|#1| $) 78)) (-2197 (($ (-644 $)) 161 (|has| |#1| (-365))) (($ $ $) 160 (|has| |#1| (-365)))) (-3553 (($ (-566) |#2|) 279)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 177 (|has| |#1| (-365)))) (-3921 (($ $) 181 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 180 (-2805 (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-959)) (|has| |#1| (-1199)) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-38 (-409 (-566)))))))) (-3625 (($) 273 (-2447 (|has| |#2| (-1150)) (|has| |#1| (-365))) CONST)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 162 (|has| |#1| (-365)))) (-2235 (($ (-644 $)) 159 (|has| |#1| (-365))) (($ $ $) 158 (|has| |#1| (-365)))) (-2539 (($ $) 243 (-2447 (|has| |#2| (-308)) (|has| |#1| (-365))))) (-2209 ((|#2| $) 246 (-2447 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-4255 (((-420 (-1171 $)) (-1171 $)) 249 (-2447 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-4137 (((-420 (-1171 $)) (-1171 $)) 250 (-2447 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-2473 (((-420 $) $) 173 (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 170 (|has| |#1| (-365)))) (-2295 (($ $ (-566)) 107)) (-2997 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 164 (|has| |#1| (-365)))) (-4337 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-566))))) (($ $ (-1175) |#2|) 223 (-2447 (|has| |#2| (-516 (-1175) |#2|)) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 |#2|)) 222 (-2447 (|has| |#2| (-516 (-1175) |#2|)) (|has| |#1| (-365)))) (($ $ (-644 (-295 |#2|))) 221 (-2447 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ (-295 |#2|)) 220 (-2447 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ |#2| |#2|) 219 (-2447 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ (-644 |#2|) (-644 |#2|)) 218 (-2447 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365))))) (-3470 (((-771) $) 166 (|has| |#1| (-365)))) (-4393 ((|#1| $ (-566)) 116) (($ $ $) 93 (|has| (-566) (-1111))) (($ $ |#2|) 217 (-2447 (|has| |#2| (-287 |#2| |#2|)) (|has| |#1| (-365))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 167 (|has| |#1| (-365)))) (-2578 (($ $ (-1 |#2| |#2|)) 228 (|has| |#1| (-365))) (($ $ (-1 |#2| |#2|) (-771)) 227 (|has| |#1| (-365))) (($ $ (-771)) 96 (-2805 (-2447 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) 94 (-2805 (-2447 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) 101 (-2805 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-1175) (-771)) 100 (-2805 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-644 (-1175))) 99 (-2805 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-1175)) 98 (-2805 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))))) (-1431 (($ $) 241 (|has| |#1| (-365)))) (-3100 ((|#2| $) 239 (|has| |#1| (-365)))) (-2108 (((-566) $) 76)) (-2897 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 133 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 143 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 135 (|has| |#1| (-38 (-409 (-566)))))) (-3204 (((-225) $) 257 (-2447 (|has| |#2| (-1022)) (|has| |#1| (-365)))) (((-381) $) 256 (-2447 (|has| |#2| (-1022)) (|has| |#1| (-365)))) (((-538) $) 255 (-2447 (|has| |#2| (-614 (-538))) (|has| |#1| (-365)))) (((-892 (-381)) $) 234 (-2447 (|has| |#2| (-614 (-892 (-381)))) (|has| |#1| (-365)))) (((-892 (-566)) $) 233 (-2447 (|has| |#2| (-614 (-892 (-566)))) (|has| |#1| (-365))))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 247 (-2447 (-2447 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#1| (-365))))) (-1377 (($ $) 84)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 59 (|has| |#1| (-172))) (($ |#2|) 280) (($ (-1175)) 254 (-2447 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365)))) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558)))) (-3756 ((|#1| $ (-566)) 71)) (-3226 (((-3 $ "failed") $) 60 (-2805 (-2447 (-2805 (|has| |#2| (-145)) (-2447 (|has| $ (-145)) (|has| |#2| (-909)))) (|has| |#1| (-365))) (|has| |#1| (-145))))) (-3996 (((-771)) 32 T CONST)) (-3174 ((|#1| $) 114)) (-1982 ((|#2| $) 245 (-2447 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-3801 (((-112) $ $) 9)) (-2931 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 141 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2907 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-566)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-3333 (($ $) 261 (-2447 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-1 |#2| |#2|)) 226 (|has| |#1| (-365))) (($ $ (-1 |#2| |#2|) (-771)) 225 (|has| |#1| (-365))) (($ $ (-771)) 97 (-2805 (-2447 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) 95 (-2805 (-2447 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) 105 (-2805 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-1175) (-771)) 104 (-2805 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-644 (-1175))) 103 (-2805 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))))) (($ $ (-1175)) 102 (-2805 (-2447 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))))) (-3010 (((-112) $ $) 265 (-2447 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2984 (((-112) $ $) 266 (-2447 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2950 (((-112) $ $) 6)) (-2999 (((-112) $ $) 264 (-2447 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2972 (((-112) $ $) 267 (-2447 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-3062 (($ $ |#1|) 70 (|has| |#1| (-365))) (($ $ $) 179 (|has| |#1| (-365))) (($ |#2| |#2|) 237 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 178 (|has| |#1| (-365))) (($ $ $) 156 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 127 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ $ |#2|) 216 (|has| |#1| (-365))) (($ |#2| $) 215 (|has| |#1| (-365))) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
(((-1226 |#1| |#2|) (-140) (-1049) (-1255 |t#1|)) (T -1226))
-((-3992 (*1 *2 *1) (-12 (-4 *1 (-1226 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1255 *3)) (-5 *2 (-566)))) (-2599 (*1 *1 *2 *3) (-12 (-5 *2 (-566)) (-4 *4 (-1049)) (-4 *1 (-1226 *4 *3)) (-4 *3 (-1255 *4)))) (-4297 (*1 *2 *1) (-12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1255 *3)))) (-1669 (*1 *1 *1) (-12 (-4 *1 (-1226 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-1255 *2)))) (-1669 (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-4 *1 (-1226 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1255 *3)))) (-2590 (*1 *2 *1) (-12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1255 *3)))) (-1337 (*1 *2 *1) (|partial| -12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1255 *3)))))
-(-13 (-1224 |t#1|) (-1038 |t#2|) (-616 |t#2|) (-10 -8 (-15 -2599 ($ (-566) |t#2|)) (-15 -3992 ((-566) $)) (-15 -4297 (|t#2| $)) (-15 -1669 ($ $)) (-15 -1669 ($ (-566) $)) (-15 -2590 (|t#2| $)) (-15 -1337 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-365)) (-6 (-992 |t#2|)) |%noBranch|)))
+((-2108 (*1 *2 *1) (-12 (-4 *1 (-1226 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1255 *3)) (-5 *2 (-566)))) (-3553 (*1 *1 *2 *3) (-12 (-5 *2 (-566)) (-4 *4 (-1049)) (-4 *1 (-1226 *4 *3)) (-4 *3 (-1255 *4)))) (-2015 (*1 *2 *1) (-12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1255 *3)))) (-1370 (*1 *1 *1) (-12 (-4 *1 (-1226 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-1255 *2)))) (-1370 (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-4 *1 (-1226 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1255 *3)))) (-3543 (*1 *2 *1) (-12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1255 *3)))) (-2827 (*1 *2 *1) (|partial| -12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1255 *3)))))
+(-13 (-1224 |t#1|) (-1038 |t#2|) (-616 |t#2|) (-10 -8 (-15 -3553 ($ (-566) |t#2|)) (-15 -2108 ((-566) $)) (-15 -2015 (|t#2| $)) (-15 -1370 ($ $)) (-15 -1370 ($ (-566) $)) (-15 -3543 (|t#2| $)) (-15 -2827 ((-3 |t#2| "failed") $)) (IF (|has| |t#1| (-365)) (-6 (-992 |t#2|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-566)) . T) ((-25) . T) ((-38 #1=(-409 (-566))) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 |#2|) |has| |#1| (-365)) ((-38 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-35) |has| |#1| (-38 (-409 (-566)))) ((-95) |has| |#1| (-38 (-409 (-566)))) ((-102) . T) ((-111 #1# #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-111 |#1| |#1|) . T) ((-111 |#2| |#2|) |has| |#1| (-365)) ((-111 $ $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-131) . T) ((-145) -2805 (-12 (|has| |#1| (-365)) (|has| |#2| (-145))) (|has| |#1| (-145))) ((-147) -2805 (-12 (|has| |#1| (-365)) (|has| |#2| (-147))) (|has| |#1| (-147))) ((-616 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-616 (-566)) . T) ((-616 #2=(-1175)) -12 (|has| |#1| (-365)) (|has| |#2| (-1038 (-1175)))) ((-616 |#1|) |has| |#1| (-172)) ((-616 |#2|) . T) ((-616 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-614 (-225)) -12 (|has| |#1| (-365)) (|has| |#2| (-1022))) ((-614 (-381)) -12 (|has| |#1| (-365)) (|has| |#2| (-1022))) ((-614 (-538)) -12 (|has| |#1| (-365)) (|has| |#2| (-614 (-538)))) ((-614 (-892 (-381))) -12 (|has| |#1| (-365)) (|has| |#2| (-614 (-892 (-381))))) ((-614 (-892 (-566))) -12 (|has| |#1| (-365)) (|has| |#2| (-614 (-892 (-566))))) ((-231 |#2|) |has| |#1| (-365)) ((-233) -2805 (-12 (|has| |#1| (-365)) (|has| |#2| (-233))) (|has| |#1| (-15 * (|#1| (-566) |#1|)))) ((-243) |has| |#1| (-365)) ((-285) |has| |#1| (-38 (-409 (-566)))) ((-287 |#2| $) -12 (|has| |#1| (-365)) (|has| |#2| (-287 |#2| |#2|))) ((-287 $ $) |has| (-566) (-1111)) ((-291) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-308) |has| |#1| (-365)) ((-310 |#2|) -12 (|has| |#1| (-365)) (|has| |#2| (-310 |#2|))) ((-365) |has| |#1| (-365)) ((-340 |#2|) |has| |#1| (-365)) ((-379 |#2|) |has| |#1| (-365)) ((-402 |#2|) |has| |#1| (-365)) ((-454) |has| |#1| (-365)) ((-495) |has| |#1| (-38 (-409 (-566)))) ((-516 (-1175) |#2|) -12 (|has| |#1| (-365)) (|has| |#2| (-516 (-1175) |#2|))) ((-516 |#2| |#2|) -12 (|has| |#1| (-365)) (|has| |#2| (-310 |#2|))) ((-558) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-646 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 |#2|) |has| |#1| (-365)) ((-646 $) . T) ((-648 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-648 |#1|) . T) ((-648 |#2|) |has| |#1| (-365)) ((-648 $) . T) ((-640 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-640 |#1|) |has| |#1| (-172)) ((-640 |#2|) |has| |#1| (-365)) ((-640 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-639 (-566)) -12 (|has| |#1| (-365)) (|has| |#2| (-639 (-566)))) ((-639 |#2|) |has| |#1| (-365)) ((-717 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-717 |#1|) |has| |#1| (-172)) ((-717 |#2|) |has| |#1| (-365)) ((-717 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-726) . T) ((-791) -12 (|has| |#1| (-365)) (|has| |#2| (-820))) ((-792) -12 (|has| |#1| (-365)) (|has| |#2| (-820))) ((-794) -12 (|has| |#1| (-365)) (|has| |#2| (-820))) ((-795) -12 (|has| |#1| (-365)) (|has| |#2| (-820))) ((-820) -12 (|has| |#1| (-365)) (|has| |#2| (-820))) ((-848) -12 (|has| |#1| (-365)) (|has| |#2| (-820))) ((-850) -2805 (-12 (|has| |#1| (-365)) (|has| |#2| (-850))) (-12 (|has| |#1| (-365)) (|has| |#2| (-820)))) ((-900 (-1175)) -2805 (-12 (|has| |#1| (-365)) (|has| |#2| (-900 (-1175)))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))) ((-886 (-381)) -12 (|has| |#1| (-365)) (|has| |#2| (-886 (-381)))) ((-886 (-566)) -12 (|has| |#1| (-365)) (|has| |#2| (-886 (-566)))) ((-884 |#2|) |has| |#1| (-365)) ((-909) -12 (|has| |#1| (-365)) (|has| |#2| (-909))) ((-973 |#1| #0# (-1081)) . T) ((-920) |has| |#1| (-365)) ((-992 |#2|) |has| |#1| (-365)) ((-1002) |has| |#1| (-38 (-409 (-566)))) ((-1022) -12 (|has| |#1| (-365)) (|has| |#2| (-1022))) ((-1038 (-409 (-566))) -12 (|has| |#1| (-365)) (|has| |#2| (-1038 (-566)))) ((-1038 (-566)) -12 (|has| |#1| (-365)) (|has| |#2| (-1038 (-566)))) ((-1038 #2#) -12 (|has| |#1| (-365)) (|has| |#2| (-1038 (-1175)))) ((-1038 |#2|) . T) ((-1051 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-1051 |#1|) . T) ((-1051 |#2|) |has| |#1| (-365)) ((-1051 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-1056 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-1056 |#1|) . T) ((-1056 |#2|) |has| |#1| (-365)) ((-1056 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1150) -12 (|has| |#1| (-365)) (|has| |#2| (-1150))) ((-1199) |has| |#1| (-38 (-409 (-566)))) ((-1202) |has| |#1| (-38 (-409 (-566)))) ((-1214) |has| |#1| (-365)) ((-1218) |has| |#1| (-365)) ((-1224 |#1|) . T) ((-1242 |#1| #0#) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 81)) (-2452 ((|#2| $) NIL (-12 (|has| |#2| (-308)) (|has| |#1| (-365))))) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) 100)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-1881 (($ $ (-566)) 109) (($ $ (-566) (-566)) 111)) (-1530 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) 51)) (-4297 ((|#2| $) 11)) (-1337 (((-3 |#2| "failed") $) 35)) (-2590 ((|#2| $) 36)) (-3235 (($ $) 206 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 182 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-2857 (($ $) NIL (|has| |#1| (-365)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-3215 (($ $) 202 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 178 (|has| |#1| (-38 (-409 (-566)))))) (-2807 (((-566) $) NIL (-12 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-1401 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) 59)) (-3259 (($ $) 210 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 186 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) 157) (((-3 (-566) "failed") $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-1175) "failed") $) NIL (-12 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365))))) (-1756 ((|#2| $) 156) (((-566) $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-409 (-566)) $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-1175) $) NIL (-12 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365))))) (-1669 (($ $) 65) (($ (-566) $) 28)) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) NIL)) (-1628 (((-689 |#2|) (-689 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#1| (-365)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#1| (-365))))) (-1579 (((-3 $ "failed") $) 88)) (-3528 (((-409 (-952 |#1|)) $ (-566)) 124 (|has| |#1| (-558))) (((-409 (-952 |#1|)) $ (-566) (-566)) 126 (|has| |#1| (-558)))) (-3335 (($) NIL (-12 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2635 (((-112) $) NIL (|has| |#1| (-365)))) (-1684 (((-112) $) NIL (-12 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-4039 (((-112) $) 74)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| |#2| (-886 (-381))) (|has| |#1| (-365)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| |#2| (-886 (-566))) (|has| |#1| (-365))))) (-2716 (((-566) $) 105) (((-566) $ (-566)) 107)) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL (|has| |#1| (-365)))) (-3001 ((|#2| $) 165 (|has| |#1| (-365)))) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2546 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1150)) (|has| |#1| (-365))))) (-1578 (((-112) $) NIL (-12 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-3432 (($ $ (-921)) 148)) (-2153 (($ (-1 |#1| (-566)) $) 144)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-566)) 20) (($ $ (-1081) (-566)) NIL) (($ $ (-644 (-1081)) (-644 (-566))) NIL)) (-1439 (($ $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-3059 (($ $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-3077 (($ (-1 |#1| |#1|) $) 141) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-365)))) (-3668 (($ $) 176 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2599 (($ (-566) |#2|) 10)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 159 (|has| |#1| (-365)))) (-4117 (($ $) 228 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 233 (-2805 (-12 (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199)))))) (-2759 (($) NIL (-12 (|has| |#2| (-1150)) (|has| |#1| (-365))) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-1539 (($ $) NIL (-12 (|has| |#2| (-308)) (|has| |#1| (-365))))) (-4317 ((|#2| $) NIL (-12 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-2391 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-1938 (($ $ (-566)) 138)) (-2972 (((-3 $ "failed") $ $) 128 (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3613 (($ $) 174 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-566))))) (($ $ (-1175) |#2|) NIL (-12 (|has| |#2| (-516 (-1175) |#2|)) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 |#2|)) NIL (-12 (|has| |#2| (-516 (-1175) |#2|)) (|has| |#1| (-365)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365))))) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ (-566)) 103) (($ $ $) 90 (|has| (-566) (-1111))) (($ $ |#2|) NIL (-12 (|has| |#2| (-287 |#2| |#2|)) (|has| |#1| (-365))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2862 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-365))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#1| (-365))) (($ $ (-771)) NIL (-2805 (-12 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) 149 (-2805 (-12 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) 153 (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-3413 (($ $) NIL (|has| |#1| (-365)))) (-3013 ((|#2| $) 166 (|has| |#1| (-365)))) (-3992 (((-566) $) 12)) (-3267 (($ $) 212 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 188 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 208 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 184 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 204 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 180 (|has| |#1| (-38 (-409 (-566)))))) (-3134 (((-225) $) NIL (-12 (|has| |#2| (-1022)) (|has| |#1| (-365)))) (((-381) $) NIL (-12 (|has| |#2| (-1022)) (|has| |#1| (-365)))) (((-538) $) NIL (-12 (|has| |#2| (-614 (-538))) (|has| |#1| (-365)))) (((-892 (-381)) $) NIL (-12 (|has| |#2| (-614 (-892 (-381)))) (|has| |#1| (-365)))) (((-892 (-566)) $) NIL (-12 (|has| |#2| (-614 (-892 (-566)))) (|has| |#1| (-365))))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909)) (|has| |#1| (-365))))) (-1973 (($ $) 136)) (-2512 (((-862) $) 267) (($ (-566)) 24) (($ |#1|) 22 (|has| |#1| (-172))) (($ |#2|) 21) (($ (-1175)) NIL (-12 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365)))) (($ (-409 (-566))) 169 (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-2022 ((|#1| $ (-566)) 85)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909)) (|has| |#1| (-365))) (-12 (|has| |#2| (-145)) (|has| |#1| (-365))) (|has| |#1| (-145))))) (-3795 (((-771)) 155 T CONST)) (-2420 ((|#1| $) 102)) (-1604 ((|#2| $) NIL (-12 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) 218 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 194 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) 214 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 190 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 222 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 198 (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-566)) 134 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) 224 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 200 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 220 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 196 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 216 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 192 (|has| |#1| (-38 (-409 (-566)))))) (-1346 (($ $) NIL (-12 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-2485 (($) 13 T CONST)) (-2495 (($) 18 T CONST)) (-2840 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-365))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#1| (-365))) (($ $ (-771)) NIL (-2805 (-12 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) NIL (-2805 (-12 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-2998 (((-112) $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2974 (((-112) $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2940 (((-112) $ $) 72)) (-2987 (((-112) $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2962 (((-112) $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) 163 (|has| |#1| (-365))) (($ |#2| |#2|) 164 (|has| |#1| (-365)))) (-3047 (($ $) 227) (($ $ $) 78)) (-3034 (($ $ $) 76)) (** (($ $ (-921)) NIL) (($ $ (-771)) 84) (($ $ (-566)) 160 (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 172 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 79) (($ $ |#1|) NIL) (($ |#1| $) 152) (($ $ |#2|) 162 (|has| |#1| (-365))) (($ |#2| $) 161 (|has| |#1| (-365))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 81)) (-2486 ((|#2| $) NIL (-12 (|has| |#2| (-308)) (|has| |#1| (-365))))) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) 100)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2922 (($ $ (-566)) 109) (($ $ (-566) (-566)) 111)) (-2455 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) 51)) (-2015 ((|#2| $) 11)) (-2827 (((-3 |#2| "failed") $) 35)) (-3543 ((|#2| $) 36)) (-2865 (($ $) 206 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 182 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-2179 (($ $) NIL (|has| |#1| (-365)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2843 (($ $) 202 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 178 (|has| |#1| (-38 (-409 (-566)))))) (-2899 (((-566) $) NIL (-12 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-1903 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) 59)) (-2888 (($ $) 210 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 186 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) 157) (((-3 (-566) "failed") $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-1175) "failed") $) NIL (-12 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365))))) (-1867 ((|#2| $) 156) (((-566) $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-409 (-566)) $) NIL (-12 (|has| |#2| (-1038 (-566))) (|has| |#1| (-365)))) (((-1175) $) NIL (-12 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365))))) (-1370 (($ $) 65) (($ (-566) $) 28)) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) NIL)) (-2210 (((-689 |#2|) (-689 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#1| (-365)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| |#2| (-639 (-566))) (|has| |#1| (-365))))) (-2928 (((-3 $ "failed") $) 88)) (-3240 (((-409 (-952 |#1|)) $ (-566)) 124 (|has| |#1| (-558))) (((-409 (-952 |#1|)) $ (-566) (-566)) 126 (|has| |#1| (-558)))) (-1618 (($) NIL (-12 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-1784 (((-112) $) NIL (|has| |#1| (-365)))) (-1533 (((-112) $) NIL (-12 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-4392 (((-112) $) 74)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| |#2| (-886 (-381))) (|has| |#1| (-365)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| |#2| (-886 (-566))) (|has| |#1| (-365))))) (-3227 (((-566) $) 105) (((-566) $ (-566)) 107)) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL (|has| |#1| (-365)))) (-3088 ((|#2| $) 165 (|has| |#1| (-365)))) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2133 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1150)) (|has| |#1| (-365))))) (-2917 (((-112) $) NIL (-12 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-1644 (($ $ (-921)) 148)) (-2654 (($ (-1 |#1| (-566)) $) 144)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-566)) 20) (($ $ (-1081) (-566)) NIL) (($ $ (-644 (-1081)) (-644 (-566))) NIL)) (-1945 (($ $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2709 (($ $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-3152 (($ (-1 |#1| |#1|) $) 141) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-365)))) (-3671 (($ $) 176 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3553 (($ (-566) |#2|) 10)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 159 (|has| |#1| (-365)))) (-3921 (($ $) 228 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 233 (-2805 (-12 (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199)))))) (-3625 (($) NIL (-12 (|has| |#2| (-1150)) (|has| |#1| (-365))) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2539 (($ $) NIL (-12 (|has| |#2| (-308)) (|has| |#1| (-365))))) (-2209 ((|#2| $) NIL (-12 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| |#2| (-909)) (|has| |#1| (-365))))) (-2473 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2295 (($ $ (-566)) 138)) (-2997 (((-3 $ "failed") $ $) 128 (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4337 (($ $) 174 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) 97 (|has| |#1| (-15 ** (|#1| |#1| (-566))))) (($ $ (-1175) |#2|) NIL (-12 (|has| |#2| (-516 (-1175) |#2|)) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 |#2|)) NIL (-12 (|has| |#2| (-516 (-1175) |#2|)) (|has| |#1| (-365)))) (($ $ (-644 (-295 |#2|))) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ (-295 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ |#2| |#2|) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365)))) (($ $ (-644 |#2|) (-644 |#2|)) NIL (-12 (|has| |#2| (-310 |#2|)) (|has| |#1| (-365))))) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ (-566)) 103) (($ $ $) 90 (|has| (-566) (-1111))) (($ $ |#2|) NIL (-12 (|has| |#2| (-287 |#2| |#2|)) (|has| |#1| (-365))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-2578 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-365))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#1| (-365))) (($ $ (-771)) NIL (-2805 (-12 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) 149 (-2805 (-12 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) 153 (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-1431 (($ $) NIL (|has| |#1| (-365)))) (-3100 ((|#2| $) 166 (|has| |#1| (-365)))) (-2108 (((-566) $) 12)) (-2897 (($ $) 212 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 188 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 208 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 184 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 204 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 180 (|has| |#1| (-38 (-409 (-566)))))) (-3204 (((-225) $) NIL (-12 (|has| |#2| (-1022)) (|has| |#1| (-365)))) (((-381) $) NIL (-12 (|has| |#2| (-1022)) (|has| |#1| (-365)))) (((-538) $) NIL (-12 (|has| |#2| (-614 (-538))) (|has| |#1| (-365)))) (((-892 (-381)) $) NIL (-12 (|has| |#2| (-614 (-892 (-381)))) (|has| |#1| (-365)))) (((-892 (-566)) $) NIL (-12 (|has| |#2| (-614 (-892 (-566)))) (|has| |#1| (-365))))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909)) (|has| |#1| (-365))))) (-1377 (($ $) 136)) (-3780 (((-862) $) 267) (($ (-566)) 24) (($ |#1|) 22 (|has| |#1| (-172))) (($ |#2|) 21) (($ (-1175)) NIL (-12 (|has| |#2| (-1038 (-1175))) (|has| |#1| (-365)))) (($ (-409 (-566))) 169 (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-3756 ((|#1| $ (-566)) 85)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909)) (|has| |#1| (-365))) (-12 (|has| |#2| (-145)) (|has| |#1| (-365))) (|has| |#1| (-145))))) (-3996 (((-771)) 155 T CONST)) (-3174 ((|#1| $) 102)) (-1982 ((|#2| $) NIL (-12 (|has| |#2| (-547)) (|has| |#1| (-365))))) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) 218 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 194 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) 214 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 190 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 222 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 198 (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-566)) 134 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) 224 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 200 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 220 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 196 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 216 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 192 (|has| |#1| (-38 (-409 (-566)))))) (-3333 (($ $) NIL (-12 (|has| |#2| (-820)) (|has| |#1| (-365))))) (-2493 (($) 13 T CONST)) (-4333 (($) 18 T CONST)) (-2876 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-365))) (($ $ (-1 |#2| |#2|) (-771)) NIL (|has| |#1| (-365))) (($ $ (-771)) NIL (-2805 (-12 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) NIL (-2805 (-12 (|has| |#2| (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#2| (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-3010 (((-112) $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2984 (((-112) $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2950 (((-112) $ $) 72)) (-2999 (((-112) $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-2972 (((-112) $ $) NIL (-12 (|has| |#2| (-850)) (|has| |#1| (-365))))) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) 163 (|has| |#1| (-365))) (($ |#2| |#2|) 164 (|has| |#1| (-365)))) (-3051 (($ $) 227) (($ $ $) 78)) (-3040 (($ $ $) 76)) (** (($ $ (-921)) NIL) (($ $ (-771)) 84) (($ $ (-566)) 160 (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 172 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 79) (($ $ |#1|) NIL) (($ |#1| $) 152) (($ $ |#2|) 162 (|has| |#1| (-365))) (($ |#2| $) 161 (|has| |#1| (-365))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
(((-1227 |#1| |#2|) (-1226 |#1| |#2|) (-1049) (-1255 |#1|)) (T -1227))
NIL
(-1226 |#1| |#2|)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2452 (((-1256 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-308)) (|has| |#1| (-365))))) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) 10)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-3653 (($ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-2152 (((-112) $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-1881 (($ $ (-566)) NIL) (($ $ (-566) (-566)) NIL)) (-1530 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) NIL)) (-4297 (((-1256 |#1| |#2| |#3|) $) NIL)) (-1337 (((-3 (-1256 |#1| |#2| |#3|) "failed") $) NIL)) (-2590 (((-1256 |#1| |#2| |#3|) $) NIL)) (-3235 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-2857 (($ $) NIL (|has| |#1| (-365)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-3215 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2807 (((-566) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-1401 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) NIL)) (-3259 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-1256 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-566) "failed") $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))))) (-1756 (((-1256 |#1| |#2| |#3|) $) NIL) (((-1175) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (((-409 (-566)) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365)))) (((-566) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))))) (-1669 (($ $) NIL) (($ (-566) $) NIL)) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) NIL)) (-1628 (((-689 (-1256 |#1| |#2| |#3|)) (-689 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -1380 (-689 (-1256 |#1| |#2| |#3|))) (|:| |vec| (-1264 (-1256 |#1| |#2| |#3|)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-639 (-566))) (|has| |#1| (-365)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-639 (-566))) (|has| |#1| (-365))))) (-1579 (((-3 $ "failed") $) NIL)) (-3528 (((-409 (-952 |#1|)) $ (-566)) NIL (|has| |#1| (-558))) (((-409 (-952 |#1|)) $ (-566) (-566)) NIL (|has| |#1| (-558)))) (-3335 (($) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2635 (((-112) $) NIL (|has| |#1| (-365)))) (-1684 (((-112) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-4039 (((-112) $) NIL)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-886 (-381))) (|has| |#1| (-365)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-886 (-566))) (|has| |#1| (-365))))) (-2716 (((-566) $) NIL) (((-566) $ (-566)) NIL)) (-2741 (((-112) $) NIL)) (-2861 (($ $) NIL (|has| |#1| (-365)))) (-3001 (((-1256 |#1| |#2| |#3|) $) NIL (|has| |#1| (-365)))) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2546 (((-3 $ "failed") $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1150)) (|has| |#1| (-365))))) (-1578 (((-112) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-3432 (($ $ (-921)) NIL)) (-2153 (($ (-1 |#1| (-566)) $) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-566)) 18) (($ $ (-1081) (-566)) NIL) (($ $ (-644 (-1081)) (-644 (-566))) NIL)) (-1439 (($ $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-3059 (($ $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-365)))) (-3668 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2599 (($ (-566) (-1256 |#1| |#2| |#3|)) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| |#1| (-365)))) (-4117 (($ $) 27 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 28 (|has| |#1| (-38 (-409 (-566)))))) (-2759 (($) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1150)) (|has| |#1| (-365))) CONST)) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-1539 (($ $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-308)) (|has| |#1| (-365))))) (-4317 (((-1256 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-2391 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-1938 (($ $ (-566)) NIL)) (-2972 (((-3 $ "failed") $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3613 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-566))))) (($ $ (-1175) (-1256 |#1| |#2| |#3|)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-516 (-1175) (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 (-1256 |#1| |#2| |#3|))) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-516 (-1175) (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-295 (-1256 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-310 (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-295 (-1256 |#1| |#2| |#3|))) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-310 (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-310 (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-1256 |#1| |#2| |#3|)) (-644 (-1256 |#1| |#2| |#3|))) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-310 (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365))))) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ (-566)) NIL) (($ $ $) NIL (|has| (-566) (-1111))) (($ $ (-1256 |#1| |#2| |#3|)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-287 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365))))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2862 (($ $ (-1 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|))) NIL (|has| |#1| (-365))) (($ $ (-1 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) (-771)) NIL (|has| |#1| (-365))) (($ $ (-1260 |#2|)) 26) (($ $ (-771)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) 25 (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-3413 (($ $) NIL (|has| |#1| (-365)))) (-3013 (((-1256 |#1| |#2| |#3|) $) NIL (|has| |#1| (-365)))) (-3992 (((-566) $) NIL)) (-3267 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3134 (((-538) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-614 (-538))) (|has| |#1| (-365)))) (((-381) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1022)) (|has| |#1| (-365)))) (((-225) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1022)) (|has| |#1| (-365)))) (((-892 (-381)) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-614 (-892 (-381)))) (|has| |#1| (-365)))) (((-892 (-566)) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-614 (-892 (-566)))) (|has| |#1| (-365))))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-1973 (($ $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1256 |#1| |#2| |#3|)) NIL) (($ (-1260 |#2|)) 24) (($ (-1175)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (($ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558)))) (($ (-409 (-566))) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))) (|has| |#1| (-38 (-409 (-566))))))) (-2022 ((|#1| $ (-566)) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-145)) (|has| |#1| (-365))) (|has| |#1| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2420 ((|#1| $) 11)) (-1604 (((-1256 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-3279 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-566)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1346 (($ $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-2485 (($) 20 T CONST)) (-2495 (($) 15 T CONST)) (-2840 (($ $ (-1 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|))) NIL (|has| |#1| (-365))) (($ $ (-1 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) (-771)) NIL (|has| |#1| (-365))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-2998 (((-112) $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2974 (((-112) $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2940 (((-112) $ $) NIL)) (-2987 (((-112) $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2962 (((-112) $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365))) (($ (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 22)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1256 |#1| |#2| |#3|)) NIL (|has| |#1| (-365))) (($ (-1256 |#1| |#2| |#3|) $) NIL (|has| |#1| (-365))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-1228 |#1| |#2| |#3|) (-13 (-1226 |#1| (-1256 |#1| |#2| |#3|)) (-10 -8 (-15 -2512 ($ (-1260 |#2|))) (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1228))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1228 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1228 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-4117 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1228 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
-(-13 (-1226 |#1| (-1256 |#1| |#2| |#3|)) (-10 -8 (-15 -2512 ($ (-1260 |#2|))) (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|)))
-((-3980 (((-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))) |#1| (-112)) 13)) (-2085 (((-420 |#1|) |#1|) 26)) (-2391 (((-420 |#1|) |#1|) 24)))
-(((-1229 |#1|) (-10 -7 (-15 -2391 ((-420 |#1|) |#1|)) (-15 -2085 ((-420 |#1|) |#1|)) (-15 -3980 ((-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))) |#1| (-112)))) (-1240 (-566))) (T -1229))
-((-3980 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| *3) (|:| -2175 (-566))))))) (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))) (-2085 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))) (-2391 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))))
-(-10 -7 (-15 -2391 ((-420 |#1|) |#1|)) (-15 -2085 ((-420 |#1|) |#1|)) (-15 -3980 ((-2 (|:| |contp| (-566)) (|:| -4236 (-644 (-2 (|:| |irr| |#1|) (|:| -2175 (-566)))))) |#1| (-112))))
-((-3077 (((-1155 |#2|) (-1 |#2| |#1|) (-1231 |#1|)) 23 (|has| |#1| (-848))) (((-1231 |#2|) (-1 |#2| |#1|) (-1231 |#1|)) 17)))
-(((-1230 |#1| |#2|) (-10 -7 (-15 -3077 ((-1231 |#2|) (-1 |#2| |#1|) (-1231 |#1|))) (IF (|has| |#1| (-848)) (-15 -3077 ((-1155 |#2|) (-1 |#2| |#1|) (-1231 |#1|))) |%noBranch|)) (-1214) (-1214)) (T -1230))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1231 *5)) (-4 *5 (-848)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1155 *6)) (-5 *1 (-1230 *5 *6)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1231 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1231 *6)) (-5 *1 (-1230 *5 *6)))))
-(-10 -7 (-15 -3077 ((-1231 |#2|) (-1 |#2| |#1|) (-1231 |#1|))) (IF (|has| |#1| (-848)) (-15 -3077 ((-1155 |#2|) (-1 |#2| |#1|) (-1231 |#1|))) |%noBranch|))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3510 (($ |#1| |#1|) 11) (($ |#1|) 10)) (-3077 (((-1155 |#1|) (-1 |#1| |#1|) $) 44 (|has| |#1| (-848)))) (-3753 ((|#1| $) 15)) (-3503 ((|#1| $) 12)) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4234 (((-566) $) 19)) (-3885 ((|#1| $) 18)) (-4258 ((|#1| $) 13)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1310 (((-112) $) 17)) (-4154 (((-1155 |#1|) $) 41 (|has| |#1| (-848))) (((-1155 |#1|) (-644 $)) 40 (|has| |#1| (-848)))) (-3134 (($ |#1|) 26)) (-2512 (($ (-1093 |#1|)) 25) (((-862) $) 37 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3619 (($ |#1| |#1|) 21) (($ |#1|) 20)) (-2729 (($ $ (-566)) 14)) (-2940 (((-112) $ $) 30 (|has| |#1| (-1099)))))
-(((-1231 |#1|) (-13 (-1092 |#1|) (-10 -8 (-15 -3619 ($ |#1|)) (-15 -3510 ($ |#1|)) (-15 -2512 ($ (-1093 |#1|))) (-15 -1310 ((-112) $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-1094 |#1| (-1155 |#1|))) |%noBranch|))) (-1214)) (T -1231))
-((-3619 (*1 *1 *2) (-12 (-5 *1 (-1231 *2)) (-4 *2 (-1214)))) (-3510 (*1 *1 *2) (-12 (-5 *1 (-1231 *2)) (-4 *2 (-1214)))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-1093 *3)) (-4 *3 (-1214)) (-5 *1 (-1231 *3)))) (-1310 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1231 *3)) (-4 *3 (-1214)))))
-(-13 (-1092 |#1|) (-10 -8 (-15 -3619 ($ |#1|)) (-15 -3510 ($ |#1|)) (-15 -2512 ($ (-1093 |#1|))) (-15 -1310 ((-112) $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-1094 |#1| (-1155 |#1|))) |%noBranch|)))
-((-3077 (((-1237 |#3| |#4|) (-1 |#4| |#2|) (-1237 |#1| |#2|)) 15)))
-(((-1232 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3077 ((-1237 |#3| |#4|) (-1 |#4| |#2|) (-1237 |#1| |#2|)))) (-1175) (-1049) (-1175) (-1049)) (T -1232))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1237 *5 *6)) (-14 *5 (-1175)) (-4 *6 (-1049)) (-4 *8 (-1049)) (-5 *2 (-1237 *7 *8)) (-5 *1 (-1232 *5 *6 *7 *8)) (-14 *7 (-1175)))))
-(-10 -7 (-15 -3077 ((-1237 |#3| |#4|) (-1 |#4| |#2|) (-1237 |#1| |#2|))))
-((-1919 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-1443 ((|#1| |#3|) 13)) (-3774 ((|#3| |#3|) 19)))
-(((-1233 |#1| |#2| |#3|) (-10 -7 (-15 -1443 (|#1| |#3|)) (-15 -3774 (|#3| |#3|)) (-15 -1919 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-558) (-992 |#1|) (-1240 |#2|)) (T -1233))
-((-1919 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-992 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1233 *4 *5 *3)) (-4 *3 (-1240 *5)))) (-3774 (*1 *2 *2) (-12 (-4 *3 (-558)) (-4 *4 (-992 *3)) (-5 *1 (-1233 *3 *4 *2)) (-4 *2 (-1240 *4)))) (-1443 (*1 *2 *3) (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-1233 *2 *4 *3)) (-4 *3 (-1240 *4)))))
-(-10 -7 (-15 -1443 (|#1| |#3|)) (-15 -3774 (|#3| |#3|)) (-15 -1919 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-3165 (((-3 |#2| "failed") |#2| (-771) |#1|) 37)) (-2888 (((-3 |#2| "failed") |#2| (-771)) 38)) (-1974 (((-3 (-2 (|:| -4357 |#2|) (|:| -4368 |#2|)) "failed") |#2|) 52)) (-1319 (((-644 |#2|) |#2|) 54)) (-2787 (((-3 |#2| "failed") |#2| |#2|) 48)))
-(((-1234 |#1| |#2|) (-10 -7 (-15 -2888 ((-3 |#2| "failed") |#2| (-771))) (-15 -3165 ((-3 |#2| "failed") |#2| (-771) |#1|)) (-15 -2787 ((-3 |#2| "failed") |#2| |#2|)) (-15 -1974 ((-3 (-2 (|:| -4357 |#2|) (|:| -4368 |#2|)) "failed") |#2|)) (-15 -1319 ((-644 |#2|) |#2|))) (-13 (-558) (-147)) (-1240 |#1|)) (T -1234))
-((-1319 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-147))) (-5 *2 (-644 *3)) (-5 *1 (-1234 *4 *3)) (-4 *3 (-1240 *4)))) (-1974 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-558) (-147))) (-5 *2 (-2 (|:| -4357 *3) (|:| -4368 *3))) (-5 *1 (-1234 *4 *3)) (-4 *3 (-1240 *4)))) (-2787 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-1234 *3 *2)) (-4 *2 (-1240 *3)))) (-3165 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-771)) (-4 *4 (-13 (-558) (-147))) (-5 *1 (-1234 *4 *2)) (-4 *2 (-1240 *4)))) (-2888 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-771)) (-4 *4 (-13 (-558) (-147))) (-5 *1 (-1234 *4 *2)) (-4 *2 (-1240 *4)))))
-(-10 -7 (-15 -2888 ((-3 |#2| "failed") |#2| (-771))) (-15 -3165 ((-3 |#2| "failed") |#2| (-771) |#1|)) (-15 -2787 ((-3 |#2| "failed") |#2| |#2|)) (-15 -1974 ((-3 (-2 (|:| -4357 |#2|) (|:| -4368 |#2|)) "failed") |#2|)) (-15 -1319 ((-644 |#2|) |#2|)))
-((-2527 (((-3 (-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) "failed") |#2| |#2|) 30)))
-(((-1235 |#1| |#2|) (-10 -7 (-15 -2527 ((-3 (-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) "failed") |#2| |#2|))) (-558) (-1240 |#1|)) (T -1235))
-((-2527 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-558)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-1235 *4 *3)) (-4 *3 (-1240 *4)))))
-(-10 -7 (-15 -2527 ((-3 (-2 (|:| -2760 |#2|) (|:| -1644 |#2|)) "failed") |#2| |#2|)))
-((-1507 ((|#2| |#2| |#2|) 22)) (-1620 ((|#2| |#2| |#2|) 36)) (-1723 ((|#2| |#2| |#2| (-771) (-771)) 44)))
-(((-1236 |#1| |#2|) (-10 -7 (-15 -1507 (|#2| |#2| |#2|)) (-15 -1620 (|#2| |#2| |#2|)) (-15 -1723 (|#2| |#2| |#2| (-771) (-771)))) (-1049) (-1240 |#1|)) (T -1236))
-((-1723 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-771)) (-4 *4 (-1049)) (-5 *1 (-1236 *4 *2)) (-4 *2 (-1240 *4)))) (-1620 (*1 *2 *2 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-1236 *3 *2)) (-4 *2 (-1240 *3)))) (-1507 (*1 *2 *2 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-1236 *3 *2)) (-4 *2 (-1240 *3)))))
-(-10 -7 (-15 -1507 (|#2| |#2| |#2|)) (-15 -1620 (|#2| |#2| |#2|)) (-15 -1723 (|#2| |#2| |#2| (-771) (-771))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2025 (((-1264 |#2|) $ (-771)) NIL)) (-2540 (((-644 (-1081)) $) NIL)) (-3526 (($ (-1171 |#2|)) NIL)) (-2358 (((-1171 $) $ (-1081)) NIL) (((-1171 |#2|) $) NIL)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#2| (-558)))) (-3653 (($ $) NIL (|has| |#2| (-558)))) (-2152 (((-112) $) NIL (|has| |#2| (-558)))) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-1081))) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2829 (($ $ $) NIL (|has| |#2| (-558)))) (-2055 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2857 (($ $) NIL (|has| |#2| (-454)))) (-1370 (((-420 $) $) NIL (|has| |#2| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-1561 (((-112) $ $) NIL (|has| |#2| (-365)))) (-4047 (($ $ (-771)) NIL)) (-2284 (($ $ (-771)) NIL)) (-2542 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-454)))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-1081) "failed") $) NIL)) (-1756 ((|#2| $) NIL) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-1081) $) NIL)) (-1552 (($ $ $ (-1081)) NIL (|has| |#2| (-172))) ((|#2| $ $) NIL (|has| |#2| (-172)))) (-2926 (($ $ $) NIL (|has| |#2| (-365)))) (-3577 (($ $) NIL)) (-1628 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2938 (($ $ $) NIL (|has| |#2| (-365)))) (-2762 (($ $ $) NIL)) (-2213 (($ $ $) NIL (|has| |#2| (-558)))) (-2513 (((-2 (|:| -3157 |#2|) (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#2| (-558)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#2| (-365)))) (-4248 (($ $) NIL (|has| |#2| (-454))) (($ $ (-1081)) NIL (|has| |#2| (-454)))) (-3567 (((-644 $) $) NIL)) (-2635 (((-112) $) NIL (|has| |#2| (-909)))) (-2804 (($ $ |#2| (-771) $) NIL)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1081) (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1081) (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-2716 (((-771) $ $) NIL (|has| |#2| (-558)))) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-2546 (((-3 $ "failed") $) NIL (|has| |#2| (-1150)))) (-2530 (($ (-1171 |#2|) (-1081)) NIL) (($ (-1171 $) (-1081)) NIL)) (-3432 (($ $ (-771)) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#2| (-365)))) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-2519 (($ |#2| (-771)) 18) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-1081)) NIL) (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL)) (-3251 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-2132 (($ (-1 (-771) (-771)) $) NIL)) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-3840 (((-1171 |#2|) $) NIL)) (-3339 (((-3 (-1081) "failed") $) NIL)) (-3545 (($ $) NIL)) (-3557 ((|#2| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-2878 (((-1157) $) NIL)) (-1497 (((-2 (|:| -2760 $) (|:| -1644 $)) $ (-771)) NIL)) (-2692 (((-3 (-644 $) "failed") $) NIL)) (-1853 (((-3 (-644 $) "failed") $) NIL)) (-3285 (((-3 (-2 (|:| |var| (-1081)) (|:| -3250 (-771))) "failed") $) NIL)) (-4117 (($ $) NIL (|has| |#2| (-38 (-409 (-566)))))) (-2759 (($) NIL (|has| |#2| (-1150)) CONST)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 ((|#2| $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-454)))) (-2222 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-1441 (($ $ (-771) |#2| $) NIL)) (-1647 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2391 (((-420 $) $) NIL (|has| |#2| (-909)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#2| (-365)))) (-2972 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#2| (-365)))) (-2070 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1081) |#2|) NIL) (($ $ (-644 (-1081)) (-644 |#2|)) NIL) (($ $ (-1081) $) NIL) (($ $ (-644 (-1081)) (-644 $)) NIL)) (-1813 (((-771) $) NIL (|has| |#2| (-365)))) (-4386 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-409 $) (-409 $) (-409 $)) NIL (|has| |#2| (-558))) ((|#2| (-409 $) |#2|) NIL (|has| |#2| (-365))) (((-409 $) $ (-409 $)) NIL (|has| |#2| (-558)))) (-1876 (((-3 $ "failed") $ (-771)) NIL)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#2| (-365)))) (-2408 (($ $ (-1081)) NIL (|has| |#2| (-172))) ((|#2| $) NIL (|has| |#2| (-172)))) (-2862 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-3992 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-3134 (((-892 (-381)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1081) (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3181 ((|#2| $) NIL (|has| |#2| (-454))) (($ $ (-1081)) NIL (|has| |#2| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-4293 (((-3 $ "failed") $ $) NIL (|has| |#2| (-558))) (((-3 (-409 $) "failed") (-409 $) $) NIL (|has| |#2| (-558)))) (-2512 (((-862) $) 13) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-1081)) NIL) (($ (-1260 |#1|)) 20) (($ (-409 (-566))) NIL (-2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#2| (-558)))) (-3868 (((-644 |#2|) $) NIL)) (-2022 ((|#2| $ (-771)) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3842 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| |#2| (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL (|has| |#2| (-558)))) (-2485 (($) NIL T CONST)) (-2495 (($) 14 T CONST)) (-2840 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#2| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#2| (-38 (-409 (-566))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
-(((-1237 |#1| |#2|) (-13 (-1240 |#2|) (-616 (-1260 |#1|)) (-10 -8 (-15 -1441 ($ $ (-771) |#2| $)))) (-1175) (-1049)) (T -1237))
-((-1441 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1237 *4 *3)) (-14 *4 (-1175)) (-4 *3 (-1049)))))
-(-13 (-1240 |#2|) (-616 (-1260 |#1|)) (-10 -8 (-15 -1441 ($ $ (-771) |#2| $))))
-((-3077 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
-(((-1238 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3077 (|#4| (-1 |#3| |#1|) |#2|))) (-1049) (-1240 |#1|) (-1049) (-1240 |#3|)) (T -1238))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-4 *2 (-1240 *6)) (-5 *1 (-1238 *5 *4 *6 *2)) (-4 *4 (-1240 *5)))))
-(-10 -7 (-15 -3077 (|#4| (-1 |#3| |#1|) |#2|)))
-((-2025 (((-1264 |#2|) $ (-771)) 129)) (-2540 (((-644 (-1081)) $) 16)) (-3526 (($ (-1171 |#2|)) 80)) (-3678 (((-771) $) NIL) (((-771) $ (-644 (-1081))) 21)) (-2055 (((-420 (-1171 $)) (-1171 $)) 204)) (-2857 (($ $) 194)) (-1370 (((-420 $) $) 192)) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 95)) (-4047 (($ $ (-771)) 84)) (-2284 (($ $ (-771)) 86)) (-2542 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 145)) (-2977 (((-3 |#2| "failed") $) 132) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 (-1081) "failed") $) NIL)) (-1756 ((|#2| $) 130) (((-409 (-566)) $) NIL) (((-566) $) NIL) (((-1081) $) NIL)) (-2213 (($ $ $) 170)) (-2513 (((-2 (|:| -3157 |#2|) (|:| -2760 $) (|:| -1644 $)) $ $) 172)) (-2716 (((-771) $ $) 189)) (-2546 (((-3 $ "failed") $) 138)) (-2519 (($ |#2| (-771)) NIL) (($ $ (-1081) (-771)) 59) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3251 (((-771) $) NIL) (((-771) $ (-1081)) 54) (((-644 (-771)) $ (-644 (-1081))) 55)) (-3840 (((-1171 |#2|) $) 72)) (-3339 (((-3 (-1081) "failed") $) 52)) (-1497 (((-2 (|:| -2760 $) (|:| -1644 $)) $ (-771)) 83)) (-4117 (($ $) 219)) (-2759 (($) 134)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 201)) (-1647 (((-420 (-1171 $)) (-1171 $)) 101)) (-4138 (((-420 (-1171 $)) (-1171 $)) 99)) (-2391 (((-420 $) $) 120)) (-2070 (($ $ (-644 (-295 $))) 51) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1081) |#2|) 39) (($ $ (-644 (-1081)) (-644 |#2|)) 36) (($ $ (-1081) $) 32) (($ $ (-644 (-1081)) (-644 $)) 30)) (-1813 (((-771) $) 207)) (-4386 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-409 $) (-409 $) (-409 $)) 164) ((|#2| (-409 $) |#2|) 206) (((-409 $) $ (-409 $)) 188)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 212)) (-2862 (($ $ (-1081)) 157) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) 155) (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 154) (($ $ (-1 |#2| |#2|) $) 149)) (-3992 (((-771) $) NIL) (((-771) $ (-1081)) 17) (((-644 (-771)) $ (-644 (-1081))) 23)) (-3181 ((|#2| $) NIL) (($ $ (-1081)) 140)) (-4293 (((-3 $ "failed") $ $) 180) (((-3 (-409 $) "failed") (-409 $) $) 176)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-1081)) 64) (($ (-409 (-566))) NIL) (($ $) NIL)))
-(((-1239 |#1| |#2|) (-10 -8 (-15 -2512 (|#1| |#1|)) (-15 -4319 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -1370 ((-420 |#1|) |#1|)) (-15 -2857 (|#1| |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2759 (|#1|)) (-15 -2546 ((-3 |#1| "failed") |#1|)) (-15 -4386 ((-409 |#1|) |#1| (-409 |#1|))) (-15 -1813 ((-771) |#1|)) (-15 -2347 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -4117 (|#1| |#1|)) (-15 -4386 (|#2| (-409 |#1|) |#2|)) (-15 -2542 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -2513 ((-2 (|:| -3157 |#2|) (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -2213 (|#1| |#1| |#1|)) (-15 -4293 ((-3 (-409 |#1|) "failed") (-409 |#1|) |#1|)) (-15 -4293 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2716 ((-771) |#1| |#1|)) (-15 -4386 ((-409 |#1|) (-409 |#1|) (-409 |#1|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2284 (|#1| |#1| (-771))) (-15 -4047 (|#1| |#1| (-771))) (-15 -1497 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| (-771))) (-15 -3526 (|#1| (-1171 |#2|))) (-15 -3840 ((-1171 |#2|) |#1|)) (-15 -2025 ((-1264 |#2|) |#1| (-771))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -4386 (|#1| |#1| |#1|)) (-15 -4386 (|#2| |#1| |#2|)) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -2055 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -4138 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1647 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1348 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -3181 (|#1| |#1| (-1081))) (-15 -2540 ((-644 (-1081)) |#1|)) (-15 -3678 ((-771) |#1| (-644 (-1081)))) (-15 -3678 ((-771) |#1|)) (-15 -2519 (|#1| |#1| (-644 (-1081)) (-644 (-771)))) (-15 -2519 (|#1| |#1| (-1081) (-771))) (-15 -3251 ((-644 (-771)) |#1| (-644 (-1081)))) (-15 -3251 ((-771) |#1| (-1081))) (-15 -3339 ((-3 (-1081) "failed") |#1|)) (-15 -3992 ((-644 (-771)) |#1| (-644 (-1081)))) (-15 -3992 ((-771) |#1| (-1081))) (-15 -2512 (|#1| (-1081))) (-15 -2977 ((-3 (-1081) "failed") |#1|)) (-15 -1756 ((-1081) |#1|)) (-15 -2070 (|#1| |#1| (-644 (-1081)) (-644 |#1|))) (-15 -2070 (|#1| |#1| (-1081) |#1|)) (-15 -2070 (|#1| |#1| (-644 (-1081)) (-644 |#2|))) (-15 -2070 (|#1| |#1| (-1081) |#2|)) (-15 -2070 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#1| |#1|)) (-15 -2070 (|#1| |#1| (-295 |#1|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -3992 ((-771) |#1|)) (-15 -2519 (|#1| |#2| (-771))) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -3251 ((-771) |#1|)) (-15 -3181 (|#2| |#1|)) (-15 -2862 (|#1| |#1| (-644 (-1081)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1081) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1081)))) (-15 -2862 (|#1| |#1| (-1081))) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|))) (-1240 |#2|) (-1049)) (T -1239))
-NIL
-(-10 -8 (-15 -2512 (|#1| |#1|)) (-15 -4319 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -1370 ((-420 |#1|) |#1|)) (-15 -2857 (|#1| |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2759 (|#1|)) (-15 -2546 ((-3 |#1| "failed") |#1|)) (-15 -4386 ((-409 |#1|) |#1| (-409 |#1|))) (-15 -1813 ((-771) |#1|)) (-15 -2347 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -4117 (|#1| |#1|)) (-15 -4386 (|#2| (-409 |#1|) |#2|)) (-15 -2542 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -2513 ((-2 (|:| -3157 |#2|) (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| |#1|)) (-15 -2213 (|#1| |#1| |#1|)) (-15 -4293 ((-3 (-409 |#1|) "failed") (-409 |#1|) |#1|)) (-15 -4293 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2716 ((-771) |#1| |#1|)) (-15 -4386 ((-409 |#1|) (-409 |#1|) (-409 |#1|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2284 (|#1| |#1| (-771))) (-15 -4047 (|#1| |#1| (-771))) (-15 -1497 ((-2 (|:| -2760 |#1|) (|:| -1644 |#1|)) |#1| (-771))) (-15 -3526 (|#1| (-1171 |#2|))) (-15 -3840 ((-1171 |#2|) |#1|)) (-15 -2025 ((-1264 |#2|) |#1| (-771))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2862 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1175) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1175)))) (-15 -2862 (|#1| |#1| (-1175))) (-15 -2862 (|#1| |#1|)) (-15 -2862 (|#1| |#1| (-771))) (-15 -4386 (|#1| |#1| |#1|)) (-15 -4386 (|#2| |#1| |#2|)) (-15 -2391 ((-420 |#1|) |#1|)) (-15 -2055 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -4138 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1647 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -1348 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -3181 (|#1| |#1| (-1081))) (-15 -2540 ((-644 (-1081)) |#1|)) (-15 -3678 ((-771) |#1| (-644 (-1081)))) (-15 -3678 ((-771) |#1|)) (-15 -2519 (|#1| |#1| (-644 (-1081)) (-644 (-771)))) (-15 -2519 (|#1| |#1| (-1081) (-771))) (-15 -3251 ((-644 (-771)) |#1| (-644 (-1081)))) (-15 -3251 ((-771) |#1| (-1081))) (-15 -3339 ((-3 (-1081) "failed") |#1|)) (-15 -3992 ((-644 (-771)) |#1| (-644 (-1081)))) (-15 -3992 ((-771) |#1| (-1081))) (-15 -2512 (|#1| (-1081))) (-15 -2977 ((-3 (-1081) "failed") |#1|)) (-15 -1756 ((-1081) |#1|)) (-15 -2070 (|#1| |#1| (-644 (-1081)) (-644 |#1|))) (-15 -2070 (|#1| |#1| (-1081) |#1|)) (-15 -2070 (|#1| |#1| (-644 (-1081)) (-644 |#2|))) (-15 -2070 (|#1| |#1| (-1081) |#2|)) (-15 -2070 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2070 (|#1| |#1| |#1| |#1|)) (-15 -2070 (|#1| |#1| (-295 |#1|))) (-15 -2070 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -3992 ((-771) |#1|)) (-15 -2519 (|#1| |#2| (-771))) (-15 -2977 ((-3 (-566) "failed") |#1|)) (-15 -1756 ((-566) |#1|)) (-15 -2977 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1756 ((-409 (-566)) |#1|)) (-15 -1756 (|#2| |#1|)) (-15 -2977 ((-3 |#2| "failed") |#1|)) (-15 -2512 (|#1| |#2|)) (-15 -3251 ((-771) |#1|)) (-15 -3181 (|#2| |#1|)) (-15 -2862 (|#1| |#1| (-644 (-1081)) (-644 (-771)))) (-15 -2862 (|#1| |#1| (-1081) (-771))) (-15 -2862 (|#1| |#1| (-644 (-1081)))) (-15 -2862 (|#1| |#1| (-1081))) (-15 -2512 (|#1| (-566))) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2025 (((-1264 |#1|) $ (-771)) 240)) (-2540 (((-644 (-1081)) $) 112)) (-3526 (($ (-1171 |#1|)) 238)) (-2358 (((-1171 $) $ (-1081)) 127) (((-1171 |#1|) $) 126)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 89 (|has| |#1| (-558)))) (-3653 (($ $) 90 (|has| |#1| (-558)))) (-2152 (((-112) $) 92 (|has| |#1| (-558)))) (-3678 (((-771) $) 114) (((-771) $ (-644 (-1081))) 113)) (-4126 (((-3 $ "failed") $ $) 20)) (-2829 (($ $ $) 225 (|has| |#1| (-558)))) (-2055 (((-420 (-1171 $)) (-1171 $)) 102 (|has| |#1| (-909)))) (-2857 (($ $) 100 (|has| |#1| (-454)))) (-1370 (((-420 $) $) 99 (|has| |#1| (-454)))) (-1348 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 105 (|has| |#1| (-909)))) (-1561 (((-112) $ $) 210 (|has| |#1| (-365)))) (-4047 (($ $ (-771)) 233)) (-2284 (($ $ (-771)) 232)) (-2542 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 220 (|has| |#1| (-454)))) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#1| "failed") $) 166) (((-3 (-409 (-566)) "failed") $) 163 (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) 161 (|has| |#1| (-1038 (-566)))) (((-3 (-1081) "failed") $) 138)) (-1756 ((|#1| $) 165) (((-409 (-566)) $) 164 (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) 162 (|has| |#1| (-1038 (-566)))) (((-1081) $) 139)) (-1552 (($ $ $ (-1081)) 110 (|has| |#1| (-172))) ((|#1| $ $) 228 (|has| |#1| (-172)))) (-2926 (($ $ $) 214 (|has| |#1| (-365)))) (-3577 (($ $) 156)) (-1628 (((-689 (-566)) (-689 $)) 136 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 135 (|has| |#1| (-639 (-566)))) (((-2 (|:| -1380 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 134) (((-689 |#1|) (-689 $)) 133)) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 213 (|has| |#1| (-365)))) (-2762 (($ $ $) 231)) (-2213 (($ $ $) 222 (|has| |#1| (-558)))) (-2513 (((-2 (|:| -3157 |#1|) (|:| -2760 $) (|:| -1644 $)) $ $) 221 (|has| |#1| (-558)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 208 (|has| |#1| (-365)))) (-4248 (($ $) 178 (|has| |#1| (-454))) (($ $ (-1081)) 107 (|has| |#1| (-454)))) (-3567 (((-644 $) $) 111)) (-2635 (((-112) $) 98 (|has| |#1| (-909)))) (-2804 (($ $ |#1| (-771) $) 174)) (-1356 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 86 (-12 (|has| (-1081) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 85 (-12 (|has| (-1081) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-2716 (((-771) $ $) 226 (|has| |#1| (-558)))) (-2741 (((-112) $) 35)) (-3505 (((-771) $) 171)) (-2546 (((-3 $ "failed") $) 206 (|has| |#1| (-1150)))) (-2530 (($ (-1171 |#1|) (-1081)) 119) (($ (-1171 $) (-1081)) 118)) (-3432 (($ $ (-771)) 237)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 217 (|has| |#1| (-365)))) (-1363 (((-644 $) $) 128)) (-4367 (((-112) $) 154)) (-2519 (($ |#1| (-771)) 155) (($ $ (-1081) (-771)) 121) (($ $ (-644 (-1081)) (-644 (-771))) 120)) (-3345 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $ (-1081)) 122) (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 235)) (-3251 (((-771) $) 172) (((-771) $ (-1081)) 124) (((-644 (-771)) $ (-644 (-1081))) 123)) (-2132 (($ (-1 (-771) (-771)) $) 173)) (-3077 (($ (-1 |#1| |#1|) $) 153)) (-3840 (((-1171 |#1|) $) 239)) (-3339 (((-3 (-1081) "failed") $) 125)) (-3545 (($ $) 151)) (-3557 ((|#1| $) 150)) (-2184 (($ (-644 $)) 96 (|has| |#1| (-454))) (($ $ $) 95 (|has| |#1| (-454)))) (-2878 (((-1157) $) 10)) (-1497 (((-2 (|:| -2760 $) (|:| -1644 $)) $ (-771)) 234)) (-2692 (((-3 (-644 $) "failed") $) 116)) (-1853 (((-3 (-644 $) "failed") $) 117)) (-3285 (((-3 (-2 (|:| |var| (-1081)) (|:| -3250 (-771))) "failed") $) 115)) (-4117 (($ $) 218 (|has| |#1| (-38 (-409 (-566)))))) (-2759 (($) 205 (|has| |#1| (-1150)) CONST)) (-4033 (((-1119) $) 11)) (-2636 (((-112) $) 168)) (-3531 ((|#1| $) 169)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 97 (|has| |#1| (-454)))) (-2222 (($ (-644 $)) 94 (|has| |#1| (-454))) (($ $ $) 93 (|has| |#1| (-454)))) (-1647 (((-420 (-1171 $)) (-1171 $)) 104 (|has| |#1| (-909)))) (-4138 (((-420 (-1171 $)) (-1171 $)) 103 (|has| |#1| (-909)))) (-2391 (((-420 $) $) 101 (|has| |#1| (-909)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 216 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 215 (|has| |#1| (-365)))) (-2972 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 209 (|has| |#1| (-365)))) (-2070 (($ $ (-644 (-295 $))) 147) (($ $ (-295 $)) 146) (($ $ $ $) 145) (($ $ (-644 $) (-644 $)) 144) (($ $ (-1081) |#1|) 143) (($ $ (-644 (-1081)) (-644 |#1|)) 142) (($ $ (-1081) $) 141) (($ $ (-644 (-1081)) (-644 $)) 140)) (-1813 (((-771) $) 211 (|has| |#1| (-365)))) (-4386 ((|#1| $ |#1|) 258) (($ $ $) 257) (((-409 $) (-409 $) (-409 $)) 227 (|has| |#1| (-558))) ((|#1| (-409 $) |#1|) 219 (|has| |#1| (-365))) (((-409 $) $ (-409 $)) 207 (|has| |#1| (-558)))) (-1876 (((-3 $ "failed") $ (-771)) 236)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 212 (|has| |#1| (-365)))) (-2408 (($ $ (-1081)) 109 (|has| |#1| (-172))) ((|#1| $) 229 (|has| |#1| (-172)))) (-2862 (($ $ (-1081)) 46) (($ $ (-644 (-1081))) 45) (($ $ (-1081) (-771)) 44) (($ $ (-644 (-1081)) (-644 (-771))) 43) (($ $ (-771)) 255) (($ $) 253) (($ $ (-1175)) 252 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 251 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 250 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 249 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 242) (($ $ (-1 |#1| |#1|)) 241) (($ $ (-1 |#1| |#1|) $) 230)) (-3992 (((-771) $) 152) (((-771) $ (-1081)) 132) (((-644 (-771)) $ (-644 (-1081))) 131)) (-3134 (((-892 (-381)) $) 84 (-12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) 83 (-12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) 82 (-12 (|has| (-1081) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3181 ((|#1| $) 177 (|has| |#1| (-454))) (($ $ (-1081)) 108 (|has| |#1| (-454)))) (-3273 (((-3 (-1264 $) "failed") (-689 $)) 106 (-2438 (|has| $ (-145)) (|has| |#1| (-909))))) (-4293 (((-3 $ "failed") $ $) 224 (|has| |#1| (-558))) (((-3 (-409 $) "failed") (-409 $) $) 223 (|has| |#1| (-558)))) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 167) (($ (-1081)) 137) (($ (-409 (-566))) 80 (-2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566)))))) (($ $) 87 (|has| |#1| (-558)))) (-3868 (((-644 |#1|) $) 170)) (-2022 ((|#1| $ (-771)) 157) (($ $ (-1081) (-771)) 130) (($ $ (-644 (-1081)) (-644 (-771))) 129)) (-3842 (((-3 $ "failed") $) 81 (-2805 (-2438 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3795 (((-771)) 32 T CONST)) (-2468 (($ $ $ (-771)) 175 (|has| |#1| (-172)))) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 91 (|has| |#1| (-558)))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-1081)) 42) (($ $ (-644 (-1081))) 41) (($ $ (-1081) (-771)) 40) (($ $ (-644 (-1081)) (-644 (-771))) 39) (($ $ (-771)) 256) (($ $) 254) (($ $ (-1175)) 248 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 247 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 246 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 245 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 244) (($ $ (-1 |#1| |#1|)) 243)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 158 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 160 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 159 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2486 (((-1256 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-308)) (|has| |#1| (-365))))) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) 10)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-1968 (($ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-2644 (((-112) $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-2922 (($ $ (-566)) NIL) (($ $ (-566) (-566)) NIL)) (-2455 (((-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|))) $) NIL)) (-2015 (((-1256 |#1| |#2| |#3|) $) NIL)) (-2827 (((-3 (-1256 |#1| |#2| |#3|) "failed") $) NIL)) (-3543 (((-1256 |#1| |#2| |#3|) $) NIL)) (-2865 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-2179 (($ $) NIL (|has| |#1| (-365)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2843 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2899 (((-566) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-1903 (($ (-1155 (-2 (|:| |k| (-566)) (|:| |c| |#1|)))) NIL)) (-2888 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-1256 |#1| |#2| |#3|) "failed") $) NIL) (((-3 (-1175) "failed") $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (((-3 (-409 (-566)) "failed") $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365)))) (((-3 (-566) "failed") $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))))) (-1867 (((-1256 |#1| |#2| |#3|) $) NIL) (((-1175) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (((-409 (-566)) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365)))) (((-566) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))))) (-1370 (($ $) NIL) (($ (-566) $) NIL)) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) NIL)) (-2210 (((-689 (-1256 |#1| |#2| |#3|)) (-689 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -4193 (-689 (-1256 |#1| |#2| |#3|))) (|:| |vec| (-1264 (-1256 |#1| |#2| |#3|)))) (-689 $) (-1264 $)) NIL (|has| |#1| (-365))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-639 (-566))) (|has| |#1| (-365)))) (((-689 (-566)) (-689 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-639 (-566))) (|has| |#1| (-365))))) (-2928 (((-3 $ "failed") $) NIL)) (-3240 (((-409 (-952 |#1|)) $ (-566)) NIL (|has| |#1| (-558))) (((-409 (-952 |#1|)) $ (-566) (-566)) NIL (|has| |#1| (-558)))) (-1618 (($) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-1784 (((-112) $) NIL (|has| |#1| (-365)))) (-1533 (((-112) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-4392 (((-112) $) NIL)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-886 (-381))) (|has| |#1| (-365)))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-886 (-566))) (|has| |#1| (-365))))) (-3227 (((-566) $) NIL) (((-566) $ (-566)) NIL)) (-3466 (((-112) $) NIL)) (-2227 (($ $) NIL (|has| |#1| (-365)))) (-3088 (((-1256 |#1| |#2| |#3|) $) NIL (|has| |#1| (-365)))) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2133 (((-3 $ "failed") $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1150)) (|has| |#1| (-365))))) (-2917 (((-112) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-1644 (($ $ (-921)) NIL)) (-2654 (($ (-1 |#1| (-566)) $) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-566)) 18) (($ $ (-1081) (-566)) NIL) (($ $ (-644 (-1081)) (-644 (-566))) NIL)) (-1945 (($ $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2709 (($ $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-365)))) (-3671 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3553 (($ (-566) (-1256 |#1| |#2| |#3|)) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-365)))) (-3921 (($ $) 27 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 28 (|has| |#1| (-38 (-409 (-566)))))) (-3625 (($) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1150)) (|has| |#1| (-365))) CONST)) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2539 (($ $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-308)) (|has| |#1| (-365))))) (-2209 (((-1256 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-2473 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2295 (($ $ (-566)) NIL)) (-2997 (((-3 $ "failed") $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4337 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-566))))) (($ $ (-1175) (-1256 |#1| |#2| |#3|)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-516 (-1175) (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-1175)) (-644 (-1256 |#1| |#2| |#3|))) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-516 (-1175) (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-295 (-1256 |#1| |#2| |#3|)))) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-310 (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-295 (-1256 |#1| |#2| |#3|))) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-310 (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-310 (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365)))) (($ $ (-644 (-1256 |#1| |#2| |#3|)) (-644 (-1256 |#1| |#2| |#3|))) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-310 (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365))))) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ (-566)) NIL) (($ $ $) NIL (|has| (-566) (-1111))) (($ $ (-1256 |#1| |#2| |#3|)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-287 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|))) (|has| |#1| (-365))))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-2578 (($ $ (-1 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|))) NIL (|has| |#1| (-365))) (($ $ (-1 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) (-771)) NIL (|has| |#1| (-365))) (($ $ (-1260 |#2|)) 26) (($ $ (-771)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) 25 (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-1431 (($ $) NIL (|has| |#1| (-365)))) (-3100 (((-1256 |#1| |#2| |#3|) $) NIL (|has| |#1| (-365)))) (-2108 (((-566) $) NIL)) (-2897 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3204 (((-538) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-614 (-538))) (|has| |#1| (-365)))) (((-381) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1022)) (|has| |#1| (-365)))) (((-225) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1022)) (|has| |#1| (-365)))) (((-892 (-381)) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-614 (-892 (-381)))) (|has| |#1| (-365)))) (((-892 (-566)) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-614 (-892 (-566)))) (|has| |#1| (-365))))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))))) (-1377 (($ $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1256 |#1| |#2| |#3|)) NIL) (($ (-1260 |#2|)) 24) (($ (-1175)) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-1175))) (|has| |#1| (-365)))) (($ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558)))) (($ (-409 (-566))) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-1038 (-566))) (|has| |#1| (-365))) (|has| |#1| (-38 (-409 (-566))))))) (-3756 ((|#1| $ (-566)) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-145)) (|has| |#1| (-365))) (|has| |#1| (-145))))) (-3996 (((-771)) NIL T CONST)) (-3174 ((|#1| $) 11)) (-1982 (((-1256 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-547)) (|has| |#1| (-365))))) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-909)) (|has| |#1| (-365))) (|has| |#1| (-558))))) (-2907 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-566)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-566)))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3333 (($ $) NIL (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))))) (-2493 (($) 20 T CONST)) (-4333 (($) 15 T CONST)) (-2876 (($ $ (-1 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|))) NIL (|has| |#1| (-365))) (($ $ (-1 (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) (-771)) NIL (|has| |#1| (-365))) (($ $ (-771)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-233)) (|has| |#1| (-365))) (|has| |#1| (-15 * (|#1| (-566) |#1|))))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175) (-771)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-644 (-1175))) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175)))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-900 (-1175))) (|has| |#1| (-365))) (-12 (|has| |#1| (-15 * (|#1| (-566) |#1|))) (|has| |#1| (-900 (-1175))))))) (-3010 (((-112) $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2984 (((-112) $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2950 (((-112) $ $) NIL)) (-2999 (((-112) $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-2972 (((-112) $ $) NIL (-2805 (-12 (|has| (-1256 |#1| |#2| |#3|) (-820)) (|has| |#1| (-365))) (-12 (|has| (-1256 |#1| |#2| |#3|) (-850)) (|has| |#1| (-365)))))) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365))) (($ (-1256 |#1| |#2| |#3|) (-1256 |#1| |#2| |#3|)) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 22)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ (-1256 |#1| |#2| |#3|)) NIL (|has| |#1| (-365))) (($ (-1256 |#1| |#2| |#3|) $) NIL (|has| |#1| (-365))) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-1228 |#1| |#2| |#3|) (-13 (-1226 |#1| (-1256 |#1| |#2| |#3|)) (-10 -8 (-15 -3780 ($ (-1260 |#2|))) (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1228))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1228 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1228 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-3921 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1228 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
+(-13 (-1226 |#1| (-1256 |#1| |#2| |#3|)) (-10 -8 (-15 -3780 ($ (-1260 |#2|))) (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|)))
+((-1997 (((-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))) |#1| (-112)) 13)) (-3173 (((-420 |#1|) |#1|) 26)) (-2473 (((-420 |#1|) |#1|) 24)))
+(((-1229 |#1|) (-10 -7 (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3173 ((-420 |#1|) |#1|)) (-15 -1997 ((-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))) |#1| (-112)))) (-1240 (-566))) (T -1229))
+((-1997 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| *3) (|:| -2831 (-566))))))) (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))) (-3173 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))) (-2473 (*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))))
+(-10 -7 (-15 -2473 ((-420 |#1|) |#1|)) (-15 -3173 ((-420 |#1|) |#1|)) (-15 -1997 ((-2 (|:| |contp| (-566)) (|:| -2670 (-644 (-2 (|:| |irr| |#1|) (|:| -2831 (-566)))))) |#1| (-112))))
+((-3152 (((-1155 |#2|) (-1 |#2| |#1|) (-1231 |#1|)) 23 (|has| |#1| (-848))) (((-1231 |#2|) (-1 |#2| |#1|) (-1231 |#1|)) 17)))
+(((-1230 |#1| |#2|) (-10 -7 (-15 -3152 ((-1231 |#2|) (-1 |#2| |#1|) (-1231 |#1|))) (IF (|has| |#1| (-848)) (-15 -3152 ((-1155 |#2|) (-1 |#2| |#1|) (-1231 |#1|))) |%noBranch|)) (-1214) (-1214)) (T -1230))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1231 *5)) (-4 *5 (-848)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1155 *6)) (-5 *1 (-1230 *5 *6)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1231 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1231 *6)) (-5 *1 (-1230 *5 *6)))))
+(-10 -7 (-15 -3152 ((-1231 |#2|) (-1 |#2| |#1|) (-1231 |#1|))) (IF (|has| |#1| (-848)) (-15 -3152 ((-1155 |#2|) (-1 |#2| |#1|) (-1231 |#1|))) |%noBranch|))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-4210 (($ |#1| |#1|) 11) (($ |#1|) 10)) (-3152 (((-1155 |#1|) (-1 |#1| |#1|) $) 44 (|has| |#1| (-848)))) (-1762 ((|#1| $) 15)) (-3290 ((|#1| $) 12)) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-3577 (((-566) $) 19)) (-3603 ((|#1| $) 18)) (-3589 ((|#1| $) 13)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-1613 (((-112) $) 17)) (-1351 (((-1155 |#1|) $) 41 (|has| |#1| (-848))) (((-1155 |#1|) (-644 $)) 40 (|has| |#1| (-848)))) (-3204 (($ |#1|) 26)) (-3780 (($ (-1093 |#1|)) 25) (((-862) $) 37 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3646 (($ |#1| |#1|) 21) (($ |#1|) 20)) (-2733 (($ $ (-566)) 14)) (-2950 (((-112) $ $) 30 (|has| |#1| (-1099)))))
+(((-1231 |#1|) (-13 (-1092 |#1|) (-10 -8 (-15 -3646 ($ |#1|)) (-15 -4210 ($ |#1|)) (-15 -3780 ($ (-1093 |#1|))) (-15 -1613 ((-112) $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-1094 |#1| (-1155 |#1|))) |%noBranch|))) (-1214)) (T -1231))
+((-3646 (*1 *1 *2) (-12 (-5 *1 (-1231 *2)) (-4 *2 (-1214)))) (-4210 (*1 *1 *2) (-12 (-5 *1 (-1231 *2)) (-4 *2 (-1214)))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-1093 *3)) (-4 *3 (-1214)) (-5 *1 (-1231 *3)))) (-1613 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1231 *3)) (-4 *3 (-1214)))))
+(-13 (-1092 |#1|) (-10 -8 (-15 -3646 ($ |#1|)) (-15 -4210 ($ |#1|)) (-15 -3780 ($ (-1093 |#1|))) (-15 -1613 ((-112) $)) (IF (|has| |#1| (-1099)) (-6 (-1099)) |%noBranch|) (IF (|has| |#1| (-848)) (-6 (-1094 |#1| (-1155 |#1|))) |%noBranch|)))
+((-3152 (((-1237 |#3| |#4|) (-1 |#4| |#2|) (-1237 |#1| |#2|)) 15)))
+(((-1232 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3152 ((-1237 |#3| |#4|) (-1 |#4| |#2|) (-1237 |#1| |#2|)))) (-1175) (-1049) (-1175) (-1049)) (T -1232))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *8 *6)) (-5 *4 (-1237 *5 *6)) (-14 *5 (-1175)) (-4 *6 (-1049)) (-4 *8 (-1049)) (-5 *2 (-1237 *7 *8)) (-5 *1 (-1232 *5 *6 *7 *8)) (-14 *7 (-1175)))))
+(-10 -7 (-15 -3152 ((-1237 |#3| |#4|) (-1 |#4| |#2|) (-1237 |#1| |#2|))))
+((-2110 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-3981 ((|#1| |#3|) 13)) (-3812 ((|#3| |#3|) 19)))
+(((-1233 |#1| |#2| |#3|) (-10 -7 (-15 -3981 (|#1| |#3|)) (-15 -3812 (|#3| |#3|)) (-15 -2110 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-558) (-992 |#1|) (-1240 |#2|)) (T -1233))
+((-2110 (*1 *2 *3) (-12 (-4 *4 (-558)) (-4 *5 (-992 *4)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1233 *4 *5 *3)) (-4 *3 (-1240 *5)))) (-3812 (*1 *2 *2) (-12 (-4 *3 (-558)) (-4 *4 (-992 *3)) (-5 *1 (-1233 *3 *4 *2)) (-4 *2 (-1240 *4)))) (-3981 (*1 *2 *3) (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-1233 *2 *4 *3)) (-4 *3 (-1240 *4)))))
+(-10 -7 (-15 -3981 (|#1| |#3|)) (-15 -3812 (|#3| |#3|)) (-15 -2110 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-4118 (((-3 |#2| "failed") |#2| (-771) |#1|) 37)) (-4346 (((-3 |#2| "failed") |#2| (-771)) 38)) (-1388 (((-3 (-2 (|:| -4380 |#2|) (|:| -4394 |#2|)) "failed") |#2|) 52)) (-1701 (((-644 |#2|) |#2|) 54)) (-2714 (((-3 |#2| "failed") |#2| |#2|) 48)))
+(((-1234 |#1| |#2|) (-10 -7 (-15 -4346 ((-3 |#2| "failed") |#2| (-771))) (-15 -4118 ((-3 |#2| "failed") |#2| (-771) |#1|)) (-15 -2714 ((-3 |#2| "failed") |#2| |#2|)) (-15 -1388 ((-3 (-2 (|:| -4380 |#2|) (|:| -4394 |#2|)) "failed") |#2|)) (-15 -1701 ((-644 |#2|) |#2|))) (-13 (-558) (-147)) (-1240 |#1|)) (T -1234))
+((-1701 (*1 *2 *3) (-12 (-4 *4 (-13 (-558) (-147))) (-5 *2 (-644 *3)) (-5 *1 (-1234 *4 *3)) (-4 *3 (-1240 *4)))) (-1388 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-558) (-147))) (-5 *2 (-2 (|:| -4380 *3) (|:| -4394 *3))) (-5 *1 (-1234 *4 *3)) (-4 *3 (-1240 *4)))) (-2714 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-1234 *3 *2)) (-4 *2 (-1240 *3)))) (-4118 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-771)) (-4 *4 (-13 (-558) (-147))) (-5 *1 (-1234 *4 *2)) (-4 *2 (-1240 *4)))) (-4346 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-771)) (-4 *4 (-13 (-558) (-147))) (-5 *1 (-1234 *4 *2)) (-4 *2 (-1240 *4)))))
+(-10 -7 (-15 -4346 ((-3 |#2| "failed") |#2| (-771))) (-15 -4118 ((-3 |#2| "failed") |#2| (-771) |#1|)) (-15 -2714 ((-3 |#2| "failed") |#2| |#2|)) (-15 -1388 ((-3 (-2 (|:| -4380 |#2|) (|:| -4394 |#2|)) "failed") |#2|)) (-15 -1701 ((-644 |#2|) |#2|)))
+((-1959 (((-3 (-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) "failed") |#2| |#2|) 30)))
+(((-1235 |#1| |#2|) (-10 -7 (-15 -1959 ((-3 (-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) "failed") |#2| |#2|))) (-558) (-1240 |#1|)) (T -1235))
+((-1959 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-558)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-1235 *4 *3)) (-4 *3 (-1240 *4)))))
+(-10 -7 (-15 -1959 ((-3 (-2 (|:| -3644 |#2|) (|:| -4228 |#2|)) "failed") |#2| |#2|)))
+((-3421 ((|#2| |#2| |#2|) 22)) (-2135 ((|#2| |#2| |#2|) 36)) (-3782 ((|#2| |#2| |#2| (-771) (-771)) 44)))
+(((-1236 |#1| |#2|) (-10 -7 (-15 -3421 (|#2| |#2| |#2|)) (-15 -2135 (|#2| |#2| |#2|)) (-15 -3782 (|#2| |#2| |#2| (-771) (-771)))) (-1049) (-1240 |#1|)) (T -1236))
+((-3782 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-771)) (-4 *4 (-1049)) (-5 *1 (-1236 *4 *2)) (-4 *2 (-1240 *4)))) (-2135 (*1 *2 *2 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-1236 *3 *2)) (-4 *2 (-1240 *3)))) (-3421 (*1 *2 *2 *2) (-12 (-4 *3 (-1049)) (-5 *1 (-1236 *3 *2)) (-4 *2 (-1240 *3)))))
+(-10 -7 (-15 -3421 (|#2| |#2| |#2|)) (-15 -2135 (|#2| |#2| |#2|)) (-15 -3782 (|#2| |#2| |#2| (-771) (-771))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-3788 (((-1264 |#2|) $ (-771)) NIL)) (-2608 (((-644 (-1081)) $) NIL)) (-3220 (($ (-1171 |#2|)) NIL)) (-2438 (((-1171 $) $ (-1081)) NIL) (((-1171 |#2|) $) NIL)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#2| (-558)))) (-1968 (($ $) NIL (|has| |#2| (-558)))) (-2644 (((-112) $) NIL (|has| |#2| (-558)))) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-1081))) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-1911 (($ $ $) NIL (|has| |#2| (-558)))) (-4077 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2179 (($ $) NIL (|has| |#2| (-454)))) (-3271 (((-420 $) $) NIL (|has| |#2| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2738 (((-112) $ $) NIL (|has| |#2| (-365)))) (-1362 (($ $ (-771)) NIL)) (-1407 (($ $ (-771)) NIL)) (-2091 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-454)))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) NIL) (((-3 (-409 (-566)) "failed") $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) NIL (|has| |#2| (-1038 (-566)))) (((-3 (-1081) "failed") $) NIL)) (-1867 ((|#2| $) NIL) (((-409 (-566)) $) NIL (|has| |#2| (-1038 (-409 (-566))))) (((-566) $) NIL (|has| |#2| (-1038 (-566)))) (((-1081) $) NIL)) (-2662 (($ $ $ (-1081)) NIL (|has| |#2| (-172))) ((|#2| $ $) NIL (|has| |#2| (-172)))) (-2949 (($ $ $) NIL (|has| |#2| (-365)))) (-3645 (($ $) NIL)) (-2210 (((-689 (-566)) (-689 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) NIL (|has| |#2| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#2|)) (|:| |vec| (-1264 |#2|))) (-689 $) (-1264 $)) NIL) (((-689 |#2|) (-689 $)) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-2960 (($ $ $) NIL (|has| |#2| (-365)))) (-3667 (($ $ $) NIL)) (-1941 (($ $ $) NIL (|has| |#2| (-558)))) (-3048 (((-2 (|:| -3223 |#2|) (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#2| (-558)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#2| (-365)))) (-2755 (($ $) NIL (|has| |#2| (-454))) (($ $ (-1081)) NIL (|has| |#2| (-454)))) (-3635 (((-644 $) $) NIL)) (-1784 (((-112) $) NIL (|has| |#2| (-909)))) (-2871 (($ $ |#2| (-771) $) NIL)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) NIL (-12 (|has| (-1081) (-886 (-381))) (|has| |#2| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) NIL (-12 (|has| (-1081) (-886 (-566))) (|has| |#2| (-886 (-566)))))) (-3227 (((-771) $ $) NIL (|has| |#2| (-558)))) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2133 (((-3 $ "failed") $) NIL (|has| |#2| (-1150)))) (-2597 (($ (-1171 |#2|) (-1081)) NIL) (($ (-1171 $) (-1081)) NIL)) (-1644 (($ $ (-771)) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#2| (-365)))) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2585 (($ |#2| (-771)) 18) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-1081)) NIL) (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL)) (-2466 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-2443 (($ (-1 (-771) (-771)) $) NIL)) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-3207 (((-1171 |#2|) $) NIL)) (-1984 (((-3 (-1081) "failed") $) NIL)) (-3614 (($ $) NIL)) (-3626 ((|#2| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-2402 (((-1157) $) NIL)) (-3312 (((-2 (|:| -3644 $) (|:| -4228 $)) $ (-771)) NIL)) (-4201 (((-3 (-644 $) "failed") $) NIL)) (-2657 (((-3 (-644 $) "failed") $) NIL)) (-2749 (((-3 (-2 (|:| |var| (-1081)) (|:| -2456 (-771))) "failed") $) NIL)) (-3921 (($ $) NIL (|has| |#2| (-38 (-409 (-566)))))) (-3625 (($) NIL (|has| |#2| (-1150)) CONST)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 ((|#2| $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#2| (-454)))) (-2235 (($ (-644 $)) NIL (|has| |#2| (-454))) (($ $ $) NIL (|has| |#2| (-454)))) (-3959 (($ $ (-771) |#2| $) NIL)) (-4255 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) NIL (|has| |#2| (-909)))) (-2473 (((-420 $) $) NIL (|has| |#2| (-909)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#2| (-365)))) (-2997 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-558))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#2| (-365)))) (-2095 (($ $ (-644 (-295 $))) NIL) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1081) |#2|) NIL) (($ $ (-644 (-1081)) (-644 |#2|)) NIL) (($ $ (-1081) $) NIL) (($ $ (-644 (-1081)) (-644 $)) NIL)) (-3470 (((-771) $) NIL (|has| |#2| (-365)))) (-4393 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-409 $) (-409 $) (-409 $)) NIL (|has| |#2| (-558))) ((|#2| (-409 $) |#2|) NIL (|has| |#2| (-365))) (((-409 $) $ (-409 $)) NIL (|has| |#2| (-558)))) (-2867 (((-3 $ "failed") $ (-771)) NIL)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#2| (-365)))) (-3309 (($ $ (-1081)) NIL (|has| |#2| (-172))) ((|#2| $) NIL (|has| |#2| (-172)))) (-2578 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) $) NIL)) (-2108 (((-771) $) NIL) (((-771) $ (-1081)) NIL) (((-644 (-771)) $ (-644 (-1081))) NIL)) (-3204 (((-892 (-381)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#2| (-614 (-892 (-381)))))) (((-892 (-566)) $) NIL (-12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#2| (-614 (-892 (-566)))))) (((-538) $) NIL (-12 (|has| (-1081) (-614 (-538))) (|has| |#2| (-614 (-538)))))) (-3042 ((|#2| $) NIL (|has| |#2| (-454))) (($ $ (-1081)) NIL (|has| |#2| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) NIL (-12 (|has| $ (-145)) (|has| |#2| (-909))))) (-1970 (((-3 $ "failed") $ $) NIL (|has| |#2| (-558))) (((-3 (-409 $) "failed") (-409 $) $) NIL (|has| |#2| (-558)))) (-3780 (((-862) $) 13) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-1081)) NIL) (($ (-1260 |#1|)) 20) (($ (-409 (-566))) NIL (-2805 (|has| |#2| (-38 (-409 (-566)))) (|has| |#2| (-1038 (-409 (-566)))))) (($ $) NIL (|has| |#2| (-558)))) (-3456 (((-644 |#2|) $) NIL)) (-3756 ((|#2| $ (-771)) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3226 (((-3 $ "failed") $) NIL (-2805 (-12 (|has| $ (-145)) (|has| |#2| (-909))) (|has| |#2| (-145))))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| |#2| (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL (|has| |#2| (-558)))) (-2493 (($) NIL T CONST)) (-4333 (($) 14 T CONST)) (-2876 (($ $ (-1081)) NIL) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) NIL) (($ $ (-1175)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1175) (-771)) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) NIL (|has| |#2| (-900 (-1175)))) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) NIL)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#2|) NIL (|has| |#2| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-409 (-566))) NIL (|has| |#2| (-38 (-409 (-566))))) (($ (-409 (-566)) $) NIL (|has| |#2| (-38 (-409 (-566))))) (($ |#2| $) NIL) (($ $ |#2|) NIL)))
+(((-1237 |#1| |#2|) (-13 (-1240 |#2|) (-616 (-1260 |#1|)) (-10 -8 (-15 -3959 ($ $ (-771) |#2| $)))) (-1175) (-1049)) (T -1237))
+((-3959 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1237 *4 *3)) (-14 *4 (-1175)) (-4 *3 (-1049)))))
+(-13 (-1240 |#2|) (-616 (-1260 |#1|)) (-10 -8 (-15 -3959 ($ $ (-771) |#2| $))))
+((-3152 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
+(((-1238 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3152 (|#4| (-1 |#3| |#1|) |#2|))) (-1049) (-1240 |#1|) (-1049) (-1240 |#3|)) (T -1238))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-4 *2 (-1240 *6)) (-5 *1 (-1238 *5 *4 *6 *2)) (-4 *4 (-1240 *5)))))
+(-10 -7 (-15 -3152 (|#4| (-1 |#3| |#1|) |#2|)))
+((-3788 (((-1264 |#2|) $ (-771)) 129)) (-2608 (((-644 (-1081)) $) 16)) (-3220 (($ (-1171 |#2|)) 80)) (-2207 (((-771) $) NIL) (((-771) $ (-644 (-1081))) 21)) (-4077 (((-420 (-1171 $)) (-1171 $)) 204)) (-2179 (($ $) 194)) (-3271 (((-420 $) $) 192)) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 95)) (-1362 (($ $ (-771)) 84)) (-1407 (($ $ (-771)) 86)) (-2091 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 145)) (-3066 (((-3 |#2| "failed") $) 132) (((-3 (-409 (-566)) "failed") $) NIL) (((-3 (-566) "failed") $) NIL) (((-3 (-1081) "failed") $) NIL)) (-1867 ((|#2| $) 130) (((-409 (-566)) $) NIL) (((-566) $) NIL) (((-1081) $) NIL)) (-1941 (($ $ $) 170)) (-3048 (((-2 (|:| -3223 |#2|) (|:| -3644 $) (|:| -4228 $)) $ $) 172)) (-3227 (((-771) $ $) 189)) (-2133 (((-3 $ "failed") $) 138)) (-2585 (($ |#2| (-771)) NIL) (($ $ (-1081) (-771)) 59) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-2466 (((-771) $) NIL) (((-771) $ (-1081)) 54) (((-644 (-771)) $ (-644 (-1081))) 55)) (-3207 (((-1171 |#2|) $) 72)) (-1984 (((-3 (-1081) "failed") $) 52)) (-3312 (((-2 (|:| -3644 $) (|:| -4228 $)) $ (-771)) 83)) (-3921 (($ $) 219)) (-3625 (($) 134)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 201)) (-4255 (((-420 (-1171 $)) (-1171 $)) 101)) (-4137 (((-420 (-1171 $)) (-1171 $)) 99)) (-2473 (((-420 $) $) 120)) (-2095 (($ $ (-644 (-295 $))) 51) (($ $ (-295 $)) NIL) (($ $ $ $) NIL) (($ $ (-644 $) (-644 $)) NIL) (($ $ (-1081) |#2|) 39) (($ $ (-644 (-1081)) (-644 |#2|)) 36) (($ $ (-1081) $) 32) (($ $ (-644 (-1081)) (-644 $)) 30)) (-3470 (((-771) $) 207)) (-4393 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-409 $) (-409 $) (-409 $)) 164) ((|#2| (-409 $) |#2|) 206) (((-409 $) $ (-409 $)) 188)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 212)) (-2578 (($ $ (-1081)) 157) (($ $ (-644 (-1081))) NIL) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL) (($ $ (-771)) NIL) (($ $) 155) (($ $ (-1175)) NIL) (($ $ (-644 (-1175))) NIL) (($ $ (-1175) (-771)) NIL) (($ $ (-644 (-1175)) (-644 (-771))) NIL) (($ $ (-1 |#2| |#2|) (-771)) NIL) (($ $ (-1 |#2| |#2|)) 154) (($ $ (-1 |#2| |#2|) $) 149)) (-2108 (((-771) $) NIL) (((-771) $ (-1081)) 17) (((-644 (-771)) $ (-644 (-1081))) 23)) (-3042 ((|#2| $) NIL) (($ $ (-1081)) 140)) (-1970 (((-3 $ "failed") $ $) 180) (((-3 (-409 $) "failed") (-409 $) $) 176)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#2|) NIL) (($ (-1081)) 64) (($ (-409 (-566))) NIL) (($ $) NIL)))
+(((-1239 |#1| |#2|) (-10 -8 (-15 -3780 (|#1| |#1|)) (-15 -2221 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -3271 ((-420 |#1|) |#1|)) (-15 -2179 (|#1| |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3625 (|#1|)) (-15 -2133 ((-3 |#1| "failed") |#1|)) (-15 -4393 ((-409 |#1|) |#1| (-409 |#1|))) (-15 -3470 ((-771) |#1|)) (-15 -3919 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -3921 (|#1| |#1|)) (-15 -4393 (|#2| (-409 |#1|) |#2|)) (-15 -2091 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3048 ((-2 (|:| -3223 |#2|) (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -1941 (|#1| |#1| |#1|)) (-15 -1970 ((-3 (-409 |#1|) "failed") (-409 |#1|) |#1|)) (-15 -1970 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3227 ((-771) |#1| |#1|)) (-15 -4393 ((-409 |#1|) (-409 |#1|) (-409 |#1|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -1407 (|#1| |#1| (-771))) (-15 -1362 (|#1| |#1| (-771))) (-15 -3312 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| (-771))) (-15 -3220 (|#1| (-1171 |#2|))) (-15 -3207 ((-1171 |#2|) |#1|)) (-15 -3788 ((-1264 |#2|) |#1| (-771))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -4393 (|#1| |#1| |#1|)) (-15 -4393 (|#2| |#1| |#2|)) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -4077 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -4137 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -4255 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -3354 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -3042 (|#1| |#1| (-1081))) (-15 -2608 ((-644 (-1081)) |#1|)) (-15 -2207 ((-771) |#1| (-644 (-1081)))) (-15 -2207 ((-771) |#1|)) (-15 -2585 (|#1| |#1| (-644 (-1081)) (-644 (-771)))) (-15 -2585 (|#1| |#1| (-1081) (-771))) (-15 -2466 ((-644 (-771)) |#1| (-644 (-1081)))) (-15 -2466 ((-771) |#1| (-1081))) (-15 -1984 ((-3 (-1081) "failed") |#1|)) (-15 -2108 ((-644 (-771)) |#1| (-644 (-1081)))) (-15 -2108 ((-771) |#1| (-1081))) (-15 -3780 (|#1| (-1081))) (-15 -3066 ((-3 (-1081) "failed") |#1|)) (-15 -1867 ((-1081) |#1|)) (-15 -2095 (|#1| |#1| (-644 (-1081)) (-644 |#1|))) (-15 -2095 (|#1| |#1| (-1081) |#1|)) (-15 -2095 (|#1| |#1| (-644 (-1081)) (-644 |#2|))) (-15 -2095 (|#1| |#1| (-1081) |#2|)) (-15 -2095 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| (-295 |#1|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2108 ((-771) |#1|)) (-15 -2585 (|#1| |#2| (-771))) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -2466 ((-771) |#1|)) (-15 -3042 (|#2| |#1|)) (-15 -2578 (|#1| |#1| (-644 (-1081)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1081) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1081)))) (-15 -2578 (|#1| |#1| (-1081))) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|))) (-1240 |#2|) (-1049)) (T -1239))
+NIL
+(-10 -8 (-15 -3780 (|#1| |#1|)) (-15 -2221 ((-1171 |#1|) (-1171 |#1|) (-1171 |#1|))) (-15 -3271 ((-420 |#1|) |#1|)) (-15 -2179 (|#1| |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3625 (|#1|)) (-15 -2133 ((-3 |#1| "failed") |#1|)) (-15 -4393 ((-409 |#1|) |#1| (-409 |#1|))) (-15 -3470 ((-771) |#1|)) (-15 -3919 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -3921 (|#1| |#1|)) (-15 -4393 (|#2| (-409 |#1|) |#2|)) (-15 -2091 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3048 ((-2 (|:| -3223 |#2|) (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| |#1|)) (-15 -1941 (|#1| |#1| |#1|)) (-15 -1970 ((-3 (-409 |#1|) "failed") (-409 |#1|) |#1|)) (-15 -1970 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3227 ((-771) |#1| |#1|)) (-15 -4393 ((-409 |#1|) (-409 |#1|) (-409 |#1|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -1407 (|#1| |#1| (-771))) (-15 -1362 (|#1| |#1| (-771))) (-15 -3312 ((-2 (|:| -3644 |#1|) (|:| -4228 |#1|)) |#1| (-771))) (-15 -3220 (|#1| (-1171 |#2|))) (-15 -3207 ((-1171 |#2|) |#1|)) (-15 -3788 ((-1264 |#2|) |#1| (-771))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|))) (-15 -2578 (|#1| |#1| (-1 |#2| |#2|) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1175) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1175)))) (-15 -2578 (|#1| |#1| (-1175))) (-15 -2578 (|#1| |#1|)) (-15 -2578 (|#1| |#1| (-771))) (-15 -4393 (|#1| |#1| |#1|)) (-15 -4393 (|#2| |#1| |#2|)) (-15 -2473 ((-420 |#1|) |#1|)) (-15 -4077 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -4137 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -4255 ((-420 (-1171 |#1|)) (-1171 |#1|))) (-15 -3354 ((-3 (-644 (-1171 |#1|)) "failed") (-644 (-1171 |#1|)) (-1171 |#1|))) (-15 -3042 (|#1| |#1| (-1081))) (-15 -2608 ((-644 (-1081)) |#1|)) (-15 -2207 ((-771) |#1| (-644 (-1081)))) (-15 -2207 ((-771) |#1|)) (-15 -2585 (|#1| |#1| (-644 (-1081)) (-644 (-771)))) (-15 -2585 (|#1| |#1| (-1081) (-771))) (-15 -2466 ((-644 (-771)) |#1| (-644 (-1081)))) (-15 -2466 ((-771) |#1| (-1081))) (-15 -1984 ((-3 (-1081) "failed") |#1|)) (-15 -2108 ((-644 (-771)) |#1| (-644 (-1081)))) (-15 -2108 ((-771) |#1| (-1081))) (-15 -3780 (|#1| (-1081))) (-15 -3066 ((-3 (-1081) "failed") |#1|)) (-15 -1867 ((-1081) |#1|)) (-15 -2095 (|#1| |#1| (-644 (-1081)) (-644 |#1|))) (-15 -2095 (|#1| |#1| (-1081) |#1|)) (-15 -2095 (|#1| |#1| (-644 (-1081)) (-644 |#2|))) (-15 -2095 (|#1| |#1| (-1081) |#2|)) (-15 -2095 (|#1| |#1| (-644 |#1|) (-644 |#1|))) (-15 -2095 (|#1| |#1| |#1| |#1|)) (-15 -2095 (|#1| |#1| (-295 |#1|))) (-15 -2095 (|#1| |#1| (-644 (-295 |#1|)))) (-15 -2108 ((-771) |#1|)) (-15 -2585 (|#1| |#2| (-771))) (-15 -3066 ((-3 (-566) "failed") |#1|)) (-15 -1867 ((-566) |#1|)) (-15 -3066 ((-3 (-409 (-566)) "failed") |#1|)) (-15 -1867 ((-409 (-566)) |#1|)) (-15 -1867 (|#2| |#1|)) (-15 -3066 ((-3 |#2| "failed") |#1|)) (-15 -3780 (|#1| |#2|)) (-15 -2466 ((-771) |#1|)) (-15 -3042 (|#2| |#1|)) (-15 -2578 (|#1| |#1| (-644 (-1081)) (-644 (-771)))) (-15 -2578 (|#1| |#1| (-1081) (-771))) (-15 -2578 (|#1| |#1| (-644 (-1081)))) (-15 -2578 (|#1| |#1| (-1081))) (-15 -3780 (|#1| (-566))) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3788 (((-1264 |#1|) $ (-771)) 240)) (-2608 (((-644 (-1081)) $) 112)) (-3220 (($ (-1171 |#1|)) 238)) (-2438 (((-1171 $) $ (-1081)) 127) (((-1171 |#1|) $) 126)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 89 (|has| |#1| (-558)))) (-1968 (($ $) 90 (|has| |#1| (-558)))) (-2644 (((-112) $) 92 (|has| |#1| (-558)))) (-2207 (((-771) $) 114) (((-771) $ (-644 (-1081))) 113)) (-4014 (((-3 $ "failed") $ $) 20)) (-1911 (($ $ $) 225 (|has| |#1| (-558)))) (-4077 (((-420 (-1171 $)) (-1171 $)) 102 (|has| |#1| (-909)))) (-2179 (($ $) 100 (|has| |#1| (-454)))) (-3271 (((-420 $) $) 99 (|has| |#1| (-454)))) (-3354 (((-3 (-644 (-1171 $)) "failed") (-644 (-1171 $)) (-1171 $)) 105 (|has| |#1| (-909)))) (-2738 (((-112) $ $) 210 (|has| |#1| (-365)))) (-1362 (($ $ (-771)) 233)) (-1407 (($ $ (-771)) 232)) (-2091 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 220 (|has| |#1| (-454)))) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#1| "failed") $) 166) (((-3 (-409 (-566)) "failed") $) 163 (|has| |#1| (-1038 (-409 (-566))))) (((-3 (-566) "failed") $) 161 (|has| |#1| (-1038 (-566)))) (((-3 (-1081) "failed") $) 138)) (-1867 ((|#1| $) 165) (((-409 (-566)) $) 164 (|has| |#1| (-1038 (-409 (-566))))) (((-566) $) 162 (|has| |#1| (-1038 (-566)))) (((-1081) $) 139)) (-2662 (($ $ $ (-1081)) 110 (|has| |#1| (-172))) ((|#1| $ $) 228 (|has| |#1| (-172)))) (-2949 (($ $ $) 214 (|has| |#1| (-365)))) (-3645 (($ $) 156)) (-2210 (((-689 (-566)) (-689 $)) 136 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 (-566))) (|:| |vec| (-1264 (-566)))) (-689 $) (-1264 $)) 135 (|has| |#1| (-639 (-566)))) (((-2 (|:| -4193 (-689 |#1|)) (|:| |vec| (-1264 |#1|))) (-689 $) (-1264 $)) 134) (((-689 |#1|) (-689 $)) 133)) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 213 (|has| |#1| (-365)))) (-3667 (($ $ $) 231)) (-1941 (($ $ $) 222 (|has| |#1| (-558)))) (-3048 (((-2 (|:| -3223 |#1|) (|:| -3644 $) (|:| -4228 $)) $ $) 221 (|has| |#1| (-558)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 208 (|has| |#1| (-365)))) (-2755 (($ $) 178 (|has| |#1| (-454))) (($ $ (-1081)) 107 (|has| |#1| (-454)))) (-3635 (((-644 $) $) 111)) (-1784 (((-112) $) 98 (|has| |#1| (-909)))) (-2871 (($ $ |#1| (-771) $) 174)) (-1525 (((-889 (-381) $) $ (-892 (-381)) (-889 (-381) $)) 86 (-12 (|has| (-1081) (-886 (-381))) (|has| |#1| (-886 (-381))))) (((-889 (-566) $) $ (-892 (-566)) (-889 (-566) $)) 85 (-12 (|has| (-1081) (-886 (-566))) (|has| |#1| (-886 (-566)))))) (-3227 (((-771) $ $) 226 (|has| |#1| (-558)))) (-3466 (((-112) $) 35)) (-4230 (((-771) $) 171)) (-2133 (((-3 $ "failed") $) 206 (|has| |#1| (-1150)))) (-2597 (($ (-1171 |#1|) (-1081)) 119) (($ (-1171 $) (-1081)) 118)) (-1644 (($ $ (-771)) 237)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 217 (|has| |#1| (-365)))) (-2330 (((-644 $) $) 128)) (-1453 (((-112) $) 154)) (-2585 (($ |#1| (-771)) 155) (($ $ (-1081) (-771)) 121) (($ $ (-644 (-1081)) (-644 (-771))) 120)) (-2039 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $ (-1081)) 122) (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 235)) (-2466 (((-771) $) 172) (((-771) $ (-1081)) 124) (((-644 (-771)) $ (-644 (-1081))) 123)) (-2443 (($ (-1 (-771) (-771)) $) 173)) (-3152 (($ (-1 |#1| |#1|) $) 153)) (-3207 (((-1171 |#1|) $) 239)) (-1984 (((-3 (-1081) "failed") $) 125)) (-3614 (($ $) 151)) (-3626 ((|#1| $) 150)) (-2197 (($ (-644 $)) 96 (|has| |#1| (-454))) (($ $ $) 95 (|has| |#1| (-454)))) (-2402 (((-1157) $) 10)) (-3312 (((-2 (|:| -3644 $) (|:| -4228 $)) $ (-771)) 234)) (-4201 (((-3 (-644 $) "failed") $) 116)) (-2657 (((-3 (-644 $) "failed") $) 117)) (-2749 (((-3 (-2 (|:| |var| (-1081)) (|:| -2456 (-771))) "failed") $) 115)) (-3921 (($ $) 218 (|has| |#1| (-38 (-409 (-566)))))) (-3625 (($) 205 (|has| |#1| (-1150)) CONST)) (-4056 (((-1119) $) 11)) (-3595 (((-112) $) 168)) (-3604 ((|#1| $) 169)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 97 (|has| |#1| (-454)))) (-2235 (($ (-644 $)) 94 (|has| |#1| (-454))) (($ $ $) 93 (|has| |#1| (-454)))) (-4255 (((-420 (-1171 $)) (-1171 $)) 104 (|has| |#1| (-909)))) (-4137 (((-420 (-1171 $)) (-1171 $)) 103 (|has| |#1| (-909)))) (-2473 (((-420 $) $) 101 (|has| |#1| (-909)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 216 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 215 (|has| |#1| (-365)))) (-2997 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-558))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 209 (|has| |#1| (-365)))) (-2095 (($ $ (-644 (-295 $))) 147) (($ $ (-295 $)) 146) (($ $ $ $) 145) (($ $ (-644 $) (-644 $)) 144) (($ $ (-1081) |#1|) 143) (($ $ (-644 (-1081)) (-644 |#1|)) 142) (($ $ (-1081) $) 141) (($ $ (-644 (-1081)) (-644 $)) 140)) (-3470 (((-771) $) 211 (|has| |#1| (-365)))) (-4393 ((|#1| $ |#1|) 258) (($ $ $) 257) (((-409 $) (-409 $) (-409 $)) 227 (|has| |#1| (-558))) ((|#1| (-409 $) |#1|) 219 (|has| |#1| (-365))) (((-409 $) $ (-409 $)) 207 (|has| |#1| (-558)))) (-2867 (((-3 $ "failed") $ (-771)) 236)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 212 (|has| |#1| (-365)))) (-3309 (($ $ (-1081)) 109 (|has| |#1| (-172))) ((|#1| $) 229 (|has| |#1| (-172)))) (-2578 (($ $ (-1081)) 46) (($ $ (-644 (-1081))) 45) (($ $ (-1081) (-771)) 44) (($ $ (-644 (-1081)) (-644 (-771))) 43) (($ $ (-771)) 255) (($ $) 253) (($ $ (-1175)) 252 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 251 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 250 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 249 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 242) (($ $ (-1 |#1| |#1|)) 241) (($ $ (-1 |#1| |#1|) $) 230)) (-2108 (((-771) $) 152) (((-771) $ (-1081)) 132) (((-644 (-771)) $ (-644 (-1081))) 131)) (-3204 (((-892 (-381)) $) 84 (-12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381)))))) (((-892 (-566)) $) 83 (-12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566)))))) (((-538) $) 82 (-12 (|has| (-1081) (-614 (-538))) (|has| |#1| (-614 (-538)))))) (-3042 ((|#1| $) 177 (|has| |#1| (-454))) (($ $ (-1081)) 108 (|has| |#1| (-454)))) (-2664 (((-3 (-1264 $) "failed") (-689 $)) 106 (-2447 (|has| $ (-145)) (|has| |#1| (-909))))) (-1970 (((-3 $ "failed") $ $) 224 (|has| |#1| (-558))) (((-3 (-409 $) "failed") (-409 $) $) 223 (|has| |#1| (-558)))) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 167) (($ (-1081)) 137) (($ (-409 (-566))) 80 (-2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566)))))) (($ $) 87 (|has| |#1| (-558)))) (-3456 (((-644 |#1|) $) 170)) (-3756 ((|#1| $ (-771)) 157) (($ $ (-1081) (-771)) 130) (($ $ (-644 (-1081)) (-644 (-771))) 129)) (-3226 (((-3 $ "failed") $) 81 (-2805 (-2447 (|has| $ (-145)) (|has| |#1| (-909))) (|has| |#1| (-145))))) (-3996 (((-771)) 32 T CONST)) (-2629 (($ $ $ (-771)) 175 (|has| |#1| (-172)))) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 91 (|has| |#1| (-558)))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-1081)) 42) (($ $ (-644 (-1081))) 41) (($ $ (-1081) (-771)) 40) (($ $ (-644 (-1081)) (-644 (-771))) 39) (($ $ (-771)) 256) (($ $) 254) (($ $ (-1175)) 248 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175))) 247 (|has| |#1| (-900 (-1175)))) (($ $ (-1175) (-771)) 246 (|has| |#1| (-900 (-1175)))) (($ $ (-644 (-1175)) (-644 (-771))) 245 (|has| |#1| (-900 (-1175)))) (($ $ (-1 |#1| |#1|) (-771)) 244) (($ $ (-1 |#1| |#1|)) 243)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 158 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 160 (|has| |#1| (-38 (-409 (-566))))) (($ (-409 (-566)) $) 159 (|has| |#1| (-38 (-409 (-566))))) (($ |#1| $) 149) (($ $ |#1|) 148)))
(((-1240 |#1|) (-140) (-1049)) (T -1240))
-((-2025 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-1240 *4)) (-4 *4 (-1049)) (-5 *2 (-1264 *4)))) (-3840 (*1 *2 *1) (-12 (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-5 *2 (-1171 *3)))) (-3526 (*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-1049)) (-4 *1 (-1240 *3)))) (-3432 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))) (-1876 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))) (-3345 (*1 *2 *1 *1) (-12 (-4 *3 (-1049)) (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-1240 *3)))) (-1497 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *4 (-1049)) (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-1240 *4)))) (-4047 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))) (-2284 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))) (-2762 (*1 *1 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)))) (-2862 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))) (-2408 (*1 *2 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-172)))) (-1552 (*1 *2 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-172)))) (-4386 (*1 *2 *2 *2) (-12 (-5 *2 (-409 *1)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-4 *3 (-558)))) (-2716 (*1 *2 *1 *1) (-12 (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-4 *3 (-558)) (-5 *2 (-771)))) (-2829 (*1 *1 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))) (-4293 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))) (-4293 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-409 *1)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-4 *3 (-558)))) (-2213 (*1 *1 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))) (-2513 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -3157 *3) (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-1240 *3)))) (-2542 (*1 *2 *1 *1) (-12 (-4 *3 (-454)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1240 *3)))) (-4386 (*1 *2 *3 *2) (-12 (-5 *3 (-409 *1)) (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-4117 (*1 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566)))))))
-(-13 (-949 |t#1| (-771) (-1081)) (-287 |t#1| |t#1|) (-287 $ $) (-233) (-231 |t#1|) (-10 -8 (-15 -2025 ((-1264 |t#1|) $ (-771))) (-15 -3840 ((-1171 |t#1|) $)) (-15 -3526 ($ (-1171 |t#1|))) (-15 -3432 ($ $ (-771))) (-15 -1876 ((-3 $ "failed") $ (-771))) (-15 -3345 ((-2 (|:| -2760 $) (|:| -1644 $)) $ $)) (-15 -1497 ((-2 (|:| -2760 $) (|:| -1644 $)) $ (-771))) (-15 -4047 ($ $ (-771))) (-15 -2284 ($ $ (-771))) (-15 -2762 ($ $ $)) (-15 -2862 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1150)) (-6 (-1150)) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-15 -2408 (|t#1| $)) (-15 -1552 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-558)) (PROGN (-6 (-287 (-409 $) (-409 $))) (-15 -4386 ((-409 $) (-409 $) (-409 $))) (-15 -2716 ((-771) $ $)) (-15 -2829 ($ $ $)) (-15 -4293 ((-3 $ "failed") $ $)) (-15 -4293 ((-3 (-409 $) "failed") (-409 $) $)) (-15 -2213 ($ $ $)) (-15 -2513 ((-2 (|:| -3157 |t#1|) (|:| -2760 $) (|:| -1644 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-454)) (-15 -2542 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-365)) (PROGN (-6 (-308)) (-6 -4413) (-15 -4386 (|t#1| (-409 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-409 (-566)))) (-15 -4117 ($ $)) |%noBranch|)))
+((-3788 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-1240 *4)) (-4 *4 (-1049)) (-5 *2 (-1264 *4)))) (-3207 (*1 *2 *1) (-12 (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-5 *2 (-1171 *3)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-1049)) (-4 *1 (-1240 *3)))) (-1644 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))) (-2867 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))) (-2039 (*1 *2 *1 *1) (-12 (-4 *3 (-1049)) (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-1240 *3)))) (-3312 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *4 (-1049)) (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-1240 *4)))) (-1362 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))) (-1407 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))) (-3667 (*1 *1 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)))) (-2578 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))) (-3309 (*1 *2 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-172)))) (-2662 (*1 *2 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-172)))) (-4393 (*1 *2 *2 *2) (-12 (-5 *2 (-409 *1)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-4 *3 (-558)))) (-3227 (*1 *2 *1 *1) (-12 (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-4 *3 (-558)) (-5 *2 (-771)))) (-1911 (*1 *1 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))) (-1970 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))) (-1970 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-409 *1)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-4 *3 (-558)))) (-1941 (*1 *1 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))) (-3048 (*1 *2 *1 *1) (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| -3223 *3) (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-1240 *3)))) (-2091 (*1 *2 *1 *1) (-12 (-4 *3 (-454)) (-4 *3 (-1049)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1240 *3)))) (-4393 (*1 *2 *3 *2) (-12 (-5 *3 (-409 *1)) (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-3921 (*1 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566)))))))
+(-13 (-949 |t#1| (-771) (-1081)) (-287 |t#1| |t#1|) (-287 $ $) (-233) (-231 |t#1|) (-10 -8 (-15 -3788 ((-1264 |t#1|) $ (-771))) (-15 -3207 ((-1171 |t#1|) $)) (-15 -3220 ($ (-1171 |t#1|))) (-15 -1644 ($ $ (-771))) (-15 -2867 ((-3 $ "failed") $ (-771))) (-15 -2039 ((-2 (|:| -3644 $) (|:| -4228 $)) $ $)) (-15 -3312 ((-2 (|:| -3644 $) (|:| -4228 $)) $ (-771))) (-15 -1362 ($ $ (-771))) (-15 -1407 ($ $ (-771))) (-15 -3667 ($ $ $)) (-15 -2578 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1150)) (-6 (-1150)) |%noBranch|) (IF (|has| |t#1| (-172)) (PROGN (-15 -3309 (|t#1| $)) (-15 -2662 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-558)) (PROGN (-6 (-287 (-409 $) (-409 $))) (-15 -4393 ((-409 $) (-409 $) (-409 $))) (-15 -3227 ((-771) $ $)) (-15 -1911 ($ $ $)) (-15 -1970 ((-3 $ "failed") $ $)) (-15 -1970 ((-3 (-409 $) "failed") (-409 $) $)) (-15 -1941 ($ $ $)) (-15 -3048 ((-2 (|:| -3223 |t#1|) (|:| -3644 $) (|:| -4228 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-454)) (-15 -2091 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-365)) (PROGN (-6 (-308)) (-6 -4410) (-15 -4393 (|t#1| (-409 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-409 (-566)))) (-15 -3921 ($ $)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-771)) . T) ((-25) . T) ((-38 #1=(-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-365))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-409 (-566)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #1#) -2805 (|has| |#1| (-1038 (-409 (-566)))) (|has| |#1| (-38 (-409 (-566))))) ((-616 (-566)) . T) ((-616 #2=(-1081)) . T) ((-616 |#1|) . T) ((-616 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-365))) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-614 (-538)) -12 (|has| (-1081) (-614 (-538))) (|has| |#1| (-614 (-538)))) ((-614 (-892 (-381))) -12 (|has| (-1081) (-614 (-892 (-381)))) (|has| |#1| (-614 (-892 (-381))))) ((-614 (-892 (-566))) -12 (|has| (-1081) (-614 (-892 (-566)))) (|has| |#1| (-614 (-892 (-566))))) ((-231 |#1|) . T) ((-233) . T) ((-287 (-409 $) (-409 $)) |has| |#1| (-558)) ((-287 |#1| |#1|) . T) ((-287 $ $) . T) ((-291) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-365))) ((-308) |has| |#1| (-365)) ((-310 $) . T) ((-327 |#1| #0#) . T) ((-379 |#1|) . T) ((-413 |#1|) . T) ((-454) -2805 (|has| |#1| (-909)) (|has| |#1| (-454)) (|has| |#1| (-365))) ((-516 #2# |#1|) . T) ((-516 #2# $) . T) ((-516 $ $) . T) ((-558) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-365))) ((-646 #1#) |has| |#1| (-38 (-409 (-566)))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #1#) |has| |#1| (-38 (-409 (-566)))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #1#) |has| |#1| (-38 (-409 (-566)))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-365))) ((-639 (-566)) |has| |#1| (-639 (-566))) ((-639 |#1|) . T) ((-717 #1#) |has| |#1| (-38 (-409 (-566)))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-365))) ((-726) . T) ((-900 #2#) . T) ((-900 (-1175)) |has| |#1| (-900 (-1175))) ((-886 (-381)) -12 (|has| (-1081) (-886 (-381))) (|has| |#1| (-886 (-381)))) ((-886 (-566)) -12 (|has| (-1081) (-886 (-566))) (|has| |#1| (-886 (-566)))) ((-949 |#1| #0# #2#) . T) ((-909) |has| |#1| (-909)) ((-920) |has| |#1| (-365)) ((-1038 (-409 (-566))) |has| |#1| (-1038 (-409 (-566)))) ((-1038 (-566)) |has| |#1| (-1038 (-566))) ((-1038 #2#) . T) ((-1038 |#1|) . T) ((-1051 #1#) |has| |#1| (-38 (-409 (-566)))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-1056 #1#) |has| |#1| (-38 (-409 (-566)))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-909)) (|has| |#1| (-558)) (|has| |#1| (-454)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1150) |has| |#1| (-1150)) ((-1218) |has| |#1| (-909)))
-((-2540 (((-644 (-1081)) $) 34)) (-3577 (($ $) 31)) (-2519 (($ |#2| |#3|) NIL) (($ $ (-1081) |#3|) 28) (($ $ (-644 (-1081)) (-644 |#3|)) 27)) (-3545 (($ $) 14)) (-3557 ((|#2| $) 12)) (-3992 ((|#3| $) 10)))
-(((-1241 |#1| |#2| |#3|) (-10 -8 (-15 -2540 ((-644 (-1081)) |#1|)) (-15 -2519 (|#1| |#1| (-644 (-1081)) (-644 |#3|))) (-15 -2519 (|#1| |#1| (-1081) |#3|)) (-15 -3577 (|#1| |#1|)) (-15 -2519 (|#1| |#2| |#3|)) (-15 -3992 (|#3| |#1|)) (-15 -3545 (|#1| |#1|)) (-15 -3557 (|#2| |#1|))) (-1242 |#2| |#3|) (-1049) (-792)) (T -1241))
+((-2608 (((-644 (-1081)) $) 34)) (-3645 (($ $) 31)) (-2585 (($ |#2| |#3|) NIL) (($ $ (-1081) |#3|) 28) (($ $ (-644 (-1081)) (-644 |#3|)) 27)) (-3614 (($ $) 14)) (-3626 ((|#2| $) 12)) (-2108 ((|#3| $) 10)))
+(((-1241 |#1| |#2| |#3|) (-10 -8 (-15 -2608 ((-644 (-1081)) |#1|)) (-15 -2585 (|#1| |#1| (-644 (-1081)) (-644 |#3|))) (-15 -2585 (|#1| |#1| (-1081) |#3|)) (-15 -3645 (|#1| |#1|)) (-15 -2585 (|#1| |#2| |#3|)) (-15 -2108 (|#3| |#1|)) (-15 -3614 (|#1| |#1|)) (-15 -3626 (|#2| |#1|))) (-1242 |#2| |#3|) (-1049) (-792)) (T -1241))
NIL
-(-10 -8 (-15 -2540 ((-644 (-1081)) |#1|)) (-15 -2519 (|#1| |#1| (-644 (-1081)) (-644 |#3|))) (-15 -2519 (|#1| |#1| (-1081) |#3|)) (-15 -3577 (|#1| |#1|)) (-15 -2519 (|#1| |#2| |#3|)) (-15 -3992 (|#3| |#1|)) (-15 -3545 (|#1| |#1|)) (-15 -3557 (|#2| |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2540 (((-644 (-1081)) $) 86)) (-1353 (((-1175) $) 115)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-3653 (($ $) 64 (|has| |#1| (-558)))) (-2152 (((-112) $) 66 (|has| |#1| (-558)))) (-1881 (($ $ |#2|) 110) (($ $ |#2| |#2|) 109)) (-1530 (((-1155 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 117)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-3577 (($ $) 72)) (-1579 (((-3 $ "failed") $) 37)) (-4039 (((-112) $) 85)) (-2716 ((|#2| $) 112) ((|#2| $ |#2|) 111)) (-2741 (((-112) $) 35)) (-3432 (($ $ (-921)) 113)) (-4367 (((-112) $) 74)) (-2519 (($ |#1| |#2|) 73) (($ $ (-1081) |#2|) 88) (($ $ (-644 (-1081)) (-644 |#2|)) 87)) (-3077 (($ (-1 |#1| |#1|) $) 75)) (-3545 (($ $) 77)) (-3557 ((|#1| $) 78)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-1938 (($ $ |#2|) 107)) (-2972 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-2070 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-4386 ((|#1| $ |#2|) 116) (($ $ $) 93 (|has| |#2| (-1111)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) 101 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1175) (-771)) 100 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-644 (-1175))) 99 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1175)) 98 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-771)) 96 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-3992 ((|#2| $) 76)) (-1973 (($ $) 84)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558))) (($ |#1|) 59 (|has| |#1| (-172)))) (-2022 ((|#1| $ |#2|) 71)) (-3842 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-2420 ((|#1| $) 114)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 65 (|has| |#1| (-558)))) (-3645 ((|#1| $ |#2|) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) 105 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1175) (-771)) 104 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-644 (-1175))) 103 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1175)) 102 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-771)) 97 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 70 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
+(-10 -8 (-15 -2608 ((-644 (-1081)) |#1|)) (-15 -2585 (|#1| |#1| (-644 (-1081)) (-644 |#3|))) (-15 -2585 (|#1| |#1| (-1081) |#3|)) (-15 -3645 (|#1| |#1|)) (-15 -2585 (|#1| |#2| |#3|)) (-15 -2108 (|#3| |#1|)) (-15 -3614 (|#1| |#1|)) (-15 -3626 (|#2| |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2608 (((-644 (-1081)) $) 86)) (-1401 (((-1175) $) 115)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-1968 (($ $) 64 (|has| |#1| (-558)))) (-2644 (((-112) $) 66 (|has| |#1| (-558)))) (-2922 (($ $ |#2|) 110) (($ $ |#2| |#2|) 109)) (-2455 (((-1155 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 117)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-3645 (($ $) 72)) (-2928 (((-3 $ "failed") $) 37)) (-4392 (((-112) $) 85)) (-3227 ((|#2| $) 112) ((|#2| $ |#2|) 111)) (-3466 (((-112) $) 35)) (-1644 (($ $ (-921)) 113)) (-1453 (((-112) $) 74)) (-2585 (($ |#1| |#2|) 73) (($ $ (-1081) |#2|) 88) (($ $ (-644 (-1081)) (-644 |#2|)) 87)) (-3152 (($ (-1 |#1| |#1|) $) 75)) (-3614 (($ $) 77)) (-3626 ((|#1| $) 78)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2295 (($ $ |#2|) 107)) (-2997 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-2095 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-4393 ((|#1| $ |#2|) 116) (($ $ $) 93 (|has| |#2| (-1111)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) 101 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1175) (-771)) 100 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-644 (-1175))) 99 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1175)) 98 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-771)) 96 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-2108 ((|#2| $) 76)) (-1377 (($ $) 84)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558))) (($ |#1|) 59 (|has| |#1| (-172)))) (-3756 ((|#1| $ |#2|) 71)) (-3226 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3174 ((|#1| $) 114)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 65 (|has| |#1| (-558)))) (-3651 ((|#1| $ |#2|) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) 105 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1175) (-771)) 104 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-644 (-1175))) 103 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-1175)) 102 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (($ $ (-771)) 97 (|has| |#1| (-15 * (|#1| |#2| |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| |#2| |#1|))))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 70 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
(((-1242 |#1| |#2|) (-140) (-1049) (-792)) (T -1242))
-((-1530 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-1155 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-4386 (*1 *2 *1 *3) (-12 (-4 *1 (-1242 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))) (-1353 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-1175)))) (-2420 (*1 *2 *1) (-12 (-4 *1 (-1242 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))) (-3432 (*1 *1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)))) (-2716 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-2716 (*1 *2 *1 *2) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-1881 (*1 *1 *1 *2) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-1881 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-3645 (*1 *2 *1 *3) (-12 (-4 *1 (-1242 *2 *3)) (-4 *3 (-792)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -2512 (*2 (-1175)))) (-4 *2 (-1049)))) (-1938 (*1 *1 *1 *2) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-2070 (*1 *2 *1 *3) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1155 *3)))))
-(-13 (-973 |t#1| |t#2| (-1081)) (-10 -8 (-15 -1530 ((-1155 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -4386 (|t#1| $ |t#2|)) (-15 -1353 ((-1175) $)) (-15 -2420 (|t#1| $)) (-15 -3432 ($ $ (-921))) (-15 -2716 (|t#2| $)) (-15 -2716 (|t#2| $ |t#2|)) (-15 -1881 ($ $ |t#2|)) (-15 -1881 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -2512 (|t#1| (-1175)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -3645 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -1938 ($ $ |t#2|)) (IF (|has| |t#2| (-1111)) (-6 (-287 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-233)) (IF (|has| |t#1| (-900 (-1175))) (-6 (-900 (-1175))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -2070 ((-1155 |t#1|) $ |t#1|)) |%noBranch|)))
+((-2455 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-1155 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-4393 (*1 *2 *1 *3) (-12 (-4 *1 (-1242 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))) (-1401 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (-5 *2 (-1175)))) (-3174 (*1 *2 *1) (-12 (-4 *1 (-1242 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))) (-1644 (*1 *1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)))) (-3227 (*1 *2 *1) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-3227 (*1 *2 *1 *2) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-2922 (*1 *1 *1 *2) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-2922 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-3651 (*1 *2 *1 *3) (-12 (-4 *1 (-1242 *2 *3)) (-4 *3 (-792)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3780 (*2 (-1175)))) (-4 *2 (-1049)))) (-2295 (*1 *1 *1 *2) (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))) (-2095 (*1 *2 *1 *3) (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792)) (|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1155 *3)))))
+(-13 (-973 |t#1| |t#2| (-1081)) (-10 -8 (-15 -2455 ((-1155 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -4393 (|t#1| $ |t#2|)) (-15 -1401 ((-1175) $)) (-15 -3174 (|t#1| $)) (-15 -1644 ($ $ (-921))) (-15 -3227 (|t#2| $)) (-15 -3227 (|t#2| $ |t#2|)) (-15 -2922 ($ $ |t#2|)) (-15 -2922 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -3780 (|t#1| (-1175)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -3651 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -2295 ($ $ |t#2|)) (IF (|has| |t#2| (-1111)) (-6 (-287 $ $)) |%noBranch|) (IF (|has| |t#1| (-15 * (|t#1| |t#2| |t#1|))) (PROGN (-6 (-233)) (IF (|has| |t#1| (-900 (-1175))) (-6 (-900 (-1175))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -2095 ((-1155 |t#1|) $ |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| |#2|) . T) ((-25) . T) ((-38 #0=(-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-558)) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-409 (-566)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #0#) |has| |#1| (-38 (-409 (-566)))) ((-616 (-566)) . T) ((-616 |#1|) |has| |#1| (-172)) ((-616 $) |has| |#1| (-558)) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| |#2| |#1|))) ((-287 $ $) |has| |#2| (-1111)) ((-291) |has| |#1| (-558)) ((-558) |has| |#1| (-558)) ((-646 #0#) |has| |#1| (-38 (-409 (-566)))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) |has| |#1| (-38 (-409 (-566)))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) |has| |#1| (-38 (-409 (-566)))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) |has| |#1| (-558)) ((-717 #0#) |has| |#1| (-38 (-409 (-566)))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) |has| |#1| (-558)) ((-726) . T) ((-900 (-1175)) -12 (|has| |#1| (-15 * (|#1| |#2| |#1|))) (|has| |#1| (-900 (-1175)))) ((-973 |#1| |#2| (-1081)) . T) ((-1051 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1056 #0#) |has| |#1| (-38 (-409 (-566)))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2857 ((|#2| |#2|) 12)) (-1370 (((-420 |#2|) |#2|) 14)) (-3838 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566)))) 30)))
-(((-1243 |#1| |#2|) (-10 -7 (-15 -1370 ((-420 |#2|) |#2|)) (-15 -2857 (|#2| |#2|)) (-15 -3838 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566)))))) (-558) (-13 (-1240 |#1|) (-558) (-10 -8 (-15 -2222 ($ $ $))))) (T -1243))
-((-3838 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-566)))) (-4 *4 (-13 (-1240 *3) (-558) (-10 -8 (-15 -2222 ($ $ $))))) (-4 *3 (-558)) (-5 *1 (-1243 *3 *4)))) (-2857 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-1243 *3 *2)) (-4 *2 (-13 (-1240 *3) (-558) (-10 -8 (-15 -2222 ($ $ $))))))) (-1370 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-420 *3)) (-5 *1 (-1243 *4 *3)) (-4 *3 (-13 (-1240 *4) (-558) (-10 -8 (-15 -2222 ($ $ $))))))))
-(-10 -7 (-15 -1370 ((-420 |#2|) |#2|)) (-15 -2857 (|#2| |#2|)) (-15 -3838 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566))))))
-((-3077 (((-1249 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1249 |#1| |#3| |#5|)) 24)))
-(((-1244 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3077 ((-1249 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1249 |#1| |#3| |#5|)))) (-1049) (-1049) (-1175) (-1175) |#1| |#2|) (T -1244))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1249 *5 *7 *9)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-14 *7 (-1175)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1249 *6 *8 *10)) (-5 *1 (-1244 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1175)))))
-(-10 -7 (-15 -3077 ((-1249 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1249 |#1| |#3| |#5|))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2540 (((-644 (-1081)) $) 86)) (-1353 (((-1175) $) 115)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-3653 (($ $) 64 (|has| |#1| (-558)))) (-2152 (((-112) $) 66 (|has| |#1| (-558)))) (-1881 (($ $ (-409 (-566))) 110) (($ $ (-409 (-566)) (-409 (-566))) 109)) (-1530 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) 117)) (-3235 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 174 (|has| |#1| (-365)))) (-1370 (((-420 $) $) 175 (|has| |#1| (-365)))) (-2402 (($ $) 129 (|has| |#1| (-38 (-409 (-566)))))) (-1561 (((-112) $ $) 165 (|has| |#1| (-365)))) (-3215 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 131 (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) 183)) (-3259 (($ $) 145 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) 18 T CONST)) (-2926 (($ $ $) 169 (|has| |#1| (-365)))) (-3577 (($ $) 72)) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 168 (|has| |#1| (-365)))) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 163 (|has| |#1| (-365)))) (-2635 (((-112) $) 176 (|has| |#1| (-365)))) (-4039 (((-112) $) 85)) (-3035 (($) 157 (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-409 (-566)) $) 112) (((-409 (-566)) $ (-409 (-566))) 111)) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 128 (|has| |#1| (-38 (-409 (-566)))))) (-3432 (($ $ (-921)) 113) (($ $ (-409 (-566))) 182)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 172 (|has| |#1| (-365)))) (-4367 (((-112) $) 74)) (-2519 (($ |#1| (-409 (-566))) 73) (($ $ (-1081) (-409 (-566))) 88) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) 87)) (-3077 (($ (-1 |#1| |#1|) $) 75)) (-3668 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) 77)) (-3557 ((|#1| $) 78)) (-2184 (($ (-644 $)) 161 (|has| |#1| (-365))) (($ $ $) 160 (|has| |#1| (-365)))) (-2878 (((-1157) $) 10)) (-2626 (($ $) 177 (|has| |#1| (-365)))) (-4117 (($ $) 181 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 180 (-2805 (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-959)) (|has| |#1| (-1199)) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-38 (-409 (-566)))))))) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 162 (|has| |#1| (-365)))) (-2222 (($ (-644 $)) 159 (|has| |#1| (-365))) (($ $ $) 158 (|has| |#1| (-365)))) (-2391 (((-420 $) $) 173 (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 170 (|has| |#1| (-365)))) (-1938 (($ $ (-409 (-566))) 107)) (-2972 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 164 (|has| |#1| (-365)))) (-3613 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-1813 (((-771) $) 166 (|has| |#1| (-365)))) (-4386 ((|#1| $ (-409 (-566))) 116) (($ $ $) 93 (|has| (-409 (-566)) (-1111)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 167 (|has| |#1| (-365)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) 101 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175) (-771)) 100 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-644 (-1175))) 99 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175)) 98 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-771)) 96 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-3992 (((-409 (-566)) $) 76)) (-3267 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 133 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 143 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 135 (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) 84)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 59 (|has| |#1| (-172))) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558)))) (-2022 ((|#1| $ (-409 (-566))) 71)) (-3842 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-2420 ((|#1| $) 114)) (-3122 (((-112) $ $) 9)) (-3302 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 141 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) 65 (|has| |#1| (-558)))) (-3279 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-409 (-566))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) 105 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175) (-771)) 104 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-644 (-1175))) 103 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175)) 102 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-771)) 97 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 70 (|has| |#1| (-365))) (($ $ $) 179 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 178 (|has| |#1| (-365))) (($ $ $) 156 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 127 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
+((-2179 ((|#2| |#2|) 12)) (-3271 (((-420 |#2|) |#2|) 14)) (-3187 (((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566)))) 30)))
+(((-1243 |#1| |#2|) (-10 -7 (-15 -3271 ((-420 |#2|) |#2|)) (-15 -2179 (|#2| |#2|)) (-15 -3187 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566)))))) (-558) (-13 (-1240 |#1|) (-558) (-10 -8 (-15 -2235 ($ $ $))))) (T -1243))
+((-3187 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4) (|:| |xpnt| (-566)))) (-4 *4 (-13 (-1240 *3) (-558) (-10 -8 (-15 -2235 ($ $ $))))) (-4 *3 (-558)) (-5 *1 (-1243 *3 *4)))) (-2179 (*1 *2 *2) (-12 (-4 *3 (-558)) (-5 *1 (-1243 *3 *2)) (-4 *2 (-13 (-1240 *3) (-558) (-10 -8 (-15 -2235 ($ $ $))))))) (-3271 (*1 *2 *3) (-12 (-4 *4 (-558)) (-5 *2 (-420 *3)) (-5 *1 (-1243 *4 *3)) (-4 *3 (-13 (-1240 *4) (-558) (-10 -8 (-15 -2235 ($ $ $))))))))
+(-10 -7 (-15 -3271 ((-420 |#2|) |#2|)) (-15 -2179 (|#2| |#2|)) (-15 -3187 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-566))))))
+((-3152 (((-1249 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1249 |#1| |#3| |#5|)) 24)))
+(((-1244 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3152 ((-1249 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1249 |#1| |#3| |#5|)))) (-1049) (-1049) (-1175) (-1175) |#1| |#2|) (T -1244))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1249 *5 *7 *9)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-14 *7 (-1175)) (-14 *9 *5) (-14 *10 *6) (-5 *2 (-1249 *6 *8 *10)) (-5 *1 (-1244 *5 *6 *7 *8 *9 *10)) (-14 *8 (-1175)))))
+(-10 -7 (-15 -3152 ((-1249 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1249 |#1| |#3| |#5|))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2608 (((-644 (-1081)) $) 86)) (-1401 (((-1175) $) 115)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-1968 (($ $) 64 (|has| |#1| (-558)))) (-2644 (((-112) $) 66 (|has| |#1| (-558)))) (-2922 (($ $ (-409 (-566))) 110) (($ $ (-409 (-566)) (-409 (-566))) 109)) (-2455 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) 117)) (-2865 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 174 (|has| |#1| (-365)))) (-3271 (((-420 $) $) 175 (|has| |#1| (-365)))) (-2484 (($ $) 129 (|has| |#1| (-38 (-409 (-566)))))) (-2738 (((-112) $ $) 165 (|has| |#1| (-365)))) (-2843 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 131 (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) 183)) (-2888 (($ $) 145 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) 18 T CONST)) (-2949 (($ $ $) 169 (|has| |#1| (-365)))) (-3645 (($ $) 72)) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 168 (|has| |#1| (-365)))) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 163 (|has| |#1| (-365)))) (-1784 (((-112) $) 176 (|has| |#1| (-365)))) (-4392 (((-112) $) 85)) (-3120 (($) 157 (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-409 (-566)) $) 112) (((-409 (-566)) $ (-409 (-566))) 111)) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 128 (|has| |#1| (-38 (-409 (-566)))))) (-1644 (($ $ (-921)) 113) (($ $ (-409 (-566))) 182)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 172 (|has| |#1| (-365)))) (-1453 (((-112) $) 74)) (-2585 (($ |#1| (-409 (-566))) 73) (($ $ (-1081) (-409 (-566))) 88) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) 87)) (-3152 (($ (-1 |#1| |#1|) $) 75)) (-3671 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) 77)) (-3626 ((|#1| $) 78)) (-2197 (($ (-644 $)) 161 (|has| |#1| (-365))) (($ $ $) 160 (|has| |#1| (-365)))) (-2402 (((-1157) $) 10)) (-3584 (($ $) 177 (|has| |#1| (-365)))) (-3921 (($ $) 181 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 180 (-2805 (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-959)) (|has| |#1| (-1199)) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-38 (-409 (-566)))))))) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 162 (|has| |#1| (-365)))) (-2235 (($ (-644 $)) 159 (|has| |#1| (-365))) (($ $ $) 158 (|has| |#1| (-365)))) (-2473 (((-420 $) $) 173 (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 170 (|has| |#1| (-365)))) (-2295 (($ $ (-409 (-566))) 107)) (-2997 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 164 (|has| |#1| (-365)))) (-4337 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-3470 (((-771) $) 166 (|has| |#1| (-365)))) (-4393 ((|#1| $ (-409 (-566))) 116) (($ $ $) 93 (|has| (-409 (-566)) (-1111)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 167 (|has| |#1| (-365)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) 101 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175) (-771)) 100 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-644 (-1175))) 99 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175)) 98 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-771)) 96 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2108 (((-409 (-566)) $) 76)) (-2897 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 133 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 143 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 135 (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) 84)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 59 (|has| |#1| (-172))) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558)))) (-3756 ((|#1| $ (-409 (-566))) 71)) (-3226 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3174 ((|#1| $) 114)) (-3801 (((-112) $ $) 9)) (-2931 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 141 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2907 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-409 (-566))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) 105 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175) (-771)) 104 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-644 (-1175))) 103 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175)) 102 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-771)) 97 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 70 (|has| |#1| (-365))) (($ $ $) 179 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 178 (|has| |#1| (-365))) (($ $ $) 156 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 127 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
(((-1245 |#1|) (-140) (-1049)) (T -1245))
-((-1401 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *3 (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| *4)))) (-4 *4 (-1049)) (-4 *1 (-1245 *4)))) (-3432 (*1 *1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-4 *1 (-1245 *3)) (-4 *3 (-1049)))) (-4117 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566)))))) (-4117 (*1 *1 *1 *2) (-2805 (-12 (-5 *2 (-1175)) (-4 *1 (-1245 *3)) (-4 *3 (-1049)) (-12 (-4 *3 (-29 (-566))) (-4 *3 (-959)) (-4 *3 (-1199)) (-4 *3 (-38 (-409 (-566)))))) (-12 (-5 *2 (-1175)) (-4 *1 (-1245 *3)) (-4 *3 (-1049)) (-12 (|has| *3 (-15 -2540 ((-644 *2) *3))) (|has| *3 (-15 -4117 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566)))))))))
-(-13 (-1242 |t#1| (-409 (-566))) (-10 -8 (-15 -1401 ($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |t#1|))))) (-15 -3432 ($ $ (-409 (-566)))) (IF (|has| |t#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ($ $)) (IF (|has| |t#1| (-15 -4117 (|t#1| |t#1| (-1175)))) (IF (|has| |t#1| (-15 -2540 ((-644 (-1175)) |t#1|))) (-15 -4117 ($ $ (-1175))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1199)) (IF (|has| |t#1| (-959)) (IF (|has| |t#1| (-29 (-566))) (-15 -4117 ($ $ (-1175))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1002)) (-6 (-1199))) |%noBranch|) (IF (|has| |t#1| (-365)) (-6 (-365)) |%noBranch|)))
+((-1903 (*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *3 (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| *4)))) (-4 *4 (-1049)) (-4 *1 (-1245 *4)))) (-1644 (*1 *1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-4 *1 (-1245 *3)) (-4 *3 (-1049)))) (-3921 (*1 *1 *1) (-12 (-4 *1 (-1245 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566)))))) (-3921 (*1 *1 *1 *2) (-2805 (-12 (-5 *2 (-1175)) (-4 *1 (-1245 *3)) (-4 *3 (-1049)) (-12 (-4 *3 (-29 (-566))) (-4 *3 (-959)) (-4 *3 (-1199)) (-4 *3 (-38 (-409 (-566)))))) (-12 (-5 *2 (-1175)) (-4 *1 (-1245 *3)) (-4 *3 (-1049)) (-12 (|has| *3 (-15 -2608 ((-644 *2) *3))) (|has| *3 (-15 -3921 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566)))))))))
+(-13 (-1242 |t#1| (-409 (-566))) (-10 -8 (-15 -1903 ($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |t#1|))))) (-15 -1644 ($ $ (-409 (-566)))) (IF (|has| |t#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ($ $)) (IF (|has| |t#1| (-15 -3921 (|t#1| |t#1| (-1175)))) (IF (|has| |t#1| (-15 -2608 ((-644 (-1175)) |t#1|))) (-15 -3921 ($ $ (-1175))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1199)) (IF (|has| |t#1| (-959)) (IF (|has| |t#1| (-29 (-566))) (-15 -3921 ($ $ (-1175))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1002)) (-6 (-1199))) |%noBranch|) (IF (|has| |t#1| (-365)) (-6 (-365)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-409 (-566))) . T) ((-25) . T) ((-38 #1=(-409 (-566))) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-35) |has| |#1| (-38 (-409 (-566)))) ((-95) |has| |#1| (-38 (-409 (-566)))) ((-102) . T) ((-111 #1# #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-616 (-566)) . T) ((-616 |#1|) |has| |#1| (-172)) ((-616 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) ((-243) |has| |#1| (-365)) ((-285) |has| |#1| (-38 (-409 (-566)))) ((-287 $ $) |has| (-409 (-566)) (-1111)) ((-291) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-308) |has| |#1| (-365)) ((-365) |has| |#1| (-365)) ((-454) |has| |#1| (-365)) ((-495) |has| |#1| (-38 (-409 (-566)))) ((-558) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-646 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-717 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-726) . T) ((-900 (-1175)) -12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175)))) ((-973 |#1| #0# (-1081)) . T) ((-920) |has| |#1| (-365)) ((-1002) |has| |#1| (-38 (-409 (-566)))) ((-1051 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-1056 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1199) |has| |#1| (-38 (-409 (-566)))) ((-1202) |has| |#1| (-38 (-409 (-566)))) ((-1218) |has| |#1| (-365)) ((-1242 |#1| #0#) . T))
-((-3958 (((-112) $) 12)) (-2977 (((-3 |#3| "failed") $) 17)) (-1756 ((|#3| $) 14)))
-(((-1246 |#1| |#2| |#3|) (-10 -8 (-15 -2977 ((-3 |#3| "failed") |#1|)) (-15 -1756 (|#3| |#1|)) (-15 -3958 ((-112) |#1|))) (-1247 |#2| |#3|) (-1049) (-1224 |#2|)) (T -1246))
+((-3015 (((-112) $) 12)) (-3066 (((-3 |#3| "failed") $) 17)) (-1867 ((|#3| $) 14)))
+(((-1246 |#1| |#2| |#3|) (-10 -8 (-15 -3066 ((-3 |#3| "failed") |#1|)) (-15 -1867 (|#3| |#1|)) (-15 -3015 ((-112) |#1|))) (-1247 |#2| |#3|) (-1049) (-1224 |#2|)) (T -1246))
NIL
-(-10 -8 (-15 -2977 ((-3 |#3| "failed") |#1|)) (-15 -1756 (|#3| |#1|)) (-15 -3958 ((-112) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2540 (((-644 (-1081)) $) 86)) (-1353 (((-1175) $) 115)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-3653 (($ $) 64 (|has| |#1| (-558)))) (-2152 (((-112) $) 66 (|has| |#1| (-558)))) (-1881 (($ $ (-409 (-566))) 110) (($ $ (-409 (-566)) (-409 (-566))) 109)) (-1530 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) 117)) (-3235 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 174 (|has| |#1| (-365)))) (-1370 (((-420 $) $) 175 (|has| |#1| (-365)))) (-2402 (($ $) 129 (|has| |#1| (-38 (-409 (-566)))))) (-1561 (((-112) $ $) 165 (|has| |#1| (-365)))) (-3215 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 131 (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) 183)) (-3259 (($ $) 145 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#2| "failed") $) 194)) (-1756 ((|#2| $) 195)) (-2926 (($ $ $) 169 (|has| |#1| (-365)))) (-3577 (($ $) 72)) (-1579 (((-3 $ "failed") $) 37)) (-3116 (((-409 (-566)) $) 191)) (-2938 (($ $ $) 168 (|has| |#1| (-365)))) (-2610 (($ (-409 (-566)) |#2|) 192)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 163 (|has| |#1| (-365)))) (-2635 (((-112) $) 176 (|has| |#1| (-365)))) (-4039 (((-112) $) 85)) (-3035 (($) 157 (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-409 (-566)) $) 112) (((-409 (-566)) $ (-409 (-566))) 111)) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 128 (|has| |#1| (-38 (-409 (-566)))))) (-3432 (($ $ (-921)) 113) (($ $ (-409 (-566))) 182)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 172 (|has| |#1| (-365)))) (-4367 (((-112) $) 74)) (-2519 (($ |#1| (-409 (-566))) 73) (($ $ (-1081) (-409 (-566))) 88) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) 87)) (-3077 (($ (-1 |#1| |#1|) $) 75)) (-3668 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) 77)) (-3557 ((|#1| $) 78)) (-2184 (($ (-644 $)) 161 (|has| |#1| (-365))) (($ $ $) 160 (|has| |#1| (-365)))) (-2603 ((|#2| $) 190)) (-4397 (((-3 |#2| "failed") $) 188)) (-2599 ((|#2| $) 189)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 177 (|has| |#1| (-365)))) (-4117 (($ $) 181 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 180 (-2805 (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-959)) (|has| |#1| (-1199)) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-38 (-409 (-566)))))))) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 162 (|has| |#1| (-365)))) (-2222 (($ (-644 $)) 159 (|has| |#1| (-365))) (($ $ $) 158 (|has| |#1| (-365)))) (-2391 (((-420 $) $) 173 (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 170 (|has| |#1| (-365)))) (-1938 (($ $ (-409 (-566))) 107)) (-2972 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 164 (|has| |#1| (-365)))) (-3613 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-1813 (((-771) $) 166 (|has| |#1| (-365)))) (-4386 ((|#1| $ (-409 (-566))) 116) (($ $ $) 93 (|has| (-409 (-566)) (-1111)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 167 (|has| |#1| (-365)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) 101 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175) (-771)) 100 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-644 (-1175))) 99 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175)) 98 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-771)) 96 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-3992 (((-409 (-566)) $) 76)) (-3267 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 133 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 143 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 135 (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) 84)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 59 (|has| |#1| (-172))) (($ |#2|) 193) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558)))) (-2022 ((|#1| $ (-409 (-566))) 71)) (-3842 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-2420 ((|#1| $) 114)) (-3122 (((-112) $ $) 9)) (-3302 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 141 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) 65 (|has| |#1| (-558)))) (-3279 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-409 (-566))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) 105 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175) (-771)) 104 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-644 (-1175))) 103 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175)) 102 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-771)) 97 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 70 (|has| |#1| (-365))) (($ $ $) 179 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 178 (|has| |#1| (-365))) (($ $ $) 156 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 127 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
+(-10 -8 (-15 -3066 ((-3 |#3| "failed") |#1|)) (-15 -1867 (|#3| |#1|)) (-15 -3015 ((-112) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2608 (((-644 (-1081)) $) 86)) (-1401 (((-1175) $) 115)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-1968 (($ $) 64 (|has| |#1| (-558)))) (-2644 (((-112) $) 66 (|has| |#1| (-558)))) (-2922 (($ $ (-409 (-566))) 110) (($ $ (-409 (-566)) (-409 (-566))) 109)) (-2455 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) 117)) (-2865 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 174 (|has| |#1| (-365)))) (-3271 (((-420 $) $) 175 (|has| |#1| (-365)))) (-2484 (($ $) 129 (|has| |#1| (-38 (-409 (-566)))))) (-2738 (((-112) $ $) 165 (|has| |#1| (-365)))) (-2843 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 131 (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) 183)) (-2888 (($ $) 145 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#2| "failed") $) 194)) (-1867 ((|#2| $) 195)) (-2949 (($ $ $) 169 (|has| |#1| (-365)))) (-3645 (($ $) 72)) (-2928 (((-3 $ "failed") $) 37)) (-3739 (((-409 (-566)) $) 191)) (-2960 (($ $ $) 168 (|has| |#1| (-365)))) (-3562 (($ (-409 (-566)) |#2|) 192)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 163 (|has| |#1| (-365)))) (-1784 (((-112) $) 176 (|has| |#1| (-365)))) (-4392 (((-112) $) 85)) (-3120 (($) 157 (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-409 (-566)) $) 112) (((-409 (-566)) $ (-409 (-566))) 111)) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 128 (|has| |#1| (-38 (-409 (-566)))))) (-1644 (($ $ (-921)) 113) (($ $ (-409 (-566))) 182)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 172 (|has| |#1| (-365)))) (-1453 (((-112) $) 74)) (-2585 (($ |#1| (-409 (-566))) 73) (($ $ (-1081) (-409 (-566))) 88) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) 87)) (-3152 (($ (-1 |#1| |#1|) $) 75)) (-3671 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) 77)) (-3626 ((|#1| $) 78)) (-2197 (($ (-644 $)) 161 (|has| |#1| (-365))) (($ $ $) 160 (|has| |#1| (-365)))) (-1438 ((|#2| $) 190)) (-1785 (((-3 |#2| "failed") $) 188)) (-3553 ((|#2| $) 189)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 177 (|has| |#1| (-365)))) (-3921 (($ $) 181 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 180 (-2805 (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-959)) (|has| |#1| (-1199)) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-38 (-409 (-566)))))))) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 162 (|has| |#1| (-365)))) (-2235 (($ (-644 $)) 159 (|has| |#1| (-365))) (($ $ $) 158 (|has| |#1| (-365)))) (-2473 (((-420 $) $) 173 (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 170 (|has| |#1| (-365)))) (-2295 (($ $ (-409 (-566))) 107)) (-2997 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 164 (|has| |#1| (-365)))) (-4337 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-3470 (((-771) $) 166 (|has| |#1| (-365)))) (-4393 ((|#1| $ (-409 (-566))) 116) (($ $ $) 93 (|has| (-409 (-566)) (-1111)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 167 (|has| |#1| (-365)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) 101 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175) (-771)) 100 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-644 (-1175))) 99 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175)) 98 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-771)) 96 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2108 (((-409 (-566)) $) 76)) (-2897 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 133 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 143 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 135 (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) 84)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 59 (|has| |#1| (-172))) (($ |#2|) 193) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558)))) (-3756 ((|#1| $ (-409 (-566))) 71)) (-3226 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3174 ((|#1| $) 114)) (-3801 (((-112) $ $) 9)) (-2931 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 141 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2907 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-409 (-566))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) 105 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175) (-771)) 104 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-644 (-1175))) 103 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-1175)) 102 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (($ $ (-771)) 97 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 70 (|has| |#1| (-365))) (($ $ $) 179 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 178 (|has| |#1| (-365))) (($ $ $) 156 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 127 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
(((-1247 |#1| |#2|) (-140) (-1049) (-1224 |t#1|)) (T -1247))
-((-3992 (*1 *2 *1) (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1224 *3)) (-5 *2 (-409 (-566))))) (-2610 (*1 *1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-4 *4 (-1049)) (-4 *1 (-1247 *4 *3)) (-4 *3 (-1224 *4)))) (-3116 (*1 *2 *1) (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1224 *3)) (-5 *2 (-409 (-566))))) (-2603 (*1 *2 *1) (-12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1224 *3)))) (-2599 (*1 *2 *1) (-12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1224 *3)))) (-4397 (*1 *2 *1) (|partial| -12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1224 *3)))))
-(-13 (-1245 |t#1|) (-1038 |t#2|) (-616 |t#2|) (-10 -8 (-15 -2610 ($ (-409 (-566)) |t#2|)) (-15 -3116 ((-409 (-566)) $)) (-15 -2603 (|t#2| $)) (-15 -3992 ((-409 (-566)) $)) (-15 -2599 (|t#2| $)) (-15 -4397 ((-3 |t#2| "failed") $))))
+((-2108 (*1 *2 *1) (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1224 *3)) (-5 *2 (-409 (-566))))) (-3562 (*1 *1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-4 *4 (-1049)) (-4 *1 (-1247 *4 *3)) (-4 *3 (-1224 *4)))) (-3739 (*1 *2 *1) (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1224 *3)) (-5 *2 (-409 (-566))))) (-1438 (*1 *2 *1) (-12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1224 *3)))) (-3553 (*1 *2 *1) (-12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1224 *3)))) (-1785 (*1 *2 *1) (|partial| -12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1224 *3)))))
+(-13 (-1245 |t#1|) (-1038 |t#2|) (-616 |t#2|) (-10 -8 (-15 -3562 ($ (-409 (-566)) |t#2|)) (-15 -3739 ((-409 (-566)) $)) (-15 -1438 (|t#2| $)) (-15 -2108 ((-409 (-566)) $)) (-15 -3553 (|t#2| $)) (-15 -1785 ((-3 |t#2| "failed") $))))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-409 (-566))) . T) ((-25) . T) ((-38 #1=(-409 (-566))) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-35) |has| |#1| (-38 (-409 (-566)))) ((-95) |has| |#1| (-38 (-409 (-566)))) ((-102) . T) ((-111 #1# #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-616 (-566)) . T) ((-616 |#1|) |has| |#1| (-172)) ((-616 |#2|) . T) ((-616 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) ((-243) |has| |#1| (-365)) ((-285) |has| |#1| (-38 (-409 (-566)))) ((-287 $ $) |has| (-409 (-566)) (-1111)) ((-291) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-308) |has| |#1| (-365)) ((-365) |has| |#1| (-365)) ((-454) |has| |#1| (-365)) ((-495) |has| |#1| (-38 (-409 (-566)))) ((-558) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-646 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-717 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365))) ((-726) . T) ((-900 (-1175)) -12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175)))) ((-973 |#1| #0# (-1081)) . T) ((-920) |has| |#1| (-365)) ((-1002) |has| |#1| (-38 (-409 (-566)))) ((-1038 |#2|) . T) ((-1051 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-1056 #1#) -2805 (|has| |#1| (-365)) (|has| |#1| (-38 (-409 (-566))))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-365)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1199) |has| |#1| (-38 (-409 (-566)))) ((-1202) |has| |#1| (-38 (-409 (-566)))) ((-1218) |has| |#1| (-365)) ((-1242 |#1| #0#) . T) ((-1245 |#1|) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) 104)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-1881 (($ $ (-409 (-566))) 116) (($ $ (-409 (-566)) (-409 (-566))) 118)) (-1530 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) 54)) (-3235 (($ $) 192 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 168 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL (|has| |#1| (-365)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-3215 (($ $) 188 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 164 (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) 65)) (-3259 (($ $) 196 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 172 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) NIL)) (-1756 ((|#2| $) NIL)) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) 85)) (-3116 (((-409 (-566)) $) 13)) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-2610 (($ (-409 (-566)) |#2|) 11)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2635 (((-112) $) NIL (|has| |#1| (-365)))) (-4039 (((-112) $) 74)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-409 (-566)) $) 113) (((-409 (-566)) $ (-409 (-566))) 114)) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3432 (($ $ (-921)) 130) (($ $ (-409 (-566))) 128)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-409 (-566))) 33) (($ $ (-1081) (-409 (-566))) NIL) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) NIL)) (-3077 (($ (-1 |#1| |#1|) $) 125)) (-3668 (($ $) 162 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2603 ((|#2| $) 12)) (-4397 (((-3 |#2| "failed") $) 44)) (-2599 ((|#2| $) 45)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) 101 (|has| |#1| (-365)))) (-4117 (($ $) 146 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 151 (-2805 (-12 (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199)))))) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-1938 (($ $ (-409 (-566))) 122)) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3613 (($ $) 160 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) 98 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ (-409 (-566))) 108) (($ $ $) 94 (|has| (-409 (-566)) (-1111)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) 138 (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 134 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-3992 (((-409 (-566)) $) 16)) (-3267 (($ $) 198 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 174 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 194 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 170 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 190 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 166 (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) 120)) (-2512 (((-862) $) NIL) (($ (-566)) 37) (($ |#1|) 27 (|has| |#1| (-172))) (($ |#2|) 34) (($ (-409 (-566))) 139 (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-2022 ((|#1| $ (-409 (-566))) 107)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) 127 T CONST)) (-2420 ((|#1| $) 106)) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) 204 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 180 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) 200 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 176 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 208 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 184 (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-409 (-566))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) 210 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 186 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 206 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 182 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 202 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 178 (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 21 T CONST)) (-2495 (($) 17 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2940 (((-112) $ $) 72)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) 100 (|has| |#1| (-365)))) (-3047 (($ $) 142) (($ $ $) 78)) (-3034 (($ $ $) 76)) (** (($ $ (-921)) NIL) (($ $ (-771)) 82) (($ $ (-566)) 157 (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 158 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 80) (($ $ |#1|) NIL) (($ |#1| $) 137) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) 104)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2922 (($ $ (-409 (-566))) 116) (($ $ (-409 (-566)) (-409 (-566))) 118)) (-2455 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) 54)) (-2865 (($ $) 192 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 168 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL (|has| |#1| (-365)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2843 (($ $) 188 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 164 (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) 65)) (-2888 (($ $) 196 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 172 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) NIL)) (-1867 ((|#2| $) NIL)) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) 85)) (-3739 (((-409 (-566)) $) 13)) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3562 (($ (-409 (-566)) |#2|) 11)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-1784 (((-112) $) NIL (|has| |#1| (-365)))) (-4392 (((-112) $) 74)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-409 (-566)) $) 113) (((-409 (-566)) $ (-409 (-566))) 114)) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1644 (($ $ (-921)) 130) (($ $ (-409 (-566))) 128)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-409 (-566))) 33) (($ $ (-1081) (-409 (-566))) NIL) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) NIL)) (-3152 (($ (-1 |#1| |#1|) $) 125)) (-3671 (($ $) 162 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-1438 ((|#2| $) 12)) (-1785 (((-3 |#2| "failed") $) 44)) (-3553 ((|#2| $) 45)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) 101 (|has| |#1| (-365)))) (-3921 (($ $) 146 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 151 (-2805 (-12 (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199)))))) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2295 (($ $ (-409 (-566))) 122)) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4337 (($ $) 160 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) 98 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ (-409 (-566))) 108) (($ $ $) 94 (|has| (-409 (-566)) (-1111)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) 138 (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 134 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2108 (((-409 (-566)) $) 16)) (-2897 (($ $) 198 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 174 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 194 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 170 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 190 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 166 (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) 120)) (-3780 (((-862) $) NIL) (($ (-566)) 37) (($ |#1|) 27 (|has| |#1| (-172))) (($ |#2|) 34) (($ (-409 (-566))) 139 (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-3756 ((|#1| $ (-409 (-566))) 107)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) 127 T CONST)) (-3174 ((|#1| $) 106)) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) 204 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 180 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) 200 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 176 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 208 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 184 (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-409 (-566))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) 210 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 186 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 206 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 182 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 202 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 178 (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 21 T CONST)) (-4333 (($) 17 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2950 (((-112) $ $) 72)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) 100 (|has| |#1| (-365)))) (-3051 (($ $) 142) (($ $ $) 78)) (-3040 (($ $ $) 76)) (** (($ $ (-921)) NIL) (($ $ (-771)) 82) (($ $ (-566)) 157 (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 158 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 80) (($ $ |#1|) NIL) (($ |#1| $) 137) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
(((-1248 |#1| |#2|) (-1247 |#1| |#2|) (-1049) (-1224 |#1|)) (T -1248))
NIL
(-1247 |#1| |#2|)
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) 11)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) NIL (|has| |#1| (-558)))) (-1881 (($ $ (-409 (-566))) NIL) (($ $ (-409 (-566)) (-409 (-566))) NIL)) (-1530 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) NIL)) (-3235 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2857 (($ $) NIL (|has| |#1| (-365)))) (-1370 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1561 (((-112) $ $) NIL (|has| |#1| (-365)))) (-3215 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) NIL)) (-3259 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-1228 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1256 |#1| |#2| |#3|) "failed") $) 22)) (-1756 (((-1228 |#1| |#2| |#3|) $) NIL) (((-1256 |#1| |#2| |#3|) $) NIL)) (-2926 (($ $ $) NIL (|has| |#1| (-365)))) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-3116 (((-409 (-566)) $) 69)) (-2938 (($ $ $) NIL (|has| |#1| (-365)))) (-2610 (($ (-409 (-566)) (-1228 |#1| |#2| |#3|)) NIL)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-2635 (((-112) $) NIL (|has| |#1| (-365)))) (-4039 (((-112) $) NIL)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-409 (-566)) $) NIL) (((-409 (-566)) $ (-409 (-566))) NIL)) (-2741 (((-112) $) NIL)) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3432 (($ $ (-921)) NIL) (($ $ (-409 (-566))) NIL)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-409 (-566))) 30) (($ $ (-1081) (-409 (-566))) NIL) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3668 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2184 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2603 (((-1228 |#1| |#2| |#3|) $) 72)) (-4397 (((-3 (-1228 |#1| |#2| |#3|) "failed") $) NIL)) (-2599 (((-1228 |#1| |#2| |#3|) $) NIL)) (-2878 (((-1157) $) NIL)) (-2626 (($ $) NIL (|has| |#1| (-365)))) (-4117 (($ $) 39 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 40 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (((-1119) $) NIL)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2222 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2391 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1665 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) NIL (|has| |#1| (-365)))) (-1938 (($ $ (-409 (-566))) NIL)) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-3819 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-3613 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-1813 (((-771) $) NIL (|has| |#1| (-365)))) (-4386 ((|#1| $ (-409 (-566))) NIL) (($ $ $) NIL (|has| (-409 (-566)) (-1111)))) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) NIL (|has| |#1| (-365)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $ (-1260 |#2|)) 38)) (-3992 (((-409 (-566)) $) NIL)) (-3267 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) NIL)) (-2512 (((-862) $) 109) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1228 |#1| |#2| |#3|)) 16) (($ (-1256 |#1| |#2| |#3|)) 17) (($ (-1260 |#2|)) 36) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-2022 ((|#1| $ (-409 (-566))) NIL)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-2420 ((|#1| $) 12)) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-409 (-566))) 74 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 32 T CONST)) (-2495 (($) 26 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 34)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-1249 |#1| |#2| |#3|) (-13 (-1247 |#1| (-1228 |#1| |#2| |#3|)) (-1038 (-1256 |#1| |#2| |#3|)) (-616 (-1260 |#2|)) (-10 -8 (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1249))
-((-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-4117 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
-(-13 (-1247 |#1| (-1228 |#1| |#2| |#3|)) (-1038 (-1256 |#1| |#2| |#3|)) (-616 (-1260 |#2|)) (-10 -8 (-15 -2862 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 37)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL)) (-3653 (($ $) NIL)) (-2152 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 (-566) "failed") $) NIL (|has| (-1249 |#2| |#3| |#4|) (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-1249 |#2| |#3| |#4|) (-1038 (-409 (-566))))) (((-3 (-1249 |#2| |#3| |#4|) "failed") $) 22)) (-1756 (((-566) $) NIL (|has| (-1249 |#2| |#3| |#4|) (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| (-1249 |#2| |#3| |#4|) (-1038 (-409 (-566))))) (((-1249 |#2| |#3| |#4|) $) NIL)) (-3577 (($ $) 41)) (-1579 (((-3 $ "failed") $) 27)) (-4248 (($ $) NIL (|has| (-1249 |#2| |#3| |#4|) (-454)))) (-2804 (($ $ (-1249 |#2| |#3| |#4|) (-320 |#2| |#3| |#4|) $) NIL)) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) 11)) (-4367 (((-112) $) NIL)) (-2519 (($ (-1249 |#2| |#3| |#4|) (-320 |#2| |#3| |#4|)) 25)) (-3251 (((-320 |#2| |#3| |#4|) $) NIL)) (-2132 (($ (-1 (-320 |#2| |#3| |#4|) (-320 |#2| |#3| |#4|)) $) NIL)) (-3077 (($ (-1 (-1249 |#2| |#3| |#4|) (-1249 |#2| |#3| |#4|)) $) NIL)) (-3869 (((-3 (-843 |#2|) "failed") $) 90)) (-3545 (($ $) NIL)) (-3557 (((-1249 |#2| |#3| |#4|) $) 20)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2636 (((-112) $) NIL)) (-3531 (((-1249 |#2| |#3| |#4|) $) NIL)) (-2972 (((-3 $ "failed") $ (-1249 |#2| |#3| |#4|)) NIL (|has| (-1249 |#2| |#3| |#4|) (-558))) (((-3 $ "failed") $ $) NIL)) (-2056 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1249 |#2| |#3| |#4|)) (|:| |%expon| (-320 |#2| |#3| |#4|)) (|:| |%expTerms| (-644 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#2|)))))) (|:| |%type| (-1157))) "failed") $) 74)) (-3992 (((-320 |#2| |#3| |#4|) $) 17)) (-3181 (((-1249 |#2| |#3| |#4|) $) NIL (|has| (-1249 |#2| |#3| |#4|) (-454)))) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ (-1249 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL (-2805 (|has| (-1249 |#2| |#3| |#4|) (-38 (-409 (-566)))) (|has| (-1249 |#2| |#3| |#4|) (-1038 (-409 (-566))))))) (-3868 (((-644 (-1249 |#2| |#3| |#4|)) $) NIL)) (-2022 (((-1249 |#2| |#3| |#4|) $ (-320 |#2| |#3| |#4|)) NIL)) (-3842 (((-3 $ "failed") $) NIL (|has| (-1249 |#2| |#3| |#4|) (-145)))) (-3795 (((-771)) NIL T CONST)) (-2468 (($ $ $ (-771)) NIL (|has| (-1249 |#2| |#3| |#4|) (-172)))) (-3122 (((-112) $ $) NIL)) (-1634 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-2495 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ (-1249 |#2| |#3| |#4|)) NIL (|has| (-1249 |#2| |#3| |#4|) (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-1249 |#2| |#3| |#4|)) NIL) (($ (-1249 |#2| |#3| |#4|) $) NIL) (($ (-409 (-566)) $) NIL (|has| (-1249 |#2| |#3| |#4|) (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| (-1249 |#2| |#3| |#4|) (-38 (-409 (-566)))))))
-(((-1250 |#1| |#2| |#3| |#4|) (-13 (-327 (-1249 |#2| |#3| |#4|) (-320 |#2| |#3| |#4|)) (-558) (-10 -8 (-15 -3869 ((-3 (-843 |#2|) "failed") $)) (-15 -2056 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1249 |#2| |#3| |#4|)) (|:| |%expon| (-320 |#2| |#3| |#4|)) (|:| |%expTerms| (-644 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#2|)))))) (|:| |%type| (-1157))) "failed") $)))) (-13 (-1038 (-566)) (-639 (-566)) (-454)) (-13 (-27) (-1199) (-432 |#1|)) (-1175) |#2|) (T -1250))
-((-3869 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454))) (-5 *2 (-843 *4)) (-5 *1 (-1250 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175)) (-14 *6 *4))) (-2056 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1249 *4 *5 *6)) (|:| |%expon| (-320 *4 *5 *6)) (|:| |%expTerms| (-644 (-2 (|:| |k| (-409 (-566))) (|:| |c| *4)))))) (|:| |%type| (-1157)))) (-5 *1 (-1250 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175)) (-14 *6 *4))))
-(-13 (-327 (-1249 |#2| |#3| |#4|) (-320 |#2| |#3| |#4|)) (-558) (-10 -8 (-15 -3869 ((-3 (-843 |#2|) "failed") $)) (-15 -2056 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1249 |#2| |#3| |#4|)) (|:| |%expon| (-320 |#2| |#3| |#4|)) (|:| |%expTerms| (-644 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#2|)))))) (|:| |%type| (-1157))) "failed") $))))
-((-2212 ((|#2| $) 34)) (-4309 ((|#2| $) 18)) (-3301 (($ $) 52)) (-1410 (($ $ (-566)) 85)) (-3081 (((-112) $ (-771)) 46)) (-3087 ((|#2| $ |#2|) 82)) (-1587 ((|#2| $ |#2|) 78)) (-3874 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 71) (($ $ "rest" $) 75) ((|#2| $ "last" |#2|) 73)) (-1709 (($ $ (-644 $)) 81)) (-4299 ((|#2| $) 17)) (-4076 (($ $) NIL) (($ $ (-771)) 59)) (-2286 (((-644 $) $) 31)) (-4129 (((-112) $ $) 69)) (-2744 (((-112) $ (-771)) 45)) (-3882 (((-112) $ (-771)) 43)) (-2783 (((-112) $) 33)) (-2670 ((|#2| $) 25) (($ $ (-771)) 64)) (-4386 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-1313 (((-112) $) 23)) (-1636 (($ $) 55)) (-2231 (($ $) 86)) (-3069 (((-771) $) 58)) (-1904 (($ $) 57)) (-3704 (($ $ $) 77) (($ |#2| $) NIL)) (-1448 (((-644 $) $) 32)) (-2940 (((-112) $ $) 67)) (-2997 (((-771) $) 51)))
-(((-1251 |#1| |#2|) (-10 -8 (-15 -1410 (|#1| |#1| (-566))) (-15 -3874 (|#2| |#1| "last" |#2|)) (-15 -1587 (|#2| |#1| |#2|)) (-15 -3874 (|#1| |#1| "rest" |#1|)) (-15 -3874 (|#2| |#1| "first" |#2|)) (-15 -2231 (|#1| |#1|)) (-15 -1636 (|#1| |#1|)) (-15 -3069 ((-771) |#1|)) (-15 -1904 (|#1| |#1|)) (-15 -4309 (|#2| |#1|)) (-15 -4299 (|#2| |#1|)) (-15 -3301 (|#1| |#1|)) (-15 -2670 (|#1| |#1| (-771))) (-15 -4386 (|#2| |#1| "last")) (-15 -2670 (|#2| |#1|)) (-15 -4076 (|#1| |#1| (-771))) (-15 -4386 (|#1| |#1| "rest")) (-15 -4076 (|#1| |#1|)) (-15 -4386 (|#2| |#1| "first")) (-15 -3704 (|#1| |#2| |#1|)) (-15 -3704 (|#1| |#1| |#1|)) (-15 -3087 (|#2| |#1| |#2|)) (-15 -3874 (|#2| |#1| "value" |#2|)) (-15 -1709 (|#1| |#1| (-644 |#1|))) (-15 -4129 ((-112) |#1| |#1|)) (-15 -1313 ((-112) |#1|)) (-15 -4386 (|#2| |#1| "value")) (-15 -2212 (|#2| |#1|)) (-15 -2783 ((-112) |#1|)) (-15 -2286 ((-644 |#1|) |#1|)) (-15 -1448 ((-644 |#1|) |#1|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -2997 ((-771) |#1|)) (-15 -3081 ((-112) |#1| (-771))) (-15 -2744 ((-112) |#1| (-771))) (-15 -3882 ((-112) |#1| (-771)))) (-1252 |#2|) (-1214)) (T -1251))
-NIL
-(-10 -8 (-15 -1410 (|#1| |#1| (-566))) (-15 -3874 (|#2| |#1| "last" |#2|)) (-15 -1587 (|#2| |#1| |#2|)) (-15 -3874 (|#1| |#1| "rest" |#1|)) (-15 -3874 (|#2| |#1| "first" |#2|)) (-15 -2231 (|#1| |#1|)) (-15 -1636 (|#1| |#1|)) (-15 -3069 ((-771) |#1|)) (-15 -1904 (|#1| |#1|)) (-15 -4309 (|#2| |#1|)) (-15 -4299 (|#2| |#1|)) (-15 -3301 (|#1| |#1|)) (-15 -2670 (|#1| |#1| (-771))) (-15 -4386 (|#2| |#1| "last")) (-15 -2670 (|#2| |#1|)) (-15 -4076 (|#1| |#1| (-771))) (-15 -4386 (|#1| |#1| "rest")) (-15 -4076 (|#1| |#1|)) (-15 -4386 (|#2| |#1| "first")) (-15 -3704 (|#1| |#2| |#1|)) (-15 -3704 (|#1| |#1| |#1|)) (-15 -3087 (|#2| |#1| |#2|)) (-15 -3874 (|#2| |#1| "value" |#2|)) (-15 -1709 (|#1| |#1| (-644 |#1|))) (-15 -4129 ((-112) |#1| |#1|)) (-15 -1313 ((-112) |#1|)) (-15 -4386 (|#2| |#1| "value")) (-15 -2212 (|#2| |#1|)) (-15 -2783 ((-112) |#1|)) (-15 -2286 ((-644 |#1|) |#1|)) (-15 -1448 ((-644 |#1|) |#1|)) (-15 -2940 ((-112) |#1| |#1|)) (-15 -2997 ((-771) |#1|)) (-15 -3081 ((-112) |#1| (-771))) (-15 -2744 ((-112) |#1| (-771))) (-15 -3882 ((-112) |#1| (-771))))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2212 ((|#1| $) 49)) (-4309 ((|#1| $) 66)) (-3301 (($ $) 68)) (-1410 (($ $ (-566)) 53 (|has| $ (-6 -4418)))) (-3081 (((-112) $ (-771)) 8)) (-3087 ((|#1| $ |#1|) 40 (|has| $ (-6 -4418)))) (-4290 (($ $ $) 57 (|has| $ (-6 -4418)))) (-1587 ((|#1| $ |#1|) 55 (|has| $ (-6 -4418)))) (-2831 ((|#1| $ |#1|) 59 (|has| $ (-6 -4418)))) (-3874 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4418))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4418))) (($ $ "rest" $) 56 (|has| $ (-6 -4418))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4418)))) (-1709 (($ $ (-644 $)) 42 (|has| $ (-6 -4418)))) (-4299 ((|#1| $) 67)) (-2342 (($) 7 T CONST)) (-4076 (($ $) 74) (($ $ (-771)) 72)) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-2286 (((-644 $) $) 51)) (-4129 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-2744 (((-112) $ (-771)) 9)) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36)) (-3882 (((-112) $ (-771)) 10)) (-2996 (((-644 |#1|) $) 46)) (-2783 (((-112) $) 50)) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2670 ((|#1| $) 71) (($ $ (-771)) 69)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4062 ((|#1| $) 77) (($ $ (-771)) 75)) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70)) (-1442 (((-566) $ $) 45)) (-1313 (((-112) $) 47)) (-1636 (($ $) 63)) (-2231 (($ $) 60 (|has| $ (-6 -4418)))) (-3069 (((-771) $) 64)) (-1904 (($ $) 65)) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3895 (($ $) 13)) (-1498 (($ $ $) 62 (|has| $ (-6 -4418))) (($ $ |#1|) 61 (|has| $ (-6 -4418)))) (-3704 (($ $ $) 79) (($ |#1| $) 78)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-1448 (((-644 $) $) 52)) (-2105 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) 11)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) NIL (|has| |#1| (-558)))) (-2922 (($ $ (-409 (-566))) NIL) (($ $ (-409 (-566)) (-409 (-566))) NIL)) (-2455 (((-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|))) $) NIL)) (-2865 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2179 (($ $) NIL (|has| |#1| (-365)))) (-3271 (((-420 $) $) NIL (|has| |#1| (-365)))) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2738 (((-112) $ $) NIL (|has| |#1| (-365)))) (-2843 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-771) (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#1|)))) NIL)) (-2888 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-1228 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1256 |#1| |#2| |#3|) "failed") $) 22)) (-1867 (((-1228 |#1| |#2| |#3|) $) NIL) (((-1256 |#1| |#2| |#3|) $) NIL)) (-2949 (($ $ $) NIL (|has| |#1| (-365)))) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-3739 (((-409 (-566)) $) 69)) (-2960 (($ $ $) NIL (|has| |#1| (-365)))) (-3562 (($ (-409 (-566)) (-1228 |#1| |#2| |#3|)) NIL)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) NIL (|has| |#1| (-365)))) (-1784 (((-112) $) NIL (|has| |#1| (-365)))) (-4392 (((-112) $) NIL)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-409 (-566)) $) NIL) (((-409 (-566)) $ (-409 (-566))) NIL)) (-3466 (((-112) $) NIL)) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1644 (($ $ (-921)) NIL) (($ $ (-409 (-566))) NIL)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-409 (-566))) 30) (($ $ (-1081) (-409 (-566))) NIL) (($ $ (-644 (-1081)) (-644 (-409 (-566)))) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3671 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2197 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-1438 (((-1228 |#1| |#2| |#3|) $) 72)) (-1785 (((-3 (-1228 |#1| |#2| |#3|) "failed") $) NIL)) (-3553 (((-1228 |#1| |#2| |#3|) $) NIL)) (-2402 (((-1157) $) NIL)) (-3584 (($ $) NIL (|has| |#1| (-365)))) (-3921 (($ $) 39 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) NIL (-2805 (-12 (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 40 (|has| |#1| (-38 (-409 (-566)))))) (-4056 (((-1119) $) NIL)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) NIL (|has| |#1| (-365)))) (-2235 (($ (-644 $)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-2473 (((-420 $) $) NIL (|has| |#1| (-365)))) (-1325 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-365))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) NIL (|has| |#1| (-365)))) (-2295 (($ $ (-409 (-566))) NIL)) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-4208 (((-3 (-644 $) "failed") (-644 $) $) NIL (|has| |#1| (-365)))) (-4337 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))))) (-3470 (((-771) $) NIL (|has| |#1| (-365)))) (-4393 ((|#1| $ (-409 (-566))) NIL) (($ $ $) NIL (|has| (-409 (-566)) (-1111)))) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) NIL (|has| |#1| (-365)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) 37 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $ (-1260 |#2|)) 38)) (-2108 (((-409 (-566)) $) NIL)) (-2897 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) NIL)) (-3780 (((-862) $) 109) (($ (-566)) NIL) (($ |#1|) NIL (|has| |#1| (-172))) (($ (-1228 |#1| |#2| |#3|)) 16) (($ (-1256 |#1| |#2| |#3|)) 17) (($ (-1260 |#2|)) 36) (($ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558)))) (-3756 ((|#1| $ (-409 (-566))) NIL)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3174 ((|#1| $) 12)) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-409 (-566))) 74 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-409 (-566))))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 32 T CONST)) (-4333 (($) 26 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-409 (-566)) |#1|))))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 34)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ (-566)) NIL (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-1249 |#1| |#2| |#3|) (-13 (-1247 |#1| (-1228 |#1| |#2| |#3|)) (-1038 (-1256 |#1| |#2| |#3|)) (-616 (-1260 |#2|)) (-10 -8 (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1249))
+((-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-3921 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1249 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
+(-13 (-1247 |#1| (-1228 |#1| |#2| |#3|)) (-1038 (-1256 |#1| |#2| |#3|)) (-616 (-1260 |#2|)) (-10 -8 (-15 -2578 ($ $ (-1260 |#2|))) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 37)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL)) (-1968 (($ $) NIL)) (-2644 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 (-566) "failed") $) NIL (|has| (-1249 |#2| |#3| |#4|) (-1038 (-566)))) (((-3 (-409 (-566)) "failed") $) NIL (|has| (-1249 |#2| |#3| |#4|) (-1038 (-409 (-566))))) (((-3 (-1249 |#2| |#3| |#4|) "failed") $) 22)) (-1867 (((-566) $) NIL (|has| (-1249 |#2| |#3| |#4|) (-1038 (-566)))) (((-409 (-566)) $) NIL (|has| (-1249 |#2| |#3| |#4|) (-1038 (-409 (-566))))) (((-1249 |#2| |#3| |#4|) $) NIL)) (-3645 (($ $) 41)) (-2928 (((-3 $ "failed") $) 27)) (-2755 (($ $) NIL (|has| (-1249 |#2| |#3| |#4|) (-454)))) (-2871 (($ $ (-1249 |#2| |#3| |#4|) (-320 |#2| |#3| |#4|) $) NIL)) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) 11)) (-1453 (((-112) $) NIL)) (-2585 (($ (-1249 |#2| |#3| |#4|) (-320 |#2| |#3| |#4|)) 25)) (-2466 (((-320 |#2| |#3| |#4|) $) NIL)) (-2443 (($ (-1 (-320 |#2| |#3| |#4|) (-320 |#2| |#3| |#4|)) $) NIL)) (-3152 (($ (-1 (-1249 |#2| |#3| |#4|) (-1249 |#2| |#3| |#4|)) $) NIL)) (-3467 (((-3 (-843 |#2|) "failed") $) 90)) (-3614 (($ $) NIL)) (-3626 (((-1249 |#2| |#3| |#4|) $) 20)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3595 (((-112) $) NIL)) (-3604 (((-1249 |#2| |#3| |#4|) $) NIL)) (-2997 (((-3 $ "failed") $ (-1249 |#2| |#3| |#4|)) NIL (|has| (-1249 |#2| |#3| |#4|) (-558))) (((-3 $ "failed") $ $) NIL)) (-4087 (((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1249 |#2| |#3| |#4|)) (|:| |%expon| (-320 |#2| |#3| |#4|)) (|:| |%expTerms| (-644 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#2|)))))) (|:| |%type| (-1157))) "failed") $) 74)) (-2108 (((-320 |#2| |#3| |#4|) $) 17)) (-3042 (((-1249 |#2| |#3| |#4|) $) NIL (|has| (-1249 |#2| |#3| |#4|) (-454)))) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ (-1249 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-409 (-566))) NIL (-2805 (|has| (-1249 |#2| |#3| |#4|) (-38 (-409 (-566)))) (|has| (-1249 |#2| |#3| |#4|) (-1038 (-409 (-566))))))) (-3456 (((-644 (-1249 |#2| |#3| |#4|)) $) NIL)) (-3756 (((-1249 |#2| |#3| |#4|) $ (-320 |#2| |#3| |#4|)) NIL)) (-3226 (((-3 $ "failed") $) NIL (|has| (-1249 |#2| |#3| |#4|) (-145)))) (-3996 (((-771)) NIL T CONST)) (-2629 (($ $ $ (-771)) NIL (|has| (-1249 |#2| |#3| |#4|) (-172)))) (-3801 (((-112) $ $) NIL)) (-2278 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-4333 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ (-1249 |#2| |#3| |#4|)) NIL (|has| (-1249 |#2| |#3| |#4|) (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ (-1249 |#2| |#3| |#4|)) NIL) (($ (-1249 |#2| |#3| |#4|) $) NIL) (($ (-409 (-566)) $) NIL (|has| (-1249 |#2| |#3| |#4|) (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| (-1249 |#2| |#3| |#4|) (-38 (-409 (-566)))))))
+(((-1250 |#1| |#2| |#3| |#4|) (-13 (-327 (-1249 |#2| |#3| |#4|) (-320 |#2| |#3| |#4|)) (-558) (-10 -8 (-15 -3467 ((-3 (-843 |#2|) "failed") $)) (-15 -4087 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1249 |#2| |#3| |#4|)) (|:| |%expon| (-320 |#2| |#3| |#4|)) (|:| |%expTerms| (-644 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#2|)))))) (|:| |%type| (-1157))) "failed") $)))) (-13 (-1038 (-566)) (-639 (-566)) (-454)) (-13 (-27) (-1199) (-432 |#1|)) (-1175) |#2|) (T -1250))
+((-3467 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454))) (-5 *2 (-843 *4)) (-5 *1 (-1250 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175)) (-14 *6 *4))) (-4087 (*1 *2 *1) (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454))) (-5 *2 (-2 (|:| |%term| (-2 (|:| |%coef| (-1249 *4 *5 *6)) (|:| |%expon| (-320 *4 *5 *6)) (|:| |%expTerms| (-644 (-2 (|:| |k| (-409 (-566))) (|:| |c| *4)))))) (|:| |%type| (-1157)))) (-5 *1 (-1250 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175)) (-14 *6 *4))))
+(-13 (-327 (-1249 |#2| |#3| |#4|) (-320 |#2| |#3| |#4|)) (-558) (-10 -8 (-15 -3467 ((-3 (-843 |#2|) "failed") $)) (-15 -4087 ((-3 (-2 (|:| |%term| (-2 (|:| |%coef| (-1249 |#2| |#3| |#4|)) (|:| |%expon| (-320 |#2| |#3| |#4|)) (|:| |%expTerms| (-644 (-2 (|:| |k| (-409 (-566))) (|:| |c| |#2|)))))) (|:| |%type| (-1157))) "failed") $))))
+((-2252 ((|#2| $) 34)) (-4369 ((|#2| $) 18)) (-4043 (($ $) 52)) (-3670 (($ $ (-566)) 85)) (-1574 (((-112) $ (-771)) 46)) (-1637 ((|#2| $ |#2|) 82)) (-1819 ((|#2| $ |#2|) 78)) (-3916 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 71) (($ $ "rest" $) 75) ((|#2| $ "last" |#2|) 73)) (-3668 (($ $ (-644 $)) 81)) (-4358 ((|#2| $) 17)) (-4112 (($ $) NIL) (($ $ (-771)) 59)) (-1432 (((-644 $) $) 31)) (-4050 (((-112) $ $) 69)) (-3501 (((-112) $ (-771)) 45)) (-3582 (((-112) $ (-771)) 43)) (-2675 (((-112) $) 33)) (-2680 ((|#2| $) 25) (($ $ (-771)) 64)) (-4393 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-1638 (((-112) $) 23)) (-2299 (($ $) 55)) (-2127 (($ $) 86)) (-1472 (((-771) $) 58)) (-1957 (($ $) 57)) (-3727 (($ $ $) 77) (($ |#2| $) NIL)) (-4041 (((-644 $) $) 32)) (-2950 (((-112) $ $) 67)) (-3020 (((-771) $) 51)))
+(((-1251 |#1| |#2|) (-10 -8 (-15 -3670 (|#1| |#1| (-566))) (-15 -3916 (|#2| |#1| "last" |#2|)) (-15 -1819 (|#2| |#1| |#2|)) (-15 -3916 (|#1| |#1| "rest" |#1|)) (-15 -3916 (|#2| |#1| "first" |#2|)) (-15 -2127 (|#1| |#1|)) (-15 -2299 (|#1| |#1|)) (-15 -1472 ((-771) |#1|)) (-15 -1957 (|#1| |#1|)) (-15 -4369 (|#2| |#1|)) (-15 -4358 (|#2| |#1|)) (-15 -4043 (|#1| |#1|)) (-15 -2680 (|#1| |#1| (-771))) (-15 -4393 (|#2| |#1| "last")) (-15 -2680 (|#2| |#1|)) (-15 -4112 (|#1| |#1| (-771))) (-15 -4393 (|#1| |#1| "rest")) (-15 -4112 (|#1| |#1|)) (-15 -4393 (|#2| |#1| "first")) (-15 -3727 (|#1| |#2| |#1|)) (-15 -3727 (|#1| |#1| |#1|)) (-15 -1637 (|#2| |#1| |#2|)) (-15 -3916 (|#2| |#1| "value" |#2|)) (-15 -3668 (|#1| |#1| (-644 |#1|))) (-15 -4050 ((-112) |#1| |#1|)) (-15 -1638 ((-112) |#1|)) (-15 -4393 (|#2| |#1| "value")) (-15 -2252 (|#2| |#1|)) (-15 -2675 ((-112) |#1|)) (-15 -1432 ((-644 |#1|) |#1|)) (-15 -4041 ((-644 |#1|) |#1|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -3020 ((-771) |#1|)) (-15 -1574 ((-112) |#1| (-771))) (-15 -3501 ((-112) |#1| (-771))) (-15 -3582 ((-112) |#1| (-771)))) (-1252 |#2|) (-1214)) (T -1251))
+NIL
+(-10 -8 (-15 -3670 (|#1| |#1| (-566))) (-15 -3916 (|#2| |#1| "last" |#2|)) (-15 -1819 (|#2| |#1| |#2|)) (-15 -3916 (|#1| |#1| "rest" |#1|)) (-15 -3916 (|#2| |#1| "first" |#2|)) (-15 -2127 (|#1| |#1|)) (-15 -2299 (|#1| |#1|)) (-15 -1472 ((-771) |#1|)) (-15 -1957 (|#1| |#1|)) (-15 -4369 (|#2| |#1|)) (-15 -4358 (|#2| |#1|)) (-15 -4043 (|#1| |#1|)) (-15 -2680 (|#1| |#1| (-771))) (-15 -4393 (|#2| |#1| "last")) (-15 -2680 (|#2| |#1|)) (-15 -4112 (|#1| |#1| (-771))) (-15 -4393 (|#1| |#1| "rest")) (-15 -4112 (|#1| |#1|)) (-15 -4393 (|#2| |#1| "first")) (-15 -3727 (|#1| |#2| |#1|)) (-15 -3727 (|#1| |#1| |#1|)) (-15 -1637 (|#2| |#1| |#2|)) (-15 -3916 (|#2| |#1| "value" |#2|)) (-15 -3668 (|#1| |#1| (-644 |#1|))) (-15 -4050 ((-112) |#1| |#1|)) (-15 -1638 ((-112) |#1|)) (-15 -4393 (|#2| |#1| "value")) (-15 -2252 (|#2| |#1|)) (-15 -2675 ((-112) |#1|)) (-15 -1432 ((-644 |#1|) |#1|)) (-15 -4041 ((-644 |#1|) |#1|)) (-15 -2950 ((-112) |#1| |#1|)) (-15 -3020 ((-771) |#1|)) (-15 -1574 ((-112) |#1| (-771))) (-15 -3501 ((-112) |#1| (-771))) (-15 -3582 ((-112) |#1| (-771))))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2252 ((|#1| $) 49)) (-4369 ((|#1| $) 66)) (-4043 (($ $) 68)) (-3670 (($ $ (-566)) 53 (|has| $ (-6 -4415)))) (-1574 (((-112) $ (-771)) 8)) (-1637 ((|#1| $ |#1|) 40 (|has| $ (-6 -4415)))) (-1938 (($ $ $) 57 (|has| $ (-6 -4415)))) (-1819 ((|#1| $ |#1|) 55 (|has| $ (-6 -4415)))) (-1921 ((|#1| $ |#1|) 59 (|has| $ (-6 -4415)))) (-3916 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4415))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4415))) (($ $ "rest" $) 56 (|has| $ (-6 -4415))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4415)))) (-3668 (($ $ (-644 $)) 42 (|has| $ (-6 -4415)))) (-4358 ((|#1| $) 67)) (-3877 (($) 7 T CONST)) (-4112 (($ $) 74) (($ $ (-771)) 72)) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-1432 (((-644 $) $) 51)) (-4050 (((-112) $ $) 43 (|has| |#1| (-1099)))) (-3501 (((-112) $ (-771)) 9)) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36)) (-3582 (((-112) $ (-771)) 10)) (-3318 (((-644 |#1|) $) 46)) (-2675 (((-112) $) 50)) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-2680 ((|#1| $) 71) (($ $ (-771)) 69)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4101 ((|#1| $) 77) (($ $ (-771)) 75)) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70)) (-3969 (((-566) $ $) 45)) (-1638 (((-112) $) 47)) (-2299 (($ $) 63)) (-2127 (($ $) 60 (|has| $ (-6 -4415)))) (-1472 (((-771) $) 64)) (-1957 (($ $) 65)) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3940 (($ $) 13)) (-3324 (($ $ $) 62 (|has| $ (-6 -4415))) (($ $ |#1|) 61 (|has| $ (-6 -4415)))) (-3727 (($ $ $) 79) (($ |#1| $) 78)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-4041 (((-644 $) $) 52)) (-3381 (((-112) $ $) 44 (|has| |#1| (-1099)))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-1252 |#1|) (-140) (-1214)) (T -1252))
-((-3704 (*1 *1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3704 (*1 *1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4062 (*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4062 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214)))) (-4076 (*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4386 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1252 *3)) (-4 *3 (-1214)))) (-4076 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214)))) (-2670 (*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4386 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-2670 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214)))) (-3301 (*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4299 (*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4309 (*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-1904 (*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3069 (*1 *2 *1) (-12 (-4 *1 (-1252 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))) (-1636 (*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-1498 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-1498 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-2231 (*1 *1 *1) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-2831 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3874 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4290 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3874 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4418)) (-4 *1 (-1252 *3)) (-4 *3 (-1214)))) (-1587 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3874 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-1410 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (|has| *1 (-6 -4418)) (-4 *1 (-1252 *3)) (-4 *3 (-1214)))))
-(-13 (-1010 |t#1|) (-10 -8 (-15 -3704 ($ $ $)) (-15 -3704 ($ |t#1| $)) (-15 -4062 (|t#1| $)) (-15 -4386 (|t#1| $ "first")) (-15 -4062 ($ $ (-771))) (-15 -4076 ($ $)) (-15 -4386 ($ $ "rest")) (-15 -4076 ($ $ (-771))) (-15 -2670 (|t#1| $)) (-15 -4386 (|t#1| $ "last")) (-15 -2670 ($ $ (-771))) (-15 -3301 ($ $)) (-15 -4299 (|t#1| $)) (-15 -4309 (|t#1| $)) (-15 -1904 ($ $)) (-15 -3069 ((-771) $)) (-15 -1636 ($ $)) (IF (|has| $ (-6 -4418)) (PROGN (-15 -1498 ($ $ $)) (-15 -1498 ($ $ |t#1|)) (-15 -2231 ($ $)) (-15 -2831 (|t#1| $ |t#1|)) (-15 -3874 (|t#1| $ "first" |t#1|)) (-15 -4290 ($ $ $)) (-15 -3874 ($ $ "rest" $)) (-15 -1587 (|t#1| $ |t#1|)) (-15 -3874 (|t#1| $ "last" |t#1|)) (-15 -1410 ($ $ (-566)))) |%noBranch|)))
+((-3727 (*1 *1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3727 (*1 *1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4101 (*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4101 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214)))) (-4112 (*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4393 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1252 *3)) (-4 *3 (-1214)))) (-4112 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214)))) (-2680 (*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4393 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-2680 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214)))) (-4043 (*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4358 (*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-4369 (*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-1957 (*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-1472 (*1 *2 *1) (-12 (-4 *1 (-1252 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))) (-2299 (*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3324 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3324 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-2127 (*1 *1 *1) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-1921 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3916 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-1938 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3916 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4415)) (-4 *1 (-1252 *3)) (-4 *3 (-1214)))) (-1819 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3916 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))) (-3670 (*1 *1 *1 *2) (-12 (-5 *2 (-566)) (|has| *1 (-6 -4415)) (-4 *1 (-1252 *3)) (-4 *3 (-1214)))))
+(-13 (-1010 |t#1|) (-10 -8 (-15 -3727 ($ $ $)) (-15 -3727 ($ |t#1| $)) (-15 -4101 (|t#1| $)) (-15 -4393 (|t#1| $ "first")) (-15 -4101 ($ $ (-771))) (-15 -4112 ($ $)) (-15 -4393 ($ $ "rest")) (-15 -4112 ($ $ (-771))) (-15 -2680 (|t#1| $)) (-15 -4393 (|t#1| $ "last")) (-15 -2680 ($ $ (-771))) (-15 -4043 ($ $)) (-15 -4358 (|t#1| $)) (-15 -4369 (|t#1| $)) (-15 -1957 ($ $)) (-15 -1472 ((-771) $)) (-15 -2299 ($ $)) (IF (|has| $ (-6 -4415)) (PROGN (-15 -3324 ($ $ $)) (-15 -3324 ($ $ |t#1|)) (-15 -2127 ($ $)) (-15 -1921 (|t#1| $ |t#1|)) (-15 -3916 (|t#1| $ "first" |t#1|)) (-15 -1938 ($ $ $)) (-15 -3916 ($ $ "rest" $)) (-15 -1819 (|t#1| $ |t#1|)) (-15 -3916 (|t#1| $ "last" |t#1|)) (-15 -3670 ($ $ (-566)))) |%noBranch|)))
(((-34) . T) ((-102) |has| |#1| (-1099)) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-613 (-862)))) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-491 |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-1010 |#1|) . T) ((-1099) |has| |#1| (-1099)) ((-1214) . T))
-((-3077 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
-(((-1253 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3077 (|#4| (-1 |#2| |#1|) |#3|))) (-1049) (-1049) (-1255 |#1|) (-1255 |#2|)) (T -1253))
-((-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-4 *2 (-1255 *6)) (-5 *1 (-1253 *5 *6 *4 *2)) (-4 *4 (-1255 *5)))))
-(-10 -7 (-15 -3077 (|#4| (-1 |#2| |#1|) |#3|)))
-((-3958 (((-112) $) 17)) (-3235 (($ $) 106)) (-3102 (($ $) 82)) (-3215 (($ $) 102)) (-3076 (($ $) 78)) (-3259 (($ $) 110)) (-3123 (($ $) 86)) (-3668 (($ $) 76)) (-3613 (($ $) 74)) (-3267 (($ $) 112)) (-3133 (($ $) 88)) (-3248 (($ $) 108)) (-3112 (($ $) 84)) (-3223 (($ $) 104)) (-3089 (($ $) 80)) (-2512 (((-862) $) 62) (($ (-566)) NIL) (($ (-409 (-566))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-3302 (($ $) 118)) (-3172 (($ $) 94)) (-3279 (($ $) 114)) (-3146 (($ $) 90)) (-3323 (($ $) 122)) (-3194 (($ $) 98)) (-1382 (($ $) 124)) (-3205 (($ $) 100)) (-3313 (($ $) 120)) (-3185 (($ $) 96)) (-3291 (($ $) 116)) (-3160 (($ $) 92)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ |#2|) 66) (($ $ $) 69) (($ $ (-409 (-566))) 72)))
-(((-1254 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -3102 (|#1| |#1|)) (-15 -3076 (|#1| |#1|)) (-15 -3123 (|#1| |#1|)) (-15 -3133 (|#1| |#1|)) (-15 -3112 (|#1| |#1|)) (-15 -3089 (|#1| |#1|)) (-15 -3160 (|#1| |#1|)) (-15 -3185 (|#1| |#1|)) (-15 -3205 (|#1| |#1|)) (-15 -3194 (|#1| |#1|)) (-15 -3146 (|#1| |#1|)) (-15 -3172 (|#1| |#1|)) (-15 -3223 (|#1| |#1|)) (-15 -3248 (|#1| |#1|)) (-15 -3267 (|#1| |#1|)) (-15 -3259 (|#1| |#1|)) (-15 -3215 (|#1| |#1|)) (-15 -3235 (|#1| |#1|)) (-15 -3291 (|#1| |#1|)) (-15 -3313 (|#1| |#1|)) (-15 -1382 (|#1| |#1|)) (-15 -3323 (|#1| |#1|)) (-15 -3279 (|#1| |#1|)) (-15 -3302 (|#1| |#1|)) (-15 -3668 (|#1| |#1|)) (-15 -3613 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -2512 (|#1| |#2|)) (-15 -2512 (|#1| |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))) (-15 -3958 ((-112) |#1|)) (-15 -2512 ((-862) |#1|))) (-1255 |#2|) (-1049)) (T -1254))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -3102 (|#1| |#1|)) (-15 -3076 (|#1| |#1|)) (-15 -3123 (|#1| |#1|)) (-15 -3133 (|#1| |#1|)) (-15 -3112 (|#1| |#1|)) (-15 -3089 (|#1| |#1|)) (-15 -3160 (|#1| |#1|)) (-15 -3185 (|#1| |#1|)) (-15 -3205 (|#1| |#1|)) (-15 -3194 (|#1| |#1|)) (-15 -3146 (|#1| |#1|)) (-15 -3172 (|#1| |#1|)) (-15 -3223 (|#1| |#1|)) (-15 -3248 (|#1| |#1|)) (-15 -3267 (|#1| |#1|)) (-15 -3259 (|#1| |#1|)) (-15 -3215 (|#1| |#1|)) (-15 -3235 (|#1| |#1|)) (-15 -3291 (|#1| |#1|)) (-15 -3313 (|#1| |#1|)) (-15 -1382 (|#1| |#1|)) (-15 -3323 (|#1| |#1|)) (-15 -3279 (|#1| |#1|)) (-15 -3302 (|#1| |#1|)) (-15 -3668 (|#1| |#1|)) (-15 -3613 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -2512 (|#1| |#2|)) (-15 -2512 (|#1| |#1|)) (-15 -2512 (|#1| (-409 (-566)))) (-15 -2512 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))) (-15 -3958 ((-112) |#1|)) (-15 -2512 ((-862) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2540 (((-644 (-1081)) $) 86)) (-1353 (((-1175) $) 115)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-3653 (($ $) 64 (|has| |#1| (-558)))) (-2152 (((-112) $) 66 (|has| |#1| (-558)))) (-1881 (($ $ (-771)) 110) (($ $ (-771) (-771)) 109)) (-1530 (((-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|))) $) 117)) (-3235 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) 20)) (-2402 (($ $) 129 (|has| |#1| (-38 (-409 (-566)))))) (-3215 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) 131 (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|)))) 167) (($ (-1155 |#1|)) 165)) (-3259 (($ $) 145 (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) 18 T CONST)) (-3577 (($ $) 72)) (-1579 (((-3 $ "failed") $) 37)) (-2578 (($ $) 164)) (-3768 (((-952 |#1|) $ (-771)) 162) (((-952 |#1|) $ (-771) (-771)) 161)) (-4039 (((-112) $) 85)) (-3035 (($) 157 (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-771) $) 112) (((-771) $ (-771)) 111)) (-2741 (((-112) $) 35)) (-3979 (($ $ (-566)) 128 (|has| |#1| (-38 (-409 (-566)))))) (-3432 (($ $ (-921)) 113)) (-2153 (($ (-1 |#1| (-566)) $) 163)) (-4367 (((-112) $) 74)) (-2519 (($ |#1| (-771)) 73) (($ $ (-1081) (-771)) 88) (($ $ (-644 (-1081)) (-644 (-771))) 87)) (-3077 (($ (-1 |#1| |#1|) $) 75)) (-3668 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) 77)) (-3557 ((|#1| $) 78)) (-2878 (((-1157) $) 10)) (-4117 (($ $) 159 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 158 (-2805 (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-959)) (|has| |#1| (-1199)) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-38 (-409 (-566)))))))) (-4033 (((-1119) $) 11)) (-1938 (($ $ (-771)) 107)) (-2972 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-3613 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2070 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-771)))))) (-4386 ((|#1| $ (-771)) 116) (($ $ $) 93 (|has| (-771) (-1111)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) 101 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-1175) (-771)) 100 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-644 (-1175))) 99 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-1175)) 98 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-771)) 96 (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (-3992 (((-771) $) 76)) (-3267 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) 133 (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) 143 (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) 135 (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) 84)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558))) (($ |#1|) 59 (|has| |#1| (-172)))) (-3868 (((-1155 |#1|) $) 166)) (-2022 ((|#1| $ (-771)) 71)) (-3842 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3795 (((-771)) 32 T CONST)) (-2420 ((|#1| $) 114)) (-3122 (((-112) $ $) 9)) (-3302 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) 141 (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) 65 (|has| |#1| (-558)))) (-3279 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-771)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-771)))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) 105 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-1175) (-771)) 104 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-644 (-1175))) 103 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-1175)) 102 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-771)) 97 (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 70 (|has| |#1| (-365)))) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ |#1|) 160 (|has| |#1| (-365))) (($ $ $) 156 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 127 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
+((-3152 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
+(((-1253 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3152 (|#4| (-1 |#2| |#1|) |#3|))) (-1049) (-1049) (-1255 |#1|) (-1255 |#2|)) (T -1253))
+((-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1049)) (-4 *6 (-1049)) (-4 *2 (-1255 *6)) (-5 *1 (-1253 *5 *6 *4 *2)) (-4 *4 (-1255 *5)))))
+(-10 -7 (-15 -3152 (|#4| (-1 |#2| |#1|) |#3|)))
+((-3015 (((-112) $) 17)) (-2865 (($ $) 106)) (-3939 (($ $) 82)) (-2843 (($ $) 102)) (-3915 (($ $) 78)) (-2888 (($ $) 110)) (-3964 (($ $) 86)) (-3671 (($ $) 76)) (-4337 (($ $) 74)) (-2897 (($ $) 112)) (-3974 (($ $) 88)) (-2877 (($ $) 108)) (-3951 (($ $) 84)) (-2853 (($ $) 104)) (-3927 (($ $) 80)) (-3780 (((-862) $) 62) (($ (-566)) NIL) (($ (-409 (-566))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-2931 (($ $) 118)) (-4009 (($ $) 94)) (-2907 (($ $) 114)) (-3986 (($ $) 90)) (-2954 (($ $) 122)) (-4033 (($ $) 98)) (-3181 (($ $) 124)) (-2834 (($ $) 100)) (-2943 (($ $) 120)) (-4021 (($ $) 96)) (-2920 (($ $) 116)) (-3997 (($ $) 92)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ |#2|) 66) (($ $ $) 69) (($ $ (-409 (-566))) 72)))
+(((-1254 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -3939 (|#1| |#1|)) (-15 -3915 (|#1| |#1|)) (-15 -3964 (|#1| |#1|)) (-15 -3974 (|#1| |#1|)) (-15 -3951 (|#1| |#1|)) (-15 -3927 (|#1| |#1|)) (-15 -3997 (|#1| |#1|)) (-15 -4021 (|#1| |#1|)) (-15 -2834 (|#1| |#1|)) (-15 -4033 (|#1| |#1|)) (-15 -3986 (|#1| |#1|)) (-15 -4009 (|#1| |#1|)) (-15 -2853 (|#1| |#1|)) (-15 -2877 (|#1| |#1|)) (-15 -2897 (|#1| |#1|)) (-15 -2888 (|#1| |#1|)) (-15 -2843 (|#1| |#1|)) (-15 -2865 (|#1| |#1|)) (-15 -2920 (|#1| |#1|)) (-15 -2943 (|#1| |#1|)) (-15 -3181 (|#1| |#1|)) (-15 -2954 (|#1| |#1|)) (-15 -2907 (|#1| |#1|)) (-15 -2931 (|#1| |#1|)) (-15 -3671 (|#1| |#1|)) (-15 -4337 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3780 (|#1| |#2|)) (-15 -3780 (|#1| |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))) (-15 -3015 ((-112) |#1|)) (-15 -3780 ((-862) |#1|))) (-1255 |#2|) (-1049)) (T -1254))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-409 (-566)))) (-15 -3939 (|#1| |#1|)) (-15 -3915 (|#1| |#1|)) (-15 -3964 (|#1| |#1|)) (-15 -3974 (|#1| |#1|)) (-15 -3951 (|#1| |#1|)) (-15 -3927 (|#1| |#1|)) (-15 -3997 (|#1| |#1|)) (-15 -4021 (|#1| |#1|)) (-15 -2834 (|#1| |#1|)) (-15 -4033 (|#1| |#1|)) (-15 -3986 (|#1| |#1|)) (-15 -4009 (|#1| |#1|)) (-15 -2853 (|#1| |#1|)) (-15 -2877 (|#1| |#1|)) (-15 -2897 (|#1| |#1|)) (-15 -2888 (|#1| |#1|)) (-15 -2843 (|#1| |#1|)) (-15 -2865 (|#1| |#1|)) (-15 -2920 (|#1| |#1|)) (-15 -2943 (|#1| |#1|)) (-15 -3181 (|#1| |#1|)) (-15 -2954 (|#1| |#1|)) (-15 -2907 (|#1| |#1|)) (-15 -2931 (|#1| |#1|)) (-15 -3671 (|#1| |#1|)) (-15 -4337 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3780 (|#1| |#2|)) (-15 -3780 (|#1| |#1|)) (-15 -3780 (|#1| (-409 (-566)))) (-15 -3780 (|#1| (-566))) (-15 ** (|#1| |#1| (-771))) (-15 ** (|#1| |#1| (-921))) (-15 -3015 ((-112) |#1|)) (-15 -3780 ((-862) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-2608 (((-644 (-1081)) $) 86)) (-1401 (((-1175) $) 115)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 63 (|has| |#1| (-558)))) (-1968 (($ $) 64 (|has| |#1| (-558)))) (-2644 (((-112) $) 66 (|has| |#1| (-558)))) (-2922 (($ $ (-771)) 110) (($ $ (-771) (-771)) 109)) (-2455 (((-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|))) $) 117)) (-2865 (($ $) 147 (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) 130 (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) 20)) (-2484 (($ $) 129 (|has| |#1| (-38 (-409 (-566)))))) (-2843 (($ $) 146 (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) 131 (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|)))) 167) (($ (-1155 |#1|)) 165)) (-2888 (($ $) 145 (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) 132 (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) 18 T CONST)) (-3645 (($ $) 72)) (-2928 (((-3 $ "failed") $) 37)) (-4298 (($ $) 164)) (-4215 (((-952 |#1|) $ (-771)) 162) (((-952 |#1|) $ (-771) (-771)) 161)) (-4392 (((-112) $) 85)) (-3120 (($) 157 (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-771) $) 112) (((-771) $ (-771)) 111)) (-3466 (((-112) $) 35)) (-1986 (($ $ (-566)) 128 (|has| |#1| (-38 (-409 (-566)))))) (-1644 (($ $ (-921)) 113)) (-2654 (($ (-1 |#1| (-566)) $) 163)) (-1453 (((-112) $) 74)) (-2585 (($ |#1| (-771)) 73) (($ $ (-1081) (-771)) 88) (($ $ (-644 (-1081)) (-644 (-771))) 87)) (-3152 (($ (-1 |#1| |#1|) $) 75)) (-3671 (($ $) 154 (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) 77)) (-3626 ((|#1| $) 78)) (-2402 (((-1157) $) 10)) (-3921 (($ $) 159 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 158 (-2805 (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-959)) (|has| |#1| (-1199)) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-38 (-409 (-566)))))))) (-4056 (((-1119) $) 11)) (-2295 (($ $ (-771)) 107)) (-2997 (((-3 $ "failed") $ $) 62 (|has| |#1| (-558)))) (-4337 (($ $) 155 (|has| |#1| (-38 (-409 (-566)))))) (-2095 (((-1155 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-771)))))) (-4393 ((|#1| $ (-771)) 116) (($ $ $) 93 (|has| (-771) (-1111)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) 101 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-1175) (-771)) 100 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-644 (-1175))) 99 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-1175)) 98 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-771)) 96 (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) 94 (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (-2108 (((-771) $) 76)) (-2897 (($ $) 144 (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) 133 (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) 143 (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) 134 (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) 142 (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) 135 (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) 84)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ (-409 (-566))) 69 (|has| |#1| (-38 (-409 (-566))))) (($ $) 61 (|has| |#1| (-558))) (($ |#1|) 59 (|has| |#1| (-172)))) (-3456 (((-1155 |#1|) $) 166)) (-3756 ((|#1| $ (-771)) 71)) (-3226 (((-3 $ "failed") $) 60 (|has| |#1| (-145)))) (-3996 (((-771)) 32 T CONST)) (-3174 ((|#1| $) 114)) (-3801 (((-112) $ $) 9)) (-2931 (($ $) 153 (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) 141 (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) 65 (|has| |#1| (-558)))) (-2907 (($ $) 152 (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) 140 (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) 151 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) 139 (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-771)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-771)))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) 150 (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) 138 (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) 149 (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) 137 (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) 148 (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) 136 (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) 105 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-1175) (-771)) 104 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-644 (-1175))) 103 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-1175)) 102 (-12 (|has| |#1| (-900 (-1175))) (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (($ $ (-771)) 97 (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) 95 (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 70 (|has| |#1| (-365)))) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ |#1|) 160 (|has| |#1| (-365))) (($ $ $) 156 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 127 (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 80) (($ |#1| $) 79) (($ (-409 (-566)) $) 68 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) 67 (|has| |#1| (-38 (-409 (-566)))))))
(((-1255 |#1|) (-140) (-1049)) (T -1255))
-((-1401 (*1 *1 *2) (-12 (-5 *2 (-1155 (-2 (|:| |k| (-771)) (|:| |c| *3)))) (-4 *3 (-1049)) (-4 *1 (-1255 *3)))) (-3868 (*1 *2 *1) (-12 (-4 *1 (-1255 *3)) (-4 *3 (-1049)) (-5 *2 (-1155 *3)))) (-1401 (*1 *1 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-4 *1 (-1255 *3)))) (-2578 (*1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1049)))) (-2153 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-566))) (-4 *1 (-1255 *3)) (-4 *3 (-1049)))) (-3768 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-1255 *4)) (-4 *4 (-1049)) (-5 *2 (-952 *4)))) (-3768 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-4 *1 (-1255 *4)) (-4 *4 (-1049)) (-5 *2 (-952 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-4117 (*1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566)))))) (-4117 (*1 *1 *1 *2) (-2805 (-12 (-5 *2 (-1175)) (-4 *1 (-1255 *3)) (-4 *3 (-1049)) (-12 (-4 *3 (-29 (-566))) (-4 *3 (-959)) (-4 *3 (-1199)) (-4 *3 (-38 (-409 (-566)))))) (-12 (-5 *2 (-1175)) (-4 *1 (-1255 *3)) (-4 *3 (-1049)) (-12 (|has| *3 (-15 -2540 ((-644 *2) *3))) (|has| *3 (-15 -4117 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566)))))))))
-(-13 (-1242 |t#1| (-771)) (-10 -8 (-15 -1401 ($ (-1155 (-2 (|:| |k| (-771)) (|:| |c| |t#1|))))) (-15 -3868 ((-1155 |t#1|) $)) (-15 -1401 ($ (-1155 |t#1|))) (-15 -2578 ($ $)) (-15 -2153 ($ (-1 |t#1| (-566)) $)) (-15 -3768 ((-952 |t#1|) $ (-771))) (-15 -3768 ((-952 |t#1|) $ (-771) (-771))) (IF (|has| |t#1| (-365)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-409 (-566)))) (PROGN (-15 -4117 ($ $)) (IF (|has| |t#1| (-15 -4117 (|t#1| |t#1| (-1175)))) (IF (|has| |t#1| (-15 -2540 ((-644 (-1175)) |t#1|))) (-15 -4117 ($ $ (-1175))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1199)) (IF (|has| |t#1| (-959)) (IF (|has| |t#1| (-29 (-566))) (-15 -4117 ($ $ (-1175))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1002)) (-6 (-1199))) |%noBranch|)))
+((-1903 (*1 *1 *2) (-12 (-5 *2 (-1155 (-2 (|:| |k| (-771)) (|:| |c| *3)))) (-4 *3 (-1049)) (-4 *1 (-1255 *3)))) (-3456 (*1 *2 *1) (-12 (-4 *1 (-1255 *3)) (-4 *3 (-1049)) (-5 *2 (-1155 *3)))) (-1903 (*1 *1 *2) (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-4 *1 (-1255 *3)))) (-4298 (*1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1049)))) (-2654 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-566))) (-4 *1 (-1255 *3)) (-4 *3 (-1049)))) (-4215 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-1255 *4)) (-4 *4 (-1049)) (-5 *2 (-952 *4)))) (-4215 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-4 *1 (-1255 *4)) (-4 *4 (-1049)) (-5 *2 (-952 *4)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))) (-3921 (*1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566)))))) (-3921 (*1 *1 *1 *2) (-2805 (-12 (-5 *2 (-1175)) (-4 *1 (-1255 *3)) (-4 *3 (-1049)) (-12 (-4 *3 (-29 (-566))) (-4 *3 (-959)) (-4 *3 (-1199)) (-4 *3 (-38 (-409 (-566)))))) (-12 (-5 *2 (-1175)) (-4 *1 (-1255 *3)) (-4 *3 (-1049)) (-12 (|has| *3 (-15 -2608 ((-644 *2) *3))) (|has| *3 (-15 -3921 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566)))))))))
+(-13 (-1242 |t#1| (-771)) (-10 -8 (-15 -1903 ($ (-1155 (-2 (|:| |k| (-771)) (|:| |c| |t#1|))))) (-15 -3456 ((-1155 |t#1|) $)) (-15 -1903 ($ (-1155 |t#1|))) (-15 -4298 ($ $)) (-15 -2654 ($ (-1 |t#1| (-566)) $)) (-15 -4215 ((-952 |t#1|) $ (-771))) (-15 -4215 ((-952 |t#1|) $ (-771) (-771))) (IF (|has| |t#1| (-365)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-409 (-566)))) (PROGN (-15 -3921 ($ $)) (IF (|has| |t#1| (-15 -3921 (|t#1| |t#1| (-1175)))) (IF (|has| |t#1| (-15 -2608 ((-644 (-1175)) |t#1|))) (-15 -3921 ($ $ (-1175))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1199)) (IF (|has| |t#1| (-959)) (IF (|has| |t#1| (-29 (-566))) (-15 -3921 ($ $ (-1175))) |%noBranch|) |%noBranch|) |%noBranch|) (-6 (-1002)) (-6 (-1199))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-771)) . T) ((-25) . T) ((-38 #1=(-409 (-566))) |has| |#1| (-38 (-409 (-566)))) ((-38 |#1|) |has| |#1| (-172)) ((-38 $) |has| |#1| (-558)) ((-35) |has| |#1| (-38 (-409 (-566)))) ((-95) |has| |#1| (-38 (-409 (-566)))) ((-102) . T) ((-111 #1# #1#) |has| |#1| (-38 (-409 (-566)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-131) . T) ((-145) |has| |#1| (-145)) ((-147) |has| |#1| (-147)) ((-616 #1#) |has| |#1| (-38 (-409 (-566)))) ((-616 (-566)) . T) ((-616 |#1|) |has| |#1| (-172)) ((-616 $) |has| |#1| (-558)) ((-613 (-862)) . T) ((-172) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-233) |has| |#1| (-15 * (|#1| (-771) |#1|))) ((-285) |has| |#1| (-38 (-409 (-566)))) ((-287 $ $) |has| (-771) (-1111)) ((-291) |has| |#1| (-558)) ((-495) |has| |#1| (-38 (-409 (-566)))) ((-558) |has| |#1| (-558)) ((-646 #1#) |has| |#1| (-38 (-409 (-566)))) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #1#) |has| |#1| (-38 (-409 (-566)))) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #1#) |has| |#1| (-38 (-409 (-566)))) ((-640 |#1|) |has| |#1| (-172)) ((-640 $) |has| |#1| (-558)) ((-717 #1#) |has| |#1| (-38 (-409 (-566)))) ((-717 |#1|) |has| |#1| (-172)) ((-717 $) |has| |#1| (-558)) ((-726) . T) ((-900 (-1175)) -12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175)))) ((-973 |#1| #0# (-1081)) . T) ((-1002) |has| |#1| (-38 (-409 (-566)))) ((-1051 #1#) |has| |#1| (-38 (-409 (-566)))) ((-1051 |#1|) . T) ((-1051 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1056 #1#) |has| |#1| (-38 (-409 (-566)))) ((-1056 |#1|) . T) ((-1056 $) -2805 (|has| |#1| (-558)) (|has| |#1| (-172))) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1199) |has| |#1| (-38 (-409 (-566)))) ((-1202) |has| |#1| (-38 (-409 (-566)))) ((-1242 |#1| #0#) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-2540 (((-644 (-1081)) $) NIL)) (-1353 (((-1175) $) 93)) (-3504 (((-1237 |#2| |#1|) $ (-771)) 74)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-3653 (($ $) NIL (|has| |#1| (-558)))) (-2152 (((-112) $) 145 (|has| |#1| (-558)))) (-1881 (($ $ (-771)) 130) (($ $ (-771) (-771)) 133)) (-1530 (((-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|))) $) 43)) (-3235 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3102 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4126 (((-3 $ "failed") $ $) NIL)) (-2402 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3215 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3076 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1401 (($ (-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|)))) 53) (($ (-1155 |#1|)) NIL)) (-3259 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3123 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2342 (($) NIL T CONST)) (-2186 (($ $) 137)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2578 (($ $) 143)) (-3768 (((-952 |#1|) $ (-771)) 64) (((-952 |#1|) $ (-771) (-771)) 66)) (-4039 (((-112) $) NIL)) (-3035 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2716 (((-771) $) NIL) (((-771) $ (-771)) NIL)) (-2741 (((-112) $) NIL)) (-1841 (($ $) 120)) (-3979 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2924 (($ (-566) (-566) $) 139)) (-3432 (($ $ (-921)) 142)) (-2153 (($ (-1 |#1| (-566)) $) 114)) (-4367 (((-112) $) NIL)) (-2519 (($ |#1| (-771)) 16) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3077 (($ (-1 |#1| |#1|) $) 101)) (-3668 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3545 (($ $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-2764 (($ $) 118)) (-1584 (($ $) 116)) (-4013 (($ (-566) (-566) $) 141)) (-4117 (($ $) 153 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 159 (-2805 (-12 (|has| |#1| (-15 -4117 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2540 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 154 (|has| |#1| (-38 (-409 (-566)))))) (-4033 (((-1119) $) NIL)) (-1352 (($ $ (-566) (-566)) 124)) (-1938 (($ $ (-771)) 126)) (-2972 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-3613 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2146 (($ $) 122)) (-2070 (((-1155 |#1|) $ |#1|) 103 (|has| |#1| (-15 ** (|#1| |#1| (-771)))))) (-4386 ((|#1| $ (-771)) 98) (($ $ $) 135 (|has| (-771) (-1111)))) (-2862 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) 111 (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) 105 (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $ (-1260 |#2|)) 106)) (-3992 (((-771) $) NIL)) (-3267 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3133 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3248 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3112 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3223 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3089 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1973 (($ $) 128)) (-2512 (((-862) $) NIL) (($ (-566)) 26) (($ (-409 (-566))) 151 (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558))) (($ |#1|) 25 (|has| |#1| (-172))) (($ (-1237 |#2| |#1|)) 84) (($ (-1260 |#2|)) 22)) (-3868 (((-1155 |#1|) $) NIL)) (-2022 ((|#1| $ (-771)) 97)) (-3842 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3795 (((-771)) NIL T CONST)) (-2420 ((|#1| $) 94)) (-3122 (((-112) $ $) NIL)) (-3302 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3172 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1634 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3279 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3146 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3323 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3194 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3645 ((|#1| $ (-771)) 92 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-771)))) (|has| |#1| (-15 -2512 (|#1| (-1175))))))) (-1382 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3205 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3313 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3185 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3291 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3160 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2485 (($) 18 T CONST)) (-2495 (($) 13 T CONST)) (-2840 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (-2940 (((-112) $ $) NIL)) (-3061 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) 110)) (-3034 (($ $ $) 20)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ |#1|) 148 (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 109) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
-(((-1256 |#1| |#2| |#3|) (-13 (-1255 |#1|) (-10 -8 (-15 -2512 ($ (-1237 |#2| |#1|))) (-15 -3504 ((-1237 |#2| |#1|) $ (-771))) (-15 -2512 ($ (-1260 |#2|))) (-15 -2862 ($ $ (-1260 |#2|))) (-15 -1584 ($ $)) (-15 -2764 ($ $)) (-15 -1841 ($ $)) (-15 -2146 ($ $)) (-15 -1352 ($ $ (-566) (-566))) (-15 -2186 ($ $)) (-15 -2924 ($ (-566) (-566) $)) (-15 -4013 ($ (-566) (-566) $)) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1256))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-1237 *4 *3)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3) (-5 *1 (-1256 *3 *4 *5)))) (-3504 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1237 *5 *4)) (-5 *1 (-1256 *4 *5 *6)) (-4 *4 (-1049)) (-14 *5 (-1175)) (-14 *6 *4))) (-2512 (*1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-2862 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-1584 (*1 *1 *1) (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175)) (-14 *4 *2))) (-2764 (*1 *1 *1) (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175)) (-14 *4 *2))) (-1841 (*1 *1 *1) (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175)) (-14 *4 *2))) (-2146 (*1 *1 *1) (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175)) (-14 *4 *2))) (-1352 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3))) (-2186 (*1 *1 *1) (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175)) (-14 *4 *2))) (-2924 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3))) (-4013 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3))) (-4117 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
-(-13 (-1255 |#1|) (-10 -8 (-15 -2512 ($ (-1237 |#2| |#1|))) (-15 -3504 ((-1237 |#2| |#1|) $ (-771))) (-15 -2512 ($ (-1260 |#2|))) (-15 -2862 ($ $ (-1260 |#2|))) (-15 -1584 ($ $)) (-15 -2764 ($ $)) (-15 -1841 ($ $)) (-15 -2146 ($ $)) (-15 -1352 ($ $ (-566) (-566))) (-15 -2186 ($ $)) (-15 -2924 ($ (-566) (-566) $)) (-15 -4013 ($ (-566) (-566) $)) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -4117 ($ $ (-1260 |#2|))) |%noBranch|)))
-((-3854 (((-1 (-1155 |#1|) (-644 (-1155 |#1|))) (-1 |#2| (-644 |#2|))) 24)) (-2890 (((-1 (-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-2600 (((-1 (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2|)) 13)) (-1873 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-4161 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-3575 ((|#2| (-1 |#2| (-644 |#2|)) (-644 |#1|)) 60)) (-1664 (((-644 |#2|) (-644 |#1|) (-644 (-1 |#2| (-644 |#2|)))) 66)) (-2640 ((|#2| |#2| |#2|) 43)))
-(((-1257 |#1| |#2|) (-10 -7 (-15 -2600 ((-1 (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2|))) (-15 -2890 ((-1 (-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -3854 ((-1 (-1155 |#1|) (-644 (-1155 |#1|))) (-1 |#2| (-644 |#2|)))) (-15 -2640 (|#2| |#2| |#2|)) (-15 -4161 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -1873 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3575 (|#2| (-1 |#2| (-644 |#2|)) (-644 |#1|))) (-15 -1664 ((-644 |#2|) (-644 |#1|) (-644 (-1 |#2| (-644 |#2|)))))) (-38 (-409 (-566))) (-1255 |#1|)) (T -1257))
-((-1664 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 (-1 *6 (-644 *6)))) (-4 *5 (-38 (-409 (-566)))) (-4 *6 (-1255 *5)) (-5 *2 (-644 *6)) (-5 *1 (-1257 *5 *6)))) (-3575 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-644 *2))) (-5 *4 (-644 *5)) (-4 *5 (-38 (-409 (-566)))) (-4 *2 (-1255 *5)) (-5 *1 (-1257 *5 *2)))) (-1873 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1255 *4)) (-5 *1 (-1257 *4 *2)) (-4 *4 (-38 (-409 (-566)))))) (-4161 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1255 *4)) (-5 *1 (-1257 *4 *2)) (-4 *4 (-38 (-409 (-566)))))) (-2640 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1257 *3 *2)) (-4 *2 (-1255 *3)))) (-3854 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-644 *5))) (-4 *5 (-1255 *4)) (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-1 (-1155 *4) (-644 (-1155 *4)))) (-5 *1 (-1257 *4 *5)))) (-2890 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1255 *4)) (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-1 (-1155 *4) (-1155 *4) (-1155 *4))) (-5 *1 (-1257 *4 *5)))) (-2600 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1255 *4)) (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-1 (-1155 *4) (-1155 *4))) (-5 *1 (-1257 *4 *5)))))
-(-10 -7 (-15 -2600 ((-1 (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2|))) (-15 -2890 ((-1 (-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -3854 ((-1 (-1155 |#1|) (-644 (-1155 |#1|))) (-1 |#2| (-644 |#2|)))) (-15 -2640 (|#2| |#2| |#2|)) (-15 -4161 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -1873 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3575 (|#2| (-1 |#2| (-644 |#2|)) (-644 |#1|))) (-15 -1664 ((-644 |#2|) (-644 |#1|) (-644 (-1 |#2| (-644 |#2|))))))
-((-1782 ((|#2| |#4| (-771)) 34)) (-3724 ((|#4| |#2|) 29)) (-1671 ((|#4| (-409 |#2|)) 53 (|has| |#1| (-558)))) (-2720 (((-1 |#4| (-644 |#4|)) |#3|) 46)))
-(((-1258 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3724 (|#4| |#2|)) (-15 -1782 (|#2| |#4| (-771))) (-15 -2720 ((-1 |#4| (-644 |#4|)) |#3|)) (IF (|has| |#1| (-558)) (-15 -1671 (|#4| (-409 |#2|))) |%noBranch|)) (-1049) (-1240 |#1|) (-656 |#2|) (-1255 |#1|)) (T -1258))
-((-1671 (*1 *2 *3) (-12 (-5 *3 (-409 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-558)) (-4 *4 (-1049)) (-4 *2 (-1255 *4)) (-5 *1 (-1258 *4 *5 *6 *2)) (-4 *6 (-656 *5)))) (-2720 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-1240 *4)) (-5 *2 (-1 *6 (-644 *6))) (-5 *1 (-1258 *4 *5 *3 *6)) (-4 *3 (-656 *5)) (-4 *6 (-1255 *4)))) (-1782 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-1049)) (-4 *2 (-1240 *5)) (-5 *1 (-1258 *5 *2 *6 *3)) (-4 *6 (-656 *2)) (-4 *3 (-1255 *5)))) (-3724 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *3 (-1240 *4)) (-4 *2 (-1255 *4)) (-5 *1 (-1258 *4 *3 *5 *2)) (-4 *5 (-656 *3)))))
-(-10 -7 (-15 -3724 (|#4| |#2|)) (-15 -1782 (|#2| |#4| (-771))) (-15 -2720 ((-1 |#4| (-644 |#4|)) |#3|)) (IF (|has| |#1| (-558)) (-15 -1671 (|#4| (-409 |#2|))) |%noBranch|))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-2608 (((-644 (-1081)) $) NIL)) (-1401 (((-1175) $) 93)) (-4223 (((-1237 |#2| |#1|) $ (-771)) 74)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) NIL (|has| |#1| (-558)))) (-1968 (($ $) NIL (|has| |#1| (-558)))) (-2644 (((-112) $) 145 (|has| |#1| (-558)))) (-2922 (($ $ (-771)) 130) (($ $ (-771) (-771)) 133)) (-2455 (((-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|))) $) 43)) (-2865 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3939 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4014 (((-3 $ "failed") $ $) NIL)) (-2484 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2843 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3915 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1903 (($ (-1155 (-2 (|:| |k| (-771)) (|:| |c| |#1|)))) 53) (($ (-1155 |#1|)) NIL)) (-2888 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3964 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3877 (($) NIL T CONST)) (-2919 (($ $) 137)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-4298 (($ $) 143)) (-4215 (((-952 |#1|) $ (-771)) 64) (((-952 |#1|) $ (-771) (-771)) 66)) (-4392 (((-112) $) NIL)) (-3120 (($) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3227 (((-771) $) NIL) (((-771) $ (-771)) NIL)) (-3466 (((-112) $) NIL)) (-2534 (($ $) 120)) (-1986 (($ $ (-566)) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1608 (($ (-566) (-566) $) 139)) (-1644 (($ $ (-921)) 142)) (-2654 (($ (-1 |#1| (-566)) $) 114)) (-1453 (((-112) $) NIL)) (-2585 (($ |#1| (-771)) 16) (($ $ (-1081) (-771)) NIL) (($ $ (-644 (-1081)) (-644 (-771))) NIL)) (-3152 (($ (-1 |#1| |#1|) $) 101)) (-3671 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3614 (($ $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-3675 (($ $) 118)) (-1786 (($ $) 116)) (-2303 (($ (-566) (-566) $) 141)) (-3921 (($ $) 153 (|has| |#1| (-38 (-409 (-566))))) (($ $ (-1175)) 159 (-2805 (-12 (|has| |#1| (-15 -3921 (|#1| |#1| (-1175)))) (|has| |#1| (-15 -2608 ((-644 (-1175)) |#1|))) (|has| |#1| (-38 (-409 (-566))))) (-12 (|has| |#1| (-29 (-566))) (|has| |#1| (-38 (-409 (-566)))) (|has| |#1| (-959)) (|has| |#1| (-1199))))) (($ $ (-1260 |#2|)) 154 (|has| |#1| (-38 (-409 (-566)))))) (-4056 (((-1119) $) NIL)) (-3398 (($ $ (-566) (-566)) 124)) (-2295 (($ $ (-771)) 126)) (-2997 (((-3 $ "failed") $ $) NIL (|has| |#1| (-558)))) (-4337 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2581 (($ $) 122)) (-2095 (((-1155 |#1|) $ |#1|) 103 (|has| |#1| (-15 ** (|#1| |#1| (-771)))))) (-4393 ((|#1| $ (-771)) 98) (($ $ $) 135 (|has| (-771) (-1111)))) (-2578 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) 111 (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) 105 (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $ (-1260 |#2|)) 106)) (-2108 (((-771) $) NIL)) (-2897 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3974 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2877 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3951 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2853 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3927 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-1377 (($ $) 128)) (-3780 (((-862) $) NIL) (($ (-566)) 26) (($ (-409 (-566))) 151 (|has| |#1| (-38 (-409 (-566))))) (($ $) NIL (|has| |#1| (-558))) (($ |#1|) 25 (|has| |#1| (-172))) (($ (-1237 |#2| |#1|)) 84) (($ (-1260 |#2|)) 22)) (-3456 (((-1155 |#1|) $) NIL)) (-3756 ((|#1| $ (-771)) 97)) (-3226 (((-3 $ "failed") $) NIL (|has| |#1| (-145)))) (-3996 (((-771)) NIL T CONST)) (-3174 ((|#1| $) 94)) (-3801 (((-112) $ $) NIL)) (-2931 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4009 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2278 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2907 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3986 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2954 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4033 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3651 ((|#1| $ (-771)) 92 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-771)))) (|has| |#1| (-15 -3780 (|#1| (-1175))))))) (-3181 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2834 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2943 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-4021 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2920 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-3997 (($ $) NIL (|has| |#1| (-38 (-409 (-566)))))) (-2493 (($) 18 T CONST)) (-4333 (($) 13 T CONST)) (-2876 (($ $ (-644 (-1175)) (-644 (-771))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175) (-771)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-644 (-1175))) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-1175)) NIL (-12 (|has| |#1| (-15 * (|#1| (-771) |#1|))) (|has| |#1| (-900 (-1175))))) (($ $ (-771)) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|)))) (($ $) NIL (|has| |#1| (-15 * (|#1| (-771) |#1|))))) (-2950 (((-112) $ $) NIL)) (-3062 (($ $ |#1|) NIL (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) 110)) (-3040 (($ $ $) 20)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL) (($ $ |#1|) 148 (|has| |#1| (-365))) (($ $ $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 109) (($ (-409 (-566)) $) NIL (|has| |#1| (-38 (-409 (-566))))) (($ $ (-409 (-566))) NIL (|has| |#1| (-38 (-409 (-566)))))))
+(((-1256 |#1| |#2| |#3|) (-13 (-1255 |#1|) (-10 -8 (-15 -3780 ($ (-1237 |#2| |#1|))) (-15 -4223 ((-1237 |#2| |#1|) $ (-771))) (-15 -3780 ($ (-1260 |#2|))) (-15 -2578 ($ $ (-1260 |#2|))) (-15 -1786 ($ $)) (-15 -3675 ($ $)) (-15 -2534 ($ $)) (-15 -2581 ($ $)) (-15 -3398 ($ $ (-566) (-566))) (-15 -2919 ($ $)) (-15 -1608 ($ (-566) (-566) $)) (-15 -2303 ($ (-566) (-566) $)) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|))) (-1049) (-1175) |#1|) (T -1256))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-1237 *4 *3)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3) (-5 *1 (-1256 *3 *4 *5)))) (-4223 (*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1237 *5 *4)) (-5 *1 (-1256 *4 *5 *6)) (-4 *4 (-1049)) (-14 *5 (-1175)) (-14 *6 *4))) (-3780 (*1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-2578 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049)) (-14 *5 *3))) (-1786 (*1 *1 *1) (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175)) (-14 *4 *2))) (-3675 (*1 *1 *1) (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175)) (-14 *4 *2))) (-2534 (*1 *1 *1) (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175)) (-14 *4 *2))) (-2581 (*1 *1 *1) (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175)) (-14 *4 *2))) (-3398 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3))) (-2919 (*1 *1 *1) (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175)) (-14 *4 *2))) (-1608 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3))) (-2303 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-1175)) (-14 *5 *3))) (-3921 (*1 *1 *1 *2) (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
+(-13 (-1255 |#1|) (-10 -8 (-15 -3780 ($ (-1237 |#2| |#1|))) (-15 -4223 ((-1237 |#2| |#1|) $ (-771))) (-15 -3780 ($ (-1260 |#2|))) (-15 -2578 ($ $ (-1260 |#2|))) (-15 -1786 ($ $)) (-15 -3675 ($ $)) (-15 -2534 ($ $)) (-15 -2581 ($ $)) (-15 -3398 ($ $ (-566) (-566))) (-15 -2919 ($ $)) (-15 -1608 ($ (-566) (-566) $)) (-15 -2303 ($ (-566) (-566) $)) (IF (|has| |#1| (-38 (-409 (-566)))) (-15 -3921 ($ $ (-1260 |#2|))) |%noBranch|)))
+((-3338 (((-1 (-1155 |#1|) (-644 (-1155 |#1|))) (-1 |#2| (-644 |#2|))) 24)) (-4367 (((-1 (-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-1402 (((-1 (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2|)) 13)) (-2845 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-3148 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-3648 ((|#2| (-1 |#2| (-644 |#2|)) (-644 |#1|)) 60)) (-1313 (((-644 |#2|) (-644 |#1|) (-644 (-1 |#2| (-644 |#2|)))) 66)) (-1818 ((|#2| |#2| |#2|) 43)))
+(((-1257 |#1| |#2|) (-10 -7 (-15 -1402 ((-1 (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2|))) (-15 -4367 ((-1 (-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -3338 ((-1 (-1155 |#1|) (-644 (-1155 |#1|))) (-1 |#2| (-644 |#2|)))) (-15 -1818 (|#2| |#2| |#2|)) (-15 -3148 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2845 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3648 (|#2| (-1 |#2| (-644 |#2|)) (-644 |#1|))) (-15 -1313 ((-644 |#2|) (-644 |#1|) (-644 (-1 |#2| (-644 |#2|)))))) (-38 (-409 (-566))) (-1255 |#1|)) (T -1257))
+((-1313 (*1 *2 *3 *4) (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 (-1 *6 (-644 *6)))) (-4 *5 (-38 (-409 (-566)))) (-4 *6 (-1255 *5)) (-5 *2 (-644 *6)) (-5 *1 (-1257 *5 *6)))) (-3648 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 (-644 *2))) (-5 *4 (-644 *5)) (-4 *5 (-38 (-409 (-566)))) (-4 *2 (-1255 *5)) (-5 *1 (-1257 *5 *2)))) (-2845 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1255 *4)) (-5 *1 (-1257 *4 *2)) (-4 *4 (-38 (-409 (-566)))))) (-3148 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1255 *4)) (-5 *1 (-1257 *4 *2)) (-4 *4 (-38 (-409 (-566)))))) (-1818 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1257 *3 *2)) (-4 *2 (-1255 *3)))) (-3338 (*1 *2 *3) (-12 (-5 *3 (-1 *5 (-644 *5))) (-4 *5 (-1255 *4)) (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-1 (-1155 *4) (-644 (-1155 *4)))) (-5 *1 (-1257 *4 *5)))) (-4367 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1255 *4)) (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-1 (-1155 *4) (-1155 *4) (-1155 *4))) (-5 *1 (-1257 *4 *5)))) (-1402 (*1 *2 *3) (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1255 *4)) (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-1 (-1155 *4) (-1155 *4))) (-5 *1 (-1257 *4 *5)))))
+(-10 -7 (-15 -1402 ((-1 (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2|))) (-15 -4367 ((-1 (-1155 |#1|) (-1155 |#1|) (-1155 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -3338 ((-1 (-1155 |#1|) (-644 (-1155 |#1|))) (-1 |#2| (-644 |#2|)))) (-15 -1818 (|#2| |#2| |#2|)) (-15 -3148 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -2845 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -3648 (|#2| (-1 |#2| (-644 |#2|)) (-644 |#1|))) (-15 -1313 ((-644 |#2|) (-644 |#1|) (-644 (-1 |#2| (-644 |#2|))))))
+((-3155 ((|#2| |#4| (-771)) 34)) (-1439 ((|#4| |#2|) 29)) (-1392 ((|#4| (-409 |#2|)) 53 (|has| |#1| (-558)))) (-3260 (((-1 |#4| (-644 |#4|)) |#3|) 46)))
+(((-1258 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1439 (|#4| |#2|)) (-15 -3155 (|#2| |#4| (-771))) (-15 -3260 ((-1 |#4| (-644 |#4|)) |#3|)) (IF (|has| |#1| (-558)) (-15 -1392 (|#4| (-409 |#2|))) |%noBranch|)) (-1049) (-1240 |#1|) (-656 |#2|) (-1255 |#1|)) (T -1258))
+((-1392 (*1 *2 *3) (-12 (-5 *3 (-409 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-558)) (-4 *4 (-1049)) (-4 *2 (-1255 *4)) (-5 *1 (-1258 *4 *5 *6 *2)) (-4 *6 (-656 *5)))) (-3260 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *5 (-1240 *4)) (-5 *2 (-1 *6 (-644 *6))) (-5 *1 (-1258 *4 *5 *3 *6)) (-4 *3 (-656 *5)) (-4 *6 (-1255 *4)))) (-3155 (*1 *2 *3 *4) (-12 (-5 *4 (-771)) (-4 *5 (-1049)) (-4 *2 (-1240 *5)) (-5 *1 (-1258 *5 *2 *6 *3)) (-4 *6 (-656 *2)) (-4 *3 (-1255 *5)))) (-1439 (*1 *2 *3) (-12 (-4 *4 (-1049)) (-4 *3 (-1240 *4)) (-4 *2 (-1255 *4)) (-5 *1 (-1258 *4 *3 *5 *2)) (-4 *5 (-656 *3)))))
+(-10 -7 (-15 -1439 (|#4| |#2|)) (-15 -3155 (|#2| |#4| (-771))) (-15 -3260 ((-1 |#4| (-644 |#4|)) |#3|)) (IF (|has| |#1| (-558)) (-15 -1392 (|#4| (-409 |#2|))) |%noBranch|))
NIL
(((-1259) (-140)) (T -1259))
NIL
-(-13 (-10 -7 (-6 -3612)))
-((-2985 (((-112) $ $) NIL)) (-1353 (((-1175)) 12)) (-2878 (((-1157) $) 18)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 11) (((-1175) $) 8)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) 15)))
-(((-1260 |#1|) (-13 (-1099) (-613 (-1175)) (-10 -8 (-15 -2512 ((-1175) $)) (-15 -1353 ((-1175))))) (-1175)) (T -1260))
-((-2512 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-1260 *3)) (-14 *3 *2))) (-1353 (*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1260 *3)) (-14 *3 *2))))
-(-13 (-1099) (-613 (-1175)) (-10 -8 (-15 -2512 ((-1175) $)) (-15 -1353 ((-1175)))))
-((-2140 (($ (-771)) 19)) (-3643 (((-689 |#2|) $ $) 41)) (-2221 ((|#2| $) 51)) (-3822 ((|#2| $) 50)) (-1452 ((|#2| $ $) 36)) (-2689 (($ $ $) 47)) (-3047 (($ $) 23) (($ $ $) 29)) (-3034 (($ $ $) 15)) (* (($ (-566) $) 26) (($ |#2| $) 32) (($ $ |#2|) 31)))
-(((-1261 |#1| |#2|) (-10 -8 (-15 -2221 (|#2| |#1|)) (-15 -3822 (|#2| |#1|)) (-15 -2689 (|#1| |#1| |#1|)) (-15 -3643 ((-689 |#2|) |#1| |#1|)) (-15 -1452 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 -2140 (|#1| (-771))) (-15 -3034 (|#1| |#1| |#1|))) (-1262 |#2|) (-1214)) (T -1261))
+(-13 (-10 -7 (-6 -3618)))
+((-3009 (((-112) $ $) NIL)) (-1401 (((-1175)) 12)) (-2402 (((-1157) $) 18)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 11) (((-1175) $) 8)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) 15)))
+(((-1260 |#1|) (-13 (-1099) (-613 (-1175)) (-10 -8 (-15 -3780 ((-1175) $)) (-15 -1401 ((-1175))))) (-1175)) (T -1260))
+((-3780 (*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-1260 *3)) (-14 *3 *2))) (-1401 (*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1260 *3)) (-14 *3 *2))))
+(-13 (-1099) (-613 (-1175)) (-10 -8 (-15 -3780 ((-1175) $)) (-15 -1401 ((-1175)))))
+((-2181 (($ (-771)) 19)) (-3774 (((-689 |#2|) $ $) 41)) (-2029 ((|#2| $) 51)) (-3945 ((|#2| $) 50)) (-4086 ((|#2| $ $) 36)) (-4173 (($ $ $) 47)) (-3051 (($ $) 23) (($ $ $) 29)) (-3040 (($ $ $) 15)) (* (($ (-566) $) 26) (($ |#2| $) 32) (($ $ |#2|) 31)))
+(((-1261 |#1| |#2|) (-10 -8 (-15 -2029 (|#2| |#1|)) (-15 -3945 (|#2| |#1|)) (-15 -4173 (|#1| |#1| |#1|)) (-15 -3774 ((-689 |#2|) |#1| |#1|)) (-15 -4086 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 -2181 (|#1| (-771))) (-15 -3040 (|#1| |#1| |#1|))) (-1262 |#2|) (-1214)) (T -1261))
NIL
-(-10 -8 (-15 -2221 (|#2| |#1|)) (-15 -3822 (|#2| |#1|)) (-15 -2689 (|#1| |#1| |#1|)) (-15 -3643 ((-689 |#2|) |#1| |#1|)) (-15 -1452 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 -3047 (|#1| |#1| |#1|)) (-15 -3047 (|#1| |#1|)) (-15 -2140 (|#1| (-771))) (-15 -3034 (|#1| |#1| |#1|)))
-((-2985 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2140 (($ (-771)) 113 (|has| |#1| (-23)))) (-1537 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4418))) (($ $) 89 (-12 (|has| |#1| (-850)) (|has| $ (-6 -4418))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) 8)) (-3874 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4417)))) (-2342 (($) 7 T CONST)) (-2736 (($ $) 91 (|has| $ (-6 -4418)))) (-3852 (($ $) 101)) (-4093 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-2651 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) 52)) (-3968 (((-566) (-1 (-112) |#1|) $) 98) (((-566) |#1| $) 97 (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) 96 (|has| |#1| (-1099)))) (-3372 (((-644 |#1|) $) 31 (|has| $ (-6 -4417)))) (-3643 (((-689 |#1|) $ $) 106 (|has| |#1| (-1049)))) (-4257 (($ (-771) |#1|) 70)) (-2744 (((-112) $ (-771)) 9)) (-2160 (((-566) $) 44 (|has| (-566) (-850)))) (-1439 (($ $ $) 88 (|has| |#1| (-850)))) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) 30 (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-1544 (((-566) $) 45 (|has| (-566) (-850)))) (-3059 (($ $ $) 87 (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2221 ((|#1| $) 103 (-12 (|has| |#1| (-1049)) (|has| |#1| (-1002))))) (-3882 (((-112) $ (-771)) 10)) (-3822 ((|#1| $) 104 (-12 (|has| |#1| (-1049)) (|has| |#1| (-1002))))) (-2878 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-1922 (((-644 (-566)) $) 47)) (-2040 (((-112) (-566) $) 48)) (-4033 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4062 ((|#1| $) 43 (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-1720 (($ $ |#1|) 42 (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) 14)) (-4326 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) 49)) (-4194 (((-112) $) 11)) (-2954 (($) 12)) (-4386 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-1452 ((|#1| $ $) 107 (|has| |#1| (-1049)))) (-2201 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-2689 (($ $ $) 105 (|has| |#1| (-1049)))) (-4044 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4417))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4417))))) (-3245 (($ $ $ (-566)) 92 (|has| $ (-6 -4418)))) (-3895 (($ $) 13)) (-3134 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 71)) (-3704 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-2512 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) 85 (|has| |#1| (-850)))) (-2974 (((-112) $ $) 84 (|has| |#1| (-850)))) (-2940 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2987 (((-112) $ $) 86 (|has| |#1| (-850)))) (-2962 (((-112) $ $) 83 (|has| |#1| (-850)))) (-3047 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-3034 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-566) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-726))) (($ $ |#1|) 108 (|has| |#1| (-726)))) (-2997 (((-771) $) 6 (|has| $ (-6 -4417)))))
+(-10 -8 (-15 -2029 (|#2| |#1|)) (-15 -3945 (|#2| |#1|)) (-15 -4173 (|#1| |#1| |#1|)) (-15 -3774 ((-689 |#2|) |#1| |#1|)) (-15 -4086 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-566) |#1|)) (-15 -3051 (|#1| |#1| |#1|)) (-15 -3051 (|#1| |#1|)) (-15 -2181 (|#1| (-771))) (-15 -3040 (|#1| |#1| |#1|)))
+((-3009 (((-112) $ $) 19 (|has| |#1| (-1099)))) (-2181 (($ (-771)) 113 (|has| |#1| (-23)))) (-2518 (((-1269) $ (-566) (-566)) 41 (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4415))) (($ $) 89 (-12 (|has| |#1| (-850)) (|has| $ (-6 -4415))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) 8)) (-3916 ((|#1| $ (-566) |#1|) 53 (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) 59 (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4414)))) (-3877 (($) 7 T CONST)) (-3416 (($ $) 91 (|has| $ (-6 -4415)))) (-3507 (($ $) 101)) (-4133 (($ $) 79 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2661 (($ |#1| $) 78 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) 54 (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) 52)) (-4015 (((-566) (-1 (-112) |#1|) $) 98) (((-566) |#1| $) 97 (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) 96 (|has| |#1| (-1099)))) (-3799 (((-644 |#1|) $) 31 (|has| $ (-6 -4414)))) (-3774 (((-689 |#1|) $ $) 106 (|has| |#1| (-1049)))) (-4278 (($ (-771) |#1|) 70)) (-3501 (((-112) $ (-771)) 9)) (-2712 (((-566) $) 44 (|has| (-566) (-850)))) (-1945 (($ $ $) 88 (|has| |#1| (-850)))) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) 30 (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-2579 (((-566) $) 45 (|has| (-566) (-850)))) (-2709 (($ $ $) 87 (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2029 ((|#1| $) 103 (-12 (|has| |#1| (-1049)) (|has| |#1| (-1002))))) (-3582 (((-112) $ (-771)) 10)) (-3945 ((|#1| $) 104 (-12 (|has| |#1| (-1049)) (|has| |#1| (-1002))))) (-2402 (((-1157) $) 22 (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) 61) (($ $ $ (-566)) 60)) (-2140 (((-644 (-566)) $) 47)) (-3935 (((-112) (-566) $) 48)) (-4056 (((-1119) $) 21 (|has| |#1| (-1099)))) (-4101 ((|#1| $) 43 (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-3750 (($ $ |#1|) 42 (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) 27 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) 26 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) 25 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) 24 (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) 14)) (-2298 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) 49)) (-3461 (((-112) $) 11)) (-1793 (($) 12)) (-4393 ((|#1| $ (-566) |#1|) 51) ((|#1| $ (-566)) 50) (($ $ (-1231 (-566))) 64)) (-4086 ((|#1| $ $) 107 (|has| |#1| (-1049)))) (-2215 (($ $ (-566)) 63) (($ $ (-1231 (-566))) 62)) (-4173 (($ $ $) 105 (|has| |#1| (-1049)))) (-4067 (((-771) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4414))) (((-771) |#1| $) 29 (-12 (|has| |#1| (-1099)) (|has| $ (-6 -4414))))) (-3610 (($ $ $ (-566)) 92 (|has| $ (-6 -4415)))) (-3940 (($ $) 13)) (-3204 (((-538) $) 80 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 71)) (-3727 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-644 $)) 66)) (-3780 (((-862) $) 18 (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) 23 (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) 85 (|has| |#1| (-850)))) (-2984 (((-112) $ $) 84 (|has| |#1| (-850)))) (-2950 (((-112) $ $) 20 (|has| |#1| (-1099)))) (-2999 (((-112) $ $) 86 (|has| |#1| (-850)))) (-2972 (((-112) $ $) 83 (|has| |#1| (-850)))) (-3051 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-3040 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-566) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-726))) (($ $ |#1|) 108 (|has| |#1| (-726)))) (-3020 (((-771) $) 6 (|has| $ (-6 -4414)))))
(((-1262 |#1|) (-140) (-1214)) (T -1262))
-((-3034 (*1 *1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-25)))) (-2140 (*1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1262 *3)) (-4 *3 (-23)) (-4 *3 (-1214)))) (-3047 (*1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-21)))) (-3047 (*1 *1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-4 *1 (-1262 *3)) (-4 *3 (-1214)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-726)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-726)))) (-1452 (*1 *2 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1049)))) (-3643 (*1 *2 *1 *1) (-12 (-4 *1 (-1262 *3)) (-4 *3 (-1214)) (-4 *3 (-1049)) (-5 *2 (-689 *3)))) (-2689 (*1 *1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1049)))) (-3822 (*1 *2 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1002)) (-4 *2 (-1049)))) (-2221 (*1 *2 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1002)) (-4 *2 (-1049)))))
-(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -3034 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -2140 ($ (-771))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -3047 ($ $)) (-15 -3047 ($ $ $)) (-15 * ($ (-566) $))) |%noBranch|) (IF (|has| |t#1| (-726)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1049)) (PROGN (-15 -1452 (|t#1| $ $)) (-15 -3643 ((-689 |t#1|) $ $)) (-15 -2689 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-1002)) (IF (|has| |t#1| (-1049)) (PROGN (-15 -3822 (|t#1| $)) (-15 -2221 (|t#1| $))) |%noBranch|) |%noBranch|)))
+((-3040 (*1 *1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-25)))) (-2181 (*1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1262 *3)) (-4 *3 (-23)) (-4 *3 (-1214)))) (-3051 (*1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-21)))) (-3051 (*1 *1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-21)))) (* (*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-4 *1 (-1262 *3)) (-4 *3 (-1214)) (-4 *3 (-21)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-726)))) (* (*1 *1 *1 *2) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-726)))) (-4086 (*1 *2 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1049)))) (-3774 (*1 *2 *1 *1) (-12 (-4 *1 (-1262 *3)) (-4 *3 (-1214)) (-4 *3 (-1049)) (-5 *2 (-689 *3)))) (-4173 (*1 *1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1049)))) (-3945 (*1 *2 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1002)) (-4 *2 (-1049)))) (-2029 (*1 *2 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1002)) (-4 *2 (-1049)))))
+(-13 (-19 |t#1|) (-10 -8 (IF (|has| |t#1| (-25)) (-15 -3040 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -2181 ($ (-771))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -3051 ($ $)) (-15 -3051 ($ $ $)) (-15 * ($ (-566) $))) |%noBranch|) (IF (|has| |t#1| (-726)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1049)) (PROGN (-15 -4086 (|t#1| $ $)) (-15 -3774 ((-689 |t#1|) $ $)) (-15 -4173 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-1002)) (IF (|has| |t#1| (-1049)) (PROGN (-15 -3945 (|t#1| $)) (-15 -2029 (|t#1| $))) |%noBranch|) |%noBranch|)))
(((-34) . T) ((-102) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850))) ((-613 (-862)) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850)) (|has| |#1| (-613 (-862)))) ((-151 |#1|) . T) ((-614 (-538)) |has| |#1| (-614 (-538))) ((-287 #0=(-566) |#1|) . T) ((-289 #0# |#1|) . T) ((-310 |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-375 |#1|) . T) ((-491 |#1|) . T) ((-604 #0# |#1|) . T) ((-516 |#1| |#1|) -12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))) ((-651 |#1|) . T) ((-19 |#1|) . T) ((-850) |has| |#1| (-850)) ((-1099) -2805 (|has| |#1| (-1099)) (|has| |#1| (-850))) ((-1214) . T))
-((-2403 (((-1264 |#2|) (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|) 13)) (-4362 ((|#2| (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|) 15)) (-3077 (((-3 (-1264 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1264 |#1|)) 30) (((-1264 |#2|) (-1 |#2| |#1|) (-1264 |#1|)) 18)))
-(((-1263 |#1| |#2|) (-10 -7 (-15 -2403 ((-1264 |#2|) (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|)) (-15 -4362 (|#2| (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|)) (-15 -3077 ((-1264 |#2|) (-1 |#2| |#1|) (-1264 |#1|))) (-15 -3077 ((-3 (-1264 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1264 |#1|)))) (-1214) (-1214)) (T -1263))
-((-3077 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1264 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1264 *6)) (-5 *1 (-1263 *5 *6)))) (-3077 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1264 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1264 *6)) (-5 *1 (-1263 *5 *6)))) (-4362 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1264 *5)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-1263 *5 *2)))) (-2403 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1264 *6)) (-4 *6 (-1214)) (-4 *5 (-1214)) (-5 *2 (-1264 *5)) (-5 *1 (-1263 *6 *5)))))
-(-10 -7 (-15 -2403 ((-1264 |#2|) (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|)) (-15 -4362 (|#2| (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|)) (-15 -3077 ((-1264 |#2|) (-1 |#2| |#1|) (-1264 |#1|))) (-15 -3077 ((-3 (-1264 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1264 |#1|))))
-((-2985 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2140 (($ (-771)) NIL (|has| |#1| (-23)))) (-2853 (($ (-644 |#1|)) 11)) (-1537 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4418)))) (-2383 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-3426 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4418))) (($ $) NIL (-12 (|has| $ (-6 -4418)) (|has| |#1| (-850))))) (-3290 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-3081 (((-112) $ (-771)) NIL)) (-3874 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4418)))) (-4186 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2342 (($) NIL T CONST)) (-2736 (($ $) NIL (|has| $ (-6 -4418)))) (-3852 (($ $) NIL)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2651 (($ |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-4362 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4417))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4417)))) (-1332 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4418)))) (-3137 ((|#1| $ (-566)) NIL)) (-3968 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3372 (((-644 |#1|) $) 15 (|has| $ (-6 -4417)))) (-3643 (((-689 |#1|) $ $) NIL (|has| |#1| (-1049)))) (-4257 (($ (-771) |#1|) NIL)) (-2744 (((-112) $ (-771)) NIL)) (-2160 (((-566) $) NIL (|has| (-566) (-850)))) (-1439 (($ $ $) NIL (|has| |#1| (-850)))) (-3132 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-2404 (((-644 |#1|) $) NIL (|has| $ (-6 -4417)))) (-1927 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-1544 (((-566) $) NIL (|has| (-566) (-850)))) (-3059 (($ $ $) NIL (|has| |#1| (-850)))) (-1323 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2221 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-3882 (((-112) $ (-771)) NIL)) (-3822 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-2878 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4268 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-1922 (((-644 (-566)) $) NIL)) (-2040 (((-112) (-566) $) NIL)) (-4033 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4062 ((|#1| $) NIL (|has| (-566) (-850)))) (-2126 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1720 (($ $ |#1|) NIL (|has| $ (-6 -4418)))) (-2822 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4326 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-2784 (((-644 |#1|) $) NIL)) (-4194 (((-112) $) NIL)) (-2954 (($) NIL)) (-4386 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-1452 ((|#1| $ $) NIL (|has| |#1| (-1049)))) (-2201 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-2689 (($ $ $) NIL (|has| |#1| (-1049)))) (-4044 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#1| (-1099))))) (-3245 (($ $ $ (-566)) NIL (|has| $ (-6 -4418)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) 19 (|has| |#1| (-614 (-538))))) (-2523 (($ (-644 |#1|)) 10)) (-3704 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-2512 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3122 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-3427 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4417)))) (-2998 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2974 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2940 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2987 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2962 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3047 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3034 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-566) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-726))) (($ $ |#1|) NIL (|has| |#1| (-726)))) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1264 |#1|) (-13 (-1262 |#1|) (-10 -8 (-15 -2853 ($ (-644 |#1|))))) (-1214)) (T -1264))
-((-2853 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1264 *3)))))
-(-13 (-1262 |#1|) (-10 -8 (-15 -2853 ($ (-644 |#1|)))))
-((-2985 (((-112) $ $) NIL)) (-4048 (((-1157) $ (-1157)) 110) (((-1157) $ (-1157) (-1157)) 108) (((-1157) $ (-1157) (-644 (-1157))) 107)) (-2270 (($) 70)) (-3910 (((-1269) $ (-470) (-921)) 55)) (-3174 (((-1269) $ (-921) (-1157)) 92) (((-1269) $ (-921) (-874)) 93)) (-2183 (((-1269) $ (-921) (-381) (-381)) 58)) (-3348 (((-1269) $ (-1157)) 87)) (-3801 (((-1269) $ (-921) (-1157)) 97)) (-2863 (((-1269) $ (-921) (-381) (-381)) 59)) (-1377 (((-1269) $ (-921) (-921)) 56)) (-4022 (((-1269) $) 88)) (-2033 (((-1269) $ (-921) (-1157)) 96)) (-2494 (((-1269) $ (-470) (-921)) 41)) (-1917 (((-1269) $ (-921) (-1157)) 95)) (-4288 (((-644 (-264)) $) 29) (($ $ (-644 (-264))) 30)) (-2434 (((-1269) $ (-771) (-771)) 53)) (-3006 (($ $) 72) (($ (-470) (-644 (-264))) 73)) (-2878 (((-1157) $) NIL)) (-2010 (((-566) $) 48)) (-4033 (((-1119) $) NIL)) (-2722 (((-1264 (-3 (-470) "undefined")) $) 47)) (-3615 (((-1264 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -1917 (-566)) (|:| -1480 (-566)) (|:| |spline| (-566)) (|:| -2583 (-566)) (|:| |axesColor| (-874)) (|:| -3174 (-566)) (|:| |unitsColor| (-874)) (|:| |showing| (-566)))) $) 46)) (-3206 (((-1269) $ (-921) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-874) (-566) (-874) (-566)) 86)) (-3820 (((-644 (-943 (-225))) $) NIL)) (-2604 (((-470) $ (-921)) 43)) (-3673 (((-1269) $ (-771) (-771) (-921) (-921)) 51)) (-3408 (((-1269) $ (-1157)) 98)) (-1480 (((-1269) $ (-921) (-1157)) 94)) (-2512 (((-862) $) 105)) (-1673 (((-1269) $) 99)) (-3122 (((-112) $ $) NIL)) (-2583 (((-1269) $ (-921) (-1157)) 90) (((-1269) $ (-921) (-874)) 91)) (-2940 (((-112) $ $) NIL)))
-(((-1265) (-13 (-1099) (-10 -8 (-15 -3820 ((-644 (-943 (-225))) $)) (-15 -2270 ($)) (-15 -3006 ($ $)) (-15 -4288 ((-644 (-264)) $)) (-15 -4288 ($ $ (-644 (-264)))) (-15 -3006 ($ (-470) (-644 (-264)))) (-15 -3206 ((-1269) $ (-921) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-874) (-566) (-874) (-566))) (-15 -3615 ((-1264 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -1917 (-566)) (|:| -1480 (-566)) (|:| |spline| (-566)) (|:| -2583 (-566)) (|:| |axesColor| (-874)) (|:| -3174 (-566)) (|:| |unitsColor| (-874)) (|:| |showing| (-566)))) $)) (-15 -2722 ((-1264 (-3 (-470) "undefined")) $)) (-15 -3348 ((-1269) $ (-1157))) (-15 -2494 ((-1269) $ (-470) (-921))) (-15 -2604 ((-470) $ (-921))) (-15 -2583 ((-1269) $ (-921) (-1157))) (-15 -2583 ((-1269) $ (-921) (-874))) (-15 -3174 ((-1269) $ (-921) (-1157))) (-15 -3174 ((-1269) $ (-921) (-874))) (-15 -1917 ((-1269) $ (-921) (-1157))) (-15 -2033 ((-1269) $ (-921) (-1157))) (-15 -1480 ((-1269) $ (-921) (-1157))) (-15 -3408 ((-1269) $ (-1157))) (-15 -1673 ((-1269) $)) (-15 -3673 ((-1269) $ (-771) (-771) (-921) (-921))) (-15 -2863 ((-1269) $ (-921) (-381) (-381))) (-15 -2183 ((-1269) $ (-921) (-381) (-381))) (-15 -3801 ((-1269) $ (-921) (-1157))) (-15 -2434 ((-1269) $ (-771) (-771))) (-15 -3910 ((-1269) $ (-470) (-921))) (-15 -1377 ((-1269) $ (-921) (-921))) (-15 -4048 ((-1157) $ (-1157))) (-15 -4048 ((-1157) $ (-1157) (-1157))) (-15 -4048 ((-1157) $ (-1157) (-644 (-1157)))) (-15 -4022 ((-1269) $)) (-15 -2010 ((-566) $)) (-15 -2512 ((-862) $))))) (T -1265))
-((-2512 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-1265)))) (-3820 (*1 *2 *1) (-12 (-5 *2 (-644 (-943 (-225)))) (-5 *1 (-1265)))) (-2270 (*1 *1) (-5 *1 (-1265))) (-3006 (*1 *1 *1) (-5 *1 (-1265))) (-4288 (*1 *2 *1) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1265)))) (-4288 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1265)))) (-3006 (*1 *1 *2 *3) (-12 (-5 *2 (-470)) (-5 *3 (-644 (-264))) (-5 *1 (-1265)))) (-3206 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-921)) (-5 *4 (-225)) (-5 *5 (-566)) (-5 *6 (-874)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3615 (*1 *2 *1) (-12 (-5 *2 (-1264 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -1917 (-566)) (|:| -1480 (-566)) (|:| |spline| (-566)) (|:| -2583 (-566)) (|:| |axesColor| (-874)) (|:| -3174 (-566)) (|:| |unitsColor| (-874)) (|:| |showing| (-566))))) (-5 *1 (-1265)))) (-2722 (*1 *2 *1) (-12 (-5 *2 (-1264 (-3 (-470) "undefined"))) (-5 *1 (-1265)))) (-3348 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2494 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-470)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2604 (*1 *2 *1 *3) (-12 (-5 *3 (-921)) (-5 *2 (-470)) (-5 *1 (-1265)))) (-2583 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2583 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-874)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3174 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3174 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-874)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-1917 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2033 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-1480 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3408 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-1673 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3673 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-771)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2863 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-921)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2183 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-921)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3801 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2434 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3910 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-470)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-1377 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-4048 (*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1265)))) (-4048 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1265)))) (-4048 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-1265)))) (-4022 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2010 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1265)))))
-(-13 (-1099) (-10 -8 (-15 -3820 ((-644 (-943 (-225))) $)) (-15 -2270 ($)) (-15 -3006 ($ $)) (-15 -4288 ((-644 (-264)) $)) (-15 -4288 ($ $ (-644 (-264)))) (-15 -3006 ($ (-470) (-644 (-264)))) (-15 -3206 ((-1269) $ (-921) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-874) (-566) (-874) (-566))) (-15 -3615 ((-1264 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -1917 (-566)) (|:| -1480 (-566)) (|:| |spline| (-566)) (|:| -2583 (-566)) (|:| |axesColor| (-874)) (|:| -3174 (-566)) (|:| |unitsColor| (-874)) (|:| |showing| (-566)))) $)) (-15 -2722 ((-1264 (-3 (-470) "undefined")) $)) (-15 -3348 ((-1269) $ (-1157))) (-15 -2494 ((-1269) $ (-470) (-921))) (-15 -2604 ((-470) $ (-921))) (-15 -2583 ((-1269) $ (-921) (-1157))) (-15 -2583 ((-1269) $ (-921) (-874))) (-15 -3174 ((-1269) $ (-921) (-1157))) (-15 -3174 ((-1269) $ (-921) (-874))) (-15 -1917 ((-1269) $ (-921) (-1157))) (-15 -2033 ((-1269) $ (-921) (-1157))) (-15 -1480 ((-1269) $ (-921) (-1157))) (-15 -3408 ((-1269) $ (-1157))) (-15 -1673 ((-1269) $)) (-15 -3673 ((-1269) $ (-771) (-771) (-921) (-921))) (-15 -2863 ((-1269) $ (-921) (-381) (-381))) (-15 -2183 ((-1269) $ (-921) (-381) (-381))) (-15 -3801 ((-1269) $ (-921) (-1157))) (-15 -2434 ((-1269) $ (-771) (-771))) (-15 -3910 ((-1269) $ (-470) (-921))) (-15 -1377 ((-1269) $ (-921) (-921))) (-15 -4048 ((-1157) $ (-1157))) (-15 -4048 ((-1157) $ (-1157) (-1157))) (-15 -4048 ((-1157) $ (-1157) (-644 (-1157)))) (-15 -4022 ((-1269) $)) (-15 -2010 ((-566) $)) (-15 -2512 ((-862) $))))
-((-2985 (((-112) $ $) NIL)) (-2043 (((-1269) $ (-381)) 172) (((-1269) $ (-381) (-381) (-381)) 173)) (-4048 (((-1157) $ (-1157)) 182) (((-1157) $ (-1157) (-1157)) 180) (((-1157) $ (-1157) (-644 (-1157))) 179)) (-2680 (($) 67)) (-2709 (((-1269) $ (-381) (-381) (-381) (-381) (-381)) 144) (((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $) 142) (((-1269) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 143) (((-1269) $ (-566) (-566) (-381) (-381) (-381)) 147) (((-1269) $ (-381) (-381)) 148) (((-1269) $ (-381) (-381) (-381)) 155)) (-3522 (((-381)) 125) (((-381) (-381)) 126)) (-2392 (((-381)) 120) (((-381) (-381)) 122)) (-2820 (((-381)) 123) (((-381) (-381)) 124)) (-2547 (((-381)) 129) (((-381) (-381)) 130)) (-2781 (((-381)) 127) (((-381) (-381)) 128)) (-2183 (((-1269) $ (-381) (-381)) 174)) (-3348 (((-1269) $ (-1157)) 156)) (-2448 (((-1132 (-225)) $) 68) (($ $ (-1132 (-225))) 69)) (-4050 (((-1269) $ (-1157)) 190)) (-2739 (((-1269) $ (-1157)) 191)) (-1831 (((-1269) $ (-381) (-381)) 154) (((-1269) $ (-566) (-566)) 171)) (-1377 (((-1269) $ (-921) (-921)) 163)) (-4022 (((-1269) $) 140)) (-2451 (((-1269) $ (-1157)) 189)) (-3602 (((-1269) $ (-1157)) 137)) (-4288 (((-644 (-264)) $) 70) (($ $ (-644 (-264))) 71)) (-2434 (((-1269) $ (-771) (-771)) 162)) (-1888 (((-1269) $ (-771) (-943 (-225))) 196)) (-2413 (($ $) 73) (($ (-1132 (-225)) (-1157)) 74) (($ (-1132 (-225)) (-644 (-264))) 75)) (-2897 (((-1269) $ (-381) (-381) (-381)) 134)) (-2878 (((-1157) $) NIL)) (-2010 (((-566) $) 131)) (-3433 (((-1269) $ (-381)) 177)) (-2455 (((-1269) $ (-381)) 194)) (-4033 (((-1119) $) NIL)) (-1336 (((-1269) $ (-381)) 193)) (-3351 (((-1269) $ (-1157)) 139)) (-3673 (((-1269) $ (-771) (-771) (-921) (-921)) 161)) (-3371 (((-1269) $ (-1157)) 136)) (-3408 (((-1269) $ (-1157)) 138)) (-3332 (((-1269) $ (-157) (-157)) 160)) (-2512 (((-862) $) 169)) (-1673 (((-1269) $) 141)) (-1845 (((-1269) $ (-1157)) 192)) (-3122 (((-112) $ $) NIL)) (-2583 (((-1269) $ (-1157)) 135)) (-2940 (((-112) $ $) NIL)))
-(((-1266) (-13 (-1099) (-10 -8 (-15 -2392 ((-381))) (-15 -2392 ((-381) (-381))) (-15 -2820 ((-381))) (-15 -2820 ((-381) (-381))) (-15 -3522 ((-381))) (-15 -3522 ((-381) (-381))) (-15 -2781 ((-381))) (-15 -2781 ((-381) (-381))) (-15 -2547 ((-381))) (-15 -2547 ((-381) (-381))) (-15 -2680 ($)) (-15 -2413 ($ $)) (-15 -2413 ($ (-1132 (-225)) (-1157))) (-15 -2413 ($ (-1132 (-225)) (-644 (-264)))) (-15 -2448 ((-1132 (-225)) $)) (-15 -2448 ($ $ (-1132 (-225)))) (-15 -1888 ((-1269) $ (-771) (-943 (-225)))) (-15 -4288 ((-644 (-264)) $)) (-15 -4288 ($ $ (-644 (-264)))) (-15 -2434 ((-1269) $ (-771) (-771))) (-15 -1377 ((-1269) $ (-921) (-921))) (-15 -3348 ((-1269) $ (-1157))) (-15 -3673 ((-1269) $ (-771) (-771) (-921) (-921))) (-15 -2709 ((-1269) $ (-381) (-381) (-381) (-381) (-381))) (-15 -2709 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $)) (-15 -2709 ((-1269) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -2709 ((-1269) $ (-566) (-566) (-381) (-381) (-381))) (-15 -2709 ((-1269) $ (-381) (-381))) (-15 -2709 ((-1269) $ (-381) (-381) (-381))) (-15 -3408 ((-1269) $ (-1157))) (-15 -2583 ((-1269) $ (-1157))) (-15 -3371 ((-1269) $ (-1157))) (-15 -3602 ((-1269) $ (-1157))) (-15 -3351 ((-1269) $ (-1157))) (-15 -1831 ((-1269) $ (-381) (-381))) (-15 -1831 ((-1269) $ (-566) (-566))) (-15 -2043 ((-1269) $ (-381))) (-15 -2043 ((-1269) $ (-381) (-381) (-381))) (-15 -2183 ((-1269) $ (-381) (-381))) (-15 -2451 ((-1269) $ (-1157))) (-15 -1336 ((-1269) $ (-381))) (-15 -2455 ((-1269) $ (-381))) (-15 -4050 ((-1269) $ (-1157))) (-15 -2739 ((-1269) $ (-1157))) (-15 -1845 ((-1269) $ (-1157))) (-15 -2897 ((-1269) $ (-381) (-381) (-381))) (-15 -3433 ((-1269) $ (-381))) (-15 -4022 ((-1269) $)) (-15 -3332 ((-1269) $ (-157) (-157))) (-15 -4048 ((-1157) $ (-1157))) (-15 -4048 ((-1157) $ (-1157) (-1157))) (-15 -4048 ((-1157) $ (-1157) (-644 (-1157)))) (-15 -1673 ((-1269) $)) (-15 -2010 ((-566) $))))) (T -1266))
-((-2392 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2392 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2820 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2820 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-3522 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-3522 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2781 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2781 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2547 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2547 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2680 (*1 *1) (-5 *1 (-1266))) (-2413 (*1 *1 *1) (-5 *1 (-1266))) (-2413 (*1 *1 *2 *3) (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-1157)) (-5 *1 (-1266)))) (-2413 (*1 *1 *2 *3) (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-644 (-264))) (-5 *1 (-1266)))) (-2448 (*1 *2 *1) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1266)))) (-2448 (*1 *1 *1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1266)))) (-1888 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-771)) (-5 *4 (-943 (-225))) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-4288 (*1 *2 *1) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1266)))) (-4288 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1266)))) (-2434 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1377 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3348 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3673 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-771)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2709 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2709 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *1 (-1266)))) (-2709 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2709 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-566)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2709 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2709 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3408 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2583 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3371 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3602 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3351 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1831 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1831 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2043 (*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2043 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2183 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2451 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1336 (*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2455 (*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-4050 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2739 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1845 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2897 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3433 (*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-4022 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3332 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-4048 (*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1266)))) (-4048 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1266)))) (-4048 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-1266)))) (-1673 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2010 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1266)))))
-(-13 (-1099) (-10 -8 (-15 -2392 ((-381))) (-15 -2392 ((-381) (-381))) (-15 -2820 ((-381))) (-15 -2820 ((-381) (-381))) (-15 -3522 ((-381))) (-15 -3522 ((-381) (-381))) (-15 -2781 ((-381))) (-15 -2781 ((-381) (-381))) (-15 -2547 ((-381))) (-15 -2547 ((-381) (-381))) (-15 -2680 ($)) (-15 -2413 ($ $)) (-15 -2413 ($ (-1132 (-225)) (-1157))) (-15 -2413 ($ (-1132 (-225)) (-644 (-264)))) (-15 -2448 ((-1132 (-225)) $)) (-15 -2448 ($ $ (-1132 (-225)))) (-15 -1888 ((-1269) $ (-771) (-943 (-225)))) (-15 -4288 ((-644 (-264)) $)) (-15 -4288 ($ $ (-644 (-264)))) (-15 -2434 ((-1269) $ (-771) (-771))) (-15 -1377 ((-1269) $ (-921) (-921))) (-15 -3348 ((-1269) $ (-1157))) (-15 -3673 ((-1269) $ (-771) (-771) (-921) (-921))) (-15 -2709 ((-1269) $ (-381) (-381) (-381) (-381) (-381))) (-15 -2709 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $)) (-15 -2709 ((-1269) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -2709 ((-1269) $ (-566) (-566) (-381) (-381) (-381))) (-15 -2709 ((-1269) $ (-381) (-381))) (-15 -2709 ((-1269) $ (-381) (-381) (-381))) (-15 -3408 ((-1269) $ (-1157))) (-15 -2583 ((-1269) $ (-1157))) (-15 -3371 ((-1269) $ (-1157))) (-15 -3602 ((-1269) $ (-1157))) (-15 -3351 ((-1269) $ (-1157))) (-15 -1831 ((-1269) $ (-381) (-381))) (-15 -1831 ((-1269) $ (-566) (-566))) (-15 -2043 ((-1269) $ (-381))) (-15 -2043 ((-1269) $ (-381) (-381) (-381))) (-15 -2183 ((-1269) $ (-381) (-381))) (-15 -2451 ((-1269) $ (-1157))) (-15 -1336 ((-1269) $ (-381))) (-15 -2455 ((-1269) $ (-381))) (-15 -4050 ((-1269) $ (-1157))) (-15 -2739 ((-1269) $ (-1157))) (-15 -1845 ((-1269) $ (-1157))) (-15 -2897 ((-1269) $ (-381) (-381) (-381))) (-15 -3433 ((-1269) $ (-381))) (-15 -4022 ((-1269) $)) (-15 -3332 ((-1269) $ (-157) (-157))) (-15 -4048 ((-1157) $ (-1157))) (-15 -4048 ((-1157) $ (-1157) (-1157))) (-15 -4048 ((-1157) $ (-1157) (-644 (-1157)))) (-15 -1673 ((-1269) $)) (-15 -2010 ((-566) $))))
-((-3451 (((-644 (-1157)) (-644 (-1157))) 104) (((-644 (-1157))) 96)) (-4001 (((-644 (-1157))) 94)) (-1573 (((-644 (-921)) (-644 (-921))) 69) (((-644 (-921))) 64)) (-2632 (((-644 (-771)) (-644 (-771))) 61) (((-644 (-771))) 55)) (-3695 (((-1269)) 71)) (-4313 (((-921) (-921)) 87) (((-921)) 86)) (-1877 (((-921) (-921)) 85) (((-921)) 84)) (-2422 (((-874) (-874)) 81) (((-874)) 80)) (-1504 (((-225)) 91) (((-225) (-381)) 93)) (-4023 (((-921)) 88) (((-921) (-921)) 89)) (-1629 (((-921) (-921)) 83) (((-921)) 82)) (-3182 (((-874) (-874)) 75) (((-874)) 73)) (-1885 (((-874) (-874)) 77) (((-874)) 76)) (-3003 (((-874) (-874)) 79) (((-874)) 78)))
-(((-1267) (-10 -7 (-15 -3182 ((-874))) (-15 -3182 ((-874) (-874))) (-15 -1885 ((-874))) (-15 -1885 ((-874) (-874))) (-15 -3003 ((-874))) (-15 -3003 ((-874) (-874))) (-15 -2422 ((-874))) (-15 -2422 ((-874) (-874))) (-15 -1629 ((-921))) (-15 -1629 ((-921) (-921))) (-15 -2632 ((-644 (-771)))) (-15 -2632 ((-644 (-771)) (-644 (-771)))) (-15 -1573 ((-644 (-921)))) (-15 -1573 ((-644 (-921)) (-644 (-921)))) (-15 -3695 ((-1269))) (-15 -3451 ((-644 (-1157)))) (-15 -3451 ((-644 (-1157)) (-644 (-1157)))) (-15 -4001 ((-644 (-1157)))) (-15 -1877 ((-921))) (-15 -4313 ((-921))) (-15 -1877 ((-921) (-921))) (-15 -4313 ((-921) (-921))) (-15 -4023 ((-921) (-921))) (-15 -4023 ((-921))) (-15 -1504 ((-225) (-381))) (-15 -1504 ((-225))))) (T -1267))
-((-1504 (*1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-1267)))) (-1504 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-225)) (-5 *1 (-1267)))) (-4023 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-4023 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-4313 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-1877 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-4313 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-1877 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-4001 (*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267)))) (-3451 (*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267)))) (-3451 (*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267)))) (-3695 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1267)))) (-1573 (*1 *2 *2) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1267)))) (-1573 (*1 *2) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1267)))) (-2632 (*1 *2 *2) (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1267)))) (-2632 (*1 *2) (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1267)))) (-1629 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-1629 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-2422 (*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-2422 (*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-3003 (*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-3003 (*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-1885 (*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-1885 (*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-3182 (*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-3182 (*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))))
-(-10 -7 (-15 -3182 ((-874))) (-15 -3182 ((-874) (-874))) (-15 -1885 ((-874))) (-15 -1885 ((-874) (-874))) (-15 -3003 ((-874))) (-15 -3003 ((-874) (-874))) (-15 -2422 ((-874))) (-15 -2422 ((-874) (-874))) (-15 -1629 ((-921))) (-15 -1629 ((-921) (-921))) (-15 -2632 ((-644 (-771)))) (-15 -2632 ((-644 (-771)) (-644 (-771)))) (-15 -1573 ((-644 (-921)))) (-15 -1573 ((-644 (-921)) (-644 (-921)))) (-15 -3695 ((-1269))) (-15 -3451 ((-644 (-1157)))) (-15 -3451 ((-644 (-1157)) (-644 (-1157)))) (-15 -4001 ((-644 (-1157)))) (-15 -1877 ((-921))) (-15 -4313 ((-921))) (-15 -1877 ((-921) (-921))) (-15 -4313 ((-921) (-921))) (-15 -4023 ((-921) (-921))) (-15 -4023 ((-921))) (-15 -1504 ((-225) (-381))) (-15 -1504 ((-225))))
-((-1541 (((-470) (-644 (-644 (-943 (-225)))) (-644 (-264))) 22) (((-470) (-644 (-644 (-943 (-225))))) 21) (((-470) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264))) 20)) (-1531 (((-1265) (-644 (-644 (-943 (-225)))) (-644 (-264))) 33) (((-1265) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264))) 32)) (-2512 (((-1265) (-470)) 48)))
-(((-1268) (-10 -7 (-15 -1541 ((-470) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264)))) (-15 -1541 ((-470) (-644 (-644 (-943 (-225)))))) (-15 -1541 ((-470) (-644 (-644 (-943 (-225)))) (-644 (-264)))) (-15 -1531 ((-1265) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264)))) (-15 -1531 ((-1265) (-644 (-644 (-943 (-225)))) (-644 (-264)))) (-15 -2512 ((-1265) (-470))))) (T -1268))
-((-2512 (*1 *2 *3) (-12 (-5 *3 (-470)) (-5 *2 (-1265)) (-5 *1 (-1268)))) (-1531 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-1268)))) (-1531 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-874)) (-5 *5 (-921)) (-5 *6 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-1268)))) (-1541 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-644 (-264))) (-5 *2 (-470)) (-5 *1 (-1268)))) (-1541 (*1 *2 *3) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *2 (-470)) (-5 *1 (-1268)))) (-1541 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-874)) (-5 *5 (-921)) (-5 *6 (-644 (-264))) (-5 *2 (-470)) (-5 *1 (-1268)))))
-(-10 -7 (-15 -1541 ((-470) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264)))) (-15 -1541 ((-470) (-644 (-644 (-943 (-225)))))) (-15 -1541 ((-470) (-644 (-644 (-943 (-225)))) (-644 (-264)))) (-15 -1531 ((-1265) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264)))) (-15 -1531 ((-1265) (-644 (-644 (-943 (-225)))) (-644 (-264)))) (-15 -2512 ((-1265) (-470))))
-((-4354 (($) 7)) (-2512 (((-862) $) 10)))
-(((-1269) (-13 (-613 (-862)) (-10 -8 (-15 -4354 ($))))) (T -1269))
-((-4354 (*1 *1) (-5 *1 (-1269))))
-(-13 (-613 (-862)) (-10 -8 (-15 -4354 ($))))
-((-3061 (($ $ |#2|) 10)))
-(((-1270 |#1| |#2|) (-10 -8 (-15 -3061 (|#1| |#1| |#2|))) (-1271 |#2|) (-365)) (T -1270))
-NIL
-(-10 -8 (-15 -3061 (|#1| |#1| |#2|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-1909 (((-134)) 33)) (-2512 (((-862) $) 12)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2940 (((-112) $ $) 6)) (-3061 (($ $ |#1|) 34)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
+((-3264 (((-1264 |#2|) (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|) 13)) (-1580 ((|#2| (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|) 15)) (-3152 (((-3 (-1264 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1264 |#1|)) 30) (((-1264 |#2|) (-1 |#2| |#1|) (-1264 |#1|)) 18)))
+(((-1263 |#1| |#2|) (-10 -7 (-15 -3264 ((-1264 |#2|) (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|)) (-15 -1580 (|#2| (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|)) (-15 -3152 ((-1264 |#2|) (-1 |#2| |#1|) (-1264 |#1|))) (-15 -3152 ((-3 (-1264 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1264 |#1|)))) (-1214) (-1214)) (T -1263))
+((-3152 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 *6 "failed") *5)) (-5 *4 (-1264 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1264 *6)) (-5 *1 (-1263 *5 *6)))) (-3152 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-1264 *5)) (-4 *5 (-1214)) (-4 *6 (-1214)) (-5 *2 (-1264 *6)) (-5 *1 (-1263 *5 *6)))) (-1580 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1264 *5)) (-4 *5 (-1214)) (-4 *2 (-1214)) (-5 *1 (-1263 *5 *2)))) (-3264 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1264 *6)) (-4 *6 (-1214)) (-4 *5 (-1214)) (-5 *2 (-1264 *5)) (-5 *1 (-1263 *6 *5)))))
+(-10 -7 (-15 -3264 ((-1264 |#2|) (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|)) (-15 -1580 (|#2| (-1 |#2| |#1| |#2|) (-1264 |#1|) |#2|)) (-15 -3152 ((-1264 |#2|) (-1 |#2| |#1|) (-1264 |#1|))) (-15 -3152 ((-3 (-1264 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1264 |#1|))))
+((-3009 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2181 (($ (-771)) NIL (|has| |#1| (-23)))) (-2568 (($ (-644 |#1|)) 11)) (-2518 (((-1269) $ (-566) (-566)) NIL (|has| $ (-6 -4415)))) (-3070 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-850)))) (-1570 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4415))) (($ $) NIL (-12 (|has| $ (-6 -4415)) (|has| |#1| (-850))))) (-1568 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-850)))) (-1574 (((-112) $ (-771)) NIL)) (-3916 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415))) ((|#1| $ (-1231 (-566)) |#1|) NIL (|has| $ (-6 -4415)))) (-1386 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3877 (($) NIL T CONST)) (-3416 (($ $) NIL (|has| $ (-6 -4415)))) (-3507 (($ $) NIL)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2661 (($ |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-1580 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4414))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4414)))) (-3128 ((|#1| $ (-566) |#1|) NIL (|has| $ (-6 -4415)))) (-3059 ((|#1| $ (-566)) NIL)) (-4015 (((-566) (-1 (-112) |#1|) $) NIL) (((-566) |#1| $) NIL (|has| |#1| (-1099))) (((-566) |#1| $ (-566)) NIL (|has| |#1| (-1099)))) (-3799 (((-644 |#1|) $) 15 (|has| $ (-6 -4414)))) (-3774 (((-689 |#1|) $ $) NIL (|has| |#1| (-1049)))) (-4278 (($ (-771) |#1|) NIL)) (-3501 (((-112) $ (-771)) NIL)) (-2712 (((-566) $) NIL (|has| (-566) (-850)))) (-1945 (($ $ $) NIL (|has| |#1| (-850)))) (-3891 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-850)))) (-3276 (((-644 |#1|) $) NIL (|has| $ (-6 -4414)))) (-2183 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2579 (((-566) $) NIL (|has| (-566) (-850)))) (-2709 (($ $ $) NIL (|has| |#1| (-850)))) (-3117 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2029 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-3582 (((-112) $ (-771)) NIL)) (-3945 ((|#1| $) NIL (-12 (|has| |#1| (-1002)) (|has| |#1| (-1049))))) (-2402 (((-1157) $) NIL (|has| |#1| (-1099)))) (-4286 (($ |#1| $ (-566)) NIL) (($ $ $ (-566)) NIL)) (-2140 (((-644 (-566)) $) NIL)) (-3935 (((-112) (-566) $) NIL)) (-4056 (((-1119) $) NIL (|has| |#1| (-1099)))) (-4101 ((|#1| $) NIL (|has| (-566) (-850)))) (-3591 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3750 (($ $ |#1|) NIL (|has| $ (-6 -4415)))) (-3044 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 (-295 |#1|))) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-295 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ |#1| |#1|) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099)))) (($ $ (-644 |#1|) (-644 |#1|)) NIL (-12 (|has| |#1| (-310 |#1|)) (|has| |#1| (-1099))))) (-4372 (((-112) $ $) NIL)) (-2298 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-2684 (((-644 |#1|) $) NIL)) (-3461 (((-112) $) NIL)) (-1793 (($) NIL)) (-4393 ((|#1| $ (-566) |#1|) NIL) ((|#1| $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4086 ((|#1| $ $) NIL (|has| |#1| (-1049)))) (-2215 (($ $ (-566)) NIL) (($ $ (-1231 (-566))) NIL)) (-4173 (($ $ $) NIL (|has| |#1| (-1049)))) (-4067 (((-771) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414))) (((-771) |#1| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#1| (-1099))))) (-3610 (($ $ $ (-566)) NIL (|has| $ (-6 -4415)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) 19 (|has| |#1| (-614 (-538))))) (-3791 (($ (-644 |#1|)) 10)) (-3727 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-644 $)) NIL)) (-3780 (((-862) $) NIL (|has| |#1| (-613 (-862))))) (-3801 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-1583 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4414)))) (-3010 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2984 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2950 (((-112) $ $) NIL (|has| |#1| (-1099)))) (-2999 (((-112) $ $) NIL (|has| |#1| (-850)))) (-2972 (((-112) $ $) NIL (|has| |#1| (-850)))) (-3051 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3040 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-566) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-726))) (($ $ |#1|) NIL (|has| |#1| (-726)))) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1264 |#1|) (-13 (-1262 |#1|) (-10 -8 (-15 -2568 ($ (-644 |#1|))))) (-1214)) (T -1264))
+((-2568 (*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1264 *3)))))
+(-13 (-1262 |#1|) (-10 -8 (-15 -2568 ($ (-644 |#1|)))))
+((-3009 (((-112) $ $) NIL)) (-1740 (((-1157) $ (-1157)) 110) (((-1157) $ (-1157) (-1157)) 108) (((-1157) $ (-1157) (-644 (-1157))) 107)) (-4365 (($) 70)) (-3958 (((-1269) $ (-470) (-921)) 55)) (-3197 (((-1269) $ (-921) (-1157)) 92) (((-1269) $ (-921) (-874)) 93)) (-2939 (((-1269) $ (-921) (-381) (-381)) 58)) (-3373 (((-1269) $ (-1157)) 87)) (-3813 (((-1269) $ (-921) (-1157)) 97)) (-2239 (((-1269) $ (-921) (-381) (-381)) 59)) (-4121 (((-1269) $ (-921) (-921)) 56)) (-1716 (((-1269) $) 88)) (-3861 (((-1269) $ (-921) (-1157)) 96)) (-2858 (((-1269) $ (-470) (-921)) 41)) (-2089 (((-1269) $ (-921) (-1157)) 95)) (-4304 (((-644 (-264)) $) 29) (($ $ (-644 (-264))) 30)) (-3526 (((-1269) $ (-771) (-771)) 53)) (-2193 (($ $) 72) (($ (-470) (-644 (-264))) 73)) (-2402 (((-1157) $) NIL)) (-2050 (((-566) $) 48)) (-4056 (((-1119) $) NIL)) (-3285 (((-1264 (-3 (-470) "undefined")) $) 47)) (-2793 (((-1264 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -2089 (-566)) (|:| -3140 (-566)) (|:| |spline| (-566)) (|:| -4350 (-566)) (|:| |axesColor| (-874)) (|:| -3197 (-566)) (|:| |unitsColor| (-874)) (|:| |showing| (-566)))) $) 46)) (-3270 (((-1269) $ (-921) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-874) (-566) (-874) (-566)) 86)) (-4219 (((-644 (-943 (-225))) $) NIL)) (-1452 (((-470) $ (-921)) 43)) (-2153 (((-1269) $ (-771) (-771) (-921) (-921)) 51)) (-1383 (((-1269) $ (-1157)) 98)) (-3140 (((-1269) $ (-921) (-1157)) 94)) (-3780 (((-862) $) 105)) (-1713 (((-1269) $) 99)) (-3801 (((-112) $ $) NIL)) (-4350 (((-1269) $ (-921) (-1157)) 90) (((-1269) $ (-921) (-874)) 91)) (-2950 (((-112) $ $) NIL)))
+(((-1265) (-13 (-1099) (-10 -8 (-15 -4219 ((-644 (-943 (-225))) $)) (-15 -4365 ($)) (-15 -2193 ($ $)) (-15 -4304 ((-644 (-264)) $)) (-15 -4304 ($ $ (-644 (-264)))) (-15 -2193 ($ (-470) (-644 (-264)))) (-15 -3270 ((-1269) $ (-921) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-874) (-566) (-874) (-566))) (-15 -2793 ((-1264 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -2089 (-566)) (|:| -3140 (-566)) (|:| |spline| (-566)) (|:| -4350 (-566)) (|:| |axesColor| (-874)) (|:| -3197 (-566)) (|:| |unitsColor| (-874)) (|:| |showing| (-566)))) $)) (-15 -3285 ((-1264 (-3 (-470) "undefined")) $)) (-15 -3373 ((-1269) $ (-1157))) (-15 -2858 ((-1269) $ (-470) (-921))) (-15 -1452 ((-470) $ (-921))) (-15 -4350 ((-1269) $ (-921) (-1157))) (-15 -4350 ((-1269) $ (-921) (-874))) (-15 -3197 ((-1269) $ (-921) (-1157))) (-15 -3197 ((-1269) $ (-921) (-874))) (-15 -2089 ((-1269) $ (-921) (-1157))) (-15 -3861 ((-1269) $ (-921) (-1157))) (-15 -3140 ((-1269) $ (-921) (-1157))) (-15 -1383 ((-1269) $ (-1157))) (-15 -1713 ((-1269) $)) (-15 -2153 ((-1269) $ (-771) (-771) (-921) (-921))) (-15 -2239 ((-1269) $ (-921) (-381) (-381))) (-15 -2939 ((-1269) $ (-921) (-381) (-381))) (-15 -3813 ((-1269) $ (-921) (-1157))) (-15 -3526 ((-1269) $ (-771) (-771))) (-15 -3958 ((-1269) $ (-470) (-921))) (-15 -4121 ((-1269) $ (-921) (-921))) (-15 -1740 ((-1157) $ (-1157))) (-15 -1740 ((-1157) $ (-1157) (-1157))) (-15 -1740 ((-1157) $ (-1157) (-644 (-1157)))) (-15 -1716 ((-1269) $)) (-15 -2050 ((-566) $)) (-15 -3780 ((-862) $))))) (T -1265))
+((-3780 (*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-1265)))) (-4219 (*1 *2 *1) (-12 (-5 *2 (-644 (-943 (-225)))) (-5 *1 (-1265)))) (-4365 (*1 *1) (-5 *1 (-1265))) (-2193 (*1 *1 *1) (-5 *1 (-1265))) (-4304 (*1 *2 *1) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1265)))) (-4304 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1265)))) (-2193 (*1 *1 *2 *3) (-12 (-5 *2 (-470)) (-5 *3 (-644 (-264))) (-5 *1 (-1265)))) (-3270 (*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5) (-12 (-5 *3 (-921)) (-5 *4 (-225)) (-5 *5 (-566)) (-5 *6 (-874)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2793 (*1 *2 *1) (-12 (-5 *2 (-1264 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -2089 (-566)) (|:| -3140 (-566)) (|:| |spline| (-566)) (|:| -4350 (-566)) (|:| |axesColor| (-874)) (|:| -3197 (-566)) (|:| |unitsColor| (-874)) (|:| |showing| (-566))))) (-5 *1 (-1265)))) (-3285 (*1 *2 *1) (-12 (-5 *2 (-1264 (-3 (-470) "undefined"))) (-5 *1 (-1265)))) (-3373 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2858 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-470)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-1452 (*1 *2 *1 *3) (-12 (-5 *3 (-921)) (-5 *2 (-470)) (-5 *1 (-1265)))) (-4350 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-4350 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-874)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3197 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3197 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-874)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2089 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3861 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3140 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-1383 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-1713 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2153 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-771)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2239 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-921)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2939 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-921)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3813 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3526 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-3958 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-470)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-4121 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))) (-1740 (*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1265)))) (-1740 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1265)))) (-1740 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-1265)))) (-1716 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1265)))) (-2050 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1265)))))
+(-13 (-1099) (-10 -8 (-15 -4219 ((-644 (-943 (-225))) $)) (-15 -4365 ($)) (-15 -2193 ($ $)) (-15 -4304 ((-644 (-264)) $)) (-15 -4304 ($ $ (-644 (-264)))) (-15 -2193 ($ (-470) (-644 (-264)))) (-15 -3270 ((-1269) $ (-921) (-225) (-225) (-225) (-225) (-566) (-566) (-566) (-566) (-874) (-566) (-874) (-566))) (-15 -2793 ((-1264 (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -2089 (-566)) (|:| -3140 (-566)) (|:| |spline| (-566)) (|:| -4350 (-566)) (|:| |axesColor| (-874)) (|:| -3197 (-566)) (|:| |unitsColor| (-874)) (|:| |showing| (-566)))) $)) (-15 -3285 ((-1264 (-3 (-470) "undefined")) $)) (-15 -3373 ((-1269) $ (-1157))) (-15 -2858 ((-1269) $ (-470) (-921))) (-15 -1452 ((-470) $ (-921))) (-15 -4350 ((-1269) $ (-921) (-1157))) (-15 -4350 ((-1269) $ (-921) (-874))) (-15 -3197 ((-1269) $ (-921) (-1157))) (-15 -3197 ((-1269) $ (-921) (-874))) (-15 -2089 ((-1269) $ (-921) (-1157))) (-15 -3861 ((-1269) $ (-921) (-1157))) (-15 -3140 ((-1269) $ (-921) (-1157))) (-15 -1383 ((-1269) $ (-1157))) (-15 -1713 ((-1269) $)) (-15 -2153 ((-1269) $ (-771) (-771) (-921) (-921))) (-15 -2239 ((-1269) $ (-921) (-381) (-381))) (-15 -2939 ((-1269) $ (-921) (-381) (-381))) (-15 -3813 ((-1269) $ (-921) (-1157))) (-15 -3526 ((-1269) $ (-771) (-771))) (-15 -3958 ((-1269) $ (-470) (-921))) (-15 -4121 ((-1269) $ (-921) (-921))) (-15 -1740 ((-1157) $ (-1157))) (-15 -1740 ((-1157) $ (-1157) (-1157))) (-15 -1740 ((-1157) $ (-1157) (-644 (-1157)))) (-15 -1716 ((-1269) $)) (-15 -2050 ((-566) $)) (-15 -3780 ((-862) $))))
+((-3009 (((-112) $ $) NIL)) (-3961 (((-1269) $ (-381)) 172) (((-1269) $ (-381) (-381) (-381)) 173)) (-1740 (((-1157) $ (-1157)) 182) (((-1157) $ (-1157) (-1157)) 180) (((-1157) $ (-1157) (-644 (-1157))) 179)) (-4079 (($) 67)) (-3164 (((-1269) $ (-381) (-381) (-381) (-381) (-381)) 144) (((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $) 142) (((-1269) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) 143) (((-1269) $ (-566) (-566) (-381) (-381) (-381)) 147) (((-1269) $ (-381) (-381)) 148) (((-1269) $ (-381) (-381) (-381)) 155)) (-3200 (((-381)) 125) (((-381) (-381)) 126)) (-3157 (((-381)) 120) (((-381) (-381)) 122)) (-3024 (((-381)) 123) (((-381) (-381)) 124)) (-2143 (((-381)) 129) (((-381) (-381)) 130)) (-2656 (((-381)) 127) (((-381) (-381)) 128)) (-2939 (((-1269) $ (-381) (-381)) 174)) (-3373 (((-1269) $ (-1157)) 156)) (-3649 (((-1132 (-225)) $) 68) (($ $ (-1132 (-225))) 69)) (-1385 (((-1269) $ (-1157)) 190)) (-3445 (((-1269) $ (-1157)) 191)) (-2425 (((-1269) $ (-381) (-381)) 154) (((-1269) $ (-566) (-566)) 171)) (-4121 (((-1269) $ (-921) (-921)) 163)) (-1716 (((-1269) $) 140)) (-2475 (((-1269) $ (-1157)) 189)) (-2688 (((-1269) $ (-1157)) 137)) (-4304 (((-644 (-264)) $) 70) (($ $ (-644 (-264))) 71)) (-3526 (((-1269) $ (-771) (-771)) 162)) (-1804 (((-1269) $ (-771) (-943 (-225))) 196)) (-3352 (($ $) 73) (($ (-1132 (-225)) (-1157)) 74) (($ (-1132 (-225)) (-644 (-264))) 75)) (-1339 (((-1269) $ (-381) (-381) (-381)) 134)) (-2402 (((-1157) $) NIL)) (-2050 (((-566) $) 131)) (-1657 (((-1269) $ (-381)) 177)) (-2515 (((-1269) $ (-381)) 194)) (-4056 (((-1119) $) NIL)) (-2816 (((-1269) $ (-381)) 193)) (-2085 (((-1269) $ (-1157)) 139)) (-2153 (((-1269) $ (-771) (-771) (-921) (-921)) 161)) (-2280 (((-1269) $ (-1157)) 136)) (-1383 (((-1269) $ (-1157)) 138)) (-1931 (((-1269) $ (-157) (-157)) 160)) (-3780 (((-862) $) 169)) (-1713 (((-1269) $) 141)) (-2574 (((-1269) $ (-1157)) 192)) (-3801 (((-112) $ $) NIL)) (-4350 (((-1269) $ (-1157)) 135)) (-2950 (((-112) $ $) NIL)))
+(((-1266) (-13 (-1099) (-10 -8 (-15 -3157 ((-381))) (-15 -3157 ((-381) (-381))) (-15 -3024 ((-381))) (-15 -3024 ((-381) (-381))) (-15 -3200 ((-381))) (-15 -3200 ((-381) (-381))) (-15 -2656 ((-381))) (-15 -2656 ((-381) (-381))) (-15 -2143 ((-381))) (-15 -2143 ((-381) (-381))) (-15 -4079 ($)) (-15 -3352 ($ $)) (-15 -3352 ($ (-1132 (-225)) (-1157))) (-15 -3352 ($ (-1132 (-225)) (-644 (-264)))) (-15 -3649 ((-1132 (-225)) $)) (-15 -3649 ($ $ (-1132 (-225)))) (-15 -1804 ((-1269) $ (-771) (-943 (-225)))) (-15 -4304 ((-644 (-264)) $)) (-15 -4304 ($ $ (-644 (-264)))) (-15 -3526 ((-1269) $ (-771) (-771))) (-15 -4121 ((-1269) $ (-921) (-921))) (-15 -3373 ((-1269) $ (-1157))) (-15 -2153 ((-1269) $ (-771) (-771) (-921) (-921))) (-15 -3164 ((-1269) $ (-381) (-381) (-381) (-381) (-381))) (-15 -3164 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $)) (-15 -3164 ((-1269) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3164 ((-1269) $ (-566) (-566) (-381) (-381) (-381))) (-15 -3164 ((-1269) $ (-381) (-381))) (-15 -3164 ((-1269) $ (-381) (-381) (-381))) (-15 -1383 ((-1269) $ (-1157))) (-15 -4350 ((-1269) $ (-1157))) (-15 -2280 ((-1269) $ (-1157))) (-15 -2688 ((-1269) $ (-1157))) (-15 -2085 ((-1269) $ (-1157))) (-15 -2425 ((-1269) $ (-381) (-381))) (-15 -2425 ((-1269) $ (-566) (-566))) (-15 -3961 ((-1269) $ (-381))) (-15 -3961 ((-1269) $ (-381) (-381) (-381))) (-15 -2939 ((-1269) $ (-381) (-381))) (-15 -2475 ((-1269) $ (-1157))) (-15 -2816 ((-1269) $ (-381))) (-15 -2515 ((-1269) $ (-381))) (-15 -1385 ((-1269) $ (-1157))) (-15 -3445 ((-1269) $ (-1157))) (-15 -2574 ((-1269) $ (-1157))) (-15 -1339 ((-1269) $ (-381) (-381) (-381))) (-15 -1657 ((-1269) $ (-381))) (-15 -1716 ((-1269) $)) (-15 -1931 ((-1269) $ (-157) (-157))) (-15 -1740 ((-1157) $ (-1157))) (-15 -1740 ((-1157) $ (-1157) (-1157))) (-15 -1740 ((-1157) $ (-1157) (-644 (-1157)))) (-15 -1713 ((-1269) $)) (-15 -2050 ((-566) $))))) (T -1266))
+((-3157 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-3157 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-3024 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-3024 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-3200 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-3200 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2656 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2656 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2143 (*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-2143 (*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))) (-4079 (*1 *1) (-5 *1 (-1266))) (-3352 (*1 *1 *1) (-5 *1 (-1266))) (-3352 (*1 *1 *2 *3) (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-1157)) (-5 *1 (-1266)))) (-3352 (*1 *1 *2 *3) (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-644 (-264))) (-5 *1 (-1266)))) (-3649 (*1 *2 *1) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1266)))) (-3649 (*1 *1 *1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1266)))) (-1804 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-771)) (-5 *4 (-943 (-225))) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-4304 (*1 *2 *1) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1266)))) (-4304 (*1 *1 *1 *2) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1266)))) (-3526 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-4121 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3373 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2153 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-771)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3164 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3164 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *1 (-1266)))) (-3164 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225)))) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3164 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-566)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3164 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3164 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1383 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-4350 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2280 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2688 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2085 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2425 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2425 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3961 (*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3961 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2939 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2475 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2816 (*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2515 (*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1385 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-3445 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2574 (*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1339 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1657 (*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1716 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1931 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-157)) (-5 *2 (-1269)) (-5 *1 (-1266)))) (-1740 (*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1266)))) (-1740 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1266)))) (-1740 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-1266)))) (-1713 (*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1266)))) (-2050 (*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1266)))))
+(-13 (-1099) (-10 -8 (-15 -3157 ((-381))) (-15 -3157 ((-381) (-381))) (-15 -3024 ((-381))) (-15 -3024 ((-381) (-381))) (-15 -3200 ((-381))) (-15 -3200 ((-381) (-381))) (-15 -2656 ((-381))) (-15 -2656 ((-381) (-381))) (-15 -2143 ((-381))) (-15 -2143 ((-381) (-381))) (-15 -4079 ($)) (-15 -3352 ($ $)) (-15 -3352 ($ (-1132 (-225)) (-1157))) (-15 -3352 ($ (-1132 (-225)) (-644 (-264)))) (-15 -3649 ((-1132 (-225)) $)) (-15 -3649 ($ $ (-1132 (-225)))) (-15 -1804 ((-1269) $ (-771) (-943 (-225)))) (-15 -4304 ((-644 (-264)) $)) (-15 -4304 ($ $ (-644 (-264)))) (-15 -3526 ((-1269) $ (-771) (-771))) (-15 -4121 ((-1269) $ (-921) (-921))) (-15 -3373 ((-1269) $ (-1157))) (-15 -2153 ((-1269) $ (-771) (-771) (-921) (-921))) (-15 -3164 ((-1269) $ (-381) (-381) (-381) (-381) (-381))) (-15 -3164 ((-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))) $)) (-15 -3164 ((-1269) $ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225)) (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225)) (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))) (-15 -3164 ((-1269) $ (-566) (-566) (-381) (-381) (-381))) (-15 -3164 ((-1269) $ (-381) (-381))) (-15 -3164 ((-1269) $ (-381) (-381) (-381))) (-15 -1383 ((-1269) $ (-1157))) (-15 -4350 ((-1269) $ (-1157))) (-15 -2280 ((-1269) $ (-1157))) (-15 -2688 ((-1269) $ (-1157))) (-15 -2085 ((-1269) $ (-1157))) (-15 -2425 ((-1269) $ (-381) (-381))) (-15 -2425 ((-1269) $ (-566) (-566))) (-15 -3961 ((-1269) $ (-381))) (-15 -3961 ((-1269) $ (-381) (-381) (-381))) (-15 -2939 ((-1269) $ (-381) (-381))) (-15 -2475 ((-1269) $ (-1157))) (-15 -2816 ((-1269) $ (-381))) (-15 -2515 ((-1269) $ (-381))) (-15 -1385 ((-1269) $ (-1157))) (-15 -3445 ((-1269) $ (-1157))) (-15 -2574 ((-1269) $ (-1157))) (-15 -1339 ((-1269) $ (-381) (-381) (-381))) (-15 -1657 ((-1269) $ (-381))) (-15 -1716 ((-1269) $)) (-15 -1931 ((-1269) $ (-157) (-157))) (-15 -1740 ((-1157) $ (-1157))) (-15 -1740 ((-1157) $ (-1157) (-1157))) (-15 -1740 ((-1157) $ (-1157) (-644 (-1157)))) (-15 -1713 ((-1269) $)) (-15 -2050 ((-566) $))))
+((-3716 (((-644 (-1157)) (-644 (-1157))) 104) (((-644 (-1157))) 96)) (-2180 (((-644 (-1157))) 94)) (-2862 (((-644 (-921)) (-644 (-921))) 69) (((-644 (-921))) 64)) (-1750 (((-644 (-771)) (-644 (-771))) 61) (((-644 (-771))) 55)) (-2397 (((-1269)) 71)) (-2164 (((-921) (-921)) 87) (((-921)) 86)) (-2879 (((-921) (-921)) 85) (((-921)) 84)) (-3419 (((-874) (-874)) 81) (((-874)) 80)) (-3389 (((-225)) 91) (((-225) (-381)) 93)) (-2403 (((-921)) 88) (((-921) (-921)) 89)) (-2223 (((-921) (-921)) 83) (((-921)) 82)) (-3054 (((-874) (-874)) 75) (((-874)) 73)) (-2967 (((-874) (-874)) 77) (((-874)) 76)) (-2160 (((-874) (-874)) 79) (((-874)) 78)))
+(((-1267) (-10 -7 (-15 -3054 ((-874))) (-15 -3054 ((-874) (-874))) (-15 -2967 ((-874))) (-15 -2967 ((-874) (-874))) (-15 -2160 ((-874))) (-15 -2160 ((-874) (-874))) (-15 -3419 ((-874))) (-15 -3419 ((-874) (-874))) (-15 -2223 ((-921))) (-15 -2223 ((-921) (-921))) (-15 -1750 ((-644 (-771)))) (-15 -1750 ((-644 (-771)) (-644 (-771)))) (-15 -2862 ((-644 (-921)))) (-15 -2862 ((-644 (-921)) (-644 (-921)))) (-15 -2397 ((-1269))) (-15 -3716 ((-644 (-1157)))) (-15 -3716 ((-644 (-1157)) (-644 (-1157)))) (-15 -2180 ((-644 (-1157)))) (-15 -2879 ((-921))) (-15 -2164 ((-921))) (-15 -2879 ((-921) (-921))) (-15 -2164 ((-921) (-921))) (-15 -2403 ((-921) (-921))) (-15 -2403 ((-921))) (-15 -3389 ((-225) (-381))) (-15 -3389 ((-225))))) (T -1267))
+((-3389 (*1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-1267)))) (-3389 (*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-225)) (-5 *1 (-1267)))) (-2403 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-2403 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-2164 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-2879 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-2164 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-2879 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-2180 (*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267)))) (-3716 (*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267)))) (-3716 (*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267)))) (-2397 (*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1267)))) (-2862 (*1 *2 *2) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1267)))) (-2862 (*1 *2) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1267)))) (-1750 (*1 *2 *2) (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1267)))) (-1750 (*1 *2) (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1267)))) (-2223 (*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-2223 (*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))) (-3419 (*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-3419 (*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-2160 (*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-2160 (*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-2967 (*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-2967 (*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-3054 (*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))) (-3054 (*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))))
+(-10 -7 (-15 -3054 ((-874))) (-15 -3054 ((-874) (-874))) (-15 -2967 ((-874))) (-15 -2967 ((-874) (-874))) (-15 -2160 ((-874))) (-15 -2160 ((-874) (-874))) (-15 -3419 ((-874))) (-15 -3419 ((-874) (-874))) (-15 -2223 ((-921))) (-15 -2223 ((-921) (-921))) (-15 -1750 ((-644 (-771)))) (-15 -1750 ((-644 (-771)) (-644 (-771)))) (-15 -2862 ((-644 (-921)))) (-15 -2862 ((-644 (-921)) (-644 (-921)))) (-15 -2397 ((-1269))) (-15 -3716 ((-644 (-1157)))) (-15 -3716 ((-644 (-1157)) (-644 (-1157)))) (-15 -2180 ((-644 (-1157)))) (-15 -2879 ((-921))) (-15 -2164 ((-921))) (-15 -2879 ((-921) (-921))) (-15 -2164 ((-921) (-921))) (-15 -2403 ((-921) (-921))) (-15 -2403 ((-921))) (-15 -3389 ((-225) (-381))) (-15 -3389 ((-225))))
+((-2549 (((-470) (-644 (-644 (-943 (-225)))) (-644 (-264))) 22) (((-470) (-644 (-644 (-943 (-225))))) 21) (((-470) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264))) 20)) (-2465 (((-1265) (-644 (-644 (-943 (-225)))) (-644 (-264))) 33) (((-1265) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264))) 32)) (-3780 (((-1265) (-470)) 48)))
+(((-1268) (-10 -7 (-15 -2549 ((-470) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264)))) (-15 -2549 ((-470) (-644 (-644 (-943 (-225)))))) (-15 -2549 ((-470) (-644 (-644 (-943 (-225)))) (-644 (-264)))) (-15 -2465 ((-1265) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264)))) (-15 -2465 ((-1265) (-644 (-644 (-943 (-225)))) (-644 (-264)))) (-15 -3780 ((-1265) (-470))))) (T -1268))
+((-3780 (*1 *2 *3) (-12 (-5 *3 (-470)) (-5 *2 (-1265)) (-5 *1 (-1268)))) (-2465 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-1268)))) (-2465 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-874)) (-5 *5 (-921)) (-5 *6 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-1268)))) (-2549 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-644 (-264))) (-5 *2 (-470)) (-5 *1 (-1268)))) (-2549 (*1 *2 *3) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *2 (-470)) (-5 *1 (-1268)))) (-2549 (*1 *2 *3 *4 *4 *5 *6) (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-874)) (-5 *5 (-921)) (-5 *6 (-644 (-264))) (-5 *2 (-470)) (-5 *1 (-1268)))))
+(-10 -7 (-15 -2549 ((-470) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264)))) (-15 -2549 ((-470) (-644 (-644 (-943 (-225)))))) (-15 -2549 ((-470) (-644 (-644 (-943 (-225)))) (-644 (-264)))) (-15 -2465 ((-1265) (-644 (-644 (-943 (-225)))) (-874) (-874) (-921) (-644 (-264)))) (-15 -2465 ((-1265) (-644 (-644 (-943 (-225)))) (-644 (-264)))) (-15 -3780 ((-1265) (-470))))
+((-1616 (($) 7)) (-3780 (((-862) $) 10)))
+(((-1269) (-13 (-613 (-862)) (-10 -8 (-15 -1616 ($))))) (T -1269))
+((-1616 (*1 *1) (-5 *1 (-1269))))
+(-13 (-613 (-862)) (-10 -8 (-15 -1616 ($))))
+((-3062 (($ $ |#2|) 10)))
+(((-1270 |#1| |#2|) (-10 -8 (-15 -3062 (|#1| |#1| |#2|))) (-1271 |#2|) (-365)) (T -1270))
+NIL
+(-10 -8 (-15 -3062 (|#1| |#1| |#2|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2012 (((-134)) 33)) (-3780 (((-862) $) 12)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-2950 (((-112) $ $) 6)) (-3062 (($ $ |#1|) 34)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
(((-1271 |#1|) (-140) (-365)) (T -1271))
-((-3061 (*1 *1 *1 *2) (-12 (-4 *1 (-1271 *2)) (-4 *2 (-365)))) (-1909 (*1 *2) (-12 (-4 *1 (-1271 *3)) (-4 *3 (-365)) (-5 *2 (-134)))))
-(-13 (-717 |t#1|) (-10 -8 (-15 -3061 ($ $ |t#1|)) (-15 -1909 ((-134)))))
+((-3062 (*1 *1 *1 *2) (-12 (-4 *1 (-1271 *2)) (-4 *2 (-365)))) (-2012 (*1 *2) (-12 (-4 *1 (-1271 *3)) (-4 *3 (-365)) (-5 *2 (-134)))))
+(-13 (-717 |t#1|) (-10 -8 (-15 -3062 ($ $ |t#1|)) (-15 -2012 ((-134)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-648 |#1|) . T) ((-640 |#1|) . T) ((-717 |#1|) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1099) . T))
-((-3841 (((-644 (-1208 |#1|)) (-1175) (-1208 |#1|)) 83)) (-2948 (((-1155 (-1155 (-952 |#1|))) (-1175) (-1155 (-952 |#1|))) 63)) (-1308 (((-1 (-1155 (-1208 |#1|)) (-1155 (-1208 |#1|))) (-771) (-1208 |#1|) (-1155 (-1208 |#1|))) 74)) (-2779 (((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771)) 65)) (-2089 (((-1 (-1171 (-952 |#1|)) (-952 |#1|)) (-1175)) 32)) (-2406 (((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771)) 64)))
-(((-1272 |#1|) (-10 -7 (-15 -2779 ((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771))) (-15 -2406 ((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771))) (-15 -2948 ((-1155 (-1155 (-952 |#1|))) (-1175) (-1155 (-952 |#1|)))) (-15 -2089 ((-1 (-1171 (-952 |#1|)) (-952 |#1|)) (-1175))) (-15 -3841 ((-644 (-1208 |#1|)) (-1175) (-1208 |#1|))) (-15 -1308 ((-1 (-1155 (-1208 |#1|)) (-1155 (-1208 |#1|))) (-771) (-1208 |#1|) (-1155 (-1208 |#1|))))) (-365)) (T -1272))
-((-1308 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-771)) (-4 *6 (-365)) (-5 *4 (-1208 *6)) (-5 *2 (-1 (-1155 *4) (-1155 *4))) (-5 *1 (-1272 *6)) (-5 *5 (-1155 *4)))) (-3841 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-4 *5 (-365)) (-5 *2 (-644 (-1208 *5))) (-5 *1 (-1272 *5)) (-5 *4 (-1208 *5)))) (-2089 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1 (-1171 (-952 *4)) (-952 *4))) (-5 *1 (-1272 *4)) (-4 *4 (-365)))) (-2948 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-4 *5 (-365)) (-5 *2 (-1155 (-1155 (-952 *5)))) (-5 *1 (-1272 *5)) (-5 *4 (-1155 (-952 *5))))) (-2406 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-1155 (-952 *4)) (-1155 (-952 *4)))) (-5 *1 (-1272 *4)) (-4 *4 (-365)))) (-2779 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-1155 (-952 *4)) (-1155 (-952 *4)))) (-5 *1 (-1272 *4)) (-4 *4 (-365)))))
-(-10 -7 (-15 -2779 ((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771))) (-15 -2406 ((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771))) (-15 -2948 ((-1155 (-1155 (-952 |#1|))) (-1175) (-1155 (-952 |#1|)))) (-15 -2089 ((-1 (-1171 (-952 |#1|)) (-952 |#1|)) (-1175))) (-15 -3841 ((-644 (-1208 |#1|)) (-1175) (-1208 |#1|))) (-15 -1308 ((-1 (-1155 (-1208 |#1|)) (-1155 (-1208 |#1|))) (-771) (-1208 |#1|) (-1155 (-1208 |#1|)))))
-((-2147 (((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|) 82)) (-1925 (((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) 81)))
-(((-1273 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1925 ((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))))) (-15 -2147 ((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|))) (-351) (-1240 |#1|) (-1240 |#2|) (-411 |#2| |#3|)) (T -1273))
-((-2147 (*1 *2 *3) (-12 (-4 *4 (-351)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 *3)) (-5 *2 (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-5 *1 (-1273 *4 *3 *5 *6)) (-4 *6 (-411 *3 *5)))) (-1925 (*1 *2) (-12 (-4 *3 (-351)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| -1990 (-689 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-689 *4)))) (-5 *1 (-1273 *3 *4 *5 *6)) (-4 *6 (-411 *4 *5)))))
-(-10 -7 (-15 -1925 ((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))))) (-15 -2147 ((-2 (|:| -1990 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|)))
-((-2985 (((-112) $ $) NIL)) (-3851 (((-1134) $) 11)) (-3270 (((-1134) $) 9)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1274) (-13 (-1082) (-10 -8 (-15 -3270 ((-1134) $)) (-15 -3851 ((-1134) $))))) (T -1274))
-((-3270 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1274)))) (-3851 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1274)))))
-(-13 (-1082) (-10 -8 (-15 -3270 ((-1134) $)) (-15 -3851 ((-1134) $))))
-((-2985 (((-112) $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-1640 (((-1134) $) 9)) (-2512 (((-862) $) 15) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3122 (((-112) $ $) NIL)) (-2940 (((-112) $ $) NIL)))
-(((-1275) (-13 (-1082) (-10 -8 (-15 -1640 ((-1134) $))))) (T -1275))
-((-1640 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1275)))))
-(-13 (-1082) (-10 -8 (-15 -1640 ((-1134) $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 58)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) NIL)) (-2741 (((-112) $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-2512 (((-862) $) 81) (($ (-566)) NIL) (($ |#4|) 65) ((|#4| $) 70) (($ |#1|) NIL (|has| |#1| (-172)))) (-3795 (((-771)) NIL T CONST)) (-2968 (((-1269) (-771)) 16)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 37 T CONST)) (-2495 (($) 84 T CONST)) (-2940 (((-112) $ $) 87)) (-3061 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-3047 (($ $) 89) (($ $ $) NIL)) (-3034 (($ $ $) 63)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 91) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
-(((-1276 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-1049) (-492 |#4|) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -3061 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2968 ((-1269) (-771))))) (-1049) (-850) (-793) (-949 |#1| |#3| |#2|) (-644 |#2|) (-644 (-771)) (-771)) (T -1276))
-((-3061 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-365)) (-4 *2 (-1049)) (-4 *3 (-850)) (-4 *4 (-793)) (-14 *6 (-644 *3)) (-5 *1 (-1276 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-949 *2 *4 *3)) (-14 *7 (-644 (-771))) (-14 *8 (-771)))) (-2968 (*1 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-1049)) (-4 *5 (-850)) (-4 *6 (-793)) (-14 *8 (-644 *5)) (-5 *2 (-1269)) (-5 *1 (-1276 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-949 *4 *6 *5)) (-14 *9 (-644 *3)) (-14 *10 *3))))
-(-13 (-1049) (-492 |#4|) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -3061 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -2968 ((-1269) (-771)))))
-((-2985 (((-112) $ $) NIL)) (-2072 (((-644 (-2 (|:| -1673 $) (|:| -3509 (-644 |#4|)))) (-644 |#4|)) NIL)) (-1725 (((-644 $) (-644 |#4|)) 96)) (-2540 (((-644 |#3|) $) NIL)) (-2598 (((-112) $) NIL)) (-2740 (((-112) $) NIL (|has| |#1| (-558)))) (-4390 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3761 ((|#4| |#4| $) NIL)) (-3290 (((-2 (|:| |under| $) (|:| -4317 $) (|:| |upper| $)) $ |#3|) NIL)) (-3081 (((-112) $ (-771)) NIL)) (-4186 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417))) (((-3 |#4| "failed") $ |#3|) NIL)) (-2342 (($) NIL T CONST)) (-4179 (((-112) $) NIL (|has| |#1| (-558)))) (-4184 (((-112) $ $) NIL (|has| |#1| (-558)))) (-1576 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2398 (((-112) $) NIL (|has| |#1| (-558)))) (-3772 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 31)) (-2380 (((-644 |#4|) (-644 |#4|) $) 28 (|has| |#1| (-558)))) (-2268 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-2977 (((-3 $ "failed") (-644 |#4|)) NIL)) (-1756 (($ (-644 |#4|)) NIL)) (-4076 (((-3 $ "failed") $) 78)) (-2668 ((|#4| |#4| $) 83)) (-4093 (($ $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-2651 (($ |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-1644 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-2531 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-4200 ((|#4| |#4| $) NIL)) (-4362 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4417))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4417))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3810 (((-2 (|:| -1673 (-644 |#4|)) (|:| -3509 (-644 |#4|))) $) NIL)) (-3372 (((-644 |#4|) $) NIL (|has| $ (-6 -4417)))) (-4260 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1594 ((|#3| $) 84)) (-2744 (((-112) $ (-771)) NIL)) (-2404 (((-644 |#4|) $) 32 (|has| $ (-6 -4417)))) (-1927 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099))))) (-2935 (((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 35) (((-3 $ "failed") (-644 |#4|)) 38)) (-1323 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4418)))) (-3077 (($ (-1 |#4| |#4|) $) NIL)) (-3097 (((-644 |#3|) $) NIL)) (-3492 (((-112) |#3| $) NIL)) (-3882 (((-112) $ (-771)) NIL)) (-2878 (((-1157) $) NIL)) (-2670 (((-3 |#4| "failed") $) NIL)) (-1798 (((-644 |#4|) $) 54)) (-3377 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1687 ((|#4| |#4| $) 82)) (-2343 (((-112) $ $) 93)) (-2410 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-3257 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2930 ((|#4| |#4| $) NIL)) (-4033 (((-1119) $) NIL)) (-4062 (((-3 |#4| "failed") $) 77)) (-2126 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1583 (((-3 $ "failed") $ |#4|) NIL)) (-1938 (($ $ |#4|) NIL)) (-2822 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-2070 (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-2587 (((-112) $ $) NIL)) (-4194 (((-112) $) 75)) (-2954 (($) 46)) (-3992 (((-771) $) NIL)) (-4044 (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4417)) (|has| |#4| (-1099)))) (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-3895 (($ $) NIL)) (-3134 (((-538) $) NIL (|has| |#4| (-614 (-538))))) (-2523 (($ (-644 |#4|)) NIL)) (-1945 (($ $ |#3|) NIL)) (-1398 (($ $ |#3|) NIL)) (-2280 (($ $) NIL)) (-4287 (($ $ |#3|) NIL)) (-2512 (((-862) $) NIL) (((-644 |#4|) $) 63)) (-2748 (((-771) $) NIL (|has| |#3| (-370)))) (-3750 (((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 44) (((-3 $ "failed") (-644 |#4|)) 45)) (-3101 (((-644 $) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 73) (((-644 $) (-644 |#4|)) 74)) (-3122 (((-112) $ $) NIL)) (-4285 (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 27) (((-3 (-2 (|:| |bas| $) (|:| -3877 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3130 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) NIL)) (-3427 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4417)))) (-1427 (((-644 |#3|) $) NIL)) (-1369 (((-112) |#3| $) NIL)) (-2940 (((-112) $ $) NIL)) (-2997 (((-771) $) NIL (|has| $ (-6 -4417)))))
-(((-1277 |#1| |#2| |#3| |#4|) (-13 (-1207 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2935 ((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2935 ((-3 $ "failed") (-644 |#4|))) (-15 -3750 ((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3750 ((-3 $ "failed") (-644 |#4|))) (-15 -3101 ((-644 $) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3101 ((-644 $) (-644 |#4|))))) (-558) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -1277))
-((-2935 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1277 *5 *6 *7 *8)))) (-2935 (*1 *1 *2) (|partial| -12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1277 *3 *4 *5 *6)))) (-3750 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1277 *5 *6 *7 *8)))) (-3750 (*1 *1 *2) (|partial| -12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1277 *3 *4 *5 *6)))) (-3101 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558)) (-4 *7 (-793)) (-4 *8 (-850)) (-5 *2 (-644 (-1277 *6 *7 *8 *9))) (-5 *1 (-1277 *6 *7 *8 *9)))) (-3101 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-1277 *4 *5 *6 *7))) (-5 *1 (-1277 *4 *5 *6 *7)))))
-(-13 (-1207 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2935 ((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2935 ((-3 $ "failed") (-644 |#4|))) (-15 -3750 ((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3750 ((-3 $ "failed") (-644 |#4|))) (-15 -3101 ((-644 $) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3101 ((-644 $) (-644 |#4|)))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-4126 (((-3 $ "failed") $ $) 20)) (-2342 (($) 18 T CONST)) (-1579 (((-3 $ "failed") $) 37)) (-2741 (((-112) $) 35)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 45)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 47) (($ |#1| $) 46)))
+((-3217 (((-644 (-1208 |#1|)) (-1175) (-1208 |#1|)) 83)) (-1834 (((-1155 (-1155 (-952 |#1|))) (-1175) (-1155 (-952 |#1|))) 63)) (-1588 (((-1 (-1155 (-1208 |#1|)) (-1155 (-1208 |#1|))) (-771) (-1208 |#1|) (-1155 (-1208 |#1|))) 74)) (-2636 (((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771)) 65)) (-3215 (((-1 (-1171 (-952 |#1|)) (-952 |#1|)) (-1175)) 32)) (-3289 (((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771)) 64)))
+(((-1272 |#1|) (-10 -7 (-15 -2636 ((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771))) (-15 -3289 ((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771))) (-15 -1834 ((-1155 (-1155 (-952 |#1|))) (-1175) (-1155 (-952 |#1|)))) (-15 -3215 ((-1 (-1171 (-952 |#1|)) (-952 |#1|)) (-1175))) (-15 -3217 ((-644 (-1208 |#1|)) (-1175) (-1208 |#1|))) (-15 -1588 ((-1 (-1155 (-1208 |#1|)) (-1155 (-1208 |#1|))) (-771) (-1208 |#1|) (-1155 (-1208 |#1|))))) (-365)) (T -1272))
+((-1588 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-771)) (-4 *6 (-365)) (-5 *4 (-1208 *6)) (-5 *2 (-1 (-1155 *4) (-1155 *4))) (-5 *1 (-1272 *6)) (-5 *5 (-1155 *4)))) (-3217 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-4 *5 (-365)) (-5 *2 (-644 (-1208 *5))) (-5 *1 (-1272 *5)) (-5 *4 (-1208 *5)))) (-3215 (*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1 (-1171 (-952 *4)) (-952 *4))) (-5 *1 (-1272 *4)) (-4 *4 (-365)))) (-1834 (*1 *2 *3 *4) (-12 (-5 *3 (-1175)) (-4 *5 (-365)) (-5 *2 (-1155 (-1155 (-952 *5)))) (-5 *1 (-1272 *5)) (-5 *4 (-1155 (-952 *5))))) (-3289 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-1155 (-952 *4)) (-1155 (-952 *4)))) (-5 *1 (-1272 *4)) (-4 *4 (-365)))) (-2636 (*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-1155 (-952 *4)) (-1155 (-952 *4)))) (-5 *1 (-1272 *4)) (-4 *4 (-365)))))
+(-10 -7 (-15 -2636 ((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771))) (-15 -3289 ((-1 (-1155 (-952 |#1|)) (-1155 (-952 |#1|))) (-771))) (-15 -1834 ((-1155 (-1155 (-952 |#1|))) (-1175) (-1155 (-952 |#1|)))) (-15 -3215 ((-1 (-1171 (-952 |#1|)) (-952 |#1|)) (-1175))) (-15 -3217 ((-644 (-1208 |#1|)) (-1175) (-1208 |#1|))) (-15 -1588 ((-1 (-1155 (-1208 |#1|)) (-1155 (-1208 |#1|))) (-771) (-1208 |#1|) (-1155 (-1208 |#1|)))))
+((-2593 (((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|) 82)) (-2161 (((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|)))) 81)))
+(((-1273 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2161 ((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))))) (-15 -2593 ((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|))) (-351) (-1240 |#1|) (-1240 |#2|) (-411 |#2| |#3|)) (T -1273))
+((-2593 (*1 *2 *3) (-12 (-4 *4 (-351)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 *3)) (-5 *2 (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-689 *3)))) (-5 *1 (-1273 *4 *3 *5 *6)) (-4 *6 (-411 *3 *5)))) (-2161 (*1 *2) (-12 (-4 *3 (-351)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 *4)) (-5 *2 (-2 (|:| -1575 (-689 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-689 *4)))) (-5 *1 (-1273 *3 *4 *5 *6)) (-4 *6 (-411 *4 *5)))))
+(-10 -7 (-15 -2161 ((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))))) (-15 -2593 ((-2 (|:| -1575 (-689 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-689 |#2|))) |#2|)))
+((-3009 (((-112) $ $) NIL)) (-3316 (((-1134) $) 11)) (-2645 (((-1134) $) 9)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 17) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1274) (-13 (-1082) (-10 -8 (-15 -2645 ((-1134) $)) (-15 -3316 ((-1134) $))))) (T -1274))
+((-2645 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1274)))) (-3316 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1274)))))
+(-13 (-1082) (-10 -8 (-15 -2645 ((-1134) $)) (-15 -3316 ((-1134) $))))
+((-3009 (((-112) $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2445 (((-1134) $) 9)) (-3780 (((-862) $) 15) (($ (-1180)) NIL) (((-1180) $) NIL)) (-3801 (((-112) $ $) NIL)) (-2950 (((-112) $ $) NIL)))
+(((-1275) (-13 (-1082) (-10 -8 (-15 -2445 ((-1134) $))))) (T -1275))
+((-2445 (*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1275)))))
+(-13 (-1082) (-10 -8 (-15 -2445 ((-1134) $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 58)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) NIL)) (-3466 (((-112) $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3780 (((-862) $) 81) (($ (-566)) NIL) (($ |#4|) 65) ((|#4| $) 70) (($ |#1|) NIL (|has| |#1| (-172)))) (-3996 (((-771)) NIL T CONST)) (-1904 (((-1269) (-771)) 16)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 37 T CONST)) (-4333 (($) 84 T CONST)) (-2950 (((-112) $ $) 87)) (-3062 (((-3 $ "failed") $ $) NIL (|has| |#1| (-365)))) (-3051 (($ $) 89) (($ $ $) NIL)) (-3040 (($ $ $) 63)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 91) (($ |#1| $) NIL (|has| |#1| (-172))) (($ $ |#1|) NIL (|has| |#1| (-172)))))
+(((-1276 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-13 (-1049) (-492 |#4|) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -3062 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1904 ((-1269) (-771))))) (-1049) (-850) (-793) (-949 |#1| |#3| |#2|) (-644 |#2|) (-644 (-771)) (-771)) (T -1276))
+((-3062 (*1 *1 *1 *1) (|partial| -12 (-4 *2 (-365)) (-4 *2 (-1049)) (-4 *3 (-850)) (-4 *4 (-793)) (-14 *6 (-644 *3)) (-5 *1 (-1276 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-949 *2 *4 *3)) (-14 *7 (-644 (-771))) (-14 *8 (-771)))) (-1904 (*1 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-1049)) (-4 *5 (-850)) (-4 *6 (-793)) (-14 *8 (-644 *5)) (-5 *2 (-1269)) (-5 *1 (-1276 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-949 *4 *6 *5)) (-14 *9 (-644 *3)) (-14 *10 *3))))
+(-13 (-1049) (-492 |#4|) (-10 -8 (IF (|has| |#1| (-172)) (-6 (-38 |#1|)) |%noBranch|) (IF (|has| |#1| (-365)) (-15 -3062 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1904 ((-1269) (-771)))))
+((-3009 (((-112) $ $) NIL)) (-3043 (((-644 (-2 (|:| -1713 $) (|:| -3537 (-644 |#4|)))) (-644 |#4|)) NIL)) (-3804 (((-644 $) (-644 |#4|)) 96)) (-2608 (((-644 |#3|) $) NIL)) (-1390 (((-112) $) NIL)) (-3455 (((-112) $) NIL (|has| |#1| (-558)))) (-1702 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3713 ((|#4| |#4| $) NIL)) (-1568 (((-2 (|:| |under| $) (|:| -2209 $) (|:| |upper| $)) $ |#3|) NIL)) (-1574 (((-112) $ (-771)) NIL)) (-1386 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3877 (($) NIL T CONST)) (-3310 (((-112) $) NIL (|has| |#1| (-558)))) (-3367 (((-112) $ $) NIL (|has| |#1| (-558)))) (-2895 (((-112) $ $) NIL (|has| |#1| (-558)))) (-3219 (((-112) $) NIL (|has| |#1| (-558)))) (-3790 (((-644 |#4|) (-644 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 31)) (-4239 (((-644 |#4|) (-644 |#4|) $) 28 (|has| |#1| (-558)))) (-4344 (((-644 |#4|) (-644 |#4|) $) NIL (|has| |#1| (-558)))) (-3066 (((-3 $ "failed") (-644 |#4|)) NIL)) (-1867 (($ (-644 |#4|)) NIL)) (-4112 (((-3 $ "failed") $) 78)) (-3963 ((|#4| |#4| $) 83)) (-4133 (($ $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-2661 (($ |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-4228 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-1991 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-3517 ((|#4| |#4| $) NIL)) (-1580 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4414))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4414))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4143 (((-2 (|:| -1713 (-644 |#4|)) (|:| -3537 (-644 |#4|))) $) NIL)) (-3799 (((-644 |#4|) $) NIL (|has| $ (-6 -4414)))) (-2848 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1887 ((|#3| $) 84)) (-3501 (((-112) $ (-771)) NIL)) (-3276 (((-644 |#4|) $) 32 (|has| $ (-6 -4414)))) (-2183 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099))))) (-1720 (((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 35) (((-3 $ "failed") (-644 |#4|)) 38)) (-3117 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4415)))) (-3152 (($ (-1 |#4| |#4|) $) NIL)) (-1711 (((-644 |#3|) $) NIL)) (-4113 (((-112) |#3| $) NIL)) (-3582 (((-112) $ (-771)) NIL)) (-2402 (((-1157) $) NIL)) (-2680 (((-3 |#4| "failed") $) NIL)) (-3329 (((-644 |#4|) $) 54)) (-2337 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1569 ((|#4| |#4| $) 82)) (-3886 (((-112) $ $) 93)) (-3331 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-558)))) (-2531 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1671 ((|#4| |#4| $) NIL)) (-4056 (((-1119) $) NIL)) (-4101 (((-3 |#4| "failed") $) 77)) (-3591 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1775 (((-3 $ "failed") $ |#4|) NIL)) (-2295 (($ $ |#4|) NIL)) (-3044 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-2095 (($ $ (-644 |#4|) (-644 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ |#4| |#4|) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-295 |#4|)) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099)))) (($ $ (-644 (-295 |#4|))) NIL (-12 (|has| |#4| (-310 |#4|)) (|has| |#4| (-1099))))) (-4372 (((-112) $ $) NIL)) (-3461 (((-112) $) 75)) (-1793 (($) 46)) (-2108 (((-771) $) NIL)) (-4067 (((-771) |#4| $) NIL (-12 (|has| $ (-6 -4414)) (|has| |#4| (-1099)))) (((-771) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3940 (($ $) NIL)) (-3204 (((-538) $) NIL (|has| |#4| (-614 (-538))))) (-3791 (($ (-644 |#4|)) NIL)) (-2363 (($ $ |#3|) NIL)) (-3513 (($ $ |#3|) NIL)) (-1360 (($ $) NIL)) (-3130 (($ $ |#3|) NIL)) (-3780 (((-862) $) NIL) (((-644 |#4|) $) 63)) (-3542 (((-771) $) NIL (|has| |#3| (-370)))) (-1724 (((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 44) (((-3 $ "failed") (-644 |#4|)) 45)) (-1748 (((-644 $) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 73) (((-644 $) (-644 |#4|)) 74)) (-3801 (((-112) $ $) NIL)) (-3107 (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4| |#4|)) 27) (((-3 (-2 (|:| |bas| $) (|:| -3918 (-644 |#4|))) "failed") (-644 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-3870 (((-112) $ (-1 (-112) |#4| (-644 |#4|))) NIL)) (-1583 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4414)))) (-3830 (((-644 |#3|) $) NIL)) (-3258 (((-112) |#3| $) NIL)) (-2950 (((-112) $ $) NIL)) (-3020 (((-771) $) NIL (|has| $ (-6 -4414)))))
+(((-1277 |#1| |#2| |#3| |#4|) (-13 (-1207 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1720 ((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1720 ((-3 $ "failed") (-644 |#4|))) (-15 -1724 ((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1724 ((-3 $ "failed") (-644 |#4|))) (-15 -1748 ((-644 $) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1748 ((-644 $) (-644 |#4|))))) (-558) (-793) (-850) (-1064 |#1| |#2| |#3|)) (T -1277))
+((-1720 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1277 *5 *6 *7 *8)))) (-1720 (*1 *1 *2) (|partial| -12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1277 *3 *4 *5 *6)))) (-1724 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8)) (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1277 *5 *6 *7 *8)))) (-1724 (*1 *1 *2) (|partial| -12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1277 *3 *4 *5 *6)))) (-1748 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-644 *9)) (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558)) (-4 *7 (-793)) (-4 *8 (-850)) (-5 *2 (-644 (-1277 *6 *7 *8 *9))) (-5 *1 (-1277 *6 *7 *8 *9)))) (-1748 (*1 *2 *3) (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-1277 *4 *5 *6 *7))) (-5 *1 (-1277 *4 *5 *6 *7)))))
+(-13 (-1207 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1720 ((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1720 ((-3 $ "failed") (-644 |#4|))) (-15 -1724 ((-3 $ "failed") (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1724 ((-3 $ "failed") (-644 |#4|))) (-15 -1748 ((-644 $) (-644 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1748 ((-644 $) (-644 |#4|)))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-4014 (((-3 $ "failed") $ $) 20)) (-3877 (($) 18 T CONST)) (-2928 (((-3 $ "failed") $) 37)) (-3466 (((-112) $) 35)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#1|) 45)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ |#1|) 47) (($ |#1| $) 46)))
(((-1278 |#1|) (-140) (-1049)) (T -1278))
NIL
(-13 (-1049) (-111 |t#1| |t#1|) (-616 |t#1|) (-10 -7 (IF (|has| |t#1| (-172)) (-6 (-38 |t#1|)) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#1|) |has| |#1| (-172)) ((-102) . T) ((-111 |#1| |#1|) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 |#1|) |has| |#1| (-172)) ((-717 |#1|) |has| |#1| (-172)) ((-726) . T) ((-1051 |#1|) . T) ((-1056 |#1|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T))
-((-2985 (((-112) $ $) 67)) (-3958 (((-112) $) NIL)) (-1719 (((-644 |#1|) $) 52)) (-1844 (($ $ (-771)) 46)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2918 (($ $ (-771)) 24 (|has| |#2| (-172))) (($ $ $) 25 (|has| |#2| (-172)))) (-2342 (($) NIL T CONST)) (-2847 (($ $ $) 70) (($ $ (-819 |#1|)) 56) (($ $ |#1|) 60)) (-2977 (((-3 (-819 |#1|) "failed") $) NIL)) (-1756 (((-819 |#1|) $) NIL)) (-3577 (($ $) 39)) (-1579 (((-3 $ "failed") $) NIL)) (-2758 (((-112) $) NIL)) (-2278 (($ $) NIL)) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-1966 (($ (-819 |#1|) |#2|) 38)) (-1867 (($ $) 40)) (-3738 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) 12)) (-1871 (((-819 |#1|) $) NIL)) (-2867 (((-819 |#1|) $) 41)) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-1388 (($ $ $) 69) (($ $ (-819 |#1|)) 58) (($ $ |#1|) 62)) (-3127 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3545 (((-819 |#1|) $) 35)) (-3557 ((|#2| $) 37)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3992 (((-771) $) 43)) (-4167 (((-112) $) 47)) (-1655 ((|#2| $) NIL)) (-2512 (((-862) $) NIL) (($ (-819 |#1|)) 30) (($ |#1|) 31) (($ |#2|) NIL) (($ (-566)) NIL)) (-3868 (((-644 |#2|) $) NIL)) (-2022 ((|#2| $ (-819 |#1|)) NIL)) (-3157 ((|#2| $ $) 76) ((|#2| $ (-819 |#1|)) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 13 T CONST)) (-2495 (($) 19 T CONST)) (-1521 (((-644 (-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2940 (((-112) $ $) 44)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 28)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#2| $) 27) (($ $ |#2|) 68) (($ |#2| (-819 |#1|)) NIL) (($ |#1| $) 33) (($ $ $) NIL)))
+((-3009 (((-112) $ $) 67)) (-3015 (((-112) $) NIL)) (-1824 (((-644 |#1|) $) 52)) (-2564 (($ $ (-771)) 46)) (-4014 (((-3 $ "failed") $ $) NIL)) (-1550 (($ $ (-771)) 24 (|has| |#2| (-172))) (($ $ $) 25 (|has| |#2| (-172)))) (-3877 (($) NIL T CONST)) (-2087 (($ $ $) 70) (($ $ (-819 |#1|)) 56) (($ $ |#1|) 60)) (-3066 (((-3 (-819 |#1|) "failed") $) NIL)) (-1867 (((-819 |#1|) $) NIL)) (-3645 (($ $) 39)) (-2928 (((-3 $ "failed") $) NIL)) (-3634 (((-112) $) NIL)) (-1337 (($ $) NIL)) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2044 (($ (-819 |#1|) |#2|) 38)) (-2781 (($ $) 40)) (-1602 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) 12)) (-2825 (((-819 |#1|) $) NIL)) (-2282 (((-819 |#1|) $) 41)) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-1987 (($ $ $) 69) (($ $ (-819 |#1|)) 58) (($ $ |#1|) 62)) (-3840 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3614 (((-819 |#1|) $) 35)) (-3626 ((|#2| $) 37)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-2108 (((-771) $) 43)) (-3201 (((-112) $) 47)) (-2460 ((|#2| $) NIL)) (-3780 (((-862) $) NIL) (($ (-819 |#1|)) 30) (($ |#1|) 31) (($ |#2|) NIL) (($ (-566)) NIL)) (-3456 (((-644 |#2|) $) NIL)) (-3756 ((|#2| $ (-819 |#1|)) NIL)) (-3223 ((|#2| $ $) 76) ((|#2| $ (-819 |#1|)) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 13 T CONST)) (-4333 (($) 19 T CONST)) (-2356 (((-644 (-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|))) $) NIL)) (-2950 (((-112) $ $) 44)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 28)) (** (($ $ (-771)) NIL) (($ $ (-921)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ |#2| $) 27) (($ $ |#2|) 68) (($ |#2| (-819 |#1|)) NIL) (($ |#1| $) 33) (($ $ $) NIL)))
(((-1279 |#1| |#2|) (-13 (-384 |#2| (-819 |#1|)) (-1285 |#1| |#2|)) (-850) (-1049)) (T -1279))
NIL
(-13 (-384 |#2| (-819 |#1|)) (-1285 |#1| |#2|))
-((-3668 ((|#3| |#3| (-771)) 30)) (-3613 ((|#3| |#3| (-771)) 36)) (-2993 ((|#3| |#3| |#3| (-771)) 37)))
-(((-1280 |#1| |#2| |#3|) (-10 -7 (-15 -3613 (|#3| |#3| (-771))) (-15 -3668 (|#3| |#3| (-771))) (-15 -2993 (|#3| |#3| |#3| (-771)))) (-13 (-1049) (-717 (-409 (-566)))) (-850) (-1285 |#2| |#1|)) (T -1280))
-((-2993 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-13 (-1049) (-717 (-409 (-566))))) (-4 *5 (-850)) (-5 *1 (-1280 *4 *5 *2)) (-4 *2 (-1285 *5 *4)))) (-3668 (*1 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-13 (-1049) (-717 (-409 (-566))))) (-4 *5 (-850)) (-5 *1 (-1280 *4 *5 *2)) (-4 *2 (-1285 *5 *4)))) (-3613 (*1 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-13 (-1049) (-717 (-409 (-566))))) (-4 *5 (-850)) (-5 *1 (-1280 *4 *5 *2)) (-4 *2 (-1285 *5 *4)))))
-(-10 -7 (-15 -3613 (|#3| |#3| (-771))) (-15 -3668 (|#3| |#3| (-771))) (-15 -2993 (|#3| |#3| |#3| (-771))))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-1719 (((-644 |#1|) $) 47)) (-4126 (((-3 $ "failed") $ $) 20)) (-2918 (($ $ $) 50 (|has| |#2| (-172))) (($ $ (-771)) 49 (|has| |#2| (-172)))) (-2342 (($) 18 T CONST)) (-2847 (($ $ |#1|) 61) (($ $ (-819 |#1|)) 60) (($ $ $) 59)) (-2977 (((-3 (-819 |#1|) "failed") $) 71)) (-1756 (((-819 |#1|) $) 72)) (-1579 (((-3 $ "failed") $) 37)) (-2758 (((-112) $) 52)) (-2278 (($ $) 51)) (-2741 (((-112) $) 35)) (-4367 (((-112) $) 57)) (-1966 (($ (-819 |#1|) |#2|) 58)) (-1867 (($ $) 56)) (-3738 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) 67)) (-1871 (((-819 |#1|) $) 68)) (-3077 (($ (-1 |#2| |#2|) $) 48)) (-1388 (($ $ |#1|) 64) (($ $ (-819 |#1|)) 63) (($ $ $) 62)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-4167 (((-112) $) 54)) (-1655 ((|#2| $) 53)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#2|) 75) (($ (-819 |#1|)) 70) (($ |#1|) 55)) (-3157 ((|#2| $ (-819 |#1|)) 66) ((|#2| $ $) 65)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ |#2| $) 74) (($ $ |#2|) 73) (($ |#1| $) 69)))
+((-3671 ((|#3| |#3| (-771)) 30)) (-4337 ((|#3| |#3| (-771)) 36)) (-2101 ((|#3| |#3| |#3| (-771)) 37)))
+(((-1280 |#1| |#2| |#3|) (-10 -7 (-15 -4337 (|#3| |#3| (-771))) (-15 -3671 (|#3| |#3| (-771))) (-15 -2101 (|#3| |#3| |#3| (-771)))) (-13 (-1049) (-717 (-409 (-566)))) (-850) (-1285 |#2| |#1|)) (T -1280))
+((-2101 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-13 (-1049) (-717 (-409 (-566))))) (-4 *5 (-850)) (-5 *1 (-1280 *4 *5 *2)) (-4 *2 (-1285 *5 *4)))) (-3671 (*1 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-13 (-1049) (-717 (-409 (-566))))) (-4 *5 (-850)) (-5 *1 (-1280 *4 *5 *2)) (-4 *2 (-1285 *5 *4)))) (-4337 (*1 *2 *2 *3) (-12 (-5 *3 (-771)) (-4 *4 (-13 (-1049) (-717 (-409 (-566))))) (-4 *5 (-850)) (-5 *1 (-1280 *4 *5 *2)) (-4 *2 (-1285 *5 *4)))))
+(-10 -7 (-15 -4337 (|#3| |#3| (-771))) (-15 -3671 (|#3| |#3| (-771))) (-15 -2101 (|#3| |#3| |#3| (-771))))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-1824 (((-644 |#1|) $) 47)) (-4014 (((-3 $ "failed") $ $) 20)) (-1550 (($ $ $) 50 (|has| |#2| (-172))) (($ $ (-771)) 49 (|has| |#2| (-172)))) (-3877 (($) 18 T CONST)) (-2087 (($ $ |#1|) 61) (($ $ (-819 |#1|)) 60) (($ $ $) 59)) (-3066 (((-3 (-819 |#1|) "failed") $) 71)) (-1867 (((-819 |#1|) $) 72)) (-2928 (((-3 $ "failed") $) 37)) (-3634 (((-112) $) 52)) (-1337 (($ $) 51)) (-3466 (((-112) $) 35)) (-1453 (((-112) $) 57)) (-2044 (($ (-819 |#1|) |#2|) 58)) (-2781 (($ $) 56)) (-1602 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) 67)) (-2825 (((-819 |#1|) $) 68)) (-3152 (($ (-1 |#2| |#2|) $) 48)) (-1987 (($ $ |#1|) 64) (($ $ (-819 |#1|)) 63) (($ $ $) 62)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-3201 (((-112) $) 54)) (-2460 ((|#2| $) 53)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#2|) 75) (($ (-819 |#1|)) 70) (($ |#1|) 55)) (-3223 ((|#2| $ (-819 |#1|)) 66) ((|#2| $ $) 65)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ |#2| $) 74) (($ $ |#2|) 73) (($ |#1| $) 69)))
(((-1281 |#1| |#2|) (-140) (-850) (-1049)) (T -1281))
-((* (*1 *1 *1 *2) (-12 (-4 *1 (-1281 *3 *2)) (-4 *3 (-850)) (-4 *2 (-1049)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-1871 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-819 *3)))) (-3738 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-2 (|:| |k| (-819 *3)) (|:| |c| *4))))) (-3157 (*1 *2 *1 *3) (-12 (-5 *3 (-819 *4)) (-4 *1 (-1281 *4 *2)) (-4 *4 (-850)) (-4 *2 (-1049)))) (-3157 (*1 *2 *1 *1) (-12 (-4 *1 (-1281 *3 *2)) (-4 *3 (-850)) (-4 *2 (-1049)))) (-1388 (*1 *1 *1 *2) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-1388 (*1 *1 *1 *2) (-12 (-5 *2 (-819 *3)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))) (-1388 (*1 *1 *1 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-2847 (*1 *1 *1 *2) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-2847 (*1 *1 *1 *2) (-12 (-5 *2 (-819 *3)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))) (-2847 (*1 *1 *1 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-1966 (*1 *1 *2 *3) (-12 (-5 *2 (-819 *4)) (-4 *4 (-850)) (-4 *1 (-1281 *4 *3)) (-4 *3 (-1049)))) (-4367 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-112)))) (-1867 (*1 *1 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-2512 (*1 *1 *2) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-4167 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-112)))) (-1655 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *2)) (-4 *3 (-850)) (-4 *2 (-1049)))) (-2758 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-112)))) (-2278 (*1 *1 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-2918 (*1 *1 *1 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)) (-4 *3 (-172)))) (-2918 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-4 *4 (-172)))) (-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))) (-1719 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-644 *3)))))
-(-13 (-1049) (-1278 |t#2|) (-1038 (-819 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -1871 ((-819 |t#1|) $)) (-15 -3738 ((-2 (|:| |k| (-819 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -3157 (|t#2| $ (-819 |t#1|))) (-15 -3157 (|t#2| $ $)) (-15 -1388 ($ $ |t#1|)) (-15 -1388 ($ $ (-819 |t#1|))) (-15 -1388 ($ $ $)) (-15 -2847 ($ $ |t#1|)) (-15 -2847 ($ $ (-819 |t#1|))) (-15 -2847 ($ $ $)) (-15 -1966 ($ (-819 |t#1|) |t#2|)) (-15 -4367 ((-112) $)) (-15 -1867 ($ $)) (-15 -2512 ($ |t#1|)) (-15 -4167 ((-112) $)) (-15 -1655 (|t#2| $)) (-15 -2758 ((-112) $)) (-15 -2278 ($ $)) (IF (|has| |t#2| (-172)) (PROGN (-15 -2918 ($ $ $)) (-15 -2918 ($ $ (-771)))) |%noBranch|) (-15 -3077 ($ (-1 |t#2| |t#2|) $)) (-15 -1719 ((-644 |t#1|) $)) (IF (|has| |t#2| (-6 -4410)) (-6 -4410) |%noBranch|)))
+((* (*1 *1 *1 *2) (-12 (-4 *1 (-1281 *3 *2)) (-4 *3 (-850)) (-4 *2 (-1049)))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-2825 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-819 *3)))) (-1602 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-2 (|:| |k| (-819 *3)) (|:| |c| *4))))) (-3223 (*1 *2 *1 *3) (-12 (-5 *3 (-819 *4)) (-4 *1 (-1281 *4 *2)) (-4 *4 (-850)) (-4 *2 (-1049)))) (-3223 (*1 *2 *1 *1) (-12 (-4 *1 (-1281 *3 *2)) (-4 *3 (-850)) (-4 *2 (-1049)))) (-1987 (*1 *1 *1 *2) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-1987 (*1 *1 *1 *2) (-12 (-5 *2 (-819 *3)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))) (-1987 (*1 *1 *1 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-2087 (*1 *1 *1 *2) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-2087 (*1 *1 *1 *2) (-12 (-5 *2 (-819 *3)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))) (-2087 (*1 *1 *1 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-2044 (*1 *1 *2 *3) (-12 (-5 *2 (-819 *4)) (-4 *4 (-850)) (-4 *1 (-1281 *4 *3)) (-4 *3 (-1049)))) (-1453 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-112)))) (-2781 (*1 *1 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-3780 (*1 *1 *2) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-3201 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-112)))) (-2460 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *2)) (-4 *3 (-850)) (-4 *2 (-1049)))) (-3634 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-112)))) (-1337 (*1 *1 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))) (-1550 (*1 *1 *1 *1) (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)) (-4 *3 (-172)))) (-1550 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-4 *4 (-172)))) (-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))) (-1824 (*1 *2 *1) (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-644 *3)))))
+(-13 (-1049) (-1278 |t#2|) (-1038 (-819 |t#1|)) (-10 -8 (-15 * ($ |t#1| $)) (-15 * ($ $ |t#2|)) (-15 -2825 ((-819 |t#1|) $)) (-15 -1602 ((-2 (|:| |k| (-819 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -3223 (|t#2| $ (-819 |t#1|))) (-15 -3223 (|t#2| $ $)) (-15 -1987 ($ $ |t#1|)) (-15 -1987 ($ $ (-819 |t#1|))) (-15 -1987 ($ $ $)) (-15 -2087 ($ $ |t#1|)) (-15 -2087 ($ $ (-819 |t#1|))) (-15 -2087 ($ $ $)) (-15 -2044 ($ (-819 |t#1|) |t#2|)) (-15 -1453 ((-112) $)) (-15 -2781 ($ $)) (-15 -3780 ($ |t#1|)) (-15 -3201 ((-112) $)) (-15 -2460 (|t#2| $)) (-15 -3634 ((-112) $)) (-15 -1337 ($ $)) (IF (|has| |t#2| (-172)) (PROGN (-15 -1550 ($ $ $)) (-15 -1550 ($ $ (-771)))) |%noBranch|) (-15 -3152 ($ (-1 |t#2| |t#2|) $)) (-15 -1824 ((-644 |t#1|) $)) (IF (|has| |t#2| (-6 -4407)) (-6 -4407) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-172)) ((-102) . T) ((-111 |#2| |#2|) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 #0=(-819 |#1|)) . T) ((-616 |#2|) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#2|) . T) ((-646 $) . T) ((-648 |#2|) . T) ((-648 $) . T) ((-640 |#2|) |has| |#2| (-172)) ((-717 |#2|) |has| |#2| (-172)) ((-726) . T) ((-1038 #0#) . T) ((-1051 |#2|) . T) ((-1056 |#2|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1278 |#2|) . T))
-((-3417 (((-112) $) 15)) (-1369 (((-112) $) 14)) (-2752 (($ $) 19) (($ $ (-771)) 21)))
-(((-1282 |#1| |#2|) (-10 -8 (-15 -2752 (|#1| |#1| (-771))) (-15 -2752 (|#1| |#1|)) (-15 -3417 ((-112) |#1|)) (-15 -1369 ((-112) |#1|))) (-1283 |#2|) (-365)) (T -1282))
+((-1478 (((-112) $) 15)) (-3258 (((-112) $) 14)) (-3583 (($ $) 19) (($ $ (-771)) 21)))
+(((-1282 |#1| |#2|) (-10 -8 (-15 -3583 (|#1| |#1| (-771))) (-15 -3583 (|#1| |#1|)) (-15 -1478 ((-112) |#1|)) (-15 -3258 ((-112) |#1|))) (-1283 |#2|) (-365)) (T -1282))
NIL
-(-10 -8 (-15 -2752 (|#1| |#1| (-771))) (-15 -2752 (|#1| |#1|)) (-15 -3417 ((-112) |#1|)) (-15 -1369 ((-112) |#1|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-2330 (((-2 (|:| -3803 $) (|:| -4404 $) (|:| |associate| $)) $) 47)) (-3653 (($ $) 46)) (-2152 (((-112) $) 44)) (-3417 (((-112) $) 104)) (-3258 (((-771)) 100)) (-4126 (((-3 $ "failed") $ $) 20)) (-2857 (($ $) 81)) (-1370 (((-420 $) $) 80)) (-1561 (((-112) $ $) 65)) (-2342 (($) 18 T CONST)) (-2977 (((-3 |#1| "failed") $) 111)) (-1756 ((|#1| $) 112)) (-2926 (($ $ $) 61)) (-1579 (((-3 $ "failed") $) 37)) (-2938 (($ $ $) 62)) (-1470 (((-2 (|:| -3157 (-644 $)) (|:| -4067 $)) (-644 $)) 57)) (-3626 (($ $ (-771)) 97 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) 96 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2635 (((-112) $) 79)) (-2716 (((-833 (-921)) $) 94 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2741 (((-112) $) 35)) (-3651 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2184 (($ $ $) 52) (($ (-644 $)) 51)) (-2878 (((-1157) $) 10)) (-2626 (($ $) 78)) (-3751 (((-112) $) 103)) (-4033 (((-1119) $) 11)) (-4319 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2222 (($ $ $) 54) (($ (-644 $)) 53)) (-2391 (((-420 $) $) 82)) (-2003 (((-833 (-921))) 101)) (-1665 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4067 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2972 (((-3 $ "failed") $ $) 48)) (-3819 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-1813 (((-771) $) 64)) (-2347 (((-2 (|:| -2760 $) (|:| -1644 $)) $ $) 63)) (-3379 (((-3 (-771) "failed") $ $) 95 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1909 (((-134)) 109)) (-3992 (((-833 (-921)) $) 102)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ |#1|) 110)) (-3842 (((-3 $ "failed") $) 93 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-1634 (((-112) $ $) 45)) (-1369 (((-112) $) 105)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2752 (($ $) 99 (|has| |#1| (-370))) (($ $ (-771)) 98 (|has| |#1| (-370)))) (-2940 (((-112) $ $) 6)) (-3061 (($ $ $) 73) (($ $ |#1|) 108)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75) (($ $ |#1|) 107) (($ |#1| $) 106)))
+(-10 -8 (-15 -3583 (|#1| |#1| (-771))) (-15 -3583 (|#1| |#1|)) (-15 -1478 ((-112) |#1|)) (-15 -3258 ((-112) |#1|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-3761 (((-2 (|:| -4065 $) (|:| -4401 $) (|:| |associate| $)) $) 47)) (-1968 (($ $) 46)) (-2644 (((-112) $) 44)) (-1478 (((-112) $) 104)) (-2541 (((-771)) 100)) (-4014 (((-3 $ "failed") $ $) 20)) (-2179 (($ $) 81)) (-3271 (((-420 $) $) 80)) (-2738 (((-112) $ $) 65)) (-3877 (($) 18 T CONST)) (-3066 (((-3 |#1| "failed") $) 111)) (-1867 ((|#1| $) 112)) (-2949 (($ $ $) 61)) (-2928 (((-3 $ "failed") $) 37)) (-2960 (($ $ $) 62)) (-3041 (((-2 (|:| -3223 (-644 $)) (|:| -4152 $)) (-644 $)) 57)) (-2901 (($ $ (-771)) 97 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370)))) (($ $) 96 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-1784 (((-112) $) 79)) (-3227 (((-833 (-921)) $) 94 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3466 (((-112) $) 35)) (-1947 (((-3 (-644 $) "failed") (-644 $) $) 58)) (-2197 (($ $ $) 52) (($ (-644 $)) 51)) (-2402 (((-1157) $) 10)) (-3584 (($ $) 78)) (-1737 (((-112) $) 103)) (-4056 (((-1119) $) 11)) (-2221 (((-1171 $) (-1171 $) (-1171 $)) 50)) (-2235 (($ $ $) 54) (($ (-644 $)) 53)) (-2473 (((-420 $) $) 82)) (-1723 (((-833 (-921))) 101)) (-1325 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -4152 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2997 (((-3 $ "failed") $ $) 48)) (-4208 (((-3 (-644 $) "failed") (-644 $) $) 56)) (-3470 (((-771) $) 64)) (-3919 (((-2 (|:| -3644 $) (|:| -4228 $)) $ $) 63)) (-2347 (((-3 (-771) "failed") $ $) 95 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-2012 (((-134)) 109)) (-2108 (((-833 (-921)) $) 102)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ $) 49) (($ (-409 (-566))) 74) (($ |#1|) 110)) (-3226 (((-3 $ "failed") $) 93 (-2805 (|has| |#1| (-145)) (|has| |#1| (-370))))) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2278 (((-112) $ $) 45)) (-3258 (((-112) $) 105)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-3583 (($ $) 99 (|has| |#1| (-370))) (($ $ (-771)) 98 (|has| |#1| (-370)))) (-2950 (((-112) $ $) 6)) (-3062 (($ $ $) 73) (($ $ |#1|) 108)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36) (($ $ (-566)) 77)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ $ (-409 (-566))) 76) (($ (-409 (-566)) $) 75) (($ $ |#1|) 107) (($ |#1| $) 106)))
(((-1283 |#1|) (-140) (-365)) (T -1283))
-((-1369 (*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))) (-3417 (*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))) (-3751 (*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))) (-3992 (*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-833 (-921))))) (-2003 (*1 *2) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-833 (-921))))) (-3258 (*1 *2) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-771)))) (-2752 (*1 *1 *1) (-12 (-4 *1 (-1283 *2)) (-4 *2 (-365)) (-4 *2 (-370)))) (-2752 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-4 *3 (-370)))))
-(-13 (-365) (-1038 |t#1|) (-1271 |t#1|) (-10 -8 (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-404)) |%noBranch|) (-15 -1369 ((-112) $)) (-15 -3417 ((-112) $)) (-15 -3751 ((-112) $)) (-15 -3992 ((-833 (-921)) $)) (-15 -2003 ((-833 (-921)))) (-15 -3258 ((-771))) (IF (|has| |t#1| (-370)) (PROGN (-6 (-404)) (-15 -2752 ($ $)) (-15 -2752 ($ $ (-771)))) |%noBranch|)))
+((-3258 (*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))) (-1478 (*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))) (-1737 (*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))) (-2108 (*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-833 (-921))))) (-1723 (*1 *2) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-833 (-921))))) (-2541 (*1 *2) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-771)))) (-3583 (*1 *1 *1) (-12 (-4 *1 (-1283 *2)) (-4 *2 (-365)) (-4 *2 (-370)))) (-3583 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-4 *3 (-370)))))
+(-13 (-365) (-1038 |t#1|) (-1271 |t#1|) (-10 -8 (IF (|has| |t#1| (-147)) (-6 (-147)) |%noBranch|) (IF (|has| |t#1| (-145)) (-6 (-404)) |%noBranch|) (-15 -3258 ((-112) $)) (-15 -1478 ((-112) $)) (-15 -1737 ((-112) $)) (-15 -2108 ((-833 (-921)) $)) (-15 -1723 ((-833 (-921)))) (-15 -2541 ((-771))) (IF (|has| |t#1| (-370)) (PROGN (-6 (-404)) (-15 -3583 ($ $)) (-15 -3583 ($ $ (-771)))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-409 (-566))) . T) ((-38 $) . T) ((-102) . T) ((-111 #0# #0#) . T) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-131) . T) ((-145) -2805 (|has| |#1| (-370)) (|has| |#1| (-145))) ((-147) |has| |#1| (-147)) ((-616 #0#) . T) ((-616 (-566)) . T) ((-616 |#1|) . T) ((-616 $) . T) ((-613 (-862)) . T) ((-172) . T) ((-243) . T) ((-291) . T) ((-308) . T) ((-365) . T) ((-404) -2805 (|has| |#1| (-370)) (|has| |#1| (-145))) ((-454) . T) ((-558) . T) ((-646 #0#) . T) ((-646 (-566)) . T) ((-646 |#1|) . T) ((-646 $) . T) ((-648 #0#) . T) ((-648 |#1|) . T) ((-648 $) . T) ((-640 #0#) . T) ((-640 |#1|) . T) ((-640 $) . T) ((-717 #0#) . T) ((-717 |#1|) . T) ((-717 $) . T) ((-726) . T) ((-920) . T) ((-1038 |#1|) . T) ((-1051 #0#) . T) ((-1051 |#1|) . T) ((-1051 $) . T) ((-1056 #0#) . T) ((-1056 |#1|) . T) ((-1056 $) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1218) . T) ((-1271 |#1|) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-1719 (((-644 |#1|) $) 99)) (-1844 (($ $ (-771)) 103)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2918 (($ $ $) NIL (|has| |#2| (-172))) (($ $ (-771)) NIL (|has| |#2| (-172)))) (-2342 (($) NIL T CONST)) (-2847 (($ $ |#1|) NIL) (($ $ (-819 |#1|)) NIL) (($ $ $) NIL)) (-2977 (((-3 (-819 |#1|) "failed") $) NIL) (((-3 (-893 |#1|) "failed") $) NIL)) (-1756 (((-819 |#1|) $) NIL) (((-893 |#1|) $) NIL)) (-3577 (($ $) 102)) (-1579 (((-3 $ "failed") $) NIL)) (-2758 (((-112) $) 91)) (-2278 (($ $) 94)) (-2754 (($ $ $ (-771)) 104)) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-1966 (($ (-819 |#1|) |#2|) NIL) (($ (-893 |#1|) |#2|) 29)) (-1867 (($ $) 121)) (-3738 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1871 (((-819 |#1|) $) NIL)) (-2867 (((-819 |#1|) $) NIL)) (-3077 (($ (-1 |#2| |#2|) $) NIL)) (-1388 (($ $ |#1|) NIL) (($ $ (-819 |#1|)) NIL) (($ $ $) NIL)) (-3668 (($ $ (-771)) 114 (|has| |#2| (-717 (-409 (-566)))))) (-3127 (((-2 (|:| |k| (-893 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3545 (((-893 |#1|) $) 84)) (-3557 ((|#2| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-3613 (($ $ (-771)) 111 (|has| |#2| (-717 (-409 (-566)))))) (-3992 (((-771) $) 100)) (-4167 (((-112) $) 85)) (-1655 ((|#2| $) 89)) (-2512 (((-862) $) 70) (($ (-566)) NIL) (($ |#2|) 60) (($ (-819 |#1|)) NIL) (($ |#1|) 72) (($ (-893 |#1|)) NIL) (($ (-664 |#1| |#2|)) 48) (((-1279 |#1| |#2|) $) 77) (((-1288 |#1| |#2|) $) 82)) (-3868 (((-644 |#2|) $) NIL)) (-2022 ((|#2| $ (-893 |#1|)) NIL)) (-3157 ((|#2| $ (-819 |#1|)) NIL) ((|#2| $ $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 21 T CONST)) (-2495 (($) 28 T CONST)) (-1521 (((-644 (-2 (|:| |k| (-893 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3506 (((-3 (-664 |#1| |#2|) "failed") $) 120)) (-2940 (((-112) $ $) 78)) (-3047 (($ $) 113) (($ $ $) 112)) (-3034 (($ $ $) 20)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 49) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-893 |#1|)) NIL)))
-(((-1284 |#1| |#2|) (-13 (-1285 |#1| |#2|) (-384 |#2| (-893 |#1|)) (-10 -8 (-15 -2512 ($ (-664 |#1| |#2|))) (-15 -2512 ((-1279 |#1| |#2|) $)) (-15 -2512 ((-1288 |#1| |#2|) $)) (-15 -3506 ((-3 (-664 |#1| |#2|) "failed") $)) (-15 -2754 ($ $ $ (-771))) (IF (|has| |#2| (-717 (-409 (-566)))) (PROGN (-15 -3613 ($ $ (-771))) (-15 -3668 ($ $ (-771)))) |%noBranch|))) (-850) (-172)) (T -1284))
-((-2512 (*1 *1 *2) (-12 (-5 *2 (-664 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *1 (-1284 *3 *4)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-2512 (*1 *2 *1) (-12 (-5 *2 (-1288 *3 *4)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-3506 (*1 *2 *1) (|partial| -12 (-5 *2 (-664 *3 *4)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-2754 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-3613 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4)) (-4 *4 (-717 (-409 (-566)))) (-4 *3 (-850)) (-4 *4 (-172)))) (-3668 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4)) (-4 *4 (-717 (-409 (-566)))) (-4 *3 (-850)) (-4 *4 (-172)))))
-(-13 (-1285 |#1| |#2|) (-384 |#2| (-893 |#1|)) (-10 -8 (-15 -2512 ($ (-664 |#1| |#2|))) (-15 -2512 ((-1279 |#1| |#2|) $)) (-15 -2512 ((-1288 |#1| |#2|) $)) (-15 -3506 ((-3 (-664 |#1| |#2|) "failed") $)) (-15 -2754 ($ $ $ (-771))) (IF (|has| |#2| (-717 (-409 (-566)))) (PROGN (-15 -3613 ($ $ (-771))) (-15 -3668 ($ $ (-771)))) |%noBranch|)))
-((-2985 (((-112) $ $) 7)) (-3958 (((-112) $) 17)) (-1719 (((-644 |#1|) $) 47)) (-1844 (($ $ (-771)) 80)) (-4126 (((-3 $ "failed") $ $) 20)) (-2918 (($ $ $) 50 (|has| |#2| (-172))) (($ $ (-771)) 49 (|has| |#2| (-172)))) (-2342 (($) 18 T CONST)) (-2847 (($ $ |#1|) 61) (($ $ (-819 |#1|)) 60) (($ $ $) 59)) (-2977 (((-3 (-819 |#1|) "failed") $) 71)) (-1756 (((-819 |#1|) $) 72)) (-1579 (((-3 $ "failed") $) 37)) (-2758 (((-112) $) 52)) (-2278 (($ $) 51)) (-2741 (((-112) $) 35)) (-4367 (((-112) $) 57)) (-1966 (($ (-819 |#1|) |#2|) 58)) (-1867 (($ $) 56)) (-3738 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) 67)) (-1871 (((-819 |#1|) $) 68)) (-2867 (((-819 |#1|) $) 82)) (-3077 (($ (-1 |#2| |#2|) $) 48)) (-1388 (($ $ |#1|) 64) (($ $ (-819 |#1|)) 63) (($ $ $) 62)) (-2878 (((-1157) $) 10)) (-4033 (((-1119) $) 11)) (-3992 (((-771) $) 81)) (-4167 (((-112) $) 54)) (-1655 ((|#2| $) 53)) (-2512 (((-862) $) 12) (($ (-566)) 33) (($ |#2|) 75) (($ (-819 |#1|)) 70) (($ |#1|) 55)) (-3157 ((|#2| $ (-819 |#1|)) 66) ((|#2| $ $) 65)) (-3795 (((-771)) 32 T CONST)) (-3122 (((-112) $ $) 9)) (-2485 (($) 19 T CONST)) (-2495 (($) 34 T CONST)) (-2940 (((-112) $ $) 6)) (-3047 (($ $) 23) (($ $ $) 22)) (-3034 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ |#2| $) 74) (($ $ |#2|) 73) (($ |#1| $) 69)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-1824 (((-644 |#1|) $) 99)) (-2564 (($ $ (-771)) 103)) (-4014 (((-3 $ "failed") $ $) NIL)) (-1550 (($ $ $) NIL (|has| |#2| (-172))) (($ $ (-771)) NIL (|has| |#2| (-172)))) (-3877 (($) NIL T CONST)) (-2087 (($ $ |#1|) NIL) (($ $ (-819 |#1|)) NIL) (($ $ $) NIL)) (-3066 (((-3 (-819 |#1|) "failed") $) NIL) (((-3 (-893 |#1|) "failed") $) NIL)) (-1867 (((-819 |#1|) $) NIL) (((-893 |#1|) $) NIL)) (-3645 (($ $) 102)) (-2928 (((-3 $ "failed") $) NIL)) (-3634 (((-112) $) 91)) (-1337 (($ $) 94)) (-3594 (($ $ $ (-771)) 104)) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2044 (($ (-819 |#1|) |#2|) NIL) (($ (-893 |#1|) |#2|) 29)) (-2781 (($ $) 121)) (-1602 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2825 (((-819 |#1|) $) NIL)) (-2282 (((-819 |#1|) $) NIL)) (-3152 (($ (-1 |#2| |#2|) $) NIL)) (-1987 (($ $ |#1|) NIL) (($ $ (-819 |#1|)) NIL) (($ $ $) NIL)) (-3671 (($ $ (-771)) 114 (|has| |#2| (-717 (-409 (-566)))))) (-3840 (((-2 (|:| |k| (-893 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3614 (((-893 |#1|) $) 84)) (-3626 ((|#2| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-4337 (($ $ (-771)) 111 (|has| |#2| (-717 (-409 (-566)))))) (-2108 (((-771) $) 100)) (-3201 (((-112) $) 85)) (-2460 ((|#2| $) 89)) (-3780 (((-862) $) 70) (($ (-566)) NIL) (($ |#2|) 60) (($ (-819 |#1|)) NIL) (($ |#1|) 72) (($ (-893 |#1|)) NIL) (($ (-664 |#1| |#2|)) 48) (((-1279 |#1| |#2|) $) 77) (((-1288 |#1| |#2|) $) 82)) (-3456 (((-644 |#2|) $) NIL)) (-3756 ((|#2| $ (-893 |#1|)) NIL)) (-3223 ((|#2| $ (-819 |#1|)) NIL) ((|#2| $ $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 21 T CONST)) (-4333 (($) 28 T CONST)) (-2356 (((-644 (-2 (|:| |k| (-893 |#1|)) (|:| |c| |#2|))) $) NIL)) (-4240 (((-3 (-664 |#1| |#2|) "failed") $) 120)) (-2950 (((-112) $ $) 78)) (-3051 (($ $) 113) (($ $ $) 112)) (-3040 (($ $ $) 20)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 49) (($ |#2| $) 19) (($ $ |#2|) NIL) (($ |#1| $) NIL) (($ |#2| (-893 |#1|)) NIL)))
+(((-1284 |#1| |#2|) (-13 (-1285 |#1| |#2|) (-384 |#2| (-893 |#1|)) (-10 -8 (-15 -3780 ($ (-664 |#1| |#2|))) (-15 -3780 ((-1279 |#1| |#2|) $)) (-15 -3780 ((-1288 |#1| |#2|) $)) (-15 -4240 ((-3 (-664 |#1| |#2|) "failed") $)) (-15 -3594 ($ $ $ (-771))) (IF (|has| |#2| (-717 (-409 (-566)))) (PROGN (-15 -4337 ($ $ (-771))) (-15 -3671 ($ $ (-771)))) |%noBranch|))) (-850) (-172)) (T -1284))
+((-3780 (*1 *1 *2) (-12 (-5 *2 (-664 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)) (-5 *1 (-1284 *3 *4)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-3780 (*1 *2 *1) (-12 (-5 *2 (-1288 *3 *4)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-4240 (*1 *2 *1) (|partial| -12 (-5 *2 (-664 *3 *4)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-3594 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172)))) (-4337 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4)) (-4 *4 (-717 (-409 (-566)))) (-4 *3 (-850)) (-4 *4 (-172)))) (-3671 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4)) (-4 *4 (-717 (-409 (-566)))) (-4 *3 (-850)) (-4 *4 (-172)))))
+(-13 (-1285 |#1| |#2|) (-384 |#2| (-893 |#1|)) (-10 -8 (-15 -3780 ($ (-664 |#1| |#2|))) (-15 -3780 ((-1279 |#1| |#2|) $)) (-15 -3780 ((-1288 |#1| |#2|) $)) (-15 -4240 ((-3 (-664 |#1| |#2|) "failed") $)) (-15 -3594 ($ $ $ (-771))) (IF (|has| |#2| (-717 (-409 (-566)))) (PROGN (-15 -4337 ($ $ (-771))) (-15 -3671 ($ $ (-771)))) |%noBranch|)))
+((-3009 (((-112) $ $) 7)) (-3015 (((-112) $) 17)) (-1824 (((-644 |#1|) $) 47)) (-2564 (($ $ (-771)) 80)) (-4014 (((-3 $ "failed") $ $) 20)) (-1550 (($ $ $) 50 (|has| |#2| (-172))) (($ $ (-771)) 49 (|has| |#2| (-172)))) (-3877 (($) 18 T CONST)) (-2087 (($ $ |#1|) 61) (($ $ (-819 |#1|)) 60) (($ $ $) 59)) (-3066 (((-3 (-819 |#1|) "failed") $) 71)) (-1867 (((-819 |#1|) $) 72)) (-2928 (((-3 $ "failed") $) 37)) (-3634 (((-112) $) 52)) (-1337 (($ $) 51)) (-3466 (((-112) $) 35)) (-1453 (((-112) $) 57)) (-2044 (($ (-819 |#1|) |#2|) 58)) (-2781 (($ $) 56)) (-1602 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) 67)) (-2825 (((-819 |#1|) $) 68)) (-2282 (((-819 |#1|) $) 82)) (-3152 (($ (-1 |#2| |#2|) $) 48)) (-1987 (($ $ |#1|) 64) (($ $ (-819 |#1|)) 63) (($ $ $) 62)) (-2402 (((-1157) $) 10)) (-4056 (((-1119) $) 11)) (-2108 (((-771) $) 81)) (-3201 (((-112) $) 54)) (-2460 ((|#2| $) 53)) (-3780 (((-862) $) 12) (($ (-566)) 33) (($ |#2|) 75) (($ (-819 |#1|)) 70) (($ |#1|) 55)) (-3223 ((|#2| $ (-819 |#1|)) 66) ((|#2| $ $) 65)) (-3996 (((-771)) 32 T CONST)) (-3801 (((-112) $ $) 9)) (-2493 (($) 19 T CONST)) (-4333 (($) 34 T CONST)) (-2950 (((-112) $ $) 6)) (-3051 (($ $) 23) (($ $ $) 22)) (-3040 (($ $ $) 15)) (** (($ $ (-921)) 28) (($ $ (-771)) 36)) (* (($ (-921) $) 14) (($ (-771) $) 16) (($ (-566) $) 24) (($ $ $) 27) (($ |#2| $) 74) (($ $ |#2|) 73) (($ |#1| $) 69)))
(((-1285 |#1| |#2|) (-140) (-850) (-1049)) (T -1285))
-((-2867 (*1 *2 *1) (-12 (-4 *1 (-1285 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-819 *3)))) (-3992 (*1 *2 *1) (-12 (-4 *1 (-1285 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-771)))) (-1844 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1285 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))))
-(-13 (-1281 |t#1| |t#2|) (-10 -8 (-15 -2867 ((-819 |t#1|) $)) (-15 -3992 ((-771) $)) (-15 -1844 ($ $ (-771)))))
+((-2282 (*1 *2 *1) (-12 (-4 *1 (-1285 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-819 *3)))) (-2108 (*1 *2 *1) (-12 (-4 *1 (-1285 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *2 (-771)))) (-2564 (*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-1285 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))))
+(-13 (-1281 |t#1| |t#2|) (-10 -8 (-15 -2282 ((-819 |t#1|) $)) (-15 -2108 ((-771) $)) (-15 -2564 ($ $ (-771)))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-38 |#2|) |has| |#2| (-172)) ((-102) . T) ((-111 |#2| |#2|) . T) ((-131) . T) ((-616 (-566)) . T) ((-616 #0=(-819 |#1|)) . T) ((-616 |#2|) . T) ((-613 (-862)) . T) ((-646 (-566)) . T) ((-646 |#2|) . T) ((-646 $) . T) ((-648 |#2|) . T) ((-648 $) . T) ((-640 |#2|) |has| |#2| (-172)) ((-717 |#2|) |has| |#2| (-172)) ((-726) . T) ((-1038 #0#) . T) ((-1051 |#2|) . T) ((-1056 |#2|) . T) ((-1049) . T) ((-1057) . T) ((-1111) . T) ((-1099) . T) ((-1278 |#2|) . T) ((-1281 |#1| |#2|) . T))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-1719 (((-644 (-1175)) $) NIL)) (-3356 (($ (-1279 (-1175) |#1|)) NIL)) (-1844 (($ $ (-771)) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2918 (($ $ $) NIL (|has| |#1| (-172))) (($ $ (-771)) NIL (|has| |#1| (-172)))) (-2342 (($) NIL T CONST)) (-2847 (($ $ (-1175)) NIL) (($ $ (-819 (-1175))) NIL) (($ $ $) NIL)) (-2977 (((-3 (-819 (-1175)) "failed") $) NIL)) (-1756 (((-819 (-1175)) $) NIL)) (-1579 (((-3 $ "failed") $) NIL)) (-2758 (((-112) $) NIL)) (-2278 (($ $) NIL)) (-2741 (((-112) $) NIL)) (-4367 (((-112) $) NIL)) (-1966 (($ (-819 (-1175)) |#1|) NIL)) (-1867 (($ $) NIL)) (-3738 (((-2 (|:| |k| (-819 (-1175))) (|:| |c| |#1|)) $) NIL)) (-1871 (((-819 (-1175)) $) NIL)) (-2867 (((-819 (-1175)) $) NIL)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-1388 (($ $ (-1175)) NIL) (($ $ (-819 (-1175))) NIL) (($ $ $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4154 (((-1279 (-1175) |#1|) $) NIL)) (-3992 (((-771) $) NIL)) (-4167 (((-112) $) NIL)) (-1655 ((|#1| $) NIL)) (-2512 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-819 (-1175))) NIL) (($ (-1175)) NIL)) (-3157 ((|#1| $ (-819 (-1175))) NIL) ((|#1| $ $) NIL)) (-3795 (((-771)) NIL T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) NIL T CONST)) (-3569 (((-644 (-2 (|:| |k| (-1175)) (|:| |c| $))) $) NIL)) (-2495 (($) NIL T CONST)) (-2940 (((-112) $ $) NIL)) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1175) $) NIL)))
-(((-1286 |#1|) (-13 (-1285 (-1175) |#1|) (-10 -8 (-15 -4154 ((-1279 (-1175) |#1|) $)) (-15 -3356 ($ (-1279 (-1175) |#1|))) (-15 -3569 ((-644 (-2 (|:| |k| (-1175)) (|:| |c| $))) $)))) (-1049)) (T -1286))
-((-4154 (*1 *2 *1) (-12 (-5 *2 (-1279 (-1175) *3)) (-5 *1 (-1286 *3)) (-4 *3 (-1049)))) (-3356 (*1 *1 *2) (-12 (-5 *2 (-1279 (-1175) *3)) (-4 *3 (-1049)) (-5 *1 (-1286 *3)))) (-3569 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |k| (-1175)) (|:| |c| (-1286 *3))))) (-5 *1 (-1286 *3)) (-4 *3 (-1049)))))
-(-13 (-1285 (-1175) |#1|) (-10 -8 (-15 -4154 ((-1279 (-1175) |#1|) $)) (-15 -3356 ($ (-1279 (-1175) |#1|))) (-15 -3569 ((-644 (-2 (|:| |k| (-1175)) (|:| |c| $))) $))))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) NIL)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2342 (($) NIL T CONST)) (-2977 (((-3 |#2| "failed") $) NIL)) (-1756 ((|#2| $) NIL)) (-3577 (($ $) NIL)) (-1579 (((-3 $ "failed") $) 42)) (-2758 (((-112) $) 35)) (-2278 (($ $) 37)) (-2741 (((-112) $) NIL)) (-3505 (((-771) $) NIL)) (-1363 (((-644 $) $) NIL)) (-4367 (((-112) $) NIL)) (-1966 (($ |#2| |#1|) NIL)) (-1871 ((|#2| $) 24)) (-2867 ((|#2| $) 22)) (-3077 (($ (-1 |#1| |#1|) $) NIL)) (-3127 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-3545 ((|#2| $) NIL)) (-3557 ((|#1| $) NIL)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4167 (((-112) $) 32)) (-1655 ((|#1| $) 33)) (-2512 (((-862) $) 65) (($ (-566)) 46) (($ |#1|) 41) (($ |#2|) NIL)) (-3868 (((-644 |#1|) $) NIL)) (-2022 ((|#1| $ |#2|) NIL)) (-3157 ((|#1| $ |#2|) 28)) (-3795 (((-771)) 14 T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 29 T CONST)) (-2495 (($) 11 T CONST)) (-1521 (((-644 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-2940 (((-112) $ $) 30)) (-3061 (($ $ |#1|) 67 (|has| |#1| (-365)))) (-3047 (($ $) NIL) (($ $ $) NIL)) (-3034 (($ $ $) 50)) (** (($ $ (-921)) NIL) (($ $ (-771)) 52)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 51) (($ |#1| $) 47) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-2997 (((-771) $) 16)))
-(((-1287 |#1| |#2|) (-13 (-1049) (-1278 |#1|) (-384 |#1| |#2|) (-616 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -2997 ((-771) $)) (-15 -2867 (|#2| $)) (-15 -1871 (|#2| $)) (-15 -3577 ($ $)) (-15 -3157 (|#1| $ |#2|)) (-15 -4167 ((-112) $)) (-15 -1655 (|#1| $)) (-15 -2758 ((-112) $)) (-15 -2278 ($ $)) (-15 -3077 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-365)) (-15 -3061 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4410)) (-6 -4410) |%noBranch|) (IF (|has| |#1| (-6 -4414)) (-6 -4414) |%noBranch|) (IF (|has| |#1| (-6 -4415)) (-6 -4415) |%noBranch|))) (-1049) (-846)) (T -1287))
-((* (*1 *1 *1 *2) (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-846)))) (-3577 (*1 *1 *1) (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-846)))) (-3077 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-1287 *3 *4)) (-4 *4 (-846)))) (-2997 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-846)))) (-2867 (*1 *2 *1) (-12 (-4 *2 (-846)) (-5 *1 (-1287 *3 *2)) (-4 *3 (-1049)))) (-1871 (*1 *2 *1) (-12 (-4 *2 (-846)) (-5 *1 (-1287 *3 *2)) (-4 *3 (-1049)))) (-3157 (*1 *2 *1 *3) (-12 (-4 *2 (-1049)) (-5 *1 (-1287 *2 *3)) (-4 *3 (-846)))) (-4167 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-846)))) (-1655 (*1 *2 *1) (-12 (-4 *2 (-1049)) (-5 *1 (-1287 *2 *3)) (-4 *3 (-846)))) (-2758 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-846)))) (-2278 (*1 *1 *1) (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-846)))) (-3061 (*1 *1 *1 *2) (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-365)) (-4 *2 (-1049)) (-4 *3 (-846)))))
-(-13 (-1049) (-1278 |#1|) (-384 |#1| |#2|) (-616 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -2997 ((-771) $)) (-15 -2867 (|#2| $)) (-15 -1871 (|#2| $)) (-15 -3577 ($ $)) (-15 -3157 (|#1| $ |#2|)) (-15 -4167 ((-112) $)) (-15 -1655 (|#1| $)) (-15 -2758 ((-112) $)) (-15 -2278 ($ $)) (-15 -3077 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-365)) (-15 -3061 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4410)) (-6 -4410) |%noBranch|) (IF (|has| |#1| (-6 -4414)) (-6 -4414) |%noBranch|) (IF (|has| |#1| (-6 -4415)) (-6 -4415) |%noBranch|)))
-((-2985 (((-112) $ $) 27)) (-3958 (((-112) $) NIL)) (-1719 (((-644 |#1|) $) 132)) (-3356 (($ (-1279 |#1| |#2|)) 50)) (-1844 (($ $ (-771)) 38)) (-4126 (((-3 $ "failed") $ $) NIL)) (-2918 (($ $ $) 54 (|has| |#2| (-172))) (($ $ (-771)) 52 (|has| |#2| (-172)))) (-2342 (($) NIL T CONST)) (-2847 (($ $ |#1|) 114) (($ $ (-819 |#1|)) 115) (($ $ $) 26)) (-2977 (((-3 (-819 |#1|) "failed") $) NIL)) (-1756 (((-819 |#1|) $) NIL)) (-1579 (((-3 $ "failed") $) 122)) (-2758 (((-112) $) 117)) (-2278 (($ $) 118)) (-2741 (((-112) $) NIL)) (-4367 (((-112) $) NIL)) (-1966 (($ (-819 |#1|) |#2|) 20)) (-1867 (($ $) NIL)) (-3738 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1871 (((-819 |#1|) $) 123)) (-2867 (((-819 |#1|) $) 126)) (-3077 (($ (-1 |#2| |#2|) $) 131)) (-1388 (($ $ |#1|) 112) (($ $ (-819 |#1|)) 113) (($ $ $) 62)) (-2878 (((-1157) $) NIL)) (-4033 (((-1119) $) NIL)) (-4154 (((-1279 |#1| |#2|) $) 94)) (-3992 (((-771) $) 129)) (-4167 (((-112) $) 81)) (-1655 ((|#2| $) 32)) (-2512 (((-862) $) 73) (($ (-566)) 87) (($ |#2|) 85) (($ (-819 |#1|)) 18) (($ |#1|) 84)) (-3157 ((|#2| $ (-819 |#1|)) 116) ((|#2| $ $) 28)) (-3795 (((-771)) 120 T CONST)) (-3122 (((-112) $ $) NIL)) (-2485 (($) 15 T CONST)) (-3569 (((-644 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 59)) (-2495 (($) 33 T CONST)) (-2940 (((-112) $ $) 14)) (-3047 (($ $) 98) (($ $ $) 101)) (-3034 (($ $ $) 61)) (** (($ $ (-921)) NIL) (($ $ (-771)) 55)) (* (($ (-921) $) NIL) (($ (-771) $) 53) (($ (-566) $) 106) (($ $ $) 22) (($ |#2| $) 19) (($ $ |#2|) 21) (($ |#1| $) 92)))
-(((-1288 |#1| |#2|) (-13 (-1285 |#1| |#2|) (-10 -8 (-15 -4154 ((-1279 |#1| |#2|) $)) (-15 -3356 ($ (-1279 |#1| |#2|))) (-15 -3569 ((-644 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-850) (-1049)) (T -1288))
-((-4154 (*1 *2 *1) (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-1288 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))) (-3356 (*1 *1 *2) (-12 (-5 *2 (-1279 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *1 (-1288 *3 *4)))) (-3569 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |k| *3) (|:| |c| (-1288 *3 *4))))) (-5 *1 (-1288 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))))
-(-13 (-1285 |#1| |#2|) (-10 -8 (-15 -4154 ((-1279 |#1| |#2|) $)) (-15 -3356 ($ (-1279 |#1| |#2|))) (-15 -3569 ((-644 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
-((-2514 (((-644 (-1155 |#1|)) (-1 (-644 (-1155 |#1|)) (-644 (-1155 |#1|))) (-566)) 20) (((-1155 |#1|) (-1 (-1155 |#1|) (-1155 |#1|))) 13)))
-(((-1289 |#1|) (-10 -7 (-15 -2514 ((-1155 |#1|) (-1 (-1155 |#1|) (-1155 |#1|)))) (-15 -2514 ((-644 (-1155 |#1|)) (-1 (-644 (-1155 |#1|)) (-644 (-1155 |#1|))) (-566)))) (-1214)) (T -1289))
-((-2514 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-644 (-1155 *5)) (-644 (-1155 *5)))) (-5 *4 (-566)) (-5 *2 (-644 (-1155 *5))) (-5 *1 (-1289 *5)) (-4 *5 (-1214)))) (-2514 (*1 *2 *3) (-12 (-5 *3 (-1 (-1155 *4) (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1289 *4)) (-4 *4 (-1214)))))
-(-10 -7 (-15 -2514 ((-1155 |#1|) (-1 (-1155 |#1|) (-1155 |#1|)))) (-15 -2514 ((-644 (-1155 |#1|)) (-1 (-644 (-1155 |#1|)) (-644 (-1155 |#1|))) (-566))))
-((-2561 (((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|))) 174) (((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112)) 173) (((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112)) 172) (((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112) (-112)) 171) (((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-1046 |#1| |#2|)) 156)) (-2415 (((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|))) 85) (((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112)) 84) (((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112) (-112)) 83)) (-1370 (((-644 (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|)))) (-1046 |#1| |#2|)) 73)) (-4250 (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|))) 140) (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112)) 139) (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112)) 138) (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112) (-112)) 137) (((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|)) 132)) (-3475 (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|))) 145) (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112)) 144) (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112)) 143) (((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|)) 142)) (-3134 (((-644 (-780 |#1| (-864 |#3|))) (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|)))) 111) (((-1171 (-1024 (-409 |#1|))) (-1171 |#1|)) 102) (((-952 (-1024 (-409 |#1|))) (-780 |#1| (-864 |#3|))) 109) (((-952 (-1024 (-409 |#1|))) (-952 |#1|)) 107) (((-780 |#1| (-864 |#3|)) (-780 |#1| (-864 |#2|))) 33)))
-(((-1290 |#1| |#2| |#3|) (-10 -7 (-15 -2415 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112) (-112))) (-15 -2415 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112))) (-15 -2415 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)))) (-15 -2561 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-1046 |#1| |#2|))) (-15 -2561 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112) (-112))) (-15 -2561 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -2561 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112))) (-15 -2561 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -4250 ((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|))) (-15 -4250 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112) (-112))) (-15 -4250 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -4250 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112))) (-15 -4250 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)))) (-15 -3475 ((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|))) (-15 -3475 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -3475 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112))) (-15 -3475 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)))) (-15 -1370 ((-644 (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|)))) (-1046 |#1| |#2|))) (-15 -3134 ((-780 |#1| (-864 |#3|)) (-780 |#1| (-864 |#2|)))) (-15 -3134 ((-952 (-1024 (-409 |#1|))) (-952 |#1|))) (-15 -3134 ((-952 (-1024 (-409 |#1|))) (-780 |#1| (-864 |#3|)))) (-15 -3134 ((-1171 (-1024 (-409 |#1|))) (-1171 |#1|))) (-15 -3134 ((-644 (-780 |#1| (-864 |#3|))) (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|)))))) (-13 (-848) (-308) (-147) (-1022)) (-644 (-1175)) (-644 (-1175))) (T -1290))
-((-3134 (*1 *2 *3) (-12 (-5 *3 (-1145 *4 (-533 (-864 *6)) (-864 *6) (-780 *4 (-864 *6)))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-780 *4 (-864 *6)))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))))) (-3134 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-1171 (-1024 (-409 *4)))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-3134 (*1 *2 *3) (-12 (-5 *3 (-780 *4 (-864 *6))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *6 (-644 (-1175))) (-5 *2 (-952 (-1024 (-409 *4)))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))))) (-3134 (*1 *2 *3) (-12 (-5 *3 (-952 *4)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-952 (-1024 (-409 *4)))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-3134 (*1 *2 *3) (-12 (-5 *3 (-780 *4 (-864 *5))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *5 (-644 (-1175))) (-5 *2 (-780 *4 (-864 *6))) (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))) (-1370 (*1 *2 *3) (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-1145 *4 (-533 (-864 *6)) (-864 *6) (-780 *4 (-864 *6))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))) (-3475 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-3475 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-3475 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-3475 (*1 *2 *3) (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))) (-4250 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-4250 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-4250 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-4250 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-4250 (*1 *2 *3) (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))) (-2561 (*1 *2 *3) (-12 (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-2 (|:| -4137 (-1171 *4)) (|:| -2770 (-644 (-952 *4)))))) (-5 *1 (-1290 *4 *5 *6)) (-5 *3 (-644 (-952 *4))) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-2561 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-2 (|:| -4137 (-1171 *5)) (|:| -2770 (-644 (-952 *5)))))) (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5))) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-2561 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-2 (|:| -4137 (-1171 *5)) (|:| -2770 (-644 (-952 *5)))))) (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5))) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-2561 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-2 (|:| -4137 (-1171 *5)) (|:| -2770 (-644 (-952 *5)))))) (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5))) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-2561 (*1 *2 *3) (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-2 (|:| -4137 (-1171 *4)) (|:| -2770 (-644 (-952 *4)))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))) (-2415 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-1046 *4 *5))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-2415 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-2415 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))))
-(-10 -7 (-15 -2415 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112) (-112))) (-15 -2415 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112))) (-15 -2415 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)))) (-15 -2561 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-1046 |#1| |#2|))) (-15 -2561 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112) (-112))) (-15 -2561 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -2561 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112))) (-15 -2561 ((-644 (-2 (|:| -4137 (-1171 |#1|)) (|:| -2770 (-644 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -4250 ((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|))) (-15 -4250 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112) (-112))) (-15 -4250 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -4250 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112))) (-15 -4250 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)))) (-15 -3475 ((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|))) (-15 -3475 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -3475 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112))) (-15 -3475 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)))) (-15 -1370 ((-644 (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|)))) (-1046 |#1| |#2|))) (-15 -3134 ((-780 |#1| (-864 |#3|)) (-780 |#1| (-864 |#2|)))) (-15 -3134 ((-952 (-1024 (-409 |#1|))) (-952 |#1|))) (-15 -3134 ((-952 (-1024 (-409 |#1|))) (-780 |#1| (-864 |#3|)))) (-15 -3134 ((-1171 (-1024 (-409 |#1|))) (-1171 |#1|))) (-15 -3134 ((-644 (-780 |#1| (-864 |#3|))) (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|))))))
-((-3400 (((-3 (-1264 (-409 (-566))) "failed") (-1264 |#1|) |#1|) 21)) (-1678 (((-112) (-1264 |#1|)) 12)) (-2880 (((-3 (-1264 (-566)) "failed") (-1264 |#1|)) 16)))
-(((-1291 |#1|) (-10 -7 (-15 -1678 ((-112) (-1264 |#1|))) (-15 -2880 ((-3 (-1264 (-566)) "failed") (-1264 |#1|))) (-15 -3400 ((-3 (-1264 (-409 (-566))) "failed") (-1264 |#1|) |#1|))) (-639 (-566))) (T -1291))
-((-3400 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566))) (-5 *2 (-1264 (-409 (-566)))) (-5 *1 (-1291 *4)))) (-2880 (*1 *2 *3) (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566))) (-5 *2 (-1264 (-566))) (-5 *1 (-1291 *4)))) (-1678 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566))) (-5 *2 (-112)) (-5 *1 (-1291 *4)))))
-(-10 -7 (-15 -1678 ((-112) (-1264 |#1|))) (-15 -2880 ((-3 (-1264 (-566)) "failed") (-1264 |#1|))) (-15 -3400 ((-3 (-1264 (-409 (-566))) "failed") (-1264 |#1|) |#1|)))
-((-2985 (((-112) $ $) NIL)) (-3958 (((-112) $) 11)) (-4126 (((-3 $ "failed") $ $) NIL)) (-4025 (((-771)) 8)) (-2342 (($) NIL T CONST)) (-1579 (((-3 $ "failed") $) 58)) (-3335 (($) 49)) (-2741 (((-112) $) 57)) (-2546 (((-3 $ "failed") $) 40)) (-3712 (((-921) $) 15)) (-2878 (((-1157) $) NIL)) (-2759 (($) 32 T CONST)) (-2168 (($ (-921)) 50)) (-4033 (((-1119) $) NIL)) (-3134 (((-566) $) 13)) (-2512 (((-862) $) 27) (($ (-566)) 24)) (-3795 (((-771)) 9 T CONST)) (-3122 (((-112) $ $) 60)) (-2485 (($) 29 T CONST)) (-2495 (($) 31 T CONST)) (-2940 (((-112) $ $) 38)) (-3047 (($ $) 52) (($ $ $) 47)) (-3034 (($ $ $) 35)) (** (($ $ (-921)) NIL) (($ $ (-771)) 54)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 44) (($ $ $) 43)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-1824 (((-644 (-1175)) $) NIL)) (-2137 (($ (-1279 (-1175) |#1|)) NIL)) (-2564 (($ $ (-771)) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-1550 (($ $ $) NIL (|has| |#1| (-172))) (($ $ (-771)) NIL (|has| |#1| (-172)))) (-3877 (($) NIL T CONST)) (-2087 (($ $ (-1175)) NIL) (($ $ (-819 (-1175))) NIL) (($ $ $) NIL)) (-3066 (((-3 (-819 (-1175)) "failed") $) NIL)) (-1867 (((-819 (-1175)) $) NIL)) (-2928 (((-3 $ "failed") $) NIL)) (-3634 (((-112) $) NIL)) (-1337 (($ $) NIL)) (-3466 (((-112) $) NIL)) (-1453 (((-112) $) NIL)) (-2044 (($ (-819 (-1175)) |#1|) NIL)) (-2781 (($ $) NIL)) (-1602 (((-2 (|:| |k| (-819 (-1175))) (|:| |c| |#1|)) $) NIL)) (-2825 (((-819 (-1175)) $) NIL)) (-2282 (((-819 (-1175)) $) NIL)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-1987 (($ $ (-1175)) NIL) (($ $ (-819 (-1175))) NIL) (($ $ $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1351 (((-1279 (-1175) |#1|) $) NIL)) (-2108 (((-771) $) NIL)) (-3201 (((-112) $) NIL)) (-2460 ((|#1| $) NIL)) (-3780 (((-862) $) NIL) (($ (-566)) NIL) (($ |#1|) NIL) (($ (-819 (-1175))) NIL) (($ (-1175)) NIL)) (-3223 ((|#1| $ (-819 (-1175))) NIL) ((|#1| $ $) NIL)) (-3996 (((-771)) NIL T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) NIL T CONST)) (-3587 (((-644 (-2 (|:| |k| (-1175)) (|:| |c| $))) $) NIL)) (-4333 (($) NIL T CONST)) (-2950 (((-112) $ $) NIL)) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) NIL)) (** (($ $ (-921)) NIL) (($ $ (-771)) NIL)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ (-1175) $) NIL)))
+(((-1286 |#1|) (-13 (-1285 (-1175) |#1|) (-10 -8 (-15 -1351 ((-1279 (-1175) |#1|) $)) (-15 -2137 ($ (-1279 (-1175) |#1|))) (-15 -3587 ((-644 (-2 (|:| |k| (-1175)) (|:| |c| $))) $)))) (-1049)) (T -1286))
+((-1351 (*1 *2 *1) (-12 (-5 *2 (-1279 (-1175) *3)) (-5 *1 (-1286 *3)) (-4 *3 (-1049)))) (-2137 (*1 *1 *2) (-12 (-5 *2 (-1279 (-1175) *3)) (-4 *3 (-1049)) (-5 *1 (-1286 *3)))) (-3587 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |k| (-1175)) (|:| |c| (-1286 *3))))) (-5 *1 (-1286 *3)) (-4 *3 (-1049)))))
+(-13 (-1285 (-1175) |#1|) (-10 -8 (-15 -1351 ((-1279 (-1175) |#1|) $)) (-15 -2137 ($ (-1279 (-1175) |#1|))) (-15 -3587 ((-644 (-2 (|:| |k| (-1175)) (|:| |c| $))) $))))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) NIL)) (-4014 (((-3 $ "failed") $ $) NIL)) (-3877 (($) NIL T CONST)) (-3066 (((-3 |#2| "failed") $) NIL)) (-1867 ((|#2| $) NIL)) (-3645 (($ $) NIL)) (-2928 (((-3 $ "failed") $) 42)) (-3634 (((-112) $) 35)) (-1337 (($ $) 37)) (-3466 (((-112) $) NIL)) (-4230 (((-771) $) NIL)) (-2330 (((-644 $) $) NIL)) (-1453 (((-112) $) NIL)) (-2044 (($ |#2| |#1|) NIL)) (-2825 ((|#2| $) 24)) (-2282 ((|#2| $) 22)) (-3152 (($ (-1 |#1| |#1|) $) NIL)) (-3840 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-3614 ((|#2| $) NIL)) (-3626 ((|#1| $) NIL)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-3201 (((-112) $) 32)) (-2460 ((|#1| $) 33)) (-3780 (((-862) $) 65) (($ (-566)) 46) (($ |#1|) 41) (($ |#2|) NIL)) (-3456 (((-644 |#1|) $) NIL)) (-3756 ((|#1| $ |#2|) NIL)) (-3223 ((|#1| $ |#2|) 28)) (-3996 (((-771)) 14 T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 29 T CONST)) (-4333 (($) 11 T CONST)) (-2356 (((-644 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-2950 (((-112) $ $) 30)) (-3062 (($ $ |#1|) 67 (|has| |#1| (-365)))) (-3051 (($ $) NIL) (($ $ $) NIL)) (-3040 (($ $ $) 50)) (** (($ $ (-921)) NIL) (($ $ (-771)) 52)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) NIL) (($ $ $) 51) (($ |#1| $) 47) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-3020 (((-771) $) 16)))
+(((-1287 |#1| |#2|) (-13 (-1049) (-1278 |#1|) (-384 |#1| |#2|) (-616 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3020 ((-771) $)) (-15 -2282 (|#2| $)) (-15 -2825 (|#2| $)) (-15 -3645 ($ $)) (-15 -3223 (|#1| $ |#2|)) (-15 -3201 ((-112) $)) (-15 -2460 (|#1| $)) (-15 -3634 ((-112) $)) (-15 -1337 ($ $)) (-15 -3152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-365)) (-15 -3062 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4407)) (-6 -4407) |%noBranch|) (IF (|has| |#1| (-6 -4411)) (-6 -4411) |%noBranch|) (IF (|has| |#1| (-6 -4412)) (-6 -4412) |%noBranch|))) (-1049) (-846)) (T -1287))
+((* (*1 *1 *1 *2) (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-846)))) (-3645 (*1 *1 *1) (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-846)))) (-3152 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-1287 *3 *4)) (-4 *4 (-846)))) (-3020 (*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-846)))) (-2282 (*1 *2 *1) (-12 (-4 *2 (-846)) (-5 *1 (-1287 *3 *2)) (-4 *3 (-1049)))) (-2825 (*1 *2 *1) (-12 (-4 *2 (-846)) (-5 *1 (-1287 *3 *2)) (-4 *3 (-1049)))) (-3223 (*1 *2 *1 *3) (-12 (-4 *2 (-1049)) (-5 *1 (-1287 *2 *3)) (-4 *3 (-846)))) (-3201 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-846)))) (-2460 (*1 *2 *1) (-12 (-4 *2 (-1049)) (-5 *1 (-1287 *2 *3)) (-4 *3 (-846)))) (-3634 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-846)))) (-1337 (*1 *1 *1) (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-846)))) (-3062 (*1 *1 *1 *2) (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-365)) (-4 *2 (-1049)) (-4 *3 (-846)))))
+(-13 (-1049) (-1278 |#1|) (-384 |#1| |#2|) (-616 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -3020 ((-771) $)) (-15 -2282 (|#2| $)) (-15 -2825 (|#2| $)) (-15 -3645 ($ $)) (-15 -3223 (|#1| $ |#2|)) (-15 -3201 ((-112) $)) (-15 -2460 (|#1| $)) (-15 -3634 ((-112) $)) (-15 -1337 ($ $)) (-15 -3152 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-365)) (-15 -3062 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4407)) (-6 -4407) |%noBranch|) (IF (|has| |#1| (-6 -4411)) (-6 -4411) |%noBranch|) (IF (|has| |#1| (-6 -4412)) (-6 -4412) |%noBranch|)))
+((-3009 (((-112) $ $) 27)) (-3015 (((-112) $) NIL)) (-1824 (((-644 |#1|) $) 132)) (-2137 (($ (-1279 |#1| |#2|)) 50)) (-2564 (($ $ (-771)) 38)) (-4014 (((-3 $ "failed") $ $) NIL)) (-1550 (($ $ $) 54 (|has| |#2| (-172))) (($ $ (-771)) 52 (|has| |#2| (-172)))) (-3877 (($) NIL T CONST)) (-2087 (($ $ |#1|) 114) (($ $ (-819 |#1|)) 115) (($ $ $) 26)) (-3066 (((-3 (-819 |#1|) "failed") $) NIL)) (-1867 (((-819 |#1|) $) NIL)) (-2928 (((-3 $ "failed") $) 122)) (-3634 (((-112) $) 117)) (-1337 (($ $) 118)) (-3466 (((-112) $) NIL)) (-1453 (((-112) $) NIL)) (-2044 (($ (-819 |#1|) |#2|) 20)) (-2781 (($ $) NIL)) (-1602 (((-2 (|:| |k| (-819 |#1|)) (|:| |c| |#2|)) $) NIL)) (-2825 (((-819 |#1|) $) 123)) (-2282 (((-819 |#1|) $) 126)) (-3152 (($ (-1 |#2| |#2|) $) 131)) (-1987 (($ $ |#1|) 112) (($ $ (-819 |#1|)) 113) (($ $ $) 62)) (-2402 (((-1157) $) NIL)) (-4056 (((-1119) $) NIL)) (-1351 (((-1279 |#1| |#2|) $) 94)) (-2108 (((-771) $) 129)) (-3201 (((-112) $) 81)) (-2460 ((|#2| $) 32)) (-3780 (((-862) $) 73) (($ (-566)) 87) (($ |#2|) 85) (($ (-819 |#1|)) 18) (($ |#1|) 84)) (-3223 ((|#2| $ (-819 |#1|)) 116) ((|#2| $ $) 28)) (-3996 (((-771)) 120 T CONST)) (-3801 (((-112) $ $) NIL)) (-2493 (($) 15 T CONST)) (-3587 (((-644 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 59)) (-4333 (($) 33 T CONST)) (-2950 (((-112) $ $) 14)) (-3051 (($ $) 98) (($ $ $) 101)) (-3040 (($ $ $) 61)) (** (($ $ (-921)) NIL) (($ $ (-771)) 55)) (* (($ (-921) $) NIL) (($ (-771) $) 53) (($ (-566) $) 106) (($ $ $) 22) (($ |#2| $) 19) (($ $ |#2|) 21) (($ |#1| $) 92)))
+(((-1288 |#1| |#2|) (-13 (-1285 |#1| |#2|) (-10 -8 (-15 -1351 ((-1279 |#1| |#2|) $)) (-15 -2137 ($ (-1279 |#1| |#2|))) (-15 -3587 ((-644 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-850) (-1049)) (T -1288))
+((-1351 (*1 *2 *1) (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-1288 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))) (-2137 (*1 *1 *2) (-12 (-5 *2 (-1279 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)) (-5 *1 (-1288 *3 *4)))) (-3587 (*1 *2 *1) (-12 (-5 *2 (-644 (-2 (|:| |k| *3) (|:| |c| (-1288 *3 *4))))) (-5 *1 (-1288 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))))
+(-13 (-1285 |#1| |#2|) (-10 -8 (-15 -1351 ((-1279 |#1| |#2|) $)) (-15 -2137 ($ (-1279 |#1| |#2|))) (-15 -3587 ((-644 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
+((-2519 (((-644 (-1155 |#1|)) (-1 (-644 (-1155 |#1|)) (-644 (-1155 |#1|))) (-566)) 20) (((-1155 |#1|) (-1 (-1155 |#1|) (-1155 |#1|))) 13)))
+(((-1289 |#1|) (-10 -7 (-15 -2519 ((-1155 |#1|) (-1 (-1155 |#1|) (-1155 |#1|)))) (-15 -2519 ((-644 (-1155 |#1|)) (-1 (-644 (-1155 |#1|)) (-644 (-1155 |#1|))) (-566)))) (-1214)) (T -1289))
+((-2519 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-644 (-1155 *5)) (-644 (-1155 *5)))) (-5 *4 (-566)) (-5 *2 (-644 (-1155 *5))) (-5 *1 (-1289 *5)) (-4 *5 (-1214)))) (-2519 (*1 *2 *3) (-12 (-5 *3 (-1 (-1155 *4) (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1289 *4)) (-4 *4 (-1214)))))
+(-10 -7 (-15 -2519 ((-1155 |#1|) (-1 (-1155 |#1|) (-1155 |#1|)))) (-15 -2519 ((-644 (-1155 |#1|)) (-1 (-644 (-1155 |#1|)) (-644 (-1155 |#1|))) (-566))))
+((-2297 (((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|))) 174) (((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112)) 173) (((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112)) 172) (((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112) (-112)) 171) (((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-1046 |#1| |#2|)) 156)) (-3365 (((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|))) 85) (((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112)) 84) (((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112) (-112)) 83)) (-3271 (((-644 (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|)))) (-1046 |#1| |#2|)) 73)) (-2774 (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|))) 140) (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112)) 139) (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112)) 138) (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112) (-112)) 137) (((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|)) 132)) (-3943 (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|))) 145) (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112)) 144) (((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112)) 143) (((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|)) 142)) (-3204 (((-644 (-780 |#1| (-864 |#3|))) (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|)))) 111) (((-1171 (-1024 (-409 |#1|))) (-1171 |#1|)) 102) (((-952 (-1024 (-409 |#1|))) (-780 |#1| (-864 |#3|))) 109) (((-952 (-1024 (-409 |#1|))) (-952 |#1|)) 107) (((-780 |#1| (-864 |#3|)) (-780 |#1| (-864 |#2|))) 33)))
+(((-1290 |#1| |#2| |#3|) (-10 -7 (-15 -3365 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112) (-112))) (-15 -3365 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112))) (-15 -3365 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)))) (-15 -2297 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-1046 |#1| |#2|))) (-15 -2297 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112) (-112))) (-15 -2297 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -2297 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112))) (-15 -2297 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -2774 ((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|))) (-15 -2774 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112) (-112))) (-15 -2774 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -2774 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112))) (-15 -2774 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)))) (-15 -3943 ((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|))) (-15 -3943 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -3943 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112))) (-15 -3943 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)))) (-15 -3271 ((-644 (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|)))) (-1046 |#1| |#2|))) (-15 -3204 ((-780 |#1| (-864 |#3|)) (-780 |#1| (-864 |#2|)))) (-15 -3204 ((-952 (-1024 (-409 |#1|))) (-952 |#1|))) (-15 -3204 ((-952 (-1024 (-409 |#1|))) (-780 |#1| (-864 |#3|)))) (-15 -3204 ((-1171 (-1024 (-409 |#1|))) (-1171 |#1|))) (-15 -3204 ((-644 (-780 |#1| (-864 |#3|))) (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|)))))) (-13 (-848) (-308) (-147) (-1022)) (-644 (-1175)) (-644 (-1175))) (T -1290))
+((-3204 (*1 *2 *3) (-12 (-5 *3 (-1145 *4 (-533 (-864 *6)) (-864 *6) (-780 *4 (-864 *6)))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-780 *4 (-864 *6)))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))))) (-3204 (*1 *2 *3) (-12 (-5 *3 (-1171 *4)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-1171 (-1024 (-409 *4)))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-3204 (*1 *2 *3) (-12 (-5 *3 (-780 *4 (-864 *6))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *6 (-644 (-1175))) (-5 *2 (-952 (-1024 (-409 *4)))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))))) (-3204 (*1 *2 *3) (-12 (-5 *3 (-952 *4)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-952 (-1024 (-409 *4)))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-3204 (*1 *2 *3) (-12 (-5 *3 (-780 *4 (-864 *5))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *5 (-644 (-1175))) (-5 *2 (-780 *4 (-864 *6))) (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))) (-3271 (*1 *2 *3) (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-1145 *4 (-533 (-864 *6)) (-864 *6) (-780 *4 (-864 *6))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))) (-3943 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-3943 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-3943 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-3943 (*1 *2 *3) (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))) (-2774 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-2774 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-2774 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-2774 (*1 *2 *3 *4 *4 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-2774 (*1 *2 *3) (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))) (-2297 (*1 *2 *3) (-12 (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-2 (|:| -4126 (-1171 *4)) (|:| -2543 (-644 (-952 *4)))))) (-5 *1 (-1290 *4 *5 *6)) (-5 *3 (-644 (-952 *4))) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-2297 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-2 (|:| -4126 (-1171 *5)) (|:| -2543 (-644 (-952 *5)))))) (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5))) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-2297 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-2 (|:| -4126 (-1171 *5)) (|:| -2543 (-644 (-952 *5)))))) (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5))) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-2297 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-2 (|:| -4126 (-1171 *5)) (|:| -2543 (-644 (-952 *5)))))) (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5))) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-2297 (*1 *2 *3) (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-2 (|:| -4126 (-1171 *4)) (|:| -2543 (-644 (-952 *4)))))) (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))) (-3365 (*1 *2 *3) (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-1046 *4 *5))) (-5 *1 (-1290 *4 *5 *6)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))) (-3365 (*1 *2 *3 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))) (-3365 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022))) (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-1290 *5 *6 *7)) (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175))))))
+(-10 -7 (-15 -3365 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112) (-112))) (-15 -3365 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)) (-112))) (-15 -3365 ((-644 (-1046 |#1| |#2|)) (-644 (-952 |#1|)))) (-15 -2297 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-1046 |#1| |#2|))) (-15 -2297 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112) (-112))) (-15 -2297 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -2297 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)) (-112))) (-15 -2297 ((-644 (-2 (|:| -4126 (-1171 |#1|)) (|:| -2543 (-644 (-952 |#1|))))) (-644 (-952 |#1|)))) (-15 -2774 ((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|))) (-15 -2774 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112) (-112))) (-15 -2774 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -2774 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112))) (-15 -2774 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)))) (-15 -3943 ((-644 (-644 (-1024 (-409 |#1|)))) (-1046 |#1| |#2|))) (-15 -3943 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112) (-112))) (-15 -3943 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)) (-112))) (-15 -3943 ((-644 (-644 (-1024 (-409 |#1|)))) (-644 (-952 |#1|)))) (-15 -3271 ((-644 (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|)))) (-1046 |#1| |#2|))) (-15 -3204 ((-780 |#1| (-864 |#3|)) (-780 |#1| (-864 |#2|)))) (-15 -3204 ((-952 (-1024 (-409 |#1|))) (-952 |#1|))) (-15 -3204 ((-952 (-1024 (-409 |#1|))) (-780 |#1| (-864 |#3|)))) (-15 -3204 ((-1171 (-1024 (-409 |#1|))) (-1171 |#1|))) (-15 -3204 ((-644 (-780 |#1| (-864 |#3|))) (-1145 |#1| (-533 (-864 |#3|)) (-864 |#3|) (-780 |#1| (-864 |#3|))))))
+((-4391 (((-3 (-1264 (-409 (-566))) "failed") (-1264 |#1|) |#1|) 21)) (-1465 (((-112) (-1264 |#1|)) 12)) (-2424 (((-3 (-1264 (-566)) "failed") (-1264 |#1|)) 16)))
+(((-1291 |#1|) (-10 -7 (-15 -1465 ((-112) (-1264 |#1|))) (-15 -2424 ((-3 (-1264 (-566)) "failed") (-1264 |#1|))) (-15 -4391 ((-3 (-1264 (-409 (-566))) "failed") (-1264 |#1|) |#1|))) (-639 (-566))) (T -1291))
+((-4391 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566))) (-5 *2 (-1264 (-409 (-566)))) (-5 *1 (-1291 *4)))) (-2424 (*1 *2 *3) (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566))) (-5 *2 (-1264 (-566))) (-5 *1 (-1291 *4)))) (-1465 (*1 *2 *3) (-12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566))) (-5 *2 (-112)) (-5 *1 (-1291 *4)))))
+(-10 -7 (-15 -1465 ((-112) (-1264 |#1|))) (-15 -2424 ((-3 (-1264 (-566)) "failed") (-1264 |#1|))) (-15 -4391 ((-3 (-1264 (-409 (-566))) "failed") (-1264 |#1|) |#1|)))
+((-3009 (((-112) $ $) NIL)) (-3015 (((-112) $) 11)) (-4014 (((-3 $ "failed") $ $) NIL)) (-4070 (((-771)) 8)) (-3877 (($) NIL T CONST)) (-2928 (((-3 $ "failed") $) 58)) (-1618 (($) 49)) (-3466 (((-112) $) 57)) (-2133 (((-3 $ "failed") $) 40)) (-1299 (((-921) $) 15)) (-2402 (((-1157) $) NIL)) (-3625 (($) 32 T CONST)) (-2208 (($ (-921)) 50)) (-4056 (((-1119) $) NIL)) (-3204 (((-566) $) 13)) (-3780 (((-862) $) 27) (($ (-566)) 24)) (-3996 (((-771)) 9 T CONST)) (-3801 (((-112) $ $) 60)) (-2493 (($) 29 T CONST)) (-4333 (($) 31 T CONST)) (-2950 (((-112) $ $) 38)) (-3051 (($ $) 52) (($ $ $) 47)) (-3040 (($ $ $) 35)) (** (($ $ (-921)) NIL) (($ $ (-771)) 54)) (* (($ (-921) $) NIL) (($ (-771) $) NIL) (($ (-566) $) 44) (($ $ $) 43)))
(((-1292 |#1|) (-13 (-172) (-370) (-614 (-566)) (-1150)) (-921)) (T -1292))
NIL
(-13 (-172) (-370) (-614 (-566)) (-1150))
@@ -5329,4 +5329,4 @@ NIL
NIL
NIL
NIL
-((-3 3221321 3221326 3221331 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-2 3221306 3221311 3221316 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1 3221291 3221296 3221301 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (0 3221276 3221281 3221286 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1292 3220419 3221151 3221228 "ZMOD" 3221233 NIL ZMOD (NIL NIL) -8 NIL NIL NIL) (-1291 3219529 3219693 3219902 "ZLINDEP" 3220251 NIL ZLINDEP (NIL T) -7 NIL NIL NIL) (-1290 3208829 3210597 3212569 "ZDSOLVE" 3217659 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL NIL) (-1289 3208075 3208216 3208405 "YSTREAM" 3208675 NIL YSTREAM (NIL T) -7 NIL NIL NIL) (-1288 3205849 3207376 3207580 "XRPOLY" 3207918 NIL XRPOLY (NIL T T) -8 NIL NIL NIL) (-1287 3202402 3203720 3204295 "XPR" 3205321 NIL XPR (NIL T T) -8 NIL NIL NIL) (-1286 3200123 3201733 3201937 "XPOLY" 3202233 NIL XPOLY (NIL T) -8 NIL NIL NIL) (-1285 3197776 3199144 3199199 "XPOLYC" 3199487 NIL XPOLYC (NIL T T) -9 NIL 3199600 NIL) (-1284 3194151 3196293 3196681 "XPBWPOLY" 3197434 NIL XPBWPOLY (NIL T T) -8 NIL NIL NIL) (-1283 3189846 3192141 3192183 "XF" 3192804 NIL XF (NIL T) -9 NIL 3193204 NIL) (-1282 3189467 3189555 3189724 "XF-" 3189729 NIL XF- (NIL T T) -8 NIL NIL NIL) (-1281 3184663 3185952 3186007 "XFALG" 3188179 NIL XFALG (NIL T T) -9 NIL 3188968 NIL) (-1280 3183796 3183900 3184105 "XEXPPKG" 3184555 NIL XEXPPKG (NIL T T T) -7 NIL NIL NIL) (-1279 3181905 3183646 3183742 "XDPOLY" 3183747 NIL XDPOLY (NIL T T) -8 NIL NIL NIL) (-1278 3180712 3181312 3181355 "XALG" 3181360 NIL XALG (NIL T) -9 NIL 3181471 NIL) (-1277 3174154 3178689 3179183 "WUTSET" 3180304 NIL WUTSET (NIL T T T T) -8 NIL NIL NIL) (-1276 3172410 3173206 3173529 "WP" 3173965 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL NIL) (-1275 3172012 3172232 3172302 "WHILEAST" 3172362 T WHILEAST (NIL) -8 NIL NIL NIL) (-1274 3171484 3171729 3171823 "WHEREAST" 3171940 T WHEREAST (NIL) -8 NIL NIL NIL) (-1273 3170370 3170568 3170863 "WFFINTBS" 3171281 NIL WFFINTBS (NIL T T T T) -7 NIL NIL NIL) (-1272 3168274 3168701 3169163 "WEIER" 3169942 NIL WEIER (NIL T) -7 NIL NIL NIL) (-1271 3167320 3167770 3167812 "VSPACE" 3167948 NIL VSPACE (NIL T) -9 NIL 3168022 NIL) (-1270 3167158 3167185 3167276 "VSPACE-" 3167281 NIL VSPACE- (NIL T T) -8 NIL NIL NIL) (-1269 3166966 3167009 3167077 "VOID" 3167112 T VOID (NIL) -8 NIL NIL NIL) (-1268 3165102 3165461 3165867 "VIEW" 3166582 T VIEW (NIL) -7 NIL NIL NIL) (-1267 3161526 3162165 3162902 "VIEWDEF" 3164387 T VIEWDEF (NIL) -7 NIL NIL NIL) (-1266 3150830 3153074 3155247 "VIEW3D" 3159375 T VIEW3D (NIL) -8 NIL NIL NIL) (-1265 3143081 3144741 3146320 "VIEW2D" 3149273 T VIEW2D (NIL) -8 NIL NIL NIL) (-1264 3138433 3142851 3142943 "VECTOR" 3143024 NIL VECTOR (NIL T) -8 NIL NIL NIL) (-1263 3137010 3137269 3137587 "VECTOR2" 3138163 NIL VECTOR2 (NIL T T) -7 NIL NIL NIL) (-1262 3130484 3134791 3134834 "VECTCAT" 3135829 NIL VECTCAT (NIL T) -9 NIL 3136416 NIL) (-1261 3129498 3129752 3130142 "VECTCAT-" 3130147 NIL VECTCAT- (NIL T T) -8 NIL NIL NIL) (-1260 3128952 3129149 3129269 "VARIABLE" 3129413 NIL VARIABLE (NIL NIL) -8 NIL NIL NIL) (-1259 3128885 3128890 3128920 "UTYPE" 3128925 T UTYPE (NIL) -9 NIL NIL NIL) (-1258 3127715 3127869 3128131 "UTSODETL" 3128711 NIL UTSODETL (NIL T T T T) -7 NIL NIL NIL) (-1257 3125155 3125615 3126139 "UTSODE" 3127256 NIL UTSODE (NIL T T) -7 NIL NIL NIL) (-1256 3116992 3122781 3123270 "UTS" 3124724 NIL UTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1255 3107866 3113233 3113276 "UTSCAT" 3114388 NIL UTSCAT (NIL T) -9 NIL 3115146 NIL) (-1254 3105213 3105936 3106925 "UTSCAT-" 3106930 NIL UTSCAT- (NIL T T) -8 NIL NIL NIL) (-1253 3104840 3104883 3105016 "UTS2" 3105164 NIL UTS2 (NIL T T T T) -7 NIL NIL NIL) (-1252 3099066 3101678 3101721 "URAGG" 3103791 NIL URAGG (NIL T) -9 NIL 3104514 NIL) (-1251 3096005 3096868 3097991 "URAGG-" 3097996 NIL URAGG- (NIL T T) -8 NIL NIL NIL) (-1250 3091714 3094640 3095105 "UPXSSING" 3095669 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL NIL) (-1249 3083780 3090961 3091234 "UPXS" 3091499 NIL UPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1248 3076853 3083684 3083756 "UPXSCONS" 3083761 NIL UPXSCONS (NIL T T) -8 NIL NIL NIL) (-1247 3066598 3073391 3073453 "UPXSCCA" 3074027 NIL UPXSCCA (NIL T T) -9 NIL 3074260 NIL) (-1246 3066236 3066321 3066495 "UPXSCCA-" 3066500 NIL UPXSCCA- (NIL T T T) -8 NIL NIL NIL) (-1245 3055833 3062399 3062442 "UPXSCAT" 3063090 NIL UPXSCAT (NIL T) -9 NIL 3063699 NIL) (-1244 3055263 3055342 3055521 "UPXS2" 3055748 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1243 3053917 3054170 3054521 "UPSQFREE" 3055006 NIL UPSQFREE (NIL T T) -7 NIL NIL NIL) (-1242 3047338 3050395 3050450 "UPSCAT" 3051611 NIL UPSCAT (NIL T T) -9 NIL 3052385 NIL) (-1241 3046542 3046749 3047076 "UPSCAT-" 3047081 NIL UPSCAT- (NIL T T T) -8 NIL NIL NIL) (-1240 3032197 3039965 3040008 "UPOLYC" 3042109 NIL UPOLYC (NIL T) -9 NIL 3043330 NIL) (-1239 3023525 3025951 3029098 "UPOLYC-" 3029103 NIL UPOLYC- (NIL T T) -8 NIL NIL NIL) (-1238 3023152 3023195 3023328 "UPOLYC2" 3023476 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL NIL) (-1237 3014963 3022835 3022964 "UP" 3023071 NIL UP (NIL NIL T) -8 NIL NIL NIL) (-1236 3014302 3014409 3014573 "UPMP" 3014852 NIL UPMP (NIL T T) -7 NIL NIL NIL) (-1235 3013855 3013936 3014075 "UPDIVP" 3014215 NIL UPDIVP (NIL T T) -7 NIL NIL NIL) (-1234 3012423 3012672 3012988 "UPDECOMP" 3013604 NIL UPDECOMP (NIL T T) -7 NIL NIL NIL) (-1233 3011658 3011770 3011955 "UPCDEN" 3012307 NIL UPCDEN (NIL T T T) -7 NIL NIL NIL) (-1232 3011177 3011246 3011395 "UP2" 3011583 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL NIL) (-1231 3009644 3010381 3010658 "UNISEG" 3010935 NIL UNISEG (NIL T) -8 NIL NIL NIL) (-1230 3008859 3008986 3009191 "UNISEG2" 3009487 NIL UNISEG2 (NIL T T) -7 NIL NIL NIL) (-1229 3007919 3008099 3008325 "UNIFACT" 3008675 NIL UNIFACT (NIL T) -7 NIL NIL NIL) (-1228 2991851 3007096 3007347 "ULS" 3007726 NIL ULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1227 2979849 2991755 2991827 "ULSCONS" 2991832 NIL ULSCONS (NIL T T) -8 NIL NIL NIL) (-1226 2961868 2973853 2973915 "ULSCCAT" 2974553 NIL ULSCCAT (NIL T T) -9 NIL 2974841 NIL) (-1225 2960918 2961163 2961551 "ULSCCAT-" 2961556 NIL ULSCCAT- (NIL T T T) -8 NIL NIL NIL) (-1224 2950292 2956772 2956815 "ULSCAT" 2957678 NIL ULSCAT (NIL T) -9 NIL 2958409 NIL) (-1223 2949722 2949801 2949980 "ULS2" 2950207 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1222 2948849 2949359 2949466 "UINT8" 2949577 T UINT8 (NIL) -8 NIL NIL 2949662) (-1221 2947975 2948485 2948592 "UINT64" 2948703 T UINT64 (NIL) -8 NIL NIL 2948788) (-1220 2947101 2947611 2947718 "UINT32" 2947829 T UINT32 (NIL) -8 NIL NIL 2947914) (-1219 2946227 2946737 2946844 "UINT16" 2946955 T UINT16 (NIL) -8 NIL NIL 2947040) (-1218 2944530 2945487 2945517 "UFD" 2945729 T UFD (NIL) -9 NIL 2945843 NIL) (-1217 2944324 2944370 2944465 "UFD-" 2944470 NIL UFD- (NIL T) -8 NIL NIL NIL) (-1216 2943406 2943589 2943805 "UDVO" 2944130 T UDVO (NIL) -7 NIL NIL NIL) (-1215 2941222 2941631 2942102 "UDPO" 2942970 NIL UDPO (NIL T) -7 NIL NIL NIL) (-1214 2941155 2941160 2941190 "TYPE" 2941195 T TYPE (NIL) -9 NIL NIL NIL) (-1213 2940915 2941110 2941141 "TYPEAST" 2941146 T TYPEAST (NIL) -8 NIL NIL NIL) (-1212 2939886 2940088 2940328 "TWOFACT" 2940709 NIL TWOFACT (NIL T) -7 NIL NIL NIL) (-1211 2938909 2939295 2939530 "TUPLE" 2939686 NIL TUPLE (NIL T) -8 NIL NIL NIL) (-1210 2936600 2937119 2937658 "TUBETOOL" 2938392 T TUBETOOL (NIL) -7 NIL NIL NIL) (-1209 2935449 2935654 2935895 "TUBE" 2936393 NIL TUBE (NIL T) -8 NIL NIL NIL) (-1208 2930178 2934421 2934704 "TS" 2935201 NIL TS (NIL T) -8 NIL NIL NIL) (-1207 2918818 2922937 2923034 "TSETCAT" 2928303 NIL TSETCAT (NIL T T T T) -9 NIL 2929834 NIL) (-1206 2913550 2915150 2917041 "TSETCAT-" 2917046 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1205 2908189 2909036 2909965 "TRMANIP" 2912686 NIL TRMANIP (NIL T T) -7 NIL NIL NIL) (-1204 2907630 2907693 2907856 "TRIMAT" 2908121 NIL TRIMAT (NIL T T T T) -7 NIL NIL NIL) (-1203 2905496 2905733 2906090 "TRIGMNIP" 2907379 NIL TRIGMNIP (NIL T T) -7 NIL NIL NIL) (-1202 2905016 2905129 2905159 "TRIGCAT" 2905372 T TRIGCAT (NIL) -9 NIL NIL NIL) (-1201 2904685 2904764 2904905 "TRIGCAT-" 2904910 NIL TRIGCAT- (NIL T) -8 NIL NIL NIL) (-1200 2901530 2903543 2903824 "TREE" 2904439 NIL TREE (NIL T) -8 NIL NIL NIL) (-1199 2900804 2901332 2901362 "TRANFUN" 2901397 T TRANFUN (NIL) -9 NIL 2901463 NIL) (-1198 2900083 2900274 2900554 "TRANFUN-" 2900559 NIL TRANFUN- (NIL T) -8 NIL NIL NIL) (-1197 2899887 2899919 2899980 "TOPSP" 2900044 T TOPSP (NIL) -7 NIL NIL NIL) (-1196 2899235 2899350 2899504 "TOOLSIGN" 2899768 NIL TOOLSIGN (NIL T) -7 NIL NIL NIL) (-1195 2897869 2898412 2898651 "TEXTFILE" 2899018 T TEXTFILE (NIL) -8 NIL NIL NIL) (-1194 2895781 2896322 2896751 "TEX" 2897462 T TEX (NIL) -8 NIL NIL NIL) (-1193 2895562 2895593 2895665 "TEX1" 2895744 NIL TEX1 (NIL T) -7 NIL NIL NIL) (-1192 2895210 2895273 2895363 "TEMUTL" 2895494 T TEMUTL (NIL) -7 NIL NIL NIL) (-1191 2893364 2893644 2893969 "TBCMPPK" 2894933 NIL TBCMPPK (NIL T T) -7 NIL NIL NIL) (-1190 2885141 2891524 2891580 "TBAGG" 2891980 NIL TBAGG (NIL T T) -9 NIL 2892191 NIL) (-1189 2880211 2881699 2883453 "TBAGG-" 2883458 NIL TBAGG- (NIL T T T) -8 NIL NIL NIL) (-1188 2879595 2879702 2879847 "TANEXP" 2880100 NIL TANEXP (NIL T) -7 NIL NIL NIL) (-1187 2872985 2879452 2879545 "TABLE" 2879550 NIL TABLE (NIL T T) -8 NIL NIL NIL) (-1186 2872397 2872496 2872634 "TABLEAU" 2872882 NIL TABLEAU (NIL T) -8 NIL NIL NIL) (-1185 2867005 2868225 2869473 "TABLBUMP" 2871183 NIL TABLBUMP (NIL T) -7 NIL NIL NIL) (-1184 2866227 2866374 2866555 "SYSTEM" 2866846 T SYSTEM (NIL) -8 NIL NIL NIL) (-1183 2862686 2863385 2864168 "SYSSOLP" 2865478 NIL SYSSOLP (NIL T) -7 NIL NIL NIL) (-1182 2861730 2862235 2862354 "SYSNNI" 2862540 NIL SYSNNI (NIL NIL) -8 NIL NIL 2862625) (-1181 2861037 2861496 2861575 "SYSINT" 2861635 NIL SYSINT (NIL NIL) -8 NIL NIL 2861680) (-1180 2857369 2858315 2859025 "SYNTAX" 2860349 T SYNTAX (NIL) -8 NIL NIL NIL) (-1179 2854527 2855129 2855761 "SYMTAB" 2856759 T SYMTAB (NIL) -8 NIL NIL NIL) (-1178 2849776 2850678 2851661 "SYMS" 2853566 T SYMS (NIL) -8 NIL NIL NIL) (-1177 2847011 2849234 2849464 "SYMPOLY" 2849581 NIL SYMPOLY (NIL T) -8 NIL NIL NIL) (-1176 2846528 2846603 2846726 "SYMFUNC" 2846923 NIL SYMFUNC (NIL T) -7 NIL NIL NIL) (-1175 2842547 2843840 2844653 "SYMBOL" 2845737 T SYMBOL (NIL) -8 NIL NIL NIL) (-1174 2836086 2837775 2839495 "SWITCH" 2840849 T SWITCH (NIL) -8 NIL NIL NIL) (-1173 2829320 2834907 2835210 "SUTS" 2835841 NIL SUTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1172 2821386 2828567 2828840 "SUPXS" 2829105 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1171 2813145 2821004 2821130 "SUP" 2821295 NIL SUP (NIL T) -8 NIL NIL NIL) (-1170 2812304 2812431 2812648 "SUPFRACF" 2813013 NIL SUPFRACF (NIL T T T T) -7 NIL NIL NIL) (-1169 2811925 2811984 2812097 "SUP2" 2812239 NIL SUP2 (NIL T T) -7 NIL NIL NIL) (-1168 2810373 2810647 2811003 "SUMRF" 2811624 NIL SUMRF (NIL T) -7 NIL NIL NIL) (-1167 2809708 2809774 2809966 "SUMFS" 2810294 NIL SUMFS (NIL T T) -7 NIL NIL NIL) (-1166 2793675 2808885 2809136 "SULS" 2809515 NIL SULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1165 2793277 2793497 2793567 "SUCHTAST" 2793627 T SUCHTAST (NIL) -8 NIL NIL NIL) (-1164 2792572 2792802 2792942 "SUCH" 2793185 NIL SUCH (NIL T T) -8 NIL NIL NIL) (-1163 2786438 2787478 2788437 "SUBSPACE" 2791660 NIL SUBSPACE (NIL NIL T) -8 NIL NIL NIL) (-1162 2785868 2785958 2786122 "SUBRESP" 2786326 NIL SUBRESP (NIL T T) -7 NIL NIL NIL) (-1161 2779233 2780533 2781844 "STTF" 2784604 NIL STTF (NIL T) -7 NIL NIL NIL) (-1160 2773406 2774526 2775673 "STTFNC" 2778133 NIL STTFNC (NIL T) -7 NIL NIL NIL) (-1159 2764716 2766588 2768382 "STTAYLOR" 2771647 NIL STTAYLOR (NIL T) -7 NIL NIL NIL) (-1158 2757846 2764580 2764663 "STRTBL" 2764668 NIL STRTBL (NIL T) -8 NIL NIL NIL) (-1157 2753210 2757801 2757832 "STRING" 2757837 T STRING (NIL) -8 NIL NIL NIL) (-1156 2748071 2752583 2752613 "STRICAT" 2752672 T STRICAT (NIL) -9 NIL 2752734 NIL) (-1155 2740824 2745690 2746301 "STREAM" 2747495 NIL STREAM (NIL T) -8 NIL NIL NIL) (-1154 2740334 2740411 2740555 "STREAM3" 2740741 NIL STREAM3 (NIL T T T) -7 NIL NIL NIL) (-1153 2739316 2739499 2739734 "STREAM2" 2740147 NIL STREAM2 (NIL T T) -7 NIL NIL NIL) (-1152 2739004 2739056 2739149 "STREAM1" 2739258 NIL STREAM1 (NIL T) -7 NIL NIL NIL) (-1151 2738020 2738201 2738432 "STINPROD" 2738820 NIL STINPROD (NIL T) -7 NIL NIL NIL) (-1150 2737572 2737782 2737812 "STEP" 2737892 T STEP (NIL) -9 NIL 2737970 NIL) (-1149 2731004 2737471 2737548 "STBL" 2737553 NIL STBL (NIL T T NIL) -8 NIL NIL NIL) (-1148 2726130 2730225 2730268 "STAGG" 2730421 NIL STAGG (NIL T) -9 NIL 2730510 NIL) (-1147 2723832 2724434 2725306 "STAGG-" 2725311 NIL STAGG- (NIL T T) -8 NIL NIL NIL) (-1146 2721979 2723602 2723694 "STACK" 2723775 NIL STACK (NIL T) -8 NIL NIL NIL) (-1145 2714674 2720120 2720576 "SREGSET" 2721609 NIL SREGSET (NIL T T T T) -8 NIL NIL NIL) (-1144 2707099 2708468 2709981 "SRDCMPK" 2713280 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1143 2700016 2704539 2704569 "SRAGG" 2705872 T SRAGG (NIL) -9 NIL 2706480 NIL) (-1142 2699033 2699288 2699667 "SRAGG-" 2699672 NIL SRAGG- (NIL T) -8 NIL NIL NIL) (-1141 2693493 2697980 2698401 "SQMATRIX" 2698659 NIL SQMATRIX (NIL NIL T) -8 NIL NIL NIL) (-1140 2687178 2690211 2690938 "SPLTREE" 2692838 NIL SPLTREE (NIL T T) -8 NIL NIL NIL) (-1139 2683141 2683834 2684480 "SPLNODE" 2686604 NIL SPLNODE (NIL T T) -8 NIL NIL NIL) (-1138 2682188 2682421 2682451 "SPFCAT" 2682895 T SPFCAT (NIL) -9 NIL NIL NIL) (-1137 2680925 2681135 2681399 "SPECOUT" 2681946 T SPECOUT (NIL) -7 NIL NIL NIL) (-1136 2672551 2674321 2674351 "SPADXPT" 2678743 T SPADXPT (NIL) -9 NIL 2680777 NIL) (-1135 2672312 2672352 2672421 "SPADPRSR" 2672504 T SPADPRSR (NIL) -7 NIL NIL NIL) (-1134 2670467 2672267 2672298 "SPADAST" 2672303 T SPADAST (NIL) -8 NIL NIL NIL) (-1133 2662412 2664185 2664228 "SPACEC" 2668601 NIL SPACEC (NIL T) -9 NIL 2670417 NIL) (-1132 2660542 2662344 2662393 "SPACE3" 2662398 NIL SPACE3 (NIL T) -8 NIL NIL NIL) (-1131 2659294 2659465 2659756 "SORTPAK" 2660347 NIL SORTPAK (NIL T T) -7 NIL NIL NIL) (-1130 2657386 2657689 2658101 "SOLVETRA" 2658958 NIL SOLVETRA (NIL T) -7 NIL NIL NIL) (-1129 2656436 2656658 2656919 "SOLVESER" 2657159 NIL SOLVESER (NIL T) -7 NIL NIL NIL) (-1128 2651740 2652628 2653623 "SOLVERAD" 2655488 NIL SOLVERAD (NIL T) -7 NIL NIL NIL) (-1127 2647555 2648164 2648893 "SOLVEFOR" 2651107 NIL SOLVEFOR (NIL T T) -7 NIL NIL NIL) (-1126 2641825 2646904 2647001 "SNTSCAT" 2647006 NIL SNTSCAT (NIL T T T T) -9 NIL 2647076 NIL) (-1125 2635931 2640148 2640539 "SMTS" 2641515 NIL SMTS (NIL T T T) -8 NIL NIL NIL) (-1124 2630615 2635819 2635896 "SMP" 2635901 NIL SMP (NIL T T) -8 NIL NIL NIL) (-1123 2628774 2629075 2629473 "SMITH" 2630312 NIL SMITH (NIL T T T T) -7 NIL NIL NIL) (-1122 2621487 2625683 2625786 "SMATCAT" 2627137 NIL SMATCAT (NIL NIL T T T) -9 NIL 2627687 NIL) (-1121 2618427 2619250 2620428 "SMATCAT-" 2620433 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL NIL) (-1120 2616093 2617663 2617706 "SKAGG" 2617967 NIL SKAGG (NIL T) -9 NIL 2618102 NIL) (-1119 2612404 2615509 2615704 "SINT" 2615891 T SINT (NIL) -8 NIL NIL 2616064) (-1118 2612176 2612214 2612280 "SIMPAN" 2612360 T SIMPAN (NIL) -7 NIL NIL NIL) (-1117 2611455 2611711 2611851 "SIG" 2612058 T SIG (NIL) -8 NIL NIL NIL) (-1116 2610293 2610514 2610789 "SIGNRF" 2611214 NIL SIGNRF (NIL T) -7 NIL NIL NIL) (-1115 2609126 2609277 2609561 "SIGNEF" 2610122 NIL SIGNEF (NIL T T) -7 NIL NIL NIL) (-1114 2608432 2608709 2608833 "SIGAST" 2609024 T SIGAST (NIL) -8 NIL NIL NIL) (-1113 2606121 2606576 2607082 "SHP" 2607973 NIL SHP (NIL T NIL) -7 NIL NIL NIL) (-1112 2599973 2606022 2606098 "SHDP" 2606103 NIL SHDP (NIL NIL NIL T) -8 NIL NIL NIL) (-1111 2599546 2599738 2599768 "SGROUP" 2599861 T SGROUP (NIL) -9 NIL 2599923 NIL) (-1110 2599404 2599430 2599503 "SGROUP-" 2599508 NIL SGROUP- (NIL T) -8 NIL NIL NIL) (-1109 2596239 2596937 2597660 "SGCF" 2598703 T SGCF (NIL) -7 NIL NIL NIL) (-1108 2590607 2595686 2595783 "SFRTCAT" 2595788 NIL SFRTCAT (NIL T T T T) -9 NIL 2595827 NIL) (-1107 2584028 2585046 2586182 "SFRGCD" 2589590 NIL SFRGCD (NIL T T T T T) -7 NIL NIL NIL) (-1106 2577154 2578227 2579413 "SFQCMPK" 2582961 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1105 2576774 2576863 2576974 "SFORT" 2577095 NIL SFORT (NIL T T) -8 NIL NIL NIL) (-1104 2575892 2576614 2576735 "SEXOF" 2576740 NIL SEXOF (NIL T T T T T) -8 NIL NIL NIL) (-1103 2574999 2575773 2575841 "SEX" 2575846 T SEX (NIL) -8 NIL NIL NIL) (-1102 2570512 2571227 2571322 "SEXCAT" 2574259 NIL SEXCAT (NIL T T T T T) -9 NIL 2574837 NIL) (-1101 2567665 2570446 2570494 "SET" 2570499 NIL SET (NIL T) -8 NIL NIL NIL) (-1100 2565889 2566378 2566683 "SETMN" 2567406 NIL SETMN (NIL NIL NIL) -8 NIL NIL NIL) (-1099 2565385 2565537 2565567 "SETCAT" 2565743 T SETCAT (NIL) -9 NIL 2565853 NIL) (-1098 2565077 2565155 2565285 "SETCAT-" 2565290 NIL SETCAT- (NIL T) -8 NIL NIL NIL) (-1097 2561438 2563538 2563581 "SETAGG" 2564451 NIL SETAGG (NIL T) -9 NIL 2564791 NIL) (-1096 2560896 2561012 2561249 "SETAGG-" 2561254 NIL SETAGG- (NIL T T) -8 NIL NIL NIL) (-1095 2560339 2560592 2560693 "SEQAST" 2560817 T SEQAST (NIL) -8 NIL NIL NIL) (-1094 2559538 2559832 2559893 "SEGXCAT" 2560179 NIL SEGXCAT (NIL T T) -9 NIL 2560299 NIL) (-1093 2558544 2559204 2559386 "SEG" 2559391 NIL SEG (NIL T) -8 NIL NIL NIL) (-1092 2557523 2557737 2557780 "SEGCAT" 2558302 NIL SEGCAT (NIL T) -9 NIL 2558523 NIL) (-1091 2556524 2556902 2557102 "SEGBIND" 2557358 NIL SEGBIND (NIL T) -8 NIL NIL NIL) (-1090 2556145 2556204 2556317 "SEGBIND2" 2556459 NIL SEGBIND2 (NIL T T) -7 NIL NIL NIL) (-1089 2555718 2555946 2556023 "SEGAST" 2556090 T SEGAST (NIL) -8 NIL NIL NIL) (-1088 2554937 2555063 2555267 "SEG2" 2555562 NIL SEG2 (NIL T T) -7 NIL NIL NIL) (-1087 2554347 2554872 2554919 "SDVAR" 2554924 NIL SDVAR (NIL T) -8 NIL NIL NIL) (-1086 2546874 2554117 2554247 "SDPOL" 2554252 NIL SDPOL (NIL T) -8 NIL NIL NIL) (-1085 2545467 2545733 2546052 "SCPKG" 2546589 NIL SCPKG (NIL T) -7 NIL NIL NIL) (-1084 2544631 2544803 2544995 "SCOPE" 2545297 T SCOPE (NIL) -8 NIL NIL NIL) (-1083 2543851 2543985 2544164 "SCACHE" 2544486 NIL SCACHE (NIL T) -7 NIL NIL NIL) (-1082 2543497 2543683 2543713 "SASTCAT" 2543718 T SASTCAT (NIL) -9 NIL 2543731 NIL) (-1081 2542984 2543332 2543408 "SAOS" 2543443 T SAOS (NIL) -8 NIL NIL NIL) (-1080 2542549 2542584 2542757 "SAERFFC" 2542943 NIL SAERFFC (NIL T T T) -7 NIL NIL NIL) (-1079 2536488 2542446 2542526 "SAE" 2542531 NIL SAE (NIL T T NIL) -8 NIL NIL NIL) (-1078 2536081 2536116 2536275 "SAEFACT" 2536447 NIL SAEFACT (NIL T T T) -7 NIL NIL NIL) (-1077 2534402 2534716 2535117 "RURPK" 2535747 NIL RURPK (NIL T NIL) -7 NIL NIL NIL) (-1076 2533039 2533345 2533650 "RULESET" 2534236 NIL RULESET (NIL T T T) -8 NIL NIL NIL) (-1075 2530262 2530792 2531250 "RULE" 2532720 NIL RULE (NIL T T T) -8 NIL NIL NIL) (-1074 2529874 2530056 2530139 "RULECOLD" 2530214 NIL RULECOLD (NIL NIL) -8 NIL NIL NIL) (-1073 2529664 2529692 2529763 "RTVALUE" 2529825 T RTVALUE (NIL) -8 NIL NIL NIL) (-1072 2529135 2529381 2529475 "RSTRCAST" 2529592 T RSTRCAST (NIL) -8 NIL NIL NIL) (-1071 2523983 2524778 2525698 "RSETGCD" 2528334 NIL RSETGCD (NIL T T T T T) -7 NIL NIL NIL) (-1070 2513213 2518292 2518389 "RSETCAT" 2522508 NIL RSETCAT (NIL T T T T) -9 NIL 2523605 NIL) (-1069 2511140 2511679 2512503 "RSETCAT-" 2512508 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1068 2503525 2504902 2506422 "RSDCMPK" 2509739 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1067 2501504 2501971 2502045 "RRCC" 2503131 NIL RRCC (NIL T T) -9 NIL 2503475 NIL) (-1066 2500855 2501029 2501308 "RRCC-" 2501313 NIL RRCC- (NIL T T T) -8 NIL NIL NIL) (-1065 2500298 2500551 2500652 "RPTAST" 2500776 T RPTAST (NIL) -8 NIL NIL NIL) (-1064 2474149 2483506 2483573 "RPOLCAT" 2494237 NIL RPOLCAT (NIL T T T) -9 NIL 2497396 NIL) (-1063 2465647 2467987 2471109 "RPOLCAT-" 2471114 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL NIL) (-1062 2456578 2463858 2464340 "ROUTINE" 2465187 T ROUTINE (NIL) -8 NIL NIL NIL) (-1061 2453376 2456204 2456344 "ROMAN" 2456460 T ROMAN (NIL) -8 NIL NIL NIL) (-1060 2451620 2452236 2452496 "ROIRC" 2453181 NIL ROIRC (NIL T T) -8 NIL NIL NIL) (-1059 2447852 2450136 2450166 "RNS" 2450470 T RNS (NIL) -9 NIL 2450744 NIL) (-1058 2446361 2446744 2447278 "RNS-" 2447353 NIL RNS- (NIL T) -8 NIL NIL NIL) (-1057 2445764 2446172 2446202 "RNG" 2446207 T RNG (NIL) -9 NIL 2446228 NIL) (-1056 2445163 2445551 2445594 "RMODULE" 2445599 NIL RMODULE (NIL T) -9 NIL 2445626 NIL) (-1055 2443999 2444093 2444429 "RMCAT2" 2445064 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL NIL) (-1054 2440849 2443345 2443642 "RMATRIX" 2443761 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL NIL) (-1053 2433676 2435936 2436051 "RMATCAT" 2439410 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2440392 NIL) (-1052 2433051 2433198 2433505 "RMATCAT-" 2433510 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL NIL) (-1051 2432452 2432673 2432716 "RLINSET" 2432910 NIL RLINSET (NIL T) -9 NIL 2433001 NIL) (-1050 2432019 2432094 2432222 "RINTERP" 2432371 NIL RINTERP (NIL NIL T) -7 NIL NIL NIL) (-1049 2431077 2431631 2431661 "RING" 2431717 T RING (NIL) -9 NIL 2431809 NIL) (-1048 2430869 2430913 2431010 "RING-" 2431015 NIL RING- (NIL T) -8 NIL NIL NIL) (-1047 2429710 2429947 2430205 "RIDIST" 2430633 T RIDIST (NIL) -7 NIL NIL NIL) (-1046 2420999 2429178 2429384 "RGCHAIN" 2429558 NIL RGCHAIN (NIL T NIL) -8 NIL NIL NIL) (-1045 2420349 2420755 2420796 "RGBCSPC" 2420854 NIL RGBCSPC (NIL T) -9 NIL 2420906 NIL) (-1044 2419507 2419888 2419929 "RGBCMDL" 2420161 NIL RGBCMDL (NIL T) -9 NIL 2420275 NIL) (-1043 2416501 2417115 2417785 "RF" 2418871 NIL RF (NIL T) -7 NIL NIL NIL) (-1042 2416147 2416210 2416313 "RFFACTOR" 2416432 NIL RFFACTOR (NIL T) -7 NIL NIL NIL) (-1041 2415872 2415907 2416004 "RFFACT" 2416106 NIL RFFACT (NIL T) -7 NIL NIL NIL) (-1040 2413989 2414353 2414735 "RFDIST" 2415512 T RFDIST (NIL) -7 NIL NIL NIL) (-1039 2413442 2413534 2413697 "RETSOL" 2413891 NIL RETSOL (NIL T T) -7 NIL NIL NIL) (-1038 2413078 2413158 2413201 "RETRACT" 2413334 NIL RETRACT (NIL T) -9 NIL 2413421 NIL) (-1037 2412927 2412952 2413039 "RETRACT-" 2413044 NIL RETRACT- (NIL T T) -8 NIL NIL NIL) (-1036 2412529 2412749 2412819 "RETAST" 2412879 T RETAST (NIL) -8 NIL NIL NIL) (-1035 2405267 2412182 2412309 "RESULT" 2412424 T RESULT (NIL) -8 NIL NIL NIL) (-1034 2403858 2404536 2404735 "RESRING" 2405170 NIL RESRING (NIL T T T T NIL) -8 NIL NIL NIL) (-1033 2403494 2403543 2403641 "RESLATC" 2403795 NIL RESLATC (NIL T) -7 NIL NIL NIL) (-1032 2403199 2403234 2403341 "REPSQ" 2403453 NIL REPSQ (NIL T) -7 NIL NIL NIL) (-1031 2400621 2401201 2401803 "REP" 2402619 T REP (NIL) -7 NIL NIL NIL) (-1030 2400318 2400353 2400464 "REPDB" 2400580 NIL REPDB (NIL T) -7 NIL NIL NIL) (-1029 2394218 2395607 2396830 "REP2" 2399130 NIL REP2 (NIL T) -7 NIL NIL NIL) (-1028 2390595 2391276 2392084 "REP1" 2393445 NIL REP1 (NIL T) -7 NIL NIL NIL) (-1027 2383291 2388736 2389192 "REGSET" 2390225 NIL REGSET (NIL T T T T) -8 NIL NIL NIL) (-1026 2382056 2382439 2382689 "REF" 2383076 NIL REF (NIL T) -8 NIL NIL NIL) (-1025 2381433 2381536 2381703 "REDORDER" 2381940 NIL REDORDER (NIL T T) -7 NIL NIL NIL) (-1024 2377401 2380646 2380873 "RECLOS" 2381261 NIL RECLOS (NIL T) -8 NIL NIL NIL) (-1023 2376453 2376634 2376849 "REALSOLV" 2377208 T REALSOLV (NIL) -7 NIL NIL NIL) (-1022 2376299 2376340 2376370 "REAL" 2376375 T REAL (NIL) -9 NIL 2376410 NIL) (-1021 2372782 2373584 2374468 "REAL0Q" 2375464 NIL REAL0Q (NIL T) -7 NIL NIL NIL) (-1020 2368383 2369371 2370432 "REAL0" 2371763 NIL REAL0 (NIL T) -7 NIL NIL NIL) (-1019 2367854 2368100 2368194 "RDUCEAST" 2368311 T RDUCEAST (NIL) -8 NIL NIL NIL) (-1018 2367259 2367331 2367538 "RDIV" 2367776 NIL RDIV (NIL T T T T T) -7 NIL NIL NIL) (-1017 2366327 2366501 2366714 "RDIST" 2367081 NIL RDIST (NIL T) -7 NIL NIL NIL) (-1016 2364924 2365211 2365583 "RDETRS" 2366035 NIL RDETRS (NIL T T) -7 NIL NIL NIL) (-1015 2362736 2363190 2363728 "RDETR" 2364466 NIL RDETR (NIL T T) -7 NIL NIL NIL) (-1014 2361361 2361639 2362036 "RDEEFS" 2362452 NIL RDEEFS (NIL T T) -7 NIL NIL NIL) (-1013 2359870 2360176 2360601 "RDEEF" 2361049 NIL RDEEF (NIL T T) -7 NIL NIL NIL) (-1012 2353931 2356851 2356881 "RCFIELD" 2358176 T RCFIELD (NIL) -9 NIL 2358907 NIL) (-1011 2351995 2352499 2353195 "RCFIELD-" 2353270 NIL RCFIELD- (NIL T) -8 NIL NIL NIL) (-1010 2348264 2350096 2350139 "RCAGG" 2351223 NIL RCAGG (NIL T) -9 NIL 2351688 NIL) (-1009 2347892 2347986 2348149 "RCAGG-" 2348154 NIL RCAGG- (NIL T T) -8 NIL NIL NIL) (-1008 2347227 2347339 2347504 "RATRET" 2347776 NIL RATRET (NIL T) -7 NIL NIL NIL) (-1007 2346780 2346847 2346968 "RATFACT" 2347155 NIL RATFACT (NIL T) -7 NIL NIL NIL) (-1006 2346088 2346208 2346360 "RANDSRC" 2346650 T RANDSRC (NIL) -7 NIL NIL NIL) (-1005 2345822 2345866 2345939 "RADUTIL" 2346037 T RADUTIL (NIL) -7 NIL NIL NIL) (-1004 2338938 2344655 2344965 "RADIX" 2345546 NIL RADIX (NIL NIL) -8 NIL NIL NIL) (-1003 2330557 2338780 2338910 "RADFF" 2338915 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL NIL) (-1002 2330204 2330279 2330309 "RADCAT" 2330469 T RADCAT (NIL) -9 NIL NIL NIL) (-1001 2329986 2330034 2330134 "RADCAT-" 2330139 NIL RADCAT- (NIL T) -8 NIL NIL NIL) (-1000 2328086 2329758 2329849 "QUEUE" 2329930 NIL QUEUE (NIL T) -8 NIL NIL NIL) (-999 2324627 2328023 2328068 "QUAT" 2328073 NIL QUAT (NIL T) -8 NIL NIL NIL) (-998 2324265 2324308 2324435 "QUATCT2" 2324578 NIL QUATCT2 (NIL T T T T) -7 NIL NIL NIL) (-997 2317727 2321072 2321112 "QUATCAT" 2321892 NIL QUATCAT (NIL T) -9 NIL 2322658 NIL) (-996 2313871 2314908 2316295 "QUATCAT-" 2316389 NIL QUATCAT- (NIL T T) -8 NIL NIL NIL) (-995 2311344 2312955 2312996 "QUAGG" 2313371 NIL QUAGG (NIL T) -9 NIL 2313546 NIL) (-994 2310949 2311169 2311237 "QQUTAST" 2311296 T QQUTAST (NIL) -8 NIL NIL NIL) (-993 2309847 2310347 2310519 "QFORM" 2310821 NIL QFORM (NIL NIL T) -8 NIL NIL NIL) (-992 2300852 2306091 2306131 "QFCAT" 2306789 NIL QFCAT (NIL T) -9 NIL 2307790 NIL) (-991 2296424 2297625 2299216 "QFCAT-" 2299310 NIL QFCAT- (NIL T T) -8 NIL NIL NIL) (-990 2296062 2296105 2296232 "QFCAT2" 2296375 NIL QFCAT2 (NIL T T T T) -7 NIL NIL NIL) (-989 2295522 2295632 2295762 "QEQUAT" 2295952 T QEQUAT (NIL) -8 NIL NIL NIL) (-988 2288668 2289741 2290925 "QCMPACK" 2294455 NIL QCMPACK (NIL T T T T T) -7 NIL NIL NIL) (-987 2286217 2286665 2287093 "QALGSET" 2288323 NIL QALGSET (NIL T T T T) -8 NIL NIL NIL) (-986 2285462 2285636 2285868 "QALGSET2" 2286037 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL NIL) (-985 2284152 2284376 2284693 "PWFFINTB" 2285235 NIL PWFFINTB (NIL T T T T) -7 NIL NIL NIL) (-984 2282334 2282502 2282856 "PUSHVAR" 2283966 NIL PUSHVAR (NIL T T T T) -7 NIL NIL NIL) (-983 2278252 2279306 2279347 "PTRANFN" 2281231 NIL PTRANFN (NIL T) -9 NIL NIL NIL) (-982 2276654 2276945 2277267 "PTPACK" 2277963 NIL PTPACK (NIL T) -7 NIL NIL NIL) (-981 2276286 2276343 2276452 "PTFUNC2" 2276591 NIL PTFUNC2 (NIL T T) -7 NIL NIL NIL) (-980 2270763 2275158 2275199 "PTCAT" 2275495 NIL PTCAT (NIL T) -9 NIL 2275648 NIL) (-979 2270421 2270456 2270580 "PSQFR" 2270722 NIL PSQFR (NIL T T T T) -7 NIL NIL NIL) (-978 2269016 2269314 2269648 "PSEUDLIN" 2270119 NIL PSEUDLIN (NIL T) -7 NIL NIL NIL) (-977 2255779 2258150 2260474 "PSETPK" 2266776 NIL PSETPK (NIL T T T T) -7 NIL NIL NIL) (-976 2248797 2251537 2251633 "PSETCAT" 2254654 NIL PSETCAT (NIL T T T T) -9 NIL 2255468 NIL) (-975 2246633 2247267 2248088 "PSETCAT-" 2248093 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-974 2245982 2246147 2246175 "PSCURVE" 2246443 T PSCURVE (NIL) -9 NIL 2246610 NIL) (-973 2241980 2243496 2243561 "PSCAT" 2244405 NIL PSCAT (NIL T T T) -9 NIL 2244645 NIL) (-972 2241043 2241259 2241659 "PSCAT-" 2241664 NIL PSCAT- (NIL T T T T) -8 NIL NIL NIL) (-971 2239748 2240408 2240613 "PRTITION" 2240858 T PRTITION (NIL) -8 NIL NIL NIL) (-970 2239223 2239469 2239561 "PRTDAST" 2239676 T PRTDAST (NIL) -8 NIL NIL NIL) (-969 2228312 2230527 2232715 "PRS" 2237085 NIL PRS (NIL T T) -7 NIL NIL NIL) (-968 2226123 2227662 2227702 "PRQAGG" 2227885 NIL PRQAGG (NIL T) -9 NIL 2227987 NIL) (-967 2225327 2225632 2225660 "PROPLOG" 2225907 T PROPLOG (NIL) -9 NIL 2226073 NIL) (-966 2223757 2224278 2224535 "PROPFRML" 2225103 NIL PROPFRML (NIL T) -8 NIL NIL NIL) (-965 2223226 2223333 2223461 "PROPERTY" 2223649 T PROPERTY (NIL) -8 NIL NIL NIL) (-964 2217284 2221392 2222212 "PRODUCT" 2222452 NIL PRODUCT (NIL T T) -8 NIL NIL NIL) (-963 2214562 2216742 2216976 "PR" 2217095 NIL PR (NIL T T) -8 NIL NIL NIL) (-962 2214358 2214390 2214449 "PRINT" 2214523 T PRINT (NIL) -7 NIL NIL NIL) (-961 2213698 2213815 2213967 "PRIMES" 2214238 NIL PRIMES (NIL T) -7 NIL NIL NIL) (-960 2211763 2212164 2212630 "PRIMELT" 2213277 NIL PRIMELT (NIL T) -7 NIL NIL NIL) (-959 2211492 2211541 2211569 "PRIMCAT" 2211693 T PRIMCAT (NIL) -9 NIL NIL NIL) (-958 2207607 2211430 2211475 "PRIMARR" 2211480 NIL PRIMARR (NIL T) -8 NIL NIL NIL) (-957 2206614 2206792 2207020 "PRIMARR2" 2207425 NIL PRIMARR2 (NIL T T) -7 NIL NIL NIL) (-956 2206257 2206313 2206424 "PREASSOC" 2206552 NIL PREASSOC (NIL T T) -7 NIL NIL NIL) (-955 2205732 2205865 2205893 "PPCURVE" 2206098 T PPCURVE (NIL) -9 NIL 2206234 NIL) (-954 2205327 2205527 2205610 "PORTNUM" 2205669 T PORTNUM (NIL) -8 NIL NIL NIL) (-953 2202686 2203085 2203677 "POLYROOT" 2204908 NIL POLYROOT (NIL T T T T T) -7 NIL NIL NIL) (-952 2196868 2202290 2202450 "POLY" 2202559 NIL POLY (NIL T) -8 NIL NIL NIL) (-951 2196251 2196309 2196543 "POLYLIFT" 2196804 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL NIL) (-950 2192526 2192975 2193604 "POLYCATQ" 2195796 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL NIL) (-949 2179238 2184366 2184431 "POLYCAT" 2187945 NIL POLYCAT (NIL T T T) -9 NIL 2189823 NIL) (-948 2172687 2174549 2176933 "POLYCAT-" 2176938 NIL POLYCAT- (NIL T T T T) -8 NIL NIL NIL) (-947 2172274 2172342 2172462 "POLY2UP" 2172613 NIL POLY2UP (NIL NIL T) -7 NIL NIL NIL) (-946 2171906 2171963 2172072 "POLY2" 2172211 NIL POLY2 (NIL T T) -7 NIL NIL NIL) (-945 2170591 2170830 2171106 "POLUTIL" 2171680 NIL POLUTIL (NIL T T) -7 NIL NIL NIL) (-944 2168946 2169223 2169554 "POLTOPOL" 2170313 NIL POLTOPOL (NIL NIL T) -7 NIL NIL NIL) (-943 2164411 2168882 2168928 "POINT" 2168933 NIL POINT (NIL T) -8 NIL NIL NIL) (-942 2162598 2162955 2163330 "PNTHEORY" 2164056 T PNTHEORY (NIL) -7 NIL NIL NIL) (-941 2161056 2161353 2161752 "PMTOOLS" 2162296 NIL PMTOOLS (NIL T T T) -7 NIL NIL NIL) (-940 2160649 2160727 2160844 "PMSYM" 2160972 NIL PMSYM (NIL T) -7 NIL NIL NIL) (-939 2160159 2160228 2160402 "PMQFCAT" 2160574 NIL PMQFCAT (NIL T T T) -7 NIL NIL NIL) (-938 2159514 2159624 2159780 "PMPRED" 2160036 NIL PMPRED (NIL T) -7 NIL NIL NIL) (-937 2158907 2158993 2159155 "PMPREDFS" 2159415 NIL PMPREDFS (NIL T T T) -7 NIL NIL NIL) (-936 2157571 2157779 2158157 "PMPLCAT" 2158669 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL NIL) (-935 2157103 2157182 2157334 "PMLSAGG" 2157486 NIL PMLSAGG (NIL T T T) -7 NIL NIL NIL) (-934 2156576 2156652 2156834 "PMKERNEL" 2157021 NIL PMKERNEL (NIL T T) -7 NIL NIL NIL) (-933 2156193 2156268 2156381 "PMINS" 2156495 NIL PMINS (NIL T) -7 NIL NIL NIL) (-932 2155635 2155704 2155913 "PMFS" 2156118 NIL PMFS (NIL T T T) -7 NIL NIL NIL) (-931 2154863 2154981 2155186 "PMDOWN" 2155512 NIL PMDOWN (NIL T T T) -7 NIL NIL NIL) (-930 2154030 2154188 2154369 "PMASS" 2154702 T PMASS (NIL) -7 NIL NIL NIL) (-929 2153303 2153413 2153576 "PMASSFS" 2153917 NIL PMASSFS (NIL T T) -7 NIL NIL NIL) (-928 2152958 2153026 2153120 "PLOTTOOL" 2153229 T PLOTTOOL (NIL) -7 NIL NIL NIL) (-927 2147565 2148769 2149917 "PLOT" 2151830 T PLOT (NIL) -8 NIL NIL NIL) (-926 2143369 2144413 2145334 "PLOT3D" 2146664 T PLOT3D (NIL) -8 NIL NIL NIL) (-925 2142281 2142458 2142693 "PLOT1" 2143173 NIL PLOT1 (NIL T) -7 NIL NIL NIL) (-924 2117670 2122347 2127198 "PLEQN" 2137547 NIL PLEQN (NIL T T T T) -7 NIL NIL NIL) (-923 2116988 2117110 2117290 "PINTERP" 2117535 NIL PINTERP (NIL NIL T) -7 NIL NIL NIL) (-922 2116681 2116728 2116831 "PINTERPA" 2116935 NIL PINTERPA (NIL T T) -7 NIL NIL NIL) (-921 2115902 2116450 2116537 "PI" 2116577 T PI (NIL) -8 NIL NIL 2116644) (-920 2114199 2115174 2115202 "PID" 2115384 T PID (NIL) -9 NIL 2115518 NIL) (-919 2113950 2113987 2114062 "PICOERCE" 2114156 NIL PICOERCE (NIL T) -7 NIL NIL NIL) (-918 2113270 2113409 2113585 "PGROEB" 2113806 NIL PGROEB (NIL T) -7 NIL NIL NIL) (-917 2108857 2109671 2110576 "PGE" 2112385 T PGE (NIL) -7 NIL NIL NIL) (-916 2106980 2107227 2107593 "PGCD" 2108574 NIL PGCD (NIL T T T T) -7 NIL NIL NIL) (-915 2106318 2106421 2106582 "PFRPAC" 2106864 NIL PFRPAC (NIL T) -7 NIL NIL NIL) (-914 2102958 2104866 2105219 "PFR" 2105997 NIL PFR (NIL T) -8 NIL NIL NIL) (-913 2101347 2101591 2101916 "PFOTOOLS" 2102705 NIL PFOTOOLS (NIL T T) -7 NIL NIL NIL) (-912 2099880 2100119 2100470 "PFOQ" 2101104 NIL PFOQ (NIL T T T) -7 NIL NIL NIL) (-911 2098381 2098593 2098949 "PFO" 2099664 NIL PFO (NIL T T T T T) -7 NIL NIL NIL) (-910 2094934 2098270 2098339 "PF" 2098344 NIL PF (NIL NIL) -8 NIL NIL NIL) (-909 2092268 2093539 2093567 "PFECAT" 2094152 T PFECAT (NIL) -9 NIL 2094536 NIL) (-908 2091713 2091867 2092081 "PFECAT-" 2092086 NIL PFECAT- (NIL T) -8 NIL NIL NIL) (-907 2090316 2090568 2090869 "PFBRU" 2091462 NIL PFBRU (NIL T T) -7 NIL NIL NIL) (-906 2088182 2088534 2088966 "PFBR" 2089967 NIL PFBR (NIL T T T T) -7 NIL NIL NIL) (-905 2084064 2085558 2086234 "PERM" 2087539 NIL PERM (NIL T) -8 NIL NIL NIL) (-904 2079298 2080271 2081141 "PERMGRP" 2083227 NIL PERMGRP (NIL T) -8 NIL NIL NIL) (-903 2077404 2078361 2078402 "PERMCAT" 2078848 NIL PERMCAT (NIL T) -9 NIL 2079153 NIL) (-902 2077057 2077098 2077222 "PERMAN" 2077357 NIL PERMAN (NIL NIL T) -7 NIL NIL NIL) (-901 2074545 2076722 2076844 "PENDTREE" 2076968 NIL PENDTREE (NIL T) -8 NIL NIL NIL) (-900 2072569 2073337 2073378 "PDRING" 2074035 NIL PDRING (NIL T) -9 NIL 2074321 NIL) (-899 2071672 2071890 2072252 "PDRING-" 2072257 NIL PDRING- (NIL T T) -8 NIL NIL NIL) (-898 2068887 2069665 2070333 "PDEPROB" 2071024 T PDEPROB (NIL) -8 NIL NIL NIL) (-897 2066432 2066936 2067491 "PDEPACK" 2068352 T PDEPACK (NIL) -7 NIL NIL NIL) (-896 2065344 2065534 2065785 "PDECOMP" 2066231 NIL PDECOMP (NIL T T) -7 NIL NIL NIL) (-895 2062923 2063766 2063794 "PDECAT" 2064581 T PDECAT (NIL) -9 NIL 2065294 NIL) (-894 2062674 2062707 2062797 "PCOMP" 2062884 NIL PCOMP (NIL T T) -7 NIL NIL NIL) (-893 2060852 2061475 2061772 "PBWLB" 2062403 NIL PBWLB (NIL T) -8 NIL NIL NIL) (-892 2053325 2054925 2056263 "PATTERN" 2059535 NIL PATTERN (NIL T) -8 NIL NIL NIL) (-891 2052957 2053014 2053123 "PATTERN2" 2053262 NIL PATTERN2 (NIL T T) -7 NIL NIL NIL) (-890 2050714 2051102 2051559 "PATTERN1" 2052546 NIL PATTERN1 (NIL T T) -7 NIL NIL NIL) (-889 2048082 2048663 2049144 "PATRES" 2050279 NIL PATRES (NIL T T) -8 NIL NIL NIL) (-888 2047646 2047713 2047845 "PATRES2" 2048009 NIL PATRES2 (NIL T T T) -7 NIL NIL NIL) (-887 2045529 2045934 2046341 "PATMATCH" 2047313 NIL PATMATCH (NIL T T T) -7 NIL NIL NIL) (-886 2045039 2045248 2045289 "PATMAB" 2045396 NIL PATMAB (NIL T) -9 NIL 2045479 NIL) (-885 2043557 2043893 2044151 "PATLRES" 2044844 NIL PATLRES (NIL T T T) -8 NIL NIL NIL) (-884 2043103 2043226 2043267 "PATAB" 2043272 NIL PATAB (NIL T) -9 NIL 2043444 NIL) (-883 2040584 2041116 2041689 "PARTPERM" 2042550 T PARTPERM (NIL) -7 NIL NIL NIL) (-882 2040205 2040268 2040370 "PARSURF" 2040515 NIL PARSURF (NIL T) -8 NIL NIL NIL) (-881 2039837 2039894 2040003 "PARSU2" 2040142 NIL PARSU2 (NIL T T) -7 NIL NIL NIL) (-880 2039601 2039641 2039708 "PARSER" 2039790 T PARSER (NIL) -7 NIL NIL NIL) (-879 2039222 2039285 2039387 "PARSCURV" 2039532 NIL PARSCURV (NIL T) -8 NIL NIL NIL) (-878 2038854 2038911 2039020 "PARSC2" 2039159 NIL PARSC2 (NIL T T) -7 NIL NIL NIL) (-877 2038493 2038551 2038648 "PARPCURV" 2038790 NIL PARPCURV (NIL T) -8 NIL NIL NIL) (-876 2038125 2038182 2038291 "PARPC2" 2038430 NIL PARPC2 (NIL T T) -7 NIL NIL NIL) (-875 2037645 2037731 2037850 "PAN2EXPR" 2038026 T PAN2EXPR (NIL) -7 NIL NIL NIL) (-874 2036422 2036766 2036994 "PALETTE" 2037437 T PALETTE (NIL) -8 NIL NIL NIL) (-873 2034815 2035427 2035787 "PAIR" 2036108 NIL PAIR (NIL T T) -8 NIL NIL NIL) (-872 2028685 2034074 2034268 "PADICRC" 2034670 NIL PADICRC (NIL NIL T) -8 NIL NIL NIL) (-871 2021914 2028031 2028215 "PADICRAT" 2028533 NIL PADICRAT (NIL NIL) -8 NIL NIL NIL) (-870 2020229 2021851 2021896 "PADIC" 2021901 NIL PADIC (NIL NIL) -8 NIL NIL NIL) (-869 2017339 2018903 2018943 "PADICCT" 2019524 NIL PADICCT (NIL NIL) -9 NIL 2019806 NIL) (-868 2016296 2016496 2016764 "PADEPAC" 2017126 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL NIL) (-867 2015508 2015641 2015847 "PADE" 2016158 NIL PADE (NIL T T T) -7 NIL NIL NIL) (-866 2013895 2014716 2014996 "OWP" 2015312 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-865 2013388 2013601 2013698 "OVERSET" 2013818 T OVERSET (NIL) -8 NIL NIL NIL) (-864 2012434 2012993 2013165 "OVAR" 2013256 NIL OVAR (NIL NIL) -8 NIL NIL NIL) (-863 2011698 2011819 2011980 "OUT" 2012293 T OUT (NIL) -7 NIL NIL NIL) (-862 2000570 2002807 2005007 "OUTFORM" 2009518 T OUTFORM (NIL) -8 NIL NIL NIL) (-861 1999906 2000167 2000294 "OUTBFILE" 2000463 T OUTBFILE (NIL) -8 NIL NIL NIL) (-860 1999213 1999378 1999406 "OUTBCON" 1999724 T OUTBCON (NIL) -9 NIL 1999890 NIL) (-859 1998814 1998926 1999083 "OUTBCON-" 1999088 NIL OUTBCON- (NIL T) -8 NIL NIL NIL) (-858 1998194 1998543 1998632 "OSI" 1998745 T OSI (NIL) -8 NIL NIL NIL) (-857 1997724 1998062 1998090 "OSGROUP" 1998095 T OSGROUP (NIL) -9 NIL 1998117 NIL) (-856 1996469 1996696 1996981 "ORTHPOL" 1997471 NIL ORTHPOL (NIL T) -7 NIL NIL NIL) (-855 1994020 1996304 1996425 "OREUP" 1996430 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL NIL) (-854 1991423 1993711 1993838 "ORESUP" 1993962 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL NIL) (-853 1988951 1989451 1990012 "OREPCTO" 1990912 NIL OREPCTO (NIL T T) -7 NIL NIL NIL) (-852 1982637 1984838 1984879 "OREPCAT" 1987227 NIL OREPCAT (NIL T) -9 NIL 1988331 NIL) (-851 1979784 1980566 1981624 "OREPCAT-" 1981629 NIL OREPCAT- (NIL T T) -8 NIL NIL NIL) (-850 1978935 1979233 1979261 "ORDSET" 1979570 T ORDSET (NIL) -9 NIL 1979734 NIL) (-849 1978366 1978514 1978738 "ORDSET-" 1978743 NIL ORDSET- (NIL T) -8 NIL NIL NIL) (-848 1976931 1977722 1977750 "ORDRING" 1977952 T ORDRING (NIL) -9 NIL 1978077 NIL) (-847 1976576 1976670 1976814 "ORDRING-" 1976819 NIL ORDRING- (NIL T) -8 NIL NIL NIL) (-846 1975956 1976419 1976447 "ORDMON" 1976452 T ORDMON (NIL) -9 NIL 1976473 NIL) (-845 1975118 1975265 1975460 "ORDFUNS" 1975805 NIL ORDFUNS (NIL NIL T) -7 NIL NIL NIL) (-844 1974456 1974875 1974903 "ORDFIN" 1974968 T ORDFIN (NIL) -9 NIL 1975042 NIL) (-843 1971015 1973042 1973451 "ORDCOMP" 1974080 NIL ORDCOMP (NIL T) -8 NIL NIL NIL) (-842 1970281 1970408 1970594 "ORDCOMP2" 1970875 NIL ORDCOMP2 (NIL T T) -7 NIL NIL NIL) (-841 1966862 1967772 1968586 "OPTPROB" 1969487 T OPTPROB (NIL) -8 NIL NIL NIL) (-840 1963664 1964303 1965007 "OPTPACK" 1966178 T OPTPACK (NIL) -7 NIL NIL NIL) (-839 1961351 1962117 1962145 "OPTCAT" 1962964 T OPTCAT (NIL) -9 NIL 1963614 NIL) (-838 1960735 1961028 1961133 "OPSIG" 1961266 T OPSIG (NIL) -8 NIL NIL NIL) (-837 1960503 1960542 1960608 "OPQUERY" 1960689 T OPQUERY (NIL) -7 NIL NIL NIL) (-836 1957634 1958814 1959318 "OP" 1960032 NIL OP (NIL T) -8 NIL NIL NIL) (-835 1957008 1957234 1957275 "OPERCAT" 1957487 NIL OPERCAT (NIL T) -9 NIL 1957584 NIL) (-834 1956763 1956819 1956936 "OPERCAT-" 1956941 NIL OPERCAT- (NIL T T) -8 NIL NIL NIL) (-833 1953576 1955560 1955929 "ONECOMP" 1956427 NIL ONECOMP (NIL T) -8 NIL NIL NIL) (-832 1952881 1952996 1953170 "ONECOMP2" 1953448 NIL ONECOMP2 (NIL T T) -7 NIL NIL NIL) (-831 1952300 1952406 1952536 "OMSERVER" 1952771 T OMSERVER (NIL) -7 NIL NIL NIL) (-830 1949162 1951740 1951780 "OMSAGG" 1951841 NIL OMSAGG (NIL T) -9 NIL 1951905 NIL) (-829 1947785 1948048 1948330 "OMPKG" 1948900 T OMPKG (NIL) -7 NIL NIL NIL) (-828 1947215 1947318 1947346 "OM" 1947645 T OM (NIL) -9 NIL NIL NIL) (-827 1945762 1946764 1946933 "OMLO" 1947096 NIL OMLO (NIL T T) -8 NIL NIL NIL) (-826 1944722 1944869 1945089 "OMEXPR" 1945588 NIL OMEXPR (NIL T) -7 NIL NIL NIL) (-825 1944013 1944268 1944404 "OMERR" 1944606 T OMERR (NIL) -8 NIL NIL NIL) (-824 1943164 1943434 1943594 "OMERRK" 1943873 T OMERRK (NIL) -8 NIL NIL NIL) (-823 1942615 1942841 1942949 "OMENC" 1943076 T OMENC (NIL) -8 NIL NIL NIL) (-822 1936510 1937695 1938866 "OMDEV" 1941464 T OMDEV (NIL) -8 NIL NIL NIL) (-821 1935579 1935750 1935944 "OMCONN" 1936336 T OMCONN (NIL) -8 NIL NIL NIL) (-820 1934100 1935076 1935104 "OINTDOM" 1935109 T OINTDOM (NIL) -9 NIL 1935130 NIL) (-819 1929879 1931090 1931806 "OFMONOID" 1933416 NIL OFMONOID (NIL T) -8 NIL NIL NIL) (-818 1929290 1929816 1929861 "ODVAR" 1929866 NIL ODVAR (NIL T) -8 NIL NIL NIL) (-817 1926713 1929035 1929190 "ODR" 1929195 NIL ODR (NIL T T NIL) -8 NIL NIL NIL) (-816 1919294 1926489 1926615 "ODPOL" 1926620 NIL ODPOL (NIL T) -8 NIL NIL NIL) (-815 1913116 1919166 1919271 "ODP" 1919276 NIL ODP (NIL NIL T NIL) -8 NIL NIL NIL) (-814 1911882 1912097 1912372 "ODETOOLS" 1912890 NIL ODETOOLS (NIL T T) -7 NIL NIL NIL) (-813 1908849 1909507 1910223 "ODESYS" 1911215 NIL ODESYS (NIL T T) -7 NIL NIL NIL) (-812 1903731 1904639 1905664 "ODERTRIC" 1907924 NIL ODERTRIC (NIL T T) -7 NIL NIL NIL) (-811 1903157 1903239 1903433 "ODERED" 1903643 NIL ODERED (NIL T T T T T) -7 NIL NIL NIL) (-810 1900045 1900593 1901270 "ODERAT" 1902580 NIL ODERAT (NIL T T) -7 NIL NIL NIL) (-809 1897002 1897469 1898066 "ODEPRRIC" 1899574 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL NIL) (-808 1894945 1895541 1896027 "ODEPROB" 1896536 T ODEPROB (NIL) -8 NIL NIL NIL) (-807 1891465 1891950 1892597 "ODEPRIM" 1894424 NIL ODEPRIM (NIL T T T T) -7 NIL NIL NIL) (-806 1890714 1890816 1891076 "ODEPAL" 1891357 NIL ODEPAL (NIL T T T T) -7 NIL NIL NIL) (-805 1886876 1887667 1888531 "ODEPACK" 1889870 T ODEPACK (NIL) -7 NIL NIL NIL) (-804 1885937 1886044 1886266 "ODEINT" 1886765 NIL ODEINT (NIL T T) -7 NIL NIL NIL) (-803 1880038 1881463 1882910 "ODEIFTBL" 1884510 T ODEIFTBL (NIL) -8 NIL NIL NIL) (-802 1875436 1876222 1877174 "ODEEF" 1879197 NIL ODEEF (NIL T T) -7 NIL NIL NIL) (-801 1874785 1874874 1875097 "ODECONST" 1875341 NIL ODECONST (NIL T T T) -7 NIL NIL NIL) (-800 1872910 1873571 1873599 "ODECAT" 1874204 T ODECAT (NIL) -9 NIL 1874735 NIL) (-799 1869782 1872622 1872741 "OCT" 1872823 NIL OCT (NIL T) -8 NIL NIL NIL) (-798 1869420 1869463 1869590 "OCTCT2" 1869733 NIL OCTCT2 (NIL T T T T) -7 NIL NIL NIL) (-797 1864069 1866504 1866544 "OC" 1867641 NIL OC (NIL T) -9 NIL 1868499 NIL) (-796 1861296 1862044 1863034 "OC-" 1863128 NIL OC- (NIL T T) -8 NIL NIL NIL) (-795 1860648 1861116 1861144 "OCAMON" 1861149 T OCAMON (NIL) -9 NIL 1861170 NIL) (-794 1860179 1860520 1860548 "OASGP" 1860553 T OASGP (NIL) -9 NIL 1860573 NIL) (-793 1859440 1859929 1859957 "OAMONS" 1859997 T OAMONS (NIL) -9 NIL 1860040 NIL) (-792 1858854 1859287 1859315 "OAMON" 1859320 T OAMON (NIL) -9 NIL 1859340 NIL) (-791 1858112 1858630 1858658 "OAGROUP" 1858663 T OAGROUP (NIL) -9 NIL 1858683 NIL) (-790 1857802 1857852 1857940 "NUMTUBE" 1858056 NIL NUMTUBE (NIL T) -7 NIL NIL NIL) (-789 1851375 1852893 1854429 "NUMQUAD" 1856286 T NUMQUAD (NIL) -7 NIL NIL NIL) (-788 1847131 1848119 1849144 "NUMODE" 1850370 T NUMODE (NIL) -7 NIL NIL NIL) (-787 1844486 1845366 1845394 "NUMINT" 1846317 T NUMINT (NIL) -9 NIL 1847081 NIL) (-786 1843434 1843631 1843849 "NUMFMT" 1844288 T NUMFMT (NIL) -7 NIL NIL NIL) (-785 1829793 1832738 1835270 "NUMERIC" 1840941 NIL NUMERIC (NIL T) -7 NIL NIL NIL) (-784 1824163 1829242 1829337 "NTSCAT" 1829342 NIL NTSCAT (NIL T T T T) -9 NIL 1829381 NIL) (-783 1823357 1823522 1823715 "NTPOLFN" 1824002 NIL NTPOLFN (NIL T) -7 NIL NIL NIL) (-782 1811434 1820182 1820994 "NSUP" 1822578 NIL NSUP (NIL T) -8 NIL NIL NIL) (-781 1811066 1811123 1811232 "NSUP2" 1811371 NIL NSUP2 (NIL T T) -7 NIL NIL NIL) (-780 1801294 1810840 1810973 "NSMP" 1810978 NIL NSMP (NIL T T) -8 NIL NIL NIL) (-779 1799726 1800027 1800384 "NREP" 1800982 NIL NREP (NIL T) -7 NIL NIL NIL) (-778 1798317 1798569 1798927 "NPCOEF" 1799469 NIL NPCOEF (NIL T T T T T) -7 NIL NIL NIL) (-777 1797383 1797498 1797714 "NORMRETR" 1798198 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL NIL) (-776 1795424 1795714 1796123 "NORMPK" 1797091 NIL NORMPK (NIL T T T T T) -7 NIL NIL NIL) (-775 1795109 1795137 1795261 "NORMMA" 1795390 NIL NORMMA (NIL T T T T) -7 NIL NIL NIL) (-774 1794909 1795066 1795095 "NONE" 1795100 T NONE (NIL) -8 NIL NIL NIL) (-773 1794698 1794727 1794796 "NONE1" 1794873 NIL NONE1 (NIL T) -7 NIL NIL NIL) (-772 1794195 1794257 1794436 "NODE1" 1794630 NIL NODE1 (NIL T T) -7 NIL NIL NIL) (-771 1792480 1793331 1793586 "NNI" 1793933 T NNI (NIL) -8 NIL NIL 1794168) (-770 1790900 1791213 1791577 "NLINSOL" 1792148 NIL NLINSOL (NIL T) -7 NIL NIL NIL) (-769 1787141 1788136 1789035 "NIPROB" 1790021 T NIPROB (NIL) -8 NIL NIL NIL) (-768 1785898 1786132 1786434 "NFINTBAS" 1786903 NIL NFINTBAS (NIL T T) -7 NIL NIL NIL) (-767 1785072 1785548 1785589 "NETCLT" 1785761 NIL NETCLT (NIL T) -9 NIL 1785843 NIL) (-766 1783780 1784011 1784292 "NCODIV" 1784840 NIL NCODIV (NIL T T) -7 NIL NIL NIL) (-765 1783542 1783579 1783654 "NCNTFRAC" 1783737 NIL NCNTFRAC (NIL T) -7 NIL NIL NIL) (-764 1781722 1782086 1782506 "NCEP" 1783167 NIL NCEP (NIL T) -7 NIL NIL NIL) (-763 1780573 1781346 1781374 "NASRING" 1781484 T NASRING (NIL) -9 NIL 1781564 NIL) (-762 1780368 1780412 1780506 "NASRING-" 1780511 NIL NASRING- (NIL T) -8 NIL NIL NIL) (-761 1779475 1780000 1780028 "NARNG" 1780145 T NARNG (NIL) -9 NIL 1780236 NIL) (-760 1779167 1779234 1779368 "NARNG-" 1779373 NIL NARNG- (NIL T) -8 NIL NIL NIL) (-759 1778046 1778253 1778488 "NAGSP" 1778952 T NAGSP (NIL) -7 NIL NIL NIL) (-758 1769318 1771002 1772675 "NAGS" 1776393 T NAGS (NIL) -7 NIL NIL NIL) (-757 1767866 1768174 1768505 "NAGF07" 1769007 T NAGF07 (NIL) -7 NIL NIL NIL) (-756 1762404 1763695 1765002 "NAGF04" 1766579 T NAGF04 (NIL) -7 NIL NIL NIL) (-755 1755372 1756986 1758619 "NAGF02" 1760791 T NAGF02 (NIL) -7 NIL NIL NIL) (-754 1750596 1751696 1752813 "NAGF01" 1754275 T NAGF01 (NIL) -7 NIL NIL NIL) (-753 1744224 1745790 1747375 "NAGE04" 1749031 T NAGE04 (NIL) -7 NIL NIL NIL) (-752 1735393 1737514 1739644 "NAGE02" 1742114 T NAGE02 (NIL) -7 NIL NIL NIL) (-751 1731346 1732293 1733257 "NAGE01" 1734449 T NAGE01 (NIL) -7 NIL NIL NIL) (-750 1729141 1729675 1730233 "NAGD03" 1730808 T NAGD03 (NIL) -7 NIL NIL NIL) (-749 1720891 1722819 1724773 "NAGD02" 1727207 T NAGD02 (NIL) -7 NIL NIL NIL) (-748 1714702 1716127 1717567 "NAGD01" 1719471 T NAGD01 (NIL) -7 NIL NIL NIL) (-747 1710911 1711733 1712570 "NAGC06" 1713885 T NAGC06 (NIL) -7 NIL NIL NIL) (-746 1709376 1709708 1710064 "NAGC05" 1710575 T NAGC05 (NIL) -7 NIL NIL NIL) (-745 1708752 1708871 1709015 "NAGC02" 1709252 T NAGC02 (NIL) -7 NIL NIL NIL) (-744 1707711 1708294 1708334 "NAALG" 1708413 NIL NAALG (NIL T) -9 NIL 1708474 NIL) (-743 1707546 1707575 1707665 "NAALG-" 1707670 NIL NAALG- (NIL T T) -8 NIL NIL NIL) (-742 1701496 1702604 1703791 "MULTSQFR" 1706442 NIL MULTSQFR (NIL T T T T) -7 NIL NIL NIL) (-741 1700815 1700890 1701074 "MULTFACT" 1701408 NIL MULTFACT (NIL T T T T) -7 NIL NIL NIL) (-740 1693539 1697452 1697505 "MTSCAT" 1698575 NIL MTSCAT (NIL T T) -9 NIL 1699090 NIL) (-739 1693251 1693305 1693397 "MTHING" 1693479 NIL MTHING (NIL T) -7 NIL NIL NIL) (-738 1693043 1693076 1693136 "MSYSCMD" 1693211 T MSYSCMD (NIL) -7 NIL NIL NIL) (-737 1689125 1691798 1692118 "MSET" 1692756 NIL MSET (NIL T) -8 NIL NIL NIL) (-736 1686194 1688686 1688727 "MSETAGG" 1688732 NIL MSETAGG (NIL T) -9 NIL 1688766 NIL) (-735 1682035 1683573 1684318 "MRING" 1685494 NIL MRING (NIL T T) -8 NIL NIL NIL) (-734 1681601 1681668 1681799 "MRF2" 1681962 NIL MRF2 (NIL T T T) -7 NIL NIL NIL) (-733 1681219 1681254 1681398 "MRATFAC" 1681560 NIL MRATFAC (NIL T T T T) -7 NIL NIL NIL) (-732 1678831 1679126 1679557 "MPRFF" 1680924 NIL MPRFF (NIL T T T T) -7 NIL NIL NIL) (-731 1673128 1678685 1678782 "MPOLY" 1678787 NIL MPOLY (NIL NIL T) -8 NIL NIL NIL) (-730 1672618 1672653 1672861 "MPCPF" 1673087 NIL MPCPF (NIL T T T T) -7 NIL NIL NIL) (-729 1672132 1672175 1672359 "MPC3" 1672569 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL NIL) (-728 1671327 1671408 1671629 "MPC2" 1672047 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL NIL) (-727 1669628 1669965 1670355 "MONOTOOL" 1670987 NIL MONOTOOL (NIL T T) -7 NIL NIL NIL) (-726 1668853 1669170 1669198 "MONOID" 1669417 T MONOID (NIL) -9 NIL 1669564 NIL) (-725 1668399 1668518 1668699 "MONOID-" 1668704 NIL MONOID- (NIL T) -8 NIL NIL NIL) (-724 1658874 1664825 1664884 "MONOGEN" 1665558 NIL MONOGEN (NIL T T) -9 NIL 1666014 NIL) (-723 1656092 1656827 1657827 "MONOGEN-" 1657946 NIL MONOGEN- (NIL T T T) -8 NIL NIL NIL) (-722 1654925 1655371 1655399 "MONADWU" 1655791 T MONADWU (NIL) -9 NIL 1656029 NIL) (-721 1654297 1654456 1654704 "MONADWU-" 1654709 NIL MONADWU- (NIL T) -8 NIL NIL NIL) (-720 1653656 1653900 1653928 "MONAD" 1654135 T MONAD (NIL) -9 NIL 1654247 NIL) (-719 1653341 1653419 1653551 "MONAD-" 1653556 NIL MONAD- (NIL T) -8 NIL NIL NIL) (-718 1651630 1652254 1652533 "MOEBIUS" 1653094 NIL MOEBIUS (NIL T) -8 NIL NIL NIL) (-717 1650908 1651312 1651352 "MODULE" 1651357 NIL MODULE (NIL T) -9 NIL 1651396 NIL) (-716 1650476 1650572 1650762 "MODULE-" 1650767 NIL MODULE- (NIL T T) -8 NIL NIL NIL) (-715 1648156 1648840 1649167 "MODRING" 1650300 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-714 1645100 1646261 1646782 "MODOP" 1647685 NIL MODOP (NIL T T) -8 NIL NIL NIL) (-713 1643688 1644167 1644444 "MODMONOM" 1644963 NIL MODMONOM (NIL T T NIL) -8 NIL NIL NIL) (-712 1633729 1641979 1642393 "MODMON" 1643325 NIL MODMON (NIL T T) -8 NIL NIL NIL) (-711 1630885 1632573 1632849 "MODFIELD" 1633604 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-710 1629862 1630166 1630356 "MMLFORM" 1630715 T MMLFORM (NIL) -8 NIL NIL NIL) (-709 1629388 1629431 1629610 "MMAP" 1629813 NIL MMAP (NIL T T T T T T) -7 NIL NIL NIL) (-708 1627467 1628234 1628275 "MLO" 1628698 NIL MLO (NIL T) -9 NIL 1628940 NIL) (-707 1624833 1625349 1625951 "MLIFT" 1626948 NIL MLIFT (NIL T T T T) -7 NIL NIL NIL) (-706 1624224 1624308 1624462 "MKUCFUNC" 1624744 NIL MKUCFUNC (NIL T T T) -7 NIL NIL NIL) (-705 1623823 1623893 1624016 "MKRECORD" 1624147 NIL MKRECORD (NIL T T) -7 NIL NIL NIL) (-704 1622870 1623032 1623260 "MKFUNC" 1623634 NIL MKFUNC (NIL T) -7 NIL NIL NIL) (-703 1622258 1622362 1622518 "MKFLCFN" 1622753 NIL MKFLCFN (NIL T) -7 NIL NIL NIL) (-702 1621535 1621637 1621822 "MKBCFUNC" 1622151 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL NIL) (-701 1618242 1621089 1621225 "MINT" 1621419 T MINT (NIL) -8 NIL NIL NIL) (-700 1617054 1617297 1617574 "MHROWRED" 1617997 NIL MHROWRED (NIL T) -7 NIL NIL NIL) (-699 1612433 1615589 1615994 "MFLOAT" 1616669 T MFLOAT (NIL) -8 NIL NIL NIL) (-698 1611790 1611866 1612037 "MFINFACT" 1612345 NIL MFINFACT (NIL T T T T) -7 NIL NIL NIL) (-697 1608105 1608953 1609837 "MESH" 1610926 T MESH (NIL) -7 NIL NIL NIL) (-696 1606495 1606807 1607160 "MDDFACT" 1607792 NIL MDDFACT (NIL T) -7 NIL NIL NIL) (-695 1603290 1605654 1605695 "MDAGG" 1605950 NIL MDAGG (NIL T) -9 NIL 1606093 NIL) (-694 1593030 1602583 1602790 "MCMPLX" 1603103 T MCMPLX (NIL) -8 NIL NIL NIL) (-693 1592171 1592317 1592517 "MCDEN" 1592879 NIL MCDEN (NIL T T) -7 NIL NIL NIL) (-692 1590061 1590331 1590711 "MCALCFN" 1591901 NIL MCALCFN (NIL T T T T) -7 NIL NIL NIL) (-691 1588986 1589226 1589459 "MAYBE" 1589867 NIL MAYBE (NIL T) -8 NIL NIL NIL) (-690 1586598 1587121 1587683 "MATSTOR" 1588457 NIL MATSTOR (NIL T) -7 NIL NIL NIL) (-689 1582555 1585970 1586218 "MATRIX" 1586383 NIL MATRIX (NIL T) -8 NIL NIL NIL) (-688 1578319 1579028 1579764 "MATLIN" 1581912 NIL MATLIN (NIL T T T T) -7 NIL NIL NIL) (-687 1568425 1571611 1571688 "MATCAT" 1576568 NIL MATCAT (NIL T T T) -9 NIL 1577985 NIL) (-686 1564781 1565802 1567158 "MATCAT-" 1567163 NIL MATCAT- (NIL T T T T) -8 NIL NIL NIL) (-685 1563375 1563528 1563861 "MATCAT2" 1564616 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-684 1561487 1561811 1562195 "MAPPKG3" 1563050 NIL MAPPKG3 (NIL T T T) -7 NIL NIL NIL) (-683 1560468 1560641 1560863 "MAPPKG2" 1561311 NIL MAPPKG2 (NIL T T) -7 NIL NIL NIL) (-682 1558967 1559251 1559578 "MAPPKG1" 1560174 NIL MAPPKG1 (NIL T) -7 NIL NIL NIL) (-681 1558046 1558373 1558550 "MAPPAST" 1558810 T MAPPAST (NIL) -8 NIL NIL NIL) (-680 1557657 1557715 1557838 "MAPHACK3" 1557982 NIL MAPHACK3 (NIL T T T) -7 NIL NIL NIL) (-679 1557249 1557310 1557424 "MAPHACK2" 1557589 NIL MAPHACK2 (NIL T T) -7 NIL NIL NIL) (-678 1556686 1556790 1556932 "MAPHACK1" 1557140 NIL MAPHACK1 (NIL T) -7 NIL NIL NIL) (-677 1554765 1555386 1555690 "MAGMA" 1556414 NIL MAGMA (NIL T) -8 NIL NIL NIL) (-676 1554244 1554489 1554580 "MACROAST" 1554694 T MACROAST (NIL) -8 NIL NIL NIL) (-675 1550662 1552483 1552944 "M3D" 1553816 NIL M3D (NIL T) -8 NIL NIL NIL) (-674 1544768 1549031 1549072 "LZSTAGG" 1549854 NIL LZSTAGG (NIL T) -9 NIL 1550149 NIL) (-673 1540725 1541899 1543356 "LZSTAGG-" 1543361 NIL LZSTAGG- (NIL T T) -8 NIL NIL NIL) (-672 1537812 1538616 1539103 "LWORD" 1540270 NIL LWORD (NIL T) -8 NIL NIL NIL) (-671 1537388 1537616 1537691 "LSTAST" 1537757 T LSTAST (NIL) -8 NIL NIL NIL) (-670 1530554 1537159 1537293 "LSQM" 1537298 NIL LSQM (NIL NIL T) -8 NIL NIL NIL) (-669 1529778 1529917 1530145 "LSPP" 1530409 NIL LSPP (NIL T T T T) -7 NIL NIL NIL) (-668 1527590 1527891 1528347 "LSMP" 1529467 NIL LSMP (NIL T T T T) -7 NIL NIL NIL) (-667 1524369 1525043 1525773 "LSMP1" 1526892 NIL LSMP1 (NIL T) -7 NIL NIL NIL) (-666 1518246 1523536 1523577 "LSAGG" 1523639 NIL LSAGG (NIL T) -9 NIL 1523717 NIL) (-665 1514941 1515865 1517078 "LSAGG-" 1517083 NIL LSAGG- (NIL T T) -8 NIL NIL NIL) (-664 1512540 1514085 1514334 "LPOLY" 1514736 NIL LPOLY (NIL T T) -8 NIL NIL NIL) (-663 1512122 1512207 1512330 "LPEFRAC" 1512449 NIL LPEFRAC (NIL T) -7 NIL NIL NIL) (-662 1510443 1511216 1511469 "LO" 1511954 NIL LO (NIL T T T) -8 NIL NIL NIL) (-661 1510095 1510207 1510235 "LOGIC" 1510346 T LOGIC (NIL) -9 NIL 1510427 NIL) (-660 1509957 1509980 1510051 "LOGIC-" 1510056 NIL LOGIC- (NIL T) -8 NIL NIL NIL) (-659 1509150 1509290 1509483 "LODOOPS" 1509813 NIL LODOOPS (NIL T T) -7 NIL NIL NIL) (-658 1506573 1509066 1509132 "LODO" 1509137 NIL LODO (NIL T NIL) -8 NIL NIL NIL) (-657 1505111 1505346 1505699 "LODOF" 1506320 NIL LODOF (NIL T T) -7 NIL NIL NIL) (-656 1501329 1503760 1503801 "LODOCAT" 1504239 NIL LODOCAT (NIL T) -9 NIL 1504450 NIL) (-655 1501062 1501120 1501247 "LODOCAT-" 1501252 NIL LODOCAT- (NIL T T) -8 NIL NIL NIL) (-654 1498382 1500903 1501021 "LODO2" 1501026 NIL LODO2 (NIL T T) -8 NIL NIL NIL) (-653 1495817 1498319 1498364 "LODO1" 1498369 NIL LODO1 (NIL T) -8 NIL NIL NIL) (-652 1494698 1494863 1495168 "LODEEF" 1495640 NIL LODEEF (NIL T T T) -7 NIL NIL NIL) (-651 1489937 1492828 1492869 "LNAGG" 1493816 NIL LNAGG (NIL T) -9 NIL 1494260 NIL) (-650 1489084 1489298 1489640 "LNAGG-" 1489645 NIL LNAGG- (NIL T T) -8 NIL NIL NIL) (-649 1485220 1486009 1486648 "LMOPS" 1488499 NIL LMOPS (NIL T T NIL) -8 NIL NIL NIL) (-648 1484623 1485011 1485052 "LMODULE" 1485057 NIL LMODULE (NIL T) -9 NIL 1485083 NIL) (-647 1481821 1484268 1484391 "LMDICT" 1484533 NIL LMDICT (NIL T) -8 NIL NIL NIL) (-646 1481227 1481448 1481489 "LLINSET" 1481680 NIL LLINSET (NIL T) -9 NIL 1481771 NIL) (-645 1480926 1481135 1481195 "LITERAL" 1481200 NIL LITERAL (NIL T) -8 NIL NIL NIL) (-644 1474109 1479872 1480170 "LIST" 1480661 NIL LIST (NIL T) -8 NIL NIL NIL) (-643 1473634 1473708 1473847 "LIST3" 1474029 NIL LIST3 (NIL T T T) -7 NIL NIL NIL) (-642 1472641 1472819 1473047 "LIST2" 1473452 NIL LIST2 (NIL T T) -7 NIL NIL NIL) (-641 1470775 1471087 1471486 "LIST2MAP" 1472288 NIL LIST2MAP (NIL T T) -7 NIL NIL NIL) (-640 1470371 1470608 1470649 "LINSET" 1470654 NIL LINSET (NIL T) -9 NIL 1470688 NIL) (-639 1469032 1469702 1469743 "LINEXP" 1469998 NIL LINEXP (NIL T) -9 NIL 1470147 NIL) (-638 1467679 1467939 1468236 "LINDEP" 1468784 NIL LINDEP (NIL T T) -7 NIL NIL NIL) (-637 1464446 1465165 1465942 "LIMITRF" 1466934 NIL LIMITRF (NIL T) -7 NIL NIL NIL) (-636 1462749 1463045 1463454 "LIMITPS" 1464141 NIL LIMITPS (NIL T T) -7 NIL NIL NIL) (-635 1457177 1462260 1462488 "LIE" 1462570 NIL LIE (NIL T T) -8 NIL NIL NIL) (-634 1456125 1456594 1456634 "LIECAT" 1456774 NIL LIECAT (NIL T) -9 NIL 1456925 NIL) (-633 1455966 1455993 1456081 "LIECAT-" 1456086 NIL LIECAT- (NIL T T) -8 NIL NIL NIL) (-632 1448462 1455415 1455580 "LIB" 1455821 T LIB (NIL) -8 NIL NIL NIL) (-631 1444097 1444980 1445915 "LGROBP" 1447579 NIL LGROBP (NIL NIL T) -7 NIL NIL NIL) (-630 1442095 1442369 1442719 "LF" 1443818 NIL LF (NIL T T) -7 NIL NIL NIL) (-629 1440935 1441627 1441655 "LFCAT" 1441862 T LFCAT (NIL) -9 NIL 1442001 NIL) (-628 1437837 1438467 1439155 "LEXTRIPK" 1440299 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL NIL) (-627 1434581 1435407 1435910 "LEXP" 1437417 NIL LEXP (NIL T T NIL) -8 NIL NIL NIL) (-626 1434057 1434302 1434394 "LETAST" 1434509 T LETAST (NIL) -8 NIL NIL NIL) (-625 1432455 1432768 1433169 "LEADCDET" 1433739 NIL LEADCDET (NIL T T T T) -7 NIL NIL NIL) (-624 1431645 1431719 1431948 "LAZM3PK" 1432376 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL NIL) (-623 1426562 1429722 1430260 "LAUPOL" 1431157 NIL LAUPOL (NIL T T) -8 NIL NIL NIL) (-622 1426141 1426185 1426346 "LAPLACE" 1426512 NIL LAPLACE (NIL T T) -7 NIL NIL NIL) (-621 1424080 1425242 1425493 "LA" 1425974 NIL LA (NIL T T T) -8 NIL NIL NIL) (-620 1423074 1423658 1423699 "LALG" 1423761 NIL LALG (NIL T) -9 NIL 1423820 NIL) (-619 1422788 1422847 1422983 "LALG-" 1422988 NIL LALG- (NIL T T) -8 NIL NIL NIL) (-618 1422623 1422647 1422688 "KVTFROM" 1422750 NIL KVTFROM (NIL T) -9 NIL NIL NIL) (-617 1421546 1421990 1422175 "KTVLOGIC" 1422458 T KTVLOGIC (NIL) -8 NIL NIL NIL) (-616 1421381 1421405 1421446 "KRCFROM" 1421508 NIL KRCFROM (NIL T) -9 NIL NIL NIL) (-615 1420285 1420472 1420771 "KOVACIC" 1421181 NIL KOVACIC (NIL T T) -7 NIL NIL NIL) (-614 1420120 1420144 1420185 "KONVERT" 1420247 NIL KONVERT (NIL T) -9 NIL NIL NIL) (-613 1419955 1419979 1420020 "KOERCE" 1420082 NIL KOERCE (NIL T) -9 NIL NIL NIL) (-612 1417785 1418548 1418925 "KERNEL" 1419611 NIL KERNEL (NIL T) -8 NIL NIL NIL) (-611 1417281 1417362 1417494 "KERNEL2" 1417699 NIL KERNEL2 (NIL T T) -7 NIL NIL NIL) (-610 1411051 1415820 1415874 "KDAGG" 1416251 NIL KDAGG (NIL T T) -9 NIL 1416457 NIL) (-609 1410580 1410704 1410909 "KDAGG-" 1410914 NIL KDAGG- (NIL T T T) -8 NIL NIL NIL) (-608 1403728 1410241 1410396 "KAFILE" 1410458 NIL KAFILE (NIL T) -8 NIL NIL NIL) (-607 1398156 1403239 1403467 "JORDAN" 1403549 NIL JORDAN (NIL T T) -8 NIL NIL NIL) (-606 1397535 1397805 1397926 "JOINAST" 1398055 T JOINAST (NIL) -8 NIL NIL NIL) (-605 1397381 1397440 1397495 "JAVACODE" 1397500 T JAVACODE (NIL) -8 NIL NIL NIL) (-604 1393633 1395586 1395640 "IXAGG" 1396569 NIL IXAGG (NIL T T) -9 NIL 1397028 NIL) (-603 1392552 1392858 1393277 "IXAGG-" 1393282 NIL IXAGG- (NIL T T T) -8 NIL NIL NIL) (-602 1388082 1392474 1392533 "IVECTOR" 1392538 NIL IVECTOR (NIL T NIL) -8 NIL NIL NIL) (-601 1386848 1387085 1387351 "ITUPLE" 1387849 NIL ITUPLE (NIL T) -8 NIL NIL NIL) (-600 1385350 1385527 1385822 "ITRIGMNP" 1386670 NIL ITRIGMNP (NIL T T T) -7 NIL NIL NIL) (-599 1384095 1384299 1384582 "ITFUN3" 1385126 NIL ITFUN3 (NIL T T T) -7 NIL NIL NIL) (-598 1383727 1383784 1383893 "ITFUN2" 1384032 NIL ITFUN2 (NIL T T) -7 NIL NIL NIL) (-597 1381529 1382589 1382888 "ITAYLOR" 1383461 NIL ITAYLOR (NIL T) -8 NIL NIL NIL) (-596 1370474 1375666 1376829 "ISUPS" 1380399 NIL ISUPS (NIL T) -8 NIL NIL NIL) (-595 1369578 1369718 1369954 "ISUMP" 1370321 NIL ISUMP (NIL T T T T) -7 NIL NIL NIL) (-594 1364792 1369379 1369458 "ISTRING" 1369531 NIL ISTRING (NIL NIL) -8 NIL NIL NIL) (-593 1364268 1364513 1364605 "ISAST" 1364720 T ISAST (NIL) -8 NIL NIL NIL) (-592 1363477 1363559 1363775 "IRURPK" 1364182 NIL IRURPK (NIL T T T T T) -7 NIL NIL NIL) (-591 1362413 1362614 1362854 "IRSN" 1363257 T IRSN (NIL) -7 NIL NIL NIL) (-590 1360484 1360839 1361268 "IRRF2F" 1362051 NIL IRRF2F (NIL T) -7 NIL NIL NIL) (-589 1360231 1360269 1360345 "IRREDFFX" 1360440 NIL IRREDFFX (NIL T) -7 NIL NIL NIL) (-588 1358846 1359105 1359404 "IROOT" 1359964 NIL IROOT (NIL T) -7 NIL NIL NIL) (-587 1355450 1356530 1357222 "IR" 1358186 NIL IR (NIL T) -8 NIL NIL NIL) (-586 1353063 1353558 1354124 "IR2" 1354928 NIL IR2 (NIL T T) -7 NIL NIL NIL) (-585 1352163 1352276 1352490 "IR2F" 1352946 NIL IR2F (NIL T T) -7 NIL NIL NIL) (-584 1351954 1351988 1352048 "IPRNTPK" 1352123 T IPRNTPK (NIL) -7 NIL NIL NIL) (-583 1348533 1351843 1351912 "IPF" 1351917 NIL IPF (NIL NIL) -8 NIL NIL NIL) (-582 1346860 1348458 1348515 "IPADIC" 1348520 NIL IPADIC (NIL NIL NIL) -8 NIL NIL NIL) (-581 1346172 1346420 1346550 "IP4ADDR" 1346750 T IP4ADDR (NIL) -8 NIL NIL NIL) (-580 1345645 1345876 1345986 "IOMODE" 1346082 T IOMODE (NIL) -8 NIL NIL NIL) (-579 1344718 1345242 1345369 "IOBFILE" 1345538 T IOBFILE (NIL) -8 NIL NIL NIL) (-578 1344206 1344622 1344650 "IOBCON" 1344655 T IOBCON (NIL) -9 NIL 1344676 NIL) (-577 1343717 1343775 1343958 "INVLAPLA" 1344142 NIL INVLAPLA (NIL T T) -7 NIL NIL NIL) (-576 1333365 1335719 1338105 "INTTR" 1341381 NIL INTTR (NIL T T) -7 NIL NIL NIL) (-575 1329700 1330442 1331307 "INTTOOLS" 1332550 NIL INTTOOLS (NIL T T) -7 NIL NIL NIL) (-574 1329286 1329377 1329494 "INTSLPE" 1329603 T INTSLPE (NIL) -7 NIL NIL NIL) (-573 1327239 1329209 1329268 "INTRVL" 1329273 NIL INTRVL (NIL T) -8 NIL NIL NIL) (-572 1324841 1325353 1325928 "INTRF" 1326724 NIL INTRF (NIL T) -7 NIL NIL NIL) (-571 1324252 1324349 1324491 "INTRET" 1324739 NIL INTRET (NIL T) -7 NIL NIL NIL) (-570 1322249 1322638 1323108 "INTRAT" 1323860 NIL INTRAT (NIL T T) -7 NIL NIL NIL) (-569 1319512 1320095 1320714 "INTPM" 1321734 NIL INTPM (NIL T T) -7 NIL NIL NIL) (-568 1316257 1316856 1317594 "INTPAF" 1318898 NIL INTPAF (NIL T T T) -7 NIL NIL NIL) (-567 1311436 1312398 1313449 "INTPACK" 1315226 T INTPACK (NIL) -7 NIL NIL NIL) (-566 1308316 1311165 1311292 "INT" 1311329 T INT (NIL) -8 NIL NIL NIL) (-565 1307568 1307720 1307928 "INTHERTR" 1308158 NIL INTHERTR (NIL T T) -7 NIL NIL NIL) (-564 1307007 1307087 1307275 "INTHERAL" 1307482 NIL INTHERAL (NIL T T T T) -7 NIL NIL NIL) (-563 1304853 1305296 1305753 "INTHEORY" 1306570 T INTHEORY (NIL) -7 NIL NIL NIL) (-562 1296259 1297880 1299652 "INTG0" 1303205 NIL INTG0 (NIL T T T) -7 NIL NIL NIL) (-561 1276832 1281622 1286432 "INTFTBL" 1291469 T INTFTBL (NIL) -8 NIL NIL NIL) (-560 1276081 1276219 1276392 "INTFACT" 1276691 NIL INTFACT (NIL T) -7 NIL NIL NIL) (-559 1273508 1273954 1274511 "INTEF" 1275635 NIL INTEF (NIL T T) -7 NIL NIL NIL) (-558 1271875 1272614 1272642 "INTDOM" 1272943 T INTDOM (NIL) -9 NIL 1273150 NIL) (-557 1271244 1271418 1271660 "INTDOM-" 1271665 NIL INTDOM- (NIL T) -8 NIL NIL NIL) (-556 1267632 1269560 1269614 "INTCAT" 1270413 NIL INTCAT (NIL T) -9 NIL 1270734 NIL) (-555 1267104 1267207 1267335 "INTBIT" 1267524 T INTBIT (NIL) -7 NIL NIL NIL) (-554 1265803 1265957 1266264 "INTALG" 1266949 NIL INTALG (NIL T T T T T) -7 NIL NIL NIL) (-553 1265286 1265376 1265533 "INTAF" 1265707 NIL INTAF (NIL T T) -7 NIL NIL NIL) (-552 1258629 1265096 1265236 "INTABL" 1265241 NIL INTABL (NIL T T T) -8 NIL NIL NIL) (-551 1257970 1258436 1258501 "INT8" 1258535 T INT8 (NIL) -8 NIL NIL 1258580) (-550 1257310 1257776 1257841 "INT64" 1257875 T INT64 (NIL) -8 NIL NIL 1257920) (-549 1256650 1257116 1257181 "INT32" 1257215 T INT32 (NIL) -8 NIL NIL 1257260) (-548 1255990 1256456 1256521 "INT16" 1256555 T INT16 (NIL) -8 NIL NIL 1256600) (-547 1250900 1253613 1253641 "INS" 1254575 T INS (NIL) -9 NIL 1255240 NIL) (-546 1248140 1248911 1249885 "INS-" 1249958 NIL INS- (NIL T) -8 NIL NIL NIL) (-545 1246915 1247142 1247440 "INPSIGN" 1247893 NIL INPSIGN (NIL T T) -7 NIL NIL NIL) (-544 1246033 1246150 1246347 "INPRODPF" 1246795 NIL INPRODPF (NIL T T) -7 NIL NIL NIL) (-543 1244927 1245044 1245281 "INPRODFF" 1245913 NIL INPRODFF (NIL T T T T) -7 NIL NIL NIL) (-542 1243927 1244079 1244339 "INNMFACT" 1244763 NIL INNMFACT (NIL T T T T) -7 NIL NIL NIL) (-541 1243124 1243221 1243409 "INMODGCD" 1243826 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL NIL) (-540 1241632 1241877 1242201 "INFSP" 1242869 NIL INFSP (NIL T T T) -7 NIL NIL NIL) (-539 1240816 1240933 1241116 "INFPROD0" 1241512 NIL INFPROD0 (NIL T T) -7 NIL NIL NIL) (-538 1237671 1238881 1239396 "INFORM" 1240309 T INFORM (NIL) -8 NIL NIL NIL) (-537 1237281 1237341 1237439 "INFORM1" 1237606 NIL INFORM1 (NIL T) -7 NIL NIL NIL) (-536 1236804 1236893 1237007 "INFINITY" 1237187 T INFINITY (NIL) -7 NIL NIL NIL) (-535 1235980 1236524 1236625 "INETCLTS" 1236723 T INETCLTS (NIL) -8 NIL NIL NIL) (-534 1234596 1234846 1235167 "INEP" 1235728 NIL INEP (NIL T T T) -7 NIL NIL NIL) (-533 1233845 1234493 1234558 "INDE" 1234563 NIL INDE (NIL T) -8 NIL NIL NIL) (-532 1233409 1233477 1233594 "INCRMAPS" 1233772 NIL INCRMAPS (NIL T) -7 NIL NIL NIL) (-531 1232227 1232678 1232884 "INBFILE" 1233223 T INBFILE (NIL) -8 NIL NIL NIL) (-530 1227526 1228463 1229407 "INBFF" 1231315 NIL INBFF (NIL T) -7 NIL NIL NIL) (-529 1226434 1226703 1226731 "INBCON" 1227244 T INBCON (NIL) -9 NIL 1227510 NIL) (-528 1225686 1225909 1226185 "INBCON-" 1226190 NIL INBCON- (NIL T) -8 NIL NIL NIL) (-527 1225165 1225410 1225501 "INAST" 1225615 T INAST (NIL) -8 NIL NIL NIL) (-526 1224592 1224844 1224950 "IMPTAST" 1225079 T IMPTAST (NIL) -8 NIL NIL NIL) (-525 1221038 1224436 1224540 "IMATRIX" 1224545 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL NIL) (-524 1219750 1219873 1220188 "IMATQF" 1220894 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL NIL) (-523 1217970 1218197 1218534 "IMATLIN" 1219506 NIL IMATLIN (NIL T T T T) -7 NIL NIL NIL) (-522 1212548 1217894 1217952 "ILIST" 1217957 NIL ILIST (NIL T NIL) -8 NIL NIL NIL) (-521 1210453 1212408 1212521 "IIARRAY2" 1212526 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL NIL) (-520 1205851 1210364 1210428 "IFF" 1210433 NIL IFF (NIL NIL NIL) -8 NIL NIL NIL) (-519 1205198 1205468 1205584 "IFAST" 1205755 T IFAST (NIL) -8 NIL NIL NIL) (-518 1200193 1204490 1204678 "IFARRAY" 1205055 NIL IFARRAY (NIL T NIL) -8 NIL NIL NIL) (-517 1199373 1200097 1200170 "IFAMON" 1200175 NIL IFAMON (NIL T T NIL) -8 NIL NIL NIL) (-516 1198957 1199022 1199076 "IEVALAB" 1199283 NIL IEVALAB (NIL T T) -9 NIL NIL NIL) (-515 1198632 1198700 1198860 "IEVALAB-" 1198865 NIL IEVALAB- (NIL T T T) -8 NIL NIL NIL) (-514 1198263 1198546 1198609 "IDPO" 1198614 NIL IDPO (NIL T T) -8 NIL NIL NIL) (-513 1197513 1198152 1198227 "IDPOAMS" 1198232 NIL IDPOAMS (NIL T T) -8 NIL NIL NIL) (-512 1196820 1197402 1197477 "IDPOAM" 1197482 NIL IDPOAM (NIL T T) -8 NIL NIL NIL) (-511 1195879 1196155 1196208 "IDPC" 1196621 NIL IDPC (NIL T T) -9 NIL 1196770 NIL) (-510 1195348 1195771 1195844 "IDPAM" 1195849 NIL IDPAM (NIL T T) -8 NIL NIL NIL) (-509 1194724 1195240 1195313 "IDPAG" 1195318 NIL IDPAG (NIL T T) -8 NIL NIL NIL) (-508 1194369 1194560 1194635 "IDENT" 1194669 T IDENT (NIL) -8 NIL NIL NIL) (-507 1190624 1191472 1192367 "IDECOMP" 1193526 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL NIL) (-506 1183462 1184547 1185594 "IDEAL" 1189660 NIL IDEAL (NIL T T T T) -8 NIL NIL NIL) (-505 1182626 1182738 1182937 "ICDEN" 1183346 NIL ICDEN (NIL T T T T) -7 NIL NIL NIL) (-504 1181697 1182106 1182253 "ICARD" 1182499 T ICARD (NIL) -8 NIL NIL NIL) (-503 1179757 1180070 1180475 "IBPTOOLS" 1181374 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL NIL) (-502 1175364 1179377 1179490 "IBITS" 1179676 NIL IBITS (NIL NIL) -8 NIL NIL NIL) (-501 1172087 1172663 1173358 "IBATOOL" 1174781 NIL IBATOOL (NIL T T T) -7 NIL NIL NIL) (-500 1169866 1170328 1170861 "IBACHIN" 1171622 NIL IBACHIN (NIL T T T) -7 NIL NIL NIL) (-499 1167695 1169712 1169815 "IARRAY2" 1169820 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL NIL) (-498 1163801 1167621 1167678 "IARRAY1" 1167683 NIL IARRAY1 (NIL T NIL) -8 NIL NIL NIL) (-497 1157910 1162213 1162694 "IAN" 1163340 T IAN (NIL) -8 NIL NIL NIL) (-496 1157421 1157478 1157651 "IALGFACT" 1157847 NIL IALGFACT (NIL T T T T) -7 NIL NIL NIL) (-495 1156949 1157062 1157090 "HYPCAT" 1157297 T HYPCAT (NIL) -9 NIL NIL NIL) (-494 1156487 1156604 1156790 "HYPCAT-" 1156795 NIL HYPCAT- (NIL T) -8 NIL NIL NIL) (-493 1156082 1156282 1156365 "HOSTNAME" 1156424 T HOSTNAME (NIL) -8 NIL NIL NIL) (-492 1155927 1155964 1156005 "HOMOTOP" 1156010 NIL HOMOTOP (NIL T) -9 NIL 1156043 NIL) (-491 1152559 1153937 1153978 "HOAGG" 1154959 NIL HOAGG (NIL T) -9 NIL 1155638 NIL) (-490 1151153 1151552 1152078 "HOAGG-" 1152083 NIL HOAGG- (NIL T T) -8 NIL NIL NIL) (-489 1145157 1150748 1150897 "HEXADEC" 1151024 T HEXADEC (NIL) -8 NIL NIL NIL) (-488 1143904 1144127 1144390 "HEUGCD" 1144934 NIL HEUGCD (NIL T) -7 NIL NIL NIL) (-487 1142980 1143741 1143871 "HELLFDIV" 1143876 NIL HELLFDIV (NIL T T T T) -8 NIL NIL NIL) (-486 1141159 1142757 1142845 "HEAP" 1142924 NIL HEAP (NIL T) -8 NIL NIL NIL) (-485 1140422 1140711 1140845 "HEADAST" 1141045 T HEADAST (NIL) -8 NIL NIL NIL) (-484 1134288 1140337 1140399 "HDP" 1140404 NIL HDP (NIL NIL T) -8 NIL NIL NIL) (-483 1128276 1133923 1134075 "HDMP" 1134189 NIL HDMP (NIL NIL T) -8 NIL NIL NIL) (-482 1127600 1127740 1127904 "HB" 1128132 T HB (NIL) -7 NIL NIL NIL) (-481 1120986 1127446 1127550 "HASHTBL" 1127555 NIL HASHTBL (NIL T T NIL) -8 NIL NIL NIL) (-480 1120462 1120707 1120799 "HASAST" 1120914 T HASAST (NIL) -8 NIL NIL NIL) (-479 1118240 1120084 1120266 "HACKPI" 1120300 T HACKPI (NIL) -8 NIL NIL NIL) (-478 1113908 1118093 1118206 "GTSET" 1118211 NIL GTSET (NIL T T T T) -8 NIL NIL NIL) (-477 1107323 1113786 1113884 "GSTBL" 1113889 NIL GSTBL (NIL T T T NIL) -8 NIL NIL NIL) (-476 1099601 1106354 1106619 "GSERIES" 1107114 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL NIL) (-475 1098742 1099159 1099187 "GROUP" 1099390 T GROUP (NIL) -9 NIL 1099524 NIL) (-474 1098108 1098267 1098518 "GROUP-" 1098523 NIL GROUP- (NIL T) -8 NIL NIL NIL) (-473 1096475 1096796 1097183 "GROEBSOL" 1097785 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL NIL) (-472 1095389 1095677 1095728 "GRMOD" 1096257 NIL GRMOD (NIL T T) -9 NIL 1096425 NIL) (-471 1095157 1095193 1095321 "GRMOD-" 1095326 NIL GRMOD- (NIL T T T) -8 NIL NIL NIL) (-470 1090447 1091511 1092511 "GRIMAGE" 1094177 T GRIMAGE (NIL) -8 NIL NIL NIL) (-469 1088913 1089174 1089498 "GRDEF" 1090143 T GRDEF (NIL) -7 NIL NIL NIL) (-468 1088357 1088473 1088614 "GRAY" 1088792 T GRAY (NIL) -7 NIL NIL NIL) (-467 1087544 1087950 1088001 "GRALG" 1088154 NIL GRALG (NIL T T) -9 NIL 1088247 NIL) (-466 1087205 1087278 1087441 "GRALG-" 1087446 NIL GRALG- (NIL T T T) -8 NIL NIL NIL) (-465 1083982 1086790 1086968 "GPOLSET" 1087112 NIL GPOLSET (NIL T T T T) -8 NIL NIL NIL) (-464 1083336 1083393 1083651 "GOSPER" 1083919 NIL GOSPER (NIL T T T T T) -7 NIL NIL NIL) (-463 1079068 1079774 1080300 "GMODPOL" 1083035 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL NIL) (-462 1078073 1078257 1078495 "GHENSEL" 1078880 NIL GHENSEL (NIL T T) -7 NIL NIL NIL) (-461 1072229 1073072 1074092 "GENUPS" 1077157 NIL GENUPS (NIL T T) -7 NIL NIL NIL) (-460 1071926 1071977 1072066 "GENUFACT" 1072172 NIL GENUFACT (NIL T) -7 NIL NIL NIL) (-459 1071338 1071415 1071580 "GENPGCD" 1071844 NIL GENPGCD (NIL T T T T) -7 NIL NIL NIL) (-458 1070812 1070847 1071060 "GENMFACT" 1071297 NIL GENMFACT (NIL T T T T T) -7 NIL NIL NIL) (-457 1069378 1069635 1069942 "GENEEZ" 1070555 NIL GENEEZ (NIL T T) -7 NIL NIL NIL) (-456 1063524 1068989 1069151 "GDMP" 1069301 NIL GDMP (NIL NIL T T) -8 NIL NIL NIL) (-455 1052866 1057295 1058401 "GCNAALG" 1062507 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-454 1051193 1052055 1052083 "GCDDOM" 1052338 T GCDDOM (NIL) -9 NIL 1052495 NIL) (-453 1050663 1050790 1051005 "GCDDOM-" 1051010 NIL GCDDOM- (NIL T) -8 NIL NIL NIL) (-452 1049335 1049520 1049824 "GB" 1050442 NIL GB (NIL T T T T) -7 NIL NIL NIL) (-451 1037951 1040281 1042673 "GBINTERN" 1047026 NIL GBINTERN (NIL T T T T) -7 NIL NIL NIL) (-450 1035788 1036080 1036501 "GBF" 1037626 NIL GBF (NIL T T T T) -7 NIL NIL NIL) (-449 1034569 1034734 1035001 "GBEUCLID" 1035604 NIL GBEUCLID (NIL T T T T) -7 NIL NIL NIL) (-448 1033918 1034043 1034192 "GAUSSFAC" 1034440 T GAUSSFAC (NIL) -7 NIL NIL NIL) (-447 1032285 1032587 1032901 "GALUTIL" 1033637 NIL GALUTIL (NIL T) -7 NIL NIL NIL) (-446 1030593 1030867 1031191 "GALPOLYU" 1032012 NIL GALPOLYU (NIL T T) -7 NIL NIL NIL) (-445 1027958 1028248 1028655 "GALFACTU" 1030290 NIL GALFACTU (NIL T T T) -7 NIL NIL NIL) (-444 1019763 1021263 1022871 "GALFACT" 1026390 NIL GALFACT (NIL T) -7 NIL NIL NIL) (-443 1017151 1017809 1017837 "FVFUN" 1018993 T FVFUN (NIL) -9 NIL 1019713 NIL) (-442 1016417 1016599 1016627 "FVC" 1016918 T FVC (NIL) -9 NIL 1017101 NIL) (-441 1016060 1016242 1016310 "FUNDESC" 1016369 T FUNDESC (NIL) -8 NIL NIL NIL) (-440 1015675 1015857 1015938 "FUNCTION" 1016012 NIL FUNCTION (NIL NIL) -8 NIL NIL NIL) (-439 1013419 1013997 1014463 "FT" 1015229 T FT (NIL) -8 NIL NIL NIL) (-438 1012210 1012720 1012923 "FTEM" 1013236 T FTEM (NIL) -8 NIL NIL NIL) (-437 1010501 1010790 1011187 "FSUPFACT" 1011901 NIL FSUPFACT (NIL T T T) -7 NIL NIL NIL) (-436 1008898 1009187 1009519 "FST" 1010189 T FST (NIL) -8 NIL NIL NIL) (-435 1008097 1008203 1008391 "FSRED" 1008780 NIL FSRED (NIL T T) -7 NIL NIL NIL) (-434 1006796 1007052 1007399 "FSPRMELT" 1007812 NIL FSPRMELT (NIL T T) -7 NIL NIL NIL) (-433 1004102 1004540 1005026 "FSPECF" 1006359 NIL FSPECF (NIL T T) -7 NIL NIL NIL) (-432 985740 994071 994112 "FS" 997996 NIL FS (NIL T) -9 NIL 1000285 NIL) (-431 974383 977376 981433 "FS-" 981733 NIL FS- (NIL T T) -8 NIL NIL NIL) (-430 973911 973965 974135 "FSINT" 974324 NIL FSINT (NIL T T) -7 NIL NIL NIL) (-429 972203 972904 973207 "FSERIES" 973690 NIL FSERIES (NIL T T) -8 NIL NIL NIL) (-428 971245 971361 971585 "FSCINT" 972083 NIL FSCINT (NIL T T) -7 NIL NIL NIL) (-427 967453 970189 970230 "FSAGG" 970600 NIL FSAGG (NIL T) -9 NIL 970859 NIL) (-426 965215 965816 966612 "FSAGG-" 966707 NIL FSAGG- (NIL T T) -8 NIL NIL NIL) (-425 964257 964400 964627 "FSAGG2" 965068 NIL FSAGG2 (NIL T T T T) -7 NIL NIL NIL) (-424 961939 962219 962766 "FS2UPS" 963975 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL NIL) (-423 961573 961616 961745 "FS2" 961890 NIL FS2 (NIL T T T T) -7 NIL NIL NIL) (-422 960451 960622 960924 "FS2EXPXP" 961398 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL NIL) (-421 959877 959992 960144 "FRUTIL" 960331 NIL FRUTIL (NIL T) -7 NIL NIL NIL) (-420 951290 955372 956730 "FR" 958551 NIL FR (NIL T) -8 NIL NIL NIL) (-419 946259 948933 948973 "FRNAALG" 950369 NIL FRNAALG (NIL T) -9 NIL 950976 NIL) (-418 941932 943008 944283 "FRNAALG-" 945033 NIL FRNAALG- (NIL T T) -8 NIL NIL NIL) (-417 941570 941613 941740 "FRNAAF2" 941883 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL NIL) (-416 939950 940424 940719 "FRMOD" 941382 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL NIL) (-415 937701 938333 938650 "FRIDEAL" 939741 NIL FRIDEAL (NIL T T T T) -8 NIL NIL NIL) (-414 936896 936983 937272 "FRIDEAL2" 937608 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-413 936029 936443 936484 "FRETRCT" 936489 NIL FRETRCT (NIL T) -9 NIL 936665 NIL) (-412 935141 935372 935723 "FRETRCT-" 935728 NIL FRETRCT- (NIL T T) -8 NIL NIL NIL) (-411 932229 933439 933498 "FRAMALG" 934380 NIL FRAMALG (NIL T T) -9 NIL 934672 NIL) (-410 930363 930818 931448 "FRAMALG-" 931671 NIL FRAMALG- (NIL T T T) -8 NIL NIL NIL) (-409 924284 929838 930114 "FRAC" 930119 NIL FRAC (NIL T) -8 NIL NIL NIL) (-408 923920 923977 924084 "FRAC2" 924221 NIL FRAC2 (NIL T T) -7 NIL NIL NIL) (-407 923556 923613 923720 "FR2" 923857 NIL FR2 (NIL T T) -7 NIL NIL NIL) (-406 918069 920962 920990 "FPS" 922109 T FPS (NIL) -9 NIL 922666 NIL) (-405 917518 917627 917791 "FPS-" 917937 NIL FPS- (NIL T) -8 NIL NIL NIL) (-404 914820 916489 916517 "FPC" 916742 T FPC (NIL) -9 NIL 916884 NIL) (-403 914613 914653 914750 "FPC-" 914755 NIL FPC- (NIL T) -8 NIL NIL NIL) (-402 913403 914101 914142 "FPATMAB" 914147 NIL FPATMAB (NIL T) -9 NIL 914299 NIL) (-401 911076 911579 912005 "FPARFRAC" 913040 NIL FPARFRAC (NIL T T) -8 NIL NIL NIL) (-400 906469 906968 907650 "FORTRAN" 910508 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL NIL) (-399 904185 904685 905224 "FORT" 905950 T FORT (NIL) -7 NIL NIL NIL) (-398 901861 902423 902451 "FORTFN" 903511 T FORTFN (NIL) -9 NIL 904135 NIL) (-397 901625 901675 901703 "FORTCAT" 901762 T FORTCAT (NIL) -9 NIL 901824 NIL) (-396 899731 900241 900631 "FORMULA" 901255 T FORMULA (NIL) -8 NIL NIL NIL) (-395 899519 899549 899618 "FORMULA1" 899695 NIL FORMULA1 (NIL T) -7 NIL NIL NIL) (-394 899042 899094 899267 "FORDER" 899461 NIL FORDER (NIL T T T T) -7 NIL NIL NIL) (-393 898138 898302 898495 "FOP" 898869 T FOP (NIL) -7 NIL NIL NIL) (-392 896719 897418 897592 "FNLA" 898020 NIL FNLA (NIL NIL NIL T) -8 NIL NIL NIL) (-391 895448 895863 895891 "FNCAT" 896351 T FNCAT (NIL) -9 NIL 896611 NIL) (-390 894987 895407 895435 "FNAME" 895440 T FNAME (NIL) -8 NIL NIL NIL) (-389 893550 894513 894541 "FMTC" 894546 T FMTC (NIL) -9 NIL 894582 NIL) (-388 889883 891073 891702 "FMONOID" 892954 NIL FMONOID (NIL T) -8 NIL NIL NIL) (-387 889075 889625 889774 "FM" 889779 NIL FM (NIL T T) -8 NIL NIL NIL) (-386 886499 887145 887173 "FMFUN" 888317 T FMFUN (NIL) -9 NIL 889025 NIL) (-385 885768 885949 885977 "FMC" 886267 T FMC (NIL) -9 NIL 886449 NIL) (-384 882847 883707 883761 "FMCAT" 884956 NIL FMCAT (NIL T T) -9 NIL 885451 NIL) (-383 881713 882613 882713 "FM1" 882792 NIL FM1 (NIL T T) -8 NIL NIL NIL) (-382 879487 879903 880397 "FLOATRP" 881264 NIL FLOATRP (NIL T) -7 NIL NIL NIL) (-381 873062 877216 877837 "FLOAT" 878886 T FLOAT (NIL) -8 NIL NIL NIL) (-380 870500 871000 871578 "FLOATCP" 872529 NIL FLOATCP (NIL T) -7 NIL NIL NIL) (-379 869240 870078 870119 "FLINEXP" 870124 NIL FLINEXP (NIL T) -9 NIL 870217 NIL) (-378 868394 868629 868957 "FLINEXP-" 868962 NIL FLINEXP- (NIL T T) -8 NIL NIL NIL) (-377 867470 867614 867838 "FLASORT" 868246 NIL FLASORT (NIL T T) -7 NIL NIL NIL) (-376 864586 865454 865506 "FLALG" 866733 NIL FLALG (NIL T T) -9 NIL 867200 NIL) (-375 858322 862072 862113 "FLAGG" 863375 NIL FLAGG (NIL T) -9 NIL 864027 NIL) (-374 857048 857387 857877 "FLAGG-" 857882 NIL FLAGG- (NIL T T) -8 NIL NIL NIL) (-373 856090 856233 856460 "FLAGG2" 856901 NIL FLAGG2 (NIL T T T T) -7 NIL NIL NIL) (-372 852941 853949 854008 "FINRALG" 855136 NIL FINRALG (NIL T T) -9 NIL 855644 NIL) (-371 852101 852330 852669 "FINRALG-" 852674 NIL FINRALG- (NIL T T T) -8 NIL NIL NIL) (-370 851481 851720 851748 "FINITE" 851944 T FINITE (NIL) -9 NIL 852051 NIL) (-369 843838 846025 846065 "FINAALG" 849732 NIL FINAALG (NIL T) -9 NIL 851185 NIL) (-368 839170 840220 841364 "FINAALG-" 842743 NIL FINAALG- (NIL T T) -8 NIL NIL NIL) (-367 838538 838925 839028 "FILE" 839100 NIL FILE (NIL T) -8 NIL NIL NIL) (-366 837196 837534 837588 "FILECAT" 838272 NIL FILECAT (NIL T T) -9 NIL 838488 NIL) (-365 834912 836440 836468 "FIELD" 836508 T FIELD (NIL) -9 NIL 836588 NIL) (-364 833532 833917 834428 "FIELD-" 834433 NIL FIELD- (NIL T) -8 NIL NIL NIL) (-363 831382 832167 832514 "FGROUP" 833218 NIL FGROUP (NIL T) -8 NIL NIL NIL) (-362 830472 830636 830856 "FGLMICPK" 831214 NIL FGLMICPK (NIL T NIL) -7 NIL NIL NIL) (-361 826304 830397 830454 "FFX" 830459 NIL FFX (NIL T NIL) -8 NIL NIL NIL) (-360 825905 825966 826101 "FFSLPE" 826237 NIL FFSLPE (NIL T T T) -7 NIL NIL NIL) (-359 821894 822677 823473 "FFPOLY" 825141 NIL FFPOLY (NIL T) -7 NIL NIL NIL) (-358 821398 821434 821643 "FFPOLY2" 821852 NIL FFPOLY2 (NIL T T) -7 NIL NIL NIL) (-357 817241 821317 821380 "FFP" 821385 NIL FFP (NIL T NIL) -8 NIL NIL NIL) (-356 812639 817152 817216 "FF" 817221 NIL FF (NIL NIL NIL) -8 NIL NIL NIL) (-355 807765 811982 812172 "FFNBX" 812493 NIL FFNBX (NIL T NIL) -8 NIL NIL NIL) (-354 802694 806900 807158 "FFNBP" 807619 NIL FFNBP (NIL T NIL) -8 NIL NIL NIL) (-353 797327 801978 802189 "FFNB" 802527 NIL FFNB (NIL NIL NIL) -8 NIL NIL NIL) (-352 796159 796357 796672 "FFINTBAS" 797124 NIL FFINTBAS (NIL T T T) -7 NIL NIL NIL) (-351 792228 794448 794476 "FFIELDC" 795096 T FFIELDC (NIL) -9 NIL 795472 NIL) (-350 790890 791261 791758 "FFIELDC-" 791763 NIL FFIELDC- (NIL T) -8 NIL NIL NIL) (-349 790459 790505 790629 "FFHOM" 790832 NIL FFHOM (NIL T T T) -7 NIL NIL NIL) (-348 788154 788641 789158 "FFF" 789974 NIL FFF (NIL T) -7 NIL NIL NIL) (-347 783772 787896 787997 "FFCGX" 788097 NIL FFCGX (NIL T NIL) -8 NIL NIL NIL) (-346 779393 783504 783611 "FFCGP" 783715 NIL FFCGP (NIL T NIL) -8 NIL NIL NIL) (-345 774576 779120 779228 "FFCG" 779329 NIL FFCG (NIL NIL NIL) -8 NIL NIL NIL) (-344 755972 765053 765139 "FFCAT" 770304 NIL FFCAT (NIL T T T) -9 NIL 771755 NIL) (-343 751170 752217 753531 "FFCAT-" 754761 NIL FFCAT- (NIL T T T T) -8 NIL NIL NIL) (-342 750581 750624 750859 "FFCAT2" 751121 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-341 739902 743553 744773 "FEXPR" 749433 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL NIL) (-340 738902 739337 739378 "FEVALAB" 739462 NIL FEVALAB (NIL T) -9 NIL 739723 NIL) (-339 738061 738271 738609 "FEVALAB-" 738614 NIL FEVALAB- (NIL T T) -8 NIL NIL NIL) (-338 736627 737444 737647 "FDIV" 737960 NIL FDIV (NIL T T T T) -8 NIL NIL NIL) (-337 733647 734388 734503 "FDIVCAT" 736071 NIL FDIVCAT (NIL T T T T) -9 NIL 736508 NIL) (-336 733409 733436 733606 "FDIVCAT-" 733611 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL NIL) (-335 732629 732716 732993 "FDIV2" 733316 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-334 731631 731945 732140 "FCTRDATA" 732454 T FCTRDATA (NIL) -8 NIL NIL NIL) (-333 730317 730576 730865 "FCPAK1" 731362 T FCPAK1 (NIL) -7 NIL NIL NIL) (-332 729416 729817 729958 "FCOMP" 730208 NIL FCOMP (NIL T) -8 NIL NIL NIL) (-331 713118 716566 720104 "FC" 725898 T FC (NIL) -8 NIL NIL NIL) (-330 705481 709509 709549 "FAXF" 711351 NIL FAXF (NIL T) -9 NIL 712043 NIL) (-329 702757 703415 704240 "FAXF-" 704705 NIL FAXF- (NIL T T) -8 NIL NIL NIL) (-328 697809 702133 702309 "FARRAY" 702614 NIL FARRAY (NIL T) -8 NIL NIL NIL) (-327 692703 694770 694823 "FAMR" 695846 NIL FAMR (NIL T T) -9 NIL 696306 NIL) (-326 691593 691895 692330 "FAMR-" 692335 NIL FAMR- (NIL T T T) -8 NIL NIL NIL) (-325 690762 691515 691568 "FAMONOID" 691573 NIL FAMONOID (NIL T) -8 NIL NIL NIL) (-324 688548 689258 689311 "FAMONC" 690252 NIL FAMONC (NIL T T) -9 NIL 690638 NIL) (-323 687212 688302 688439 "FAGROUP" 688444 NIL FAGROUP (NIL T) -8 NIL NIL NIL) (-322 685007 685326 685729 "FACUTIL" 686893 NIL FACUTIL (NIL T T T T) -7 NIL NIL NIL) (-321 684106 684291 684513 "FACTFUNC" 684817 NIL FACTFUNC (NIL T) -7 NIL NIL NIL) (-320 676528 683409 683608 "EXPUPXS" 683962 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-319 674011 674551 675137 "EXPRTUBE" 675962 T EXPRTUBE (NIL) -7 NIL NIL NIL) (-318 670282 670874 671604 "EXPRODE" 673350 NIL EXPRODE (NIL T T) -7 NIL NIL NIL) (-317 655767 668931 669360 "EXPR" 669886 NIL EXPR (NIL T) -8 NIL NIL NIL) (-316 650321 650908 651714 "EXPR2UPS" 655065 NIL EXPR2UPS (NIL T T) -7 NIL NIL NIL) (-315 649953 650010 650119 "EXPR2" 650258 NIL EXPR2 (NIL T T) -7 NIL NIL NIL) (-314 641343 649106 649396 "EXPEXPAN" 649790 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL NIL) (-313 641143 641300 641329 "EXIT" 641334 T EXIT (NIL) -8 NIL NIL NIL) (-312 640623 640867 640958 "EXITAST" 641072 T EXITAST (NIL) -8 NIL NIL NIL) (-311 640250 640312 640425 "EVALCYC" 640555 NIL EVALCYC (NIL T) -7 NIL NIL NIL) (-310 639791 639909 639950 "EVALAB" 640120 NIL EVALAB (NIL T) -9 NIL 640224 NIL) (-309 639272 639394 639615 "EVALAB-" 639620 NIL EVALAB- (NIL T T) -8 NIL NIL NIL) (-308 636640 637942 637970 "EUCDOM" 638525 T EUCDOM (NIL) -9 NIL 638875 NIL) (-307 635045 635487 636077 "EUCDOM-" 636082 NIL EUCDOM- (NIL T) -8 NIL NIL NIL) (-306 622583 625343 628093 "ESTOOLS" 632315 T ESTOOLS (NIL) -7 NIL NIL NIL) (-305 622215 622272 622381 "ESTOOLS2" 622520 NIL ESTOOLS2 (NIL T T) -7 NIL NIL NIL) (-304 621966 622008 622088 "ESTOOLS1" 622167 NIL ESTOOLS1 (NIL T) -7 NIL NIL NIL) (-303 616003 617611 617639 "ES" 620407 T ES (NIL) -9 NIL 621817 NIL) (-302 610950 612237 614054 "ES-" 614218 NIL ES- (NIL T) -8 NIL NIL NIL) (-301 607324 608085 608865 "ESCONT" 610190 T ESCONT (NIL) -7 NIL NIL NIL) (-300 607069 607101 607183 "ESCONT1" 607286 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL NIL) (-299 606744 606794 606894 "ES2" 607013 NIL ES2 (NIL T T) -7 NIL NIL NIL) (-298 606374 606432 606541 "ES1" 606680 NIL ES1 (NIL T T) -7 NIL NIL NIL) (-297 605590 605719 605895 "ERROR" 606218 T ERROR (NIL) -7 NIL NIL NIL) (-296 598982 605449 605540 "EQTBL" 605545 NIL EQTBL (NIL T T) -8 NIL NIL NIL) (-295 591485 594296 595745 "EQ" 597566 NIL -2097 (NIL T) -8 NIL NIL NIL) (-294 591117 591174 591283 "EQ2" 591422 NIL EQ2 (NIL T T) -7 NIL NIL NIL) (-293 586406 587455 588548 "EP" 590056 NIL EP (NIL T) -7 NIL NIL NIL) (-292 585006 585297 585603 "ENV" 586120 T ENV (NIL) -8 NIL NIL NIL) (-291 584100 584654 584682 "ENTIRER" 584687 T ENTIRER (NIL) -9 NIL 584733 NIL) (-290 580567 582055 582425 "EMR" 583899 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL NIL) (-289 579711 579896 579950 "ELTAGG" 580330 NIL ELTAGG (NIL T T) -9 NIL 580541 NIL) (-288 579430 579492 579633 "ELTAGG-" 579638 NIL ELTAGG- (NIL T T T) -8 NIL NIL NIL) (-287 579219 579248 579302 "ELTAB" 579386 NIL ELTAB (NIL T T) -9 NIL NIL NIL) (-286 578345 578491 578690 "ELFUTS" 579070 NIL ELFUTS (NIL T T) -7 NIL NIL NIL) (-285 578087 578143 578171 "ELEMFUN" 578276 T ELEMFUN (NIL) -9 NIL NIL NIL) (-284 577957 577978 578046 "ELEMFUN-" 578051 NIL ELEMFUN- (NIL T) -8 NIL NIL NIL) (-283 572801 576057 576098 "ELAGG" 577038 NIL ELAGG (NIL T) -9 NIL 577501 NIL) (-282 571086 571520 572183 "ELAGG-" 572188 NIL ELAGG- (NIL T T) -8 NIL NIL NIL) (-281 569751 570029 570322 "ELABEXPR" 570813 T ELABEXPR (NIL) -8 NIL NIL NIL) (-280 562615 564418 565245 "EFUPXS" 569027 NIL EFUPXS (NIL T T T T) -8 NIL NIL NIL) (-279 556065 557866 558676 "EFULS" 561891 NIL EFULS (NIL T T T) -8 NIL NIL NIL) (-278 553550 553908 554380 "EFSTRUC" 555697 NIL EFSTRUC (NIL T T) -7 NIL NIL NIL) (-277 543341 544907 546455 "EF" 552065 NIL EF (NIL T T) -7 NIL NIL NIL) (-276 542415 542826 542975 "EAB" 543212 T EAB (NIL) -8 NIL NIL NIL) (-275 541597 542374 542402 "E04UCFA" 542407 T E04UCFA (NIL) -8 NIL NIL NIL) (-274 540779 541556 541584 "E04NAFA" 541589 T E04NAFA (NIL) -8 NIL NIL NIL) (-273 539961 540738 540766 "E04MBFA" 540771 T E04MBFA (NIL) -8 NIL NIL NIL) (-272 539143 539920 539948 "E04JAFA" 539953 T E04JAFA (NIL) -8 NIL NIL NIL) (-271 538327 539102 539130 "E04GCFA" 539135 T E04GCFA (NIL) -8 NIL NIL NIL) (-270 537511 538286 538314 "E04FDFA" 538319 T E04FDFA (NIL) -8 NIL NIL NIL) (-269 536693 537470 537498 "E04DGFA" 537503 T E04DGFA (NIL) -8 NIL NIL NIL) (-268 530866 532218 533582 "E04AGNT" 535349 T E04AGNT (NIL) -7 NIL NIL NIL) (-267 529546 530052 530092 "DVARCAT" 530567 NIL DVARCAT (NIL T) -9 NIL 530766 NIL) (-266 528750 528962 529276 "DVARCAT-" 529281 NIL DVARCAT- (NIL T T) -8 NIL NIL NIL) (-265 521887 528549 528678 "DSMP" 528683 NIL DSMP (NIL T T T) -8 NIL NIL NIL) (-264 516668 517832 518900 "DROPT" 520839 T DROPT (NIL) -8 NIL NIL NIL) (-263 516333 516392 516490 "DROPT1" 516603 NIL DROPT1 (NIL T) -7 NIL NIL NIL) (-262 511448 512574 513711 "DROPT0" 515216 T DROPT0 (NIL) -7 NIL NIL NIL) (-261 509793 510118 510504 "DRAWPT" 511082 T DRAWPT (NIL) -7 NIL NIL NIL) (-260 504380 505303 506382 "DRAW" 508767 NIL DRAW (NIL T) -7 NIL NIL NIL) (-259 504013 504066 504184 "DRAWHACK" 504321 NIL DRAWHACK (NIL T) -7 NIL NIL NIL) (-258 502744 503013 503304 "DRAWCX" 503742 T DRAWCX (NIL) -7 NIL NIL NIL) (-257 502259 502328 502479 "DRAWCURV" 502670 NIL DRAWCURV (NIL T T) -7 NIL NIL NIL) (-256 492727 494689 496804 "DRAWCFUN" 500164 T DRAWCFUN (NIL) -7 NIL NIL NIL) (-255 489493 491422 491463 "DQAGG" 492092 NIL DQAGG (NIL T) -9 NIL 492365 NIL) (-254 477617 484086 484169 "DPOLCAT" 486021 NIL DPOLCAT (NIL T T T T) -9 NIL 486566 NIL) (-253 472453 473802 475760 "DPOLCAT-" 475765 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL NIL) (-252 465575 472314 472412 "DPMO" 472417 NIL DPMO (NIL NIL T T) -8 NIL NIL NIL) (-251 458600 465355 465522 "DPMM" 465527 NIL DPMM (NIL NIL T T T) -8 NIL NIL NIL) (-250 458078 458292 458390 "DOMTMPLT" 458522 T DOMTMPLT (NIL) -8 NIL NIL NIL) (-249 457511 457880 457960 "DOMCTOR" 458018 T DOMCTOR (NIL) -8 NIL NIL NIL) (-248 456779 457033 457170 "DOMAIN" 457394 T DOMAIN (NIL) -8 NIL NIL NIL) (-247 450767 456414 456566 "DMP" 456680 NIL DMP (NIL NIL T) -8 NIL NIL NIL) (-246 450367 450423 450567 "DLP" 450705 NIL DLP (NIL T) -7 NIL NIL NIL) (-245 444189 449694 449884 "DLIST" 450209 NIL DLIST (NIL T) -8 NIL NIL NIL) (-244 440986 443042 443083 "DLAGG" 443633 NIL DLAGG (NIL T) -9 NIL 443863 NIL) (-243 439662 440326 440354 "DIVRING" 440446 T DIVRING (NIL) -9 NIL 440529 NIL) (-242 438899 439089 439389 "DIVRING-" 439394 NIL DIVRING- (NIL T) -8 NIL NIL NIL) (-241 437001 437358 437764 "DISPLAY" 438513 T DISPLAY (NIL) -7 NIL NIL NIL) (-240 430889 436915 436978 "DIRPROD" 436983 NIL DIRPROD (NIL NIL T) -8 NIL NIL NIL) (-239 429737 429940 430205 "DIRPROD2" 430682 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL NIL) (-238 418512 424518 424571 "DIRPCAT" 424981 NIL DIRPCAT (NIL NIL T) -9 NIL 425821 NIL) (-237 415838 416480 417361 "DIRPCAT-" 417698 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL NIL) (-236 415125 415285 415471 "DIOSP" 415672 T DIOSP (NIL) -7 NIL NIL NIL) (-235 411780 414037 414078 "DIOPS" 414512 NIL DIOPS (NIL T) -9 NIL 414741 NIL) (-234 411329 411443 411634 "DIOPS-" 411639 NIL DIOPS- (NIL T T) -8 NIL NIL NIL) (-233 410152 410780 410808 "DIFRING" 410995 T DIFRING (NIL) -9 NIL 411105 NIL) (-232 409798 409875 410027 "DIFRING-" 410032 NIL DIFRING- (NIL T) -8 NIL NIL NIL) (-231 407534 408806 408847 "DIFEXT" 409210 NIL DIFEXT (NIL T) -9 NIL 409504 NIL) (-230 405819 406247 406913 "DIFEXT-" 406918 NIL DIFEXT- (NIL T T) -8 NIL NIL NIL) (-229 403094 405351 405392 "DIAGG" 405397 NIL DIAGG (NIL T) -9 NIL 405417 NIL) (-228 402478 402635 402887 "DIAGG-" 402892 NIL DIAGG- (NIL T T) -8 NIL NIL NIL) (-227 397895 401437 401714 "DHMATRIX" 402247 NIL DHMATRIX (NIL T) -8 NIL NIL NIL) (-226 393507 394416 395426 "DFSFUN" 396905 T DFSFUN (NIL) -7 NIL NIL NIL) (-225 388585 392438 392750 "DFLOAT" 393215 T DFLOAT (NIL) -8 NIL NIL NIL) (-224 386848 387129 387518 "DFINTTLS" 388293 NIL DFINTTLS (NIL T T) -7 NIL NIL NIL) (-223 383877 384869 385269 "DERHAM" 386514 NIL DERHAM (NIL T NIL) -8 NIL NIL NIL) (-222 381678 383652 383741 "DEQUEUE" 383821 NIL DEQUEUE (NIL T) -8 NIL NIL NIL) (-221 380932 381065 381248 "DEGRED" 381540 NIL DEGRED (NIL T T) -7 NIL NIL NIL) (-220 377362 378107 378953 "DEFINTRF" 380160 NIL DEFINTRF (NIL T) -7 NIL NIL NIL) (-219 374917 375386 375978 "DEFINTEF" 376881 NIL DEFINTEF (NIL T T) -7 NIL NIL NIL) (-218 374267 374537 374652 "DEFAST" 374822 T DEFAST (NIL) -8 NIL NIL NIL) (-217 368271 373862 374011 "DECIMAL" 374138 T DECIMAL (NIL) -8 NIL NIL NIL) (-216 365783 366241 366747 "DDFACT" 367815 NIL DDFACT (NIL T T) -7 NIL NIL NIL) (-215 365379 365422 365573 "DBLRESP" 365734 NIL DBLRESP (NIL T T T T) -7 NIL NIL NIL) (-214 363251 363612 363972 "DBASE" 365146 NIL DBASE (NIL T) -8 NIL NIL NIL) (-213 362493 362731 362877 "DATAARY" 363150 NIL DATAARY (NIL NIL T) -8 NIL NIL NIL) (-212 361599 362452 362480 "D03FAFA" 362485 T D03FAFA (NIL) -8 NIL NIL NIL) (-211 360706 361558 361586 "D03EEFA" 361591 T D03EEFA (NIL) -8 NIL NIL NIL) (-210 358656 359122 359611 "D03AGNT" 360237 T D03AGNT (NIL) -7 NIL NIL NIL) (-209 357945 358615 358643 "D02EJFA" 358648 T D02EJFA (NIL) -8 NIL NIL NIL) (-208 357234 357904 357932 "D02CJFA" 357937 T D02CJFA (NIL) -8 NIL NIL NIL) (-207 356523 357193 357221 "D02BHFA" 357226 T D02BHFA (NIL) -8 NIL NIL NIL) (-206 355812 356482 356510 "D02BBFA" 356515 T D02BBFA (NIL) -8 NIL NIL NIL) (-205 349009 350598 352204 "D02AGNT" 354226 T D02AGNT (NIL) -7 NIL NIL NIL) (-204 346777 347300 347846 "D01WGTS" 348483 T D01WGTS (NIL) -7 NIL NIL NIL) (-203 345844 346736 346764 "D01TRNS" 346769 T D01TRNS (NIL) -8 NIL NIL NIL) (-202 344912 345803 345831 "D01GBFA" 345836 T D01GBFA (NIL) -8 NIL NIL NIL) (-201 343980 344871 344899 "D01FCFA" 344904 T D01FCFA (NIL) -8 NIL NIL NIL) (-200 343048 343939 343967 "D01ASFA" 343972 T D01ASFA (NIL) -8 NIL NIL NIL) (-199 342116 343007 343035 "D01AQFA" 343040 T D01AQFA (NIL) -8 NIL NIL NIL) (-198 341184 342075 342103 "D01APFA" 342108 T D01APFA (NIL) -8 NIL NIL NIL) (-197 340252 341143 341171 "D01ANFA" 341176 T D01ANFA (NIL) -8 NIL NIL NIL) (-196 339320 340211 340239 "D01AMFA" 340244 T D01AMFA (NIL) -8 NIL NIL NIL) (-195 338388 339279 339307 "D01ALFA" 339312 T D01ALFA (NIL) -8 NIL NIL NIL) (-194 337456 338347 338375 "D01AKFA" 338380 T D01AKFA (NIL) -8 NIL NIL NIL) (-193 336524 337415 337443 "D01AJFA" 337448 T D01AJFA (NIL) -8 NIL NIL NIL) (-192 329819 331372 332933 "D01AGNT" 334983 T D01AGNT (NIL) -7 NIL NIL NIL) (-191 329156 329284 329436 "CYCLOTOM" 329687 T CYCLOTOM (NIL) -7 NIL NIL NIL) (-190 325890 326604 327331 "CYCLES" 328449 T CYCLES (NIL) -7 NIL NIL NIL) (-189 325202 325336 325507 "CVMP" 325751 NIL CVMP (NIL T) -7 NIL NIL NIL) (-188 323043 323301 323670 "CTRIGMNP" 324930 NIL CTRIGMNP (NIL T T) -7 NIL NIL NIL) (-187 322479 322837 322910 "CTOR" 322990 T CTOR (NIL) -8 NIL NIL NIL) (-186 321988 322210 322311 "CTORKIND" 322398 T CTORKIND (NIL) -8 NIL NIL NIL) (-185 321279 321595 321623 "CTORCAT" 321805 T CTORCAT (NIL) -9 NIL 321918 NIL) (-184 320877 320988 321147 "CTORCAT-" 321152 NIL CTORCAT- (NIL T) -8 NIL NIL NIL) (-183 320366 320580 320678 "CTORCALL" 320799 T CTORCALL (NIL) -8 NIL NIL NIL) (-182 319740 319839 319992 "CSTTOOLS" 320263 NIL CSTTOOLS (NIL T T) -7 NIL NIL NIL) (-181 315539 316196 316954 "CRFP" 319052 NIL CRFP (NIL T T) -7 NIL NIL NIL) (-180 315014 315260 315352 "CRCEAST" 315467 T CRCEAST (NIL) -8 NIL NIL NIL) (-179 314061 314246 314474 "CRAPACK" 314818 NIL CRAPACK (NIL T) -7 NIL NIL NIL) (-178 313445 313546 313750 "CPMATCH" 313937 NIL CPMATCH (NIL T T T) -7 NIL NIL NIL) (-177 313170 313198 313304 "CPIMA" 313411 NIL CPIMA (NIL T T T) -7 NIL NIL NIL) (-176 309518 310190 310909 "COORDSYS" 312505 NIL COORDSYS (NIL T) -7 NIL NIL NIL) (-175 308930 309051 309193 "CONTOUR" 309396 T CONTOUR (NIL) -8 NIL NIL NIL) (-174 304821 306933 307425 "CONTFRAC" 308470 NIL CONTFRAC (NIL T) -8 NIL NIL NIL) (-173 304701 304722 304750 "CONDUIT" 304787 T CONDUIT (NIL) -9 NIL NIL NIL) (-172 303789 304343 304371 "COMRING" 304376 T COMRING (NIL) -9 NIL 304428 NIL) (-171 302843 303147 303331 "COMPPROP" 303625 T COMPPROP (NIL) -8 NIL NIL NIL) (-170 302504 302539 302667 "COMPLPAT" 302802 NIL COMPLPAT (NIL T T T) -7 NIL NIL NIL) (-169 292795 302313 302422 "COMPLEX" 302427 NIL COMPLEX (NIL T) -8 NIL NIL NIL) (-168 292431 292488 292595 "COMPLEX2" 292732 NIL COMPLEX2 (NIL T T) -7 NIL NIL NIL) (-167 292149 292184 292282 "COMPFACT" 292390 NIL COMPFACT (NIL T T) -7 NIL NIL NIL) (-166 276229 286223 286263 "COMPCAT" 287267 NIL COMPCAT (NIL T) -9 NIL 288615 NIL) (-165 265741 268668 272295 "COMPCAT-" 272651 NIL COMPCAT- (NIL T T) -8 NIL NIL NIL) (-164 265470 265498 265601 "COMMUPC" 265707 NIL COMMUPC (NIL T T T) -7 NIL NIL NIL) (-163 265264 265298 265357 "COMMONOP" 265431 T COMMONOP (NIL) -7 NIL NIL NIL) (-162 264820 265015 265102 "COMM" 265197 T COMM (NIL) -8 NIL NIL NIL) (-161 264396 264624 264699 "COMMAAST" 264765 T COMMAAST (NIL) -8 NIL NIL NIL) (-160 263645 263839 263867 "COMBOPC" 264205 T COMBOPC (NIL) -9 NIL 264380 NIL) (-159 262541 262751 262993 "COMBINAT" 263435 NIL COMBINAT (NIL T) -7 NIL NIL NIL) (-158 258998 259572 260199 "COMBF" 261963 NIL COMBF (NIL T T) -7 NIL NIL NIL) (-157 257756 258114 258349 "COLOR" 258783 T COLOR (NIL) -8 NIL NIL NIL) (-156 257232 257477 257569 "COLONAST" 257684 T COLONAST (NIL) -8 NIL NIL NIL) (-155 256872 256919 257044 "CMPLXRT" 257179 NIL CMPLXRT (NIL T T) -7 NIL NIL NIL) (-154 256320 256572 256671 "CLLCTAST" 256793 T CLLCTAST (NIL) -8 NIL NIL NIL) (-153 251818 252850 253930 "CLIP" 255260 T CLIP (NIL) -7 NIL NIL NIL) (-152 250164 250924 251163 "CLIF" 251645 NIL CLIF (NIL NIL T NIL) -8 NIL NIL NIL) (-151 246339 248310 248351 "CLAGG" 249280 NIL CLAGG (NIL T) -9 NIL 249816 NIL) (-150 244761 245218 245801 "CLAGG-" 245806 NIL CLAGG- (NIL T T) -8 NIL NIL NIL) (-149 244305 244390 244530 "CINTSLPE" 244670 NIL CINTSLPE (NIL T T) -7 NIL NIL NIL) (-148 241806 242277 242825 "CHVAR" 243833 NIL CHVAR (NIL T T T) -7 NIL NIL NIL) (-147 240980 241534 241562 "CHARZ" 241567 T CHARZ (NIL) -9 NIL 241582 NIL) (-146 240734 240774 240852 "CHARPOL" 240934 NIL CHARPOL (NIL T) -7 NIL NIL NIL) (-145 239792 240379 240407 "CHARNZ" 240454 T CHARNZ (NIL) -9 NIL 240510 NIL) (-144 237758 238482 238817 "CHAR" 239477 T CHAR (NIL) -8 NIL NIL NIL) (-143 237484 237545 237573 "CFCAT" 237684 T CFCAT (NIL) -9 NIL NIL NIL) (-142 236729 236840 237022 "CDEN" 237368 NIL CDEN (NIL T T T) -7 NIL NIL NIL) (-141 232694 235882 236162 "CCLASS" 236469 T CCLASS (NIL) -8 NIL NIL NIL) (-140 232001 232144 232307 "CATEGORY" 232551 T -10 (NIL) -8 NIL NIL NIL) (-139 231574 231920 231968 "CATCTOR" 231973 T CATCTOR (NIL) -8 NIL NIL NIL) (-138 231025 231277 231375 "CATAST" 231496 T CATAST (NIL) -8 NIL NIL NIL) (-137 230501 230746 230838 "CASEAST" 230953 T CASEAST (NIL) -8 NIL NIL NIL) (-136 225510 226530 227283 "CARTEN" 229804 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL NIL) (-135 224618 224766 224987 "CARTEN2" 225357 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL NIL) (-134 222934 223768 224025 "CARD" 224381 T CARD (NIL) -8 NIL NIL NIL) (-133 222510 222738 222813 "CAPSLAST" 222879 T CAPSLAST (NIL) -8 NIL NIL NIL) (-132 222014 222222 222250 "CACHSET" 222382 T CACHSET (NIL) -9 NIL 222460 NIL) (-131 221484 221806 221834 "CABMON" 221884 T CABMON (NIL) -9 NIL 221940 NIL) (-130 220957 221188 221298 "BYTEORD" 221394 T BYTEORD (NIL) -8 NIL NIL NIL) (-129 219936 220491 220633 "BYTE" 220796 T BYTE (NIL) -8 NIL NIL 220918) (-128 215286 219441 219613 "BYTEBUF" 219784 T BYTEBUF (NIL) -8 NIL NIL NIL) (-127 212795 214978 215085 "BTREE" 215212 NIL BTREE (NIL T) -8 NIL NIL NIL) (-126 210244 212443 212565 "BTOURN" 212705 NIL BTOURN (NIL T) -8 NIL NIL NIL) (-125 207614 209714 209755 "BTCAT" 209823 NIL BTCAT (NIL T) -9 NIL 209900 NIL) (-124 207281 207361 207510 "BTCAT-" 207515 NIL BTCAT- (NIL T T) -8 NIL NIL NIL) (-123 202546 206424 206452 "BTAGG" 206674 T BTAGG (NIL) -9 NIL 206835 NIL) (-122 202036 202161 202367 "BTAGG-" 202372 NIL BTAGG- (NIL T) -8 NIL NIL NIL) (-121 199031 201314 201529 "BSTREE" 201853 NIL BSTREE (NIL T) -8 NIL NIL NIL) (-120 198169 198295 198479 "BRILL" 198887 NIL BRILL (NIL T) -7 NIL NIL NIL) (-119 194821 196895 196936 "BRAGG" 197585 NIL BRAGG (NIL T) -9 NIL 197843 NIL) (-118 193350 193756 194311 "BRAGG-" 194316 NIL BRAGG- (NIL T T) -8 NIL NIL NIL) (-117 186579 192696 192880 "BPADICRT" 193198 NIL BPADICRT (NIL NIL) -8 NIL NIL NIL) (-116 184894 186516 186561 "BPADIC" 186566 NIL BPADIC (NIL NIL) -8 NIL NIL NIL) (-115 184592 184622 184736 "BOUNDZRO" 184858 NIL BOUNDZRO (NIL T T) -7 NIL NIL NIL) (-114 179820 181018 181930 "BOP" 183700 T BOP (NIL) -8 NIL NIL NIL) (-113 177601 178005 178480 "BOP1" 179378 NIL BOP1 (NIL T) -7 NIL NIL NIL) (-112 176426 177175 177324 "BOOLEAN" 177472 T BOOLEAN (NIL) -8 NIL NIL NIL) (-111 175705 176109 176163 "BMODULE" 176168 NIL BMODULE (NIL T T) -9 NIL 176233 NIL) (-110 171506 175503 175576 "BITS" 175652 T BITS (NIL) -8 NIL NIL NIL) (-109 170927 171046 171186 "BINDING" 171386 T BINDING (NIL) -8 NIL NIL NIL) (-108 164934 170524 170672 "BINARY" 170799 T BINARY (NIL) -8 NIL NIL NIL) (-107 162714 164189 164230 "BGAGG" 164490 NIL BGAGG (NIL T) -9 NIL 164627 NIL) (-106 162545 162577 162668 "BGAGG-" 162673 NIL BGAGG- (NIL T T) -8 NIL NIL NIL) (-105 161616 161929 162134 "BFUNCT" 162360 T BFUNCT (NIL) -8 NIL NIL NIL) (-104 160306 160484 160772 "BEZOUT" 161440 NIL BEZOUT (NIL T T T T T) -7 NIL NIL NIL) (-103 156775 159158 159488 "BBTREE" 160009 NIL BBTREE (NIL T) -8 NIL NIL NIL) (-102 156509 156562 156590 "BASTYPE" 156709 T BASTYPE (NIL) -9 NIL NIL NIL) (-101 156361 156390 156463 "BASTYPE-" 156468 NIL BASTYPE- (NIL T) -8 NIL NIL NIL) (-100 155795 155871 156023 "BALFACT" 156272 NIL BALFACT (NIL T T) -7 NIL NIL NIL) (-99 154651 155210 155396 "AUTOMOR" 155640 NIL AUTOMOR (NIL T) -8 NIL NIL NIL) (-98 154377 154382 154408 "ATTREG" 154413 T ATTREG (NIL) -9 NIL NIL NIL) (-97 152629 153074 153426 "ATTRBUT" 154043 T ATTRBUT (NIL) -8 NIL NIL NIL) (-96 152237 152457 152523 "ATTRAST" 152581 T ATTRAST (NIL) -8 NIL NIL NIL) (-95 151773 151886 151912 "ATRIG" 152113 T ATRIG (NIL) -9 NIL NIL NIL) (-94 151582 151623 151710 "ATRIG-" 151715 NIL ATRIG- (NIL T) -8 NIL NIL NIL) (-93 151227 151413 151439 "ASTCAT" 151444 T ASTCAT (NIL) -9 NIL 151474 NIL) (-92 150954 151013 151132 "ASTCAT-" 151137 NIL ASTCAT- (NIL T) -8 NIL NIL NIL) (-91 149103 150730 150818 "ASTACK" 150897 NIL ASTACK (NIL T) -8 NIL NIL NIL) (-90 147608 147905 148270 "ASSOCEQ" 148785 NIL ASSOCEQ (NIL T T) -7 NIL NIL NIL) (-89 146640 147267 147391 "ASP9" 147515 NIL ASP9 (NIL NIL) -8 NIL NIL NIL) (-88 146403 146588 146627 "ASP8" 146632 NIL ASP8 (NIL NIL) -8 NIL NIL NIL) (-87 145271 146008 146150 "ASP80" 146292 NIL ASP80 (NIL NIL) -8 NIL NIL NIL) (-86 144169 144906 145038 "ASP7" 145170 NIL ASP7 (NIL NIL) -8 NIL NIL NIL) (-85 143123 143846 143964 "ASP78" 144082 NIL ASP78 (NIL NIL) -8 NIL NIL NIL) (-84 142092 142803 142920 "ASP77" 143037 NIL ASP77 (NIL NIL) -8 NIL NIL NIL) (-83 141004 141730 141861 "ASP74" 141992 NIL ASP74 (NIL NIL) -8 NIL NIL NIL) (-82 139904 140639 140771 "ASP73" 140903 NIL ASP73 (NIL NIL) -8 NIL NIL NIL) (-81 139008 139730 139830 "ASP6" 139835 NIL ASP6 (NIL NIL) -8 NIL NIL NIL) (-80 137952 138685 138803 "ASP55" 138921 NIL ASP55 (NIL NIL) -8 NIL NIL NIL) (-79 136901 137626 137745 "ASP50" 137864 NIL ASP50 (NIL NIL) -8 NIL NIL NIL) (-78 135989 136602 136712 "ASP4" 136822 NIL ASP4 (NIL NIL) -8 NIL NIL NIL) (-77 135077 135690 135800 "ASP49" 135910 NIL ASP49 (NIL NIL) -8 NIL NIL NIL) (-76 133861 134616 134784 "ASP42" 134966 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-75 132637 133394 133564 "ASP41" 133748 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-74 131587 132314 132432 "ASP35" 132550 NIL ASP35 (NIL NIL) -8 NIL NIL NIL) (-73 131352 131535 131574 "ASP34" 131579 NIL ASP34 (NIL NIL) -8 NIL NIL NIL) (-72 131089 131156 131232 "ASP33" 131307 NIL ASP33 (NIL NIL) -8 NIL NIL NIL) (-71 129982 130724 130856 "ASP31" 130988 NIL ASP31 (NIL NIL) -8 NIL NIL NIL) (-70 129747 129930 129969 "ASP30" 129974 NIL ASP30 (NIL NIL) -8 NIL NIL NIL) (-69 129482 129551 129627 "ASP29" 129702 NIL ASP29 (NIL NIL) -8 NIL NIL NIL) (-68 129247 129430 129469 "ASP28" 129474 NIL ASP28 (NIL NIL) -8 NIL NIL NIL) (-67 129012 129195 129234 "ASP27" 129239 NIL ASP27 (NIL NIL) -8 NIL NIL NIL) (-66 128096 128710 128821 "ASP24" 128932 NIL ASP24 (NIL NIL) -8 NIL NIL NIL) (-65 127172 127898 128010 "ASP20" 128015 NIL ASP20 (NIL NIL) -8 NIL NIL NIL) (-64 126260 126873 126983 "ASP1" 127093 NIL ASP1 (NIL NIL) -8 NIL NIL NIL) (-63 125202 125934 126053 "ASP19" 126172 NIL ASP19 (NIL NIL) -8 NIL NIL NIL) (-62 124939 125006 125082 "ASP12" 125157 NIL ASP12 (NIL NIL) -8 NIL NIL NIL) (-61 123791 124538 124682 "ASP10" 124826 NIL ASP10 (NIL NIL) -8 NIL NIL NIL) (-60 121642 123635 123726 "ARRAY2" 123731 NIL ARRAY2 (NIL T) -8 NIL NIL NIL) (-59 117407 121290 121404 "ARRAY1" 121559 NIL ARRAY1 (NIL T) -8 NIL NIL NIL) (-58 116439 116612 116833 "ARRAY12" 117230 NIL ARRAY12 (NIL T T) -7 NIL NIL NIL) (-57 110751 112669 112744 "ARR2CAT" 115374 NIL ARR2CAT (NIL T T T) -9 NIL 116132 NIL) (-56 108185 108929 109883 "ARR2CAT-" 109888 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL NIL) (-55 107502 107812 107937 "ARITY" 108078 T ARITY (NIL) -8 NIL NIL NIL) (-54 106278 106430 106729 "APPRULE" 107338 NIL APPRULE (NIL T T T) -7 NIL NIL NIL) (-53 105929 105977 106096 "APPLYORE" 106224 NIL APPLYORE (NIL T T T) -7 NIL NIL NIL) (-52 104876 105194 105389 "ANY" 105752 T ANY (NIL) -8 NIL NIL NIL) (-51 104154 104277 104434 "ANY1" 104750 NIL ANY1 (NIL T) -7 NIL NIL NIL) (-50 101684 102591 102918 "ANTISYM" 103878 NIL ANTISYM (NIL T NIL) -8 NIL NIL NIL) (-49 101176 101391 101487 "ANON" 101606 T ANON (NIL) -8 NIL NIL NIL) (-48 95425 99715 100169 "AN" 100740 T AN (NIL) -8 NIL NIL NIL) (-47 91323 92711 92762 "AMR" 93510 NIL AMR (NIL T T) -9 NIL 94110 NIL) (-46 90435 90656 91019 "AMR-" 91024 NIL AMR- (NIL T T T) -8 NIL NIL NIL) (-45 74874 90352 90413 "ALIST" 90418 NIL ALIST (NIL T T) -8 NIL NIL NIL) (-44 71676 74468 74637 "ALGSC" 74792 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-43 68231 68786 69393 "ALGPKG" 71116 NIL ALGPKG (NIL T T) -7 NIL NIL NIL) (-42 67508 67609 67793 "ALGMFACT" 68117 NIL ALGMFACT (NIL T T T) -7 NIL NIL NIL) (-41 63543 64122 64716 "ALGMANIP" 67092 NIL ALGMANIP (NIL T T) -7 NIL NIL NIL) (-40 54913 63169 63319 "ALGFF" 63476 NIL ALGFF (NIL T T T NIL) -8 NIL NIL NIL) (-39 54109 54240 54419 "ALGFACT" 54771 NIL ALGFACT (NIL T) -7 NIL NIL NIL) (-38 53050 53650 53688 "ALGEBRA" 53693 NIL ALGEBRA (NIL T) -9 NIL 53734 NIL) (-37 52768 52827 52959 "ALGEBRA-" 52964 NIL ALGEBRA- (NIL T T) -8 NIL NIL NIL) (-36 34861 50770 50822 "ALAGG" 50958 NIL ALAGG (NIL T T) -9 NIL 51119 NIL) (-35 34397 34510 34536 "AHYP" 34737 T AHYP (NIL) -9 NIL NIL NIL) (-34 33328 33576 33602 "AGG" 34101 T AGG (NIL) -9 NIL 34380 NIL) (-33 32762 32924 33138 "AGG-" 33143 NIL AGG- (NIL T) -8 NIL NIL NIL) (-32 30568 30991 31396 "AF" 32404 NIL AF (NIL T T) -7 NIL NIL NIL) (-31 30048 30293 30383 "ADDAST" 30496 T ADDAST (NIL) -8 NIL NIL NIL) (-30 29316 29575 29731 "ACPLOT" 29910 T ACPLOT (NIL) -8 NIL NIL NIL) (-29 18639 26443 26481 "ACFS" 27088 NIL ACFS (NIL T) -9 NIL 27327 NIL) (-28 16666 17156 17918 "ACFS-" 17923 NIL ACFS- (NIL T T) -8 NIL NIL NIL) (-27 12784 14713 14739 "ACF" 15618 T ACF (NIL) -9 NIL 16031 NIL) (-26 11488 11822 12315 "ACF-" 12320 NIL ACF- (NIL T) -8 NIL NIL NIL) (-25 11060 11255 11281 "ABELSG" 11373 T ABELSG (NIL) -9 NIL 11438 NIL) (-24 10927 10952 11018 "ABELSG-" 11023 NIL ABELSG- (NIL T) -8 NIL NIL NIL) (-23 10270 10557 10583 "ABELMON" 10753 T ABELMON (NIL) -9 NIL 10865 NIL) (-22 9934 10018 10156 "ABELMON-" 10161 NIL ABELMON- (NIL T) -8 NIL NIL NIL) (-21 9282 9654 9680 "ABELGRP" 9752 T ABELGRP (NIL) -9 NIL 9827 NIL) (-20 8745 8874 9090 "ABELGRP-" 9095 NIL ABELGRP- (NIL T) -8 NIL NIL NIL) (-19 4334 8084 8123 "A1AGG" 8128 NIL A1AGG (NIL T) -9 NIL 8168 NIL) (-18 30 1252 2814 "A1AGG-" 2819 NIL A1AGG- (NIL T T) -8 NIL NIL NIL)) \ No newline at end of file
+((-3 3220914 3220919 3220924 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-2 3220899 3220904 3220909 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1 3220884 3220889 3220894 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (0 3220869 3220874 3220879 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1292 3220012 3220744 3220821 "ZMOD" 3220826 NIL ZMOD (NIL NIL) -8 NIL NIL NIL) (-1291 3219122 3219286 3219495 "ZLINDEP" 3219844 NIL ZLINDEP (NIL T) -7 NIL NIL NIL) (-1290 3208422 3210190 3212162 "ZDSOLVE" 3217252 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL NIL) (-1289 3207668 3207809 3207998 "YSTREAM" 3208268 NIL YSTREAM (NIL T) -7 NIL NIL NIL) (-1288 3205442 3206969 3207173 "XRPOLY" 3207511 NIL XRPOLY (NIL T T) -8 NIL NIL NIL) (-1287 3201995 3203313 3203888 "XPR" 3204914 NIL XPR (NIL T T) -8 NIL NIL NIL) (-1286 3199716 3201326 3201530 "XPOLY" 3201826 NIL XPOLY (NIL T) -8 NIL NIL NIL) (-1285 3197369 3198737 3198792 "XPOLYC" 3199080 NIL XPOLYC (NIL T T) -9 NIL 3199193 NIL) (-1284 3193744 3195886 3196274 "XPBWPOLY" 3197027 NIL XPBWPOLY (NIL T T) -8 NIL NIL NIL) (-1283 3189439 3191734 3191776 "XF" 3192397 NIL XF (NIL T) -9 NIL 3192797 NIL) (-1282 3189060 3189148 3189317 "XF-" 3189322 NIL XF- (NIL T T) -8 NIL NIL NIL) (-1281 3184256 3185545 3185600 "XFALG" 3187772 NIL XFALG (NIL T T) -9 NIL 3188561 NIL) (-1280 3183389 3183493 3183698 "XEXPPKG" 3184148 NIL XEXPPKG (NIL T T T) -7 NIL NIL NIL) (-1279 3181498 3183239 3183335 "XDPOLY" 3183340 NIL XDPOLY (NIL T T) -8 NIL NIL NIL) (-1278 3180305 3180905 3180948 "XALG" 3180953 NIL XALG (NIL T) -9 NIL 3181064 NIL) (-1277 3173747 3178282 3178776 "WUTSET" 3179897 NIL WUTSET (NIL T T T T) -8 NIL NIL NIL) (-1276 3172003 3172799 3173122 "WP" 3173558 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL NIL) (-1275 3171605 3171825 3171895 "WHILEAST" 3171955 T WHILEAST (NIL) -8 NIL NIL NIL) (-1274 3171077 3171322 3171416 "WHEREAST" 3171533 T WHEREAST (NIL) -8 NIL NIL NIL) (-1273 3169963 3170161 3170456 "WFFINTBS" 3170874 NIL WFFINTBS (NIL T T T T) -7 NIL NIL NIL) (-1272 3167867 3168294 3168756 "WEIER" 3169535 NIL WEIER (NIL T) -7 NIL NIL NIL) (-1271 3166913 3167363 3167405 "VSPACE" 3167541 NIL VSPACE (NIL T) -9 NIL 3167615 NIL) (-1270 3166751 3166778 3166869 "VSPACE-" 3166874 NIL VSPACE- (NIL T T) -8 NIL NIL NIL) (-1269 3166559 3166602 3166670 "VOID" 3166705 T VOID (NIL) -8 NIL NIL NIL) (-1268 3164695 3165054 3165460 "VIEW" 3166175 T VIEW (NIL) -7 NIL NIL NIL) (-1267 3161119 3161758 3162495 "VIEWDEF" 3163980 T VIEWDEF (NIL) -7 NIL NIL NIL) (-1266 3150423 3152667 3154840 "VIEW3D" 3158968 T VIEW3D (NIL) -8 NIL NIL NIL) (-1265 3142674 3144334 3145913 "VIEW2D" 3148866 T VIEW2D (NIL) -8 NIL NIL NIL) (-1264 3138026 3142444 3142536 "VECTOR" 3142617 NIL VECTOR (NIL T) -8 NIL NIL NIL) (-1263 3136603 3136862 3137180 "VECTOR2" 3137756 NIL VECTOR2 (NIL T T) -7 NIL NIL NIL) (-1262 3130077 3134384 3134427 "VECTCAT" 3135422 NIL VECTCAT (NIL T) -9 NIL 3136009 NIL) (-1261 3129091 3129345 3129735 "VECTCAT-" 3129740 NIL VECTCAT- (NIL T T) -8 NIL NIL NIL) (-1260 3128545 3128742 3128862 "VARIABLE" 3129006 NIL VARIABLE (NIL NIL) -8 NIL NIL NIL) (-1259 3128478 3128483 3128513 "UTYPE" 3128518 T UTYPE (NIL) -9 NIL NIL NIL) (-1258 3127308 3127462 3127724 "UTSODETL" 3128304 NIL UTSODETL (NIL T T T T) -7 NIL NIL NIL) (-1257 3124748 3125208 3125732 "UTSODE" 3126849 NIL UTSODE (NIL T T) -7 NIL NIL NIL) (-1256 3116585 3122374 3122863 "UTS" 3124317 NIL UTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1255 3107459 3112826 3112869 "UTSCAT" 3113981 NIL UTSCAT (NIL T) -9 NIL 3114739 NIL) (-1254 3104806 3105529 3106518 "UTSCAT-" 3106523 NIL UTSCAT- (NIL T T) -8 NIL NIL NIL) (-1253 3104433 3104476 3104609 "UTS2" 3104757 NIL UTS2 (NIL T T T T) -7 NIL NIL NIL) (-1252 3098659 3101271 3101314 "URAGG" 3103384 NIL URAGG (NIL T) -9 NIL 3104107 NIL) (-1251 3095598 3096461 3097584 "URAGG-" 3097589 NIL URAGG- (NIL T T) -8 NIL NIL NIL) (-1250 3091307 3094233 3094698 "UPXSSING" 3095262 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL NIL) (-1249 3083373 3090554 3090827 "UPXS" 3091092 NIL UPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1248 3076446 3083277 3083349 "UPXSCONS" 3083354 NIL UPXSCONS (NIL T T) -8 NIL NIL NIL) (-1247 3066191 3072984 3073046 "UPXSCCA" 3073620 NIL UPXSCCA (NIL T T) -9 NIL 3073853 NIL) (-1246 3065829 3065914 3066088 "UPXSCCA-" 3066093 NIL UPXSCCA- (NIL T T T) -8 NIL NIL NIL) (-1245 3055426 3061992 3062035 "UPXSCAT" 3062683 NIL UPXSCAT (NIL T) -9 NIL 3063292 NIL) (-1244 3054856 3054935 3055114 "UPXS2" 3055341 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1243 3053510 3053763 3054114 "UPSQFREE" 3054599 NIL UPSQFREE (NIL T T) -7 NIL NIL NIL) (-1242 3046931 3049988 3050043 "UPSCAT" 3051204 NIL UPSCAT (NIL T T) -9 NIL 3051978 NIL) (-1241 3046135 3046342 3046669 "UPSCAT-" 3046674 NIL UPSCAT- (NIL T T T) -8 NIL NIL NIL) (-1240 3031790 3039558 3039601 "UPOLYC" 3041702 NIL UPOLYC (NIL T) -9 NIL 3042923 NIL) (-1239 3023118 3025544 3028691 "UPOLYC-" 3028696 NIL UPOLYC- (NIL T T) -8 NIL NIL NIL) (-1238 3022745 3022788 3022921 "UPOLYC2" 3023069 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL NIL) (-1237 3014556 3022428 3022557 "UP" 3022664 NIL UP (NIL NIL T) -8 NIL NIL NIL) (-1236 3013895 3014002 3014166 "UPMP" 3014445 NIL UPMP (NIL T T) -7 NIL NIL NIL) (-1235 3013448 3013529 3013668 "UPDIVP" 3013808 NIL UPDIVP (NIL T T) -7 NIL NIL NIL) (-1234 3012016 3012265 3012581 "UPDECOMP" 3013197 NIL UPDECOMP (NIL T T) -7 NIL NIL NIL) (-1233 3011251 3011363 3011548 "UPCDEN" 3011900 NIL UPCDEN (NIL T T T) -7 NIL NIL NIL) (-1232 3010770 3010839 3010988 "UP2" 3011176 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL NIL) (-1231 3009237 3009974 3010251 "UNISEG" 3010528 NIL UNISEG (NIL T) -8 NIL NIL NIL) (-1230 3008452 3008579 3008784 "UNISEG2" 3009080 NIL UNISEG2 (NIL T T) -7 NIL NIL NIL) (-1229 3007512 3007692 3007918 "UNIFACT" 3008268 NIL UNIFACT (NIL T) -7 NIL NIL NIL) (-1228 2991444 3006689 3006940 "ULS" 3007319 NIL ULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1227 2979442 2991348 2991420 "ULSCONS" 2991425 NIL ULSCONS (NIL T T) -8 NIL NIL NIL) (-1226 2961461 2973446 2973508 "ULSCCAT" 2974146 NIL ULSCCAT (NIL T T) -9 NIL 2974434 NIL) (-1225 2960511 2960756 2961144 "ULSCCAT-" 2961149 NIL ULSCCAT- (NIL T T T) -8 NIL NIL NIL) (-1224 2949885 2956365 2956408 "ULSCAT" 2957271 NIL ULSCAT (NIL T) -9 NIL 2958002 NIL) (-1223 2949315 2949394 2949573 "ULS2" 2949800 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1222 2948442 2948952 2949059 "UINT8" 2949170 T UINT8 (NIL) -8 NIL NIL 2949255) (-1221 2947568 2948078 2948185 "UINT64" 2948296 T UINT64 (NIL) -8 NIL NIL 2948381) (-1220 2946694 2947204 2947311 "UINT32" 2947422 T UINT32 (NIL) -8 NIL NIL 2947507) (-1219 2945820 2946330 2946437 "UINT16" 2946548 T UINT16 (NIL) -8 NIL NIL 2946633) (-1218 2944123 2945080 2945110 "UFD" 2945322 T UFD (NIL) -9 NIL 2945436 NIL) (-1217 2943917 2943963 2944058 "UFD-" 2944063 NIL UFD- (NIL T) -8 NIL NIL NIL) (-1216 2942999 2943182 2943398 "UDVO" 2943723 T UDVO (NIL) -7 NIL NIL NIL) (-1215 2940815 2941224 2941695 "UDPO" 2942563 NIL UDPO (NIL T) -7 NIL NIL NIL) (-1214 2940748 2940753 2940783 "TYPE" 2940788 T TYPE (NIL) -9 NIL NIL NIL) (-1213 2940508 2940703 2940734 "TYPEAST" 2940739 T TYPEAST (NIL) -8 NIL NIL NIL) (-1212 2939479 2939681 2939921 "TWOFACT" 2940302 NIL TWOFACT (NIL T) -7 NIL NIL NIL) (-1211 2938502 2938888 2939123 "TUPLE" 2939279 NIL TUPLE (NIL T) -8 NIL NIL NIL) (-1210 2936193 2936712 2937251 "TUBETOOL" 2937985 T TUBETOOL (NIL) -7 NIL NIL NIL) (-1209 2935042 2935247 2935488 "TUBE" 2935986 NIL TUBE (NIL T) -8 NIL NIL NIL) (-1208 2929771 2934014 2934297 "TS" 2934794 NIL TS (NIL T) -8 NIL NIL NIL) (-1207 2918411 2922530 2922627 "TSETCAT" 2927896 NIL TSETCAT (NIL T T T T) -9 NIL 2929427 NIL) (-1206 2913143 2914743 2916634 "TSETCAT-" 2916639 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1205 2907782 2908629 2909558 "TRMANIP" 2912279 NIL TRMANIP (NIL T T) -7 NIL NIL NIL) (-1204 2907223 2907286 2907449 "TRIMAT" 2907714 NIL TRIMAT (NIL T T T T) -7 NIL NIL NIL) (-1203 2905089 2905326 2905683 "TRIGMNIP" 2906972 NIL TRIGMNIP (NIL T T) -7 NIL NIL NIL) (-1202 2904609 2904722 2904752 "TRIGCAT" 2904965 T TRIGCAT (NIL) -9 NIL NIL NIL) (-1201 2904278 2904357 2904498 "TRIGCAT-" 2904503 NIL TRIGCAT- (NIL T) -8 NIL NIL NIL) (-1200 2901123 2903136 2903417 "TREE" 2904032 NIL TREE (NIL T) -8 NIL NIL NIL) (-1199 2900397 2900925 2900955 "TRANFUN" 2900990 T TRANFUN (NIL) -9 NIL 2901056 NIL) (-1198 2899676 2899867 2900147 "TRANFUN-" 2900152 NIL TRANFUN- (NIL T) -8 NIL NIL NIL) (-1197 2899480 2899512 2899573 "TOPSP" 2899637 T TOPSP (NIL) -7 NIL NIL NIL) (-1196 2898828 2898943 2899097 "TOOLSIGN" 2899361 NIL TOOLSIGN (NIL T) -7 NIL NIL NIL) (-1195 2897462 2898005 2898244 "TEXTFILE" 2898611 T TEXTFILE (NIL) -8 NIL NIL NIL) (-1194 2895374 2895915 2896344 "TEX" 2897055 T TEX (NIL) -8 NIL NIL NIL) (-1193 2895155 2895186 2895258 "TEX1" 2895337 NIL TEX1 (NIL T) -7 NIL NIL NIL) (-1192 2894803 2894866 2894956 "TEMUTL" 2895087 T TEMUTL (NIL) -7 NIL NIL NIL) (-1191 2892957 2893237 2893562 "TBCMPPK" 2894526 NIL TBCMPPK (NIL T T) -7 NIL NIL NIL) (-1190 2884734 2891117 2891173 "TBAGG" 2891573 NIL TBAGG (NIL T T) -9 NIL 2891784 NIL) (-1189 2879804 2881292 2883046 "TBAGG-" 2883051 NIL TBAGG- (NIL T T T) -8 NIL NIL NIL) (-1188 2879188 2879295 2879440 "TANEXP" 2879693 NIL TANEXP (NIL T) -7 NIL NIL NIL) (-1187 2872578 2879045 2879138 "TABLE" 2879143 NIL TABLE (NIL T T) -8 NIL NIL NIL) (-1186 2871990 2872089 2872227 "TABLEAU" 2872475 NIL TABLEAU (NIL T) -8 NIL NIL NIL) (-1185 2866598 2867818 2869066 "TABLBUMP" 2870776 NIL TABLBUMP (NIL T) -7 NIL NIL NIL) (-1184 2865820 2865967 2866148 "SYSTEM" 2866439 T SYSTEM (NIL) -8 NIL NIL NIL) (-1183 2862279 2862978 2863761 "SYSSOLP" 2865071 NIL SYSSOLP (NIL T) -7 NIL NIL NIL) (-1182 2861323 2861828 2861947 "SYSNNI" 2862133 NIL SYSNNI (NIL NIL) -8 NIL NIL 2862218) (-1181 2860630 2861089 2861168 "SYSINT" 2861228 NIL SYSINT (NIL NIL) -8 NIL NIL 2861273) (-1180 2856962 2857908 2858618 "SYNTAX" 2859942 T SYNTAX (NIL) -8 NIL NIL NIL) (-1179 2854120 2854722 2855354 "SYMTAB" 2856352 T SYMTAB (NIL) -8 NIL NIL NIL) (-1178 2849369 2850271 2851254 "SYMS" 2853159 T SYMS (NIL) -8 NIL NIL NIL) (-1177 2846604 2848827 2849057 "SYMPOLY" 2849174 NIL SYMPOLY (NIL T) -8 NIL NIL NIL) (-1176 2846121 2846196 2846319 "SYMFUNC" 2846516 NIL SYMFUNC (NIL T) -7 NIL NIL NIL) (-1175 2842140 2843433 2844246 "SYMBOL" 2845330 T SYMBOL (NIL) -8 NIL NIL NIL) (-1174 2835679 2837368 2839088 "SWITCH" 2840442 T SWITCH (NIL) -8 NIL NIL NIL) (-1173 2828913 2834500 2834803 "SUTS" 2835434 NIL SUTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1172 2820979 2828160 2828433 "SUPXS" 2828698 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1171 2812738 2820597 2820723 "SUP" 2820888 NIL SUP (NIL T) -8 NIL NIL NIL) (-1170 2811897 2812024 2812241 "SUPFRACF" 2812606 NIL SUPFRACF (NIL T T T T) -7 NIL NIL NIL) (-1169 2811518 2811577 2811690 "SUP2" 2811832 NIL SUP2 (NIL T T) -7 NIL NIL NIL) (-1168 2809966 2810240 2810596 "SUMRF" 2811217 NIL SUMRF (NIL T) -7 NIL NIL NIL) (-1167 2809301 2809367 2809559 "SUMFS" 2809887 NIL SUMFS (NIL T T) -7 NIL NIL NIL) (-1166 2793268 2808478 2808729 "SULS" 2809108 NIL SULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1165 2792870 2793090 2793160 "SUCHTAST" 2793220 T SUCHTAST (NIL) -8 NIL NIL NIL) (-1164 2792165 2792395 2792535 "SUCH" 2792778 NIL SUCH (NIL T T) -8 NIL NIL NIL) (-1163 2786031 2787071 2788030 "SUBSPACE" 2791253 NIL SUBSPACE (NIL NIL T) -8 NIL NIL NIL) (-1162 2785461 2785551 2785715 "SUBRESP" 2785919 NIL SUBRESP (NIL T T) -7 NIL NIL NIL) (-1161 2778826 2780126 2781437 "STTF" 2784197 NIL STTF (NIL T) -7 NIL NIL NIL) (-1160 2772999 2774119 2775266 "STTFNC" 2777726 NIL STTFNC (NIL T) -7 NIL NIL NIL) (-1159 2764309 2766181 2767975 "STTAYLOR" 2771240 NIL STTAYLOR (NIL T) -7 NIL NIL NIL) (-1158 2757439 2764173 2764256 "STRTBL" 2764261 NIL STRTBL (NIL T) -8 NIL NIL NIL) (-1157 2752803 2757394 2757425 "STRING" 2757430 T STRING (NIL) -8 NIL NIL NIL) (-1156 2747664 2752176 2752206 "STRICAT" 2752265 T STRICAT (NIL) -9 NIL 2752327 NIL) (-1155 2740417 2745283 2745894 "STREAM" 2747088 NIL STREAM (NIL T) -8 NIL NIL NIL) (-1154 2739927 2740004 2740148 "STREAM3" 2740334 NIL STREAM3 (NIL T T T) -7 NIL NIL NIL) (-1153 2738909 2739092 2739327 "STREAM2" 2739740 NIL STREAM2 (NIL T T) -7 NIL NIL NIL) (-1152 2738597 2738649 2738742 "STREAM1" 2738851 NIL STREAM1 (NIL T) -7 NIL NIL NIL) (-1151 2737613 2737794 2738025 "STINPROD" 2738413 NIL STINPROD (NIL T) -7 NIL NIL NIL) (-1150 2737165 2737375 2737405 "STEP" 2737485 T STEP (NIL) -9 NIL 2737563 NIL) (-1149 2730597 2737064 2737141 "STBL" 2737146 NIL STBL (NIL T T NIL) -8 NIL NIL NIL) (-1148 2725723 2729818 2729861 "STAGG" 2730014 NIL STAGG (NIL T) -9 NIL 2730103 NIL) (-1147 2723425 2724027 2724899 "STAGG-" 2724904 NIL STAGG- (NIL T T) -8 NIL NIL NIL) (-1146 2721572 2723195 2723287 "STACK" 2723368 NIL STACK (NIL T) -8 NIL NIL NIL) (-1145 2714267 2719713 2720169 "SREGSET" 2721202 NIL SREGSET (NIL T T T T) -8 NIL NIL NIL) (-1144 2706692 2708061 2709574 "SRDCMPK" 2712873 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1143 2699609 2704132 2704162 "SRAGG" 2705465 T SRAGG (NIL) -9 NIL 2706073 NIL) (-1142 2698626 2698881 2699260 "SRAGG-" 2699265 NIL SRAGG- (NIL T) -8 NIL NIL NIL) (-1141 2693086 2697573 2697994 "SQMATRIX" 2698252 NIL SQMATRIX (NIL NIL T) -8 NIL NIL NIL) (-1140 2686771 2689804 2690531 "SPLTREE" 2692431 NIL SPLTREE (NIL T T) -8 NIL NIL NIL) (-1139 2682734 2683427 2684073 "SPLNODE" 2686197 NIL SPLNODE (NIL T T) -8 NIL NIL NIL) (-1138 2681781 2682014 2682044 "SPFCAT" 2682488 T SPFCAT (NIL) -9 NIL NIL NIL) (-1137 2680518 2680728 2680992 "SPECOUT" 2681539 T SPECOUT (NIL) -7 NIL NIL NIL) (-1136 2672144 2673914 2673944 "SPADXPT" 2678336 T SPADXPT (NIL) -9 NIL 2680370 NIL) (-1135 2671905 2671945 2672014 "SPADPRSR" 2672097 T SPADPRSR (NIL) -7 NIL NIL NIL) (-1134 2670060 2671860 2671891 "SPADAST" 2671896 T SPADAST (NIL) -8 NIL NIL NIL) (-1133 2662005 2663778 2663821 "SPACEC" 2668194 NIL SPACEC (NIL T) -9 NIL 2670010 NIL) (-1132 2660135 2661937 2661986 "SPACE3" 2661991 NIL SPACE3 (NIL T) -8 NIL NIL NIL) (-1131 2658887 2659058 2659349 "SORTPAK" 2659940 NIL SORTPAK (NIL T T) -7 NIL NIL NIL) (-1130 2656979 2657282 2657694 "SOLVETRA" 2658551 NIL SOLVETRA (NIL T) -7 NIL NIL NIL) (-1129 2656029 2656251 2656512 "SOLVESER" 2656752 NIL SOLVESER (NIL T) -7 NIL NIL NIL) (-1128 2651333 2652221 2653216 "SOLVERAD" 2655081 NIL SOLVERAD (NIL T) -7 NIL NIL NIL) (-1127 2647148 2647757 2648486 "SOLVEFOR" 2650700 NIL SOLVEFOR (NIL T T) -7 NIL NIL NIL) (-1126 2641418 2646497 2646594 "SNTSCAT" 2646599 NIL SNTSCAT (NIL T T T T) -9 NIL 2646669 NIL) (-1125 2635524 2639741 2640132 "SMTS" 2641108 NIL SMTS (NIL T T T) -8 NIL NIL NIL) (-1124 2630208 2635412 2635489 "SMP" 2635494 NIL SMP (NIL T T) -8 NIL NIL NIL) (-1123 2628367 2628668 2629066 "SMITH" 2629905 NIL SMITH (NIL T T T T) -7 NIL NIL NIL) (-1122 2621080 2625276 2625379 "SMATCAT" 2626730 NIL SMATCAT (NIL NIL T T T) -9 NIL 2627280 NIL) (-1121 2618020 2618843 2620021 "SMATCAT-" 2620026 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL NIL) (-1120 2615686 2617256 2617299 "SKAGG" 2617560 NIL SKAGG (NIL T) -9 NIL 2617695 NIL) (-1119 2611997 2615102 2615297 "SINT" 2615484 T SINT (NIL) -8 NIL NIL 2615657) (-1118 2611769 2611807 2611873 "SIMPAN" 2611953 T SIMPAN (NIL) -7 NIL NIL NIL) (-1117 2611048 2611304 2611444 "SIG" 2611651 T SIG (NIL) -8 NIL NIL NIL) (-1116 2609886 2610107 2610382 "SIGNRF" 2610807 NIL SIGNRF (NIL T) -7 NIL NIL NIL) (-1115 2608719 2608870 2609154 "SIGNEF" 2609715 NIL SIGNEF (NIL T T) -7 NIL NIL NIL) (-1114 2608025 2608302 2608426 "SIGAST" 2608617 T SIGAST (NIL) -8 NIL NIL NIL) (-1113 2605714 2606169 2606675 "SHP" 2607566 NIL SHP (NIL T NIL) -7 NIL NIL NIL) (-1112 2599566 2605615 2605691 "SHDP" 2605696 NIL SHDP (NIL NIL NIL T) -8 NIL NIL NIL) (-1111 2599139 2599331 2599361 "SGROUP" 2599454 T SGROUP (NIL) -9 NIL 2599516 NIL) (-1110 2598997 2599023 2599096 "SGROUP-" 2599101 NIL SGROUP- (NIL T) -8 NIL NIL NIL) (-1109 2595832 2596530 2597253 "SGCF" 2598296 T SGCF (NIL) -7 NIL NIL NIL) (-1108 2590200 2595279 2595376 "SFRTCAT" 2595381 NIL SFRTCAT (NIL T T T T) -9 NIL 2595420 NIL) (-1107 2583621 2584639 2585775 "SFRGCD" 2589183 NIL SFRGCD (NIL T T T T T) -7 NIL NIL NIL) (-1106 2576747 2577820 2579006 "SFQCMPK" 2582554 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1105 2576367 2576456 2576567 "SFORT" 2576688 NIL SFORT (NIL T T) -8 NIL NIL NIL) (-1104 2575485 2576207 2576328 "SEXOF" 2576333 NIL SEXOF (NIL T T T T T) -8 NIL NIL NIL) (-1103 2574592 2575366 2575434 "SEX" 2575439 T SEX (NIL) -8 NIL NIL NIL) (-1102 2570105 2570820 2570915 "SEXCAT" 2573852 NIL SEXCAT (NIL T T T T T) -9 NIL 2574430 NIL) (-1101 2567258 2570039 2570087 "SET" 2570092 NIL SET (NIL T) -8 NIL NIL NIL) (-1100 2565482 2565971 2566276 "SETMN" 2566999 NIL SETMN (NIL NIL NIL) -8 NIL NIL NIL) (-1099 2564978 2565130 2565160 "SETCAT" 2565336 T SETCAT (NIL) -9 NIL 2565446 NIL) (-1098 2564670 2564748 2564878 "SETCAT-" 2564883 NIL SETCAT- (NIL T) -8 NIL NIL NIL) (-1097 2561031 2563131 2563174 "SETAGG" 2564044 NIL SETAGG (NIL T) -9 NIL 2564384 NIL) (-1096 2560489 2560605 2560842 "SETAGG-" 2560847 NIL SETAGG- (NIL T T) -8 NIL NIL NIL) (-1095 2559932 2560185 2560286 "SEQAST" 2560410 T SEQAST (NIL) -8 NIL NIL NIL) (-1094 2559131 2559425 2559486 "SEGXCAT" 2559772 NIL SEGXCAT (NIL T T) -9 NIL 2559892 NIL) (-1093 2558137 2558797 2558979 "SEG" 2558984 NIL SEG (NIL T) -8 NIL NIL NIL) (-1092 2557116 2557330 2557373 "SEGCAT" 2557895 NIL SEGCAT (NIL T) -9 NIL 2558116 NIL) (-1091 2556117 2556495 2556695 "SEGBIND" 2556951 NIL SEGBIND (NIL T) -8 NIL NIL NIL) (-1090 2555738 2555797 2555910 "SEGBIND2" 2556052 NIL SEGBIND2 (NIL T T) -7 NIL NIL NIL) (-1089 2555311 2555539 2555616 "SEGAST" 2555683 T SEGAST (NIL) -8 NIL NIL NIL) (-1088 2554530 2554656 2554860 "SEG2" 2555155 NIL SEG2 (NIL T T) -7 NIL NIL NIL) (-1087 2553940 2554465 2554512 "SDVAR" 2554517 NIL SDVAR (NIL T) -8 NIL NIL NIL) (-1086 2546467 2553710 2553840 "SDPOL" 2553845 NIL SDPOL (NIL T) -8 NIL NIL NIL) (-1085 2545060 2545326 2545645 "SCPKG" 2546182 NIL SCPKG (NIL T) -7 NIL NIL NIL) (-1084 2544224 2544396 2544588 "SCOPE" 2544890 T SCOPE (NIL) -8 NIL NIL NIL) (-1083 2543444 2543578 2543757 "SCACHE" 2544079 NIL SCACHE (NIL T) -7 NIL NIL NIL) (-1082 2543090 2543276 2543306 "SASTCAT" 2543311 T SASTCAT (NIL) -9 NIL 2543324 NIL) (-1081 2542577 2542925 2543001 "SAOS" 2543036 T SAOS (NIL) -8 NIL NIL NIL) (-1080 2542142 2542177 2542350 "SAERFFC" 2542536 NIL SAERFFC (NIL T T T) -7 NIL NIL NIL) (-1079 2536081 2542039 2542119 "SAE" 2542124 NIL SAE (NIL T T NIL) -8 NIL NIL NIL) (-1078 2535674 2535709 2535868 "SAEFACT" 2536040 NIL SAEFACT (NIL T T T) -7 NIL NIL NIL) (-1077 2533995 2534309 2534710 "RURPK" 2535340 NIL RURPK (NIL T NIL) -7 NIL NIL NIL) (-1076 2532632 2532938 2533243 "RULESET" 2533829 NIL RULESET (NIL T T T) -8 NIL NIL NIL) (-1075 2529855 2530385 2530843 "RULE" 2532313 NIL RULE (NIL T T T) -8 NIL NIL NIL) (-1074 2529467 2529649 2529732 "RULECOLD" 2529807 NIL RULECOLD (NIL NIL) -8 NIL NIL NIL) (-1073 2529257 2529285 2529356 "RTVALUE" 2529418 T RTVALUE (NIL) -8 NIL NIL NIL) (-1072 2528728 2528974 2529068 "RSTRCAST" 2529185 T RSTRCAST (NIL) -8 NIL NIL NIL) (-1071 2523576 2524371 2525291 "RSETGCD" 2527927 NIL RSETGCD (NIL T T T T T) -7 NIL NIL NIL) (-1070 2512806 2517885 2517982 "RSETCAT" 2522101 NIL RSETCAT (NIL T T T T) -9 NIL 2523198 NIL) (-1069 2510733 2511272 2512096 "RSETCAT-" 2512101 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1068 2503118 2504495 2506015 "RSDCMPK" 2509332 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1067 2501097 2501564 2501638 "RRCC" 2502724 NIL RRCC (NIL T T) -9 NIL 2503068 NIL) (-1066 2500448 2500622 2500901 "RRCC-" 2500906 NIL RRCC- (NIL T T T) -8 NIL NIL NIL) (-1065 2499891 2500144 2500245 "RPTAST" 2500369 T RPTAST (NIL) -8 NIL NIL NIL) (-1064 2473742 2483099 2483166 "RPOLCAT" 2493830 NIL RPOLCAT (NIL T T T) -9 NIL 2496989 NIL) (-1063 2465240 2467580 2470702 "RPOLCAT-" 2470707 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL NIL) (-1062 2456171 2463451 2463933 "ROUTINE" 2464780 T ROUTINE (NIL) -8 NIL NIL NIL) (-1061 2452969 2455797 2455937 "ROMAN" 2456053 T ROMAN (NIL) -8 NIL NIL NIL) (-1060 2451213 2451829 2452089 "ROIRC" 2452774 NIL ROIRC (NIL T T) -8 NIL NIL NIL) (-1059 2447445 2449729 2449759 "RNS" 2450063 T RNS (NIL) -9 NIL 2450337 NIL) (-1058 2445954 2446337 2446871 "RNS-" 2446946 NIL RNS- (NIL T) -8 NIL NIL NIL) (-1057 2445357 2445765 2445795 "RNG" 2445800 T RNG (NIL) -9 NIL 2445821 NIL) (-1056 2444756 2445144 2445187 "RMODULE" 2445192 NIL RMODULE (NIL T) -9 NIL 2445219 NIL) (-1055 2443592 2443686 2444022 "RMCAT2" 2444657 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL NIL) (-1054 2440442 2442938 2443235 "RMATRIX" 2443354 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL NIL) (-1053 2433269 2435529 2435644 "RMATCAT" 2439003 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2439985 NIL) (-1052 2432644 2432791 2433098 "RMATCAT-" 2433103 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL NIL) (-1051 2432045 2432266 2432309 "RLINSET" 2432503 NIL RLINSET (NIL T) -9 NIL 2432594 NIL) (-1050 2431612 2431687 2431815 "RINTERP" 2431964 NIL RINTERP (NIL NIL T) -7 NIL NIL NIL) (-1049 2430670 2431224 2431254 "RING" 2431310 T RING (NIL) -9 NIL 2431402 NIL) (-1048 2430462 2430506 2430603 "RING-" 2430608 NIL RING- (NIL T) -8 NIL NIL NIL) (-1047 2429303 2429540 2429798 "RIDIST" 2430226 T RIDIST (NIL) -7 NIL NIL NIL) (-1046 2420592 2428771 2428977 "RGCHAIN" 2429151 NIL RGCHAIN (NIL T NIL) -8 NIL NIL NIL) (-1045 2419942 2420348 2420389 "RGBCSPC" 2420447 NIL RGBCSPC (NIL T) -9 NIL 2420499 NIL) (-1044 2419100 2419481 2419522 "RGBCMDL" 2419754 NIL RGBCMDL (NIL T) -9 NIL 2419868 NIL) (-1043 2416094 2416708 2417378 "RF" 2418464 NIL RF (NIL T) -7 NIL NIL NIL) (-1042 2415740 2415803 2415906 "RFFACTOR" 2416025 NIL RFFACTOR (NIL T) -7 NIL NIL NIL) (-1041 2415465 2415500 2415597 "RFFACT" 2415699 NIL RFFACT (NIL T) -7 NIL NIL NIL) (-1040 2413582 2413946 2414328 "RFDIST" 2415105 T RFDIST (NIL) -7 NIL NIL NIL) (-1039 2413035 2413127 2413290 "RETSOL" 2413484 NIL RETSOL (NIL T T) -7 NIL NIL NIL) (-1038 2412671 2412751 2412794 "RETRACT" 2412927 NIL RETRACT (NIL T) -9 NIL 2413014 NIL) (-1037 2412520 2412545 2412632 "RETRACT-" 2412637 NIL RETRACT- (NIL T T) -8 NIL NIL NIL) (-1036 2412122 2412342 2412412 "RETAST" 2412472 T RETAST (NIL) -8 NIL NIL NIL) (-1035 2404860 2411775 2411902 "RESULT" 2412017 T RESULT (NIL) -8 NIL NIL NIL) (-1034 2403451 2404129 2404328 "RESRING" 2404763 NIL RESRING (NIL T T T T NIL) -8 NIL NIL NIL) (-1033 2403087 2403136 2403234 "RESLATC" 2403388 NIL RESLATC (NIL T) -7 NIL NIL NIL) (-1032 2402792 2402827 2402934 "REPSQ" 2403046 NIL REPSQ (NIL T) -7 NIL NIL NIL) (-1031 2400214 2400794 2401396 "REP" 2402212 T REP (NIL) -7 NIL NIL NIL) (-1030 2399911 2399946 2400057 "REPDB" 2400173 NIL REPDB (NIL T) -7 NIL NIL NIL) (-1029 2393811 2395200 2396423 "REP2" 2398723 NIL REP2 (NIL T) -7 NIL NIL NIL) (-1028 2390188 2390869 2391677 "REP1" 2393038 NIL REP1 (NIL T) -7 NIL NIL NIL) (-1027 2382884 2388329 2388785 "REGSET" 2389818 NIL REGSET (NIL T T T T) -8 NIL NIL NIL) (-1026 2381649 2382032 2382282 "REF" 2382669 NIL REF (NIL T) -8 NIL NIL NIL) (-1025 2381026 2381129 2381296 "REDORDER" 2381533 NIL REDORDER (NIL T T) -7 NIL NIL NIL) (-1024 2376994 2380239 2380466 "RECLOS" 2380854 NIL RECLOS (NIL T) -8 NIL NIL NIL) (-1023 2376046 2376227 2376442 "REALSOLV" 2376801 T REALSOLV (NIL) -7 NIL NIL NIL) (-1022 2375892 2375933 2375963 "REAL" 2375968 T REAL (NIL) -9 NIL 2376003 NIL) (-1021 2372375 2373177 2374061 "REAL0Q" 2375057 NIL REAL0Q (NIL T) -7 NIL NIL NIL) (-1020 2367976 2368964 2370025 "REAL0" 2371356 NIL REAL0 (NIL T) -7 NIL NIL NIL) (-1019 2367447 2367693 2367787 "RDUCEAST" 2367904 T RDUCEAST (NIL) -8 NIL NIL NIL) (-1018 2366852 2366924 2367131 "RDIV" 2367369 NIL RDIV (NIL T T T T T) -7 NIL NIL NIL) (-1017 2365920 2366094 2366307 "RDIST" 2366674 NIL RDIST (NIL T) -7 NIL NIL NIL) (-1016 2364517 2364804 2365176 "RDETRS" 2365628 NIL RDETRS (NIL T T) -7 NIL NIL NIL) (-1015 2362329 2362783 2363321 "RDETR" 2364059 NIL RDETR (NIL T T) -7 NIL NIL NIL) (-1014 2360954 2361232 2361629 "RDEEFS" 2362045 NIL RDEEFS (NIL T T) -7 NIL NIL NIL) (-1013 2359463 2359769 2360194 "RDEEF" 2360642 NIL RDEEF (NIL T T) -7 NIL NIL NIL) (-1012 2353524 2356444 2356474 "RCFIELD" 2357769 T RCFIELD (NIL) -9 NIL 2358500 NIL) (-1011 2351588 2352092 2352788 "RCFIELD-" 2352863 NIL RCFIELD- (NIL T) -8 NIL NIL NIL) (-1010 2347857 2349689 2349732 "RCAGG" 2350816 NIL RCAGG (NIL T) -9 NIL 2351281 NIL) (-1009 2347485 2347579 2347742 "RCAGG-" 2347747 NIL RCAGG- (NIL T T) -8 NIL NIL NIL) (-1008 2346820 2346932 2347097 "RATRET" 2347369 NIL RATRET (NIL T) -7 NIL NIL NIL) (-1007 2346373 2346440 2346561 "RATFACT" 2346748 NIL RATFACT (NIL T) -7 NIL NIL NIL) (-1006 2345681 2345801 2345953 "RANDSRC" 2346243 T RANDSRC (NIL) -7 NIL NIL NIL) (-1005 2345415 2345459 2345532 "RADUTIL" 2345630 T RADUTIL (NIL) -7 NIL NIL NIL) (-1004 2338531 2344248 2344558 "RADIX" 2345139 NIL RADIX (NIL NIL) -8 NIL NIL NIL) (-1003 2330150 2338373 2338503 "RADFF" 2338508 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL NIL) (-1002 2329797 2329872 2329902 "RADCAT" 2330062 T RADCAT (NIL) -9 NIL NIL NIL) (-1001 2329579 2329627 2329727 "RADCAT-" 2329732 NIL RADCAT- (NIL T) -8 NIL NIL NIL) (-1000 2327679 2329351 2329442 "QUEUE" 2329523 NIL QUEUE (NIL T) -8 NIL NIL NIL) (-999 2324220 2327616 2327661 "QUAT" 2327666 NIL QUAT (NIL T) -8 NIL NIL NIL) (-998 2323858 2323901 2324028 "QUATCT2" 2324171 NIL QUATCT2 (NIL T T T T) -7 NIL NIL NIL) (-997 2317320 2320665 2320705 "QUATCAT" 2321485 NIL QUATCAT (NIL T) -9 NIL 2322251 NIL) (-996 2313464 2314501 2315888 "QUATCAT-" 2315982 NIL QUATCAT- (NIL T T) -8 NIL NIL NIL) (-995 2310937 2312548 2312589 "QUAGG" 2312964 NIL QUAGG (NIL T) -9 NIL 2313139 NIL) (-994 2310542 2310762 2310830 "QQUTAST" 2310889 T QQUTAST (NIL) -8 NIL NIL NIL) (-993 2309440 2309940 2310112 "QFORM" 2310414 NIL QFORM (NIL NIL T) -8 NIL NIL NIL) (-992 2300445 2305684 2305724 "QFCAT" 2306382 NIL QFCAT (NIL T) -9 NIL 2307383 NIL) (-991 2296017 2297218 2298809 "QFCAT-" 2298903 NIL QFCAT- (NIL T T) -8 NIL NIL NIL) (-990 2295655 2295698 2295825 "QFCAT2" 2295968 NIL QFCAT2 (NIL T T T T) -7 NIL NIL NIL) (-989 2295115 2295225 2295355 "QEQUAT" 2295545 T QEQUAT (NIL) -8 NIL NIL NIL) (-988 2288261 2289334 2290518 "QCMPACK" 2294048 NIL QCMPACK (NIL T T T T T) -7 NIL NIL NIL) (-987 2285810 2286258 2286686 "QALGSET" 2287916 NIL QALGSET (NIL T T T T) -8 NIL NIL NIL) (-986 2285055 2285229 2285461 "QALGSET2" 2285630 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL NIL) (-985 2283745 2283969 2284286 "PWFFINTB" 2284828 NIL PWFFINTB (NIL T T T T) -7 NIL NIL NIL) (-984 2281927 2282095 2282449 "PUSHVAR" 2283559 NIL PUSHVAR (NIL T T T T) -7 NIL NIL NIL) (-983 2277845 2278899 2278940 "PTRANFN" 2280824 NIL PTRANFN (NIL T) -9 NIL NIL NIL) (-982 2276247 2276538 2276860 "PTPACK" 2277556 NIL PTPACK (NIL T) -7 NIL NIL NIL) (-981 2275879 2275936 2276045 "PTFUNC2" 2276184 NIL PTFUNC2 (NIL T T) -7 NIL NIL NIL) (-980 2270356 2274751 2274792 "PTCAT" 2275088 NIL PTCAT (NIL T) -9 NIL 2275241 NIL) (-979 2270014 2270049 2270173 "PSQFR" 2270315 NIL PSQFR (NIL T T T T) -7 NIL NIL NIL) (-978 2268609 2268907 2269241 "PSEUDLIN" 2269712 NIL PSEUDLIN (NIL T) -7 NIL NIL NIL) (-977 2255372 2257743 2260067 "PSETPK" 2266369 NIL PSETPK (NIL T T T T) -7 NIL NIL NIL) (-976 2248390 2251130 2251226 "PSETCAT" 2254247 NIL PSETCAT (NIL T T T T) -9 NIL 2255061 NIL) (-975 2246226 2246860 2247681 "PSETCAT-" 2247686 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-974 2245575 2245740 2245768 "PSCURVE" 2246036 T PSCURVE (NIL) -9 NIL 2246203 NIL) (-973 2241573 2243089 2243154 "PSCAT" 2243998 NIL PSCAT (NIL T T T) -9 NIL 2244238 NIL) (-972 2240636 2240852 2241252 "PSCAT-" 2241257 NIL PSCAT- (NIL T T T T) -8 NIL NIL NIL) (-971 2239341 2240001 2240206 "PRTITION" 2240451 T PRTITION (NIL) -8 NIL NIL NIL) (-970 2238816 2239062 2239154 "PRTDAST" 2239269 T PRTDAST (NIL) -8 NIL NIL NIL) (-969 2227905 2230120 2232308 "PRS" 2236678 NIL PRS (NIL T T) -7 NIL NIL NIL) (-968 2225716 2227255 2227295 "PRQAGG" 2227478 NIL PRQAGG (NIL T) -9 NIL 2227580 NIL) (-967 2224920 2225225 2225253 "PROPLOG" 2225500 T PROPLOG (NIL) -9 NIL 2225666 NIL) (-966 2223350 2223871 2224128 "PROPFRML" 2224696 NIL PROPFRML (NIL T) -8 NIL NIL NIL) (-965 2222819 2222926 2223054 "PROPERTY" 2223242 T PROPERTY (NIL) -8 NIL NIL NIL) (-964 2216877 2220985 2221805 "PRODUCT" 2222045 NIL PRODUCT (NIL T T) -8 NIL NIL NIL) (-963 2214155 2216335 2216569 "PR" 2216688 NIL PR (NIL T T) -8 NIL NIL NIL) (-962 2213951 2213983 2214042 "PRINT" 2214116 T PRINT (NIL) -7 NIL NIL NIL) (-961 2213291 2213408 2213560 "PRIMES" 2213831 NIL PRIMES (NIL T) -7 NIL NIL NIL) (-960 2211356 2211757 2212223 "PRIMELT" 2212870 NIL PRIMELT (NIL T) -7 NIL NIL NIL) (-959 2211085 2211134 2211162 "PRIMCAT" 2211286 T PRIMCAT (NIL) -9 NIL NIL NIL) (-958 2207200 2211023 2211068 "PRIMARR" 2211073 NIL PRIMARR (NIL T) -8 NIL NIL NIL) (-957 2206207 2206385 2206613 "PRIMARR2" 2207018 NIL PRIMARR2 (NIL T T) -7 NIL NIL NIL) (-956 2205850 2205906 2206017 "PREASSOC" 2206145 NIL PREASSOC (NIL T T) -7 NIL NIL NIL) (-955 2205325 2205458 2205486 "PPCURVE" 2205691 T PPCURVE (NIL) -9 NIL 2205827 NIL) (-954 2204920 2205120 2205203 "PORTNUM" 2205262 T PORTNUM (NIL) -8 NIL NIL NIL) (-953 2202279 2202678 2203270 "POLYROOT" 2204501 NIL POLYROOT (NIL T T T T T) -7 NIL NIL NIL) (-952 2196461 2201883 2202043 "POLY" 2202152 NIL POLY (NIL T) -8 NIL NIL NIL) (-951 2195844 2195902 2196136 "POLYLIFT" 2196397 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL NIL) (-950 2192119 2192568 2193197 "POLYCATQ" 2195389 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL NIL) (-949 2178831 2183959 2184024 "POLYCAT" 2187538 NIL POLYCAT (NIL T T T) -9 NIL 2189416 NIL) (-948 2172280 2174142 2176526 "POLYCAT-" 2176531 NIL POLYCAT- (NIL T T T T) -8 NIL NIL NIL) (-947 2171867 2171935 2172055 "POLY2UP" 2172206 NIL POLY2UP (NIL NIL T) -7 NIL NIL NIL) (-946 2171499 2171556 2171665 "POLY2" 2171804 NIL POLY2 (NIL T T) -7 NIL NIL NIL) (-945 2170184 2170423 2170699 "POLUTIL" 2171273 NIL POLUTIL (NIL T T) -7 NIL NIL NIL) (-944 2168539 2168816 2169147 "POLTOPOL" 2169906 NIL POLTOPOL (NIL NIL T) -7 NIL NIL NIL) (-943 2164004 2168475 2168521 "POINT" 2168526 NIL POINT (NIL T) -8 NIL NIL NIL) (-942 2162191 2162548 2162923 "PNTHEORY" 2163649 T PNTHEORY (NIL) -7 NIL NIL NIL) (-941 2160649 2160946 2161345 "PMTOOLS" 2161889 NIL PMTOOLS (NIL T T T) -7 NIL NIL NIL) (-940 2160242 2160320 2160437 "PMSYM" 2160565 NIL PMSYM (NIL T) -7 NIL NIL NIL) (-939 2159752 2159821 2159995 "PMQFCAT" 2160167 NIL PMQFCAT (NIL T T T) -7 NIL NIL NIL) (-938 2159107 2159217 2159373 "PMPRED" 2159629 NIL PMPRED (NIL T) -7 NIL NIL NIL) (-937 2158500 2158586 2158748 "PMPREDFS" 2159008 NIL PMPREDFS (NIL T T T) -7 NIL NIL NIL) (-936 2157164 2157372 2157750 "PMPLCAT" 2158262 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL NIL) (-935 2156696 2156775 2156927 "PMLSAGG" 2157079 NIL PMLSAGG (NIL T T T) -7 NIL NIL NIL) (-934 2156169 2156245 2156427 "PMKERNEL" 2156614 NIL PMKERNEL (NIL T T) -7 NIL NIL NIL) (-933 2155786 2155861 2155974 "PMINS" 2156088 NIL PMINS (NIL T) -7 NIL NIL NIL) (-932 2155228 2155297 2155506 "PMFS" 2155711 NIL PMFS (NIL T T T) -7 NIL NIL NIL) (-931 2154456 2154574 2154779 "PMDOWN" 2155105 NIL PMDOWN (NIL T T T) -7 NIL NIL NIL) (-930 2153623 2153781 2153962 "PMASS" 2154295 T PMASS (NIL) -7 NIL NIL NIL) (-929 2152896 2153006 2153169 "PMASSFS" 2153510 NIL PMASSFS (NIL T T) -7 NIL NIL NIL) (-928 2152551 2152619 2152713 "PLOTTOOL" 2152822 T PLOTTOOL (NIL) -7 NIL NIL NIL) (-927 2147158 2148362 2149510 "PLOT" 2151423 T PLOT (NIL) -8 NIL NIL NIL) (-926 2142962 2144006 2144927 "PLOT3D" 2146257 T PLOT3D (NIL) -8 NIL NIL NIL) (-925 2141874 2142051 2142286 "PLOT1" 2142766 NIL PLOT1 (NIL T) -7 NIL NIL NIL) (-924 2117263 2121940 2126791 "PLEQN" 2137140 NIL PLEQN (NIL T T T T) -7 NIL NIL NIL) (-923 2116581 2116703 2116883 "PINTERP" 2117128 NIL PINTERP (NIL NIL T) -7 NIL NIL NIL) (-922 2116274 2116321 2116424 "PINTERPA" 2116528 NIL PINTERPA (NIL T T) -7 NIL NIL NIL) (-921 2115495 2116043 2116130 "PI" 2116170 T PI (NIL) -8 NIL NIL 2116237) (-920 2113792 2114767 2114795 "PID" 2114977 T PID (NIL) -9 NIL 2115111 NIL) (-919 2113543 2113580 2113655 "PICOERCE" 2113749 NIL PICOERCE (NIL T) -7 NIL NIL NIL) (-918 2112863 2113002 2113178 "PGROEB" 2113399 NIL PGROEB (NIL T) -7 NIL NIL NIL) (-917 2108450 2109264 2110169 "PGE" 2111978 T PGE (NIL) -7 NIL NIL NIL) (-916 2106573 2106820 2107186 "PGCD" 2108167 NIL PGCD (NIL T T T T) -7 NIL NIL NIL) (-915 2105911 2106014 2106175 "PFRPAC" 2106457 NIL PFRPAC (NIL T) -7 NIL NIL NIL) (-914 2102551 2104459 2104812 "PFR" 2105590 NIL PFR (NIL T) -8 NIL NIL NIL) (-913 2100940 2101184 2101509 "PFOTOOLS" 2102298 NIL PFOTOOLS (NIL T T) -7 NIL NIL NIL) (-912 2099473 2099712 2100063 "PFOQ" 2100697 NIL PFOQ (NIL T T T) -7 NIL NIL NIL) (-911 2097974 2098186 2098542 "PFO" 2099257 NIL PFO (NIL T T T T T) -7 NIL NIL NIL) (-910 2094527 2097863 2097932 "PF" 2097937 NIL PF (NIL NIL) -8 NIL NIL NIL) (-909 2091861 2093132 2093160 "PFECAT" 2093745 T PFECAT (NIL) -9 NIL 2094129 NIL) (-908 2091306 2091460 2091674 "PFECAT-" 2091679 NIL PFECAT- (NIL T) -8 NIL NIL NIL) (-907 2089909 2090161 2090462 "PFBRU" 2091055 NIL PFBRU (NIL T T) -7 NIL NIL NIL) (-906 2087775 2088127 2088559 "PFBR" 2089560 NIL PFBR (NIL T T T T) -7 NIL NIL NIL) (-905 2083657 2085151 2085827 "PERM" 2087132 NIL PERM (NIL T) -8 NIL NIL NIL) (-904 2078891 2079864 2080734 "PERMGRP" 2082820 NIL PERMGRP (NIL T) -8 NIL NIL NIL) (-903 2076997 2077954 2077995 "PERMCAT" 2078441 NIL PERMCAT (NIL T) -9 NIL 2078746 NIL) (-902 2076650 2076691 2076815 "PERMAN" 2076950 NIL PERMAN (NIL NIL T) -7 NIL NIL NIL) (-901 2074138 2076315 2076437 "PENDTREE" 2076561 NIL PENDTREE (NIL T) -8 NIL NIL NIL) (-900 2072162 2072930 2072971 "PDRING" 2073628 NIL PDRING (NIL T) -9 NIL 2073914 NIL) (-899 2071265 2071483 2071845 "PDRING-" 2071850 NIL PDRING- (NIL T T) -8 NIL NIL NIL) (-898 2068480 2069258 2069926 "PDEPROB" 2070617 T PDEPROB (NIL) -8 NIL NIL NIL) (-897 2066025 2066529 2067084 "PDEPACK" 2067945 T PDEPACK (NIL) -7 NIL NIL NIL) (-896 2064937 2065127 2065378 "PDECOMP" 2065824 NIL PDECOMP (NIL T T) -7 NIL NIL NIL) (-895 2062516 2063359 2063387 "PDECAT" 2064174 T PDECAT (NIL) -9 NIL 2064887 NIL) (-894 2062267 2062300 2062390 "PCOMP" 2062477 NIL PCOMP (NIL T T) -7 NIL NIL NIL) (-893 2060445 2061068 2061365 "PBWLB" 2061996 NIL PBWLB (NIL T) -8 NIL NIL NIL) (-892 2052918 2054518 2055856 "PATTERN" 2059128 NIL PATTERN (NIL T) -8 NIL NIL NIL) (-891 2052550 2052607 2052716 "PATTERN2" 2052855 NIL PATTERN2 (NIL T T) -7 NIL NIL NIL) (-890 2050307 2050695 2051152 "PATTERN1" 2052139 NIL PATTERN1 (NIL T T) -7 NIL NIL NIL) (-889 2047675 2048256 2048737 "PATRES" 2049872 NIL PATRES (NIL T T) -8 NIL NIL NIL) (-888 2047239 2047306 2047438 "PATRES2" 2047602 NIL PATRES2 (NIL T T T) -7 NIL NIL NIL) (-887 2045122 2045527 2045934 "PATMATCH" 2046906 NIL PATMATCH (NIL T T T) -7 NIL NIL NIL) (-886 2044632 2044841 2044882 "PATMAB" 2044989 NIL PATMAB (NIL T) -9 NIL 2045072 NIL) (-885 2043150 2043486 2043744 "PATLRES" 2044437 NIL PATLRES (NIL T T T) -8 NIL NIL NIL) (-884 2042696 2042819 2042860 "PATAB" 2042865 NIL PATAB (NIL T) -9 NIL 2043037 NIL) (-883 2040177 2040709 2041282 "PARTPERM" 2042143 T PARTPERM (NIL) -7 NIL NIL NIL) (-882 2039798 2039861 2039963 "PARSURF" 2040108 NIL PARSURF (NIL T) -8 NIL NIL NIL) (-881 2039430 2039487 2039596 "PARSU2" 2039735 NIL PARSU2 (NIL T T) -7 NIL NIL NIL) (-880 2039194 2039234 2039301 "PARSER" 2039383 T PARSER (NIL) -7 NIL NIL NIL) (-879 2038815 2038878 2038980 "PARSCURV" 2039125 NIL PARSCURV (NIL T) -8 NIL NIL NIL) (-878 2038447 2038504 2038613 "PARSC2" 2038752 NIL PARSC2 (NIL T T) -7 NIL NIL NIL) (-877 2038086 2038144 2038241 "PARPCURV" 2038383 NIL PARPCURV (NIL T) -8 NIL NIL NIL) (-876 2037718 2037775 2037884 "PARPC2" 2038023 NIL PARPC2 (NIL T T) -7 NIL NIL NIL) (-875 2037238 2037324 2037443 "PAN2EXPR" 2037619 T PAN2EXPR (NIL) -7 NIL NIL NIL) (-874 2036015 2036359 2036587 "PALETTE" 2037030 T PALETTE (NIL) -8 NIL NIL NIL) (-873 2034408 2035020 2035380 "PAIR" 2035701 NIL PAIR (NIL T T) -8 NIL NIL NIL) (-872 2028278 2033667 2033861 "PADICRC" 2034263 NIL PADICRC (NIL NIL T) -8 NIL NIL NIL) (-871 2021507 2027624 2027808 "PADICRAT" 2028126 NIL PADICRAT (NIL NIL) -8 NIL NIL NIL) (-870 2019822 2021444 2021489 "PADIC" 2021494 NIL PADIC (NIL NIL) -8 NIL NIL NIL) (-869 2016932 2018496 2018536 "PADICCT" 2019117 NIL PADICCT (NIL NIL) -9 NIL 2019399 NIL) (-868 2015889 2016089 2016357 "PADEPAC" 2016719 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL NIL) (-867 2015101 2015234 2015440 "PADE" 2015751 NIL PADE (NIL T T T) -7 NIL NIL NIL) (-866 2013488 2014309 2014589 "OWP" 2014905 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-865 2012981 2013194 2013291 "OVERSET" 2013411 T OVERSET (NIL) -8 NIL NIL NIL) (-864 2012027 2012586 2012758 "OVAR" 2012849 NIL OVAR (NIL NIL) -8 NIL NIL NIL) (-863 2011291 2011412 2011573 "OUT" 2011886 T OUT (NIL) -7 NIL NIL NIL) (-862 2000163 2002400 2004600 "OUTFORM" 2009111 T OUTFORM (NIL) -8 NIL NIL NIL) (-861 1999499 1999760 1999887 "OUTBFILE" 2000056 T OUTBFILE (NIL) -8 NIL NIL NIL) (-860 1998806 1998971 1998999 "OUTBCON" 1999317 T OUTBCON (NIL) -9 NIL 1999483 NIL) (-859 1998407 1998519 1998676 "OUTBCON-" 1998681 NIL OUTBCON- (NIL T) -8 NIL NIL NIL) (-858 1997787 1998136 1998225 "OSI" 1998338 T OSI (NIL) -8 NIL NIL NIL) (-857 1997317 1997655 1997683 "OSGROUP" 1997688 T OSGROUP (NIL) -9 NIL 1997710 NIL) (-856 1996062 1996289 1996574 "ORTHPOL" 1997064 NIL ORTHPOL (NIL T) -7 NIL NIL NIL) (-855 1993613 1995897 1996018 "OREUP" 1996023 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL NIL) (-854 1991016 1993304 1993431 "ORESUP" 1993555 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL NIL) (-853 1988544 1989044 1989605 "OREPCTO" 1990505 NIL OREPCTO (NIL T T) -7 NIL NIL NIL) (-852 1982230 1984431 1984472 "OREPCAT" 1986820 NIL OREPCAT (NIL T) -9 NIL 1987924 NIL) (-851 1979377 1980159 1981217 "OREPCAT-" 1981222 NIL OREPCAT- (NIL T T) -8 NIL NIL NIL) (-850 1978528 1978826 1978854 "ORDSET" 1979163 T ORDSET (NIL) -9 NIL 1979327 NIL) (-849 1977959 1978107 1978331 "ORDSET-" 1978336 NIL ORDSET- (NIL T) -8 NIL NIL NIL) (-848 1976524 1977315 1977343 "ORDRING" 1977545 T ORDRING (NIL) -9 NIL 1977670 NIL) (-847 1976169 1976263 1976407 "ORDRING-" 1976412 NIL ORDRING- (NIL T) -8 NIL NIL NIL) (-846 1975549 1976012 1976040 "ORDMON" 1976045 T ORDMON (NIL) -9 NIL 1976066 NIL) (-845 1974711 1974858 1975053 "ORDFUNS" 1975398 NIL ORDFUNS (NIL NIL T) -7 NIL NIL NIL) (-844 1974049 1974468 1974496 "ORDFIN" 1974561 T ORDFIN (NIL) -9 NIL 1974635 NIL) (-843 1970608 1972635 1973044 "ORDCOMP" 1973673 NIL ORDCOMP (NIL T) -8 NIL NIL NIL) (-842 1969874 1970001 1970187 "ORDCOMP2" 1970468 NIL ORDCOMP2 (NIL T T) -7 NIL NIL NIL) (-841 1966455 1967365 1968179 "OPTPROB" 1969080 T OPTPROB (NIL) -8 NIL NIL NIL) (-840 1963257 1963896 1964600 "OPTPACK" 1965771 T OPTPACK (NIL) -7 NIL NIL NIL) (-839 1960944 1961710 1961738 "OPTCAT" 1962557 T OPTCAT (NIL) -9 NIL 1963207 NIL) (-838 1960328 1960621 1960726 "OPSIG" 1960859 T OPSIG (NIL) -8 NIL NIL NIL) (-837 1960096 1960135 1960201 "OPQUERY" 1960282 T OPQUERY (NIL) -7 NIL NIL NIL) (-836 1957227 1958407 1958911 "OP" 1959625 NIL OP (NIL T) -8 NIL NIL NIL) (-835 1956601 1956827 1956868 "OPERCAT" 1957080 NIL OPERCAT (NIL T) -9 NIL 1957177 NIL) (-834 1956356 1956412 1956529 "OPERCAT-" 1956534 NIL OPERCAT- (NIL T T) -8 NIL NIL NIL) (-833 1953169 1955153 1955522 "ONECOMP" 1956020 NIL ONECOMP (NIL T) -8 NIL NIL NIL) (-832 1952474 1952589 1952763 "ONECOMP2" 1953041 NIL ONECOMP2 (NIL T T) -7 NIL NIL NIL) (-831 1951893 1951999 1952129 "OMSERVER" 1952364 T OMSERVER (NIL) -7 NIL NIL NIL) (-830 1948755 1951333 1951373 "OMSAGG" 1951434 NIL OMSAGG (NIL T) -9 NIL 1951498 NIL) (-829 1947378 1947641 1947923 "OMPKG" 1948493 T OMPKG (NIL) -7 NIL NIL NIL) (-828 1946808 1946911 1946939 "OM" 1947238 T OM (NIL) -9 NIL NIL NIL) (-827 1945355 1946357 1946526 "OMLO" 1946689 NIL OMLO (NIL T T) -8 NIL NIL NIL) (-826 1944315 1944462 1944682 "OMEXPR" 1945181 NIL OMEXPR (NIL T) -7 NIL NIL NIL) (-825 1943606 1943861 1943997 "OMERR" 1944199 T OMERR (NIL) -8 NIL NIL NIL) (-824 1942757 1943027 1943187 "OMERRK" 1943466 T OMERRK (NIL) -8 NIL NIL NIL) (-823 1942208 1942434 1942542 "OMENC" 1942669 T OMENC (NIL) -8 NIL NIL NIL) (-822 1936103 1937288 1938459 "OMDEV" 1941057 T OMDEV (NIL) -8 NIL NIL NIL) (-821 1935172 1935343 1935537 "OMCONN" 1935929 T OMCONN (NIL) -8 NIL NIL NIL) (-820 1933693 1934669 1934697 "OINTDOM" 1934702 T OINTDOM (NIL) -9 NIL 1934723 NIL) (-819 1929472 1930683 1931399 "OFMONOID" 1933009 NIL OFMONOID (NIL T) -8 NIL NIL NIL) (-818 1928883 1929409 1929454 "ODVAR" 1929459 NIL ODVAR (NIL T) -8 NIL NIL NIL) (-817 1926306 1928628 1928783 "ODR" 1928788 NIL ODR (NIL T T NIL) -8 NIL NIL NIL) (-816 1918887 1926082 1926208 "ODPOL" 1926213 NIL ODPOL (NIL T) -8 NIL NIL NIL) (-815 1912709 1918759 1918864 "ODP" 1918869 NIL ODP (NIL NIL T NIL) -8 NIL NIL NIL) (-814 1911475 1911690 1911965 "ODETOOLS" 1912483 NIL ODETOOLS (NIL T T) -7 NIL NIL NIL) (-813 1908442 1909100 1909816 "ODESYS" 1910808 NIL ODESYS (NIL T T) -7 NIL NIL NIL) (-812 1903324 1904232 1905257 "ODERTRIC" 1907517 NIL ODERTRIC (NIL T T) -7 NIL NIL NIL) (-811 1902750 1902832 1903026 "ODERED" 1903236 NIL ODERED (NIL T T T T T) -7 NIL NIL NIL) (-810 1899638 1900186 1900863 "ODERAT" 1902173 NIL ODERAT (NIL T T) -7 NIL NIL NIL) (-809 1896595 1897062 1897659 "ODEPRRIC" 1899167 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL NIL) (-808 1894538 1895134 1895620 "ODEPROB" 1896129 T ODEPROB (NIL) -8 NIL NIL NIL) (-807 1891058 1891543 1892190 "ODEPRIM" 1894017 NIL ODEPRIM (NIL T T T T) -7 NIL NIL NIL) (-806 1890307 1890409 1890669 "ODEPAL" 1890950 NIL ODEPAL (NIL T T T T) -7 NIL NIL NIL) (-805 1886469 1887260 1888124 "ODEPACK" 1889463 T ODEPACK (NIL) -7 NIL NIL NIL) (-804 1885530 1885637 1885859 "ODEINT" 1886358 NIL ODEINT (NIL T T) -7 NIL NIL NIL) (-803 1879631 1881056 1882503 "ODEIFTBL" 1884103 T ODEIFTBL (NIL) -8 NIL NIL NIL) (-802 1875029 1875815 1876767 "ODEEF" 1878790 NIL ODEEF (NIL T T) -7 NIL NIL NIL) (-801 1874378 1874467 1874690 "ODECONST" 1874934 NIL ODECONST (NIL T T T) -7 NIL NIL NIL) (-800 1872503 1873164 1873192 "ODECAT" 1873797 T ODECAT (NIL) -9 NIL 1874328 NIL) (-799 1869375 1872215 1872334 "OCT" 1872416 NIL OCT (NIL T) -8 NIL NIL NIL) (-798 1869013 1869056 1869183 "OCTCT2" 1869326 NIL OCTCT2 (NIL T T T T) -7 NIL NIL NIL) (-797 1863662 1866097 1866137 "OC" 1867234 NIL OC (NIL T) -9 NIL 1868092 NIL) (-796 1860889 1861637 1862627 "OC-" 1862721 NIL OC- (NIL T T) -8 NIL NIL NIL) (-795 1860241 1860709 1860737 "OCAMON" 1860742 T OCAMON (NIL) -9 NIL 1860763 NIL) (-794 1859772 1860113 1860141 "OASGP" 1860146 T OASGP (NIL) -9 NIL 1860166 NIL) (-793 1859033 1859522 1859550 "OAMONS" 1859590 T OAMONS (NIL) -9 NIL 1859633 NIL) (-792 1858447 1858880 1858908 "OAMON" 1858913 T OAMON (NIL) -9 NIL 1858933 NIL) (-791 1857705 1858223 1858251 "OAGROUP" 1858256 T OAGROUP (NIL) -9 NIL 1858276 NIL) (-790 1857395 1857445 1857533 "NUMTUBE" 1857649 NIL NUMTUBE (NIL T) -7 NIL NIL NIL) (-789 1850968 1852486 1854022 "NUMQUAD" 1855879 T NUMQUAD (NIL) -7 NIL NIL NIL) (-788 1846724 1847712 1848737 "NUMODE" 1849963 T NUMODE (NIL) -7 NIL NIL NIL) (-787 1844079 1844959 1844987 "NUMINT" 1845910 T NUMINT (NIL) -9 NIL 1846674 NIL) (-786 1843027 1843224 1843442 "NUMFMT" 1843881 T NUMFMT (NIL) -7 NIL NIL NIL) (-785 1829386 1832331 1834863 "NUMERIC" 1840534 NIL NUMERIC (NIL T) -7 NIL NIL NIL) (-784 1823756 1828835 1828930 "NTSCAT" 1828935 NIL NTSCAT (NIL T T T T) -9 NIL 1828974 NIL) (-783 1822950 1823115 1823308 "NTPOLFN" 1823595 NIL NTPOLFN (NIL T) -7 NIL NIL NIL) (-782 1811027 1819775 1820587 "NSUP" 1822171 NIL NSUP (NIL T) -8 NIL NIL NIL) (-781 1810659 1810716 1810825 "NSUP2" 1810964 NIL NSUP2 (NIL T T) -7 NIL NIL NIL) (-780 1800887 1810433 1810566 "NSMP" 1810571 NIL NSMP (NIL T T) -8 NIL NIL NIL) (-779 1799319 1799620 1799977 "NREP" 1800575 NIL NREP (NIL T) -7 NIL NIL NIL) (-778 1797910 1798162 1798520 "NPCOEF" 1799062 NIL NPCOEF (NIL T T T T T) -7 NIL NIL NIL) (-777 1796976 1797091 1797307 "NORMRETR" 1797791 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL NIL) (-776 1795017 1795307 1795716 "NORMPK" 1796684 NIL NORMPK (NIL T T T T T) -7 NIL NIL NIL) (-775 1794702 1794730 1794854 "NORMMA" 1794983 NIL NORMMA (NIL T T T T) -7 NIL NIL NIL) (-774 1794502 1794659 1794688 "NONE" 1794693 T NONE (NIL) -8 NIL NIL NIL) (-773 1794291 1794320 1794389 "NONE1" 1794466 NIL NONE1 (NIL T) -7 NIL NIL NIL) (-772 1793788 1793850 1794029 "NODE1" 1794223 NIL NODE1 (NIL T T) -7 NIL NIL NIL) (-771 1792073 1792924 1793179 "NNI" 1793526 T NNI (NIL) -8 NIL NIL 1793761) (-770 1790493 1790806 1791170 "NLINSOL" 1791741 NIL NLINSOL (NIL T) -7 NIL NIL NIL) (-769 1786734 1787729 1788628 "NIPROB" 1789614 T NIPROB (NIL) -8 NIL NIL NIL) (-768 1785491 1785725 1786027 "NFINTBAS" 1786496 NIL NFINTBAS (NIL T T) -7 NIL NIL NIL) (-767 1784665 1785141 1785182 "NETCLT" 1785354 NIL NETCLT (NIL T) -9 NIL 1785436 NIL) (-766 1783373 1783604 1783885 "NCODIV" 1784433 NIL NCODIV (NIL T T) -7 NIL NIL NIL) (-765 1783135 1783172 1783247 "NCNTFRAC" 1783330 NIL NCNTFRAC (NIL T) -7 NIL NIL NIL) (-764 1781315 1781679 1782099 "NCEP" 1782760 NIL NCEP (NIL T) -7 NIL NIL NIL) (-763 1780166 1780939 1780967 "NASRING" 1781077 T NASRING (NIL) -9 NIL 1781157 NIL) (-762 1779961 1780005 1780099 "NASRING-" 1780104 NIL NASRING- (NIL T) -8 NIL NIL NIL) (-761 1779068 1779593 1779621 "NARNG" 1779738 T NARNG (NIL) -9 NIL 1779829 NIL) (-760 1778760 1778827 1778961 "NARNG-" 1778966 NIL NARNG- (NIL T) -8 NIL NIL NIL) (-759 1777639 1777846 1778081 "NAGSP" 1778545 T NAGSP (NIL) -7 NIL NIL NIL) (-758 1768911 1770595 1772268 "NAGS" 1775986 T NAGS (NIL) -7 NIL NIL NIL) (-757 1767459 1767767 1768098 "NAGF07" 1768600 T NAGF07 (NIL) -7 NIL NIL NIL) (-756 1761997 1763288 1764595 "NAGF04" 1766172 T NAGF04 (NIL) -7 NIL NIL NIL) (-755 1754965 1756579 1758212 "NAGF02" 1760384 T NAGF02 (NIL) -7 NIL NIL NIL) (-754 1750189 1751289 1752406 "NAGF01" 1753868 T NAGF01 (NIL) -7 NIL NIL NIL) (-753 1743817 1745383 1746968 "NAGE04" 1748624 T NAGE04 (NIL) -7 NIL NIL NIL) (-752 1734986 1737107 1739237 "NAGE02" 1741707 T NAGE02 (NIL) -7 NIL NIL NIL) (-751 1730939 1731886 1732850 "NAGE01" 1734042 T NAGE01 (NIL) -7 NIL NIL NIL) (-750 1728734 1729268 1729826 "NAGD03" 1730401 T NAGD03 (NIL) -7 NIL NIL NIL) (-749 1720484 1722412 1724366 "NAGD02" 1726800 T NAGD02 (NIL) -7 NIL NIL NIL) (-748 1714295 1715720 1717160 "NAGD01" 1719064 T NAGD01 (NIL) -7 NIL NIL NIL) (-747 1710504 1711326 1712163 "NAGC06" 1713478 T NAGC06 (NIL) -7 NIL NIL NIL) (-746 1708969 1709301 1709657 "NAGC05" 1710168 T NAGC05 (NIL) -7 NIL NIL NIL) (-745 1708345 1708464 1708608 "NAGC02" 1708845 T NAGC02 (NIL) -7 NIL NIL NIL) (-744 1707304 1707887 1707927 "NAALG" 1708006 NIL NAALG (NIL T) -9 NIL 1708067 NIL) (-743 1707139 1707168 1707258 "NAALG-" 1707263 NIL NAALG- (NIL T T) -8 NIL NIL NIL) (-742 1701089 1702197 1703384 "MULTSQFR" 1706035 NIL MULTSQFR (NIL T T T T) -7 NIL NIL NIL) (-741 1700408 1700483 1700667 "MULTFACT" 1701001 NIL MULTFACT (NIL T T T T) -7 NIL NIL NIL) (-740 1693132 1697045 1697098 "MTSCAT" 1698168 NIL MTSCAT (NIL T T) -9 NIL 1698683 NIL) (-739 1692844 1692898 1692990 "MTHING" 1693072 NIL MTHING (NIL T) -7 NIL NIL NIL) (-738 1692636 1692669 1692729 "MSYSCMD" 1692804 T MSYSCMD (NIL) -7 NIL NIL NIL) (-737 1688718 1691391 1691711 "MSET" 1692349 NIL MSET (NIL T) -8 NIL NIL NIL) (-736 1685787 1688279 1688320 "MSETAGG" 1688325 NIL MSETAGG (NIL T) -9 NIL 1688359 NIL) (-735 1681628 1683166 1683911 "MRING" 1685087 NIL MRING (NIL T T) -8 NIL NIL NIL) (-734 1681194 1681261 1681392 "MRF2" 1681555 NIL MRF2 (NIL T T T) -7 NIL NIL NIL) (-733 1680812 1680847 1680991 "MRATFAC" 1681153 NIL MRATFAC (NIL T T T T) -7 NIL NIL NIL) (-732 1678424 1678719 1679150 "MPRFF" 1680517 NIL MPRFF (NIL T T T T) -7 NIL NIL NIL) (-731 1672721 1678278 1678375 "MPOLY" 1678380 NIL MPOLY (NIL NIL T) -8 NIL NIL NIL) (-730 1672211 1672246 1672454 "MPCPF" 1672680 NIL MPCPF (NIL T T T T) -7 NIL NIL NIL) (-729 1671725 1671768 1671952 "MPC3" 1672162 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL NIL) (-728 1670920 1671001 1671222 "MPC2" 1671640 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL NIL) (-727 1669221 1669558 1669948 "MONOTOOL" 1670580 NIL MONOTOOL (NIL T T) -7 NIL NIL NIL) (-726 1668446 1668763 1668791 "MONOID" 1669010 T MONOID (NIL) -9 NIL 1669157 NIL) (-725 1667992 1668111 1668292 "MONOID-" 1668297 NIL MONOID- (NIL T) -8 NIL NIL NIL) (-724 1658467 1664418 1664477 "MONOGEN" 1665151 NIL MONOGEN (NIL T T) -9 NIL 1665607 NIL) (-723 1655685 1656420 1657420 "MONOGEN-" 1657539 NIL MONOGEN- (NIL T T T) -8 NIL NIL NIL) (-722 1654518 1654964 1654992 "MONADWU" 1655384 T MONADWU (NIL) -9 NIL 1655622 NIL) (-721 1653890 1654049 1654297 "MONADWU-" 1654302 NIL MONADWU- (NIL T) -8 NIL NIL NIL) (-720 1653249 1653493 1653521 "MONAD" 1653728 T MONAD (NIL) -9 NIL 1653840 NIL) (-719 1652934 1653012 1653144 "MONAD-" 1653149 NIL MONAD- (NIL T) -8 NIL NIL NIL) (-718 1651223 1651847 1652126 "MOEBIUS" 1652687 NIL MOEBIUS (NIL T) -8 NIL NIL NIL) (-717 1650501 1650905 1650945 "MODULE" 1650950 NIL MODULE (NIL T) -9 NIL 1650989 NIL) (-716 1650069 1650165 1650355 "MODULE-" 1650360 NIL MODULE- (NIL T T) -8 NIL NIL NIL) (-715 1647749 1648433 1648760 "MODRING" 1649893 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-714 1644693 1645854 1646375 "MODOP" 1647278 NIL MODOP (NIL T T) -8 NIL NIL NIL) (-713 1643281 1643760 1644037 "MODMONOM" 1644556 NIL MODMONOM (NIL T T NIL) -8 NIL NIL NIL) (-712 1633322 1641572 1641986 "MODMON" 1642918 NIL MODMON (NIL T T) -8 NIL NIL NIL) (-711 1630478 1632166 1632442 "MODFIELD" 1633197 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-710 1629455 1629759 1629949 "MMLFORM" 1630308 T MMLFORM (NIL) -8 NIL NIL NIL) (-709 1628981 1629024 1629203 "MMAP" 1629406 NIL MMAP (NIL T T T T T T) -7 NIL NIL NIL) (-708 1627060 1627827 1627868 "MLO" 1628291 NIL MLO (NIL T) -9 NIL 1628533 NIL) (-707 1624426 1624942 1625544 "MLIFT" 1626541 NIL MLIFT (NIL T T T T) -7 NIL NIL NIL) (-706 1623817 1623901 1624055 "MKUCFUNC" 1624337 NIL MKUCFUNC (NIL T T T) -7 NIL NIL NIL) (-705 1623416 1623486 1623609 "MKRECORD" 1623740 NIL MKRECORD (NIL T T) -7 NIL NIL NIL) (-704 1622463 1622625 1622853 "MKFUNC" 1623227 NIL MKFUNC (NIL T) -7 NIL NIL NIL) (-703 1621851 1621955 1622111 "MKFLCFN" 1622346 NIL MKFLCFN (NIL T) -7 NIL NIL NIL) (-702 1621128 1621230 1621415 "MKBCFUNC" 1621744 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL NIL) (-701 1617835 1620682 1620818 "MINT" 1621012 T MINT (NIL) -8 NIL NIL NIL) (-700 1616647 1616890 1617167 "MHROWRED" 1617590 NIL MHROWRED (NIL T) -7 NIL NIL NIL) (-699 1612026 1615182 1615587 "MFLOAT" 1616262 T MFLOAT (NIL) -8 NIL NIL NIL) (-698 1611383 1611459 1611630 "MFINFACT" 1611938 NIL MFINFACT (NIL T T T T) -7 NIL NIL NIL) (-697 1607698 1608546 1609430 "MESH" 1610519 T MESH (NIL) -7 NIL NIL NIL) (-696 1606088 1606400 1606753 "MDDFACT" 1607385 NIL MDDFACT (NIL T) -7 NIL NIL NIL) (-695 1602883 1605247 1605288 "MDAGG" 1605543 NIL MDAGG (NIL T) -9 NIL 1605686 NIL) (-694 1592623 1602176 1602383 "MCMPLX" 1602696 T MCMPLX (NIL) -8 NIL NIL NIL) (-693 1591764 1591910 1592110 "MCDEN" 1592472 NIL MCDEN (NIL T T) -7 NIL NIL NIL) (-692 1589654 1589924 1590304 "MCALCFN" 1591494 NIL MCALCFN (NIL T T T T) -7 NIL NIL NIL) (-691 1588579 1588819 1589052 "MAYBE" 1589460 NIL MAYBE (NIL T) -8 NIL NIL NIL) (-690 1586191 1586714 1587276 "MATSTOR" 1588050 NIL MATSTOR (NIL T) -7 NIL NIL NIL) (-689 1582148 1585563 1585811 "MATRIX" 1585976 NIL MATRIX (NIL T) -8 NIL NIL NIL) (-688 1577912 1578621 1579357 "MATLIN" 1581505 NIL MATLIN (NIL T T T T) -7 NIL NIL NIL) (-687 1568018 1571204 1571281 "MATCAT" 1576161 NIL MATCAT (NIL T T T) -9 NIL 1577578 NIL) (-686 1564374 1565395 1566751 "MATCAT-" 1566756 NIL MATCAT- (NIL T T T T) -8 NIL NIL NIL) (-685 1562968 1563121 1563454 "MATCAT2" 1564209 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-684 1561080 1561404 1561788 "MAPPKG3" 1562643 NIL MAPPKG3 (NIL T T T) -7 NIL NIL NIL) (-683 1560061 1560234 1560456 "MAPPKG2" 1560904 NIL MAPPKG2 (NIL T T) -7 NIL NIL NIL) (-682 1558560 1558844 1559171 "MAPPKG1" 1559767 NIL MAPPKG1 (NIL T) -7 NIL NIL NIL) (-681 1557639 1557966 1558143 "MAPPAST" 1558403 T MAPPAST (NIL) -8 NIL NIL NIL) (-680 1557250 1557308 1557431 "MAPHACK3" 1557575 NIL MAPHACK3 (NIL T T T) -7 NIL NIL NIL) (-679 1556842 1556903 1557017 "MAPHACK2" 1557182 NIL MAPHACK2 (NIL T T) -7 NIL NIL NIL) (-678 1556279 1556383 1556525 "MAPHACK1" 1556733 NIL MAPHACK1 (NIL T) -7 NIL NIL NIL) (-677 1554358 1554979 1555283 "MAGMA" 1556007 NIL MAGMA (NIL T) -8 NIL NIL NIL) (-676 1553837 1554082 1554173 "MACROAST" 1554287 T MACROAST (NIL) -8 NIL NIL NIL) (-675 1550255 1552076 1552537 "M3D" 1553409 NIL M3D (NIL T) -8 NIL NIL NIL) (-674 1544361 1548624 1548665 "LZSTAGG" 1549447 NIL LZSTAGG (NIL T) -9 NIL 1549742 NIL) (-673 1540318 1541492 1542949 "LZSTAGG-" 1542954 NIL LZSTAGG- (NIL T T) -8 NIL NIL NIL) (-672 1537405 1538209 1538696 "LWORD" 1539863 NIL LWORD (NIL T) -8 NIL NIL NIL) (-671 1536981 1537209 1537284 "LSTAST" 1537350 T LSTAST (NIL) -8 NIL NIL NIL) (-670 1530147 1536752 1536886 "LSQM" 1536891 NIL LSQM (NIL NIL T) -8 NIL NIL NIL) (-669 1529371 1529510 1529738 "LSPP" 1530002 NIL LSPP (NIL T T T T) -7 NIL NIL NIL) (-668 1527183 1527484 1527940 "LSMP" 1529060 NIL LSMP (NIL T T T T) -7 NIL NIL NIL) (-667 1523962 1524636 1525366 "LSMP1" 1526485 NIL LSMP1 (NIL T) -7 NIL NIL NIL) (-666 1517839 1523129 1523170 "LSAGG" 1523232 NIL LSAGG (NIL T) -9 NIL 1523310 NIL) (-665 1514534 1515458 1516671 "LSAGG-" 1516676 NIL LSAGG- (NIL T T) -8 NIL NIL NIL) (-664 1512133 1513678 1513927 "LPOLY" 1514329 NIL LPOLY (NIL T T) -8 NIL NIL NIL) (-663 1511715 1511800 1511923 "LPEFRAC" 1512042 NIL LPEFRAC (NIL T) -7 NIL NIL NIL) (-662 1510036 1510809 1511062 "LO" 1511547 NIL LO (NIL T T T) -8 NIL NIL NIL) (-661 1509688 1509800 1509828 "LOGIC" 1509939 T LOGIC (NIL) -9 NIL 1510020 NIL) (-660 1509550 1509573 1509644 "LOGIC-" 1509649 NIL LOGIC- (NIL T) -8 NIL NIL NIL) (-659 1508743 1508883 1509076 "LODOOPS" 1509406 NIL LODOOPS (NIL T T) -7 NIL NIL NIL) (-658 1506166 1508659 1508725 "LODO" 1508730 NIL LODO (NIL T NIL) -8 NIL NIL NIL) (-657 1504704 1504939 1505292 "LODOF" 1505913 NIL LODOF (NIL T T) -7 NIL NIL NIL) (-656 1500922 1503353 1503394 "LODOCAT" 1503832 NIL LODOCAT (NIL T) -9 NIL 1504043 NIL) (-655 1500655 1500713 1500840 "LODOCAT-" 1500845 NIL LODOCAT- (NIL T T) -8 NIL NIL NIL) (-654 1497975 1500496 1500614 "LODO2" 1500619 NIL LODO2 (NIL T T) -8 NIL NIL NIL) (-653 1495410 1497912 1497957 "LODO1" 1497962 NIL LODO1 (NIL T) -8 NIL NIL NIL) (-652 1494291 1494456 1494761 "LODEEF" 1495233 NIL LODEEF (NIL T T T) -7 NIL NIL NIL) (-651 1489530 1492421 1492462 "LNAGG" 1493409 NIL LNAGG (NIL T) -9 NIL 1493853 NIL) (-650 1488677 1488891 1489233 "LNAGG-" 1489238 NIL LNAGG- (NIL T T) -8 NIL NIL NIL) (-649 1484813 1485602 1486241 "LMOPS" 1488092 NIL LMOPS (NIL T T NIL) -8 NIL NIL NIL) (-648 1484216 1484604 1484645 "LMODULE" 1484650 NIL LMODULE (NIL T) -9 NIL 1484676 NIL) (-647 1481414 1483861 1483984 "LMDICT" 1484126 NIL LMDICT (NIL T) -8 NIL NIL NIL) (-646 1480820 1481041 1481082 "LLINSET" 1481273 NIL LLINSET (NIL T) -9 NIL 1481364 NIL) (-645 1480519 1480728 1480788 "LITERAL" 1480793 NIL LITERAL (NIL T) -8 NIL NIL NIL) (-644 1473702 1479465 1479763 "LIST" 1480254 NIL LIST (NIL T) -8 NIL NIL NIL) (-643 1473227 1473301 1473440 "LIST3" 1473622 NIL LIST3 (NIL T T T) -7 NIL NIL NIL) (-642 1472234 1472412 1472640 "LIST2" 1473045 NIL LIST2 (NIL T T) -7 NIL NIL NIL) (-641 1470368 1470680 1471079 "LIST2MAP" 1471881 NIL LIST2MAP (NIL T T) -7 NIL NIL NIL) (-640 1469964 1470201 1470242 "LINSET" 1470247 NIL LINSET (NIL T) -9 NIL 1470281 NIL) (-639 1468625 1469295 1469336 "LINEXP" 1469591 NIL LINEXP (NIL T) -9 NIL 1469740 NIL) (-638 1467272 1467532 1467829 "LINDEP" 1468377 NIL LINDEP (NIL T T) -7 NIL NIL NIL) (-637 1464039 1464758 1465535 "LIMITRF" 1466527 NIL LIMITRF (NIL T) -7 NIL NIL NIL) (-636 1462342 1462638 1463047 "LIMITPS" 1463734 NIL LIMITPS (NIL T T) -7 NIL NIL NIL) (-635 1456770 1461853 1462081 "LIE" 1462163 NIL LIE (NIL T T) -8 NIL NIL NIL) (-634 1455718 1456187 1456227 "LIECAT" 1456367 NIL LIECAT (NIL T) -9 NIL 1456518 NIL) (-633 1455559 1455586 1455674 "LIECAT-" 1455679 NIL LIECAT- (NIL T T) -8 NIL NIL NIL) (-632 1448055 1455008 1455173 "LIB" 1455414 T LIB (NIL) -8 NIL NIL NIL) (-631 1443690 1444573 1445508 "LGROBP" 1447172 NIL LGROBP (NIL NIL T) -7 NIL NIL NIL) (-630 1441688 1441962 1442312 "LF" 1443411 NIL LF (NIL T T) -7 NIL NIL NIL) (-629 1440528 1441220 1441248 "LFCAT" 1441455 T LFCAT (NIL) -9 NIL 1441594 NIL) (-628 1437430 1438060 1438748 "LEXTRIPK" 1439892 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL NIL) (-627 1434174 1435000 1435503 "LEXP" 1437010 NIL LEXP (NIL T T NIL) -8 NIL NIL NIL) (-626 1433650 1433895 1433987 "LETAST" 1434102 T LETAST (NIL) -8 NIL NIL NIL) (-625 1432048 1432361 1432762 "LEADCDET" 1433332 NIL LEADCDET (NIL T T T T) -7 NIL NIL NIL) (-624 1431238 1431312 1431541 "LAZM3PK" 1431969 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL NIL) (-623 1426155 1429315 1429853 "LAUPOL" 1430750 NIL LAUPOL (NIL T T) -8 NIL NIL NIL) (-622 1425734 1425778 1425939 "LAPLACE" 1426105 NIL LAPLACE (NIL T T) -7 NIL NIL NIL) (-621 1423673 1424835 1425086 "LA" 1425567 NIL LA (NIL T T T) -8 NIL NIL NIL) (-620 1422667 1423251 1423292 "LALG" 1423354 NIL LALG (NIL T) -9 NIL 1423413 NIL) (-619 1422381 1422440 1422576 "LALG-" 1422581 NIL LALG- (NIL T T) -8 NIL NIL NIL) (-618 1422216 1422240 1422281 "KVTFROM" 1422343 NIL KVTFROM (NIL T) -9 NIL NIL NIL) (-617 1421139 1421583 1421768 "KTVLOGIC" 1422051 T KTVLOGIC (NIL) -8 NIL NIL NIL) (-616 1420974 1420998 1421039 "KRCFROM" 1421101 NIL KRCFROM (NIL T) -9 NIL NIL NIL) (-615 1419878 1420065 1420364 "KOVACIC" 1420774 NIL KOVACIC (NIL T T) -7 NIL NIL NIL) (-614 1419713 1419737 1419778 "KONVERT" 1419840 NIL KONVERT (NIL T) -9 NIL NIL NIL) (-613 1419548 1419572 1419613 "KOERCE" 1419675 NIL KOERCE (NIL T) -9 NIL NIL NIL) (-612 1417378 1418141 1418518 "KERNEL" 1419204 NIL KERNEL (NIL T) -8 NIL NIL NIL) (-611 1416874 1416955 1417087 "KERNEL2" 1417292 NIL KERNEL2 (NIL T T) -7 NIL NIL NIL) (-610 1410644 1415413 1415467 "KDAGG" 1415844 NIL KDAGG (NIL T T) -9 NIL 1416050 NIL) (-609 1410173 1410297 1410502 "KDAGG-" 1410507 NIL KDAGG- (NIL T T T) -8 NIL NIL NIL) (-608 1403321 1409834 1409989 "KAFILE" 1410051 NIL KAFILE (NIL T) -8 NIL NIL NIL) (-607 1397749 1402832 1403060 "JORDAN" 1403142 NIL JORDAN (NIL T T) -8 NIL NIL NIL) (-606 1397128 1397398 1397519 "JOINAST" 1397648 T JOINAST (NIL) -8 NIL NIL NIL) (-605 1396974 1397033 1397088 "JAVACODE" 1397093 T JAVACODE (NIL) -8 NIL NIL NIL) (-604 1393226 1395179 1395233 "IXAGG" 1396162 NIL IXAGG (NIL T T) -9 NIL 1396621 NIL) (-603 1392145 1392451 1392870 "IXAGG-" 1392875 NIL IXAGG- (NIL T T T) -8 NIL NIL NIL) (-602 1387675 1392067 1392126 "IVECTOR" 1392131 NIL IVECTOR (NIL T NIL) -8 NIL NIL NIL) (-601 1386441 1386678 1386944 "ITUPLE" 1387442 NIL ITUPLE (NIL T) -8 NIL NIL NIL) (-600 1384943 1385120 1385415 "ITRIGMNP" 1386263 NIL ITRIGMNP (NIL T T T) -7 NIL NIL NIL) (-599 1383688 1383892 1384175 "ITFUN3" 1384719 NIL ITFUN3 (NIL T T T) -7 NIL NIL NIL) (-598 1383320 1383377 1383486 "ITFUN2" 1383625 NIL ITFUN2 (NIL T T) -7 NIL NIL NIL) (-597 1381122 1382182 1382481 "ITAYLOR" 1383054 NIL ITAYLOR (NIL T) -8 NIL NIL NIL) (-596 1370067 1375259 1376422 "ISUPS" 1379992 NIL ISUPS (NIL T) -8 NIL NIL NIL) (-595 1369171 1369311 1369547 "ISUMP" 1369914 NIL ISUMP (NIL T T T T) -7 NIL NIL NIL) (-594 1364385 1368972 1369051 "ISTRING" 1369124 NIL ISTRING (NIL NIL) -8 NIL NIL NIL) (-593 1363861 1364106 1364198 "ISAST" 1364313 T ISAST (NIL) -8 NIL NIL NIL) (-592 1363070 1363152 1363368 "IRURPK" 1363775 NIL IRURPK (NIL T T T T T) -7 NIL NIL NIL) (-591 1362006 1362207 1362447 "IRSN" 1362850 T IRSN (NIL) -7 NIL NIL NIL) (-590 1360077 1360432 1360861 "IRRF2F" 1361644 NIL IRRF2F (NIL T) -7 NIL NIL NIL) (-589 1359824 1359862 1359938 "IRREDFFX" 1360033 NIL IRREDFFX (NIL T) -7 NIL NIL NIL) (-588 1358439 1358698 1358997 "IROOT" 1359557 NIL IROOT (NIL T) -7 NIL NIL NIL) (-587 1355043 1356123 1356815 "IR" 1357779 NIL IR (NIL T) -8 NIL NIL NIL) (-586 1352656 1353151 1353717 "IR2" 1354521 NIL IR2 (NIL T T) -7 NIL NIL NIL) (-585 1351756 1351869 1352083 "IR2F" 1352539 NIL IR2F (NIL T T) -7 NIL NIL NIL) (-584 1351547 1351581 1351641 "IPRNTPK" 1351716 T IPRNTPK (NIL) -7 NIL NIL NIL) (-583 1348126 1351436 1351505 "IPF" 1351510 NIL IPF (NIL NIL) -8 NIL NIL NIL) (-582 1346453 1348051 1348108 "IPADIC" 1348113 NIL IPADIC (NIL NIL NIL) -8 NIL NIL NIL) (-581 1345765 1346013 1346143 "IP4ADDR" 1346343 T IP4ADDR (NIL) -8 NIL NIL NIL) (-580 1345238 1345469 1345579 "IOMODE" 1345675 T IOMODE (NIL) -8 NIL NIL NIL) (-579 1344311 1344835 1344962 "IOBFILE" 1345131 T IOBFILE (NIL) -8 NIL NIL NIL) (-578 1343799 1344215 1344243 "IOBCON" 1344248 T IOBCON (NIL) -9 NIL 1344269 NIL) (-577 1343310 1343368 1343551 "INVLAPLA" 1343735 NIL INVLAPLA (NIL T T) -7 NIL NIL NIL) (-576 1332958 1335312 1337698 "INTTR" 1340974 NIL INTTR (NIL T T) -7 NIL NIL NIL) (-575 1329293 1330035 1330900 "INTTOOLS" 1332143 NIL INTTOOLS (NIL T T) -7 NIL NIL NIL) (-574 1328879 1328970 1329087 "INTSLPE" 1329196 T INTSLPE (NIL) -7 NIL NIL NIL) (-573 1326832 1328802 1328861 "INTRVL" 1328866 NIL INTRVL (NIL T) -8 NIL NIL NIL) (-572 1324434 1324946 1325521 "INTRF" 1326317 NIL INTRF (NIL T) -7 NIL NIL NIL) (-571 1323845 1323942 1324084 "INTRET" 1324332 NIL INTRET (NIL T) -7 NIL NIL NIL) (-570 1321842 1322231 1322701 "INTRAT" 1323453 NIL INTRAT (NIL T T) -7 NIL NIL NIL) (-569 1319105 1319688 1320307 "INTPM" 1321327 NIL INTPM (NIL T T) -7 NIL NIL NIL) (-568 1315850 1316449 1317187 "INTPAF" 1318491 NIL INTPAF (NIL T T T) -7 NIL NIL NIL) (-567 1311029 1311991 1313042 "INTPACK" 1314819 T INTPACK (NIL) -7 NIL NIL NIL) (-566 1307909 1310758 1310885 "INT" 1310922 T INT (NIL) -8 NIL NIL NIL) (-565 1307161 1307313 1307521 "INTHERTR" 1307751 NIL INTHERTR (NIL T T) -7 NIL NIL NIL) (-564 1306600 1306680 1306868 "INTHERAL" 1307075 NIL INTHERAL (NIL T T T T) -7 NIL NIL NIL) (-563 1304446 1304889 1305346 "INTHEORY" 1306163 T INTHEORY (NIL) -7 NIL NIL NIL) (-562 1295852 1297473 1299245 "INTG0" 1302798 NIL INTG0 (NIL T T T) -7 NIL NIL NIL) (-561 1276425 1281215 1286025 "INTFTBL" 1291062 T INTFTBL (NIL) -8 NIL NIL NIL) (-560 1275674 1275812 1275985 "INTFACT" 1276284 NIL INTFACT (NIL T) -7 NIL NIL NIL) (-559 1273101 1273547 1274104 "INTEF" 1275228 NIL INTEF (NIL T T) -7 NIL NIL NIL) (-558 1271468 1272207 1272235 "INTDOM" 1272536 T INTDOM (NIL) -9 NIL 1272743 NIL) (-557 1270837 1271011 1271253 "INTDOM-" 1271258 NIL INTDOM- (NIL T) -8 NIL NIL NIL) (-556 1267225 1269153 1269207 "INTCAT" 1270006 NIL INTCAT (NIL T) -9 NIL 1270327 NIL) (-555 1266697 1266800 1266928 "INTBIT" 1267117 T INTBIT (NIL) -7 NIL NIL NIL) (-554 1265396 1265550 1265857 "INTALG" 1266542 NIL INTALG (NIL T T T T T) -7 NIL NIL NIL) (-553 1264879 1264969 1265126 "INTAF" 1265300 NIL INTAF (NIL T T) -7 NIL NIL NIL) (-552 1258222 1264689 1264829 "INTABL" 1264834 NIL INTABL (NIL T T T) -8 NIL NIL NIL) (-551 1257563 1258029 1258094 "INT8" 1258128 T INT8 (NIL) -8 NIL NIL 1258173) (-550 1256903 1257369 1257434 "INT64" 1257468 T INT64 (NIL) -8 NIL NIL 1257513) (-549 1256243 1256709 1256774 "INT32" 1256808 T INT32 (NIL) -8 NIL NIL 1256853) (-548 1255583 1256049 1256114 "INT16" 1256148 T INT16 (NIL) -8 NIL NIL 1256193) (-547 1250493 1253206 1253234 "INS" 1254168 T INS (NIL) -9 NIL 1254833 NIL) (-546 1247733 1248504 1249478 "INS-" 1249551 NIL INS- (NIL T) -8 NIL NIL NIL) (-545 1246508 1246735 1247033 "INPSIGN" 1247486 NIL INPSIGN (NIL T T) -7 NIL NIL NIL) (-544 1245626 1245743 1245940 "INPRODPF" 1246388 NIL INPRODPF (NIL T T) -7 NIL NIL NIL) (-543 1244520 1244637 1244874 "INPRODFF" 1245506 NIL INPRODFF (NIL T T T T) -7 NIL NIL NIL) (-542 1243520 1243672 1243932 "INNMFACT" 1244356 NIL INNMFACT (NIL T T T T) -7 NIL NIL NIL) (-541 1242717 1242814 1243002 "INMODGCD" 1243419 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL NIL) (-540 1241225 1241470 1241794 "INFSP" 1242462 NIL INFSP (NIL T T T) -7 NIL NIL NIL) (-539 1240409 1240526 1240709 "INFPROD0" 1241105 NIL INFPROD0 (NIL T T) -7 NIL NIL NIL) (-538 1237264 1238474 1238989 "INFORM" 1239902 T INFORM (NIL) -8 NIL NIL NIL) (-537 1236874 1236934 1237032 "INFORM1" 1237199 NIL INFORM1 (NIL T) -7 NIL NIL NIL) (-536 1236397 1236486 1236600 "INFINITY" 1236780 T INFINITY (NIL) -7 NIL NIL NIL) (-535 1235573 1236117 1236218 "INETCLTS" 1236316 T INETCLTS (NIL) -8 NIL NIL NIL) (-534 1234189 1234439 1234760 "INEP" 1235321 NIL INEP (NIL T T T) -7 NIL NIL NIL) (-533 1233438 1234086 1234151 "INDE" 1234156 NIL INDE (NIL T) -8 NIL NIL NIL) (-532 1233002 1233070 1233187 "INCRMAPS" 1233365 NIL INCRMAPS (NIL T) -7 NIL NIL NIL) (-531 1231820 1232271 1232477 "INBFILE" 1232816 T INBFILE (NIL) -8 NIL NIL NIL) (-530 1227119 1228056 1229000 "INBFF" 1230908 NIL INBFF (NIL T) -7 NIL NIL NIL) (-529 1226027 1226296 1226324 "INBCON" 1226837 T INBCON (NIL) -9 NIL 1227103 NIL) (-528 1225279 1225502 1225778 "INBCON-" 1225783 NIL INBCON- (NIL T) -8 NIL NIL NIL) (-527 1224758 1225003 1225094 "INAST" 1225208 T INAST (NIL) -8 NIL NIL NIL) (-526 1224185 1224437 1224543 "IMPTAST" 1224672 T IMPTAST (NIL) -8 NIL NIL NIL) (-525 1220631 1224029 1224133 "IMATRIX" 1224138 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL NIL) (-524 1219343 1219466 1219781 "IMATQF" 1220487 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL NIL) (-523 1217563 1217790 1218127 "IMATLIN" 1219099 NIL IMATLIN (NIL T T T T) -7 NIL NIL NIL) (-522 1212141 1217487 1217545 "ILIST" 1217550 NIL ILIST (NIL T NIL) -8 NIL NIL NIL) (-521 1210046 1212001 1212114 "IIARRAY2" 1212119 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL NIL) (-520 1205444 1209957 1210021 "IFF" 1210026 NIL IFF (NIL NIL NIL) -8 NIL NIL NIL) (-519 1204791 1205061 1205177 "IFAST" 1205348 T IFAST (NIL) -8 NIL NIL NIL) (-518 1199786 1204083 1204271 "IFARRAY" 1204648 NIL IFARRAY (NIL T NIL) -8 NIL NIL NIL) (-517 1198966 1199690 1199763 "IFAMON" 1199768 NIL IFAMON (NIL T T NIL) -8 NIL NIL NIL) (-516 1198550 1198615 1198669 "IEVALAB" 1198876 NIL IEVALAB (NIL T T) -9 NIL NIL NIL) (-515 1198225 1198293 1198453 "IEVALAB-" 1198458 NIL IEVALAB- (NIL T T T) -8 NIL NIL NIL) (-514 1197856 1198139 1198202 "IDPO" 1198207 NIL IDPO (NIL T T) -8 NIL NIL NIL) (-513 1197106 1197745 1197820 "IDPOAMS" 1197825 NIL IDPOAMS (NIL T T) -8 NIL NIL NIL) (-512 1196413 1196995 1197070 "IDPOAM" 1197075 NIL IDPOAM (NIL T T) -8 NIL NIL NIL) (-511 1195472 1195748 1195801 "IDPC" 1196214 NIL IDPC (NIL T T) -9 NIL 1196363 NIL) (-510 1194941 1195364 1195437 "IDPAM" 1195442 NIL IDPAM (NIL T T) -8 NIL NIL NIL) (-509 1194317 1194833 1194906 "IDPAG" 1194911 NIL IDPAG (NIL T T) -8 NIL NIL NIL) (-508 1193962 1194153 1194228 "IDENT" 1194262 T IDENT (NIL) -8 NIL NIL NIL) (-507 1190217 1191065 1191960 "IDECOMP" 1193119 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL NIL) (-506 1183055 1184140 1185187 "IDEAL" 1189253 NIL IDEAL (NIL T T T T) -8 NIL NIL NIL) (-505 1182219 1182331 1182530 "ICDEN" 1182939 NIL ICDEN (NIL T T T T) -7 NIL NIL NIL) (-504 1181290 1181699 1181846 "ICARD" 1182092 T ICARD (NIL) -8 NIL NIL NIL) (-503 1179350 1179663 1180068 "IBPTOOLS" 1180967 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL NIL) (-502 1174957 1178970 1179083 "IBITS" 1179269 NIL IBITS (NIL NIL) -8 NIL NIL NIL) (-501 1171680 1172256 1172951 "IBATOOL" 1174374 NIL IBATOOL (NIL T T T) -7 NIL NIL NIL) (-500 1169459 1169921 1170454 "IBACHIN" 1171215 NIL IBACHIN (NIL T T T) -7 NIL NIL NIL) (-499 1167288 1169305 1169408 "IARRAY2" 1169413 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL NIL) (-498 1163394 1167214 1167271 "IARRAY1" 1167276 NIL IARRAY1 (NIL T NIL) -8 NIL NIL NIL) (-497 1157503 1161806 1162287 "IAN" 1162933 T IAN (NIL) -8 NIL NIL NIL) (-496 1157014 1157071 1157244 "IALGFACT" 1157440 NIL IALGFACT (NIL T T T T) -7 NIL NIL NIL) (-495 1156542 1156655 1156683 "HYPCAT" 1156890 T HYPCAT (NIL) -9 NIL NIL NIL) (-494 1156080 1156197 1156383 "HYPCAT-" 1156388 NIL HYPCAT- (NIL T) -8 NIL NIL NIL) (-493 1155675 1155875 1155958 "HOSTNAME" 1156017 T HOSTNAME (NIL) -8 NIL NIL NIL) (-492 1155520 1155557 1155598 "HOMOTOP" 1155603 NIL HOMOTOP (NIL T) -9 NIL 1155636 NIL) (-491 1152152 1153530 1153571 "HOAGG" 1154552 NIL HOAGG (NIL T) -9 NIL 1155231 NIL) (-490 1150746 1151145 1151671 "HOAGG-" 1151676 NIL HOAGG- (NIL T T) -8 NIL NIL NIL) (-489 1144750 1150341 1150490 "HEXADEC" 1150617 T HEXADEC (NIL) -8 NIL NIL NIL) (-488 1143497 1143720 1143983 "HEUGCD" 1144527 NIL HEUGCD (NIL T) -7 NIL NIL NIL) (-487 1142573 1143334 1143464 "HELLFDIV" 1143469 NIL HELLFDIV (NIL T T T T) -8 NIL NIL NIL) (-486 1140752 1142350 1142438 "HEAP" 1142517 NIL HEAP (NIL T) -8 NIL NIL NIL) (-485 1140015 1140304 1140438 "HEADAST" 1140638 T HEADAST (NIL) -8 NIL NIL NIL) (-484 1133881 1139930 1139992 "HDP" 1139997 NIL HDP (NIL NIL T) -8 NIL NIL NIL) (-483 1127869 1133516 1133668 "HDMP" 1133782 NIL HDMP (NIL NIL T) -8 NIL NIL NIL) (-482 1127193 1127333 1127497 "HB" 1127725 T HB (NIL) -7 NIL NIL NIL) (-481 1120579 1127039 1127143 "HASHTBL" 1127148 NIL HASHTBL (NIL T T NIL) -8 NIL NIL NIL) (-480 1120055 1120300 1120392 "HASAST" 1120507 T HASAST (NIL) -8 NIL NIL NIL) (-479 1117833 1119677 1119859 "HACKPI" 1119893 T HACKPI (NIL) -8 NIL NIL NIL) (-478 1113501 1117686 1117799 "GTSET" 1117804 NIL GTSET (NIL T T T T) -8 NIL NIL NIL) (-477 1106916 1113379 1113477 "GSTBL" 1113482 NIL GSTBL (NIL T T T NIL) -8 NIL NIL NIL) (-476 1099194 1105947 1106212 "GSERIES" 1106707 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL NIL) (-475 1098335 1098752 1098780 "GROUP" 1098983 T GROUP (NIL) -9 NIL 1099117 NIL) (-474 1097701 1097860 1098111 "GROUP-" 1098116 NIL GROUP- (NIL T) -8 NIL NIL NIL) (-473 1096068 1096389 1096776 "GROEBSOL" 1097378 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL NIL) (-472 1094982 1095270 1095321 "GRMOD" 1095850 NIL GRMOD (NIL T T) -9 NIL 1096018 NIL) (-471 1094750 1094786 1094914 "GRMOD-" 1094919 NIL GRMOD- (NIL T T T) -8 NIL NIL NIL) (-470 1090040 1091104 1092104 "GRIMAGE" 1093770 T GRIMAGE (NIL) -8 NIL NIL NIL) (-469 1088506 1088767 1089091 "GRDEF" 1089736 T GRDEF (NIL) -7 NIL NIL NIL) (-468 1087950 1088066 1088207 "GRAY" 1088385 T GRAY (NIL) -7 NIL NIL NIL) (-467 1087137 1087543 1087594 "GRALG" 1087747 NIL GRALG (NIL T T) -9 NIL 1087840 NIL) (-466 1086798 1086871 1087034 "GRALG-" 1087039 NIL GRALG- (NIL T T T) -8 NIL NIL NIL) (-465 1083575 1086383 1086561 "GPOLSET" 1086705 NIL GPOLSET (NIL T T T T) -8 NIL NIL NIL) (-464 1082929 1082986 1083244 "GOSPER" 1083512 NIL GOSPER (NIL T T T T T) -7 NIL NIL NIL) (-463 1078661 1079367 1079893 "GMODPOL" 1082628 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL NIL) (-462 1077666 1077850 1078088 "GHENSEL" 1078473 NIL GHENSEL (NIL T T) -7 NIL NIL NIL) (-461 1071822 1072665 1073685 "GENUPS" 1076750 NIL GENUPS (NIL T T) -7 NIL NIL NIL) (-460 1071519 1071570 1071659 "GENUFACT" 1071765 NIL GENUFACT (NIL T) -7 NIL NIL NIL) (-459 1070931 1071008 1071173 "GENPGCD" 1071437 NIL GENPGCD (NIL T T T T) -7 NIL NIL NIL) (-458 1070405 1070440 1070653 "GENMFACT" 1070890 NIL GENMFACT (NIL T T T T T) -7 NIL NIL NIL) (-457 1068971 1069228 1069535 "GENEEZ" 1070148 NIL GENEEZ (NIL T T) -7 NIL NIL NIL) (-456 1063117 1068582 1068744 "GDMP" 1068894 NIL GDMP (NIL NIL T T) -8 NIL NIL NIL) (-455 1052459 1056888 1057994 "GCNAALG" 1062100 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-454 1050786 1051648 1051676 "GCDDOM" 1051931 T GCDDOM (NIL) -9 NIL 1052088 NIL) (-453 1050256 1050383 1050598 "GCDDOM-" 1050603 NIL GCDDOM- (NIL T) -8 NIL NIL NIL) (-452 1048928 1049113 1049417 "GB" 1050035 NIL GB (NIL T T T T) -7 NIL NIL NIL) (-451 1037544 1039874 1042266 "GBINTERN" 1046619 NIL GBINTERN (NIL T T T T) -7 NIL NIL NIL) (-450 1035381 1035673 1036094 "GBF" 1037219 NIL GBF (NIL T T T T) -7 NIL NIL NIL) (-449 1034162 1034327 1034594 "GBEUCLID" 1035197 NIL GBEUCLID (NIL T T T T) -7 NIL NIL NIL) (-448 1033511 1033636 1033785 "GAUSSFAC" 1034033 T GAUSSFAC (NIL) -7 NIL NIL NIL) (-447 1031878 1032180 1032494 "GALUTIL" 1033230 NIL GALUTIL (NIL T) -7 NIL NIL NIL) (-446 1030186 1030460 1030784 "GALPOLYU" 1031605 NIL GALPOLYU (NIL T T) -7 NIL NIL NIL) (-445 1027551 1027841 1028248 "GALFACTU" 1029883 NIL GALFACTU (NIL T T T) -7 NIL NIL NIL) (-444 1019356 1020856 1022464 "GALFACT" 1025983 NIL GALFACT (NIL T) -7 NIL NIL NIL) (-443 1016744 1017402 1017430 "FVFUN" 1018586 T FVFUN (NIL) -9 NIL 1019306 NIL) (-442 1016010 1016192 1016220 "FVC" 1016511 T FVC (NIL) -9 NIL 1016694 NIL) (-441 1015653 1015835 1015903 "FUNDESC" 1015962 T FUNDESC (NIL) -8 NIL NIL NIL) (-440 1015268 1015450 1015531 "FUNCTION" 1015605 NIL FUNCTION (NIL NIL) -8 NIL NIL NIL) (-439 1013012 1013590 1014056 "FT" 1014822 T FT (NIL) -8 NIL NIL NIL) (-438 1011803 1012313 1012516 "FTEM" 1012829 T FTEM (NIL) -8 NIL NIL NIL) (-437 1010094 1010383 1010780 "FSUPFACT" 1011494 NIL FSUPFACT (NIL T T T) -7 NIL NIL NIL) (-436 1008491 1008780 1009112 "FST" 1009782 T FST (NIL) -8 NIL NIL NIL) (-435 1007690 1007796 1007984 "FSRED" 1008373 NIL FSRED (NIL T T) -7 NIL NIL NIL) (-434 1006389 1006645 1006992 "FSPRMELT" 1007405 NIL FSPRMELT (NIL T T) -7 NIL NIL NIL) (-433 1003695 1004133 1004619 "FSPECF" 1005952 NIL FSPECF (NIL T T) -7 NIL NIL NIL) (-432 985333 993664 993705 "FS" 997589 NIL FS (NIL T) -9 NIL 999878 NIL) (-431 973976 976969 981026 "FS-" 981326 NIL FS- (NIL T T) -8 NIL NIL NIL) (-430 973504 973558 973728 "FSINT" 973917 NIL FSINT (NIL T T) -7 NIL NIL NIL) (-429 971796 972497 972800 "FSERIES" 973283 NIL FSERIES (NIL T T) -8 NIL NIL NIL) (-428 970838 970954 971178 "FSCINT" 971676 NIL FSCINT (NIL T T) -7 NIL NIL NIL) (-427 967046 969782 969823 "FSAGG" 970193 NIL FSAGG (NIL T) -9 NIL 970452 NIL) (-426 964808 965409 966205 "FSAGG-" 966300 NIL FSAGG- (NIL T T) -8 NIL NIL NIL) (-425 963850 963993 964220 "FSAGG2" 964661 NIL FSAGG2 (NIL T T T T) -7 NIL NIL NIL) (-424 961532 961812 962359 "FS2UPS" 963568 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL NIL) (-423 961166 961209 961338 "FS2" 961483 NIL FS2 (NIL T T T T) -7 NIL NIL NIL) (-422 960044 960215 960517 "FS2EXPXP" 960991 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL NIL) (-421 959470 959585 959737 "FRUTIL" 959924 NIL FRUTIL (NIL T) -7 NIL NIL NIL) (-420 950883 954965 956323 "FR" 958144 NIL FR (NIL T) -8 NIL NIL NIL) (-419 945852 948526 948566 "FRNAALG" 949962 NIL FRNAALG (NIL T) -9 NIL 950569 NIL) (-418 941525 942601 943876 "FRNAALG-" 944626 NIL FRNAALG- (NIL T T) -8 NIL NIL NIL) (-417 941163 941206 941333 "FRNAAF2" 941476 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL NIL) (-416 939543 940017 940312 "FRMOD" 940975 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL NIL) (-415 937294 937926 938243 "FRIDEAL" 939334 NIL FRIDEAL (NIL T T T T) -8 NIL NIL NIL) (-414 936489 936576 936865 "FRIDEAL2" 937201 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-413 935622 936036 936077 "FRETRCT" 936082 NIL FRETRCT (NIL T) -9 NIL 936258 NIL) (-412 934734 934965 935316 "FRETRCT-" 935321 NIL FRETRCT- (NIL T T) -8 NIL NIL NIL) (-411 931822 933032 933091 "FRAMALG" 933973 NIL FRAMALG (NIL T T) -9 NIL 934265 NIL) (-410 929956 930411 931041 "FRAMALG-" 931264 NIL FRAMALG- (NIL T T T) -8 NIL NIL NIL) (-409 923877 929431 929707 "FRAC" 929712 NIL FRAC (NIL T) -8 NIL NIL NIL) (-408 923513 923570 923677 "FRAC2" 923814 NIL FRAC2 (NIL T T) -7 NIL NIL NIL) (-407 923149 923206 923313 "FR2" 923450 NIL FR2 (NIL T T) -7 NIL NIL NIL) (-406 917662 920555 920583 "FPS" 921702 T FPS (NIL) -9 NIL 922259 NIL) (-405 917111 917220 917384 "FPS-" 917530 NIL FPS- (NIL T) -8 NIL NIL NIL) (-404 914413 916082 916110 "FPC" 916335 T FPC (NIL) -9 NIL 916477 NIL) (-403 914206 914246 914343 "FPC-" 914348 NIL FPC- (NIL T) -8 NIL NIL NIL) (-402 912996 913694 913735 "FPATMAB" 913740 NIL FPATMAB (NIL T) -9 NIL 913892 NIL) (-401 910669 911172 911598 "FPARFRAC" 912633 NIL FPARFRAC (NIL T T) -8 NIL NIL NIL) (-400 906062 906561 907243 "FORTRAN" 910101 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL NIL) (-399 903778 904278 904817 "FORT" 905543 T FORT (NIL) -7 NIL NIL NIL) (-398 901454 902016 902044 "FORTFN" 903104 T FORTFN (NIL) -9 NIL 903728 NIL) (-397 901218 901268 901296 "FORTCAT" 901355 T FORTCAT (NIL) -9 NIL 901417 NIL) (-396 899324 899834 900224 "FORMULA" 900848 T FORMULA (NIL) -8 NIL NIL NIL) (-395 899112 899142 899211 "FORMULA1" 899288 NIL FORMULA1 (NIL T) -7 NIL NIL NIL) (-394 898635 898687 898860 "FORDER" 899054 NIL FORDER (NIL T T T T) -7 NIL NIL NIL) (-393 897731 897895 898088 "FOP" 898462 T FOP (NIL) -7 NIL NIL NIL) (-392 896312 897011 897185 "FNLA" 897613 NIL FNLA (NIL NIL NIL T) -8 NIL NIL NIL) (-391 895041 895456 895484 "FNCAT" 895944 T FNCAT (NIL) -9 NIL 896204 NIL) (-390 894580 895000 895028 "FNAME" 895033 T FNAME (NIL) -8 NIL NIL NIL) (-389 893143 894106 894134 "FMTC" 894139 T FMTC (NIL) -9 NIL 894175 NIL) (-388 889476 890666 891295 "FMONOID" 892547 NIL FMONOID (NIL T) -8 NIL NIL NIL) (-387 888668 889218 889367 "FM" 889372 NIL FM (NIL T T) -8 NIL NIL NIL) (-386 886092 886738 886766 "FMFUN" 887910 T FMFUN (NIL) -9 NIL 888618 NIL) (-385 885361 885542 885570 "FMC" 885860 T FMC (NIL) -9 NIL 886042 NIL) (-384 882440 883300 883354 "FMCAT" 884549 NIL FMCAT (NIL T T) -9 NIL 885044 NIL) (-383 881306 882206 882306 "FM1" 882385 NIL FM1 (NIL T T) -8 NIL NIL NIL) (-382 879080 879496 879990 "FLOATRP" 880857 NIL FLOATRP (NIL T) -7 NIL NIL NIL) (-381 872655 876809 877430 "FLOAT" 878479 T FLOAT (NIL) -8 NIL NIL NIL) (-380 870093 870593 871171 "FLOATCP" 872122 NIL FLOATCP (NIL T) -7 NIL NIL NIL) (-379 868833 869671 869712 "FLINEXP" 869717 NIL FLINEXP (NIL T) -9 NIL 869810 NIL) (-378 867987 868222 868550 "FLINEXP-" 868555 NIL FLINEXP- (NIL T T) -8 NIL NIL NIL) (-377 867063 867207 867431 "FLASORT" 867839 NIL FLASORT (NIL T T) -7 NIL NIL NIL) (-376 864179 865047 865099 "FLALG" 866326 NIL FLALG (NIL T T) -9 NIL 866793 NIL) (-375 857915 861665 861706 "FLAGG" 862968 NIL FLAGG (NIL T) -9 NIL 863620 NIL) (-374 856641 856980 857470 "FLAGG-" 857475 NIL FLAGG- (NIL T T) -8 NIL NIL NIL) (-373 855683 855826 856053 "FLAGG2" 856494 NIL FLAGG2 (NIL T T T T) -7 NIL NIL NIL) (-372 852534 853542 853601 "FINRALG" 854729 NIL FINRALG (NIL T T) -9 NIL 855237 NIL) (-371 851694 851923 852262 "FINRALG-" 852267 NIL FINRALG- (NIL T T T) -8 NIL NIL NIL) (-370 851074 851313 851341 "FINITE" 851537 T FINITE (NIL) -9 NIL 851644 NIL) (-369 843431 845618 845658 "FINAALG" 849325 NIL FINAALG (NIL T) -9 NIL 850778 NIL) (-368 838763 839813 840957 "FINAALG-" 842336 NIL FINAALG- (NIL T T) -8 NIL NIL NIL) (-367 838131 838518 838621 "FILE" 838693 NIL FILE (NIL T) -8 NIL NIL NIL) (-366 836789 837127 837181 "FILECAT" 837865 NIL FILECAT (NIL T T) -9 NIL 838081 NIL) (-365 834505 836033 836061 "FIELD" 836101 T FIELD (NIL) -9 NIL 836181 NIL) (-364 833125 833510 834021 "FIELD-" 834026 NIL FIELD- (NIL T) -8 NIL NIL NIL) (-363 830975 831760 832107 "FGROUP" 832811 NIL FGROUP (NIL T) -8 NIL NIL NIL) (-362 830065 830229 830449 "FGLMICPK" 830807 NIL FGLMICPK (NIL T NIL) -7 NIL NIL NIL) (-361 825897 829990 830047 "FFX" 830052 NIL FFX (NIL T NIL) -8 NIL NIL NIL) (-360 825498 825559 825694 "FFSLPE" 825830 NIL FFSLPE (NIL T T T) -7 NIL NIL NIL) (-359 821487 822270 823066 "FFPOLY" 824734 NIL FFPOLY (NIL T) -7 NIL NIL NIL) (-358 820991 821027 821236 "FFPOLY2" 821445 NIL FFPOLY2 (NIL T T) -7 NIL NIL NIL) (-357 816834 820910 820973 "FFP" 820978 NIL FFP (NIL T NIL) -8 NIL NIL NIL) (-356 812232 816745 816809 "FF" 816814 NIL FF (NIL NIL NIL) -8 NIL NIL NIL) (-355 807358 811575 811765 "FFNBX" 812086 NIL FFNBX (NIL T NIL) -8 NIL NIL NIL) (-354 802287 806493 806751 "FFNBP" 807212 NIL FFNBP (NIL T NIL) -8 NIL NIL NIL) (-353 796920 801571 801782 "FFNB" 802120 NIL FFNB (NIL NIL NIL) -8 NIL NIL NIL) (-352 795752 795950 796265 "FFINTBAS" 796717 NIL FFINTBAS (NIL T T T) -7 NIL NIL NIL) (-351 791821 794041 794069 "FFIELDC" 794689 T FFIELDC (NIL) -9 NIL 795065 NIL) (-350 790483 790854 791351 "FFIELDC-" 791356 NIL FFIELDC- (NIL T) -8 NIL NIL NIL) (-349 790052 790098 790222 "FFHOM" 790425 NIL FFHOM (NIL T T T) -7 NIL NIL NIL) (-348 787747 788234 788751 "FFF" 789567 NIL FFF (NIL T) -7 NIL NIL NIL) (-347 783365 787489 787590 "FFCGX" 787690 NIL FFCGX (NIL T NIL) -8 NIL NIL NIL) (-346 778986 783097 783204 "FFCGP" 783308 NIL FFCGP (NIL T NIL) -8 NIL NIL NIL) (-345 774169 778713 778821 "FFCG" 778922 NIL FFCG (NIL NIL NIL) -8 NIL NIL NIL) (-344 755565 764646 764732 "FFCAT" 769897 NIL FFCAT (NIL T T T) -9 NIL 771348 NIL) (-343 750763 751810 753124 "FFCAT-" 754354 NIL FFCAT- (NIL T T T T) -8 NIL NIL NIL) (-342 750174 750217 750452 "FFCAT2" 750714 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-341 739495 743146 744366 "FEXPR" 749026 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL NIL) (-340 738495 738930 738971 "FEVALAB" 739055 NIL FEVALAB (NIL T) -9 NIL 739316 NIL) (-339 737654 737864 738202 "FEVALAB-" 738207 NIL FEVALAB- (NIL T T) -8 NIL NIL NIL) (-338 736220 737037 737240 "FDIV" 737553 NIL FDIV (NIL T T T T) -8 NIL NIL NIL) (-337 733240 733981 734096 "FDIVCAT" 735664 NIL FDIVCAT (NIL T T T T) -9 NIL 736101 NIL) (-336 733002 733029 733199 "FDIVCAT-" 733204 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL NIL) (-335 732222 732309 732586 "FDIV2" 732909 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-334 731224 731538 731733 "FCTRDATA" 732047 T FCTRDATA (NIL) -8 NIL NIL NIL) (-333 729910 730169 730458 "FCPAK1" 730955 T FCPAK1 (NIL) -7 NIL NIL NIL) (-332 729009 729410 729551 "FCOMP" 729801 NIL FCOMP (NIL T) -8 NIL NIL NIL) (-331 712711 716159 719697 "FC" 725491 T FC (NIL) -8 NIL NIL NIL) (-330 705074 709102 709142 "FAXF" 710944 NIL FAXF (NIL T) -9 NIL 711636 NIL) (-329 702350 703008 703833 "FAXF-" 704298 NIL FAXF- (NIL T T) -8 NIL NIL NIL) (-328 697402 701726 701902 "FARRAY" 702207 NIL FARRAY (NIL T) -8 NIL NIL NIL) (-327 692296 694363 694416 "FAMR" 695439 NIL FAMR (NIL T T) -9 NIL 695899 NIL) (-326 691186 691488 691923 "FAMR-" 691928 NIL FAMR- (NIL T T T) -8 NIL NIL NIL) (-325 690355 691108 691161 "FAMONOID" 691166 NIL FAMONOID (NIL T) -8 NIL NIL NIL) (-324 688141 688851 688904 "FAMONC" 689845 NIL FAMONC (NIL T T) -9 NIL 690231 NIL) (-323 686805 687895 688032 "FAGROUP" 688037 NIL FAGROUP (NIL T) -8 NIL NIL NIL) (-322 684600 684919 685322 "FACUTIL" 686486 NIL FACUTIL (NIL T T T T) -7 NIL NIL NIL) (-321 683699 683884 684106 "FACTFUNC" 684410 NIL FACTFUNC (NIL T) -7 NIL NIL NIL) (-320 676121 683002 683201 "EXPUPXS" 683555 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-319 673604 674144 674730 "EXPRTUBE" 675555 T EXPRTUBE (NIL) -7 NIL NIL NIL) (-318 669875 670467 671197 "EXPRODE" 672943 NIL EXPRODE (NIL T T) -7 NIL NIL NIL) (-317 655360 668524 668953 "EXPR" 669479 NIL EXPR (NIL T) -8 NIL NIL NIL) (-316 649914 650501 651307 "EXPR2UPS" 654658 NIL EXPR2UPS (NIL T T) -7 NIL NIL NIL) (-315 649546 649603 649712 "EXPR2" 649851 NIL EXPR2 (NIL T T) -7 NIL NIL NIL) (-314 640936 648699 648989 "EXPEXPAN" 649383 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL NIL) (-313 640736 640893 640922 "EXIT" 640927 T EXIT (NIL) -8 NIL NIL NIL) (-312 640216 640460 640551 "EXITAST" 640665 T EXITAST (NIL) -8 NIL NIL NIL) (-311 639843 639905 640018 "EVALCYC" 640148 NIL EVALCYC (NIL T) -7 NIL NIL NIL) (-310 639384 639502 639543 "EVALAB" 639713 NIL EVALAB (NIL T) -9 NIL 639817 NIL) (-309 638865 638987 639208 "EVALAB-" 639213 NIL EVALAB- (NIL T T) -8 NIL NIL NIL) (-308 636233 637535 637563 "EUCDOM" 638118 T EUCDOM (NIL) -9 NIL 638468 NIL) (-307 634638 635080 635670 "EUCDOM-" 635675 NIL EUCDOM- (NIL T) -8 NIL NIL NIL) (-306 622176 624936 627686 "ESTOOLS" 631908 T ESTOOLS (NIL) -7 NIL NIL NIL) (-305 621808 621865 621974 "ESTOOLS2" 622113 NIL ESTOOLS2 (NIL T T) -7 NIL NIL NIL) (-304 621559 621601 621681 "ESTOOLS1" 621760 NIL ESTOOLS1 (NIL T) -7 NIL NIL NIL) (-303 615596 617204 617232 "ES" 620000 T ES (NIL) -9 NIL 621410 NIL) (-302 610543 611830 613647 "ES-" 613811 NIL ES- (NIL T) -8 NIL NIL NIL) (-301 606917 607678 608458 "ESCONT" 609783 T ESCONT (NIL) -7 NIL NIL NIL) (-300 606662 606694 606776 "ESCONT1" 606879 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL NIL) (-299 606337 606387 606487 "ES2" 606606 NIL ES2 (NIL T T) -7 NIL NIL NIL) (-298 605967 606025 606134 "ES1" 606273 NIL ES1 (NIL T T) -7 NIL NIL NIL) (-297 605183 605312 605488 "ERROR" 605811 T ERROR (NIL) -7 NIL NIL NIL) (-296 598575 605042 605133 "EQTBL" 605138 NIL EQTBL (NIL T T) -8 NIL NIL NIL) (-295 591078 593889 595338 "EQ" 597159 NIL -2114 (NIL T) -8 NIL NIL NIL) (-294 590710 590767 590876 "EQ2" 591015 NIL EQ2 (NIL T T) -7 NIL NIL NIL) (-293 585999 587048 588141 "EP" 589649 NIL EP (NIL T) -7 NIL NIL NIL) (-292 584599 584890 585196 "ENV" 585713 T ENV (NIL) -8 NIL NIL NIL) (-291 583693 584247 584275 "ENTIRER" 584280 T ENTIRER (NIL) -9 NIL 584326 NIL) (-290 580160 581648 582018 "EMR" 583492 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL NIL) (-289 579304 579489 579543 "ELTAGG" 579923 NIL ELTAGG (NIL T T) -9 NIL 580134 NIL) (-288 579023 579085 579226 "ELTAGG-" 579231 NIL ELTAGG- (NIL T T T) -8 NIL NIL NIL) (-287 578812 578841 578895 "ELTAB" 578979 NIL ELTAB (NIL T T) -9 NIL NIL NIL) (-286 577938 578084 578283 "ELFUTS" 578663 NIL ELFUTS (NIL T T) -7 NIL NIL NIL) (-285 577680 577736 577764 "ELEMFUN" 577869 T ELEMFUN (NIL) -9 NIL NIL NIL) (-284 577550 577571 577639 "ELEMFUN-" 577644 NIL ELEMFUN- (NIL T) -8 NIL NIL NIL) (-283 572394 575650 575691 "ELAGG" 576631 NIL ELAGG (NIL T) -9 NIL 577094 NIL) (-282 570679 571113 571776 "ELAGG-" 571781 NIL ELAGG- (NIL T T) -8 NIL NIL NIL) (-281 569344 569622 569915 "ELABEXPR" 570406 T ELABEXPR (NIL) -8 NIL NIL NIL) (-280 562208 564011 564838 "EFUPXS" 568620 NIL EFUPXS (NIL T T T T) -8 NIL NIL NIL) (-279 555658 557459 558269 "EFULS" 561484 NIL EFULS (NIL T T T) -8 NIL NIL NIL) (-278 553143 553501 553973 "EFSTRUC" 555290 NIL EFSTRUC (NIL T T) -7 NIL NIL NIL) (-277 542934 544500 546048 "EF" 551658 NIL EF (NIL T T) -7 NIL NIL NIL) (-276 542008 542419 542568 "EAB" 542805 T EAB (NIL) -8 NIL NIL NIL) (-275 541190 541967 541995 "E04UCFA" 542000 T E04UCFA (NIL) -8 NIL NIL NIL) (-274 540372 541149 541177 "E04NAFA" 541182 T E04NAFA (NIL) -8 NIL NIL NIL) (-273 539554 540331 540359 "E04MBFA" 540364 T E04MBFA (NIL) -8 NIL NIL NIL) (-272 538736 539513 539541 "E04JAFA" 539546 T E04JAFA (NIL) -8 NIL NIL NIL) (-271 537920 538695 538723 "E04GCFA" 538728 T E04GCFA (NIL) -8 NIL NIL NIL) (-270 537104 537879 537907 "E04FDFA" 537912 T E04FDFA (NIL) -8 NIL NIL NIL) (-269 536286 537063 537091 "E04DGFA" 537096 T E04DGFA (NIL) -8 NIL NIL NIL) (-268 530459 531811 533175 "E04AGNT" 534942 T E04AGNT (NIL) -7 NIL NIL NIL) (-267 529139 529645 529685 "DVARCAT" 530160 NIL DVARCAT (NIL T) -9 NIL 530359 NIL) (-266 528343 528555 528869 "DVARCAT-" 528874 NIL DVARCAT- (NIL T T) -8 NIL NIL NIL) (-265 521480 528142 528271 "DSMP" 528276 NIL DSMP (NIL T T T) -8 NIL NIL NIL) (-264 516261 517425 518493 "DROPT" 520432 T DROPT (NIL) -8 NIL NIL NIL) (-263 515926 515985 516083 "DROPT1" 516196 NIL DROPT1 (NIL T) -7 NIL NIL NIL) (-262 511041 512167 513304 "DROPT0" 514809 T DROPT0 (NIL) -7 NIL NIL NIL) (-261 509386 509711 510097 "DRAWPT" 510675 T DRAWPT (NIL) -7 NIL NIL NIL) (-260 503973 504896 505975 "DRAW" 508360 NIL DRAW (NIL T) -7 NIL NIL NIL) (-259 503606 503659 503777 "DRAWHACK" 503914 NIL DRAWHACK (NIL T) -7 NIL NIL NIL) (-258 502337 502606 502897 "DRAWCX" 503335 T DRAWCX (NIL) -7 NIL NIL NIL) (-257 501852 501921 502072 "DRAWCURV" 502263 NIL DRAWCURV (NIL T T) -7 NIL NIL NIL) (-256 492320 494282 496397 "DRAWCFUN" 499757 T DRAWCFUN (NIL) -7 NIL NIL NIL) (-255 489086 491015 491056 "DQAGG" 491685 NIL DQAGG (NIL T) -9 NIL 491958 NIL) (-254 477210 483679 483762 "DPOLCAT" 485614 NIL DPOLCAT (NIL T T T T) -9 NIL 486159 NIL) (-253 472046 473395 475353 "DPOLCAT-" 475358 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL NIL) (-252 465168 471907 472005 "DPMO" 472010 NIL DPMO (NIL NIL T T) -8 NIL NIL NIL) (-251 458193 464948 465115 "DPMM" 465120 NIL DPMM (NIL NIL T T T) -8 NIL NIL NIL) (-250 457671 457885 457983 "DOMTMPLT" 458115 T DOMTMPLT (NIL) -8 NIL NIL NIL) (-249 457104 457473 457553 "DOMCTOR" 457611 T DOMCTOR (NIL) -8 NIL NIL NIL) (-248 456372 456626 456763 "DOMAIN" 456987 T DOMAIN (NIL) -8 NIL NIL NIL) (-247 450360 456007 456159 "DMP" 456273 NIL DMP (NIL NIL T) -8 NIL NIL NIL) (-246 449960 450016 450160 "DLP" 450298 NIL DLP (NIL T) -7 NIL NIL NIL) (-245 443782 449287 449477 "DLIST" 449802 NIL DLIST (NIL T) -8 NIL NIL NIL) (-244 440579 442635 442676 "DLAGG" 443226 NIL DLAGG (NIL T) -9 NIL 443456 NIL) (-243 439255 439919 439947 "DIVRING" 440039 T DIVRING (NIL) -9 NIL 440122 NIL) (-242 438492 438682 438982 "DIVRING-" 438987 NIL DIVRING- (NIL T) -8 NIL NIL NIL) (-241 436594 436951 437357 "DISPLAY" 438106 T DISPLAY (NIL) -7 NIL NIL NIL) (-240 430482 436508 436571 "DIRPROD" 436576 NIL DIRPROD (NIL NIL T) -8 NIL NIL NIL) (-239 429330 429533 429798 "DIRPROD2" 430275 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL NIL) (-238 418105 424111 424164 "DIRPCAT" 424574 NIL DIRPCAT (NIL NIL T) -9 NIL 425414 NIL) (-237 415431 416073 416954 "DIRPCAT-" 417291 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL NIL) (-236 414718 414878 415064 "DIOSP" 415265 T DIOSP (NIL) -7 NIL NIL NIL) (-235 411373 413630 413671 "DIOPS" 414105 NIL DIOPS (NIL T) -9 NIL 414334 NIL) (-234 410922 411036 411227 "DIOPS-" 411232 NIL DIOPS- (NIL T T) -8 NIL NIL NIL) (-233 409745 410373 410401 "DIFRING" 410588 T DIFRING (NIL) -9 NIL 410698 NIL) (-232 409391 409468 409620 "DIFRING-" 409625 NIL DIFRING- (NIL T) -8 NIL NIL NIL) (-231 407127 408399 408440 "DIFEXT" 408803 NIL DIFEXT (NIL T) -9 NIL 409097 NIL) (-230 405412 405840 406506 "DIFEXT-" 406511 NIL DIFEXT- (NIL T T) -8 NIL NIL NIL) (-229 402687 404944 404985 "DIAGG" 404990 NIL DIAGG (NIL T) -9 NIL 405010 NIL) (-228 402071 402228 402480 "DIAGG-" 402485 NIL DIAGG- (NIL T T) -8 NIL NIL NIL) (-227 397488 401030 401307 "DHMATRIX" 401840 NIL DHMATRIX (NIL T) -8 NIL NIL NIL) (-226 393100 394009 395019 "DFSFUN" 396498 T DFSFUN (NIL) -7 NIL NIL NIL) (-225 388178 392031 392343 "DFLOAT" 392808 T DFLOAT (NIL) -8 NIL NIL NIL) (-224 386441 386722 387111 "DFINTTLS" 387886 NIL DFINTTLS (NIL T T) -7 NIL NIL NIL) (-223 383470 384462 384862 "DERHAM" 386107 NIL DERHAM (NIL T NIL) -8 NIL NIL NIL) (-222 381271 383245 383334 "DEQUEUE" 383414 NIL DEQUEUE (NIL T) -8 NIL NIL NIL) (-221 380525 380658 380841 "DEGRED" 381133 NIL DEGRED (NIL T T) -7 NIL NIL NIL) (-220 376955 377700 378546 "DEFINTRF" 379753 NIL DEFINTRF (NIL T) -7 NIL NIL NIL) (-219 374510 374979 375571 "DEFINTEF" 376474 NIL DEFINTEF (NIL T T) -7 NIL NIL NIL) (-218 373860 374130 374245 "DEFAST" 374415 T DEFAST (NIL) -8 NIL NIL NIL) (-217 367864 373455 373604 "DECIMAL" 373731 T DECIMAL (NIL) -8 NIL NIL NIL) (-216 365376 365834 366340 "DDFACT" 367408 NIL DDFACT (NIL T T) -7 NIL NIL NIL) (-215 364972 365015 365166 "DBLRESP" 365327 NIL DBLRESP (NIL T T T T) -7 NIL NIL NIL) (-214 362844 363205 363565 "DBASE" 364739 NIL DBASE (NIL T) -8 NIL NIL NIL) (-213 362086 362324 362470 "DATAARY" 362743 NIL DATAARY (NIL NIL T) -8 NIL NIL NIL) (-212 361192 362045 362073 "D03FAFA" 362078 T D03FAFA (NIL) -8 NIL NIL NIL) (-211 360299 361151 361179 "D03EEFA" 361184 T D03EEFA (NIL) -8 NIL NIL NIL) (-210 358249 358715 359204 "D03AGNT" 359830 T D03AGNT (NIL) -7 NIL NIL NIL) (-209 357538 358208 358236 "D02EJFA" 358241 T D02EJFA (NIL) -8 NIL NIL NIL) (-208 356827 357497 357525 "D02CJFA" 357530 T D02CJFA (NIL) -8 NIL NIL NIL) (-207 356116 356786 356814 "D02BHFA" 356819 T D02BHFA (NIL) -8 NIL NIL NIL) (-206 355405 356075 356103 "D02BBFA" 356108 T D02BBFA (NIL) -8 NIL NIL NIL) (-205 348602 350191 351797 "D02AGNT" 353819 T D02AGNT (NIL) -7 NIL NIL NIL) (-204 346370 346893 347439 "D01WGTS" 348076 T D01WGTS (NIL) -7 NIL NIL NIL) (-203 345437 346329 346357 "D01TRNS" 346362 T D01TRNS (NIL) -8 NIL NIL NIL) (-202 344505 345396 345424 "D01GBFA" 345429 T D01GBFA (NIL) -8 NIL NIL NIL) (-201 343573 344464 344492 "D01FCFA" 344497 T D01FCFA (NIL) -8 NIL NIL NIL) (-200 342641 343532 343560 "D01ASFA" 343565 T D01ASFA (NIL) -8 NIL NIL NIL) (-199 341709 342600 342628 "D01AQFA" 342633 T D01AQFA (NIL) -8 NIL NIL NIL) (-198 340777 341668 341696 "D01APFA" 341701 T D01APFA (NIL) -8 NIL NIL NIL) (-197 339845 340736 340764 "D01ANFA" 340769 T D01ANFA (NIL) -8 NIL NIL NIL) (-196 338913 339804 339832 "D01AMFA" 339837 T D01AMFA (NIL) -8 NIL NIL NIL) (-195 337981 338872 338900 "D01ALFA" 338905 T D01ALFA (NIL) -8 NIL NIL NIL) (-194 337049 337940 337968 "D01AKFA" 337973 T D01AKFA (NIL) -8 NIL NIL NIL) (-193 336117 337008 337036 "D01AJFA" 337041 T D01AJFA (NIL) -8 NIL NIL NIL) (-192 329412 330965 332526 "D01AGNT" 334576 T D01AGNT (NIL) -7 NIL NIL NIL) (-191 328749 328877 329029 "CYCLOTOM" 329280 T CYCLOTOM (NIL) -7 NIL NIL NIL) (-190 325483 326197 326924 "CYCLES" 328042 T CYCLES (NIL) -7 NIL NIL NIL) (-189 324795 324929 325100 "CVMP" 325344 NIL CVMP (NIL T) -7 NIL NIL NIL) (-188 322636 322894 323263 "CTRIGMNP" 324523 NIL CTRIGMNP (NIL T T) -7 NIL NIL NIL) (-187 322072 322430 322503 "CTOR" 322583 T CTOR (NIL) -8 NIL NIL NIL) (-186 321581 321803 321904 "CTORKIND" 321991 T CTORKIND (NIL) -8 NIL NIL NIL) (-185 320872 321188 321216 "CTORCAT" 321398 T CTORCAT (NIL) -9 NIL 321511 NIL) (-184 320470 320581 320740 "CTORCAT-" 320745 NIL CTORCAT- (NIL T) -8 NIL NIL NIL) (-183 319959 320173 320271 "CTORCALL" 320392 T CTORCALL (NIL) -8 NIL NIL NIL) (-182 319333 319432 319585 "CSTTOOLS" 319856 NIL CSTTOOLS (NIL T T) -7 NIL NIL NIL) (-181 315132 315789 316547 "CRFP" 318645 NIL CRFP (NIL T T) -7 NIL NIL NIL) (-180 314607 314853 314945 "CRCEAST" 315060 T CRCEAST (NIL) -8 NIL NIL NIL) (-179 313654 313839 314067 "CRAPACK" 314411 NIL CRAPACK (NIL T) -7 NIL NIL NIL) (-178 313038 313139 313343 "CPMATCH" 313530 NIL CPMATCH (NIL T T T) -7 NIL NIL NIL) (-177 312763 312791 312897 "CPIMA" 313004 NIL CPIMA (NIL T T T) -7 NIL NIL NIL) (-176 309111 309783 310502 "COORDSYS" 312098 NIL COORDSYS (NIL T) -7 NIL NIL NIL) (-175 308523 308644 308786 "CONTOUR" 308989 T CONTOUR (NIL) -8 NIL NIL NIL) (-174 304414 306526 307018 "CONTFRAC" 308063 NIL CONTFRAC (NIL T) -8 NIL NIL NIL) (-173 304294 304315 304343 "CONDUIT" 304380 T CONDUIT (NIL) -9 NIL NIL NIL) (-172 303382 303936 303964 "COMRING" 303969 T COMRING (NIL) -9 NIL 304021 NIL) (-171 302436 302740 302924 "COMPPROP" 303218 T COMPPROP (NIL) -8 NIL NIL NIL) (-170 302097 302132 302260 "COMPLPAT" 302395 NIL COMPLPAT (NIL T T T) -7 NIL NIL NIL) (-169 292388 301906 302015 "COMPLEX" 302020 NIL COMPLEX (NIL T) -8 NIL NIL NIL) (-168 292024 292081 292188 "COMPLEX2" 292325 NIL COMPLEX2 (NIL T T) -7 NIL NIL NIL) (-167 291742 291777 291875 "COMPFACT" 291983 NIL COMPFACT (NIL T T) -7 NIL NIL NIL) (-166 275822 285816 285856 "COMPCAT" 286860 NIL COMPCAT (NIL T) -9 NIL 288208 NIL) (-165 265334 268261 271888 "COMPCAT-" 272244 NIL COMPCAT- (NIL T T) -8 NIL NIL NIL) (-164 265063 265091 265194 "COMMUPC" 265300 NIL COMMUPC (NIL T T T) -7 NIL NIL NIL) (-163 264857 264891 264950 "COMMONOP" 265024 T COMMONOP (NIL) -7 NIL NIL NIL) (-162 264413 264608 264695 "COMM" 264790 T COMM (NIL) -8 NIL NIL NIL) (-161 263989 264217 264292 "COMMAAST" 264358 T COMMAAST (NIL) -8 NIL NIL NIL) (-160 263238 263432 263460 "COMBOPC" 263798 T COMBOPC (NIL) -9 NIL 263973 NIL) (-159 262134 262344 262586 "COMBINAT" 263028 NIL COMBINAT (NIL T) -7 NIL NIL NIL) (-158 258591 259165 259792 "COMBF" 261556 NIL COMBF (NIL T T) -7 NIL NIL NIL) (-157 257349 257707 257942 "COLOR" 258376 T COLOR (NIL) -8 NIL NIL NIL) (-156 256825 257070 257162 "COLONAST" 257277 T COLONAST (NIL) -8 NIL NIL NIL) (-155 256465 256512 256637 "CMPLXRT" 256772 NIL CMPLXRT (NIL T T) -7 NIL NIL NIL) (-154 255913 256165 256264 "CLLCTAST" 256386 T CLLCTAST (NIL) -8 NIL NIL NIL) (-153 251411 252443 253523 "CLIP" 254853 T CLIP (NIL) -7 NIL NIL NIL) (-152 249757 250517 250756 "CLIF" 251238 NIL CLIF (NIL NIL T NIL) -8 NIL NIL NIL) (-151 245932 247903 247944 "CLAGG" 248873 NIL CLAGG (NIL T) -9 NIL 249409 NIL) (-150 244354 244811 245394 "CLAGG-" 245399 NIL CLAGG- (NIL T T) -8 NIL NIL NIL) (-149 243898 243983 244123 "CINTSLPE" 244263 NIL CINTSLPE (NIL T T) -7 NIL NIL NIL) (-148 241399 241870 242418 "CHVAR" 243426 NIL CHVAR (NIL T T T) -7 NIL NIL NIL) (-147 240573 241127 241155 "CHARZ" 241160 T CHARZ (NIL) -9 NIL 241175 NIL) (-146 240327 240367 240445 "CHARPOL" 240527 NIL CHARPOL (NIL T) -7 NIL NIL NIL) (-145 239385 239972 240000 "CHARNZ" 240047 T CHARNZ (NIL) -9 NIL 240103 NIL) (-144 237351 238075 238410 "CHAR" 239070 T CHAR (NIL) -8 NIL NIL NIL) (-143 237077 237138 237166 "CFCAT" 237277 T CFCAT (NIL) -9 NIL NIL NIL) (-142 236322 236433 236615 "CDEN" 236961 NIL CDEN (NIL T T T) -7 NIL NIL NIL) (-141 232287 235475 235755 "CCLASS" 236062 T CCLASS (NIL) -8 NIL NIL NIL) (-140 231594 231737 231900 "CATEGORY" 232144 T -10 (NIL) -8 NIL NIL NIL) (-139 231167 231513 231561 "CATCTOR" 231566 T CATCTOR (NIL) -8 NIL NIL NIL) (-138 230618 230870 230968 "CATAST" 231089 T CATAST (NIL) -8 NIL NIL NIL) (-137 230094 230339 230431 "CASEAST" 230546 T CASEAST (NIL) -8 NIL NIL NIL) (-136 225103 226123 226876 "CARTEN" 229397 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL NIL) (-135 224211 224359 224580 "CARTEN2" 224950 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL NIL) (-134 222527 223361 223618 "CARD" 223974 T CARD (NIL) -8 NIL NIL NIL) (-133 222103 222331 222406 "CAPSLAST" 222472 T CAPSLAST (NIL) -8 NIL NIL NIL) (-132 221607 221815 221843 "CACHSET" 221975 T CACHSET (NIL) -9 NIL 222053 NIL) (-131 221077 221399 221427 "CABMON" 221477 T CABMON (NIL) -9 NIL 221533 NIL) (-130 220550 220781 220891 "BYTEORD" 220987 T BYTEORD (NIL) -8 NIL NIL NIL) (-129 219529 220084 220226 "BYTE" 220389 T BYTE (NIL) -8 NIL NIL 220511) (-128 214879 219034 219206 "BYTEBUF" 219377 T BYTEBUF (NIL) -8 NIL NIL NIL) (-127 212388 214571 214678 "BTREE" 214805 NIL BTREE (NIL T) -8 NIL NIL NIL) (-126 209837 212036 212158 "BTOURN" 212298 NIL BTOURN (NIL T) -8 NIL NIL NIL) (-125 207207 209307 209348 "BTCAT" 209416 NIL BTCAT (NIL T) -9 NIL 209493 NIL) (-124 206874 206954 207103 "BTCAT-" 207108 NIL BTCAT- (NIL T T) -8 NIL NIL NIL) (-123 202139 206017 206045 "BTAGG" 206267 T BTAGG (NIL) -9 NIL 206428 NIL) (-122 201629 201754 201960 "BTAGG-" 201965 NIL BTAGG- (NIL T) -8 NIL NIL NIL) (-121 198624 200907 201122 "BSTREE" 201446 NIL BSTREE (NIL T) -8 NIL NIL NIL) (-120 197762 197888 198072 "BRILL" 198480 NIL BRILL (NIL T) -7 NIL NIL NIL) (-119 194414 196488 196529 "BRAGG" 197178 NIL BRAGG (NIL T) -9 NIL 197436 NIL) (-118 192943 193349 193904 "BRAGG-" 193909 NIL BRAGG- (NIL T T) -8 NIL NIL NIL) (-117 186172 192289 192473 "BPADICRT" 192791 NIL BPADICRT (NIL NIL) -8 NIL NIL NIL) (-116 184487 186109 186154 "BPADIC" 186159 NIL BPADIC (NIL NIL) -8 NIL NIL NIL) (-115 184185 184215 184329 "BOUNDZRO" 184451 NIL BOUNDZRO (NIL T T) -7 NIL NIL NIL) (-114 179413 180611 181523 "BOP" 183293 T BOP (NIL) -8 NIL NIL NIL) (-113 177194 177598 178073 "BOP1" 178971 NIL BOP1 (NIL T) -7 NIL NIL NIL) (-112 176019 176768 176917 "BOOLEAN" 177065 T BOOLEAN (NIL) -8 NIL NIL NIL) (-111 175298 175702 175756 "BMODULE" 175761 NIL BMODULE (NIL T T) -9 NIL 175826 NIL) (-110 171099 175096 175169 "BITS" 175245 T BITS (NIL) -8 NIL NIL NIL) (-109 170520 170639 170779 "BINDING" 170979 T BINDING (NIL) -8 NIL NIL NIL) (-108 164527 170117 170265 "BINARY" 170392 T BINARY (NIL) -8 NIL NIL NIL) (-107 162307 163782 163823 "BGAGG" 164083 NIL BGAGG (NIL T) -9 NIL 164220 NIL) (-106 162138 162170 162261 "BGAGG-" 162266 NIL BGAGG- (NIL T T) -8 NIL NIL NIL) (-105 161209 161522 161727 "BFUNCT" 161953 T BFUNCT (NIL) -8 NIL NIL NIL) (-104 159899 160077 160365 "BEZOUT" 161033 NIL BEZOUT (NIL T T T T T) -7 NIL NIL NIL) (-103 156368 158751 159081 "BBTREE" 159602 NIL BBTREE (NIL T) -8 NIL NIL NIL) (-102 156102 156155 156183 "BASTYPE" 156302 T BASTYPE (NIL) -9 NIL NIL NIL) (-101 155954 155983 156056 "BASTYPE-" 156061 NIL BASTYPE- (NIL T) -8 NIL NIL NIL) (-100 155388 155464 155616 "BALFACT" 155865 NIL BALFACT (NIL T T) -7 NIL NIL NIL) (-99 154244 154803 154989 "AUTOMOR" 155233 NIL AUTOMOR (NIL T) -8 NIL NIL NIL) (-98 153970 153975 154001 "ATTREG" 154006 T ATTREG (NIL) -9 NIL NIL NIL) (-97 152222 152667 153019 "ATTRBUT" 153636 T ATTRBUT (NIL) -8 NIL NIL NIL) (-96 151830 152050 152116 "ATTRAST" 152174 T ATTRAST (NIL) -8 NIL NIL NIL) (-95 151366 151479 151505 "ATRIG" 151706 T ATRIG (NIL) -9 NIL NIL NIL) (-94 151175 151216 151303 "ATRIG-" 151308 NIL ATRIG- (NIL T) -8 NIL NIL NIL) (-93 150820 151006 151032 "ASTCAT" 151037 T ASTCAT (NIL) -9 NIL 151067 NIL) (-92 150547 150606 150725 "ASTCAT-" 150730 NIL ASTCAT- (NIL T) -8 NIL NIL NIL) (-91 148696 150323 150411 "ASTACK" 150490 NIL ASTACK (NIL T) -8 NIL NIL NIL) (-90 147201 147498 147863 "ASSOCEQ" 148378 NIL ASSOCEQ (NIL T T) -7 NIL NIL NIL) (-89 146233 146860 146984 "ASP9" 147108 NIL ASP9 (NIL NIL) -8 NIL NIL NIL) (-88 145996 146181 146220 "ASP8" 146225 NIL ASP8 (NIL NIL) -8 NIL NIL NIL) (-87 144864 145601 145743 "ASP80" 145885 NIL ASP80 (NIL NIL) -8 NIL NIL NIL) (-86 143762 144499 144631 "ASP7" 144763 NIL ASP7 (NIL NIL) -8 NIL NIL NIL) (-85 142716 143439 143557 "ASP78" 143675 NIL ASP78 (NIL NIL) -8 NIL NIL NIL) (-84 141685 142396 142513 "ASP77" 142630 NIL ASP77 (NIL NIL) -8 NIL NIL NIL) (-83 140597 141323 141454 "ASP74" 141585 NIL ASP74 (NIL NIL) -8 NIL NIL NIL) (-82 139497 140232 140364 "ASP73" 140496 NIL ASP73 (NIL NIL) -8 NIL NIL NIL) (-81 138601 139323 139423 "ASP6" 139428 NIL ASP6 (NIL NIL) -8 NIL NIL NIL) (-80 137545 138278 138396 "ASP55" 138514 NIL ASP55 (NIL NIL) -8 NIL NIL NIL) (-79 136494 137219 137338 "ASP50" 137457 NIL ASP50 (NIL NIL) -8 NIL NIL NIL) (-78 135582 136195 136305 "ASP4" 136415 NIL ASP4 (NIL NIL) -8 NIL NIL NIL) (-77 134670 135283 135393 "ASP49" 135503 NIL ASP49 (NIL NIL) -8 NIL NIL NIL) (-76 133454 134209 134377 "ASP42" 134559 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-75 132230 132987 133157 "ASP41" 133341 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-74 131180 131907 132025 "ASP35" 132143 NIL ASP35 (NIL NIL) -8 NIL NIL NIL) (-73 130945 131128 131167 "ASP34" 131172 NIL ASP34 (NIL NIL) -8 NIL NIL NIL) (-72 130682 130749 130825 "ASP33" 130900 NIL ASP33 (NIL NIL) -8 NIL NIL NIL) (-71 129575 130317 130449 "ASP31" 130581 NIL ASP31 (NIL NIL) -8 NIL NIL NIL) (-70 129340 129523 129562 "ASP30" 129567 NIL ASP30 (NIL NIL) -8 NIL NIL NIL) (-69 129075 129144 129220 "ASP29" 129295 NIL ASP29 (NIL NIL) -8 NIL NIL NIL) (-68 128840 129023 129062 "ASP28" 129067 NIL ASP28 (NIL NIL) -8 NIL NIL NIL) (-67 128605 128788 128827 "ASP27" 128832 NIL ASP27 (NIL NIL) -8 NIL NIL NIL) (-66 127689 128303 128414 "ASP24" 128525 NIL ASP24 (NIL NIL) -8 NIL NIL NIL) (-65 126765 127491 127603 "ASP20" 127608 NIL ASP20 (NIL NIL) -8 NIL NIL NIL) (-64 125853 126466 126576 "ASP1" 126686 NIL ASP1 (NIL NIL) -8 NIL NIL NIL) (-63 124795 125527 125646 "ASP19" 125765 NIL ASP19 (NIL NIL) -8 NIL NIL NIL) (-62 124532 124599 124675 "ASP12" 124750 NIL ASP12 (NIL NIL) -8 NIL NIL NIL) (-61 123384 124131 124275 "ASP10" 124419 NIL ASP10 (NIL NIL) -8 NIL NIL NIL) (-60 121235 123228 123319 "ARRAY2" 123324 NIL ARRAY2 (NIL T) -8 NIL NIL NIL) (-59 117000 120883 120997 "ARRAY1" 121152 NIL ARRAY1 (NIL T) -8 NIL NIL NIL) (-58 116032 116205 116426 "ARRAY12" 116823 NIL ARRAY12 (NIL T T) -7 NIL NIL NIL) (-57 110344 112262 112337 "ARR2CAT" 114967 NIL ARR2CAT (NIL T T T) -9 NIL 115725 NIL) (-56 107778 108522 109476 "ARR2CAT-" 109481 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL NIL) (-55 107095 107405 107530 "ARITY" 107671 T ARITY (NIL) -8 NIL NIL NIL) (-54 105871 106023 106322 "APPRULE" 106931 NIL APPRULE (NIL T T T) -7 NIL NIL NIL) (-53 105522 105570 105689 "APPLYORE" 105817 NIL APPLYORE (NIL T T T) -7 NIL NIL NIL) (-52 104876 105115 105235 "ANY" 105420 T ANY (NIL) -8 NIL NIL NIL) (-51 104154 104277 104434 "ANY1" 104750 NIL ANY1 (NIL T) -7 NIL NIL NIL) (-50 101684 102591 102918 "ANTISYM" 103878 NIL ANTISYM (NIL T NIL) -8 NIL NIL NIL) (-49 101176 101391 101487 "ANON" 101606 T ANON (NIL) -8 NIL NIL NIL) (-48 95425 99715 100169 "AN" 100740 T AN (NIL) -8 NIL NIL NIL) (-47 91323 92711 92762 "AMR" 93510 NIL AMR (NIL T T) -9 NIL 94110 NIL) (-46 90435 90656 91019 "AMR-" 91024 NIL AMR- (NIL T T T) -8 NIL NIL NIL) (-45 74874 90352 90413 "ALIST" 90418 NIL ALIST (NIL T T) -8 NIL NIL NIL) (-44 71676 74468 74637 "ALGSC" 74792 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-43 68231 68786 69393 "ALGPKG" 71116 NIL ALGPKG (NIL T T) -7 NIL NIL NIL) (-42 67508 67609 67793 "ALGMFACT" 68117 NIL ALGMFACT (NIL T T T) -7 NIL NIL NIL) (-41 63543 64122 64716 "ALGMANIP" 67092 NIL ALGMANIP (NIL T T) -7 NIL NIL NIL) (-40 54913 63169 63319 "ALGFF" 63476 NIL ALGFF (NIL T T T NIL) -8 NIL NIL NIL) (-39 54109 54240 54419 "ALGFACT" 54771 NIL ALGFACT (NIL T) -7 NIL NIL NIL) (-38 53050 53650 53688 "ALGEBRA" 53693 NIL ALGEBRA (NIL T) -9 NIL 53734 NIL) (-37 52768 52827 52959 "ALGEBRA-" 52964 NIL ALGEBRA- (NIL T T) -8 NIL NIL NIL) (-36 34861 50770 50822 "ALAGG" 50958 NIL ALAGG (NIL T T) -9 NIL 51119 NIL) (-35 34397 34510 34536 "AHYP" 34737 T AHYP (NIL) -9 NIL NIL NIL) (-34 33328 33576 33602 "AGG" 34101 T AGG (NIL) -9 NIL 34380 NIL) (-33 32762 32924 33138 "AGG-" 33143 NIL AGG- (NIL T) -8 NIL NIL NIL) (-32 30568 30991 31396 "AF" 32404 NIL AF (NIL T T) -7 NIL NIL NIL) (-31 30048 30293 30383 "ADDAST" 30496 T ADDAST (NIL) -8 NIL NIL NIL) (-30 29316 29575 29731 "ACPLOT" 29910 T ACPLOT (NIL) -8 NIL NIL NIL) (-29 18639 26443 26481 "ACFS" 27088 NIL ACFS (NIL T) -9 NIL 27327 NIL) (-28 16666 17156 17918 "ACFS-" 17923 NIL ACFS- (NIL T T) -8 NIL NIL NIL) (-27 12784 14713 14739 "ACF" 15618 T ACF (NIL) -9 NIL 16031 NIL) (-26 11488 11822 12315 "ACF-" 12320 NIL ACF- (NIL T) -8 NIL NIL NIL) (-25 11060 11255 11281 "ABELSG" 11373 T ABELSG (NIL) -9 NIL 11438 NIL) (-24 10927 10952 11018 "ABELSG-" 11023 NIL ABELSG- (NIL T) -8 NIL NIL NIL) (-23 10270 10557 10583 "ABELMON" 10753 T ABELMON (NIL) -9 NIL 10865 NIL) (-22 9934 10018 10156 "ABELMON-" 10161 NIL ABELMON- (NIL T) -8 NIL NIL NIL) (-21 9282 9654 9680 "ABELGRP" 9752 T ABELGRP (NIL) -9 NIL 9827 NIL) (-20 8745 8874 9090 "ABELGRP-" 9095 NIL ABELGRP- (NIL T) -8 NIL NIL NIL) (-19 4334 8084 8123 "A1AGG" 8128 NIL A1AGG (NIL T) -9 NIL 8168 NIL) (-18 30 1252 2814 "A1AGG-" 2819 NIL A1AGG- (NIL T T) -8 NIL NIL NIL)) \ No newline at end of file
diff --git a/src/share/algebra/operation.daase b/src/share/algebra/operation.daase
index 1beb7866..3f082283 100644
--- a/src/share/algebra/operation.daase
+++ b/src/share/algebra/operation.daase
@@ -1,41 +1,13 @@
-(732389 . 3453749794)
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049))
- (-4 *2 (-1224 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-755)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-566)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
- (-4 *4 (-13 (-1099) (-34))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-771))) (-5 *3 (-171)) (-5 *1 (-1163 *4 *5))
- (-14 *4 (-921)) (-4 *5 (-1049)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *5)) (-5 *4 (-921)) (-4 *5 (-850))
- (-5 *2 (-59 (-644 (-672 *5)))) (-5 *1 (-672 *5)))))
+(732220 . 3453990497)
+(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
+ (-4 *3 (-1240 *2)))))
(((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1214))
(-4 *4 (-375 *2)) (-4 *5 (-375 *2))))
@@ -67,14 +39,14 @@
(-12 (-5 *3 (-1175)) (-5 *2 (-245 (-1157))) (-5 *1 (-214 *4))
(-4 *4
(-13 (-850)
- (-10 -8 (-15 -4386 ((-1157) $ *3)) (-15 -1697 ((-1269) $))
- (-15 -2509 ((-1269) $)))))))
+ (-10 -8 (-15 -4393 ((-1157) $ *3)) (-15 -1736 ((-1269) $))
+ (-15 -3018 ((-1269) $)))))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-989)) (-5 *1 (-214 *3))
(-4 *3
(-13 (-850)
- (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 ((-1269) $))
- (-15 -2509 ((-1269) $)))))))
+ (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 ((-1269) $))
+ (-15 -3018 ((-1269) $)))))))
((*1 *2 *1 *3)
(-12 (-5 *3 "count") (-5 *2 (-771)) (-5 *1 (-245 *4)) (-4 *4 (-850))))
((*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-245 *3)) (-4 *3 (-850))))
@@ -161,100 +133,54 @@
(-12 (-5 *2 "rest") (-4 *1 (-1252 *3)) (-4 *3 (-1214))))
((*1 *2 *1 *3)
(-12 (-5 *3 "first") (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-566))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-597 *3)) (-4 *3 (-1049))))
((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-644 (-644 (-566)))) (-5 *1 (-971))
- (-5 *3 (-644 (-566))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-1091 (-952 (-566)))) (-5 *3 (-952 (-566)))
- (-5 *1 (-331))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1091 (-952 (-566)))) (-5 *1 (-331)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 (-566))) (-4 *3 (-1049)) (-5 *1 (-99 *3))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-99 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-99 *3)))))
-(((*1 *1 *1) (-4 *1 (-1059))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-612 *3)) (-4 *3 (-13 (-432 *5) (-27) (-1199)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2 (-587 *3)) (-5 *1 (-568 *5 *3 *6)) (-4 *6 (-1099)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |preimage| (-644 *3)) (|:| |image| (-644 *3))))
- (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
+ (-12 (-4 *1 (-973 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-792))
+ (-4 *5 (-850)) (-5 *2 (-112)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-771)) (-4 *5 (-1049)) (-5 *2 (-566))
- (-5 *1 (-445 *5 *3 *6)) (-4 *3 (-1240 *5))
- (-4 *6 (-13 (-406) (-1038 *5) (-365) (-1199) (-285)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5))
- (-4 *3 (-1240 *4))
- (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))))
+ (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566)))
+ (-5 *2 (-1264 (-409 (-566)))) (-5 *1 (-1291 *4)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-612 *2))) (-5 *4 (-644 (-1175)))
+ (-4 *2 (-13 (-432 (-169 *5)) (-1002) (-1199))) (-4 *5 (-558))
+ (-5 *1 (-600 *5 *6 *2)) (-4 *6 (-13 (-432 *5) (-1002) (-1199))))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-644 (-409 *7)))
+ (-4 *7 (-1240 *6)) (-5 *3 (-409 *7)) (-4 *6 (-365))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-576 *6 *7)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-644 (-952 *3))) (-4 *3 (-454)) (-5 *1 (-362 *3 *4))
- (-14 *4 (-644 (-1175)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-452 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6))
- (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-5 *1 (-452 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6))
- (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-5 *1 (-452 *4 *5 *6 *7))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850))
- (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-644 (-780 *3 (-864 *4)))) (-4 *3 (-454))
- (-14 *4 (-644 (-1175))) (-5 *1 (-628 *3 *4)))))
-(((*1 *2)
- (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
- (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
- (-5 *1 (-988 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
- (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
- (-5 *1 (-1106 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))))
-(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
- (-5 *2 (-1035)) (-5 *1 (-755)))))
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175))
- (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -4368 *6) (|:| |sol?| (-112))) (-566)
- *6))
- (-4 *6 (-365)) (-4 *7 (-1240 *6))
- (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6)))
- (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-558)))))
+(((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))))
+(((*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199)))))
+ ((*1 *1 *1 *1) (-4 *1 (-793))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-126 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2))
- (-4 *2 (-1255 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-4 *4 (-1240 *3))
- (-4 *5 (-724 *3 *4)) (-5 *1 (-543 *3 *4 *5 *2)) (-4 *2 (-1255 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-5 *1 (-544 *3 *2))
- (-4 *2 (-1255 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147)))
- (-5 *1 (-1151 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+ (-12
+ (-5 *2
+ (-506 (-409 (-566)) (-240 *4 (-771)) (-864 *3)
+ (-247 *3 (-409 (-566)))))
+ (-14 *3 (-644 (-1175))) (-14 *4 (-771)) (-5 *1 (-507 *3 *4)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-771)) (-4 *5 (-351)) (-4 *6 (-1240 *5))
+ (-5 *2
+ (-644
+ (-2 (|:| -1575 (-689 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-689 *6)))))
+ (-5 *1 (-500 *5 *6 *7))
+ (-5 *3
+ (-2 (|:| -1575 (-689 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-689 *6))))
+ (-4 *7 (-1240 *6)))))
(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1214))))
((*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-850))))
((*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850))))
@@ -263,202 +189,240 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
(-4 *3 (-1240 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099))
- (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-596 *3)) (-4 *3 (-1049))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-558)) (-5 *2 (-112)) (-5 *1 (-623 *3 *4))
- (-4 *4 (-1240 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-726))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4))
+ (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-850)) (-5 *1 (-1185 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-365) (-848))) (-5 *1 (-181 *3 *2))
+ (-4 *2 (-1240 (-169 *3))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))))
+(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-128)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *2 (-381)) (-5 *1 (-785 *3)) (-4 *3 (-614 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-921)) (-5 *2 (-381)) (-5 *1 (-785 *3))
+ (-4 *3 (-614 *2))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 *2))
+ (-5 *2 (-381)) (-5 *1 (-785 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049))
+ (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-4 *4 (-614 *2))
+ (-5 *2 (-381)) (-5 *1 (-785 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558))
+ (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850))
+ (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850))
+ (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-689 *2)) (-4 *2 (-172)) (-5 *1 (-146 *2))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-172)) (-4 *2 (-1240 *4)) (-5 *1 (-177 *4 *2 *3))
+ (-4 *3 (-724 *4 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 (-409 (-952 *5)))) (-5 *4 (-1175))
+ (-5 *2 (-952 *5)) (-5 *1 (-293 *5)) (-4 *5 (-454))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-689 (-409 (-952 *4)))) (-5 *2 (-952 *4))
+ (-5 *1 (-293 *4)) (-4 *4 (-454))))
((*1 *2 *1)
- (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
- (-5 *2 (-112)))))
-(((*1 *2)
- (-12
+ (-12 (-4 *1 (-372 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-689 (-169 (-409 (-566)))))
+ (-5 *2 (-952 (-169 (-409 (-566))))) (-5 *1 (-764 *4))
+ (-4 *4 (-13 (-365) (-848)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *4 (-1175))
+ (-5 *2 (-952 (-169 (-409 (-566))))) (-5 *1 (-764 *5))
+ (-4 *5 (-13 (-365) (-848)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *2 (-952 (-409 (-566))))
+ (-5 *1 (-779 *4)) (-4 *4 (-13 (-365) (-848)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *4 (-1175))
+ (-5 *2 (-952 (-409 (-566)))) (-5 *1 (-779 *5))
+ (-4 *5 (-13 (-365) (-848))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1255 *4))
+ (-4 *4 (-38 (-409 (-566))))
+ (-5 *2 (-1 (-1155 *4) (-1155 *4) (-1155 *4))) (-5 *1 (-1257 *4 *5)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -2883 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-365)) (-4 *7 (-1240 *6))
(-5 *2
- (-1264 (-644 (-2 (|:| -2212 (-910 *3)) (|:| -2168 (-1119))))))
- (-5 *1 (-353 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921))))
- ((*1 *2)
- (-12 (-5 *2 (-1264 (-644 (-2 (|:| -2212 *3) (|:| -2168 (-1119))))))
- (-5 *1 (-354 *3 *4)) (-4 *3 (-351)) (-14 *4 (-3 (-1171 *3) *2))))
- ((*1 *2)
- (-12 (-5 *2 (-1264 (-644 (-2 (|:| -2212 *3) (|:| -2168 (-1119))))))
- (-5 *1 (-355 *3 *4)) (-4 *3 (-351)) (-14 *4 (-921)))))
+ (-3 (-2 (|:| |answer| (-409 *7)) (|:| |a0| *6))
+ (-2 (|:| -2883 (-409 *7)) (|:| |coeff| (-409 *7))) "failed"))
+ (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
+(((*1 *1) (-5 *1 (-1265))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2662 *3) (|:| |coef1| (-782 *3))))
+ (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))))
+(((*1 *2 *2 *3 *4 *5)
+ (-12 (-5 *2 (-644 *9)) (-5 *3 (-1 (-112) *9))
+ (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9))
+ (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558)) (-4 *7 (-793))
+ (-4 *8 (-850)) (-5 *1 (-977 *6 *7 *8 *9)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-877 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-879 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-882 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-759)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-324 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-131)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1552 *4)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *1 *1) (-5 *1 (-48)))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1214))
- (-4 *2 (-1214)) (-5 *1 (-58 *5 *2))))
- ((*1 *2 *3 *1 *2 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1099)) (|has| *1 (-6 -4417))
- (-4 *1 (-151 *2)) (-4 *2 (-1214))))
- ((*1 *2 *3 *1 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4417)) (-4 *1 (-151 *2))
- (-4 *2 (-1214))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4417)) (-4 *1 (-151 *2))
- (-4 *2 (-1214))))
+ (-12 (-5 *3 (-1264 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-365))
+ (-4 *1 (-724 *5 *6)) (-4 *5 (-172)) (-4 *6 (-1240 *5))
+ (-5 *2 (-689 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1214)) (-5 *1 (-873 *3 *2)) (-4 *3 (-1214))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-921))
+ (-5 *2
+ (-3 (-1171 *4)
+ (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119)))))))
+ (-5 *1 (-348 *4)) (-4 *4 (-351)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4))
+ (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112))))
((*1 *2 *3)
- (-12 (-4 *4 (-1049))
- (-5 *2 (-2 (|:| -3589 (-1171 *4)) (|:| |deg| (-921))))
- (-5 *1 (-221 *4 *5)) (-5 *3 (-1171 *4)) (-4 *5 (-558))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-240 *5 *6)) (-14 *5 (-771))
- (-4 *6 (-1214)) (-4 *2 (-1214)) (-5 *1 (-239 *5 *6 *2))))
- ((*1 *1 *2 *3)
- (-12 (-4 *4 (-172)) (-5 *1 (-290 *4 *2 *3 *5 *6 *7))
- (-4 *2 (-1240 *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 (-317 *2)) (-4 *2 (-558)) (-4 *2 (-1099))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-337 *2 *3 *4 *5)) (-4 *2 (-365)) (-4 *3 (-1240 *2))
- (-4 *4 (-1240 (-409 *3))) (-4 *5 (-344 *2 *3 *4))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1214)) (-4 *2 (-1214))
- (-5 *1 (-373 *5 *4 *2 *6)) (-4 *4 (-375 *5)) (-4 *6 (-375 *2))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1099)) (-4 *2 (-1099))
- (-5 *1 (-425 *5 *4 *2 *6)) (-4 *4 (-427 *5)) (-4 *6 (-427 *2))))
- ((*1 *1 *1) (-5 *1 (-497)))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-644 *5)) (-4 *5 (-1214))
- (-4 *2 (-1214)) (-5 *1 (-642 *5 *2))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1049)) (-4 *2 (-1049))
- (-4 *6 (-375 *5)) (-4 *7 (-375 *5)) (-4 *8 (-375 *2))
- (-4 *9 (-375 *2)) (-5 *1 (-685 *5 *6 *7 *4 *2 *8 *9 *10))
- (-4 *4 (-687 *5 *6 *7)) (-4 *10 (-687 *2 *8 *9))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-1049)) (-5 *1 (-712 *3 *2)) (-4 *2 (-1240 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-409 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-365))
- (-4 *3 (-172)) (-4 *1 (-724 *3 *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-172)) (-4 *1 (-724 *3 *2)) (-4 *2 (-1240 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-958 *5)) (-4 *5 (-1214))
- (-4 *2 (-1214)) (-5 *1 (-957 *5 *2))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-1034 *3 *4 *5 *2 *6)) (-4 *2 (-949 *3 *4 *5))
- (-14 *6 (-644 *2))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1049)) (-4 *2 (-1049))
- (-14 *5 (-771)) (-14 *6 (-771)) (-4 *8 (-238 *6 *7))
- (-4 *9 (-238 *5 *7)) (-4 *10 (-238 *6 *2)) (-4 *11 (-238 *5 *2))
- (-5 *1 (-1055 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12))
- (-4 *4 (-1053 *5 *6 *7 *8 *9)) (-4 *12 (-1053 *5 *6 *2 *10 *11))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1155 *5)) (-4 *5 (-1214))
- (-4 *2 (-1214)) (-5 *1 (-1153 *5 *2))))
- ((*1 *2 *2 *1 *3 *4)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2))
- (-4 *1 (-1207 *5 *6 *7 *2)) (-4 *5 (-558)) (-4 *6 (-793))
- (-4 *7 (-850)) (-4 *2 (-1064 *5 *6 *7))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1264 *5)) (-4 *5 (-1214))
- (-4 *2 (-1214)) (-5 *1 (-1263 *5 *2)))))
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-250)) (-5 *1 (-334)))))
+(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1222))))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-222 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-255 *3))))
+ ((*1 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1264 (-1264 *4))) (-4 *4 (-1049)) (-5 *2 (-689 *4))
- (-5 *1 (-1029 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1049)) (-4 *2 (-687 *4 *5 *6))
- (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1240 *4)) (-4 *5 (-375 *4))
- (-4 *6 (-375 *4)))))
-(((*1 *1 *1) (-12 (-4 *1 (-119 *2)) (-4 *2 (-1214))))
- ((*1 *1 *1) (-12 (-5 *1 (-672 *2)) (-4 *2 (-850))))
- ((*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850))))
- ((*1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
- (-4 *3 (-1240 *2)))))
+ (-12 (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *3))
+ (-4 *3 (-1240 (-409 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-824)) (-5 *1 (-825)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-874)) (-5 *2 (-1269)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-771)))))
+(((*1 *1) (-5 *1 (-225))) ((*1 *1) (-5 *1 (-381))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-771)) (-4 *4 (-13 (-558) (-147)))
+ (-5 *1 (-1234 *4 *2)) (-4 *2 (-1240 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-1064 *4 *5 *6)) (-4 *4 (-558))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *2)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-644 *6)) (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
+ (-4 *3 (-558)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-482)))))
(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-365)) (-4 *3 (-1049))
- (-5 *1 (-1159 *3)))))
+ (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-558))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-558)))))
+(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381))))
+ ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-365))
- (-5 *2 (-644 (-2 (|:| C (-689 *5)) (|:| |g| (-1264 *5)))))
- (-5 *1 (-978 *5)) (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)))))
-(((*1 *1) (-5 *1 (-1269))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049))
+ (-12 (-5 *4 (-921)) (-5 *2 (-1171 *3)) (-5 *1 (-1188 *3))
+ (-4 *3 (-365)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *1 (-103 *3)) (-4 *3 (-1099)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049))
(-14 *4 (-644 (-1175)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1214))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1) (-4 *1 (-285)))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-664 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-5 *1 (-627 *3 *4 *5))
+ (-14 *5 (-921))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-771)) (-4 *4 (-13 (-1049) (-717 (-409 (-566)))))
+ (-4 *5 (-850)) (-5 *1 (-1280 *4 *5 *2)) (-4 *2 (-1285 *5 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4))
+ (-4 *4 (-717 (-409 (-566)))) (-4 *3 (-850)) (-4 *4 (-172)))))
+(((*1 *1 *1) (-5 *1 (-862)))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850)))
- (-14 *4 (-644 (-1175)))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-850))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-677 *3)) (-4 *3 (-850))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-893 *3)) (-4 *3 (-850)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *3)
- (-12
+ (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099))))
+ ((*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1156))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1175)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-771)) (-4 *5 (-558))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147))
+ (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-977 *3 *4 *5 *6)))))
+(((*1 *1) (-12 (-4 *1 (-467 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
+ ((*1 *1) (-5 *1 (-538))) ((*1 *1) (-4 *1 (-722)))
+ ((*1 *1) (-4 *1 (-726)))
+ ((*1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099))))
+ ((*1 *1) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850)))))
+(((*1 *1 *1 *1) (-4 *1 (-547))))
+(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
+ (-12 (-5 *2 (-566))
(-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-381)) (-5 *1 (-205)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-612 *6)) (-4 *6 (-13 (-432 *5) (-27) (-1199)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2 (-1171 (-409 (-1171 *6)))) (-5 *1 (-562 *5 *6 *7))
- (-5 *3 (-1171 *6)) (-4 *7 (-1099))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1240 *3)) (-5 *1 (-712 *3 *2)) (-4 *3 (-1049))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-724 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3))))
- ((*1 *2 *3 *4 *4 *5 *6 *7 *8)
- (|partial| -12 (-5 *4 (-1171 *11)) (-5 *6 (-644 *10))
- (-5 *7 (-644 (-771))) (-5 *8 (-644 *11)) (-4 *10 (-850))
- (-4 *11 (-308)) (-4 *9 (-793)) (-4 *5 (-949 *11 *9 *10))
- (-5 *2 (-644 (-1171 *5))) (-5 *1 (-742 *9 *10 *11 *5))
- (-5 *3 (-1171 *5))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-949 *3 *4 *5)) (-5 *1 (-1034 *3 *4 *5 *2 *6))
- (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-14 *6 (-644 *2)))))
-(((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1138))))
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-771)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-793)) (-4 *4 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *7 (-850))
+ (-5 *1 (-451 *5 *6 *7 *4)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308))
- (-5 *2 (-644 (-771))) (-5 *1 (-778 *3 *4 *5 *6 *7))
- (-4 *3 (-1240 *6)) (-4 *7 (-949 *6 *4 *5)))))
+ (-12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-1 (-112) *5))
+ (-5 *1 (-890 *4 *5)) (-4 *5 (-1214))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1165)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2))
+ (-4 *2 (-1240 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *2 (-1035)) (-5 *1 (-754)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1093 (-843 (-381)))) (-5 *2 (-1093 (-843 (-225))))
+ (-5 *1 (-306)))))
(((*1 *2 *2)
(-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2))
(-4 *2 (-1255 *3))))
@@ -471,445 +435,173 @@
((*1 *2 *2)
(-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147)))
(-5 *1 (-1151 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-409 (-566))))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-3 (-112) (-644 *1)))
- (-4 *1 (-1070 *4 *5 *6 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *1) (-12 (-5 *2 (-485)) (-5 *1 (-218))))
- ((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214))))
- ((*1 *2 *1) (-12 (-5 *2 (-485)) (-5 *1 (-676))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)))))
-(((*1 *1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
-(((*1 *2 *3)
- (-12 (-4 *2 (-1240 *4)) (-5 *1 (-809 *4 *2 *3 *5))
- (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2))
- (-4 *5 (-656 (-409 *2))))))
-(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *3 (-566)) (-5 *2 (-112)) (-5 *1 (-482)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-644 *3)) (-5 *1 (-961 *3)) (-4 *3 (-547)))))
-(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225)))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-225))
- (-5 *2 (-1035)) (-5 *1 (-755))))
- ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225)))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-390))
- (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-303))))
- ((*1 *1 *1) (-4 *1 (-303)))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
- ((*1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
- (-5 *2 (-689 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-558)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
- (-5 *1 (-1204 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *1 *2 *3 *3 *3 *4)
- (-12 (-4 *4 (-365)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3)))
- (-4 *1 (-337 *4 *3 *5 *2)) (-4 *2 (-344 *4 *3 *5))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *3 (-566)) (-4 *2 (-365)) (-4 *4 (-1240 *2))
- (-4 *5 (-1240 (-409 *4))) (-4 *1 (-337 *2 *4 *5 *6))
- (-4 *6 (-344 *2 *4 *5))))
- ((*1 *1 *2 *2)
- (-12 (-4 *2 (-365)) (-4 *3 (-1240 *2)) (-4 *4 (-1240 (-409 *3)))
- (-4 *1 (-337 *2 *3 *4 *5)) (-4 *5 (-344 *2 *3 *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
- (-4 *1 (-337 *3 *4 *5 *2)) (-4 *2 (-344 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-415 *4 (-409 *4) *5 *6)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-4 *3 (-365))
- (-4 *1 (-337 *3 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-977 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-451 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1264 *5)) (-4 *5 (-639 *4)) (-4 *4 (-558))
- (-5 *2 (-112)) (-5 *1 (-638 *4 *5)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4417)) (-4 *1 (-604 *4 *3)) (-4 *4 (-1099))
- (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-112)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-351)) (-5 *3 (-566)) (-5 *2 (-1187 (-921) (-771))))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-558)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
- (-5 *1 (-1204 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-409 (-566))))
- (-5 *2 (-2 (|:| -3076 (-1155 *4)) (|:| -3089 (-1155 *4))))
- (-5 *1 (-1161 *4)) (-5 *3 (-1155 *4)))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
-(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793))
- (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8))
- (-5 *2
- (-2 (|:| -3525 (-644 *9)) (|:| -2248 *4) (|:| |ineq| (-644 *9))))
- (-5 *1 (-988 *6 *7 *8 *9 *4)) (-5 *3 (-644 *9))
- (-4 *4 (-1070 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
- (|partial| -12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793))
- (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8))
+(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-588 *3)) (-4 *3 (-547)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *1 *1) (-5 *1 (-225))) ((*1 *1 *1) (-5 *1 (-381)))
+ ((*1 *1) (-5 *1 (-381))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-14 *4 (-644 (-1175))) (-4 *2 (-172))
+ (-4 *3 (-238 (-3020 *4) (-771)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2208 *5) (|:| -2456 *3))
+ (-2 (|:| -2208 *5) (|:| -2456 *3))))
+ (-5 *1 (-463 *4 *2 *5 *3 *6 *7)) (-4 *5 (-850))
+ (-4 *7 (-949 *2 *3 (-864 *4))))))
+(((*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-1157)))))
+(((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566))))
(-5 *2
- (-2 (|:| -3525 (-644 *9)) (|:| -2248 *4) (|:| |ineq| (-644 *9))))
- (-5 *1 (-1106 *6 *7 *8 *9 *4)) (-5 *3 (-644 *9))
- (-4 *4 (-1070 *6 *7 *8 *9)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-454))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *5 (-909)) (-5 *1 (-459 *3 *4 *5 *6))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-909)))))
-(((*1 *1 *1) (-5 *1 (-862)))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099))))
- ((*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1156))))
- ((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1175)))))
-(((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-547))))
- ((*1 *1 *1) (-4 *1 (-1059))))
+ (-2 (|:| |a| *6) (|:| |b| (-409 *6)) (|:| |c| (-409 *6))
+ (|:| -1493 *6)))
+ (-5 *1 (-1015 *5 *6)) (-5 *3 (-409 *6)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-752)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-112)) (-5 *1 (-301)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
- (-12 (-5 *4 (-644 (-112))) (-5 *5 (-689 (-225)))
- (-5 *6 (-689 (-566))) (-5 *7 (-225)) (-5 *3 (-566)) (-5 *2 (-1035))
- (-5 *1 (-754)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267))))
- ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793))
- (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1068 *5 *6 *7 *8 *9))))
+ (-12 (-5 *3 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-5 *2 (-1269)) (-5 *1 (-1178))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793))
- (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351))
- (-4 *2
- (-13 (-404)
- (-10 -7 (-15 -2512 (*2 *4)) (-15 -3712 ((-921) *2))
- (-15 -1990 ((-1264 *2) (-921))) (-15 -2752 (*2 *2)))))
- (-5 *1 (-358 *2 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1155 (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4))
- (-4 *4 (-38 (-409 (-566)))) (-4 *4 (-1049)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *4 (-365)) (-4 *5 (-1240 *4)) (-5 *2 (-1269))
- (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1240 (-409 *5))) (-14 *7 *6))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1157)) (-4 *4 (-13 (-308) (-147)))
- (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793))
- (-5 *2
- (-644
- (-2 (|:| |eqzro| (-644 *7)) (|:| |neqzro| (-644 *7))
- (|:| |wcond| (-644 (-952 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1264 (-409 (-952 *4))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *4))))))))))
- (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-52)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331))
- (-5 *1 (-333))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1175)) (-5 *4 (-1091 (-952 (-566)))) (-5 *2 (-331))
- (-5 *1 (-333))))
- ((*1 *1 *2 *2 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-675 *3)) (-4 *3 (-1049))
- (-4 *3 (-1099)))))
-(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381)))))
-(((*1 *1 *1) (-5 *1 (-1062))))
-(((*1 *2)
- (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5)))
- (-5 *2 (-771)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6))))
- ((*1 *2)
+ (-12 (-5 *3 (-1175))
+ (-5 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-5 *2 (-1269))
+ (-5 *1 (-1178))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *3 (-1175))
+ (-5 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-5 *2 (-1269))
+ (-5 *1 (-1178)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *3 (-1218)) (-4 *5 (-1240 *3)) (-4 *6 (-1240 (-409 *5)))
+ (-5 *2 (-112)) (-5 *1 (-343 *4 *3 *5 *6)) (-4 *4 (-344 *3 *5 *6))))
+ ((*1 *2 *3 *3)
(-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927))
- (-5 *1 (-925 *3)) (-4 *3 (-614 (-538)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175)) (-5 *2 (-927)) (-5 *1 (-925 *3))
- (-4 *3 (-614 (-538)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-927))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-927)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-862)))))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1214)) (-5 *1 (-873 *3 *2)) (-4 *3 (-1214))))
- ((*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-295 (-843 *3))) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *2
- (-3 (-843 *3)
- (-2 (|:| |leftHandLimit| (-3 (-843 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-843 *3) "failed")))
- "failed"))
- (-5 *1 (-636 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-295 *3)) (-5 *5 (-1157))
- (-4 *3 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *2 (-843 *3)) (-5 *1 (-636 *6 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-295 (-843 (-952 *5)))) (-4 *5 (-454))
+ (-12 (-5 *2 (-1155 (-409 *3))) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
+(((*1 *1 *1) (-5 *1 (-1062))))
+(((*1 *2 *1)
+ (-12
(-5 *2
- (-3 (-843 (-409 (-952 *5)))
- (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 *5))) "failed"))
- (|:| |rightHandLimit| (-3 (-843 (-409 (-952 *5))) "failed")))
- "failed"))
- (-5 *1 (-637 *5)) (-5 *3 (-409 (-952 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-295 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5)))
- (-4 *5 (-454))
+ (-644
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225)))))
+ (-5 *1 (-561))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-5 *2 (-644 *3))))
+ ((*1 *2 *1)
+ (-12
(-5 *2
- (-3 (-843 *3)
- (-2 (|:| |leftHandLimit| (-3 (-843 *3) "failed"))
- (|:| |rightHandLimit| (-3 (-843 *3) "failed")))
- "failed"))
- (-5 *1 (-637 *5))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-295 (-409 (-952 *6)))) (-5 *5 (-1157))
- (-5 *3 (-409 (-952 *6))) (-4 *6 (-454)) (-5 *2 (-843 *3))
- (-5 *1 (-637 *6)))))
+ (-644
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225)))))
+ (-5 *1 (-803)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1255 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-169 *5)) (-4 *5 (-13 (-432 *4) (-1002) (-1199)))
- (-4 *4 (-558)) (-4 *2 (-13 (-432 (-169 *4)) (-1002) (-1199)))
- (-5 *1 (-600 *4 *5 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-558)))))
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-771))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-771)))))
+(((*1 *1) (-5 *1 (-580)))
+ ((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-863))))
+ ((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-863))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1157)) (-5 *4 (-862)) (-5 *2 (-1269)) (-5 *1 (-863))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1155 *4))
+ (-4 *4 (-1099)) (-4 *4 (-1214)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-5 *2 (-409 *1)) (-4 *1 (-1240 *3)) (-4 *3 (-1049))
- (-4 *3 (-558))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))))
-(((*1 *2 *3 *2 *4 *5)
- (-12 (-5 *2 (-644 *3)) (-5 *5 (-921)) (-4 *3 (-1240 *4))
- (-4 *4 (-308)) (-5 *1 (-462 *4 *3)))))
-(((*1 *1) (-5 *1 (-439))))
-(((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-566)) (-5 *1 (-1155 *3)) (-4 *3 (-1214))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *1) (-5 *1 (-439))))
+ (-12 (-5 *2 (-1163 3 *3)) (-4 *3 (-1049)) (-4 *1 (-1133 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))))
+(((*1 *1) (-5 *1 (-130))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-112)) (-5 *1 (-829)))))
+(((*1 *2 *3 *4 *4 *5)
+ (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3))
+ (-4 *3 (-13 (-432 *6) (-27) (-1199)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-568 *6 *3 *7)) (-4 *7 (-1099)))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-644 (-612 *2))) (-5 *4 (-1175))
+ (-4 *2 (-13 (-27) (-1199) (-432 *5)))
+ (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-278 *5 *2)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1265))))
((*1 *2 *1) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1265))))
((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1266))))
((*1 *2 *1) (-12 (-5 *2 (-644 (-264))) (-5 *1 (-1266)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-644 *7)) (-5 *5 (-644 (-644 *8))) (-4 *7 (-850))
- (-4 *8 (-308)) (-4 *6 (-793)) (-4 *9 (-949 *8 *6 *7))
- (-5 *2
- (-2 (|:| |unitPart| *9)
- (|:| |suPart|
- (-644 (-2 (|:| -2391 (-1171 *9)) (|:| -3250 (-566)))))))
- (-5 *1 (-742 *6 *7 *8 *9)) (-5 *3 (-1171 *9)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9))
- (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558)) (-4 *7 (-793))
- (-4 *8 (-850)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3877 (-644 *9))))
- (-5 *3 (-644 *9)) (-4 *1 (-1207 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-2 (|:| |bas| *1) (|:| -3877 (-644 *8))))
- (-5 *3 (-644 *8)) (-4 *1 (-1207 *5 *6 *7 *8)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1083 *3)) (-4 *3 (-132)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-644 (-952 *4))) (-5 *3 (-644 (-1175))) (-4 *4 (-454))
+ (-5 *1 (-918 *4)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157))
+ (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-771))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-771)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-566))) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-558)) (-4 *8 (-949 *7 *5 *6))
- (-5 *2 (-2 (|:| -3250 (-771)) (|:| -3157 *9) (|:| |radicand| *9)))
- (-5 *1 (-953 *5 *6 *7 *8 *9)) (-5 *4 (-771))
- (-4 *9
- (-13 (-365)
- (-10 -8 (-15 -2512 ($ *8)) (-15 -3001 (*8 $)) (-15 -3013 (*8 $))))))))
-(((*1 *2 *1) (|partial| -12 (-5 *1 (-367 *2)) (-4 *2 (-1099))))
- ((*1 *2 *1) (|partial| -12 (-5 *2 (-1157)) (-5 *1 (-1195)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+ (-12 (-5 *3 (-771)) (-5 *4 (-1264 *2)) (-4 *5 (-308))
+ (-4 *6 (-992 *5)) (-4 *2 (-13 (-411 *6 *7) (-1038 *6)))
+ (-5 *1 (-415 *5 *6 *7 *2)) (-4 *7 (-1240 *6)))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1083 *3)) (-4 *3 (-132)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *1) (|partial| -12 (-4 *1 (-1012)) (-5 *2 (-862)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-1264 (-689 *4))) (-5 *1 (-90 *4 *5))
+ (-5 *3 (-689 *4)) (-4 *5 (-656 *4)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-759)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-566)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1214))
+ (-4 *5 (-375 *4)) (-4 *3 (-375 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-331)))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-644 (-952 *3))) (-4 *3 (-454))
- (-5 *1 (-362 *3 *4)) (-14 *4 (-644 (-1175)))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-644 (-780 *3 (-864 *4)))) (-4 *3 (-454))
- (-14 *4 (-644 (-1175))) (-5 *1 (-628 *3 *4)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225)))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-70 APROD)))) (-5 *4 (-225))
- (-5 *2 (-1035)) (-5 *1 (-756)))))
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-823)) (-5 *2 (-1269)) (-5 *1 (-822)))))
(((*1 *2 *1)
- (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172))
- (-4 *5 (-238 (-2997 *3) (-771)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2168 *2) (|:| -3250 *5))
- (-2 (|:| -2168 *2) (|:| -3250 *5))))
- (-4 *2 (-850)) (-5 *1 (-463 *3 *4 *2 *5 *6 *7))
- (-4 *7 (-949 *4 *5 (-864 *3))))))
-(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
- (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225)))
- (-5 *5 (-1093 (-225))) (-5 *6 (-566)) (-5 *2 (-1209 (-926)))
- (-5 *1 (-319))))
- ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225)))
- (-5 *5 (-1093 (-225))) (-5 *6 (-566)) (-5 *7 (-1157))
- (-5 *2 (-1209 (-926))) (-5 *1 (-319))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225)))
- (-5 *5 (-1093 (-225))) (-5 *6 (-225)) (-5 *7 (-566))
- (-5 *2 (-1209 (-926))) (-5 *1 (-319))))
- ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
- (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225)))
- (-5 *5 (-1093 (-225))) (-5 *6 (-225)) (-5 *7 (-566)) (-5 *8 (-1157))
- (-5 *2 (-1209 (-926))) (-5 *1 (-319)))))
-(((*1 *1 *1) (-5 *1 (-1062))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-644 (-943 (-225)))))
- (-5 *2 (-644 (-1093 (-225)))) (-5 *1 (-928)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049))
- (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1220))))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1175)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
(((*1 *1 *1 *1 *2)
(-12 (-5 *2 (-566)) (-4 *1 (-651 *3)) (-4 *3 (-1214))))
((*1 *1 *2 *1 *3)
(-12 (-5 *3 (-566)) (-4 *1 (-651 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1084))) (-5 *1 (-292)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4))
- (-5 *2 (-2 (|:| -3157 (-409 *5)) (|:| |poly| *3)))
- (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))))
-(((*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-850))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-850))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-566)) (-4 *1 (-283 *3)) (-4 *3 (-1214))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-4 *1 (-283 *2)) (-4 *2 (-1214))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2
- (|:| -2010
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (|:| -2818
- (-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| (-1155 (-225)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -4344
- (-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 (-561))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-4 *1 (-695 *2)) (-4 *2 (-1099))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2
- (|:| -2010
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (|:| -2818
- (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381))
- (|:| |expense| (-381)) (|:| |accuracy| (-381))
- (|:| |intermediateResults| (-381))))))
- (-5 *1 (-803))))
- ((*1 *2 *3 *4)
- (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1099)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-824)) (-5 *3 (-644 (-1175))) (-5 *1 (-825)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *2 (-644 (-225)))
- (-5 *1 (-470)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-365) (-147)))
+ (-5 *2 (-644 (-2 (|:| -2456 (-771)) (|:| -3174 *4) (|:| |num| *4))))
+ (-5 *1 (-401 *3 *4)) (-4 *4 (-1240 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-843 (-381))) (-5 *2 (-843 (-225))) (-5 *1 (-306)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))))
+ (|partial| -12 (-5 *3 (-612 *4)) (-4 *4 (-1099)) (-4 *2 (-1099))
+ (-5 *1 (-611 *2 *4)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1099) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1139 *4 *5)) (-4 *4 (-13 (-1099) (-34))))))
+(((*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-752)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175)) (-4 *4 (-454)) (-4 *4 (-1099))
+ (-5 *1 (-575 *4 *2)) (-4 *2 (-285)) (-4 *2 (-432 *4)))))
(((*1 *1 *2 *2 *3)
(-12 (-5 *2 (-771)) (-4 *3 (-1214)) (-4 *1 (-57 *3 *4 *5))
(-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
@@ -927,519 +619,36 @@
((*1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049))))
((*1 *1 *1) (-5 *1 (-1175))) ((*1 *1) (-5 *1 (-1175)))
((*1 *1) (-5 *1 (-1194))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-558)) (-4 *2 (-454)) (-5 *1 (-969 *2 *3))
- (-4 *3 (-1240 *2)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
- (-5 *2
- (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566))
- (|:| |success| (-112))))
- (-5 *1 (-789)) (-5 *5 (-566)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-351)) (-5 *2 (-420 (-1171 (-1171 *4))))
- (-5 *1 (-1212 *4)) (-5 *3 (-1171 (-1171 *4))))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2248 *8)))
- (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-988 *4 *5 *6 *7 *8))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2248 *8)))
- (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-1106 *4 *5 *6 *7 *8)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-183))) (-5 *1 (-140)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-644 (-1175)))
- (-5 *2 (-644 (-644 (-381)))) (-5 *1 (-1023)) (-5 *5 (-381))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
- (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-644 (-1024 (-409 *4)))))
- (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7))
- (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7))
- (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7))
- (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-952 *4)))
- (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6))
- (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-247 *5 *6))) (-4 *6 (-454))
- (-5 *2 (-247 *5 *6)) (-14 *5 (-644 (-1175))) (-5 *1 (-631 *5 *6)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792))
- (-4 *2 (-454))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-344 *2 *3 *4)) (-4 *2 (-1218)) (-4 *3 (-1240 *2))
- (-4 *4 (-1240 (-409 *3)))))
- ((*1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-454))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850)) (-4 *3 (-454))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-949 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-454))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-308)) (-4 *3 (-558)) (-5 *1 (-1162 *3 *2))
- (-4 *2 (-1240 *3)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-644 (-566))) (-5 *3 (-689 (-566))) (-5 *1 (-1109)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-2 (|:| -2010 *3) (|:| -2818 *4))))
- (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *1 (-1190 *3 *4))))
- ((*1 *1) (-12 (-4 *1 (-1190 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1184)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
- (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1035))
- (-5 *1 (-749)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-300 *4 *5)) (-14 *4 *3)
- (-14 *5 *3)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1093 (-843 (-225)))) (-5 *3 (-225)) (-5 *2 (-112))
- (-5 *1 (-306))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
- (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-771))) (-5 *3 (-112)) (-5 *1 (-1163 *4 *5))
- (-14 *4 (-921)) (-4 *5 (-1049)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-644 (-295 *4))) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850))
- (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))))
-(((*1 *2 *1) (-12 (-5 *2 (-958 (-183))) (-5 *1 (-334))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-606)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454))
- (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-977 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225)))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 (-566)))))
- (-5 *1 (-363 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 (-771)))))
- (-5 *1 (-388 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| -2391 *3) (|:| -3250 (-566)))))
- (-5 *1 (-420 *3)) (-4 *3 (-558))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 (-771)))))
- (-5 *1 (-819 *3)) (-4 *3 (-850)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-119 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1092 *3)) (-4 *3 (-1214)) (-5 *2 (-566)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225)))
- (-5 *2 (-1035)) (-5 *1 (-754)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4))
- (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3))
- (-4 *3 (-1099)))))
-(((*1 *2)
- (-12 (-4 *3 (-1049)) (-5 *2 (-958 (-712 *3 *4))) (-5 *1 (-712 *3 *4))
- (-4 *4 (-1240 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3))
- (-4 *3 (-1099)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1035))
- (-5 *1 (-746)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *2) (-12 (-5 *1 (-682 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
- (-5 *2 (-1035)) (-5 *1 (-751)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1093 (-843 (-225)))) (-5 *1 (-306)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
- (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1240 (-566))) (-5 *1 (-488 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-134)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4))))
- ((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1006)))))
-(((*1 *2)
- (-12
- (-5 *2 (-2 (|:| -3885 (-644 (-1175))) (|:| -3753 (-644 (-1175)))))
- (-5 *1 (-1216)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-909)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-420 (-1171 *7)))
- (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-1171 *7))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5)))
- (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-644 (-644 (-225)))) (-5 *4 (-225))
- (-5 *2 (-644 (-943 *4))) (-5 *1 (-1210)) (-5 *3 (-943 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *4)) (-4 *4 (-365)) (-5 *2 (-689 *4))
- (-5 *1 (-814 *4 *5)) (-4 *5 (-656 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *5)) (-5 *4 (-771)) (-4 *5 (-365))
- (-5 *2 (-689 *5)) (-5 *1 (-814 *5 *6)) (-4 *6 (-656 *5)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-328 *3)) (-4 *3 (-1214))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-566)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214)) (-14 *4 *2))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *4))))
- (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1093 (-225)))
- (-5 *5 (-112)) (-5 *2 (-1266)) (-5 *1 (-258)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-1 (-644 *5) *6))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-4 *6 (-1240 *5)) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-653 (-409 *7))) (-5 *4 (-1 (-644 *6) *7))
- (-5 *5 (-1 (-420 *7) *7))
- (-4 *6 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-4 *7 (-1240 *6)) (-5 *2 (-644 (-409 *7))) (-5 *1 (-812 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-1 (-644 *5) *6))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-4 *6 (-1240 *5)) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-654 *7 (-409 *7))) (-5 *4 (-1 (-644 *6) *7))
- (-5 *5 (-1 (-420 *7) *7))
- (-4 *6 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-4 *7 (-1240 *6)) (-5 *2 (-644 (-409 *7))) (-5 *1 (-812 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-653 (-409 *5))) (-4 *5 (-1240 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-5 *2 (-644 (-409 *5))) (-5 *1 (-812 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-1 (-420 *6) *6))
- (-4 *6 (-1240 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-654 *5 (-409 *5))) (-4 *5 (-1240 *4)) (-4 *4 (-27))
- (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-5 *2 (-644 (-409 *5))) (-5 *1 (-812 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-1 (-420 *6) *6))
- (-4 *6 (-1240 *5)) (-4 *5 (-27))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-317 (-225))) (-5 *2 (-409 (-566))) (-5 *1 (-306)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 (-644 *7) *7 (-1171 *7))) (-5 *5 (-1 (-420 *7) *7))
- (-4 *7 (-1240 *6)) (-4 *6 (-13 (-365) (-147) (-1038 (-409 (-566)))))
- (-5 *2 (-644 (-2 (|:| |frac| (-409 *7)) (|:| -3525 *3))))
- (-5 *1 (-809 *6 *7 *3 *8)) (-4 *3 (-656 *7))
- (-4 *8 (-656 (-409 *7)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-5 *2
- (-644 (-2 (|:| |frac| (-409 *6)) (|:| -3525 (-654 *6 (-409 *6))))))
- (-5 *1 (-812 *5 *6)) (-5 *3 (-654 *6 (-409 *6))))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5
- (-1 (-2 (|:| |ans| *6) (|:| -4368 *6) (|:| |sol?| (-112))) (-566)
- *6))
- (-4 *6 (-365)) (-4 *7 (-1240 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-409 *7)) (|:| |a0| *6))
- (-2 (|:| -2806 (-409 *7)) (|:| |coeff| (-409 *7))) "failed"))
- (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-112))
- (-5 *2 (-1035)) (-5 *1 (-745)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-850)) (-4 *5 (-793))
- (-4 *6 (-558)) (-4 *7 (-949 *6 *5 *3))
- (-5 *1 (-464 *5 *3 *6 *7 *2))
- (-4 *2
- (-13 (-1038 (-409 (-566))) (-365)
- (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $))
- (-15 -3013 (*7 $))))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-949 *4 *6 *5)) (-4 *4 (-454))
- (-4 *5 (-850)) (-4 *6 (-793)) (-5 *1 (-987 *4 *5 *6 *3)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5))
- (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-862)))) (-5 *1 (-862))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1141 *3 *4)) (-5 *1 (-993 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-365))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-644 *5))) (-4 *5 (-1049))
- (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *6 (-238 *4 *5))
- (-4 *7 (-238 *3 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1101 *4)) (-4 *4 (-1099)) (-5 *2 (-1 *4))
- (-5 *1 (-1017 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1093 (-566))) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
- (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
- (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
- (-5 *1 (-788)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-644 (-644 (-644 *5)))) (-5 *3 (-1 (-112) *5 *5))
- (-5 *4 (-644 *5)) (-4 *5 (-850)) (-5 *1 (-1185 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *2 (-112))
- (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
- (-4 *4 (-13 (-1099) (-34))))))
-(((*1 *1 *1 *2 *2)
- (|partial| -12 (-5 *2 (-921)) (-5 *1 (-1100 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*1 *1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-596 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-531)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-439)) (-5 *1 (-1179)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1155 *2)) (-4 *2 (-308)) (-5 *1 (-174 *2)))))
-(((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-644 (-782 *3))) (-5 *1 (-782 *3)) (-4 *3 (-558))
- (-4 *3 (-1049)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4417)) (-4 *1 (-151 *3))
- (-4 *3 (-1214))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-674 *3)) (-4 *3 (-1214))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-4 *1 (-1207 *4 *5 *3 *2)) (-4 *4 (-558))
- (-4 *5 (-793)) (-4 *3 (-850)) (-4 *2 (-1064 *4 *5 *3))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-5 *1 (-1211 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-644 *4)) (-4 *4 (-365)) (-5 *2 (-1264 *4))
- (-5 *1 (-814 *4 *3)) (-4 *3 (-656 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
- (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-169 *4)) (-5 *1 (-181 *4 *3))
- (-4 *4 (-13 (-365) (-848))) (-4 *3 (-1240 *2)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-365) (-1199) (-1002))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793))
- (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-644 *3))
- (-5 *1 (-592 *5 *6 *7 *8 *3)) (-4 *3 (-1108 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147)))
- (-5 *2
- (-644 (-2 (|:| -4137 (-1171 *5)) (|:| -2770 (-644 (-952 *5))))))
- (-5 *1 (-1077 *5 *6)) (-5 *3 (-644 (-952 *5)))
- (-14 *6 (-644 (-1175)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-308) (-147)))
- (-5 *2
- (-644 (-2 (|:| -4137 (-1171 *4)) (|:| -2770 (-644 (-952 *4))))))
- (-5 *1 (-1077 *4 *5)) (-5 *3 (-644 (-952 *4)))
- (-14 *5 (-644 (-1175)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147)))
- (-5 *2
- (-644 (-2 (|:| -4137 (-1171 *5)) (|:| -2770 (-644 (-952 *5))))))
- (-5 *1 (-1077 *5 *6)) (-5 *3 (-644 (-952 *5)))
- (-14 *6 (-644 (-1175))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
- (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-277 *4 *3))
- (-4 *3 (-13 (-432 *4) (-1002))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-317 *3)) (-4 *3 (-13 (-1049) (-850)))
- (-5 *1 (-223 *3 *4)) (-14 *4 (-644 (-1175))))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-644 (-644 *4)))) (-5 *2 (-644 (-644 *4)))
- (-5 *1 (-1185 *4)) (-4 *4 (-850)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -1380 (-689 (-409 (-952 *4))))
- (|:| |vec| (-644 (-409 (-952 *4)))) (|:| -1821 (-771))
- (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))
- (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793))
- (-5 *2
- (-2 (|:| |partsol| (-1264 (-409 (-952 *4))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *4)))))))
- (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
- (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-720)) (-5 *2 (-921))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-771)))))
-(((*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 (-331)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-846)))))
-(((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-566))) (-5 *4 (-905 (-566)))
- (-5 *2 (-689 (-566))) (-5 *1 (-591))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-644 (-689 (-566))))
- (-5 *1 (-591))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-566))) (-5 *4 (-644 (-905 (-566))))
- (-5 *2 (-644 (-689 (-566)))) (-5 *1 (-591)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1099)) (-4 *3 (-900 *5)) (-5 *2 (-1264 *3))
- (-5 *1 (-692 *5 *3 *6 *4)) (-4 *6 (-375 *3))
- (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4417)))))))
-(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381))))
- ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1255 *4)) (-5 *1 (-1257 *4 *2))
- (-4 *4 (-38 (-409 (-566)))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1155 (-409 *3))) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-566)) (-4 *1 (-57 *4 *5 *3)) (-4 *4 (-1214))
- (-4 *5 (-375 *4)) (-4 *3 (-375 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
(((*1 *2 *3 *1)
(-12 (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
(-5 *1 (-506 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-312))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-409 (-1171 (-317 *3)))) (-4 *3 (-558))
+ (-5 *1 (-1129 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883))
+ (-5 *3 (-644 (-566))))))
+(((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-860)) (-5 *2 (-691 (-1222))) (-5 *3 (-1222)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-921)) (-4 *6 (-558)) (-5 *2 (-644 (-317 *6)))
- (-5 *1 (-221 *5 *6)) (-5 *3 (-317 *6)) (-4 *5 (-1049))))
- ((*1 *2 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-587 *5)) (-4 *5 (-13 (-29 *4) (-1199)))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-644 *5))
- (-5 *1 (-585 *4 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-587 (-409 (-952 *4))))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *2 (-644 (-317 *4))) (-5 *1 (-590 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1094 *3 *2)) (-4 *3 (-848)) (-4 *2 (-1148 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 *1)) (-4 *1 (-1094 *4 *2)) (-4 *4 (-848))
- (-4 *2 (-1148 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1279 (-1175) *3)) (-5 *1 (-1286 *3)) (-4 *3 (-1049))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-1288 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-1049)))))
+ (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-1175))) (-4 *6 (-365))
+ (-5 *2 (-644 (-295 (-952 *6)))) (-5 *1 (-540 *5 *6 *7))
+ (-4 *5 (-454)) (-4 *7 (-13 (-365) (-848))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
+(((*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-108))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-538))) (-5 *1 (-538)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-838))) (-5 *1 (-140)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-771)) (-4 *2 (-1099))
+ (-5 *1 (-678 *2)))))
(((*1 *2 *3 *4 *2 *5 *6)
(-12
(-5 *5
(-2 (|:| |done| (-644 *11))
- (|:| |todo| (-644 (-2 (|:| |val| *3) (|:| -2248 *11))))))
+ (|:| |todo| (-644 (-2 (|:| |val| *3) (|:| -2327 *11))))))
(-5 *6 (-771))
- (-5 *2 (-644 (-2 (|:| |val| (-644 *10)) (|:| -2248 *11))))
+ (-5 *2 (-644 (-2 (|:| |val| (-644 *10)) (|:| -2327 *11))))
(-5 *3 (-644 *10)) (-5 *4 (-644 *11)) (-4 *10 (-1064 *7 *8 *9))
(-4 *11 (-1070 *7 *8 *9 *10)) (-4 *7 (-454)) (-4 *8 (-793))
(-4 *9 (-850)) (-5 *1 (-1068 *7 *8 *9 *10 *11))))
@@ -1447,30 +656,239 @@
(-12
(-5 *5
(-2 (|:| |done| (-644 *11))
- (|:| |todo| (-644 (-2 (|:| |val| *3) (|:| -2248 *11))))))
+ (|:| |todo| (-644 (-2 (|:| |val| *3) (|:| -2327 *11))))))
(-5 *6 (-771))
- (-5 *2 (-644 (-2 (|:| |val| (-644 *10)) (|:| -2248 *11))))
+ (-5 *2 (-644 (-2 (|:| |val| (-644 *10)) (|:| -2327 *11))))
(-5 *3 (-644 *10)) (-5 *4 (-644 *11)) (-4 *10 (-1064 *7 *8 *9))
(-4 *11 (-1108 *7 *8 *9 *10)) (-4 *7 (-454)) (-4 *8 (-793))
(-4 *9 (-850)) (-5 *1 (-1144 *7 *8 *9 *10 *11)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-2 (|:| -2050 *3) (|:| -2849 *4))))
+ (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *1 (-1190 *3 *4))))
+ ((*1 *1) (-12 (-4 *1 (-1190 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-328 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-518 *3 *4))
+ (-14 *4 (-566)))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-157))))
+ ((*1 *2 *1) (-12 (-5 *2 (-157)) (-5 *1 (-874))))
+ ((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))))
+(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 *2))
+ (-5 *2 (-381)) (-5 *1 (-785 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049))
+ (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558))
+ (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558))
+ (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850))
+ (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558))
+ (-4 *5 (-850)) (-4 *5 (-614 *2)) (-5 *2 (-381))
+ (-5 *1 (-785 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1171 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558))
+ (-5 *1 (-32 *4 *2)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1073))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
(((*1 *2)
(-12 (-5 *2 (-1264 (-1100 *3 *4))) (-5 *1 (-1100 *3 *4))
(-14 *3 (-921)) (-14 *4 (-921)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))))
+(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
+ (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-689 (-566)))
+ (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-757)))))
+(((*1 *2 *3 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |cycle?| (-112)) (|:| -4271 (-771)) (|:| |period| (-771))))
+ (-5 *1 (-1155 *4)) (-4 *4 (-1214)) (-5 *3 (-771)))))
+(((*1 *1) (-5 *1 (-130))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-689 *4)) (-5 *3 (-921)) (|has| *4 (-6 (-4419 "*")))
+ (-12 (-5 *2 (-689 *4)) (-5 *3 (-921)) (|has| *4 (-6 (-4416 "*")))
(-4 *4 (-1049)) (-5 *1 (-1028 *4))))
((*1 *2 *2 *3)
(-12 (-5 *2 (-644 (-689 *4))) (-5 *3 (-921))
- (|has| *4 (-6 (-4419 "*"))) (-4 *4 (-1049)) (-5 *1 (-1028 *4)))))
+ (|has| *4 (-6 (-4416 "*"))) (-4 *4 (-1049)) (-5 *1 (-1028 *4)))))
+(((*1 *2 *2) (-12 (-5 *1 (-682 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
+ (|partial| -12 (-5 *5 (-1175))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-644 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-644 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -2883 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1199) (-27) (-432 *8)))
+ (-4 *8 (-13 (-454) (-147) (-1038 *3) (-639 *3))) (-5 *3 (-566))
+ (-5 *2 (-644 *4)) (-5 *1 (-1014 *8 *4)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *6 (-921)) (-4 *5 (-308)) (-4 *3 (-1240 *5))
+ (-5 *2 (-2 (|:| |plist| (-644 *3)) (|:| |modulo| *5)))
+ (-5 *1 (-462 *5 *3)) (-5 *4 (-644 *3)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1175)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-702 *3 *5 *6 *7))
+ (-4 *3 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214))
+ (-4 *7 (-1214))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175)) (-5 *2 (-1 *6 *5)) (-5 *1 (-706 *3 *5 *6))
+ (-4 *3 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-169 (-225))) (-5 *4 (-566)) (-5 *2 (-1035))
+ (-5 *1 (-758)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2235 (-782 *3)) (|:| |coef1| (-782 *3))))
+ (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2 (-2 (|:| -2235 *1) (|:| |coef1| *1)))
+ (-4 *1 (-1064 *3 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2235 *3)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
(((*1 *2 *1)
(-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3))
(-4 *3 (-1099)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-1279 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172))
+ (-5 *1 (-664 *3 *4))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-664 *3 *4)) (-5 *1 (-1284 *3 *4))
+ (-4 *3 (-850)) (-4 *4 (-172)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-644 *6)) (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
+ (-4 *3 (-558)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1184)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-943 *4))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049))
+ (-14 *4 (-644 (-1175)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850)))
+ (-14 *4 (-644 (-1175))))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-4 *4 (-1214)) (-5 *2 (-112))
+ (-5 *1 (-1155 *4)))))
+(((*1 *2 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))))
(((*1 *2 *2)
(-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
(-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
+ (-5 *2 (-771))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099))
+ (-5 *2 (-771))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-726)))))
+(((*1 *1 *1) (-5 *1 (-112))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-976 *4 *5 *6 *3)) (-4 *4 (-1049)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558))
+ (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2))
+ (-4 *2 (-1240 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-2 (|:| -2212 *4) (|:| -3467 (-566)))))
+ (-12 (-5 *3 (-644 (-2 (|:| -2252 *4) (|:| -3856 (-566)))))
(-4 *4 (-1099)) (-5 *2 (-1 *4)) (-5 *1 (-1017 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-1237 *5 *4)) (-5 *1 (-1173 *4 *5 *6))
+ (-4 *4 (-1049)) (-14 *5 (-1175)) (-14 *6 *4)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-1237 *5 *4)) (-5 *1 (-1256 *4 *5 *6))
+ (-4 *4 (-1049)) (-14 *5 (-1175)) (-14 *6 *4))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-771)) (-4 *4 (-558)) (-5 *1 (-969 *4 *2))
+ (-4 *2 (-1240 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1099)) (-5 *2 (-889 *3 *5)) (-5 *1 (-885 *3 *4 *5))
+ (-4 *3 (-1099)) (-4 *5 (-666 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-308))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-449 *4 *5 *6 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-943 (-225)))) (-5 *1 (-1265)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *5))))
+ (-5 *1 (-1128 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-13 (-308) (-147)))
+ (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1128 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-295 (-409 (-952 *5)))) (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *5))))
+ (-5 *1 (-1128 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-295 (-409 (-952 *4)))) (-4 *4 (-13 (-308) (-147)))
+ (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1128 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175)))
+ (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *5)))))
+ (-5 *1 (-1128 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-409 (-952 *4)))) (-4 *4 (-13 (-308) (-147)))
+ (-5 *2 (-644 (-644 (-295 (-317 *4))))) (-5 *1 (-1128 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-295 (-409 (-952 *5))))) (-5 *4 (-644 (-1175)))
+ (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *5)))))
+ (-5 *1 (-1128 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-295 (-409 (-952 *4)))))
+ (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *4)))))
+ (-5 *1 (-1128 *4)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049))
+ (-4 *5 (-850)) (-5 *2 (-952 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049))
+ (-4 *5 (-850)) (-5 *2 (-952 *4))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-771)) (-4 *1 (-1255 *4)) (-4 *4 (-1049))
+ (-5 *2 (-952 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-4 *1 (-1255 *4)) (-4 *4 (-1049))
+ (-5 *2 (-952 *4)))))
(((*1 *1 *1 *1)
(|partial| -12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7))
(-4 *3 (-1240 *2)) (-4 *4 (-23)) (-14 *5 (-1 *3 *3 *4))
@@ -1486,38 +904,590 @@
(-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 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-644 *6) "failed") (-566) *6 *6)) (-4 *6 (-365))
+ (-4 *7 (-1240 *6))
+ (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6)))
+ (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-308)) (-5 *1 (-179 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1093 *3)) (-5 *1 (-1091 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *2) (-12 (-5 *1 (-1231 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 (-2 (|:| -2473 (-1171 *6)) (|:| -2456 (-566)))))
+ (-4 *6 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
+ (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-644 *1)) (-4 *1 (-920)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1099)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-819 *3)) (-4 *3 (-850)) (-5 *1 (-672 *3)))))
(((*1 *2 *3)
(-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4))
(-4 *5 (-1240 (-409 *3))) (-5 *2 (-112))))
((*1 *2 *3)
(-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
(-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-644 (-566))) (-5 *3 (-112)) (-5 *1 (-1109)))))
+(((*1 *1) (-5 *1 (-439))))
+(((*1 *2)
+ (-12 (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
+ (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1111)) (-4 *3 (-1099)) (-5 *2 (-644 *1))
+ (-4 *1 (-432 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3))
+ (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2 (-644 *1)) (-4 *1 (-949 *3 *4 *5))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049))
+ (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-644 *3))
+ (-5 *1 (-950 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-365)
+ (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $))
+ (-15 -3100 (*7 $))))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-112)) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-4 *3 (-13 (-27) (-1199) (-432 *6) (-10 -8 (-15 -3780 ($ *7)))))
+ (-4 *7 (-848))
+ (-4 *8
+ (-13 (-1242 *3 *7) (-365) (-1199)
+ (-10 -8 (-15 -2578 ($ $)) (-15 -3921 ($ $)))))
+ (-5 *2
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))))
+ (-5 *1 (-424 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1157)) (-4 *9 (-983 *8))
+ (-14 *10 (-1175)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))))
(((*1 *2 *3 *3)
(-12 (-4 *4 (-558)) (-5 *2 (-958 *3)) (-5 *1 (-1162 *4 *3))
(-4 *3 (-1240 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1177 (-409 (-566)))) (-5 *2 (-409 (-566)))
+ (-5 *1 (-190)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-225))) (-5 *4 (-771)) (-5 *2 (-689 (-225)))
+ (-5 *1 (-306)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351))
+ (-5 *2 (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119))))))
+ (-5 *1 (-348 *4)))))
(((*1 *2 *1 *1)
(-12
(-5 *2
- (-2 (|:| -1552 *3) (|:| |coef1| (-782 *3)) (|:| |coef2| (-782 *3))))
+ (-2 (|:| -2662 *3) (|:| |coef1| (-782 *3)) (|:| |coef2| (-782 *3))))
(-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))))
+(((*1 *2 *1 *1 *3 *4)
+ (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6))
+ (-4 *5 (-13 (-1099) (-34))) (-4 *6 (-13 (-1099) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1139 *5 *6)))))
+(((*1 *1) (-5 *1 (-508))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
+ (-4 *3 (-1240 *2)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-644 (-483 *5 *6))) (-5 *4 (-864 *5))
+ (-14 *5 (-644 (-1175))) (-5 *2 (-483 *5 *6)) (-5 *1 (-631 *5 *6))
+ (-4 *6 (-454))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-483 *5 *6))) (-5 *4 (-864 *5))
+ (-14 *5 (-644 (-1175))) (-5 *2 (-483 *5 *6)) (-5 *1 (-631 *5 *6))
+ (-4 *6 (-454)))))
+(((*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-1171 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
+ (-4 *3 (-13 (-1099) (-34))))))
+(((*1 *2 *3) (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-365)) (-4 *7 (-1240 *5)) (-4 *4 (-724 *5 *7))
+ (-5 *2 (-2 (|:| -4193 (-689 *6)) (|:| |vec| (-1264 *5))))
+ (-5 *1 (-811 *5 *6 *7 *4 *3)) (-4 *6 (-656 *5)) (-4 *3 (-656 *4)))))
(((*1 *2 *3)
(-12 (-5 *3 (-317 (-225))) (-5 *2 (-317 (-409 (-566))))
(-5 *1 (-306)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-532 *3)) (-4 *3 (-13 (-726) (-25))))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225)))
+ (-5 *2 (-1035)) (-5 *1 (-747)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-980 *2)) (-4 *2 (-1049))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1049)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-547))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))))
+(((*1 *2)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
(((*1 *2 *2 *3 *3)
(-12 (-5 *2 (-1264 *4)) (-5 *3 (-1119)) (-4 *4 (-351))
(-5 *1 (-530 *4)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-420 *4)) (-4 *4 (-558)))))
+(((*1 *2)
+ (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-419 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *4 (-558))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2828 *4)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
+ (-5 *2 (-1264 *6)) (-5 *1 (-338 *3 *4 *5 *6))
+ (-4 *6 (-344 *3 *4 *5)))))
+(((*1 *1 *2 *2 *3 *1)
+ (-12 (-5 *2 (-508)) (-5 *3 (-1103)) (-5 *1 (-292)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-581)))))
(((*1 *1 *1)
(|partial| -12 (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
(-4 *3 (-13 (-1099) (-34))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-409 (-952 (-566)))))
+ (-5 *2 (-644 (-644 (-295 (-952 *4))))) (-5 *1 (-382 *4))
+ (-4 *4 (-13 (-848) (-365)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-295 (-409 (-952 (-566))))))
+ (-5 *2 (-644 (-644 (-295 (-952 *4))))) (-5 *1 (-382 *4))
+ (-4 *4 (-13 (-848) (-365)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-409 (-952 (-566)))) (-5 *2 (-644 (-295 (-952 *4))))
+ (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-295 (-409 (-952 (-566)))))
+ (-5 *2 (-644 (-295 (-952 *4)))) (-5 *1 (-382 *4))
+ (-4 *4 (-13 (-848) (-365)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1175))
+ (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-4 *4 (-13 (-29 *6) (-1199) (-959)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -1575 (-644 *4))))
+ (-5 *1 (-652 *6 *4 *3)) (-4 *3 (-656 *4))))
+ ((*1 *2 *3 *2 *4 *2 *5)
+ (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 *2))
+ (-4 *2 (-13 (-29 *6) (-1199) (-959)))
+ (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *1 (-652 *6 *2 *3)) (-4 *3 (-656 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 *5)) (-4 *5 (-365))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1264 *5) "failed"))
+ (|:| -1575 (-644 (-1264 *5)))))
+ (-5 *1 (-667 *5)) (-5 *4 (-1264 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-644 *5))) (-4 *5 (-365))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1264 *5) "failed"))
+ (|:| -1575 (-644 (-1264 *5)))))
+ (-5 *1 (-667 *5)) (-5 *4 (-1264 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 *5)) (-4 *5 (-365))
+ (-5 *2
+ (-644
+ (-2 (|:| |particular| (-3 (-1264 *5) "failed"))
+ (|:| -1575 (-644 (-1264 *5))))))
+ (-5 *1 (-667 *5)) (-5 *4 (-644 (-1264 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-644 *5))) (-4 *5 (-365))
+ (-5 *2
+ (-644
+ (-2 (|:| |particular| (-3 (-1264 *5) "failed"))
+ (|:| -1575 (-644 (-1264 *5))))))
+ (-5 *1 (-667 *5)) (-5 *4 (-644 (-1264 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4415))))
+ (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4415))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4))))
+ (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4415))))
+ (-4 *7 (-13 (-375 *5) (-10 -7 (-6 -4415))))
+ (-5 *2
+ (-644
+ (-2 (|:| |particular| (-3 *7 "failed")) (|:| -1575 (-644 *7)))))
+ (-5 *1 (-668 *5 *6 *7 *3)) (-5 *4 (-644 *7))
+ (-4 *3 (-687 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175))) (-4 *5 (-558))
+ (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-770 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-558))
+ (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-770 *4))))
+ ((*1 *2 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *1 (-772 *5 *2)) (-4 *2 (-13 (-29 *5) (-1199) (-959)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-689 *7)) (-5 *5 (-1175))
+ (-4 *7 (-13 (-29 *6) (-1199) (-959)))
+ (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2
+ (-2 (|:| |particular| (-1264 *7)) (|:| -1575 (-644 (-1264 *7)))))
+ (-5 *1 (-802 *6 *7)) (-5 *4 (-1264 *7))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-689 *6)) (-5 *4 (-1175))
+ (-4 *6 (-13 (-29 *5) (-1199) (-959)))
+ (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2 (-644 (-1264 *6))) (-5 *1 (-802 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-644 (-295 *7))) (-5 *4 (-644 (-114)))
+ (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959)))
+ (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2
+ (-2 (|:| |particular| (-1264 *7)) (|:| -1575 (-644 (-1264 *7)))))
+ (-5 *1 (-802 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-644 *7)) (-5 *4 (-644 (-114)))
+ (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959)))
+ (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2
+ (-2 (|:| |particular| (-1264 *7)) (|:| -1575 (-644 (-1264 *7)))))
+ (-5 *1 (-802 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-295 *7)) (-5 *4 (-114)) (-5 *5 (-1175))
+ (-4 *7 (-13 (-29 *6) (-1199) (-959)))
+ (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2
+ (-3 (-2 (|:| |particular| *7) (|:| -1575 (-644 *7))) *7 "failed"))
+ (-5 *1 (-802 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-114)) (-5 *5 (-1175))
+ (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2
+ (-3 (-2 (|:| |particular| *3) (|:| -1575 (-644 *3))) *3 "failed"))
+ (-5 *1 (-802 *6 *3)) (-4 *3 (-13 (-29 *6) (-1199) (-959)))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-295 *2)) (-5 *4 (-114)) (-5 *5 (-644 *2))
+ (-4 *2 (-13 (-29 *6) (-1199) (-959))) (-5 *1 (-802 *6 *2))
+ (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))))
+ ((*1 *2 *2 *3 *4 *5)
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-295 *2)) (-5 *5 (-644 *2))
+ (-4 *2 (-13 (-29 *6) (-1199) (-959)))
+ (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *1 (-802 *6 *2))))
+ ((*1 *2 *3) (-12 (-5 *3 (-808)) (-5 *2 (-1035)) (-5 *1 (-805))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-808)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-805))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4))
+ (-5 *2 (-1035)) (-5 *1 (-805))))
+ ((*1 *2 *3 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4))
+ (-5 *2 (-1035)) (-5 *1 (-805))))
+ ((*1 *2 *3 *4 *4 *5 *6 *4)
+ (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381)))
+ (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805))))
+ ((*1 *2 *3 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4))
+ (-5 *2 (-1035)) (-5 *1 (-805))))
+ ((*1 *2 *3 *4 *4 *5 *6 *5 *4)
+ (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381)))
+ (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805))))
+ ((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
+ (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381)))
+ (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12
+ (-5 *5
+ (-1
+ (-3 (-2 (|:| |particular| *6) (|:| -1575 (-644 *6))) "failed")
+ *7 *6))
+ (-4 *6 (-365)) (-4 *7 (-656 *6))
+ (-5 *2 (-2 (|:| |particular| (-1264 *6)) (|:| -1575 (-689 *6))))
+ (-5 *1 (-813 *6 *7)) (-5 *3 (-689 *6)) (-5 *4 (-1264 *6))))
+ ((*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-1035)) (-5 *1 (-897))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-898)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-897))))
+ ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
+ (-12 (-5 *4 (-771)) (-5 *6 (-644 (-644 (-317 *3)))) (-5 *7 (-1157))
+ (-5 *8 (-225)) (-5 *5 (-644 (-317 (-381)))) (-5 *3 (-381))
+ (-5 *2 (-1035)) (-5 *1 (-897))))
+ ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *4 (-771)) (-5 *6 (-644 (-644 (-317 *3)))) (-5 *7 (-1157))
+ (-5 *5 (-644 (-317 (-381)))) (-5 *3 (-381)) (-5 *2 (-1035))
+ (-5 *1 (-897))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *2 (-644 (-381)))
+ (-5 *1 (-1023)) (-5 *4 (-381))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-952 (-566))) (-5 *2 (-644 (-381))) (-5 *1 (-1023))
+ (-5 *4 (-381))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1130 *4))
+ (-5 *3 (-317 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1130 *4))
+ (-5 *3 (-295 (-317 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1130 *5))
+ (-5 *3 (-295 (-317 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1130 *5))
+ (-5 *3 (-317 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 (-1175)))
+ (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2 (-644 (-644 (-295 (-317 *5))))) (-5 *1 (-1130 *5))
+ (-5 *3 (-644 (-295 (-317 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175)))
+ (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *5))))))
+ (-5 *1 (-1183 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 (-1175))) (-4 *5 (-558))
+ (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-1183 *5))
+ (-5 *3 (-644 (-295 (-409 (-952 *5)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-409 (-952 *4)))) (-4 *4 (-558))
+ (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-1183 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *4))))))
+ (-5 *1 (-1183 *4)) (-5 *3 (-644 (-295 (-409 (-952 *4)))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175)) (-4 *5 (-558))
+ (-5 *2 (-644 (-295 (-409 (-952 *5))))) (-5 *1 (-1183 *5))
+ (-5 *3 (-409 (-952 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175)) (-4 *5 (-558))
+ (-5 *2 (-644 (-295 (-409 (-952 *5))))) (-5 *1 (-1183 *5))
+ (-5 *3 (-295 (-409 (-952 *5))))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *4)))))
+ (-5 *1 (-1183 *4)) (-5 *3 (-409 (-952 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *4)))))
+ (-5 *1 (-1183 *4)) (-5 *3 (-295 (-409 (-952 *4)))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1171 (-952 *6))) (-4 *6 (-558))
+ (-4 *2 (-949 (-409 (-952 *6)) *5 *4)) (-5 *1 (-732 *5 *4 *6 *2))
+ (-4 *5 (-793))
+ (-4 *4 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566))
+ (-14 *4 *2) (-4 *5 (-172))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-921)) (-5 *1 (-165 *3 *4))
+ (-4 *3 (-166 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-921))))
+ ((*1 *2)
+ (-12 (-4 *1 (-372 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3))
+ (-5 *2 (-921))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-365)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
+ (-5 *2 (-771)) (-5 *1 (-523 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)) (-4 *5 (-365))
+ (-5 *2 (-771)) (-5 *1 (-667 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4415))))
+ (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4415)))) (-5 *2 (-771))
+ (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-771))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4))
+ (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-688 *4 *5 *6 *3))
+ (-4 *3 (-687 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558))
+ (-5 *2 (-771)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *7)) (-4 *7 (-850))
+ (-4 *8 (-949 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1264 (-409 *8)) "failed"))
+ (|:| -1575 (-644 (-1264 (-409 *8))))))
+ (-5 *1 (-669 *5 *6 *7 *8)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2235 (-782 *3)) (|:| |coef2| (-782 *3))))
+ (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2 (-2 (|:| -2235 *1) (|:| |coef2| *1)))
+ (-4 *1 (-1064 *3 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
+ (-5 *2 (-587 *3)) (-5 *1 (-428 *5 *3))
+ (-4 *3 (-13 (-1199) (-29 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)) (-147)))
+ (-5 *2 (-587 (-409 (-952 *5)))) (-5 *1 (-572 *5))
+ (-5 *3 (-409 (-952 *5))))))
+(((*1 *2 *3 *4 *5 *3 *6 *3)
+ (-12 (-5 *3 (-566)) (-5 *5 (-169 (-225))) (-5 *6 (-1157))
+ (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049))
+ (-14 *4 (-644 (-1175)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850)))
+ (-14 *4 (-644 (-1175)))))
+ ((*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-337 *3 *4 *5 *2)) (-4 *3 (-365))
+ (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
+ (-4 *2 (-344 *3 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
+ (-4 *5 (-172))))
+ ((*1 *1) (-12 (-4 *2 (-172)) (-4 *1 (-724 *2 *3)) (-4 *3 (-1240 *2)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-771)) (-4 *2 (-558)) (-5 *1 (-969 *2 *4))
+ (-4 *4 (-1240 *2)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-419 *4)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1157)) (-5 *2 (-644 (-1180))) (-5 *1 (-880)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-653 *4)) (-4 *4 (-344 *5 *6 *7))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6)))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4))))
+ (-5 *1 (-806 *5 *6 *7 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-644 (-1 *4 (-644 *4)))) (-4 *4 (-1099))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1099))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-644 (-1 *4 (-644 *4))))
+ (-5 *1 (-113 *4)) (-4 *4 (-1099)))))
+(((*1 *1) (-5 *1 (-141))) ((*1 *1 *1) (-5 *1 (-144)))
+ ((*1 *1 *1) (-4 *1 (-1143))))
+(((*1 *2 *3 *2 *3)
+ (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178))))
+ ((*1 *2 *3 *2 *4 *1)
+ (-12 (-5 *2 (-439)) (-5 *3 (-644 (-1175))) (-5 *4 (-1175))
+ (-5 *1 (-1178))))
+ ((*1 *2 *3 *2 *3 *1)
+ (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178))))
+ ((*1 *2 *3 *2 *1)
+ (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1179))))
+ ((*1 *2 *3 *2 *1)
+ (-12 (-5 *2 (-439)) (-5 *3 (-644 (-1175))) (-5 *1 (-1179)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-254 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-850))
+ (-4 *5 (-793)) (-4 *2 (-267 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
+ (-5 *2 (-2 (|:| -1713 (-644 *6)) (|:| -3537 (-644 *6)))))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *1 *1) (-4 *1 (-629)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *2)) (-5 *1 (-179 *2)) (-4 *2 (-308))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *3 (-644 (-644 *4))) (-5 *2 (-644 *4)) (-4 *4 (-308))
+ (-5 *1 (-179 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-644 *8))
+ (-5 *4
+ (-644
+ (-2 (|:| -1575 (-689 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-689 *7)))))
+ (-5 *5 (-771)) (-4 *8 (-1240 *7)) (-4 *7 (-1240 *6)) (-4 *6 (-351))
+ (-5 *2
+ (-2 (|:| -1575 (-689 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-689 *7))))
+ (-5 *1 (-500 *6 *7 *8))))
+ ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
+(((*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4))
+ (-4 *4 (-351)))))
(((*1 *2 *3)
(-12 (-5 *2 (-420 (-1171 *1))) (-5 *1 (-317 *4)) (-5 *3 (-1171 *1))
(-4 *4 (-454)) (-4 *4 (-558)) (-4 *4 (-1099))))
((*1 *2 *3)
(-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))))
+(((*1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4414)) (-4 *1 (-151 *2)) (-4 *2 (-1214))
+ (-4 *2 (-1099)))))
+(((*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1264 *1)) (-4 *1 (-369 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1049)) (-4 *7 (-1049))
+ (-4 *6 (-1240 *5)) (-5 *2 (-1171 (-1171 *7)))
+ (-5 *1 (-503 *5 *6 *4 *7)) (-4 *4 (-1240 *6)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1060 (-1024 *3) (-1171 (-1024 *3))))
+ (-5 *1 (-1024 *3)) (-4 *3 (-13 (-848) (-365) (-1022))))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172)))))
+(((*1 *1 *1) (-4 *1 (-173)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-366 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-409 (-952 (-169 (-566))))) (-5 *2 (-644 (-169 *4)))
(-5 *1 (-380 *4)) (-4 *4 (-13 (-365) (-848)))))
@@ -1525,20 +1495,270 @@
(-12 (-5 *3 (-644 (-409 (-952 (-169 (-566))))))
(-5 *4 (-644 (-1175))) (-5 *2 (-644 (-644 (-169 *5))))
(-5 *1 (-380 *5)) (-4 *5 (-13 (-365) (-848))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 (-864 *5))) (-14 *5 (-644 (-1175))) (-4 *6 (-454))
+ (-5 *2 (-644 (-644 (-247 *5 *6)))) (-5 *1 (-473 *5 *6 *7))
+ (-5 *3 (-644 (-247 *5 *6))) (-4 *7 (-454)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2)))))
+(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-647 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2
+ (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381))
+ (|:| |expense| (-381)) (|:| |accuracy| (-381))
+ (|:| |intermediateResults| (-381))))
+ (-5 *1 (-803)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-614 (-892 (-566))))
+ (-4 *5 (-886 (-566)))
+ (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-569 *5 *3)) (-4 *3 (-629))
+ (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-771)) (-4 *4 (-13 (-558) (-147)))
+ (-5 *1 (-1234 *4 *2)) (-4 *2 (-1240 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))))
+(((*1 *1 *2 *3)
+ (-12
+ (-5 *3
+ (-644
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
+ (|:| |xpnt| (-566)))))
+ (-4 *2 (-558)) (-5 *1 (-420 *2))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |contp| (-566))
+ (|:| -2670 (-644 (-2 (|:| |irr| *4) (|:| -2831 (-566)))))))
+ (-4 *4 (-1240 (-566))) (-5 *2 (-420 *4)) (-5 *1 (-444 *4)))))
(((*1 *2 *1)
(-12 (-4 *3 (-1049)) (-5 *2 (-1264 *3)) (-5 *1 (-712 *3 *4))
(-4 *4 (-1240 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-508))) (-5 *1 (-49))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-508))) (-5 *1 (-485)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
+ (-4 *3 (-13 (-1099) (-34))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-976 *4 *5 *3 *6)) (-4 *4 (-1049)) (-4 *5 (-793))
+ (-4 *3 (-850)) (-4 *6 (-1064 *4 *5 *3)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-1207 *2 *3 *4 *5)) (-4 *2 (-558))
+ (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-1064 *2 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97))))
+ ((*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))
+ (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-589 *4))
+ (-4 *4 (-351)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-147)) (-4 *2 (-308)) (-4 *2 (-454)) (-4 *3 (-850))
+ (-4 *4 (-793)) (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3))))
+ ((*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-317 (-566))) (-5 *1 (-1118))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1157)) (-5 *1 (-786)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4))
+ (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6)))
+ (-4 *8 (-344 *5 *6 *7)) (-4 *4 (-13 (-558) (-1038 (-566))))
+ (-5 *2 (-2 (|:| -3227 (-771)) (|:| -3282 *8)))
+ (-5 *1 (-911 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6))
+ (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4)))
+ (-4 *6 (-344 (-409 (-566)) *4 *5))
+ (-5 *2 (-2 (|:| -3227 (-771)) (|:| -3282 *6)))
+ (-5 *1 (-912 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
+ (-5 *2 (-689 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-689 *4)) (-5 *1 (-418 *3 *4))
+ (-4 *3 (-419 *4))))
+ ((*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-566)) (-4 *1 (-57 *4 *2 *5)) (-4 *4 (-1214))
(-4 *5 (-375 *4)) (-4 *2 (-375 *4))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *6 *2 *7)) (-4 *6 (-1049))
(-4 *7 (-238 *4 *6)) (-4 *2 (-238 *5 *6)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-351)) (-5 *2 (-112)) (-5 *1 (-216 *4 *3))
+ (-4 *3 (-1240 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-604 *3 *2)) (-4 *3 (-1099)) (-4 *3 (-850))
+ (-4 *2 (-1214))))
+ ((*1 *2 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850))))
+ ((*1 *2 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1214)) (-5 *1 (-873 *2 *3)) (-4 *3 (-1214))))
+ ((*1 *2 *1) (-12 (-5 *2 (-672 *3)) (-5 *1 (-893 *3)) (-4 *3 (-850))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-365))
+ (-5 *2
+ (-2 (|:| A (-689 *5))
+ (|:| |eqs|
+ (-644
+ (-2 (|:| C (-689 *5)) (|:| |g| (-1264 *5)) (|:| -4257 *6)
+ (|:| |rh| *5))))))
+ (-5 *1 (-813 *5 *6)) (-5 *3 (-689 *5)) (-5 *4 (-1264 *5))
+ (-4 *6 (-656 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-365)) (-4 *6 (-656 *5))
+ (-5 *2 (-2 (|:| -4193 (-689 *6)) (|:| |vec| (-1264 *5))))
+ (-5 *1 (-813 *5 *6)) (-5 *3 (-689 *6)) (-5 *4 (-1264 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-317 *3)) (-4 *3 (-558)) (-4 *3 (-1099)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4)))
+ (-5 *2 (-2 (|:| |num| (-1264 *4)) (|:| |den| *4))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1240 (-566))) (-5 *1 (-488 *3)))))
(((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
+ (-12 (-5 *5 (-689 (-225))) (-5 *6 (-689 (-566))) (-5 *3 (-566))
+ (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-419 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-331)))))
+(((*1 *1 *1) (-4 *1 (-547))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331))
+ (-5 *1 (-333)))))
+(((*1 *1 *2) (-12 (-5 *1 (-1200 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-1200 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-644 (-1200 *2))) (-5 *1 (-1200 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454)))
+ (-5 *2
+ (-2
+ (|:| |%term|
+ (-2 (|:| |%coef| (-1249 *4 *5 *6))
+ (|:| |%expon| (-320 *4 *5 *6))
+ (|:| |%expTerms|
+ (-644 (-2 (|:| |k| (-409 (-566))) (|:| |c| *4))))))
+ (|:| |%type| (-1157))))
+ (-5 *1 (-1250 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3)))
+ (-14 *5 (-1175)) (-14 *6 *4))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1214)) (-4 *2 (-1049))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862))))
+ ((*1 *1 *1) (-5 *1 (-862)))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-943 (-225))) (-5 *2 (-225)) (-5 *1 (-1210))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1049)))))
+(((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-405 *3)) (-4 *3 (-406))))
+ ((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-405 *3)) (-4 *3 (-406))))
+ ((*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4405)) (-4 *1 (-406))))
+ ((*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921))))
+ ((*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-1155 (-566))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-558))
+ (-5 *2 (-2 (|:| -4193 (-689 *5)) (|:| |vec| (-1264 (-644 (-921))))))
+ (-5 *1 (-90 *5 *3)) (-5 *4 (-921)) (-4 *3 (-656 *5)))))
(((*1 *1 *2)
(-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-644
+ (-2
+ (|:| -2050
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225))))
+ (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225)))
+ (|:| |g| (-317 (-225))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (|:| -2849
+ (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381))
+ (|:| |expense| (-381)) (|:| |accuracy| (-381))
+ (|:| |intermediateResults| (-381)))))))
+ (-5 *1 (-803)))))
+(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-381)) (-5 *3 (-1157)) (-5 *1 (-97))))
+ ((*1 *2 *3 *2) (-12 (-5 *2 (-381)) (-5 *3 (-1157)) (-5 *1 (-97)))))
+(((*1 *1) (-5 *1 (-1266))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-771)) (-4 *5 (-172))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771))
+ (-4 *4 (-172))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
+ (-4 *4 (-375 *2))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-1049)) (-4 *1 (-687 *3 *2 *4)) (-4 *2 (-375 *3))
+ (-4 *4 (-375 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1141 *2 *3)) (-14 *2 (-771)) (-4 *3 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-420 (-1171 *1))) (-5 *1 (-317 *4)) (-5 *3 (-1171 *1))
+ (-4 *4 (-454)) (-4 *4 (-558)) (-4 *4 (-1099))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-653 (-409 *2))) (-4 *2 (-1240 *4)) (-5 *1 (-810 *4 *2))
+ (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-654 *2 (-409 *2))) (-4 *2 (-1240 *4))
+ (-5 *1 (-810 *4 *2))
+ (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *4)) (-4 *4 (-365)) (-4 *2 (-1240 *4))
+ (-5 *1 (-922 *4 *2)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1099)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049))
(-5 *2 (-644 (-644 (-943 *3))))))
@@ -1560,39 +1780,763 @@
((*1 *1 *1 *2 *3 *4)
(-12 (-5 *2 (-644 (-644 (-943 *5)))) (-5 *3 (-644 (-171)))
(-5 *4 (-171)) (-4 *1 (-1133 *5)) (-4 *5 (-1049)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3 *3 *2)
+ (|partial| -12 (-5 *2 (-771))
+ (-4 *3 (-13 (-726) (-370) (-10 -7 (-15 ** (*3 *3 (-566))))))
+ (-5 *1 (-246 *3)))))
+(((*1 *2)
+ (-12 (-14 *4 *2) (-4 *5 (-1214)) (-5 *2 (-771))
+ (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131))
+ (-5 *2 (-771))))
+ ((*1 *2)
+ (-12 (-4 *4 (-365)) (-5 *2 (-771)) (-5 *1 (-329 *3 *4))
+ (-4 *3 (-330 *4))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-363 *3)) (-4 *3 (-1099))))
+ ((*1 *2) (-12 (-4 *1 (-370)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-388 *3)) (-4 *3 (-1099))))
+ ((*1 *2)
+ (-12 (-4 *4 (-1099)) (-5 *2 (-771)) (-5 *1 (-426 *3 *4))
+ (-4 *3 (-427 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099))
+ (-4 *4 (-23)) (-14 *5 *4)))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-771))
+ (-5 *1 (-723 *3 *4 *5)) (-4 *3 (-724 *4 *5))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-819 *3)) (-4 *3 (-850))))
+ ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
+ (-4 *3 (-1240 *2)))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
+ ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
+ ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-921)) (-5 *1 (-1030 *2))
+ (-4 *2 (-13 (-1099) (-10 -8 (-15 -3040 ($ $ $))))))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4414)) (-4 *1 (-491 *3)) (-4 *3 (-1214))
+ (-4 *3 (-1099)) (-5 *2 (-771))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4414)) (-4 *1 (-491 *4))
+ (-4 *4 (-1214)) (-5 *2 (-771)))))
+(((*1 *2 *3 *4 *5 *4 *4 *4)
+ (-12 (-4 *6 (-850)) (-5 *3 (-644 *6)) (-5 *5 (-644 *3))
+ (-5 *2
+ (-2 (|:| |f1| *3) (|:| |f2| (-644 *5)) (|:| |f3| *5)
+ (|:| |f4| (-644 *5))))
+ (-5 *1 (-1185 *6)) (-5 *4 (-644 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-264))))
+ ((*1 *1)
+ (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *4))))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-295 *3))) (-5 *1 (-295 *3)) (-4 *3 (-558))
+ (-4 *3 (-1214)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-644 (-409 (-952 (-566))))) (-5 *4 (-644 (-1175)))
+ (-5 *2 (-644 (-644 *5))) (-5 *1 (-382 *5))
+ (-4 *5 (-13 (-848) (-365)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-409 (-952 (-566)))) (-5 *2 (-644 *4)) (-5 *1 (-382 *4))
+ (-4 *4 (-13 (-848) (-365))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
(((*1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-1099))))
((*1 *1 *1) (-12 (-4 *1 (-695 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-454)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-5 *2 (-644 *3)) (-5 *1 (-977 *4 *5 *6 *3))
+ (-4 *3 (-1064 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-594 *3)) (-14 *3 *2)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-1119)))))
+(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-943 (-225))) (-5 *2 (-1269)) (-5 *1 (-470)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-365) (-1199) (-1002))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-264)))))
(((*1 *2 *1 *1)
(-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-4 *3 (-1099))
(-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-1155 *7))) (-4 *6 (-850))
+ (-4 *7 (-949 *5 (-533 *6) *6)) (-4 *5 (-1049))
+ (-5 *2 (-1 (-1155 *7) *7)) (-5 *1 (-1125 *5 *6 *7)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-622 *4 *2)) (-4 *2 (-13 (-1199) (-959) (-29 *4))))))
+(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *1 *1) (-4 *1 (-1138))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-648 *5)) (-4 *5 (-1049))
+ (-5 *1 (-53 *5 *2 *3)) (-4 *3 (-852 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-689 *3)) (-4 *1 (-419 *3)) (-4 *3 (-172))))
+ ((*1 *2 *1 *2 *2) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049))))
+ ((*1 *2 *3 *2 *2 *4 *5)
+ (-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1049))
+ (-5 *1 (-853 *2 *3)) (-4 *3 (-852 *2)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547))
+ (-5 *2 (-409 (-566)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-420 *3)) (-4 *3 (-547))
+ (-4 *3 (-558))))
+ ((*1 *2 *1) (|partial| -12 (-4 *1 (-547)) (-5 *2 (-409 (-566)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547))
+ (-5 *2 (-409 (-566)))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-833 *3)) (-4 *3 (-547))
+ (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-843 *3)) (-4 *3 (-547))
+ (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547))
+ (-5 *2 (-409 (-566)))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-1008 *3))
+ (-4 *3 (-1038 *2)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
+(((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3) (-12 (-5 *3 (-952 (-225))) (-5 *2 (-225)) (-5 *1 (-306)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1214)) (-5 *2 (-644 *1)) (-4 *1 (-1010 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4))
+ (-14 *3 (-921)) (-4 *4 (-1049)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
+(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-144)) (-5 *2 (-112)))))
(((*1 *2 *1) (-12 (-5 *2 (-691 *3)) (-5 *1 (-966 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175))
+ (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566))))
+ (-5 *2 (-2 (|:| -2788 *3) (|:| |nconst| *3))) (-5 *1 (-569 *5 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-689 (-409 (-952 *4)))) (-4 *4 (-454))
+ (-5 *2 (-644 (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4)))))
+ (-5 *1 (-293 *4)))))
+(((*1 *1 *1) (-4 *1 (-95)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))))
+(((*1 *1 *1) (-5 *1 (-862))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558))))
+ ((*1 *1 *1) (|partial| -4 *1 (-722))))
+(((*1 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-538))) (-5 *2 (-1175)) (-5 *1 (-538)))))
(((*1 *2)
(-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5)))
(-5 *2 (-771)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6))))
((*1 *2)
(-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
(-4 *5 (-1240 (-409 *4))) (-5 *2 (-771)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-1 (-112) *8))) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8))))
+ (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))))
+(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))))
+(((*1 *1 *1) (-4 *1 (-95)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-751)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5)))
+ (-5 *2 (-644 (-644 *4))) (-5 *1 (-343 *3 *4 *5 *6))
+ (-4 *3 (-344 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-4 *3 (-370)) (-5 *2 (-644 (-644 *3))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1138))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *8 (-1064 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-644 *8))
+ (|:| |towers| (-644 (-1027 *5 *6 *7 *8)))))
+ (-5 *1 (-1027 *5 *6 *7 *8)) (-5 *3 (-644 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *8 (-1064 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |val| (-644 *8))
+ (|:| |towers| (-644 (-1145 *5 *6 *7 *8)))))
+ (-5 *1 (-1145 *5 *6 *7 *8)) (-5 *3 (-644 *8)))))
+(((*1 *2 *1) (-12 (-4 *1 (-132)) (-5 *2 (-771))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-5 *2 (-566)) (-4 *1 (-375 *3)) (-4 *3 (-1214))
+ (-4 *3 (-1099))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-375 *3)) (-4 *3 (-1214)) (-4 *3 (-1099))
+ (-5 *2 (-566))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-375 *4)) (-4 *4 (-1214))
+ (-5 *2 (-566))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1119)) (-5 *1 (-531))))
+ ((*1 *2 *3 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-566)) (-5 *3 (-141))))
+ ((*1 *2 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-566)))))
(((*1 *1 *1 *1) (|partial| -4 *1 (-131))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-882 *2)) (-4 *2 (-1214)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-547))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))))
+(((*1 *1 *1) (-4 *1 (-95))) ((*1 *1 *1 *1) (-5 *1 (-225)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *1 *1 *1) (-5 *1 (-381)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-409 (-566))) (-5 *1 (-320 *3 *4 *5)) (-4 *3 (-365))
+ (-14 *4 (-1175)) (-14 *5 *3))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-308)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
+ (-5 *1 (-1123 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2))
+ (-4 *3 (-558)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-823)) (-5 *1 (-822)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *2 (-1099)) (-4 *3 (-1099))
+ (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *1) (-4 *1 (-95)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-165 *3 *4))
+ (-4 *3 (-166 *4))))
+ ((*1 *2)
+ (-12 (-14 *4 *2) (-4 *5 (-1214)) (-5 *2 (-771))
+ (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *4 (-1099)) (-5 *2 (-771)) (-5 *1 (-431 *3 *4))
+ (-4 *3 (-432 *4))))
+ ((*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-546 *3)) (-4 *3 (-547))))
+ ((*1 *2) (-12 (-4 *1 (-763)) (-5 *2 (-771))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-796 *3 *4))
+ (-4 *3 (-797 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-991 *3 *4))
+ (-4 *3 (-992 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-996 *3 *4))
+ (-4 *3 (-997 *4))))
+ ((*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1011 *3)) (-4 *3 (-1012))))
+ ((*1 *2) (-12 (-4 *1 (-1049)) (-5 *2 (-771))))
+ ((*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1058 *3)) (-4 *3 (-1059)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1240 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-985 *4 *2 *3 *5))
+ (-4 *4 (-351)) (-4 *5 (-724 *2 *3)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *1 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *3 *4 *4 *2 *2 *2)
+ (-12 (-5 *2 (-566))
+ (-5 *3
+ (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-771)) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-4 *6 (-793)) (-4 *4 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *7 (-850))
+ (-5 *1 (-451 *5 *6 *7 *4)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *2 (-1099)) (-4 *3 (-1099))
+ (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)))))
+(((*1 *2 *2) (-12 (-5 *2 (-317 (-225))) (-5 *1 (-268)))))
+(((*1 *1 *1) (-4 *1 (-95)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2)
+ (-12 (-5 *2 (-2 (|:| -1762 (-644 *3)) (|:| -3603 (-644 *3))))
+ (-5 *1 (-1215 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *2)
+ (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3))
+ (-4 *3 (-1240 (-169 *2))))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-1186 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-142 *2 *4 *3))
+ (-4 *3 (-375 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-505 *2 *4 *5 *3))
+ (-4 *5 (-375 *2)) (-4 *3 (-375 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-689 *4)) (-4 *4 (-992 *2)) (-4 *2 (-558))
+ (-5 *1 (-693 *2 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-1233 *2 *4 *3))
+ (-4 *3 (-1240 *4)))))
(((*1 *2 *2 *3)
(|partial| -12 (-5 *2 (-644 (-1171 *4))) (-5 *3 (-1171 *4))
(-4 *4 (-909)) (-5 *1 (-663 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-192))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-301))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-306)))))
+(((*1 *1) (-5 *1 (-141))))
+(((*1 *1 *2) (-12 (-4 *1 (-666 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1175)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-771)) (-5 *3 (-943 *5)) (-4 *5 (-1049))
+ (-5 *1 (-1163 *4 *5)) (-14 *4 (-921))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-771))) (-5 *3 (-771)) (-5 *1 (-1163 *4 *5))
+ (-14 *4 (-921)) (-4 *5 (-1049))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-771))) (-5 *3 (-943 *5)) (-4 *5 (-1049))
+ (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))))
+(((*1 *2 *1) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-566))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1157))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-508))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-593))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-480))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-137))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-156))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1165))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-626))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1095))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1089))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1072))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-970))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-180))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1036))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-312))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-671))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-154))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-527))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1275))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1065))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-519))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-681))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-96))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1114))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-133))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-138))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1274))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-676))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-218))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-526))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1180))))
+ ((*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1180))))
+ ((*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1180))))
+ ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1180)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3))))
+ ((*1 *1 *1) (-4 *1 (-1202))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1175)) (-5 *1 (-587 *2)) (-4 *2 (-1038 *3))
+ (-4 *2 (-365))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-587 *2)) (-4 *2 (-365))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-630 *4 *2))
+ (-4 *2 (-13 (-432 *4) (-1002) (-1199)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1091 *2)) (-4 *2 (-13 (-432 *4) (-1002) (-1199)))
+ (-4 *4 (-558)) (-5 *1 (-630 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-959)) (-5 *2 (-1175))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-959)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1171 (-566))) (-5 *3 (-566)) (-4 *1 (-869 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-5 *1 (-1188 *2)) (-4 *2 (-365)))))
+(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-566)))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-644 (-247 *4 *5))) (-5 *2 (-247 *4 *5))
(-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-631 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1195)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-1240 (-409 (-566))))
+ (-5 *2 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))))
+ (-5 *1 (-913 *3 *4)) (-4 *4 (-1240 (-409 *3)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *3))
+ (-4 *3 (-1240 (-409 *4))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3))))
+ ((*1 *1 *1) (-4 *1 (-1202))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-365) (-1199) (-1002))))))
+(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926))))
+ ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-782 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *1 (-963 *3 *2)) (-4 *2 (-131)) (-4 *3 (-558))
+ (-4 *3 (-1049)) (-4 *2 (-792))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-1171 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-971)) (-4 *2 (-131)) (-5 *1 (-1177 *3)) (-4 *3 (-558))
+ (-4 *3 (-1049))))
+ ((*1 *1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-1237 *4 *3)) (-14 *4 (-1175))
+ (-4 *3 (-1049)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-470)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
+ ((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -2671 (-644 (-862))) (|:| -4385 (-644 (-862)))
+ (|:| |presup| (-644 (-862))) (|:| -3770 (-644 (-862)))
+ (|:| |args| (-644 (-862)))))
+ (-5 *1 (-1175)))))
(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-1231 (-566))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-547)) (-5 *1 (-159 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-644 *5))
+ (-5 *1 (-890 *4 *5)) (-4 *5 (-1214)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3))))
+ ((*1 *1 *1) (-4 *1 (-1202))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-409 (-566))) (-5 *1 (-596 *3)) (-4 *3 (-38 *2))
+ (-4 *3 (-1049)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
+(((*1 *2) (-12 (-5 *2 (-1146 (-1157))) (-5 *1 (-393)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-689 *5))) (-4 *5 (-308)) (-4 *5 (-1049))
+ (-5 *2 (-1264 (-1264 *5))) (-5 *1 (-1029 *5)) (-5 *4 (-1264 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1049))
+ (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285)))
+ (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4))))
+ ((*1 *1 *1) (-4 *1 (-547)))
+ ((*1 *2 *1) (-12 (-5 *2 (-921)) (-5 *1 (-672 *3)) (-4 *3 (-850))))
+ ((*1 *2 *1) (-12 (-5 *2 (-921)) (-5 *1 (-677 *3)) (-4 *3 (-850))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-819 *3)) (-4 *3 (-850))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-893 *3)) (-4 *3 (-850))))
+ ((*1 *2 *1) (-12 (-4 *1 (-995 *3)) (-4 *3 (-1214)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1211 *3)) (-4 *3 (-1214))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1002))
+ (-4 *2 (-1049)))))
(((*1 *2 *3)
(-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1264 (-644 (-566)))) (-5 *1 (-482))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
+ (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-644 (-1024 (-409 *4)))))
+ (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-952 *4)))
+ (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175)))
+ (-4 *6 (-13 (-558) (-1038 *5))) (-4 *5 (-558))
+ (-5 *2 (-644 (-644 (-295 (-409 (-952 *6)))))) (-5 *1 (-1039 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-4 *1 (-34))) ((*1 *1 *1) (-5 *1 (-114)))
+ ((*1 *1 *1) (-5 *1 (-171))) ((*1 *1 *1) (-4 *1 (-547)))
+ ((*1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
+ (-4 *3 (-13 (-1099) (-34))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3))))
+ ((*1 *1 *1) (-4 *1 (-1202))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-647 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-112)) (-5 *1 (-829)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-771)) (-4 *5 (-365)) (-5 *2 (-174 *6))
+ (-5 *1 (-867 *5 *4 *6)) (-4 *4 (-1255 *5)) (-4 *6 (-1240 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1099))
+ (-4 *6 (-1099)) (-4 *2 (-1099)) (-5 *1 (-680 *5 *6 *2)))))
+(((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))))
(((*1 *1 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-689 *3))
+ (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))))
+ (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-689 *3))
+ (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))))
+ (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049))
+ (-5 *2 (-952 *5)) (-5 *1 (-944 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *2) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3))))
+ ((*1 *1 *1) (-4 *1 (-1202))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1175)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1171 *1)) (-4 *1 (-1012)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1191 *4 *5))
+ (-4 *4 (-1099)) (-4 *5 (-1099)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1178)) (-5 *3 (-1175)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793))
+ (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1068 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793))
+ (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-1091 (-843 *3))) (-4 *3 (-13 (-1199) (-959) (-29 *5)))
(-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
@@ -1716,8 +2660,8 @@
(-12 (-4 *3 (-29 (-566))) (-4 *3 (-959)) (-4 *3 (-1199))
(-4 *3 (-38 (-409 (-566))))))
(-12 (-5 *2 (-1175)) (-4 *1 (-1224 *3)) (-4 *3 (-1049))
- (-12 (|has| *3 (-15 -2540 ((-644 *2) *3)))
- (|has| *3 (-15 -4117 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566))))))))
+ (-12 (|has| *3 (-15 -2608 ((-644 *2) *3)))
+ (|has| *3 (-15 -3921 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566))))))))
((*1 *1 *1)
(-12 (-4 *1 (-1224 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566))))))
((*1 *1 *1 *2)
@@ -1731,8 +2675,8 @@
(-12 (-4 *3 (-29 (-566))) (-4 *3 (-959)) (-4 *3 (-1199))
(-4 *3 (-38 (-409 (-566))))))
(-12 (-5 *2 (-1175)) (-4 *1 (-1245 *3)) (-4 *3 (-1049))
- (-12 (|has| *3 (-15 -2540 ((-644 *2) *3)))
- (|has| *3 (-15 -4117 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566))))))))
+ (-12 (|has| *3 (-15 -2608 ((-644 *2) *3)))
+ (|has| *3 (-15 -3921 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566))))))))
((*1 *1 *1)
(-12 (-4 *1 (-1245 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566))))))
((*1 *1 *1 *2)
@@ -1744,1239 +2688,166 @@
(-12 (-4 *3 (-29 (-566))) (-4 *3 (-959)) (-4 *3 (-1199))
(-4 *3 (-38 (-409 (-566))))))
(-12 (-5 *2 (-1175)) (-4 *1 (-1255 *3)) (-4 *3 (-1049))
- (-12 (|has| *3 (-15 -2540 ((-644 *2) *3)))
- (|has| *3 (-15 -4117 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566))))))))
+ (-12 (|has| *3 (-15 -2608 ((-644 *2) *3)))
+ (|has| *3 (-15 -3921 (*3 *3 *2))) (-4 *3 (-38 (-409 (-566))))))))
((*1 *1 *1)
(-12 (-4 *1 (-1255 *2)) (-4 *2 (-1049)) (-4 *2 (-38 (-409 (-566))))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5))
(-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)) (-14 *5 *3))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
- (-5 *2 (-1264 *6)) (-5 *1 (-338 *3 *4 *5 *6))
- (-4 *6 (-344 *3 *4 *5)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *1 (-59 *3)) (-4 *3 (-1214))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-59 *3)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
- (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-644 (-612 *6))) (-5 *4 (-1175)) (-5 *2 (-612 *6))
- (-4 *6 (-432 *5)) (-4 *5 (-1099)) (-5 *1 (-575 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2408 *4)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2)
- (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-419 *3)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3))
- (-5 *1 (-742 *5 *4 *6 *3)) (-4 *3 (-949 *6 *5 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-566))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-324 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-131))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-363 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-388 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-649 *3 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1139 *3 *2)) (-4 *3 (-13 (-1099) (-34)))
- (-4 *2 (-13 (-1099) (-34))))))
-(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
- (-12 (-5 *6 (-644 (-112))) (-5 *7 (-689 (-225)))
- (-5 *8 (-689 (-566))) (-5 *3 (-566)) (-5 *4 (-225)) (-5 *5 (-112))
- (-5 *2 (-1035)) (-5 *1 (-754)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 (-644 *6))) (-4 *6 (-949 *3 *5 *4))
- (-4 *3 (-13 (-308) (-147))) (-4 *4 (-13 (-850) (-614 (-1175))))
- (-4 *5 (-793)) (-5 *1 (-924 *3 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175))
- (-4 *5 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))))
- (-5 *2 (-587 *3)) (-5 *1 (-559 *5 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
-(((*1 *2 *3 *4 *4 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
- (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4))
- (-5 *2
- (-3 (|:| |overq| (-1171 (-409 (-566))))
- (|:| |overan| (-1171 (-48))) (|:| -3272 (-112))))
- (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1192)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-943 *4)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
-(((*1 *1 *2) (-12 (-5 *2 (-819 *3)) (-4 *3 (-850)) (-5 *1 (-672 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-225)) (-5 *5 (-566)) (-5 *2 (-1209 *3))
- (-5 *1 (-790 *3)) (-4 *3 (-974))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-112))
- (-5 *1 (-1209 *2)) (-4 *2 (-974)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4417)) (-4 *1 (-151 *2)) (-4 *2 (-1214))
- (-4 *2 (-1099)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7))))
- (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-1 (-112) *8))) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8))))
- (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))))
-(((*1 *2)
- (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-1188 *2)) (-4 *2 (-365)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-850)) (-5 *2 (-644 (-644 *4))) (-5 *1 (-1185 *4))
- (-5 *3 (-644 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)) (-4 *5 (-365))
- (-5 *2 (-112)) (-5 *1 (-667 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4418))))
- (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4418)))) (-5 *2 (-112))
- (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))))
-(((*1 *1 *2 *2 *1) (-12 (-5 *1 (-647 *2)) (-4 *2 (-1099)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-689 *5)) (-4 *5 (-1049)) (-5 *1 (-1054 *3 *4 *5))
- (-14 *3 (-771)) (-14 *4 (-771)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2))
- (-4 *3 (-558)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-3 (-409 (-952 *5)) (-1164 (-1175) (-952 *5))))
- (-4 *5 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *5)))))
- (-5 *1 (-293 *5)) (-5 *4 (-689 (-409 (-952 *5)))))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-903 *3)) (-4 *3 (-1099)) (-5 *2 (-1101 *3))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1099)) (-5 *2 (-1101 (-644 *4))) (-5 *1 (-904 *4))
- (-5 *3 (-644 *4))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1099)) (-5 *2 (-1101 (-1101 *4))) (-5 *1 (-904 *4))
- (-5 *3 (-1101 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *2 (-1101 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-644 (-409 *6))) (-5 *3 (-409 *6))
- (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-570 *5 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-112)) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-4 *3 (-13 (-27) (-1199) (-432 *6) (-10 -8 (-15 -2512 ($ *7)))))
- (-4 *7 (-848))
- (-4 *8
- (-13 (-1242 *3 *7) (-365) (-1199)
- (-10 -8 (-15 -2862 ($ $)) (-15 -4117 ($ $)))))
- (-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))))
- (-5 *1 (-424 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1157)) (-4 *9 (-983 *8))
- (-14 *10 (-1175)))))
-(((*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850))))
- ((*1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
- ((*1 *1 *1) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1207 *2 *3 *4 *5)) (-4 *2 (-558))
- (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-1064 *2 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214))))
- ((*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1214))
- (-4 *5 (-375 *4)) (-4 *2 (-375 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *6 *7 *2)) (-4 *6 (-1049))
- (-4 *7 (-238 *5 *6)) (-4 *2 (-238 *4 *6)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2)
- (-12 (-5 *2 (-689 (-910 *3))) (-5 *1 (-353 *3 *4)) (-14 *3 (-921))
- (-14 *4 (-921))))
- ((*1 *2)
- (-12 (-5 *2 (-689 *3)) (-5 *1 (-354 *3 *4)) (-4 *3 (-351))
- (-14 *4
- (-3 (-1171 *3)
- (-1264 (-644 (-2 (|:| -2212 *3) (|:| -2168 (-1119)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-689 *3)) (-5 *1 (-355 *3 *4)) (-4 *3 (-351))
- (-14 *4 (-921)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-860)) (-5 *3 (-128)) (-5 *2 (-771)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049))
- (-14 *4 (-644 (-1175)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850)))
- (-14 *4 (-644 (-1175)))))
- ((*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-337 *3 *4 *5 *2)) (-4 *3 (-365))
- (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
- (-4 *2 (-344 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2)
- (-4 *5 (-172))))
- ((*1 *1) (-12 (-4 *2 (-172)) (-4 *1 (-724 *2 *3)) (-4 *3 (-1240 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-409 *6)) (-4 *6 (-1240 *5))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4))))
- (-5 *1 (-810 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-653 (-409 *6))) (-4 *6 (-1240 *5))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-5 *2 (-2 (|:| -1990 (-644 (-409 *6))) (|:| -1380 (-689 *5))))
- (-5 *1 (-810 *5 *6)) (-5 *4 (-644 (-409 *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-409 *6)) (-4 *6 (-1240 *5))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4))))
- (-5 *1 (-810 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-654 *6 (-409 *6))) (-4 *6 (-1240 *5))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-5 *2 (-2 (|:| -1990 (-644 (-409 *6))) (|:| -1380 (-689 *5))))
- (-5 *1 (-810 *5 *6)) (-5 *4 (-644 (-409 *6))))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-1157))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-82 PDEF))))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1035))
- (-5 *1 (-750)))))
-(((*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-560 *3)) (-4 *3 (-547)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-604 *3 *2)) (-4 *3 (-1099)) (-4 *3 (-850))
- (-4 *2 (-1214))))
- ((*1 *2 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850))))
- ((*1 *2 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1214)) (-5 *1 (-873 *2 *3)) (-4 *3 (-1214))))
- ((*1 *2 *1) (-12 (-5 *2 (-672 *3)) (-5 *1 (-893 *3)) (-4 *3 (-850))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214))))
- ((*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147))
- (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-977 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1099)))))
-(((*1 *1) (-5 *1 (-331))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-689 (-952 *4))) (-5 *1 (-1028 *4))
- (-4 *4 (-1049)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1175))
- (-4 *4 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-559 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
- (-5 *2
- (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566))
- (|:| |success| (-112))))
- (-5 *1 (-789)) (-5 *5 (-566)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-365) (-1199) (-1002))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-921)) (-5 *1 (-786)))))
-(((*1 *2)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *1) (-5 *1 (-157)))
- ((*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))))
-(((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-1265))))
- ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1265))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1265))))
- ((*1 *2 *1 *2 *3)
- (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-1266))))
- ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1266))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1266)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1035)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-558)) (-4 *3 (-1049))
- (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-852 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-558)) (-4 *5 (-1049))
- (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-853 *5 *3))
- (-4 *3 (-852 *5)))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4417)) (-4 *1 (-491 *3)) (-4 *3 (-1214))
- (-4 *3 (-1099)) (-5 *2 (-771))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4417)) (-4 *1 (-491 *4))
- (-4 *4 (-1214)) (-5 *2 (-771)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-1 (-112) *5))
- (-5 *1 (-890 *4 *5)) (-4 *5 (-1214))))
- ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1165)))))
-(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))))
-(((*1 *1) (-5 *1 (-292))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-381)) (-5 *1 (-192)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-597 *3)) (-4 *3 (-1049))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-973 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-792))
- (-4 *5 (-850)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4))
- (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -2806 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-365)) (-4 *7 (-1240 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-409 *7)) (|:| |a0| *6))
- (-2 (|:| -2806 (-409 *7)) (|:| |coeff| (-409 *7))) "failed"))
- (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4))
- (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-1064 *4 *5 *6)) (-4 *4 (-558))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *2)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-771)) (-4 *5 (-558))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-594 *3)) (-14 *3 *2)))
- ((*1 *2 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-1119)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *4 (-612 *3)) (-5 *5 (-1 (-1171 *3) (-1171 *3)))
- (-4 *3 (-13 (-27) (-432 *6))) (-4 *6 (-558)) (-5 *2 (-587 *3))
- (-5 *1 (-553 *6 *3)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-771)) (-4 *4 (-308)) (-4 *6 (-1240 *4))
- (-5 *2 (-1264 (-644 *6))) (-5 *1 (-457 *4 *6)) (-5 *5 (-644 *6)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-172)) (-4 *2 (-23)) (-5 *1 (-290 *3 *4 *2 *5 *6 *7))
- (-4 *4 (-1240 *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 (-711 *3 *2 *4 *5 *6)) (-4 *3 (-172))
- (-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 (-1240 *3)) (-5 *1 (-712 *3 *2)) (-4 *3 (-1049))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-23)) (-5 *1 (-715 *3 *2 *4 *5 *6)) (-4 *3 (-172))
- (-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 (-869 *3)) (-5 *2 (-566)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-566)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1049))
- (-5 *1 (-322 *4 *5 *2 *6)) (-4 *6 (-949 *2 *4 *5)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-1264 (-566))) (-5 *3 (-566)) (-5 *1 (-1109))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-1264 (-566))) (-5 *3 (-644 (-566))) (-5 *4 (-566))
- (-5 *1 (-1109)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1171 *4)) (-5 *1 (-530 *4))
- (-4 *4 (-351)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-351)) (-4 *2 (-1049)) (-5 *1 (-712 *2 *3))
- (-4 *3 (-1240 *2)))))
-(((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1214)) (-5 *2 (-771))
- (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131))
- (-5 *2 (-771))))
- ((*1 *2)
- (-12 (-4 *4 (-365)) (-5 *2 (-771)) (-5 *1 (-329 *3 *4))
- (-4 *3 (-330 *4))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-363 *3)) (-4 *3 (-1099))))
- ((*1 *2) (-12 (-4 *1 (-370)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-388 *3)) (-4 *3 (-1099))))
- ((*1 *2)
- (-12 (-4 *4 (-1099)) (-5 *2 (-771)) (-5 *1 (-426 *3 *4))
- (-4 *3 (-427 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099))
- (-4 *4 (-23)) (-14 *5 *4)))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-771))
- (-5 *1 (-723 *3 *4 *5)) (-4 *3 (-724 *4 *5))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-819 *3)) (-4 *3 (-850))))
- ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
- (-4 *3 (-1240 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5))
- (-5 *2 (-415 *4 (-409 *4) *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 *6)) (-4 *6 (-13 (-411 *4 *5) (-1038 *4)))
- (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-4 *3 (-308))
- (-5 *1 (-415 *3 *4 *5 *6))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267))))
- ((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1265))))
- ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1171 *7))
- (-4 *5 (-1049)) (-4 *7 (-1049)) (-4 *2 (-1240 *5))
- (-5 *1 (-503 *5 *2 *6 *7)) (-4 *6 (-1240 *2)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-175)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-508)) (-5 *2 (-691 (-109))) (-5 *1 (-175))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-508)) (-5 *2 (-691 (-109))) (-5 *1 (-1084)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-786)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *4))))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-644 *8))) (-5 *3 (-644 *8))
- (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147)))
- (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-112))
- (-5 *1 (-924 *5 *6 *7 *8)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049))
- (-5 *1 (-1159 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049))
- (-14 *4 (-1175)) (-14 *5 *3))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-566)) (-5 *1 (-317 *3)) (-4 *3 (-558)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
- (-12
- (-5 *3
- (-2 (|:| |det| *12) (|:| |rows| (-644 (-566)))
- (|:| |cols| (-644 (-566)))))
- (-5 *4 (-689 *12)) (-5 *5 (-644 (-409 (-952 *9))))
- (-5 *6 (-644 (-644 *12))) (-5 *7 (-771)) (-5 *8 (-566))
- (-4 *9 (-13 (-308) (-147))) (-4 *12 (-949 *9 *11 *10))
- (-4 *10 (-13 (-850) (-614 (-1175)))) (-4 *11 (-793))
- (-5 *2
- (-2 (|:| |eqzro| (-644 *12)) (|:| |neqzro| (-644 *12))
- (|:| |wcond| (-644 (-952 *9)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1264 (-409 (-952 *9))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *9)))))))))
- (-5 *1 (-924 *9 *10 *11 *12)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-755)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *1) (-5 *1 (-1062))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-644 *7)) (-5 *3 (-566)) (-4 *7 (-949 *4 *5 *6))
- (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-5 *1 (-451 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-874)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *4 (-365)) (-5 *1 (-896 *2 *4))
- (-4 *2 (-1240 *4)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *4 (-1 *2 *2)) (-4 *2 (-648 *5)) (-4 *5 (-1049))
- (-5 *1 (-53 *5 *2 *3)) (-4 *3 (-852 *5))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-689 *3)) (-4 *1 (-419 *3)) (-4 *3 (-172))))
- ((*1 *2 *1 *2 *2) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049))))
- ((*1 *2 *3 *2 *2 *4 *5)
- (-12 (-5 *4 (-99 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-1049))
- (-5 *1 (-853 *2 *3)) (-4 *3 (-852 *2)))))
-(((*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-451 *3 *4 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4))))
- (-5 *1 (-1140 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
- (-4 *4 (-13 (-1099) (-34))))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
- ((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *1) (-5 *1 (-144))))
-(((*1 *1 *2) (-12 (-5 *1 (-1200 *2)) (-4 *2 (-1099))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-1200 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-644 (-1200 *2))) (-5 *1 (-1200 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-175))) (-5 *1 (-1084)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1155 *3)) (-4 *3 (-1099))
- (-4 *3 (-1214)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
-(((*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049))
- (-14 *4 (-644 (-1175)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-566)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850)))
- (-14 *4 (-644 (-1175)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850))
- (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-276))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1171 *8)) (-5 *4 (-644 *6)) (-4 *6 (-850))
- (-4 *8 (-949 *7 *5 *6)) (-4 *5 (-793)) (-4 *7 (-1049))
- (-5 *2 (-644 (-771))) (-5 *1 (-322 *5 *6 *7 *8))))
- ((*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-921))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172))
- (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-4 *1 (-472 *3 *2)) (-4 *3 (-172)) (-4 *2 (-23))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-558)) (-5 *2 (-566)) (-5 *1 (-623 *3 *4))
- (-4 *4 (-1240 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-708 *3)) (-4 *3 (-1049)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-904 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-771)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-949 *4 *5 *3)) (-4 *4 (-1049)) (-4 *5 (-793))
- (-4 *3 (-850)) (-5 *2 (-771))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-973 *3 *2 *4)) (-4 *3 (-1049)) (-4 *4 (-850))
- (-4 *2 (-792))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-771))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1226 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1255 *3))
- (-5 *2 (-566))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1224 *3))
- (-5 *2 (-409 (-566)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-833 (-921)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1285 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
- (-5 *2 (-771)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2))
- (-4 *2 (-432 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1091 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558))
- (-5 *1 (-158 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-160))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175)))))
-(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-144)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-755)))))
-(((*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-489)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558))
- (-5 *2 (-1171 *3)))))
-(((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 (-892 *6)))
- (-5 *5 (-1 (-889 *6 *8) *8 (-892 *6) (-889 *6 *8))) (-4 *6 (-1099))
- (-4 *8 (-13 (-1049) (-614 (-892 *6)) (-1038 *7)))
- (-5 *2 (-889 *6 *8)) (-4 *7 (-1049)) (-5 *1 (-941 *6 *7 *8)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))))
-(((*1 *1) (-5 *1 (-439))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-566))
- (|:| -4236 (-644 (-2 (|:| |irr| *3) (|:| -2175 (-566)))))))
- (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-566))
- (|:| -4236 (-644 (-2 (|:| |irr| *3) (|:| -2175 (-566)))))))
- (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-420 *5)) (-4 *5 (-558))
- (-5 *2
- (-2 (|:| -3250 (-771)) (|:| -3157 *5) (|:| |radicand| (-644 *5))))
- (-5 *1 (-321 *5)) (-5 *4 (-771))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1002)) (-5 *2 (-566)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3))
- (-4 *3 (-1099)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-295 (-409 (-952 *5)))) (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-147)))
- (-5 *2 (-1164 (-644 (-317 *5)) (-644 (-295 (-317 *5)))))
- (-5 *1 (-1128 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-147)))
- (-5 *2 (-1164 (-644 (-317 *5)) (-644 (-295 (-317 *5)))))
- (-5 *1 (-1128 *5)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4))
- (-5 *2 (-420 (-1171 (-409 (-566))))) (-5 *1 (-437 *4 *5 *3))
- (-4 *3 (-1240 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-334)) (-5 *1 (-249)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1099)) (-4 *6 (-886 *5)) (-5 *2 (-885 *5 *6 (-644 *6)))
- (-5 *1 (-887 *5 *6 *4)) (-5 *3 (-644 *6)) (-4 *4 (-614 (-892 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1099)) (-5 *2 (-644 (-295 *3))) (-5 *1 (-887 *5 *3 *4))
- (-4 *3 (-1038 (-1175))) (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1099)) (-5 *2 (-644 (-295 (-952 *3))))
- (-5 *1 (-887 *5 *3 *4)) (-4 *3 (-1049))
- (-2426 (-4 *3 (-1038 (-1175)))) (-4 *3 (-886 *5))
- (-4 *4 (-614 (-892 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1099)) (-5 *2 (-889 *5 *3)) (-5 *1 (-887 *5 *3 *4))
- (-2426 (-4 *3 (-1038 (-1175)))) (-2426 (-4 *3 (-1049)))
- (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5))))))
-(((*1 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *1) (-12 (-4 *1 (-132)) (-5 *2 (-771))))
- ((*1 *2 *3 *1 *2)
- (-12 (-5 *2 (-566)) (-4 *1 (-375 *3)) (-4 *3 (-1214))
- (-4 *3 (-1099))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-375 *3)) (-4 *3 (-1214)) (-4 *3 (-1099))
- (-5 *2 (-566))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-375 *4)) (-4 *4 (-1214))
- (-5 *2 (-566))))
- ((*1 *2 *1) (-12 (-5 *2 (-1119)) (-5 *1 (-531))))
- ((*1 *2 *3 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-566)) (-5 *3 (-141))))
- ((*1 *2 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-566)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225)))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-66 FUNCT1))))
- (-5 *2 (-1035)) (-5 *1 (-753)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-850)) (-4 *5 (-909)) (-4 *6 (-793))
- (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-420 (-1171 *8)))
- (-5 *1 (-906 *5 *6 *7 *8)) (-5 *4 (-1171 *8))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5)))
- (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-1214)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
-(((*1 *1) (-5 *1 (-1081))))
-(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-241))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1269)) (-5 *1 (-241)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-1214)) (-5 *1 (-182 *3 *2))
- (-4 *2 (-674 *3)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4)
- (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035))
- (-5 *1 (-756)))))
-(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
- (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-646 *3)) (-4 *3 (-1057)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-1051 *3)) (-4 *3 (-1057)) (-5 *2 (-112))))
+ (-12 (-5 *2 (-420 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48)))))
((*1 *2 *3 *1)
- (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365)))
- (-4 *3 (-1240 *4)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
- (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-850)) (-5 *2 (-1186 (-644 *4))) (-5 *1 (-1185 *4))
- (-5 *3 (-644 *4)))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-644 (-1175))) (-14 *5 (-771))
- (-5 *2
- (-644
- (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
- (-247 *4 (-409 (-566))))))
- (-5 *1 (-507 *4 *5))
- (-5 *3
- (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
- (-247 *4 (-409 (-566))))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *2 (-1099)) (-4 *3 (-1099))
- (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172))
- (-4 *5 (-1240 *4)) (-5 *2 (-689 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4))
- (-5 *1 (-410 *3 *4 *5)) (-4 *3 (-411 *4 *5))))
- ((*1 *2)
- (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3))
- (-5 *2 (-689 *3)))))
-(((*1 *2 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |partsol| (-1264 (-409 (-952 *4))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *4)))))))
- (-5 *3 (-644 *7)) (-4 *4 (-13 (-308) (-147)))
- (-4 *7 (-949 *4 *6 *5)) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793)) (-5 *1 (-924 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
- (-5 *4 (-689 (-1171 *8))) (-4 *5 (-1049)) (-4 *8 (-1049))
- (-4 *6 (-1240 *5)) (-5 *2 (-689 *6)) (-5 *1 (-503 *5 *6 *7 *8))
- (-4 *7 (-1240 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
- (-5 *2 (-1264 (-689 *4)))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-1264 (-689 *4))) (-5 *1 (-418 *3 *4))
- (-4 *3 (-419 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-1264 (-689 *3)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-1175))) (-4 *5 (-365))
- (-5 *2 (-1264 (-689 (-409 (-952 *5))))) (-5 *1 (-1085 *5))
- (-5 *4 (-689 (-409 (-952 *5))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-1175))) (-4 *5 (-365))
- (-5 *2 (-1264 (-689 (-952 *5)))) (-5 *1 (-1085 *5))
- (-5 *4 (-689 (-952 *5)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-689 *4))) (-4 *4 (-365))
- (-5 *2 (-1264 (-689 *4))) (-5 *1 (-1085 *4)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-644
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225)))))
- (-5 *1 (-561))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-5 *2 (-644 *3))))
- ((*1 *2 *1)
- (-12
- (-5 *2
- (-644
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225)))))
- (-5 *1 (-803)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558))
- (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3))
- (-4 *2
- (-13 (-365) (-303)
- (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $))
- (-15 -3013 ((-1124 *3 (-612 $)) $))
- (-15 -2512 ($ (-1124 *3 (-612 $))))))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))))
-(((*1 *1) (-5 *1 (-157)))
- ((*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *4 (-644 (-1175)))
- (-5 *2 (-689 (-317 (-225)))) (-5 *1 (-205))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1099)) (-4 *6 (-900 *5)) (-5 *2 (-689 *6))
- (-5 *1 (-692 *5 *6 *3 *4)) (-4 *3 (-375 *6))
- (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4417)))))))
-(((*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3))))
- (-5 *2 (-644 (-1175))) (-5 *1 (-1075 *3 *4 *5))
- (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-483 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049))
- (-5 *2 (-247 *4 *5)) (-5 *1 (-944 *4 *5)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1102 *2 *3 *4 *5 *6)) (-4 *2 (-1099)) (-4 *3 (-1099))
- (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099)))))
-(((*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
- (-4 *4 (-351)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4))))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-819 *4)) (-4 *4 (-850)) (-5 *2 (-112))
- (-5 *1 (-672 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-683 *4 *3)) (-4 *4 (-1099))
- (-4 *3 (-1099)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
-(((*1 *2 *2)
- (-12
- (-5 *2
- (-506 (-409 (-566)) (-240 *4 (-771)) (-864 *3)
- (-247 *3 (-409 (-566)))))
- (-14 *3 (-644 (-1175))) (-14 *4 (-771)) (-5 *1 (-507 *3 *4)))))
-(((*1 *1 *2) (-12 (-4 *1 (-666 *2)) (-4 *2 (-1214))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1175)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1240 *4)) (-4 *4 (-1218))
- (-4 *1 (-344 *4 *3 *5)) (-4 *5 (-1240 (-409 *3))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862))))
- ((*1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-921)) (-4 *4 (-370)) (-4 *4 (-365)) (-5 *2 (-1171 *1))
- (-4 *1 (-330 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1171 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-372 *3 *2)) (-4 *3 (-172)) (-4 *3 (-365))
- (-4 *2 (-1240 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-1171 *4))
- (-5 *1 (-530 *4)))))
-(((*1 *2 *1) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862)))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-566))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1157))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-508))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-593))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-480))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-137))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-156))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1165))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-626))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1095))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1089))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1072))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-970))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-180))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1036))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-312))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-671))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-154))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-527))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1275))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1065))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-519))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-681))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-96))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1114))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-133))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-138))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-1274))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-676))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-218))))
- ((*1 *2 *1) (-12 (-4 *1 (-1136)) (-5 *2 (-526))))
- ((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1180)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1109)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *6)) (-4 *5 (-1099))
- (-4 *6 (-1214)) (-5 *2 (-1 *6 *5)) (-5 *1 (-641 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-4 *5 (-1099))
- (-4 *2 (-1214)) (-5 *1 (-641 *5 *2))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 *5)) (-4 *6 (-1099))
- (-4 *5 (-1214)) (-5 *2 (-1 *5 *6)) (-5 *1 (-641 *6 *5))))
- ((*1 *2 *3 *4 *5 *2)
- (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-4 *5 (-1099))
- (-4 *2 (-1214)) (-5 *1 (-641 *5 *2))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-644 *5)) (-5 *4 (-644 *6))
- (-4 *5 (-1099)) (-4 *6 (-1214)) (-5 *1 (-641 *5 *6))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-5 *6 (-1 *2 *5))
- (-4 *5 (-1099)) (-4 *2 (-1214)) (-5 *1 (-641 *5 *2))))
- ((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-144)) (-5 *2 (-771)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
-(((*1 *2)
- (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-909))
- (-5 *1 (-459 *3 *4 *2 *5)) (-4 *5 (-949 *2 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-909))
- (-5 *1 (-906 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4))))
- ((*1 *2) (-12 (-4 *2 (-909)) (-5 *1 (-907 *2 *3)) (-4 *3 (-1240 *2)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
-(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))))
-(((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))))
-(((*1 *2 *3) (-12 (-5 *2 (-381)) (-5 *1 (-785 *3)) (-4 *3 (-614 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-921)) (-5 *2 (-381)) (-5 *1 (-785 *3))
- (-4 *3 (-614 *2))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 *2))
- (-5 *2 (-381)) (-5 *1 (-785 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049))
- (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-4 *4 (-614 *2))
- (-5 *2 (-381)) (-5 *1 (-785 *4))))
+ (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3))))
+ (-5 *1 (-121 *3)) (-4 *3 (-850))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-587 *4)) (-4 *4 (-13 (-29 *3) (-1199)))
+ (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-585 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-587 (-409 (-952 *3))))
+ (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-590 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558))
- (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850))
- (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4))))
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365))
+ (-5 *2 (-2 (|:| -3362 *3) (|:| |special| *3))) (-5 *1 (-727 *5 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558)) (-4 *5 (-850))
- (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-254 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-850))
- (-4 *5 (-793)) (-4 *2 (-267 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-365)) (-5 *1 (-1025 *3 *2)) (-4 *2 (-656 *3))))
+ (-12 (-5 *4 (-1264 *5)) (-4 *5 (-365)) (-4 *5 (-1049))
+ (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5))
+ (-5 *3 (-644 (-689 *5)))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-365)) (-5 *2 (-2 (|:| -3525 *3) (|:| -1706 (-644 *5))))
- (-5 *1 (-1025 *5 *3)) (-5 *4 (-644 *5)) (-4 *3 (-656 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-5 *1 (-439)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-566)) (-5 *1 (-1196 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1119)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3))
- (-4 *3 (-1099)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 *4)) (-5 *1 (-1140 *3 *4))
- (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225)))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-79 LSFUN1))))
- (-5 *2 (-1035)) (-5 *1 (-753)))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-470)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-644 (-771))) (-5 *1 (-969 *4 *3))
- (-4 *3 (-1240 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-862)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 (-771))
- (-14 *4 (-771)) (-4 *5 (-172)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-506 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-1264 *5))) (-5 *4 (-566)) (-5 *2 (-1264 *5))
- (-5 *1 (-1029 *5)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049)))))
-(((*1 *1) (-5 *1 (-823))))
-(((*1 *2) (-12 (-5 *2 (-1146 (-1157))) (-5 *1 (-393)))))
-(((*1 *2)
- (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 (-409 *2)))
- (-4 *2 (-1240 *4)) (-5 *1 (-343 *3 *4 *2 *5))
- (-4 *3 (-344 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-344 *3 *2 *4)) (-4 *3 (-1218))
- (-4 *4 (-1240 (-409 *2))) (-4 *2 (-1240 *3)))))
-(((*1 *1)
- (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771))
- (-4 *4 (-172)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-921)) (-5 *1 (-786)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049))
- (-5 *2 (-644 (-644 (-644 (-771))))))))
-(((*1 *2 *1 *2)
- (-12 (-4 *1 (-366 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-1200 *3))) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))))
-(((*1 *1 *1) (-4 *1 (-34))) ((*1 *1 *1) (-5 *1 (-114)))
- ((*1 *1 *1) (-5 *1 (-171))) ((*1 *1 *1) (-4 *1 (-547)))
- ((*1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
- (-4 *3 (-13 (-1099) (-34))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *1 (-679 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *2 (-1264 (-317 (-381))))
- (-5 *1 (-306)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *2 *6)) (-5 *4 (-1 *6 *5)) (-4 *5 (-1099))
- (-4 *6 (-1099)) (-4 *2 (-1099)) (-5 *1 (-680 *5 *6 *2)))))
-(((*1 *2)
- (-12 (-4 *1 (-351))
- (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-558) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-278 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-1179)) (-5 *1 (-1178)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
- ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
- ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
-(((*1 *2 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-747)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-365) (-303)
- (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $))
- (-15 -3013 ((-1124 *3 (-612 $)) $))
- (-15 -2512 ($ (-1124 *3 (-612 $))))))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *1 (-679 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112))))
+ (-12 (-5 *4 (-1264 (-1264 *5))) (-4 *5 (-365)) (-4 *5 (-1049))
+ (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5))
+ (-5 *3 (-644 (-689 *5)))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-141)) (-5 *2 (-644 *1)) (-4 *1 (-1143))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-144)) (-5 *2 (-644 *1)) (-4 *1 (-1143)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-308))))
+ ((*1 *2 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |lm| (-388 *3)) (|:| |rm| (-388 *3))))
+ (-5 *1 (-388 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3644 (-771)) (|:| -4228 (-771))))
+ (-5 *1 (-771))))
((*1 *2 *3 *3)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-1099))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1099)) (-5 *2 (-112))
- (-5 *1 (-1215 *3)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -1990 (-644 *1))))
- (-4 *1 (-369 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-455 *3 *4 *5 *6))
- (|:| -1990 (-644 (-455 *3 *4 *5 *6)))))
- (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-235 *3))))
- ((*1 *1) (-12 (-4 *1 (-235 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1264 (-771))) (-5 *1 (-675 *3)) (-4 *3 (-1099)))))
+ (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
(((*1 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
- (-5 *1 (-988 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
- (-5 *1 (-1106 *3 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
(((*1 *2 *1 *3 *3 *2)
(-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1214))
(-4 *4 (-375 *2)) (-4 *5 (-375 *2))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "right") (|has| *1 (-6 -4418)) (-4 *1 (-119 *3))
+ (-12 (-5 *2 "right") (|has| *1 (-6 -4415)) (-4 *1 (-119 *3))
(-4 *3 (-1214))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "left") (|has| *1 (-6 -4418)) (-4 *1 (-119 *3))
+ (-12 (-5 *2 "left") (|has| *1 (-6 -4415)) (-4 *1 (-119 *3))
(-4 *3 (-1214))))
((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-289 *3 *2)) (-4 *3 (-1099))
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-289 *3 *2)) (-4 *3 (-1099))
(-4 *2 (-1214))))
((*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1175)) (-5 *1 (-632))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 (-1231 (-566))) (|has| *1 (-6 -4418)) (-4 *1 (-651 *2))
+ (-12 (-5 *3 (-1231 (-566))) (|has| *1 (-6 -4415)) (-4 *1 (-651 *2))
(-4 *2 (-1214))))
((*1 *1 *1 *2 *2 *1)
(-12 (-5 *2 (-644 (-566))) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049))
(-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "value") (|has| *1 (-6 -4418)) (-4 *1 (-1010 *2))
+ (-12 (-5 *3 "value") (|has| *1 (-6 -4415)) (-4 *1 (-1010 *2))
(-4 *2 (-1214))))
((*1 *2 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214))))
((*1 *2 *1 *3 *2)
(-12 (-4 *1 (-1190 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "last") (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2))
+ (-12 (-5 *3 "last") (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2))
(-4 *2 (-1214))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "rest") (|has| *1 (-6 -4418)) (-4 *1 (-1252 *3))
+ (-12 (-5 *2 "rest") (|has| *1 (-6 -4415)) (-4 *1 (-1252 *3))
(-4 *3 (-1214))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "first") (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2))
+ (-12 (-5 *3 "first") (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2))
(-4 *2 (-1214)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-558) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-278 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4)))))
- ((*1 *1 *1) (-5 *1 (-381)))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4))))
- (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))))
-(((*1 *1 *1 *1) (-4 *1 (-143)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454)))
- (-5 *2 (-843 *4)) (-5 *1 (-314 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175))
- (-14 *6 *4)))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454)))
- (-5 *2 (-843 *4)) (-5 *1 (-1250 *3 *4 *5 *6))
- (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175))
- (-14 *6 *4))))
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *2) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3))))
+ ((*1 *1 *1) (-4 *1 (-1202))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 (-2 (|:| |val| (-644 *6)) (|:| -2327 *7))))
+ (-4 *6 (-1064 *3 *4 *5)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-988 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-644 (-2 (|:| |val| (-644 *6)) (|:| -2327 *7))))
+ (-4 *6 (-1064 *3 *4 *5)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1106 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793)) (-5 *2 (-644 *3)) (-5 *1 (-924 *4 *5 *6 *3))
+ (-4 *3 (-949 *4 *6 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-454)) (-4 *4 (-820))
+ (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))))
+(((*1 *2 *3 *3 *3 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
- (-5 *2 (-644 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099))
- (-5 *2 (-644 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1155 *3)) (-5 *1 (-597 *3)) (-4 *3 (-1049))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 *3)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-726))))
- ((*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-644 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1255 *3)) (-4 *3 (-1049)) (-5 *2 (-1155 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370))
- (-5 *2 (-1171 *3))))
+ (-12 (-4 *4 (-1099)) (-5 *2 (-112)) (-5 *1 (-885 *3 *4 *5))
+ (-4 *3 (-1099)) (-4 *5 (-666 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370))
- (-5 *2 (-1171 *3)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-889 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1099)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-75 FCN JACOBF JACEPS))))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-76 G JACOBG JACGEP))))
+ (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *1) (-12 (-4 *1 (-255 *3)) (-4 *3 (-1214)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-771))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1049))
+ (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285)))
+ (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-612 *3)) (-4 *3 (-1099))))
+ ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862))))
+ ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
(((*1 *2 *2 *3)
- (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-381)) (-5 *1 (-205)))))
+ (-12 (-4 *4 (-1099)) (-4 *2 (-900 *4)) (-5 *1 (-692 *4 *2 *5 *3))
+ (-4 *5 (-375 *2)) (-4 *3 (-13 (-375 *4) (-10 -7 (-6 -4414)))))))
+(((*1 *1 *1) (-4 *1 (-629)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1) (-12 (-5 *2 (-213 4 (-129))) (-5 *1 (-581)))))
+(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1178))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1269))
- (-5 *1 (-1178))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *4 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1269))
- (-5 *1 (-1178)))))
-(((*1 *1 *2 *2 *3)
- (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-1099))
- (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4))))
- (-5 *1 (-1075 *4 *5 *2))
- (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4))))))
- ((*1 *1 *2 *2)
- (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3))))
- (-5 *1 (-1075 *3 *4 *2))
- (-4 *2 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))))
+ (-12 (-4 *4 (-558)) (-4 *2 (-13 (-432 *4) (-1002) (-1199)))
+ (-5 *1 (-600 *4 *2 *3))
+ (-4 *3 (-13 (-432 (-169 *4)) (-1002) (-1199))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1101 (-1101 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-644 *8)) (-5 *4 (-136 *5 *6 *7)) (-14 *5 (-566))
(-14 *6 (-771)) (-4 *7 (-172)) (-4 *8 (-172))
@@ -2986,371 +2857,222 @@
(-4 *8 (-1049)) (-4 *2 (-949 *9 *7 *5))
(-5 *1 (-728 *5 *6 *7 *8 *9 *4 *2)) (-4 *7 (-793))
(-4 *4 (-949 *8 *6 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
+ (-5 *2 (-1264 *6)) (-5 *1 (-338 *3 *4 *5 *6))
+ (-4 *6 (-344 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1180)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3)
+ (-12 (|has| *2 (-6 (-4416 "*"))) (-4 *5 (-375 *2)) (-4 *6 (-375 *2))
+ (-4 *2 (-1049)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1240 *2))
+ (-4 *4 (-687 *2 *5 *6)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214)) (-4 *2 (-850))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-375 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4))
+ (-14 *3 (-921)) (-4 *4 (-1049))))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-566)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1175)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-192))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7)))
- (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793))
- (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8)))
- (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8)))))
+ (|partial| -12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-786)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 *5)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566))
+ (-14 *4 (-771)) (-4 *5 (-172)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *1 (-59 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-59 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-4 *1 (-903 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-860)) (-5 *2 (-691 (-551))) (-5 *3 (-551)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
+ (-5 *2
+ (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566))
+ (|:| |success| (-112))))
+ (-5 *1 (-789)) (-5 *5 (-566)))))
(((*1 *2)
- (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
+ (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4))
(-4 *4 (-419 *3)))))
+(((*1 *1 *1) (-5 *1 (-1062))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 (-644 *5))) (-4 *5 (-1255 *4))
- (-4 *4 (-38 (-409 (-566))))
- (-5 *2 (-1 (-1155 *4) (-644 (-1155 *4)))) (-5 *1 (-1257 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-566))) (-5 *4 (-566)) (-5 *2 (-52))
- (-5 *1 (-1005)))))
-(((*1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214))))
+ (-12 (-5 *3 (-483 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049))
+ (-5 *2 (-952 *5)) (-5 *1 (-944 *4 *5)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-365)) (-5 *1 (-659 *4 *2))
+ (-4 *2 (-656 *4)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-34)))
+ ((*1 *1) (-5 *1 (-129)))
+ ((*1 *1)
+ (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771))
+ (-4 *4 (-172))))
+ ((*1 *1) (-5 *1 (-548))) ((*1 *1) (-5 *1 (-549)))
+ ((*1 *1) (-5 *1 (-550))) ((*1 *1) (-5 *1 (-551)))
+ ((*1 *1) (-4 *1 (-726))) ((*1 *1) (-5 *1 (-1175)))
+ ((*1 *1) (-12 (-5 *1 (-1181 *2)) (-14 *2 (-921))))
+ ((*1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921))))
+ ((*1 *1) (-5 *1 (-1219))) ((*1 *1) (-5 *1 (-1220)))
+ ((*1 *1) (-5 *1 (-1221))) ((*1 *1) (-5 *1 (-1222))))
+(((*1 *1 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-644 (-771)))
+ (-5 *1 (-904 *4)))))
+(((*1 *1 *1) (-4 *1 (-629)))
((*1 *2 *2)
- (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1274)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-112)) (-5 *5 (-566)) (-4 *6 (-365)) (-4 *6 (-370))
- (-4 *6 (-1049)) (-5 *2 (-644 (-644 (-689 *6)))) (-5 *1 (-1029 *6))
- (-5 *3 (-644 (-689 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-365)) (-4 *4 (-370)) (-4 *4 (-1049))
- (-5 *2 (-644 (-644 (-689 *4)))) (-5 *1 (-1029 *4))
- (-5 *3 (-644 (-689 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049))
- (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5))
- (-5 *3 (-644 (-689 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-921)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049))
- (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5))
- (-5 *3 (-644 (-689 *5))))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225)))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-63 LSFUN2))))
- (-5 *2 (-1035)) (-5 *1 (-753)))))
+ (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
+(((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-644 *5)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566))
- (-14 *4 (-771)) (-4 *5 (-172)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-205))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 (-381))) (-5 *2 (-381)) (-5 *1 (-205)))))
-(((*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-829)))))
-(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-258)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1171 *1)) (-5 *4 (-1175)) (-4 *1 (-27))
- (-5 *2 (-644 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1))))
+ (-12 (-4 *2 (-708 *3)) (-5 *1 (-827 *2 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 (-112) *7 (-644 *7))) (-4 *1 (-1207 *4 *5 *6 *7))
+ (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -1746 (-114)) (|:| |arg| (-644 (-892 *3)))))
+ (-5 *1 (-892 *3)) (-4 *3 (-1099))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *2 (-644 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *3)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-4 *3 (-1064 *6 *7 *8))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4))))
- (-5 *1 (-1071 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3))))
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-644 (-892 *4)))
+ (-5 *1 (-892 *4)) (-4 *4 (-1099)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-317 (-225))) (-5 *4 (-1175))
+ (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-192))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2248 *9))))
- (-5 *5 (-112)) (-4 *8 (-1064 *6 *7 *4)) (-4 *9 (-1070 *6 *7 *4 *8))
- (-4 *6 (-454)) (-4 *7 (-793)) (-4 *4 (-850))
- (-5 *2 (-644 (-2 (|:| |val| *8) (|:| -2248 *9))))
- (-5 *1 (-1071 *6 *7 *4 *8 *9)))))
-(((*1 *1 *1) (|partial| -4 *1 (-145))) ((*1 *1 *1) (-4 *1 (-351)))
- ((*1 *1 *1) (|partial| -12 (-4 *1 (-145)) (-4 *1 (-909)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1175)) (-4 *5 (-365)) (-5 *2 (-644 (-1208 *5)))
- (-5 *1 (-1272 *5)) (-5 *4 (-1208 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-5 *2 (-1171 *3)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-409 *4)) (-4 *4 (-1240 *3))
- (-4 *3 (-13 (-365) (-147) (-1038 (-566)))) (-5 *1 (-570 *3 *4)))))
-(((*1 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
- (|:| |xpnt| (-566))))
- (-4 *4 (-13 (-1240 *3) (-558) (-10 -8 (-15 -2222 ($ $ $)))))
- (-4 *3 (-558)) (-5 *1 (-1243 *3 *4)))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1216))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1216)))))
-(((*1 *2 *1 *3 *3 *4)
- (-12 (-5 *3 (-1 (-862) (-862) (-862))) (-5 *4 (-566)) (-5 *2 (-862))
- (-5 *1 (-649 *5 *6 *7)) (-4 *5 (-1099)) (-4 *6 (-23)) (-14 *7 *6)))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-862)) (-5 *1 (-854 *3 *4 *5)) (-4 *3 (-1049))
- (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-862))))
- ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862))))
- ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-862))))
- ((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862))))
- ((*1 *2 *1 *2)
- (-12 (-5 *2 (-862)) (-5 *1 (-1171 *3)) (-4 *3 (-1049)))))
+ (-12 (-5 *3 (-317 (-225))) (-5 *4 (-1175))
+ (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-301)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
(((*1 *2 *2 *2)
- (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-114)) (-4 *4 (-1049)) (-5 *1 (-714 *4 *2))
- (-4 *2 (-648 *4))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-836 *2)) (-4 *2 (-1049)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
- ((*1 *2 *1)
- (-12
- (-5 *2
- (-2 (|:| -1553 (-644 (-862))) (|:| -3711 (-644 (-862)))
- (|:| |presup| (-644 (-862))) (|:| -1722 (-644 (-862)))
- (|:| |args| (-644 (-862)))))
- (-5 *1 (-1175)))))
-(((*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *3 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
- (-5 *1 (-451 *4 *3 *5 *6)) (-4 *6 (-949 *4 *3 *5)))))
-(((*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-1175))) (-4 *6 (-365))
- (-5 *2 (-644 (-295 (-952 *6)))) (-5 *1 (-540 *5 *6 *7))
- (-4 *5 (-454)) (-4 *7 (-13 (-365) (-848))))))
-(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *2 *3 *4 *4 *5 *4 *6 *4 *5)
- (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-689 (-566)))
- (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-757)))))
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-739 *3)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-14 *5 (-644 (-1175))) (-4 *2 (-172))
+ (-4 *4 (-238 (-3020 *5) (-771)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2208 *3) (|:| -2456 *4))
+ (-2 (|:| -2208 *3) (|:| -2456 *4))))
+ (-5 *1 (-463 *5 *2 *3 *4 *6 *7)) (-4 *3 (-850))
+ (-4 *7 (-949 *2 *4 (-864 *5))))))
+(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-699)) (-5 *1 (-306)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-4 *4 (-1099))
+ (-5 *1 (-575 *4 *2)) (-4 *2 (-432 *4)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-169 (-225))) (-5 *4 (-566)) (-5 *2 (-1035))
- (-5 *1 (-758)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049))
- (-14 *4 (-644 (-1175)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850)))
- (-14 *4 (-644 (-1175))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1049))
- (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285)))
- (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4))))
- ((*1 *1 *1) (-4 *1 (-547)))
- ((*1 *2 *1) (-12 (-5 *2 (-921)) (-5 *1 (-672 *3)) (-4 *3 (-850))))
- ((*1 *2 *1) (-12 (-5 *2 (-921)) (-5 *1 (-677 *3)) (-4 *3 (-850))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-819 *3)) (-4 *3 (-850))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-893 *3)) (-4 *3 (-850))))
- ((*1 *2 *1) (-12 (-4 *1 (-995 *3)) (-4 *3 (-1214)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-1211 *3)) (-4 *3 (-1214))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1002))
- (-4 *2 (-1049)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2))
- (-4 *2 (-1240 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-943 (-225)))) (-5 *1 (-1265)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-644 *1)) (-4 *1 (-920)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-112)) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-4 *3 (-13 (-27) (-1199) (-432 *6) (-10 -8 (-15 -2512 ($ *7)))))
- (-4 *7 (-848))
- (-4 *8
- (-13 (-1242 *3 *7) (-365) (-1199)
- (-10 -8 (-15 -2862 ($ $)) (-15 -4117 ($ $)))))
+ (-12 (-5 *4 (-644 (-864 *5))) (-14 *5 (-644 (-1175))) (-4 *6 (-454))
(-5 *2
- (-3 (|:| |%series| *8)
- (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))))
- (-5 *1 (-424 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1157)) (-4 *9 (-983 *8))
- (-14 *10 (-1175)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-921)) (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370))))
- ((*1 *2 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-365))))
+ (-2 (|:| |dpolys| (-644 (-247 *5 *6)))
+ (|:| |coords| (-644 (-566)))))
+ (-5 *1 (-473 *5 *6 *7)) (-5 *3 (-644 (-247 *5 *6))) (-4 *7 (-454)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-409 (-952 (-169 (-566))))))
+ (-5 *2 (-644 (-644 (-295 (-952 (-169 *4)))))) (-5 *1 (-380 *4))
+ (-4 *4 (-13 (-365) (-848)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-295 (-409 (-952 (-169 (-566)))))))
+ (-5 *2 (-644 (-644 (-295 (-952 (-169 *4)))))) (-5 *1 (-380 *4))
+ (-4 *4 (-13 (-365) (-848)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-409 (-952 (-169 (-566)))))
+ (-5 *2 (-644 (-295 (-952 (-169 *4))))) (-5 *1 (-380 *4))
+ (-4 *4 (-13 (-365) (-848)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-295 (-409 (-952 (-169 (-566))))))
+ (-5 *2 (-644 (-295 (-952 (-169 *4))))) (-5 *1 (-380 *4))
+ (-4 *4 (-13 (-365) (-848))))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-612 *6))) (-5 *4 (-1175)) (-5 *2 (-612 *6))
+ (-4 *6 (-432 *5)) (-4 *5 (-1099)) (-5 *1 (-575 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-157))))
+ ((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-114))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-114))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850))
+ (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771))))
((*1 *2 *1)
- (-12 (-4 *1 (-372 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1264 *4)) (-5 *3 (-921)) (-4 *4 (-351))
- (-5 *1 (-530 *4))))
+ (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850))
+ (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-4 *1 (-267 *3)) (-4 *3 (-850)) (-5 *2 (-771)))))
+(((*1 *2 *2) (|partial| -12 (-5 *2 (-317 (-225))) (-5 *1 (-306))))
((*1 *2 *1)
- (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
- (-4 *5 (-238 *3 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-1171 *3)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-547))))
-(((*1 *1 *2 *2 *3 *1)
- (-12 (-5 *2 (-508)) (-5 *3 (-1103)) (-5 *1 (-292)))))
+ (|partial| -12
+ (-5 *2 (-2 (|:| |num| (-892 *3)) (|:| |den| (-892 *3))))
+ (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-771)) (-4 *5 (-365)) (-5 *2 (-409 *6))
+ (-5 *1 (-867 *5 *4 *6)) (-4 *4 (-1255 *5)) (-4 *6 (-1240 *5))))
+ ((*1 *2 *3 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-771)) (-5 *4 (-1256 *5 *6 *7)) (-4 *5 (-365))
+ (-14 *6 (-1175)) (-14 *7 *5) (-5 *2 (-409 (-1237 *6 *5)))
+ (-5 *1 (-868 *5 *6 *7))))
+ ((*1 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-771)) (-5 *4 (-1256 *5 *6 *7)) (-4 *5 (-365))
+ (-14 *6 (-1175)) (-14 *7 *5) (-5 *2 (-409 (-1237 *6 *5)))
+ (-5 *1 (-868 *5 *6 *7)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-121 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-112))
+ (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-112))
+ (-5 *1 (-1203 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))))
+(((*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
+ ((*1 *1 *1 *1) (-4 *1 (-475)))
+ ((*1 *1 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
+ ((*1 *2 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-883))))
+ ((*1 *1 *1) (-5 *1 (-971)))
+ ((*1 *1 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))))
+(((*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-112)) (-5 *1 (-268)))))
(((*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-180))))
((*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-681))))
((*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-970))))
((*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-1072))))
((*1 *2 *1) (-12 (-5 *2 (-1180)) (-5 *1 (-1117)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
- (-5 *2 (-587 *3)) (-5 *1 (-428 *5 *3))
- (-4 *3 (-13 (-1199) (-29 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566)) (-147)))
- (-5 *2 (-587 (-409 (-952 *5)))) (-5 *1 (-572 *5))
- (-5 *3 (-409 (-952 *5))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
- (-5 *2 (-2 (|:| -1673 (-644 *6)) (|:| -3509 (-644 *6)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1049)) (-4 *7 (-1049))
- (-4 *6 (-1240 *5)) (-5 *2 (-1171 (-1171 *7)))
- (-5 *1 (-503 *5 *6 *4 *7)) (-4 *4 (-1240 *6)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-614 (-892 (-566))))
- (-4 *5 (-886 (-566)))
- (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-569 *5 *3)) (-4 *3 (-629))
- (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3309 *4)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
(((*1 *2 *3 *3 *4)
(-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
(-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4))))
(-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-365))
- (-5 *2
- (-2 (|:| A (-689 *5))
- (|:| |eqs|
- (-644
- (-2 (|:| C (-689 *5)) (|:| |g| (-1264 *5)) (|:| -3525 *6)
- (|:| |rh| *5))))))
- (-5 *1 (-813 *5 *6)) (-5 *3 (-689 *5)) (-5 *4 (-1264 *5))
- (-4 *6 (-656 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-365)) (-4 *6 (-656 *5))
- (-5 *2 (-2 (|:| -1380 (-689 *6)) (|:| |vec| (-1264 *5))))
- (-5 *1 (-813 *5 *6)) (-5 *3 (-689 *6)) (-5 *4 (-1264 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331))
- (-5 *1 (-333)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-771)) (-4 *5 (-172))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771))
- (-4 *4 (-172))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
- (-4 *4 (-375 *2))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-1049)) (-4 *1 (-687 *3 *2 *4)) (-4 *2 (-375 *3))
- (-4 *4 (-375 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1141 *2 *3)) (-14 *2 (-771)) (-4 *3 (-1049)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-264))))
- ((*1 *1)
- (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-943 (-225))) (-5 *2 (-1269)) (-5 *1 (-470)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547))
- (-5 *2 (-409 (-566)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-420 *3)) (-4 *3 (-547))
- (-4 *3 (-558))))
- ((*1 *2 *1) (|partial| -12 (-4 *1 (-547)) (-5 *2 (-409 (-566)))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547))
- (-5 *2 (-409 (-566)))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-833 *3)) (-4 *3 (-547))
- (-4 *3 (-1099))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-843 *3)) (-4 *3 (-547))
- (-4 *3 (-1099))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547))
- (-5 *2 (-409 (-566)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-409 (-566))) (-5 *1 (-1008 *3))
- (-4 *3 (-1038 *2)))))
-(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))))
-(((*1 *2 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-751)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-409 (-566))) (-5 *1 (-320 *3 *4 *5)) (-4 *3 (-365))
- (-14 *4 (-1175)) (-14 *5 *3))))
-(((*1 *2 *3 *4)
- (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
- (-5 *1 (-705 *3 *4)) (-4 *3 (-1214)) (-4 *4 (-1214)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-165 *3 *4))
- (-4 *3 (-166 *4))))
- ((*1 *2)
- (-12 (-14 *4 *2) (-4 *5 (-1214)) (-5 *2 (-771))
- (-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5))))
- ((*1 *2)
- (-12 (-4 *4 (-1099)) (-5 *2 (-771)) (-5 *1 (-431 *3 *4))
- (-4 *3 (-432 *4))))
- ((*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-546 *3)) (-4 *3 (-547))))
- ((*1 *2) (-12 (-4 *1 (-763)) (-5 *2 (-771))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-796 *3 *4))
- (-4 *3 (-797 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-991 *3 *4))
- (-4 *3 (-992 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-771)) (-5 *1 (-996 *3 *4))
- (-4 *3 (-997 *4))))
- ((*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1011 *3)) (-4 *3 (-1012))))
- ((*1 *2) (-12 (-4 *1 (-1049)) (-5 *2 (-771))))
- ((*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-1058 *3)) (-4 *3 (-1059)))))
-(((*1 *1) (-5 *1 (-186))))
-(((*1 *2)
- (-12 (-5 *2 (-2 (|:| -3753 (-644 *3)) (|:| -3885 (-644 *3))))
- (-5 *1 (-1215 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381)))))
-(((*1 *1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1171 (-566))) (-5 *3 (-566)) (-4 *1 (-869 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-365) (-1199) (-1002))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1175)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 (-2 (|:| |val| (-644 *6)) (|:| -2248 *7))))
- (-4 *6 (-1064 *3 *4 *5)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-988 *3 *4 *5 *6 *7))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-644 (-2 (|:| |val| (-644 *6)) (|:| -2248 *7))))
- (-4 *6 (-1064 *3 *4 *5)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-1106 *3 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-213 4 (-129))) (-5 *1 (-581)))))
-(((*1 *1) (-5 *1 (-186))))
-(((*1 *2 *3 *3)
- (-12 (|has| *2 (-6 (-4419 "*"))) (-4 *5 (-375 *2)) (-4 *6 (-375 *2))
- (-4 *2 (-1049)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1240 *2))
- (-4 *4 (-687 *2 *5 *6)))))
-(((*1 *2)
- (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-419 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-121 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-943 (-225)) (-225) (-225)))
+ (-5 *3 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-256)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
(((*1 *2 *3 *4 *5 *6 *7)
(-12 (-5 *3 (-689 *11)) (-5 *4 (-644 (-409 (-952 *8))))
(-5 *5 (-771)) (-5 *6 (-1157)) (-4 *8 (-13 (-308) (-147)))
@@ -3364,16 +3086,119 @@
(|:| |wcond| (-644 (-952 *8)))
(|:| |bsoln|
(-2 (|:| |partsol| (-1264 (-409 (-952 *8))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *8))))))))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *8))))))))))
(|:| |rgsz| (-566))))
(-5 *1 (-924 *8 *9 *10 *11)) (-5 *7 (-566)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -2883 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-365)) (-4 *7 (-1240 *6))
+ (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6)))
+ (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
+(((*1 *2 *2 *3 *3)
+ (|partial| -12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-577 *4 *2))
+ (-4 *2 (-13 (-1199) (-959) (-1138) (-29 *4))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099))
+ (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *4 (-225))
+ (-5 *2
+ (-2 (|:| |brans| (-644 (-644 (-943 *4))))
+ (|:| |xValues| (-1093 *4)) (|:| |yValues| (-1093 *4))))
+ (-5 *1 (-153)) (-5 *3 (-644 (-644 (-943 *4)))))))
+(((*1 *2)
+ (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-419 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-914 *3)) (-4 *3 (-308)))))
+(((*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *2 (-1035)) (-5 *1 (-757)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-921)) (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370))))
+ ((*1 *2 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-365))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-372 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1264 *4)) (-5 *3 (-921)) (-4 *4 (-351))
+ (-5 *1 (-530 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
+ (-4 *5 (-238 *3 *2)) (-4 *2 (-1049)))))
(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
((*1 *2 *3)
(-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-860)) (-5 *2 (-691 (-129))) (-5 *3 (-129)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *6 (-558)) (-4 *2 (-949 *3 *5 *4))
+ (-5 *1 (-732 *5 *4 *6 *2)) (-5 *3 (-409 (-952 *6))) (-4 *5 (-793))
+ (-4 *4 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *5)))))
+(((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *2 *2)
+ (-12 (-5 *2 (-644 (-483 *4 *5))) (-5 *3 (-864 *4))
+ (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-631 *4 *5)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-748)))))
(((*1 *1 *2)
(-12 (-5 *2 (-644 (-921))) (-5 *1 (-1100 *3 *4)) (-14 *3 (-921))
(-14 *4 (-921)))))
-(((*1 *1) (-5 *1 (-186))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1157)) (-5 *1 (-786)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1264 (-1175))) (-5 *3 (-1264 (-455 *4 *5 *6 *7)))
+ (-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-921))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-1264 (-689 *4)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-455 *4 *5 *6 *7)))
+ (-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-921))
+ (-14 *6 (-644 *2)) (-14 *7 (-1264 (-689 *4)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-455 *3 *4 *5 *6))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175)))
+ (-14 *6 (-1264 (-689 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-1175))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175)))
+ (-14 *6 (-1264 (-689 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1175)) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172))
+ (-14 *4 (-921)) (-14 *5 (-644 *2)) (-14 *6 (-1264 (-689 *3)))))
+ ((*1 *1)
+ (-12 (-5 *1 (-455 *2 *3 *4 *5)) (-4 *2 (-172)) (-14 *3 (-921))
+ (-14 *4 (-644 (-1175))) (-14 *5 (-1264 (-689 *2))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-31))))
+ ((*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))) ((*1 *1) (-4 *1 (-547)))
+ ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-901 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *2) (-12 (-5 *1 (-901 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3))
+ (-5 *1 (-742 *5 *4 *6 *3)) (-4 *3 (-949 *6 *5 *4)))))
+(((*1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-563)) (-5 *3 (-566))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4)))
+ (-5 *2 (-2 (|:| |num| (-1264 *4)) (|:| |den| *4))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850))
+ (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-112)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
(((*1 *2 *2)
(-12 (-4 *3 (-558)) (-4 *4 (-992 *3)) (-5 *1 (-142 *3 *4 *2))
(-4 *2 (-375 *4))))
@@ -3386,302 +3211,895 @@
((*1 *2 *2)
(-12 (-4 *3 (-558)) (-4 *4 (-992 *3)) (-5 *1 (-1233 *3 *4 *2))
(-4 *2 (-1240 *4)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *2 *2 *1 *3 *4)
- (-12 (-5 *2 (-644 *8)) (-5 *3 (-1 *8 *8 *8))
- (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1207 *5 *6 *7 *8)) (-4 *5 (-558))
- (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-969 *4 *3))
- (-4 *3 (-1240 *4)))))
(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
+ (-4 *4 (-375 *2)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-921)) (-5 *1 (-699))))
+ ((*1 *2 *2 *2 *3 *4)
+ (-12 (-5 *2 (-689 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5))
+ (-4 *5 (-365)) (-5 *1 (-978 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1240 *2)) (-4 *2 (-1218)) (-5 *1 (-148 *2 *4 *3))
+ (-4 *3 (-1240 (-409 *4))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-566))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-365)) (-4 *3 (-1049))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4152 *1)))
+ (-4 *1 (-852 *3)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-365)) (-4 *5 (-558))
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 *10))
+ (-5 *1 (-624 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1070 *5 *6 *7 *8))
+ (-4 *10 (-1108 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454))
+ (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6)))
+ (-5 *1 (-628 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454))
+ (-14 *6 (-644 (-1175)))
(-5 *2
- (-2 (|:| |minor| (-644 (-921))) (|:| -3525 *3)
- (|:| |minors| (-644 (-644 (-921)))) (|:| |ops| (-644 *3))))
- (-5 *1 (-90 *5 *3)) (-5 *4 (-921)) (-4 *3 (-656 *5)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049))
- (-4 *5 (-850)) (-5 *2 (-952 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *5)) (-4 *4 (-1049))
- (-4 *5 (-850)) (-5 *2 (-952 *4))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-771)) (-4 *1 (-1255 *4)) (-4 *4 (-1049))
- (-5 *2 (-952 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-4 *1 (-1255 *4)) (-4 *4 (-1049))
- (-5 *2 (-952 *4)))))
+ (-644 (-1145 *5 (-533 (-864 *6)) (-864 *6) (-780 *5 (-864 *6)))))
+ (-5 *1 (-628 *5 *6))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454))
+ (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6)))
+ (-5 *1 (-1046 *5 *6))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 *1))
+ (-4 *1 (-1070 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1))
+ (-4 *1 (-1207 *4 *5 *6 *7)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *3 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
+ (-5 *1 (-451 *4 *3 *5 *6)) (-4 *6 (-949 *4 *3 *5)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
+ (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-644 *3))))
+ ((*1 *2 *1)
+ (-12 (|has| *1 (-6 -4414)) (-4 *1 (-491 *3)) (-4 *3 (-1214))
+ (-5 *2 (-644 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1231 (-566))) (-4 *1 (-283 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))))
(((*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-681))))
((*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1117)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
- (-5 *2
- (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566))
- (|:| |success| (-112))))
- (-5 *1 (-789)) (-5 *5 (-566)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-738)))))
-(((*1 *1) (-5 *1 (-580))))
-(((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-822)))))
-(((*1 *2) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-105)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *8)) (-4 *8 (-949 *5 *7 *6))
- (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
- (-4 *7 (-793))
- (-5 *2
- (-644
- (-2 (|:| -1821 (-771))
- (|:| |eqns|
- (-644
- (-2 (|:| |det| *8) (|:| |rows| (-644 (-566)))
- (|:| |cols| (-644 (-566))))))
- (|:| |fgb| (-644 *8)))))
- (-5 *1 (-924 *5 *6 *7 *8)) (-5 *4 (-771)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-566))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035))
- (-5 *1 (-748)))))
-(((*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 (-689 (-225))) (-5 *5 (-112)) (-5 *6 (-225))
- (-5 *7 (-689 (-566)))
- (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-80 CONFUN))))
- (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))
- (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-753)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-112))
- (-5 *1 (-889 *4 *5)) (-4 *5 (-1099))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-5 *2 (-112))
- (-5 *1 (-890 *5 *3)) (-4 *3 (-1214))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-324 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-131))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-363 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-388 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-649 *3 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699))))
+ ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *4 (-1175))
+ (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-301)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-13 (-848) (-365))) (-5 *2 (-112)) (-5 *1 (-1060 *4 *3))
+ (-4 *3 (-1240 *4)))))
+(((*1 *1) (-5 *1 (-186))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-151 *3))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-644 (-2 (|:| -2456 (-771)) (|:| -3174 *4) (|:| |num| *4))))
+ (-4 *4 (-1240 *3)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-112)) (-5 *1 (-439))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-5 *3 (-644 (-1175))) (-5 *4 (-112)) (-5 *1 (-439))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1155 *3)) (-5 *1 (-601 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-634 *2)) (-4 *2 (-172))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4))
+ (-4 *4 (-172))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4))
+ (-4 *4 (-172))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4))
+ (-4 *4 (-172))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 (-644 *3)))) (-4 *3 (-1099))
+ (-5 *1 (-675 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-713 *2 *3 *4)) (-4 *2 (-850)) (-4 *3 (-1099))
+ (-14 *4
+ (-1 (-112) (-2 (|:| -2208 *2) (|:| -2456 *3))
+ (-2 (|:| -2208 *2) (|:| -2456 *3))))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1117)) (-5 *1 (-838))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-873 *2 *3)) (-4 *2 (-1214)) (-4 *3 (-1214))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 *4))))
+ (-4 *4 (-1099)) (-5 *1 (-889 *3 *4)) (-4 *3 (-1099))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *6)) (-5 *4 (-892 *5)) (-4 *5 (-1099))
- (-4 *6 (-1214)) (-5 *2 (-112)) (-5 *1 (-890 *5 *6)))))
-(((*1 *1 *1 *1) (-4 *1 (-475))) ((*1 *1 *1 *1) (-4 *1 (-761))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-112))
- (-5 *1 (-359 *4))))
+ (-12 (-5 *4 (-644 *5)) (-4 *5 (-13 (-1099) (-34)))
+ (-5 *2 (-644 (-1139 *3 *5))) (-5 *1 (-1139 *3 *5))
+ (-4 *3 (-13 (-1099) (-34)))))
((*1 *2 *3)
- (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-112))
- (-5 *1 (-530 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-757)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5))
- (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-1277 *3 *4 *5 *6))))
+ (-12 (-5 *3 (-644 (-2 (|:| |val| *4) (|:| -2327 *5))))
+ (-4 *4 (-13 (-1099) (-34))) (-4 *5 (-13 (-1099) (-34)))
+ (-5 *2 (-644 (-1139 *4 *5))) (-5 *1 (-1139 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -2327 *4)))
+ (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34)))
+ (-5 *1 (-1139 *3 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
+ (-4 *3 (-13 (-1099) (-34)))))
((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558))
- (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1277 *5 *6 *7 *8)))))
+ (-12 (-5 *4 (-112)) (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
+ (-4 *3 (-13 (-1099) (-34)))))
+ ((*1 *1 *2 *3 *2 *4)
+ (-12 (-5 *4 (-644 *3)) (-4 *3 (-13 (-1099) (-34)))
+ (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34)))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *4 (-644 (-1139 *2 *3))) (-4 *2 (-13 (-1099) (-34)))
+ (-4 *3 (-13 (-1099) (-34))) (-5 *1 (-1140 *2 *3))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *4 (-644 (-1140 *2 *3))) (-5 *1 (-1140 *2 *3))
+ (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
+ (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-1164 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
+(((*1 *2 *2 *1 *3 *4)
+ (-12 (-5 *2 (-644 *8)) (-5 *3 (-1 *8 *8 *8))
+ (-5 *4 (-1 (-112) *8 *8)) (-4 *1 (-1207 *5 *6 *7 *8)) (-4 *5 (-558))
+ (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4))))
- ((*1 *2 *3 *3)
- (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-756)))))
-(((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))))
+ (-12 (-5 *3 (-644 *5)) (-4 *5 (-432 *4)) (-4 *4 (-558))
+ (-5 *2 (-862)) (-5 *1 (-32 *4 *5)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-4 *1 (-1240 *4)) (-4 *4 (-1049))
+ (-5 *2 (-1264 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1089)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-381)) (-5 *1 (-205)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1139 *3 *2)) (-4 *3 (-13 (-1099) (-34)))
+ (-4 *2 (-13 (-1099) (-34))))))
(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1109)))))
+ (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
+ (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
+ (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
+ (-12 (-5 *3 (-566)) (-5 *5 (-112)) (-5 *6 (-689 (-225)))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))
+ (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-753)))))
+(((*1 *2 *2 *2 *3 *3)
+ (-12 (-5 *3 (-771)) (-4 *4 (-1049)) (-5 *1 (-1236 *4 *2))
+ (-4 *2 (-1240 *4)))))
+(((*1 *1) (-5 *1 (-186))))
(((*1 *1 *2)
- (-12 (-5 *2 (-644 *1)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5))
- (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
+ (-12 (-5 *2 (-1264 *3)) (-4 *3 (-365)) (-14 *6 (-1264 (-689 *3)))
+ (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-921)) (-14 *5 (-644 (-1175)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124 (-566) (-612 (-48)))) (-5 *1 (-48))))
+ ((*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1214))))
((*1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5))
- (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
+ (-12 (-5 *2 (-1264 (-341 (-3791 'JINT 'X 'ELAM) (-3791) (-699))))
+ (-5 *1 (-61 *3)) (-14 *3 (-1175))))
((*1 *1 *2)
- (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1049)) (-5 *1 (-689 *3))))
+ (-12 (-5 *2 (-1264 (-341 (-3791) (-3791 'XC) (-699))))
+ (-5 *1 (-63 *3)) (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-341 (-3791 'X) (-3791) (-699))) (-5 *1 (-64 *3))
+ (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-341 (-3791) (-3791 'XC) (-699))) (-5 *1 (-66 *3))
+ (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-341 (-3791 'X) (-3791 '-2519) (-699))))
+ (-5 *1 (-71 *3)) (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-341 (-3791) (-3791 'X) (-699))))
+ (-5 *1 (-74 *3)) (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-341 (-3791 'X 'EPS) (-3791 '-2519) (-699))))
+ (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1175)) (-14 *4 (-1175))
+ (-14 *5 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-341 (-3791 'EPS) (-3791 'YA 'YB) (-699))))
+ (-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1175)) (-14 *4 (-1175))
+ (-14 *5 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-341 (-3791) (-3791 'X) (-699))) (-5 *1 (-77 *3))
+ (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-341 (-3791) (-3791 'X) (-699))) (-5 *1 (-78 *3))
+ (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-341 (-3791) (-3791 'XC) (-699))))
+ (-5 *1 (-79 *3)) (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-341 (-3791) (-3791 'X) (-699))))
+ (-5 *1 (-80 *3)) (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-341 (-3791 'X '-2519) (-3791) (-699))))
+ (-5 *1 (-82 *3)) (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-689 (-341 (-3791 'X '-2519) (-3791) (-699))))
+ (-5 *1 (-83 *3)) (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-689 (-341 (-3791 'X) (-3791) (-699)))) (-5 *1 (-84 *3))
+ (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-341 (-3791 'X) (-3791) (-699))))
+ (-5 *1 (-85 *3)) (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-341 (-3791 'X) (-3791 '-2519) (-699))))
+ (-5 *1 (-86 *3)) (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-689 (-341 (-3791 'XL 'XR 'ELAM) (-3791) (-699))))
+ (-5 *1 (-87 *3)) (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-341 (-3791 'X) (-3791 '-2519) (-699))) (-5 *1 (-89 *3))
+ (-14 *3 (-1175))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-136 *3 *4 *5))) (-5 *1 (-136 *3 *4 *5))
+ (-14 *3 (-566)) (-14 *4 (-771)) (-4 *5 (-172))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5))
+ (-14 *3 (-566)) (-14 *4 (-771))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1141 *4 *5)) (-14 *4 (-771)) (-4 *5 (-172))
+ (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-240 *4 *5)) (-14 *4 (-771)) (-4 *5 (-172))
+ (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1264 (-689 *4))) (-4 *4 (-172))
+ (-5 *2 (-1264 (-689 (-409 (-952 *4))))) (-5 *1 (-189 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1091 (-317 *4)))
+ (-4 *4 (-13 (-850) (-558) (-614 (-381)))) (-5 *2 (-1091 (-381)))
+ (-5 *1 (-259 *4))))
+ ((*1 *1 *2) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-276))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1240 *3)) (-5 *1 (-290 *3 *2 *4 *5 *6 *7))
+ (-4 *3 (-172)) (-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 (-1249 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3)))
+ (-14 *5 (-1175)) (-14 *6 *4)
+ (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454)))
+ (-5 *1 (-314 *3 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-317 *5)) (-5 *1 (-341 *3 *4 *5))
+ (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-351)) (-4 *2 (-330 *4)) (-5 *1 (-349 *3 *4 *2))
+ (-4 *3 (-330 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-351)) (-4 *2 (-330 *4)) (-5 *1 (-349 *2 *4 *3))
+ (-4 *3 (-330 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172))
+ (-5 *2 (-1288 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172))
+ (-5 *2 (-1279 *3 *4))))
+ ((*1 *1 *2) (-12 (-4 *1 (-376 *2 *3)) (-4 *2 (-850)) (-4 *3 (-172))))
((*1 *1 *2)
- (-12 (-5 *2 (-644 *4)) (-4 *4 (-1049)) (-4 *1 (-1122 *3 *4 *5 *6))
- (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1171 *6)) (-4 *6 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *2 (-1171 *7)) (-5 *1 (-322 *4 *5 *6 *7))
- (-4 *7 (-949 *6 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1099) (-1038 *5)))
- (-4 *5 (-886 *4)) (-4 *4 (-1099)) (-5 *2 (-1 (-112) *5))
- (-5 *1 (-931 *4 *5 *6)))))
-(((*1 *2 *3)
(-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *2)
- (|:| |polj| *2)))
- (-4 *5 (-793)) (-4 *2 (-949 *4 *5 *6)) (-5 *1 (-451 *4 *5 *6 *2))
- (-4 *4 (-454)) (-4 *6 (-850)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1119)) (-5 *2 (-112)) (-5 *1 (-821)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
- (-5 *2 (-2 (|:| |k| (-819 *3)) (|:| |c| *4))))))
-(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1552 *4)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-949 *3 *5 *4)) (-5 *1 (-987 *3 *4 *5 *2))
- (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-308)) (-4 *3 (-172)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3)))
- (-5 *1 (-688 *3 *4 *5 *6)) (-4 *6 (-687 *3 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-700 *3))
- (-4 *3 (-308)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1049)) (-5 *1 (-712 *3 *4))
- (-4 *4 (-1240 *3)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
- (-5 *2 (-1035)) (-5 *1 (-750)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
- (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225)))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *3 (-225))
- (-5 *2 (-1035)) (-5 *1 (-749)))))
-(((*1 *2 *2)
+ (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))
+ (-4 *1 (-385))))
+ ((*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-385))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-385))))
+ ((*1 *1 *2) (-12 (-5 *2 (-689 (-699))) (-4 *1 (-385))))
+ ((*1 *1 *2)
(-12
- (-5 *2
- (-644
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-771)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-793)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *5 (-850))
- (-5 *1 (-451 *3 *4 *5 *6)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-829)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-566))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))
- (-5 *2 (-1035)) (-5 *1 (-746)))))
-(((*1 *1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1049)) (-4 *3 (-1240 *4)) (-4 *2 (-1255 *4))
- (-5 *1 (-1258 *4 *3 *5 *2)) (-4 *5 (-656 *3)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-409 (-566))) (-4 *1 (-556 *3))
- (-4 *3 (-13 (-406) (-1199)))))
- ((*1 *1 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199)))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))))
-(((*1 *1) (-5 *1 (-803))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1171 *7)) (-5 *3 (-566)) (-4 *7 (-949 *6 *4 *5))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049))
- (-5 *1 (-322 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218))
- (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))
+ (-4 *1 (-386))))
+ ((*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-386))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-386))))
+ ((*1 *2 *3) (-12 (-5 *2 (-396)) (-5 *1 (-395 *3)) (-4 *3 (-1099))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))
+ (-4 *1 (-398))))
+ ((*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-398))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-398))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-295 (-317 (-169 (-381))))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-295 (-317 (-381)))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-295 (-317 (-566)))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-317 (-169 (-381)))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-317 (-381))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-317 (-566))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-295 (-317 (-694)))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-295 (-317 (-699)))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-295 (-317 (-701)))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-317 (-694))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-317 (-699))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-317 (-701))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))
+ (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175))
+ (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-331))) (-5 *1 (-400 *3 *4 *5 *6))
+ (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-331)) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175))
+ (-14 *4 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-332 *4)) (-4 *4 (-13 (-850) (-21)))
+ (-5 *1 (-429 *3 *4)) (-4 *3 (-13 (-172) (-38 (-409 (-566)))))))
+ ((*1 *1 *2)
+ (-12 (-5 *1 (-429 *2 *3)) (-4 *2 (-13 (-172) (-38 (-409 (-566)))))
+ (-4 *3 (-13 (-850) (-21)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-409 (-952 (-409 *3)))) (-4 *3 (-558)) (-4 *3 (-1099))
+ (-4 *1 (-432 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-952 (-409 *3))) (-4 *3 (-558)) (-4 *3 (-1099))
+ (-4 *1 (-432 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-409 *3)) (-4 *3 (-558)) (-4 *3 (-1099))
+ (-4 *1 (-432 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1124 *3 (-612 *1))) (-4 *3 (-1049)) (-4 *3 (-1099))
+ (-4 *1 (-432 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-436))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-436))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-436))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-436))))
+ ((*1 *1 *2) (-12 (-5 *2 (-436)) (-5 *1 (-439))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))
+ (-4 *1 (-442))))
+ ((*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-442))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-442))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1264 (-699))) (-4 *1 (-442))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3248 (-644 (-331)))))
+ (-4 *1 (-443))))
+ ((*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-443))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-443))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 (-409 (-952 *3)))) (-4 *3 (-172))
+ (-14 *6 (-1264 (-689 *3))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-14 *4 (-921)) (-14 *5 (-644 (-1175)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470))))
+ ((*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-470))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1249 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-1175))
+ (-14 *5 *3) (-5 *1 (-476 *3 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-476 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *1 *2) (-12 (-5 *2 (-1124 (-566) (-612 (-497)))) (-5 *1 (-497))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-504))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-526))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-606))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-172)) (-5 *1 (-607 *3 *2)) (-4 *2 (-744 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-613 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *2) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *2) (-12 (-4 *1 (-620 *2)) (-4 *2 (-1049))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-420 *3)) (-4 *3 (-547)) (-4 *3 (-558))))
- ((*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112))))
+ (-12 (-5 *2 (-1284 *3 *4)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850))
+ (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921))))
((*1 *2 *1)
- (-12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112))))
+ (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850))
+ (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-172)) (-5 *1 (-635 *3 *2)) (-4 *2 (-744 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-677 *3)) (-5 *1 (-672 *3)) (-4 *3 (-850))))
+ ((*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-672 *3)) (-4 *3 (-850))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-547)) (-4 *3 (-1099))))
+ (-12 (-5 *2 (-958 (-958 (-958 *3)))) (-5 *1 (-675 *3))
+ (-4 *3 (-1099))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-958 (-958 (-958 *3)))) (-4 *3 (-1099))
+ (-5 *1 (-675 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-677 *3)) (-4 *3 (-850))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1117)) (-5 *1 (-681))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-682 *3)) (-4 *3 (-1099))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *2)) (-4 *4 (-375 *3))
+ (-4 *2 (-375 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-169 (-381))) (-5 *1 (-694))))
+ ((*1 *1 *2) (-12 (-5 *2 (-169 (-701))) (-5 *1 (-694))))
+ ((*1 *1 *2) (-12 (-5 *2 (-169 (-699))) (-5 *1 (-694))))
+ ((*1 *1 *2) (-12 (-5 *2 (-169 (-566))) (-5 *1 (-694))))
+ ((*1 *1 *2) (-12 (-5 *2 (-169 (-381))) (-5 *1 (-694))))
+ ((*1 *1 *2) (-12 (-5 *2 (-701)) (-5 *1 (-699))))
+ ((*1 *2 *1) (-12 (-5 *2 (-381)) (-5 *1 (-699))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-317 (-566))) (-5 *2 (-317 (-701))) (-5 *1 (-701))))
+ ((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-547)) (-4 *3 (-1099))))
+ (-12 (-4 *2 (-172)) (-5 *1 (-711 *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 *2 *1)
- (-12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-1008 *3)) (-4 *3 (-1038 (-409 (-566)))))))
-(((*1 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))))
-(((*1 *2 *3)
+ (-12 (-4 *2 (-172)) (-5 *1 (-715 *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 (-644 (-2 (|:| -3223 *3) (|:| -2044 *4))))
+ (-4 *3 (-1049)) (-4 *4 (-726)) (-5 *1 (-735 *3 *4))))
+ ((*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-763))))
+ ((*1 *1 *2)
(-12
(-5 *2
- (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))
- (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566)))))
- ((*1 *2 *3 *4)
+ (-3
+ (|:| |nia|
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (|:| |mdnia|
+ (-2 (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-644 (-1093 (-843 (-225)))))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
+ (-5 *1 (-769))))
+ ((*1 *1 *2)
(-12
(-5 *2
- (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))
- (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566)))
- (-5 *4 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))))
- ((*1 *2 *3 *4)
+ (-2 (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *1 (-769))))
+ ((*1 *1 *2)
(-12
(-5 *2
- (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))
- (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))) (-5 *4 (-409 (-566)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-409 (-566)))
- (-5 *2 (-644 (-2 (|:| -4357 *5) (|:| -4368 *5)))) (-5 *1 (-1020 *3))
- (-4 *3 (-1240 (-566))) (-5 *4 (-2 (|:| -4357 *5) (|:| -4368 *5)))))
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *1 (-769))))
+ ((*1 *2 *3) (-12 (-5 *2 (-774)) (-5 *1 (-773 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *1 (-808))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-824))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-3
+ (|:| |noa|
+ (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225)))
+ (|:| |lb| (-644 (-843 (-225))))
+ (|:| |cf| (-644 (-317 (-225))))
+ (|:| |ub| (-644 (-843 (-225))))))
+ (|:| |lsa|
+ (-2 (|:| |lfn| (-644 (-317 (-225))))
+ (|:| -3625 (-644 (-225)))))))
+ (-5 *1 (-841))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))
+ (-5 *1 (-841))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225)))
+ (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225))))
+ (|:| |ub| (-644 (-843 (-225))))))
+ (-5 *1 (-841))))
+ ((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-858))))
+ ((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-952 (-48))) (-5 *2 (-317 (-566))) (-5 *1 (-875))))
((*1 *2 *3)
+ (-12 (-5 *3 (-409 (-952 (-48)))) (-5 *2 (-317 (-566)))
+ (-5 *1 (-875))))
+ ((*1 *1 *2) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850))))
+ ((*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-893 *3)) (-4 *3 (-850))))
+ ((*1 *1 *2)
(-12
(-5 *2
- (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))
- (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566))))))
- ((*1 *2 *3 *4)
+ (-2 (|:| |pde| (-644 (-317 (-225))))
+ (|:| |constraints|
+ (-644
+ (-2 (|:| |start| (-225)) (|:| |finish| (-225))
+ (|:| |grid| (-771)) (|:| |boundaryType| (-566))
+ (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225))))))
+ (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157))
+ (|:| |tol| (-225))))
+ (-5 *1 (-898))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-905 *3))) (-4 *3 (-1099)) (-5 *1 (-904 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-905 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-409 (-420 *3))) (-4 *3 (-308)) (-5 *1 (-914 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-409 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-479)) (-5 *2 (-317 *4)) (-5 *1 (-919 *4))
+ (-4 *4 (-558))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1269)) (-5 *1 (-1033 *3)) (-4 *3 (-1214))))
+ ((*1 *2 *3) (-12 (-5 *3 (-313)) (-5 *1 (-1033 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-1034 *3 *4 *5 *2 *6)) (-4 *2 (-949 *3 *4 *5))
+ (-14 *6 (-644 *2))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-1043 *3)) (-4 *3 (-558))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-1049)) (-4 *4 (-850)) (-5 *1 (-1125 *3 *4 *2))
+ (-4 *2 (-949 *3 (-533 *4) *4))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-1049)) (-4 *2 (-850)) (-5 *1 (-1125 *3 *2 *4))
+ (-4 *4 (-949 *3 (-533 *2) *2))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-862))))
+ ((*1 *1 *2) (-12 (-5 *2 (-144)) (-4 *1 (-1143))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1166 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1173 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1237 *4 *3)) (-4 *3 (-1049)) (-14 *4 (-1175))
+ (-14 *5 *3) (-5 *1 (-1173 *3 *4 *5))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1174))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1187 (-1175) (-439))) (-5 *1 (-1179))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1180))))
+ ((*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1180))))
+ ((*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1180))))
+ ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1180))))
+ ((*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-1186 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1194)) (-5 *1 (-1193 *3)) (-4 *3 (-1099))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-952 *3)) (-4 *3 (-1049)) (-5 *1 (-1208 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1208 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1228 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1093 *3)) (-4 *3 (-1214)) (-5 *1 (-1231 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1237 *4 *3)) (-4 *3 (-1049)) (-14 *4 (-1175))
+ (-14 *5 *3) (-5 *1 (-1256 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-1260 *3)) (-14 *3 *2)))
+ ((*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-1265))))
+ ((*1 *2 *3) (-12 (-5 *3 (-470)) (-5 *2 (-1265)) (-5 *1 (-1268))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1288 *3 *4)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-172))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-172))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-664 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172))
+ (-5 *1 (-1284 *3 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-969 *4 *3))
+ (-4 *3 (-1240 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365))
+ (-5 *2
+ (-2 (|:| |ir| (-587 (-409 *6))) (|:| |specpart| (-409 *6))
+ (|:| |polypart| *6)))
+ (-5 *1 (-576 *5 *6)) (-5 *3 (-409 *6)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035))
+ (-5 *1 (-748)))))
+(((*1 *1 *1) (-4 *1 (-629)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
+(((*1 *2 *2)
(-12
(-5 *2
- (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))
- (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566))))
- (-5 *4 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-409 (-566)))
- (-5 *2 (-644 (-2 (|:| -4357 *4) (|:| -4368 *4)))) (-5 *1 (-1021 *3))
- (-4 *3 (-1240 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-409 (-566)))
- (-5 *2 (-644 (-2 (|:| -4357 *5) (|:| -4368 *5)))) (-5 *1 (-1021 *3))
- (-4 *3 (-1240 *5)) (-5 *4 (-2 (|:| -4357 *5) (|:| -4368 *5))))))
+ (-987 (-409 (-566)) (-864 *3) (-240 *4 (-771))
+ (-247 *3 (-409 (-566)))))
+ (-14 *3 (-644 (-1175))) (-14 *4 (-771)) (-5 *1 (-986 *3 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1262 *3)) (-4 *3 (-1214)) (-4 *3 (-1049))
+ (-5 *2 (-689 *3)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *5 *6 *7 *8 *8 *3)
+ (-12 (-5 *6 (-644 (-112))) (-5 *7 (-689 (-225)))
+ (-5 *8 (-689 (-566))) (-5 *3 (-566)) (-5 *4 (-225)) (-5 *5 (-112))
+ (-5 *2 (-1035)) (-5 *1 (-754)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-793)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850))
- (-5 *2 (-112)) (-5 *1 (-451 *4 *5 *6 *7)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-921)) (-5 *1 (-1100 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*1 *2 *1) (-12 (-4 *1 (-370)) (-5 *2 (-921))))
+ (-12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4)) (-4 *6 (-1240 *5))
+ (-4 *7 (-1240 (-409 *6))) (-4 *8 (-344 *5 *6 *7))
+ (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-112))
+ (-5 *1 (-911 *4 *5 *6 *7 *8))))
((*1 *2 *3)
- (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-921))
- (-5 *1 (-530 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199)))))
- ((*1 *1 *1 *1) (-4 *1 (-793))))
-(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-128)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-877 *2)) (-4 *2 (-1214))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-879 *2)) (-4 *2 (-1214))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-5 *1 (-882 *2)) (-4 *2 (-1214)))))
+ (-12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6))
+ (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4)))
+ (-4 *6 (-344 (-409 (-566)) *4 *5)) (-5 *2 (-112))
+ (-5 *1 (-912 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *1) (-5 *1 (-186))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1138))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 (-483 *3 *4))) (-14 *3 (-644 (-1175)))
+ (-4 *4 (-454)) (-5 *1 (-631 *3 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-365)) (-4 *6 (-1240 (-409 *2)))
+ (-4 *2 (-1240 *5)) (-5 *1 (-215 *5 *2 *6 *3))
+ (-4 *3 (-344 *5 *2 *6)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 (-644 *6))) (-4 *6 (-949 *3 *5 *4))
+ (-4 *3 (-13 (-308) (-147))) (-4 *4 (-13 (-850) (-614 (-1175))))
+ (-4 *5 (-793)) (-5 *1 (-924 *3 *4 *5 *6)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *1 (-804 *4 *2)) (-4 *2 (-13 (-29 *4) (-1199) (-959)))))
+ ((*1 *1 *1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1) (-5 *1 (-862)))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| -4065 *1) (|:| -4401 *1) (|:| |associate| *1)))
+ (-4 *1 (-558)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
(((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)))))
-(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381))))
- ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-4 *1 (-254 *2 *3 *4 *5)) (-4 *2 (-1049)) (-4 *3 (-850))
+ (-4 *4 (-267 *3)) (-4 *5 (-793)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-409 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-13 (-365) (-147)))
+ (-5 *1 (-401 *3 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-365)) (-4 *5 (-558))
+ (-5 *2
+ (-2 (|:| |minor| (-644 (-921))) (|:| -4257 *3)
+ (|:| |minors| (-644 (-644 (-921)))) (|:| |ops| (-644 *3))))
+ (-5 *1 (-90 *5 *3)) (-5 *4 (-921)) (-4 *3 (-656 *5)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *2 (-1049)) (-5 *1 (-50 *2 *3)) (-14 *3 (-644 (-1175)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 (-921))) (-4 *2 (-365)) (-5 *1 (-152 *4 *2 *5))
+ (-14 *4 (-921)) (-14 *5 (-993 *4 *2))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-317 *3)) (-5 *1 (-223 *3 *4))
+ (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175)))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-324 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-131))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1099)) (-4 *2 (-1049))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-4 *2 (-558)) (-5 *1 (-623 *2 *4))
+ (-4 *4 (-1240 *2))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-708 *2)) (-4 *2 (-1049))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-1049)) (-5 *1 (-735 *2 *3)) (-4 *3 (-726))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 *5)) (-5 *3 (-644 (-771))) (-4 *1 (-740 *4 *5))
+ (-4 *4 (-1049)) (-4 *5 (-850))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *2)) (-4 *4 (-1049))
+ (-4 *2 (-850))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-852 *2)) (-4 *2 (-1049))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 *6)) (-5 *3 (-644 (-771))) (-4 *1 (-949 *4 *5 *6))
+ (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-771)) (-4 *1 (-949 *4 *5 *2)) (-4 *4 (-1049))
+ (-4 *5 (-793)) (-4 *2 (-850))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-4 *2 (-949 *4 (-533 *5) *5))
+ (-5 *1 (-1125 *4 *5 *2)) (-4 *4 (-1049)) (-4 *5 (-850))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-952 *4)) (-5 *1 (-1208 *4))
+ (-4 *4 (-1049)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2662 *4)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175))
+ (-4 *5 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))))
+ (-5 *2 (-587 *3)) (-5 *1 (-559 *5 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1099)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1214)) (-4 *3 (-375 *2))
+ (-4 *4 (-375 *2))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-604 *3 *2)) (-4 *3 (-1099))
+ (-4 *2 (-1214)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-4 *1 (-324 *2 *4)) (-4 *4 (-131))
+ (-4 *2 (-1099))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-363 *2)) (-4 *2 (-1099))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-388 *2)) (-4 *2 (-1099))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-4 *2 (-1099)) (-5 *1 (-649 *2 *4 *5))
+ (-4 *4 (-23)) (-14 *5 *4)))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-819 *2)) (-4 *2 (-850)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
+ (-5 *2
+ (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566))
+ (|:| |success| (-112))))
+ (-5 *1 (-789)) (-5 *5 (-566)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 *4)) (-4 *4 (-1049)) (-4 *2 (-1240 *4))
+ (-5 *1 (-446 *4 *2))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-409 (-1171 (-317 *5)))) (-5 *3 (-1264 (-317 *5)))
+ (-5 *4 (-566)) (-4 *5 (-558)) (-5 *1 (-1129 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
+(((*1 *2 *3 *4 *4 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-737 *3))))
+ ((*1 *1 *2) (-12 (-5 *1 (-737 *2)) (-4 *2 (-1099))))
+ ((*1 *1) (-12 (-5 *1 (-737 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-644 (-112))))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
(-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225)))
- (-5 *2 (-1035)) (-5 *1 (-754)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-752)))))
+ (-5 *6 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1264 *5)) (-4 *5 (-639 *4)) (-4 *4 (-558))
+ (-5 *2 (-1264 *4)) (-5 *1 (-638 *4 *5)))))
+(((*1 *1) (-5 *1 (-580))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1224 *3))
+ (-5 *2 (-409 (-566))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-365) (-147) (-1038 (-566))))
+ (-4 *5 (-1240 *4))
+ (-5 *2 (-2 (|:| -2883 (-409 *5)) (|:| |coeff| (-409 *5))))
+ (-5 *1 (-570 *4 *5)) (-5 *3 (-409 *5)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
+ (-5 *2 (-689 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-689 *4)) (-5 *1 (-418 *3 *4))
+ (-4 *3 (-419 *4))))
+ ((*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-129)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *2 (-112)) (-5 *1 (-268))))
+ ((*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-112)) (-5 *1 (-268))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-822)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-850)) (-5 *2 (-644 (-644 (-644 *4))))
+ (-5 *1 (-1185 *4)) (-5 *3 (-644 (-644 *4))))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-689 (-566))) (-5 *3 (-644 (-566))) (-5 *1 (-1109)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
(((*1 *2 *2 *2) (-12 (-5 *2 (-1035)) (-5 *1 (-306))))
((*1 *2 *3)
(-12 (-5 *3 (-644 (-1035))) (-5 *2 (-1035)) (-5 *1 (-306))))
@@ -3695,154 +4113,212 @@
(-4 *4 (-1214))))
((*1 *1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214))))
((*1 *1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-112)) (-5 *1 (-829)))))
-(((*1 *2 *1) (|partial| -12 (-4 *1 (-1012)) (-5 *2 (-862)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-771)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5))
- (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
- ((*1 *1 *2)
- (-12 (-4 *2 (-1049)) (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
- (-4 *5 (-238 *3 *2)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3 *3 *3)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1026 (-843 (-566)))) (-5 *1 (-596 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *3 *4 *4 *3 *5)
+ (-12 (-5 *4 (-612 *3)) (-5 *5 (-1171 *3))
+ (-4 *3 (-13 (-432 *6) (-27) (-1199)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2 (-587 *3)) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099))))
+ ((*1 *2 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *4 (-612 *3)) (-5 *5 (-409 (-1171 *3)))
+ (-4 *3 (-13 (-432 *6) (-27) (-1199)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2 (-587 *3)) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099))
- (-4 *6 (-1099)) (-5 *2 (-1 *6 *5)) (-5 *1 (-684 *4 *5 *6)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1157)) (-5 *1 (-1195)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1093 *3)) (-4 *3 (-949 *7 *6 *4)) (-4 *6 (-793))
- (-4 *4 (-850)) (-4 *7 (-558))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-566))))
- (-5 *1 (-595 *6 *4 *7 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-558))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-566))))
- (-5 *1 (-595 *5 *4 *6 *3)) (-4 *3 (-949 *6 *5 *4))))
- ((*1 *1 *1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1) (-5 *1 (-862)))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-1167 *4 *2)) (-4 *2 (-13 (-432 *4) (-160) (-27) (-1199)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1091 *2)) (-4 *2 (-13 (-432 *4) (-160) (-27) (-1199)))
- (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-1167 *4 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566))))
- (-5 *2 (-409 (-952 *5))) (-5 *1 (-1168 *5)) (-5 *3 (-952 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566))))
- (-5 *2 (-3 (-409 (-952 *5)) (-317 *5))) (-5 *1 (-1168 *5))
- (-5 *3 (-409 (-952 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1091 (-952 *5))) (-5 *3 (-952 *5))
- (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-409 *3))
- (-5 *1 (-1168 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1091 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5)))
- (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-3 *3 (-317 *5)))
- (-5 *1 (-1168 *5)))))
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1240 *6))
+ (-4 *6 (-13 (-27) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566))))
+ (-4 *8 (-1240 (-409 *7))) (-5 *2 (-587 *3))
+ (-5 *1 (-554 *5 *6 *7 *8 *3)) (-4 *3 (-344 *6 *7 *8)))))
+(((*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308)))))
+(((*1 *2) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-105)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1))
+ (-4 *1 (-1064 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
+ ((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-753)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2))
- (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566))))
- (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-1203 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1267)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 (-644 (-644 *4)))) (-5 *2 (-644 (-644 *4)))
- (-4 *4 (-850)) (-5 *1 (-1185 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-644 (-317 (-225)))) (-5 *1 (-268)))))
-(((*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))))
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1240 (-566))) (-5 *1 (-488 *3)))))
+(((*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267))))
+ ((*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
- (-4 *4 (-351)))))
(((*1 *2 *2)
(-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
(-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-1097 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *2 (-644 *6))
+ (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-895))
- (-5 *3
- (-2 (|:| |pde| (-644 (-317 (-225))))
- (|:| |constraints|
- (-644
- (-2 (|:| |start| (-225)) (|:| |finish| (-225))
- (|:| |grid| (-771)) (|:| |boundaryType| (-566))
- (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225))))))
- (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157))
- (|:| |tol| (-225))))
- (-5 *2 (-1035)))))
-(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
- (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566))
- (-5 *2 (-1035)) (-5 *1 (-756)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-508)) (-5 *1 (-281)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-644 (-644 (-644 *4)))) (-5 *3 (-644 *4)) (-4 *4 (-850))
- (-5 *1 (-1185 *4)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566))))
+ (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-945 *4 *3))
+ (-4 *3 (-1240 *4)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-5 *5 (-644 *8))
+ (-4 *7 (-850)) (-4 *8 (-1049)) (-4 *9 (-949 *8 *6 *7))
+ (-4 *6 (-793)) (-5 *2 (-1171 *8)) (-5 *1 (-322 *6 *7 *8 *9)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-454) (-147))) (-5 *2 (-420 *3))
+ (-5 *1 (-100 *4 *3)) (-4 *3 (-1240 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-13 (-454) (-147)))
+ (-5 *2 (-420 *3)) (-5 *1 (-100 *5 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-134)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-644 *5) *6))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5))
+ (-5 *2 (-644 (-2 (|:| -2460 *5) (|:| -4257 *3))))
+ (-5 *1 (-809 *5 *6 *3 *7)) (-4 *3 (-656 *6))
+ (-4 *7 (-656 (-409 *6))))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-747)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-682 *2)) (-4 *2 (-1099))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 (-644 *5) (-644 *5))) (-5 *4 (-566))
+ (-5 *2 (-644 *5)) (-5 *1 (-682 *5)) (-4 *5 (-1099)))))
+(((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-171))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4))))
+ ((*1 *2 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))))
+(((*1 *1) (-5 *1 (-823))))
+(((*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-112))))
((*1 *2 *3)
- (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))))
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-112))
+ (-5 *1 (-359 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 (-169 (-409 (-566)))))
+ (-5 *2
+ (-644
+ (-2 (|:| |outval| (-169 *4)) (|:| |outmult| (-566))
+ (|:| |outvect| (-644 (-689 (-169 *4)))))))
+ (-5 *1 (-764 *4)) (-4 *4 (-13 (-365) (-848))))))
+(((*1 *2 *1 *2)
+ (-12 (-4 *1 (-366 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-689 (-317 (-225))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
(-5 *2
- (-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))))
- (-5 *1 (-205)))))
-(((*1 *1 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))))
-(((*1 *1 *1 *1) (-4 *1 (-967))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-771))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-771)))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
- (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *6 (-225))
- (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-751)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-644 (-612 *5))) (-5 *3 (-1175)) (-4 *5 (-432 *4))
- (-4 *4 (-1099)) (-5 *1 (-575 *4 *5)))))
+ (-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 (-192)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48))))))
-(((*1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-644 (-114))))))
-(((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-771)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265))))
- ((*1 *2 *1 *3 *3 *4 *4)
- (-12 (-5 *3 (-771)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-563)) (-5 *3 (-566)))))
+ (|partial| -12 (-5 *3 (-689 (-409 (-952 (-566)))))
+ (-5 *2 (-689 (-317 (-566)))) (-5 *1 (-1031)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-363 (-114))) (-4 *2 (-1049)) (-5 *1 (-714 *2 *4))
+ (-4 *4 (-648 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *3 (-363 (-114))) (-5 *1 (-836 *2)) (-4 *2 (-1049)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-861))))
+ ((*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-861)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1171 *5)) (-4 *5 (-454)) (-5 *2 (-644 *6))
- (-5 *1 (-540 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848)))))
+ (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454))
+ (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6)))
+ (-5 *1 (-628 *5 *6)))))
+(((*1 *2 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1006)))))
+(((*1 *1 *1) (-5 *1 (-538))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
+ (-4 *3 (-13 (-1099) (-34))))))
+(((*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-225)) (-5 *1 (-306)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1157))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-112))
+ (-5 *1 (-224 *4 *5)) (-4 *5 (-13 (-1199) (-29 *4))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-1200 *3))) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *7)) (-4 *7 (-949 *6 *4 *5)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1049)) (-5 *2 (-1171 *6))
+ (-5 *1 (-322 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-977 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-409 *2)) (-4 *2 (-1240 *5))
+ (-5 *1 (-807 *5 *2 *3 *6))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566)))))
+ (-4 *3 (-656 *2)) (-4 *6 (-656 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-952 *5)) (-4 *5 (-454)) (-5 *2 (-644 *6))
- (-5 *1 (-540 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-890 *4 *3))
- (-4 *3 (-1214))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+ (-12 (-5 *4 (-644 (-409 *2))) (-4 *2 (-1240 *5))
+ (-5 *1 (-807 *5 *2 *3 *6))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2))
+ (-4 *6 (-656 (-409 *2))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *3 (-921)) (-5 *1 (-444 *2))
+ (-4 *2 (-1240 (-566)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-921)) (-5 *4 (-771)) (-5 *1 (-444 *2))
+ (-4 *2 (-1240 (-566)))))
+ ((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *1 (-444 *2))
+ (-4 *2 (-1240 (-566)))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *5 (-771))
+ (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566)))))
+ ((*1 *2 *3 *2 *4 *5 *6)
+ (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *5 (-771))
+ (-5 *6 (-112)) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-420 *2)) (-4 *2 (-1240 *5))
+ (-5 *1 (-446 *5 *2)) (-4 *5 (-1049)))))
+(((*1 *2)
+ (-12
+ (-5 *2 (-2 (|:| -3603 (-644 (-1175))) (|:| -1762 (-644 (-1175)))))
+ (-5 *1 (-1216)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1237 *4 *5)) (-5 *3 (-644 *5)) (-14 *4 (-1175))
+ (-4 *5 (-365)) (-5 *1 (-923 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *5)) (-4 *5 (-365)) (-5 *2 (-1171 *5))
+ (-5 *1 (-923 *4 *5)) (-14 *4 (-1175))))
+ ((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-644 *6)) (-5 *4 (-771)) (-4 *6 (-365))
+ (-5 *2 (-409 (-952 *6))) (-5 *1 (-1050 *5 *6)) (-14 *5 (-1175)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175))) (-4 *6 (-454))
+ (-5 *2 (-644 (-644 *7))) (-5 *1 (-540 *6 *7 *5)) (-4 *7 (-365))
+ (-4 *5 (-13 (-365) (-848))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5))
- (-4 *3 (-1240 *4))
- (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))))
+ (-12 (-5 *3 (-1175)) (-5 *2 (-538)) (-5 *1 (-537 *4))
+ (-4 *4 (-1214)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175))
+ (-14 *4 *2))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))))
+(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-752)))))
(((*1 *2 *2)
(-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
(-4 *2 (-13 (-432 *3) (-1002)))))
@@ -3855,7 +4331,7 @@
((*1 *1 *1) (-4 *1 (-285)))
((*1 *2 *3)
(-12 (-5 *3 (-420 *4)) (-4 *4 (-558))
- (-5 *2 (-644 (-2 (|:| -3157 (-771)) (|:| |logand| *4))))
+ (-5 *2 (-644 (-2 (|:| -3223 (-771)) (|:| |logand| *4))))
(-5 *1 (-321 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
@@ -3875,87 +4351,90 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4))
(-4 *4 (-717 (-409 (-566)))) (-4 *3 (-850)) (-4 *4 (-172)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-644 *10)) (-5 *5 (-112)) (-4 *10 (-1070 *6 *7 *8 *9))
- (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-4 *9 (-1064 *6 *7 *8))
- (-5 *2
- (-644
- (-2 (|:| -3525 (-644 *9)) (|:| -2248 *10) (|:| |ineq| (-644 *9)))))
- (-5 *1 (-988 *6 *7 *8 *9 *10)) (-5 *3 (-644 *9))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *4 (-644 *10)) (-5 *5 (-112)) (-4 *10 (-1070 *6 *7 *8 *9))
- (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-4 *9 (-1064 *6 *7 *8))
- (-5 *2
- (-644
- (-2 (|:| -3525 (-644 *9)) (|:| -2248 *10) (|:| |ineq| (-644 *9)))))
- (-5 *1 (-1106 *6 *7 *8 *9 *10)) (-5 *3 (-644 *9)))))
-(((*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-771)) (-5 *1 (-591)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1103)) (-5 *3 (-774)) (-5 *1 (-52)))))
-(((*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-943 (-225))) (-5 *4 (-874)) (-5 *5 (-921))
- (-5 *2 (-1269)) (-5 *1 (-470))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-943 (-225))) (-5 *2 (-1269)) (-5 *1 (-470))))
- ((*1 *2 *1 *3 *4 *4 *5)
- (-12 (-5 *3 (-644 (-943 (-225)))) (-5 *4 (-874)) (-5 *5 (-921))
- (-5 *2 (-1269)) (-5 *1 (-470)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-862)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1049)) (-4 *3 (-1099))
- (-5 *2 (-2 (|:| |val| *1) (|:| -3250 (-566)))) (-4 *1 (-432 *3))))
- ((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| |val| (-892 *3)) (|:| -3250 (-892 *3))))
- (-5 *1 (-892 *3)) (-4 *3 (-1099))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-566)) (|has| *1 (-6 -4415)) (-4 *1 (-1252 *3))
+ (-4 *3 (-1214)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-909)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-420 (-1171 *7)))
+ (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-1171 *7))))
((*1 *2 *3)
- (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049))
- (-4 *7 (-949 *6 *4 *5))
- (-5 *2 (-2 (|:| |val| *3) (|:| -3250 (-566))))
- (-5 *1 (-950 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-365)
- (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $))
- (-15 -3013 (*7 $))))))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-381)) (-5 *1 (-1062)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *4 (-365)) (-5 *2 (-644 (-1155 *4))) (-5 *1 (-286 *4 *5))
- (-5 *3 (-1155 *4)) (-4 *5 (-1255 *4)))))
-(((*1 *1 *2 *2) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))))
-(((*1 *1 *1) (-4 *1 (-558))))
-(((*1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-563)) (-5 *3 (-566)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-644 *1)) (-4 *1 (-308)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1175))
- (-4 *5 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))))
- (-5 *2 (-2 (|:| -2806 *3) (|:| |coeff| *3))) (-5 *1 (-559 *5 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1099)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| |k| (-672 *3)) (|:| |c| *4))))
- (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850))
- (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))))
-(((*1 *1) (-5 *1 (-823))))
+ (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5)))
+ (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 *1)) (|has| *1 (-6 -4415)) (-4 *1 (-1010 *3))
+ (-4 *3 (-1214)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *2 (-1264 (-317 (-381))))
+ (-5 *1 (-306)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-233)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4))
- (-4 *6 (-793)) (-5 *2 (-1 *1 (-771))) (-4 *1 (-254 *3 *4 *5 *6))))
+ (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-419 *4)))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-644 (-644 (-225)))) (-5 *4 (-225))
+ (-5 *2 (-644 (-943 *4))) (-5 *1 (-1210)) (-5 *3 (-943 *4)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-365) (-303)
+ (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $))
+ (-15 -3100 ((-1124 *3 (-612 $)) $))
+ (-15 -3780 ($ (-1124 *3 (-612 $)))))))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-365) (-303)
+ (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $))
+ (-15 -3100 ((-1124 *3 (-612 $)) $))
+ (-15 -3780 ($ (-1124 *3 (-612 $)))))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 *2))
+ (-4 *2
+ (-13 (-365) (-303)
+ (-10 -8 (-15 -3088 ((-1124 *4 (-612 $)) $))
+ (-15 -3100 ((-1124 *4 (-612 $)) $))
+ (-15 -3780 ($ (-1124 *4 (-612 $)))))))
+ (-4 *4 (-558)) (-5 *1 (-41 *4 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 (-612 *2)))
+ (-4 *2
+ (-13 (-365) (-303)
+ (-10 -8 (-15 -3088 ((-1124 *4 (-612 $)) $))
+ (-15 -3100 ((-1124 *4 (-612 $)) $))
+ (-15 -3780 ($ (-1124 *4 (-612 $)))))))
+ (-4 *4 (-558)) (-5 *1 (-41 *4 *2)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-566)) (-4 *5 (-365))
+ (-4 *5 (-1049)) (-5 *2 (-112)) (-5 *1 (-1029 *5))))
((*1 *2 *3)
- (-12 (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793))
- (-5 *2 (-1 *1 (-771))) (-4 *1 (-254 *4 *3 *5 *6))))
- ((*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-267 *2)) (-4 *2 (-850)))))
+ (-12 (-5 *3 (-644 (-689 *4))) (-4 *4 (-365)) (-4 *4 (-1049))
+ (-5 *2 (-112)) (-5 *1 (-1029 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3))))
+ (-5 *2 (-644 (-1075 *3 *4 *5))) (-5 *1 (-1076 *3 *4 *5))
+ (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2)
+ (-12 (-4 *1 (-351))
+ (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099))
+ (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
(((*1 *2 *1 *3)
(-12 (-5 *2 (-409 (-566))) (-5 *1 (-117 *4)) (-14 *4 *3)
(-5 *3 (-566))))
@@ -3972,350 +4451,23 @@
(-4 *3 (-1240 *2))))
((*1 *2 *1 *3)
(-12 (-4 *1 (-1242 *2 *3)) (-4 *3 (-792))
- (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -2512 (*2 (-1175))))
+ (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3780 (*2 (-1175))))
(-4 *2 (-1049)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-566))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))
- (-5 *2 (-1035)) (-5 *1 (-748)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1262 *3)) (-4 *3 (-1214)) (-4 *3 (-1049))
- (-5 *2 (-689 *3)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-559 *6 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1097 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-921)) (-4 *1 (-238 *3 *4)) (-4 *4 (-1049))
- (-4 *4 (-1214))))
- ((*1 *1 *2)
- (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172))
- (-4 *5 (-238 (-2997 *3) (-771)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2168 *2) (|:| -3250 *5))
- (-2 (|:| -2168 *2) (|:| -3250 *5))))
- (-5 *1 (-463 *3 *4 *2 *5 *6 *7)) (-4 *2 (-850))
- (-4 *7 (-949 *4 *5 (-864 *3)))))
- ((*1 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-3 (-409 (-952 *6)) (-1164 (-1175) (-952 *6))))
- (-5 *5 (-771)) (-4 *6 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *6)))))
- (-5 *1 (-293 *6)) (-5 *4 (-689 (-409 (-952 *6))))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *3
- (-2 (|:| |eigval| (-3 (-409 (-952 *5)) (-1164 (-1175) (-952 *5))))
- (|:| |eigmult| (-771)) (|:| |eigvec| (-644 *4))))
- (-4 *5 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *5)))))
- (-5 *1 (-293 *5)) (-5 *4 (-689 (-409 (-952 *5)))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))))
-(((*1 *1) (-5 *1 (-55))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-112)) (-5 *5 (-689 (-225)))
- (-5 *2 (-1035)) (-5 *1 (-755)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-365)) (-5 *1 (-659 *4 *2))
- (-4 *2 (-656 *4)))))
-(((*1 *2 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-751)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2
- (-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))))
- (-5 *1 (-205)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-644 *5) *6))
- (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5))
- (-5 *2 (-644 (-2 (|:| |poly| *6) (|:| -3525 *3))))
- (-5 *1 (-809 *5 *6 *3 *7)) (-4 *3 (-656 *6))
- (-4 *7 (-656 (-409 *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-644 *5) *6))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-4 *6 (-1240 *5))
- (-5 *2 (-644 (-2 (|:| |poly| *6) (|:| -3525 (-654 *6 (-409 *6))))))
- (-5 *1 (-812 *5 *6)) (-5 *3 (-654 *6 (-409 *6))))))
-(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-225) (-225) (-225)))
- (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined"))
- (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225)))
- (-5 *1 (-697))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-225)))
- (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-697))))
- ((*1 *2 *2 *3 *4 *4 *5)
- (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-1 (-943 (-225)) (-225) (-225)))
- (-5 *4 (-1093 (-225))) (-5 *5 (-644 (-264))) (-5 *1 (-697)))))
-(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218))
- (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-771)) (-5 *5 (-644 *3)) (-4 *3 (-308)) (-4 *6 (-850))
- (-4 *7 (-793)) (-5 *2 (-112)) (-5 *1 (-625 *6 *7 *3 *8))
- (-4 *8 (-949 *3 *7 *6)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-771))))
- ((*1 *1 *1) (-4 *1 (-404))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-128)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-822)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-308))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-449 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6))
- (-4 *4 (-308)) (-4 *5 (-793)) (-4 *6 (-850))
- (-5 *1 (-449 *4 *5 *6 *7))))
- ((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6))
- (-4 *4 (-308)) (-4 *5 (-793)) (-4 *6 (-850))
- (-5 *1 (-449 *4 *5 *6 *7)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-850)))))
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-1163 3 *3))))
+ ((*1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1266))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1266)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 (-644 *2))) (-5 *4 (-644 *5))
+ (-4 *5 (-38 (-409 (-566)))) (-4 *2 (-1255 *5))
+ (-5 *1 (-1257 *5 *2)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-964 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
(((*1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1 *1) (-5 *1 (-862)))
((*1 *1 *2 *2) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214))))
((*1 *1 *2) (-12 (-5 *1 (-1231 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-952 (-566)))) (-5 *1 (-439))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1175)) (-5 *4 (-689 (-225))) (-5 *2 (-1103))
- (-5 *1 (-759))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1175)) (-5 *4 (-689 (-566))) (-5 *2 (-1103))
- (-5 *1 (-759)))))
-(((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1175)) (-5 *1 (-675 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1269))
- (-5 *1 (-451 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-1264
- (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225))
- (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -1917 (-566))
- (|:| -1480 (-566)) (|:| |spline| (-566)) (|:| -2583 (-566))
- (|:| |axesColor| (-874)) (|:| -3174 (-566))
- (|:| |unitsColor| (-874)) (|:| |showing| (-566)))))
- (-5 *1 (-1265)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049))
- (-14 *4 (-644 (-1175)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1) (-4 *1 (-285)))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-664 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-5 *1 (-627 *3 *4 *5))
- (-14 *5 (-921))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *4 (-13 (-1049) (-717 (-409 (-566)))))
- (-4 *5 (-850)) (-5 *1 (-1280 *4 *5 *2)) (-4 *2 (-1285 *5 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4))
- (-4 *4 (-717 (-409 (-566)))) (-4 *3 (-850)) (-4 *4 (-172)))))
-(((*1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-365) (-1199) (-1002)))))
- ((*1 *2)
- (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 (-409 *2)))
- (-4 *2 (-1240 *4)) (-5 *1 (-343 *3 *4 *2 *5))
- (-4 *3 (-344 *4 *2 *5))))
- ((*1 *2)
- (|partial| -12 (-4 *1 (-344 *3 *2 *4)) (-4 *3 (-1218))
- (-4 *4 (-1240 (-409 *2))) (-4 *2 (-1240 *3)))))
-(((*1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *2 *2)
- (-12
- (-5 *2
- (-644
- (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-771)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *4 (-793)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *5 (-850))
- (-5 *1 (-451 *3 *4 *5 *6)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793)) (-4 *7 (-949 *4 *6 *5))
- (-5 *2
- (-2 (|:| |sysok| (-112)) (|:| |z0| (-644 *7)) (|:| |n0| (-644 *7))))
- (-5 *1 (-924 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-850))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-677 *3)) (-4 *3 (-850))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819 *3)) (-4 *3 (-850)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225)))
- (-5 *2 (-1035)) (-5 *1 (-747)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-848)))
- (-5 *2 (-2 (|:| |start| *3) (|:| -4236 (-420 *3))))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-759)))))
-(((*1 *1) (-5 *1 (-1178))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175))
- (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566))))
- (-5 *2
- (-2 (|:| |func| *3) (|:| |kers| (-644 (-612 *3)))
- (|:| |vals| (-644 *3))))
- (-5 *1 (-278 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850))
- (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-644 (-771)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850))
- (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-644 (-771))))))
-(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
- (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))))
- (-5 *2 (-1035)) (-5 *1 (-749))))
- ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
- (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))))
- (-5 *8 (-390)) (-5 *2 (-1035)) (-5 *1 (-749)))))
-(((*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-914 *3)) (-4 *3 (-308)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-644 (-508))) (-5 *2 (-508)) (-5 *1 (-485)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
- (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035))
- (-5 *1 (-755)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1175)) (-5 *3 (-436)) (-4 *5 (-1099))
- (-5 *1 (-1105 *5 *4)) (-4 *4 (-432 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-566)) (-5 *2 (-644 (-2 (|:| -2391 *3) (|:| -3992 *4))))
- (-5 *1 (-696 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-1171 *4))
- (-5 *1 (-530 *4)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-103 *3))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1099)))))
-(((*1 *1) (-5 *1 (-580)))
- ((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-863))))
- ((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-863))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1157)) (-5 *4 (-862)) (-5 *2 (-1269)) (-5 *1 (-863))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1155 *4))
- (-4 *4 (-1099)) (-4 *4 (-1214)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4417)) (-4 *1 (-235 *3))
- (-4 *3 (-1099))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))))
-(((*1 *1 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558))
- (-5 *2 (-1171 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-328 *3)) (-4 *3 (-1214))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214))
- (-14 *4 (-566)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-192))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-301))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-306)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099))
- (-4 *6 (-1099)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-684 *4 *5 *6)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927))
- (-5 *1 (-925 *3)) (-4 *3 (-614 (-538)))))
- ((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927))
- (-5 *1 (-925 *3)) (-4 *3 (-614 (-538)))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926))))
- ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-926))))
- ((*1 *1 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-926))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927))))
- ((*1 *1 *2 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-927))))
- ((*1 *1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-927))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-644 (-1 (-225) (-225)))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-927))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-1 (-225) (-225)))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-927))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-927))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-927)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-644 (-1264 *4))) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558))
- (-5 *2 (-644 (-1264 *3))))))
(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792))))
((*1 *1 *1)
(-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1049)) (-14 *3 (-644 (-1175)))))
@@ -4326,10 +4478,10 @@
(-12 (-4 *1 (-384 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-1099))))
((*1 *1 *1)
(-12 (-14 *2 (-644 (-1175))) (-4 *3 (-172))
- (-4 *5 (-238 (-2997 *2) (-771)))
+ (-4 *5 (-238 (-3020 *2) (-771)))
(-14 *6
- (-1 (-112) (-2 (|:| -2168 *4) (|:| -3250 *5))
- (-2 (|:| -2168 *4) (|:| -3250 *5))))
+ (-1 (-112) (-2 (|:| -2208 *4) (|:| -2456 *5))
+ (-2 (|:| -2208 *4) (|:| -2456 *5))))
(-5 *1 (-463 *2 *3 *4 *5 *6 *7)) (-4 *4 (-850))
(-4 *7 (-949 *3 *5 (-864 *2)))))
((*1 *1 *1) (-12 (-4 *1 (-511 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-850))))
@@ -4345,106 +4497,88 @@
(-4 *2 (-850))))
((*1 *1 *1)
(-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-846)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850))
+ (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-365) (-303)
- (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $))
- (-15 -3013 ((-1124 *3 (-612 $)) $))
- (-15 -2512 ($ (-1124 *3 (-612 $)))))))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2))
- (-4 *2
- (-13 (-365) (-303)
- (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $))
- (-15 -3013 ((-1124 *3 (-612 $)) $))
- (-15 -2512 ($ (-1124 *3 (-612 $)))))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 *2))
- (-4 *2
- (-13 (-365) (-303)
- (-10 -8 (-15 -3001 ((-1124 *4 (-612 $)) $))
- (-15 -3013 ((-1124 *4 (-612 $)) $))
- (-15 -2512 ($ (-1124 *4 (-612 $)))))))
- (-4 *4 (-558)) (-5 *1 (-41 *4 *2))))
+ (-12 (-4 *3 (-13 (-558) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-278 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3)))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 (-612 *2)))
- (-4 *2
- (-13 (-365) (-303)
- (-10 -8 (-15 -3001 ((-1124 *4 (-612 $)) $))
- (-15 -3013 ((-1124 *4 (-612 $)) $))
- (-15 -2512 ($ (-1124 *4 (-612 $)))))))
- (-4 *4 (-558)) (-5 *1 (-41 *4 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *2 (-644 *2))) (-5 *4 (-644 *5))
- (-4 *5 (-38 (-409 (-566)))) (-4 *2 (-1255 *5))
- (-5 *1 (-1257 *5 *2)))))
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *4)) (-4 *4 (-365)) (-5 *2 (-689 *4))
+ (-5 *1 (-814 *4 *5)) (-4 *5 (-656 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *5)) (-5 *4 (-771)) (-4 *5 (-365))
+ (-5 *2 (-689 *5)) (-5 *1 (-814 *5 *6)) (-4 *6 (-656 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-689 *2)) (-4 *4 (-1240 *2))
+ (-4 *2 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))))
+ (-5 *1 (-501 *2 *4 *5)) (-4 *5 (-411 *2 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
+ (-4 *5 (-238 *3 *2)) (-4 *2 (-1049)))))
(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
(-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
(-5 *1 (-751)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-1179)))))
-(((*1 *1) (-5 *1 (-1084))))
-(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-999 *3)) (-4 *3 (-172)) (-5 *1 (-799 *3)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
- (-5 *2
- (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566))
- (|:| |success| (-112))))
- (-5 *1 (-789)) (-5 *5 (-566)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| |k| (-1175)) (|:| |c| (-1286 *3)))))
- (-5 *1 (-1286 *3)) (-4 *3 (-1049))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| |k| *3) (|:| |c| (-1288 *3 *4)))))
- (-5 *1 (-1288 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-584)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-566)) (-4 *4 (-1240 (-409 *3))) (-5 *2 (-921))
+ (-5 *1 (-913 *4 *5)) (-4 *5 (-1240 (-409 *4))))))
(((*1 *2 *1)
(-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1))
(-4 *1 (-949 *3 *4 *5)))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12
- (-4 *4 (-13 (-147) (-27) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-4 *5 (-1240 *4)) (-5 *2 (-1171 (-409 *5))) (-5 *1 (-615 *4 *5))
- (-5 *3 (-409 *5))))
- ((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5))
- (-4 *5 (-13 (-147) (-27) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-5 *2 (-1171 (-409 *6))) (-5 *1 (-615 *5 *6)) (-5 *3 (-409 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-846)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-1179)) (-5 *1 (-1178)))))
(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *1 *1) (-4 *1 (-629)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
-(((*1 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-821)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-328 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-566)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214)) (-14 *4 *2))))
+(((*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-1179)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-841)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-840))))
+ ((*1 *2 *3) (-12 (-5 *3 (-841)) (-5 *2 (-1035)) (-5 *1 (-840))))
+ ((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-644 (-381))) (-5 *5 (-644 (-843 (-381))))
+ (-5 *6 (-644 (-317 (-381)))) (-5 *3 (-317 (-381))) (-5 *2 (-1035))
+ (-5 *1 (-840))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-381)))
+ (-5 *5 (-644 (-843 (-381)))) (-5 *2 (-1035)) (-5 *1 (-840))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-381))) (-5 *2 (-1035))
+ (-5 *1 (-840))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-317 (-381)))) (-5 *4 (-644 (-381)))
+ (-5 *2 (-1035)) (-5 *1 (-840)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-420 (-1171 (-566)))) (-5 *1 (-191)) (-5 *3 (-566)))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-644
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
- (|:| |xpnt| (-566)))))
- (-5 *1 (-420 *3)) (-4 *3 (-558))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-771)) (-4 *3 (-351)) (-4 *5 (-1240 *3))
- (-5 *2 (-644 (-1171 *3))) (-5 *1 (-500 *3 *5 *6))
- (-4 *6 (-1240 *5)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1264 (-644 *3))) (-4 *4 (-308))
- (-5 *2 (-644 *3)) (-5 *1 (-457 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *3 *3)
- (-12
- (-5 *3
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *7)
- (|:| |polj| *7)))
- (-4 *5 (-793)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850))
- (-5 *2 (-112)) (-5 *1 (-451 *4 *5 *6 *7)))))
+ (-12 (-4 *4 (-351))
+ (-5 *2 (-644 (-2 (|:| |deg| (-771)) (|:| -2457 *3))))
+ (-5 *1 (-216 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-1 (-587 *3) *3 (-1175)))
+ (-5 *6
+ (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
+ (-1175)))
+ (-4 *3 (-285)) (-4 *3 (-629)) (-4 *3 (-1038 *4)) (-4 *3 (-432 *7))
+ (-5 *4 (-1175)) (-4 *7 (-614 (-892 (-566)))) (-4 *7 (-454))
+ (-4 *7 (-886 (-566))) (-4 *7 (-1099)) (-5 *2 (-587 *3))
+ (-5 *1 (-575 *7 *3)))))
(((*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049))))
((*1 *2 *1)
(-12 (-4 *2 (-1049)) (-5 *1 (-50 *2 *3)) (-14 *3 (-644 (-1175)))))
@@ -4454,10 +4588,10 @@
((*1 *2 *1)
(-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1099)) (-4 *2 (-1049))))
((*1 *2 *1)
- (-12 (-14 *3 (-644 (-1175))) (-4 *5 (-238 (-2997 *3) (-771)))
+ (-12 (-14 *3 (-644 (-1175))) (-4 *5 (-238 (-3020 *3) (-771)))
(-14 *6
- (-1 (-112) (-2 (|:| -2168 *4) (|:| -3250 *5))
- (-2 (|:| -2168 *4) (|:| -3250 *5))))
+ (-1 (-112) (-2 (|:| -2208 *4) (|:| -2456 *5))
+ (-2 (|:| -2208 *4) (|:| -2456 *5))))
(-4 *2 (-172)) (-5 *1 (-463 *3 *2 *4 *5 *6 *7)) (-4 *4 (-850))
(-4 *7 (-949 *2 *5 (-864 *3)))))
((*1 *2 *1) (-12 (-4 *1 (-511 *2 *3)) (-4 *3 (-850)) (-4 *2 (-1099))))
@@ -4474,49 +4608,42 @@
((*1 *1 *1 *2)
(-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
(-4 *2 (-850)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
- (-12 (-5 *4 (-566)) (-5 *5 (-1157)) (-5 *6 (-689 (-225)))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))))
- (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))
- (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))))
-(((*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-644 (-865))))))
-(((*1 *2)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-248)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-921)) (-4 *5 (-558)) (-5 *2 (-689 *5))
- (-5 *1 (-956 *5 *3)) (-4 *3 (-656 *5)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-761))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-308)) (-5 *1 (-457 *3 *2)) (-4 *2 (-1240 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-308)) (-5 *1 (-462 *3 *2)) (-4 *2 (-1240 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *3 (-308)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-771)))
- (-5 *1 (-541 *3 *2 *4 *5)) (-4 *2 (-1240 *3)))))
-(((*1 *1 *1) (-5 *1 (-538))))
-(((*1 *1 *2 *3 *4)
- (-12
- (-5 *3
- (-644
- (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 *2))
- (|:| |logand| (-1171 *2)))))
- (-5 *4 (-644 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
- (-4 *2 (-365)) (-5 *1 (-587 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *1 *1) (-12 (-5 *1 (-608 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1) (-5 *1 (-632))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850))))
+ ((*1 *1) (-4 *1 (-1150))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
+ ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
+ ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
+(((*1 *2 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-1062)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-538)))))
+(((*1 *1 *2) (-12 (-5 *2 (-317 (-169 (-381)))) (-5 *1 (-331))))
+ ((*1 *1 *2) (-12 (-5 *2 (-317 (-566))) (-5 *1 (-331))))
+ ((*1 *1 *2) (-12 (-5 *2 (-317 (-381))) (-5 *1 (-331))))
+ ((*1 *1 *2) (-12 (-5 *2 (-317 (-694))) (-5 *1 (-331))))
+ ((*1 *1 *2) (-12 (-5 *2 (-317 (-701))) (-5 *1 (-331))))
+ ((*1 *1 *2) (-12 (-5 *2 (-317 (-699))) (-5 *1 (-331))))
+ ((*1 *1) (-5 *1 (-331))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))))
+(((*1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214)))))
+(((*1 *1) (-5 *1 (-1084))))
+(((*1 *1)
+ (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771))
+ (-4 *4 (-172)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
(((*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792))))
((*1 *2 *1)
(-12 (-4 *1 (-384 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1099))))
((*1 *2 *1)
(-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172))
- (-4 *6 (-238 (-2997 *3) (-771)))
+ (-4 *6 (-238 (-3020 *3) (-771)))
(-14 *7
- (-1 (-112) (-2 (|:| -2168 *5) (|:| -3250 *6))
- (-2 (|:| -2168 *5) (|:| -3250 *6))))
+ (-1 (-112) (-2 (|:| -2208 *5) (|:| -2456 *6))
+ (-2 (|:| -2208 *5) (|:| -2456 *6))))
(-5 *2 (-713 *5 *6 *7)) (-5 *1 (-463 *3 *4 *5 *6 *7 *8))
(-4 *5 (-850)) (-4 *8 (-949 *4 *6 (-864 *3)))))
((*1 *2 *1)
@@ -4525,795 +4652,1189 @@
((*1 *1 *1)
(-12 (-4 *1 (-973 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-792))
(-4 *4 (-850)))))
+(((*1 *2 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-747)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-558)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
-(((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1061))))
- ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1061)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-1264 *5)) (-4 *5 (-308))
- (-4 *5 (-1049)) (-5 *2 (-689 *5)) (-5 *1 (-1029 *5)))))
+ (-12 (-5 *3 (-566)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-5 *2 (-1269)) (-5 *1 (-451 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))))
+(((*1 *2)
+ (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
+ (-5 *1 (-1071 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
+ (-5 *1 (-1107 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-566)) (|has| *1 (-6 -4415)) (-4 *1 (-375 *3))
+ (-4 *3 (-1214)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566))
+ (-14 *4 (-771)) (-4 *5 (-172)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-771)) (-4 *2 (-1099))
- (-5 *1 (-678 *2)))))
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *4))))
+ (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-958 (-1119)))
- (-5 *1 (-348 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-308)) (-5 *1 (-179 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1180))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-508)) (-5 *3 (-644 (-1180))) (-5 *1 (-1180)))))
+ (-12 (-4 *1 (-839))
+ (-5 *3
+ (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225)))
+ (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225))))
+ (|:| |ub| (-644 (-843 (-225))))))
+ (-5 *2 (-1035))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-839))
+ (-5 *3
+ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))
+ (-5 *2 (-1035)))))
+(((*1 *1 *2 *2 *2 *2 *2 *2 *2 *2)
+ (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-999 *3)) (-4 *3 (-172)) (-5 *1 (-799 *3)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-755)))))
(((*1 *2 *1) (-12 (-4 *1 (-327 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049))))
((*1 *2 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-644
- (-2 (|:| -1821 (-771))
- (|:| |eqns|
- (-644
- (-2 (|:| |det| *7) (|:| |rows| (-644 (-566)))
- (|:| |cols| (-644 (-566))))))
- (|:| |fgb| (-644 *7)))))
- (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147)))
- (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-771))
- (-5 *1 (-924 *4 *5 *6 *7)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-529)) (-5 *3 (-128)) (-5 *2 (-771)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-566)) (-4 *1 (-1224 *4)) (-4 *4 (-1049)) (-4 *4 (-558))
- (-5 *2 (-409 (-952 *4)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-4 *1 (-1224 *4)) (-4 *4 (-1049)) (-4 *4 (-558))
- (-5 *2 (-409 (-952 *4))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1214)) (-5 *2 (-771)) (-5 *1 (-182 *4 *3))
- (-4 *3 (-674 *4)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1171 *3)) (-4 *3 (-1049)) (-4 *1 (-1240 *3)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1073))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
-(((*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4408)) (-4 *1 (-406))))
- ((*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921))))
- ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699))))
- ((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-558))
- (-4 *3 (-949 *7 *5 *6))
- (-5 *2
- (-2 (|:| -3250 (-771)) (|:| -3157 *3) (|:| |radicand| (-644 *3))))
- (-5 *1 (-953 *5 *6 *7 *3 *8)) (-5 *4 (-771))
- (-4 *8
- (-13 (-365)
- (-10 -8 (-15 -2512 ($ *3)) (-15 -3001 (*3 $)) (-15 -3013 (*3 $))))))))
-(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266))))
- ((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-644 *8))) (-5 *3 (-644 *8))
- (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793))
- (-4 *7 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *5 *6 *7 *8)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-566)) (-5 *1 (-381)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-97)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*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 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-675 (-225)))
- (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-750)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |var| (-644 (-1175))) (|:| |pred| (-52))))
- (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+ (-12 (-4 *3 (-1038 (-566))) (-4 *3 (-558)) (-5 *1 (-32 *3 *2))
+ (-4 *2 (-432 *3))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-1171 *4)) (-5 *1 (-165 *3 *4))
+ (-4 *3 (-166 *4))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1049)) (-4 *1 (-303))))
+ ((*1 *2) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1171 *3))))
+ ((*1 *2) (-12 (-4 *1 (-724 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1067 *3 *2)) (-4 *3 (-13 (-848) (-365)))
+ (-4 *2 (-1240 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
(((*1 *2 *2)
(-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
(-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-27))
- (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-4 *5 (-1240 *4)) (-5 *2 (-644 (-653 (-409 *5))))
- (-5 *1 (-657 *4 *5)) (-5 *3 (-653 (-409 *5))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365))
- (-4 *7 (-1240 (-409 *6)))
- (-5 *2 (-2 (|:| |answer| *3) (|:| -2317 *3)))
- (-5 *1 (-564 *5 *6 *7 *3)) (-4 *3 (-344 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1093 (-225)))
+ (-5 *5 (-112)) (-5 *2 (-1266)) (-5 *1 (-258)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-1139 *4 *5))) (-5 *3 (-1 (-112) *5 *5))
+ (-4 *4 (-13 (-1099) (-34))) (-4 *5 (-13 (-1099) (-34)))
+ (-5 *1 (-1140 *4 *5))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-1139 *3 *4))) (-4 *3 (-13 (-1099) (-34)))
+ (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
(-5 *2
- (-2 (|:| |answer| (-409 *6)) (|:| -2317 (-409 *6))
- (|:| |specpart| (-409 *6)) (|:| |polypart| *6)))
- (-5 *1 (-565 *5 *6)) (-5 *3 (-409 *6)))))
+ (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566))
+ (|:| |success| (-112))))
+ (-5 *1 (-789)) (-5 *5 (-566)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1093 *3)) (-5 *1 (-1091 *3)) (-4 *3 (-1214))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214))))
- ((*1 *1 *2) (-12 (-5 *1 (-1231 *2)) (-4 *2 (-1214)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1157)) (-4 *1 (-366 *2 *4)) (-4 *2 (-1099))
- (-4 *4 (-1099))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-366 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-4 *3 (-1064 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3))))
+ (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
+ (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771))
+ (-4 *4 (-172))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2))
+ (-4 *2 (-432 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1091 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558))
+ (-5 *1 (-158 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-160))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-467 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-172)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-365) (-303)
+ (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $))
+ (-15 -3100 ((-1124 *3 (-612 $)) $))
+ (-15 -3780 ($ (-1124 *3 (-612 $))))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *2 (-644 *4)) (-5 *1 (-779 *4))
+ (-4 *4 (-13 (-365) (-848))))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-151 *2))
+ (-4 *2 (-1214)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793)) (-5 *2 (-409 (-952 *4))) (-5 *1 (-924 *4 *5 *6 *3))
+ (-4 *3 (-949 *4 *6 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-689 *7)) (-4 *7 (-949 *4 *6 *5))
+ (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793)) (-5 *2 (-689 (-409 (-952 *4))))
+ (-5 *1 (-924 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5))
+ (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793)) (-5 *2 (-644 (-409 (-952 *4))))
+ (-5 *1 (-924 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-1 (-644 *5) *6))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-4 *6 (-1240 *5)) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-653 (-409 *7))) (-5 *4 (-1 (-644 *6) *7))
+ (-5 *5 (-1 (-420 *7) *7))
+ (-4 *6 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-4 *7 (-1240 *6)) (-5 *2 (-644 (-409 *7))) (-5 *1 (-812 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1068 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3))))
+ (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-1 (-644 *5) *6))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-4 *6 (-1240 *5)) (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-4 *3 (-1064 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1144 *6 *7 *8 *3 *4)) (-4 *4 (-1108 *6 *7 *8 *3))))
+ (-12 (-5 *3 (-654 *7 (-409 *7))) (-5 *4 (-1 (-644 *6) *7))
+ (-5 *5 (-1 (-420 *7) *7))
+ (-4 *6 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-4 *7 (-1240 *6)) (-5 *2 (-644 (-409 *7))) (-5 *1 (-812 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-653 (-409 *5))) (-4 *5 (-1240 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-5 *2 (-644 (-409 *5))) (-5 *1 (-812 *4 *5))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *6 (-921)) (-4 *5 (-308)) (-4 *3 (-1240 *5))
- (-5 *2 (-2 (|:| |plist| (-644 *3)) (|:| |modulo| *5)))
- (-5 *1 (-462 *5 *3)) (-5 *4 (-644 *3)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-1279 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172))
- (-5 *1 (-664 *3 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-664 *3 *4)) (-5 *1 (-1284 *3 *4))
- (-4 *3 (-850)) (-4 *4 (-172)))))
+ (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-1 (-420 *6) *6))
+ (-4 *6 (-1240 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-654 *5 (-409 *5))) (-4 *5 (-1240 *4)) (-4 *4 (-27))
+ (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-5 *2 (-644 (-409 *5))) (-5 *1 (-812 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-1 (-420 *6) *6))
+ (-4 *6 (-1240 *5)) (-4 *5 (-27))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-5 *2 (-644 (-409 *6))) (-5 *1 (-812 *5 *6)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
- (-5 *2 (-771))))
+ (-12 (-5 *2 (-644 (-2 (|:| |k| (-1175)) (|:| |c| (-1286 *3)))))
+ (-5 *1 (-1286 *3)) (-4 *3 (-1049))))
((*1 *2 *1)
- (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099))
- (-5 *2 (-771))))
+ (-12 (-5 *2 (-644 (-2 (|:| |k| *3) (|:| |c| (-1288 *3 *4)))))
+ (-5 *1 (-1288 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049)))))
+(((*1 *2 *3)
+ (-12 (|has| *6 (-6 -4415)) (-4 *4 (-365)) (-4 *5 (-375 *4))
+ (-4 *6 (-375 *4)) (-5 *2 (-644 *6)) (-5 *1 (-523 *4 *5 *6 *3))
+ (-4 *3 (-687 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (|has| *9 (-6 -4415)) (-4 *4 (-558)) (-4 *5 (-375 *4))
+ (-4 *6 (-375 *4)) (-4 *7 (-992 *4)) (-4 *8 (-375 *7))
+ (-4 *9 (-375 *7)) (-5 *2 (-644 *6))
+ (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-687 *4 *5 *6))
+ (-4 *10 (-687 *7 *8 *9))))
((*1 *2 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-726)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1237 *5 *4)) (-5 *1 (-1173 *4 *5 *6))
- (-4 *4 (-1049)) (-14 *5 (-1175)) (-14 *6 *4)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1237 *5 *4)) (-5 *1 (-1256 *4 *5 *6))
- (-4 *4 (-1049)) (-14 *5 (-1175)) (-14 *6 *4))))
-(((*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-644 *6) "failed") (-566) *6 *6)) (-4 *6 (-365))
- (-4 *7 (-1240 *6))
- (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6)))
- (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
-(((*1 *1) (-5 *1 (-439))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *1 *1 *3 *4)
- (-12 (-5 *3 (-1 (-112) *5 *5)) (-5 *4 (-1 (-112) *6 *6))
- (-4 *5 (-13 (-1099) (-34))) (-4 *6 (-13 (-1099) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1139 *5 *6)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-420 *4)) (-4 *4 (-558)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1171 (-952 *6))) (-4 *6 (-558))
- (-4 *2 (-949 (-409 (-952 *6)) *5 *4)) (-5 *1 (-732 *5 *4 *6 *2))
- (-4 *5 (-793))
- (-4 *4 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-644 (-1 *4 (-644 *4)))) (-4 *4 (-1099))
- (-5 *1 (-113 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1099))
- (-5 *1 (-113 *4))))
+ (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-644 *5))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-644 (-1 *4 (-644 *4))))
- (-5 *1 (-113 *4)) (-4 *4 (-1099)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))))
+ (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4))
+ (-4 *6 (-375 *4)) (-5 *2 (-644 *6)) (-5 *1 (-688 *4 *5 *6 *3))
+ (-4 *3 (-687 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558))
+ (-5 *2 (-644 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-319)) (-5 *3 (-225)))))
+(((*1 *1 *1) (-4 *1 (-243)))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1240 *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)
+ (-2805 (-12 (-5 *1 (-295 *2)) (-4 *2 (-365)) (-4 *2 (-1214)))
+ (-12 (-5 *1 (-295 *2)) (-4 *2 (-475)) (-4 *2 (-1214)))))
+ ((*1 *1 *1) (-4 *1 (-475)))
+ ((*1 *2 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-351)) (-5 *1 (-530 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-797 *2)) (-4 *2 (-172)) (-4 *2 (-365)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-351)) (-4 *4 (-330 *3)) (-4 *5 (-1240 *4))
+ (-5 *1 (-777 *3 *4 *5 *2 *6)) (-4 *2 (-1240 *5)) (-14 *6 (-921))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-4 *3 (-370))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1283 *2)) (-4 *2 (-365)) (-4 *2 (-370)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1099)) (-5 *2 (-112))
+ (-5 *1 (-1215 *3)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-976 *4 *5 *3 *6)) (-4 *4 (-1049)) (-4 *5 (-793))
- (-4 *3 (-850)) (-4 *6 (-1064 *4 *5 *3)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3 *3 *3 *4 *4 *5 *5 *5 *3 *5 *5 *3 *6 *3 *3 *3)
- (-12 (-5 *5 (-689 (-225))) (-5 *6 (-689 (-566))) (-5 *3 (-566))
- (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *1 *1) (-5 *1 (-112))))
-(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-331)))))
-(((*1 *1 *2)
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-5 *1 (-331)))))
+(((*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-644 (-865))))))
+(((*1 *2 *3 *4)
(-12
- (-5 *2
+ (-5 *3
(-644
- (-2
- (|:| -2010
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225))))
- (|:| |yinit| (-644 (-225))) (|:| |intvals| (-644 (-225)))
- (|:| |g| (-317 (-225))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (|:| -2818
- (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381))
- (|:| |expense| (-381)) (|:| |accuracy| (-381))
- (|:| |intermediateResults| (-381)))))))
- (-5 *1 (-803)))))
-(((*1 *2 *3 *3 *2)
- (|partial| -12 (-5 *2 (-771))
- (-4 *3 (-13 (-726) (-370) (-10 -7 (-15 ** (*3 *3 (-566))))))
- (-5 *1 (-246 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-622 *4 *2)) (-4 *2 (-13 (-1199) (-959) (-29 *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175))
- (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566))))
- (-5 *2 (-2 (|:| -3935 *3) (|:| |nconst| *3))) (-5 *1 (-569 *5 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-547))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+ (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8))
+ (|:| |wcond| (-644 (-952 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *5))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *5))))))))))
+ (-5 *4 (-1157)) (-4 *5 (-13 (-308) (-147))) (-4 *8 (-949 *5 *7 *6))
+ (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-566))
+ (-5 *1 (-924 *5 *6 *7 *8)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1092 *3)) (-4 *3 (-1214)) (-5 *2 (-566)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-192))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-301))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-306)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1195)))))
+ (-12 (-5 *3 (-317 (-225))) (-5 *2 (-409 (-566))) (-5 *1 (-306)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-584)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454))
+ (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-977 *3 *4 *5 *6)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))))
+(((*1 *2)
+ (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -1575 (-644 *1))))
+ (-4 *1 (-369 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-455 *3 *4 *5 *6))
+ (|:| -1575 (-644 (-455 *3 *4 *5 *6)))))
+ (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *2 *3 *4 *4 *5 *6 *7)
+ (-12 (-5 *5 (-1175))
+ (-5 *6
+ (-1
+ (-3
+ (-2 (|:| |mainpart| *4)
+ (|:| |limitedlogs|
+ (-644 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
+ "failed")
+ *4 (-644 *4)))
+ (-5 *7
+ (-1 (-3 (-2 (|:| -2883 *4) (|:| |coeff| *4)) "failed") *4 *4))
+ (-4 *4 (-13 (-1199) (-27) (-432 *8)))
+ (-4 *8 (-13 (-454) (-147) (-1038 *3) (-639 *3))) (-5 *3 (-566))
+ (-5 *2 (-2 (|:| |ans| *4) (|:| -4394 *4) (|:| |sol?| (-112))))
+ (-5 *1 (-1013 *8 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-905 *3))) (-4 *3 (-1099)) (-5 *1 (-904 *3)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
+ (-5 *1 (-176 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 (-644 *7) *7 (-1171 *7))) (-5 *5 (-1 (-420 *7) *7))
+ (-4 *7 (-1240 *6)) (-4 *6 (-13 (-365) (-147) (-1038 (-409 (-566)))))
+ (-5 *2 (-644 (-2 (|:| |frac| (-409 *7)) (|:| -4257 *3))))
+ (-5 *1 (-809 *6 *7 *3 *8)) (-4 *3 (-656 *7))
+ (-4 *8 (-656 (-409 *7)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-5 *2
+ (-644 (-2 (|:| |frac| (-409 *6)) (|:| -4257 (-654 *6 (-409 *6))))))
+ (-5 *1 (-812 *5 *6)) (-5 *3 (-654 *6 (-409 *6))))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12
+ (-4 *4 (-13 (-147) (-27) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-4 *5 (-1240 *4)) (-5 *2 (-1171 (-409 *5))) (-5 *1 (-615 *4 *5))
+ (-5 *3 (-409 *5))))
+ ((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 (-420 *6) *6)) (-4 *6 (-1240 *5))
+ (-4 *5 (-13 (-147) (-27) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-5 *2 (-1171 (-409 *6))) (-5 *1 (-615 *5 *6)) (-5 *3 (-409 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
- (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-644 (-1024 (-409 *4)))))
- (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7))
- (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7))
- (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ (-12 (-5 *4 (-409 (-566)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-295 *3)) (-5 *5 (-409 (-566)))
+ (-4 *3 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *6 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-1 *8 (-409 (-566)))) (-5 *4 (-295 *8))
+ (-5 *5 (-1231 (-409 (-566)))) (-5 *6 (-409 (-566)))
+ (-4 *8 (-13 (-27) (-1199) (-432 *7)))
+ (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-409 (-566))))
+ (-5 *7 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *8)))
+ (-4 *8 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *8 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-409 (-566))) (-4 *4 (-1049)) (-4 *1 (-1247 *4 *3))
+ (-4 *3 (-1224 *4)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 (-317 (-225))))
+ (-5 *2
+ (-2 (|:| |additions| (-566)) (|:| |multiplications| (-566))
+ (|:| |exponentiations| (-566)) (|:| |functionCalls| (-566))))
+ (-5 *1 (-306)))))
+(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-756)))))
+(((*1 *2 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-754)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -4394 *6) (|:| |sol?| (-112))) (-566)
+ *6))
+ (-4 *6 (-365)) (-4 *7 (-1240 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-409 *7)) (|:| |a0| *6))
+ (-2 (|:| -2883 (-409 *7)) (|:| |coeff| (-409 *7))) "failed"))
+ (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4)))))
((*1 *2 *3)
- (-12 (-5 *3 (-644 (-952 *4)))
- (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6))
- (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-689 *3))
- (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))))
- (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-689 *3))
- (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))))
- (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))))
+ (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-566)) (-4 *5 (-13 (-454) (-1038 *4) (-639 *4)))
+ (-5 *2 (-52)) (-5 *1 (-316 *5 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-454) (-1038 *5) (-639 *5))) (-5 *5 (-566))
+ (-5 *2 (-52)) (-5 *1 (-316 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-566)))
+ (-4 *7 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-566)))
+ (-4 *3 (-13 (-27) (-1199) (-432 *7)))
+ (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *7 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-566)) (-4 *4 (-1049)) (-4 *1 (-1226 *4 *3))
+ (-4 *3 (-1255 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1224 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *2
+ (-3 (|:| |%expansion| (-314 *5 *3 *6 *7))
+ (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))))
+ (-5 *1 (-422 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
+ (-14 *6 (-1175)) (-14 *7 *3))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-235 *3))))
+ ((*1 *1) (-12 (-4 *1 (-235 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-420 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48)))))
- ((*1 *2 *3 *1)
- (-12 (-5 *2 (-2 (|:| |less| (-121 *3)) (|:| |greater| (-121 *3))))
- (-5 *1 (-121 *3)) (-4 *3 (-850))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-587 *4)) (-4 *4 (-13 (-29 *3) (-1199)))
- (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-585 *3 *4))))
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-541 *4 *2 *5 *6))
+ (-4 *4 (-308)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-771))))))
+(((*1 *2 *2) (|partial| -12 (-5 *2 (-317 (-225))) (-5 *1 (-268)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-112))
+ (-5 *2 (-1035)) (-5 *1 (-745)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))))
+(((*1 *1 *1) (-4 *1 (-629)))
((*1 *2 *2)
- (-12 (-5 *2 (-587 (-409 (-952 *3))))
- (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *1 (-590 *3))))
+ (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
+(((*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-276)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365))
- (-5 *2 (-2 (|:| -3792 *3) (|:| |special| *3))) (-5 *1 (-727 *5 *3))))
+ (-12 (-5 *4 (-771)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *2 (-52)) (-5 *1 (-316 *5 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1264 *5)) (-4 *5 (-365)) (-4 *5 (-1049))
- (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5))
- (-5 *3 (-644 (-689 *5)))))
+ (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-295 *3)) (-5 *5 (-771))
+ (-4 *3 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *6 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1264 (-1264 *5))) (-4 *5 (-365)) (-4 *5 (-1049))
- (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5))
- (-5 *3 (-644 (-689 *5)))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-141)) (-5 *2 (-644 *1)) (-4 *1 (-1143))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-144)) (-5 *2 (-644 *1)) (-4 *1 (-1143)))))
-(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *3 *3 *3 *3 *5 *5 *4 *3 *6 *7)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225)))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-75 FCN JACOBF JACEPS))))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-76 G JACOBG JACGEP))))
- (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1180)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-4 *1 (-903 *3)))))
-(((*1 *1 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-739 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-114))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-114))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850))
- (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771))))
+ (-12 (-5 *3 (-1 *6 (-566))) (-5 *4 (-295 *6))
+ (-4 *6 (-13 (-27) (-1199) (-432 *5)))
+ (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-771)))
+ (-4 *7 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-771)))
+ (-4 *3 (-13 (-27) (-1199) (-432 *7)))
+ (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *7 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850))
- (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-4 *1 (-267 *3)) (-4 *3 (-850)) (-5 *2 (-771)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4))))
- (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-914 *3)) (-4 *3 (-308)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199)))))
- ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862))))
- ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
-(((*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-1157)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4)))
- (-5 *2 (-2 (|:| |num| (-1264 *4)) (|:| |den| *4))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699))))
- ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))))
-(((*1 *2 *3 *4 *4 *3 *4 *5 *4 *4 *3 *3 *3 *3 *6 *3 *7)
- (-12 (-5 *3 (-566)) (-5 *5 (-112)) (-5 *6 (-689 (-225)))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))
- (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-753)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-254 *2 *3 *4 *5)) (-4 *2 (-1049)) (-4 *3 (-850))
- (-4 *4 (-267 *3)) (-4 *5 (-793)))))
+ (-12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1255 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-644 (-112))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+ (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *5 (-370))
+ (-5 *2 (-771)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1026 (-843 (-566)))) (-5 *1 (-596 *3)) (-4 *3 (-1049)))))
-(((*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267))))
- ((*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-747)))))
-(((*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-112))
- (-5 *1 (-359 *4)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
- (-4 *3 (-13 (-1099) (-34))))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175))) (-4 *6 (-454))
- (-5 *2 (-644 (-644 *7))) (-5 *1 (-540 *6 *7 *5)) (-4 *7 (-365))
- (-4 *5 (-13 (-365) (-848))))))
-(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1264 (-771))) (-5 *1 (-675 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-365)) (-4 *3 (-1049))
+ (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-852 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-365)) (-4 *5 (-1049))
+ (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-853 *5 *3))
+ (-4 *3 (-852 *5)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-1175))
+ (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-4 *4 (-13 (-29 *6) (-1199) (-959)))
+ (-5 *2 (-2 (|:| |particular| *4) (|:| -1575 (-644 *4))))
+ (-5 *1 (-801 *6 *4 *3)) (-4 *3 (-656 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-689 (-409 (-952 (-566))))) (-5 *2 (-644 (-317 (-566))))
+ (-5 *1 (-1031)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1157)) (-4 *1 (-366 *2 *4)) (-4 *2 (-1099))
+ (-4 *4 (-1099))))
+ ((*1 *1 *2)
+ (-12 (-4 *1 (-366 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *3)) (-4 *3 (-850)) (-4 *5 (-793))
+ (-4 *6 (-558)) (-4 *7 (-949 *6 *5 *3))
+ (-5 *1 (-464 *5 *3 *6 *7 *2))
+ (-4 *2
+ (-13 (-1038 (-409 (-566))) (-365)
+ (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $))
+ (-15 -3100 (*7 $))))))))
+(((*1 *2 *2 *2 *2 *2)
(-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
(-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1084)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3))))
+ (-5 *1 (-596 *3)) (-4 *3 (-1049)))))
(((*1 *2 *3 *2)
- (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3))
- (-4 *3 (-1240 (-169 *2)))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3))
- (-4 *3 (-1240 (-169 *2))))))
+ (-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264))))
+ ((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
+ (-5 *1 (-988 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
+ (-5 *1 (-1106 *3 *4 *5 *6 *7)))))
+(((*1 *1 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-926))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-926))))
+ ((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-927))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-927)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-541 *4 *2 *5 *6))
- (-4 *4 (-308)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-771))))))
+ (-12 (-5 *3 (-1157)) (-5 *2 (-214 (-504))) (-5 *1 (-837)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-821)) (-5 *4 (-52)) (-5 *2 (-1269)) (-5 *1 (-831)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1049))
- (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285)))
- (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *3 (-1 *2 (-771) *2)) (-5 *4 (-771)) (-4 *2 (-1099))
- (-5 *1 (-678 *2))))
+ (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-409 (-566)))
+ (-5 *1 (-435 *4 *3)) (-4 *3 (-432 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-612 *3)) (-4 *3 (-432 *5))
+ (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-1171 (-409 (-566))))
+ (-5 *1 (-435 *5 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-949 *4 *6 *5)) (-4 *4 (-454))
+ (-4 *5 (-850)) (-4 *6 (-793)) (-5 *1 (-987 *4 *5 *6 *3)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-821)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-13 (-308) (-147)))
+ (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793))
+ (-5 *2 (-644 (-409 (-952 *4)))) (-5 *1 (-924 *4 *5 *6 *7))
+ (-4 *7 (-949 *4 *6 *5)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7))))
+ (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-331)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-1099))
+ (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4))))
+ (-5 *1 (-54 *4 *5 *2))
+ (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))))))
+(((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-192))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-301))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-306)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-420 (-1171 (-566)))) (-5 *1 (-191)) (-5 *3 (-566)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2))
+ (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3))))))
((*1 *2 *2)
- (-12 (-5 *2 (-1 *3 (-771) *3)) (-4 *3 (-1099)) (-5 *1 (-682 *3)))))
-(((*1 *2 *3 *2 *3)
- (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178))))
- ((*1 *2 *3 *2 *4 *1)
- (-12 (-5 *2 (-439)) (-5 *3 (-644 (-1175))) (-5 *4 (-1175))
- (-5 *1 (-1178))))
- ((*1 *2 *3 *2 *3 *1)
- (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1178))))
- ((*1 *2 *3 *2 *1)
- (-12 (-5 *2 (-439)) (-5 *3 (-1175)) (-5 *1 (-1179))))
- ((*1 *2 *3 *2 *1)
- (-12 (-5 *2 (-439)) (-5 *3 (-644 (-1175))) (-5 *1 (-1179)))))
-(((*1 *1 *1) (-4 *1 (-1143))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-971)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-771)) (-5 *4 (-566)) (-5 *1 (-447 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *2)) (-4 *2 (-172))))
- ((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-418 *3 *2)) (-4 *3 (-419 *2))))
- ((*1 *2) (-12 (-4 *1 (-419 *2)) (-4 *2 (-172)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-1209 *3))
- (-4 *3 (-974)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+ (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-921)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-792))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-409 (-566))) (-4 *1 (-1245 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883))
- (-5 *3 (-644 (-566)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883))
- (-5 *3 (-644 (-566))))))
+ (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-558) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-278 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4)))))
+ ((*1 *1 *1) (-5 *1 (-381)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4))))
+ (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1099)) (-4 *6 (-1099))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-684 *4 *5 *6)) (-4 *5 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-308)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
+ (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
+ (-5 *1 (-1123 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-771)) (-4 *5 (-558))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 *5)) (-4 *5 (-1240 *3)) (-4 *3 (-308))
- (-5 *2 (-112)) (-5 *1 (-457 *3 *5)))))
-(((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-112)) (-5 *1 (-892 *4))
- (-4 *4 (-1099)))))
-(((*1 *1)
+ (-12 (-5 *3 (-1171 *1)) (-5 *4 (-1175)) (-4 *1 (-27))
+ (-5 *2 (-644 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *2 (-644 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-317 (-225))) (-5 *4 (-644 (-1175)))
+ (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301)))))
+(((*1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3))))
+ ((*1 *1 *1)
(-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
(-14 *4 *3))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4417)) (-4 *1 (-491 *4))
- (-4 *4 (-1214)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-375 *2)) (-4 *2 (-1214))
- (-4 *2 (-850))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4418))
- (-4 *1 (-375 *3)) (-4 *3 (-1214)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-409 (-952 *4))) (-5 *3 (-1175))
- (-4 *4 (-13 (-558) (-1038 (-566)) (-147))) (-5 *1 (-572 *4)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-771))
- (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))))
- (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))))
-(((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *1) (-12 (-5 *2 (-971)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-644
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *3)
+ (|:| |xpnt| (-566)))))
+ (-5 *1 (-420 *3)) (-4 *3 (-558))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-771)) (-4 *3 (-351)) (-4 *5 (-1240 *3))
+ (-5 *2 (-644 (-1171 *3))) (-5 *1 (-500 *3 *5 *6))
+ (-4 *6 (-1240 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-644 (-771)))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-644 (-225))) (-5 *1 (-204)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-850))
+ (-4 *3 (-1099)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
+ (-12 (-5 *3 (-566)) (-5 *5 (-112)) (-5 *6 (-689 (-225)))
+ (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-612 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4)))
- (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-278 *4 *2)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1103)) (-5 *1 (-281)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-1157)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-4 *4 (-1064 *6 *7 *8)) (-5 *2 (-1269))
- (-5 *1 (-776 *6 *7 *8 *4 *5)) (-4 *5 (-1070 *6 *7 *8 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1157)) (-4 *1 (-366 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1099)))))
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199)))))
+ ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862))))
+ ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-2 (|:| -2391 *4) (|:| -3992 (-566)))))
- (-4 *4 (-1240 (-566))) (-5 *2 (-737 (-771))) (-5 *1 (-444 *4))))
+ (-12 (-5 *3 (-1101 *4)) (-4 *4 (-1099)) (-5 *2 (-1 *4))
+ (-5 *1 (-1017 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381))))
((*1 *2 *3)
- (-12 (-5 *3 (-420 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-1049))
- (-5 *2 (-737 (-771))) (-5 *1 (-446 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *1 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)) (-4 *2 (-558))))
- ((*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-38 (-409 (-566))))
- (-4 *2 (-172)))))
-(((*1 *1) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1157)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-264)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+ (-12 (-5 *3 (-1093 (-566))) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 *4)) (-4 *4 (-848)) (-4 *4 (-365)) (-5 *2 (-771))
- (-5 *1 (-945 *4 *5)) (-4 *5 (-1240 *4)))))
+ (-12 (-4 *4 (-351)) (-5 *2 (-420 (-1171 (-1171 *4))))
+ (-5 *1 (-1212 *4)) (-5 *3 (-1171 (-1171 *4))))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1264 (-644 *3))) (-4 *4 (-308))
+ (-5 *2 (-644 *3)) (-5 *1 (-457 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-365)) (-4 *3 (-1049))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4152 *1)))
+ (-4 *1 (-852 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-308)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
- (-5 *2
- (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
- (-5 *1 (-1123 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))
+ (-5 *2 (-381)) (-5 *1 (-268))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *2 (-381)) (-5 *1 (-306)))))
+(((*1 *1) (-5 *1 (-292))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-351))
- (-5 *2
- (-2 (|:| |cont| *5)
- (|:| -4236 (-644 (-2 (|:| |irr| *3) (|:| -2175 (-566)))))))
- (-5 *1 (-216 *5 *3)) (-4 *3 (-1240 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1157)) (-5 *1 (-306)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
- (-4 *4 (-351)))))
-(((*1 *2 *3) (-12 (-5 *3 (-821)) (-5 *2 (-52)) (-5 *1 (-831)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225)))
- (-5 *2 (-1035)) (-5 *1 (-747)))))
+ (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2327 *9))))
+ (-5 *4 (-771)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8))
+ (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-1269))
+ (-5 *1 (-1068 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2327 *9))))
+ (-5 *4 (-771)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8))
+ (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-1269))
+ (-5 *1 (-1144 *5 *6 *7 *8 *9)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175))
+ (-5 *2 (-644 *4)) (-5 *1 (-1113 *4 *5)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566)))
- (-5 *2 (-1264 (-409 (-566)))) (-5 *1 (-1291 *4)))))
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
+ (-5 *1 (-576 *5 *3)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793))
+ (-5 *1 (-506 *4 *5 *6 *2)) (-4 *2 (-949 *4 *5 *6))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-850)) (-5 *1 (-1185 *3)))))
-(((*1 *1) (-4 *1 (-967))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1552 *3) (|:| |coef1| (-782 *3))))
- (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))))
-(((*1 *1 *1) (-4 *1 (-629)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
-(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1222))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-482)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2 *2)
- (-12 (-5 *2 (-566))
+ (-12 (-4 *3 (-1049)) (-4 *4 (-1240 *3)) (-5 *1 (-164 *3 *4 *2))
+ (-4 *2 (-1240 *4))))
+ ((*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4 *5 *5 *5 *5 *4 *6)
+ (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
+ (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
+ (-5 *1 (-788)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-689 (-409 (-952 (-566)))))
+ (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031))
+ (-5 *3 (-317 (-566))))))
+(((*1 *2 *3 *3)
+ (-12
(-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-771)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-793)) (-4 *4 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *7 (-850))
- (-5 *1 (-451 *5 *6 *7 *4)))))
-(((*1 *1 *1) (-5 *1 (-225))) ((*1 *1 *1) (-5 *1 (-381)))
- ((*1 *1) (-5 *1 (-381))))
-(((*1 *1 *1) (-5 *1 (-1062))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157))
- (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-331)))))
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-793)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850))
+ (-5 *2 (-112)) (-5 *1 (-451 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-822)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-13 (-365) (-147)))
- (-5 *2 (-644 (-2 (|:| -3250 (-771)) (|:| -2420 *4) (|:| |num| *4))))
- (-5 *1 (-401 *3 *4)) (-4 *4 (-1240 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883))
- (-5 *3 (-644 (-566))))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-328 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-518 *3 *4))
- (-14 *4 (-566)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
-(((*1 *1 *1) (-4 *1 (-869 *2))))
-(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))))
-(((*1 *1) (-5 *1 (-439))))
+ (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-4 *1 (-143)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-689 (-409 (-952 (-566)))))
+ (-5 *2
+ (-644
+ (-2 (|:| |radval| (-317 (-566))) (|:| |radmult| (-566))
+ (|:| |radvect| (-644 (-689 (-317 (-566))))))))
+ (-5 *1 (-1031)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-1155 *3))) (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3))
- (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-771))))
- ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-404)) (-5 *2 (-771)))))
+ (-12 (-5 *3 (-409 *6)) (-4 *5 (-1218)) (-4 *6 (-1240 *5))
+ (-5 *2 (-2 (|:| -2456 (-771)) (|:| -3223 *3) (|:| |radicand| *6)))
+ (-5 *1 (-148 *5 *6 *7)) (-5 *4 (-771)) (-4 *7 (-1240 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-793))
+ (-4 *3 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))) (-4 *5 (-558))
+ (-5 *1 (-732 *4 *3 *5 *2)) (-4 *2 (-949 (-409 (-952 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1049)) (-4 *5 (-793))
+ (-4 *3
+ (-13 (-850)
+ (-10 -8 (-15 -3204 ((-1175) $))
+ (-15 -1401 ((-3 $ "failed") (-1175))))))
+ (-5 *1 (-984 *4 *5 *3 *2)) (-4 *2 (-949 (-952 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 *6))
+ (-4 *6
+ (-13 (-850)
+ (-10 -8 (-15 -3204 ((-1175) $))
+ (-15 -1401 ((-3 $ "failed") (-1175))))))
+ (-4 *4 (-1049)) (-4 *5 (-793)) (-5 *1 (-984 *4 *5 *6 *2))
+ (-4 *2 (-949 (-952 *4) *5 *6)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-644 (-644 (-644 *5)))) (-5 *3 (-1 (-112) *5 *5))
+ (-5 *4 (-644 *5)) (-4 *5 (-850)) (-5 *1 (-1185 *5)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-921)) (-5 *1 (-152 *3 *4 *5)) (-14 *3 *2)
- (-4 *4 (-365)) (-14 *5 (-993 *3 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-112))))
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-1000 *3)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *6 *4 *7 *8 *9)
+ (-12 (-5 *4 (-566)) (-5 *5 (-1157)) (-5 *6 (-689 (-225)))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))))
+ (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))))
+(((*1 *2 *1) (-12 (-4 *1 (-308)) (-5 *2 (-771)))))
+(((*1 *2 *3) (-12 (-5 *3 (-644 (-52))) (-5 *2 (-1269)) (-5 *1 (-863)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112))
+ (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454)))
+ (-5 *2 (-843 *4)) (-5 *1 (-314 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175))
+ (-14 *6 *4)))
((*1 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-225)))) (-5 *1 (-926)))))
-(((*1 *1 *1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-558)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
+ (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454)))
+ (-5 *2 (-843 *4)) (-5 *1 (-1250 *3 *4 *5 *6))
+ (-4 *4 (-13 (-27) (-1199) (-432 *3))) (-14 *5 (-1175))
+ (-14 *6 *4))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
+ (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-722)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-726)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-4 *2 (-365)) (-4 *2 (-848)) (-5 *1 (-945 *2 *3))
- (-4 *3 (-1240 *2)))))
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))
+ (-5 *2 (-1035)) (-5 *1 (-748)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-644 *3))))
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1099))
+ (-5 *2 (-2 (|:| -3223 (-566)) (|:| |var| (-612 *1))))
+ (-4 *1 (-432 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (|has| *1 (-6 -4417)) (-4 *1 (-491 *3)) (-4 *3 (-1214))
- (-5 *2 (-644 *3)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+ (-12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *2 (-112))
+ (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
+ (-4 *4 (-13 (-1099) (-34))))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2))
+ (-4 *2 (-687 *3 *4 *5)))))
+(((*1 *2)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-365)) (-4 *3 (-1049))
+ (-5 *1 (-1159 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547))
- (-5 *2 (-409 (-566)))))
+ (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1))
+ (-4 *1 (-1064 *3 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
+ (-5 *2 (-644 *3))))
((*1 *2 *1)
- (-12 (-5 *2 (-409 (-566))) (-5 *1 (-420 *3)) (-4 *3 (-547))
- (-4 *3 (-558))))
- ((*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-409 (-566)))))
+ (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099))
+ (-5 *2 (-644 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547))
- (-5 *2 (-409 (-566)))))
+ (-12 (-5 *2 (-1155 *3)) (-5 *1 (-597 *3)) (-4 *3 (-1049))))
((*1 *2 *1)
- (-12 (-5 *2 (-409 (-566))) (-5 *1 (-833 *3)) (-4 *3 (-547))
- (-4 *3 (-1099))))
+ (-12 (-5 *2 (-644 *3)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-726))))
+ ((*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-644 *3))))
((*1 *2 *1)
- (-12 (-5 *2 (-409 (-566))) (-5 *1 (-843 *3)) (-4 *3 (-547))
- (-4 *3 (-1099))))
+ (-12 (-4 *1 (-1255 *3)) (-4 *3 (-1049)) (-5 *2 (-1155 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
+ (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1) (-12 (-4 *1 (-767 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
+(((*1 *2 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-689 *4)) (-5 *3 (-771)) (-4 *4 (-1049))
+ (-5 *1 (-690 *4)))))
+(((*1 *1 *1 *2 *2)
+ (|partial| -12 (-5 *2 (-921)) (-5 *1 (-1100 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-381)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))))
+(((*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-248)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308))
+ (-5 *1 (-916 *3 *4 *5 *2)) (-4 *2 (-949 *5 *3 *4))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *6 *4 *5))
+ (-5 *1 (-916 *4 *5 *6 *2)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-4 *6 (-308)))))
+(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-548))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1209 *3)) (-4 *3 (-974)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-409 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1240 *5))
+ (-5 *1 (-727 *5 *2)) (-4 *5 (-365)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-244 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *6)) (-5 *4 (-1175)) (-4 *6 (-432 *5))
+ (-4 *5 (-1099)) (-5 *2 (-644 (-612 *6))) (-5 *1 (-575 *5 *6)))))
+(((*1 *1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-596 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-644 (-1237 *5 *4)))
+ (-5 *1 (-1113 *4 *5)) (-5 *3 (-1237 *5 *4)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-921)) (-4 *5 (-558)) (-5 *2 (-689 *5))
+ (-5 *1 (-956 *5 *3)) (-4 *3 (-656 *5)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1240 *5))
+ (-4 *5 (-13 (-27) (-432 *4))) (-4 *4 (-13 (-558) (-1038 (-566))))
+ (-4 *7 (-1240 (-409 *6))) (-5 *1 (-554 *4 *5 *6 *7 *2))
+ (-4 *2 (-344 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
+(((*1 *1) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-691 (-966 *3))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370))
+ (-5 *2 (-1171 *3))))
((*1 *2 *1)
- (-12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547))
- (-5 *2 (-409 (-566)))))
+ (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370))
+ (-5 *2 (-1171 *3)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1117)) (-5 *1 (-1114)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-566)) (-5 *1 (-241))))
((*1 *2 *3)
- (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1008 *3)) (-4 *3 (-1038 *2)))))
-(((*1 *2 *3 *3 *3 *4 *5 *6)
- (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225)))
- (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225)))
- (-5 *1 (-697)))))
-(((*1 *1 *2 *2)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-921)) (-5 *1 (-1030 *2))
- (-4 *2 (-13 (-1099) (-10 -8 (-15 -3034 ($ $ $))))))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-409 *6)) (|:| |h| *6)
- (|:| |c1| (-409 *6)) (|:| |c2| (-409 *6)) (|:| -1454 *6)))
- (-5 *1 (-1016 *5 *6)) (-5 *3 (-409 *6)))))
-(((*1 *1) (-5 *1 (-439))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |pde| (-644 (-317 (-225))))
- (|:| |constraints|
- (-644
- (-2 (|:| |start| (-225)) (|:| |finish| (-225))
- (|:| |grid| (-771)) (|:| |boundaryType| (-566))
- (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225))))))
- (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157))
- (|:| |tol| (-225))))
- (-5 *2 (-112)) (-5 *1 (-210)))))
+ (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-566)) (-5 *1 (-241)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-531)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-761))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-560 *2)) (-4 *2 (-547)))))
+(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-409 (-566))) (-5 *1 (-306)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 (-943 *4))) (-4 *1 (-1133 *4)) (-4 *4 (-1049))
+ (-5 *2 (-771)))))
+(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-695 *3)) (-4 *3 (-1099))
+ (-5 *2 (-644 (-2 (|:| -2849 *3) (|:| -4067 (-771))))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-5 *2 (-112)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1049)) (-5 *1 (-1236 *3 *2)) (-4 *2 (-1240 *3)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-439)) (-5 *1 (-1179)))))
+(((*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267))))
+ ((*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-308)) (-5 *1 (-457 *3 *2)) (-4 *2 (-1240 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-308)) (-5 *1 (-462 *3 *2)) (-4 *2 (-1240 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-308)) (-14 *4 *3) (-14 *5 (-1 *3 *3 (-771)))
+ (-5 *1 (-541 *3 *2 *4 *5)) (-4 *2 (-1240 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
+ (-5 *1 (-176 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-375 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
+ (-14 *4 *3))))
(((*1 *2 *3)
(-12
(-5 *3
- (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
- (-247 *4 (-409 (-566)))))
- (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112))
- (-5 *1 (-507 *4 *5)))))
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-381)) (-5 *1 (-205)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-747)))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-308))
+ (-5 *2 (-771)) (-5 *1 (-457 *5 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-454)))))
+(((*1 *1) (-5 *1 (-617))))
(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-644 *1)) (-4 *1 (-432 *4))
- (-4 *4 (-1099))))
- ((*1 *1 *2 *1 *1 *1 *1)
- (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099))))
- ((*1 *1 *2 *1 *1 *1)
- (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1279 (-1175) *3)) (-4 *3 (-1049)) (-5 *1 (-1286 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1279 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
- (-5 *1 (-1288 *3 *4)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-566)) (-4 *3 (-172)) (-4 *5 (-375 *3))
- (-4 *6 (-375 *3)) (-5 *1 (-688 *3 *5 *6 *2))
- (-4 *2 (-687 *3 *5 *6)))))
+ (-12 (-5 *3 (-1155 *2)) (-4 *2 (-308)) (-5 *1 (-174 *2)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1240 *6))
- (-4 *6 (-13 (-27) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566))))
- (-4 *8 (-1240 (-409 *7))) (-5 *2 (-587 *3))
- (-5 *1 (-554 *5 *6 *7 *8 *3)) (-4 *3 (-344 *6 *7 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-295 (-952 (-566))))
+ (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558))
+ (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8))))
+ (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))))
+(((*1 *1 *2 *3 *4)
+ (-12
+ (-5 *3
+ (-644
+ (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 *2))
+ (|:| |logand| (-1171 *2)))))
+ (-5 *4 (-644 (-2 (|:| |integrand| *2) (|:| |intvar| *2))))
+ (-4 *2 (-365)) (-5 *1 (-587 *2)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
+ (-5 *1 (-176 *3)))))
+(((*1 *1 *1 *2)
+ (-12
(-5 *2
- (-2 (|:| |varOrder| (-644 (-1175)))
- (|:| |inhom| (-3 (-644 (-1264 (-771))) "failed"))
- (|:| |hom| (-644 (-1264 (-771))))))
- (-5 *1 (-236)))))
+ (-2 (|:| -2671 (-644 (-862))) (|:| -4385 (-644 (-862)))
+ (|:| |presup| (-644 (-862))) (|:| -3770 (-644 (-862)))
+ (|:| |args| (-644 (-862)))))
+ (-5 *1 (-1175))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-644 (-862)))) (-5 *1 (-1175)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-921)) (-5 *1 (-152 *3 *4 *5)) (-14 *3 *2)
+ (-4 *4 (-365)) (-14 *5 (-993 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1178))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1269))
+ (-5 *1 (-1178))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *4 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1269))
+ (-5 *1 (-1178)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)))))
+(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
+ ((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *1) (-4 *1 (-967))))
(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
- (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-624 *3 *4 *5 *6 *7 *2))
- (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *2 (-1108 *3 *4 *5 *6)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-332 *3)) (-4 *3 (-850)))))
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049))
+ (-5 *1 (-1159 *4))))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049))
+ (-14 *4 (-1175)) (-14 *5 *3))))
+(((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-747)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -2092 (-381)) (|:| -2628 (-1157))
- (|:| |explanations| (-644 (-1157)))))
- (-5 *2 (-1035)) (-5 *1 (-306))))
+ (-12 (-5 *2 (-566)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-612 *5)) (-4 *5 (-432 *4)) (-4 *4 (-1038 (-566)))
+ (-4 *4 (-558)) (-5 *2 (-1171 *5)) (-5 *1 (-32 *4 *5))))
((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -2092 (-381)) (|:| -2628 (-1157))
- (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))))
- (-5 *2 (-1035)) (-5 *1 (-306)))))
+ (-12 (-5 *3 (-612 *1)) (-4 *1 (-1049)) (-4 *1 (-303))
+ (-5 *2 (-1171 *1)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1049)) (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-531))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-579))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-861)))))
+(((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-225)) (-5 *1 (-1267))))
+ ((*1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-1267)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-644 (-782 *3))) (-5 *1 (-782 *3)) (-4 *3 (-558))
+ (-4 *3 (-1049)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-751)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-771)) (-4 *4 (-558)) (-5 *1 (-969 *4 *2))
+ (-4 *2 (-1240 *4)))))
+(((*1 *1 *1) (-12 (-5 *1 (-608 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1) (-5 *1 (-632))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-4 *1 (-376 *3 *4))
+ (-4 *4 (-172)))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1175)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-558)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-4 *3 (-1099))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *2 *4)
+ (-12 (-5 *3 (-689 *2)) (-5 *4 (-566))
+ (-4 *2 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))))
+ (-4 *5 (-1240 *2)) (-5 *1 (-501 *2 *5 *6)) (-4 *6 (-411 *2 *5)))))
+(((*1 *2)
+ (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -1575 (-644 *1))))
+ (-4 *1 (-369 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-455 *3 *4 *5 *6))
+ (|:| -1575 (-644 (-455 *3 *4 *5 *6)))))
+ (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-1028 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-644 (-689 *3))) (-4 *3 (-1049)) (-5 *1 (-1028 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-1028 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-644 (-689 *3))) (-4 *3 (-1049)) (-5 *1 (-1028 *3)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-644 *4)) (-4 *4 (-365)) (-5 *2 (-1264 *4))
+ (-5 *1 (-814 *4 *3)) (-4 *3 (-656 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *2 (-112)) (-5 *1 (-268)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-558)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1049)) (-5 *1 (-894 *2 *3)) (-4 *2 (-1240 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
(((*1 *2 *3 *2)
(-12 (-5 *2 (-1157)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-264))))
((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265))))
((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-52)) (-5 *1 (-892 *4))
- (-4 *4 (-1099)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-192))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *4 (-558))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| -2828 *4))) (-5 *1 (-969 *4 *3))
+ (-4 *3 (-1240 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))))
+(((*1 *1 *1 *1) (-5 *1 (-162)))
+ ((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-162)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
+ (-5 *2 (-112)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-420 *3)) (-4 *3 (-558)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-1290 *5 *6 *7))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-1290 *5 *6 *7))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
((*1 *2 *3)
- (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850))
- (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-949 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1049)) (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1)))
- (-4 *1 (-1240 *3)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4))))
- (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-862)))))
-(((*1 *1) (-5 *1 (-617))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *4 (-1 (-3 (-566) "failed") *5)) (-4 *5 (-1049))
- (-5 *2 (-566)) (-5 *1 (-545 *5 *3)) (-4 *3 (-1240 *5))))
- ((*1 *2 *3 *4 *2 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-566) "failed") *4)) (-4 *4 (-1049))
- (-5 *2 (-566)) (-5 *1 (-545 *4 *3)) (-4 *3 (-1240 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1 (-3 (-566) "failed") *4)) (-4 *4 (-1049))
- (-5 *2 (-566)) (-5 *1 (-545 *4 *3)) (-4 *3 (-1240 *4)))))
+ (-12 (-5 *3 (-644 (-952 *4)))
+ (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2 (-644 (-1046 *4 *5))) (-5 *1 (-1290 *4 *5 *6))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))))
(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-793)) (-4 *5 (-1049)) (-4 *6 (-949 *5 *4 *2))
- (-4 *2 (-850)) (-5 *1 (-950 *4 *2 *5 *6 *3))
- (-4 *3
- (-13 (-365)
- (-10 -8 (-15 -2512 ($ *6)) (-15 -3001 (*6 $))
- (-15 -3013 (*6 $)))))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558))
- (-5 *2 (-1175)) (-5 *1 (-1043 *4)))))
-(((*1 *1) (-5 *1 (-157))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-317 (-381))) (-5 *2 (-317 (-225))) (-5 *1 (-306)))))
+ (-12 (-4 *1 (-800))
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-1035)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381)))))
(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-137))))
((*1 *2 *1) (-12 (-5 *2 (-1213)) (-5 *1 (-156))))
((*1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214))))
@@ -5327,54 +5848,52 @@
(-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3))))))
((*1 *2 *1)
(-12 (-4 *2 (-1099)) (-5 *1 (-1164 *3 *2)) (-4 *3 (-1099)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
- (-4 *4 (-351))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
- (-4 *4 (-351))))
- ((*1 *1) (-4 *1 (-370)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4))
- (-4 *4 (-351))))
- ((*1 *1 *1) (-4 *1 (-547))) ((*1 *1) (-4 *1 (-547)))
- ((*1 *1 *1) (-5 *1 (-566))) ((*1 *1 *1) (-5 *1 (-771)))
- ((*1 *2 *1) (-12 (-5 *2 (-905 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-5 *2 (-905 *4)) (-5 *1 (-904 *4))
- (-4 *4 (-1099))))
- ((*1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-547)) (-4 *2 (-558)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *1 *3 *3 *3 *2)
- (-12 (-5 *3 (-771)) (-5 *1 (-675 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *2 (-644 *1)) (-4 *1 (-1064 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-439)))))
-(((*1 *2 *3 *3 *4 *5 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-4 *3 (-1064 *6 *7 *8))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4))))
- (-5 *1 (-1107 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2248 *9))))
- (-5 *5 (-112)) (-4 *8 (-1064 *6 *7 *4)) (-4 *9 (-1070 *6 *7 *4 *8))
- (-4 *6 (-454)) (-4 *7 (-793)) (-4 *4 (-850))
- (-5 *2 (-644 (-2 (|:| |val| *8) (|:| -2248 *9))))
- (-5 *1 (-1107 *6 *7 *4 *8 *9)))))
+(((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3))))
- (-5 *2 (-644 (-1075 *3 *4 *5))) (-5 *1 (-1076 *3 *4 *5))
- (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-1264 *5)) (-5 *3 (-771)) (-5 *4 (-1119)) (-4 *5 (-351))
- (-5 *1 (-530 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))))
+ (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *2 (-13 (-432 (-169 *4)) (-1002) (-1199)))
- (-5 *1 (-600 *4 *3 *2)) (-4 *3 (-13 (-432 *4) (-1002) (-1199))))))
+ (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7)))
+ (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793))
+ (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8)))
+ (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8)))))
+(((*1 *2)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-644 (-1171 *5))) (-5 *3 (-1171 *5))
+ (-4 *5 (-166 *4)) (-4 *4 (-547)) (-5 *1 (-149 *4 *5))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-644 *3)) (-4 *3 (-1240 *5))
+ (-4 *5 (-1240 *4)) (-4 *4 (-351)) (-5 *1 (-360 *4 *5 *3))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-644 (-1171 (-566)))) (-5 *3 (-1171 (-566)))
+ (-5 *1 (-574))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-644 (-1171 *1))) (-5 *3 (-1171 *1))
+ (-4 *1 (-909)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-644 (-264))) (-5 *1 (-1266))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-1157)) (-5 *1 (-1266))))
+ ((*1 *1 *1) (-5 *1 (-1266))))
+(((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1061))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1061)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-1177 (-409 (-566))))
+ (-5 *1 (-190)))))
(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-137))))
((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-156))))
((*1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214))))
@@ -5388,274 +5907,372 @@
(-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3))))))
((*1 *2 *1)
(-12 (-4 *2 (-1099)) (-5 *1 (-1164 *2 *3)) (-4 *3 (-1099)))))
-(((*1 *1 *1) (-4 *1 (-35)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-2 (|:| |totdeg| (-771)) (|:| -2576 *4))) (-5 *5 (-771))
+ (-4 *4 (-949 *6 *7 *8)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-5 *2
+ (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
+ (|:| |polj| *4)))
+ (-5 *1 (-451 *6 *7 *8 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-225))) (-5 *2 (-1264 (-699))) (-5 *1 (-306)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
+(((*1 *2)
+ (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-419 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-328 *3)) (-4 *3 (-1214))))
((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214))
+ (-14 *4 (-566)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-169 *4)) (-5 *1 (-181 *4 *3))
+ (-4 *4 (-13 (-365) (-848))) (-4 *3 (-1240 *2)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *5)) (-5 *4 (-921)) (-4 *5 (-850))
- (-5 *2 (-644 (-672 *5))) (-5 *1 (-672 *5)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1214)) (-5 *1 (-182 *3 *2)) (-4 *2 (-674 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-225)) (-5 *1 (-306)))))
-(((*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1155 *4)) (-5 *3 (-1 *4 (-566))) (-4 *4 (-1049))
- (-5 *1 (-1159 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+ (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-1264 *5)) (-4 *5 (-308))
+ (-4 *5 (-1049)) (-5 *2 (-689 *5)) (-5 *1 (-1029 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-217)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-1213))) (-5 *3 (-1213)) (-5 *1 (-681)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 (-644 *5))) (-4 *5 (-1255 *4))
+ (-4 *4 (-38 (-409 (-566))))
+ (-5 *2 (-1 (-1155 *4) (-644 (-1155 *4)))) (-5 *1 (-1257 *4 *5)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1062)) (-5 *3 (-1157)))))
+(((*1 *1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-943 *5)) (-5 *3 (-771)) (-4 *5 (-1049))
+ (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-904 *4))
+ (-4 *4 (-1099))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1171 *2)) (-4 *2 (-949 (-409 (-952 *6)) *5 *4))
- (-5 *1 (-732 *5 *4 *6 *2)) (-4 *5 (-793))
- (-4 *4 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $)))))
- (-4 *6 (-558)))))
-(((*1 *1 *1) (-4 *1 (-35)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
+ (-12 (-5 *3 (-689 *8)) (-4 *8 (-949 *5 *7 *6))
+ (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
+ (-4 *7 (-793))
+ (-5 *2
+ (-644
+ (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8))
+ (|:| |wcond| (-644 (-952 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *5))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *5))))))))))
+ (-5 *1 (-924 *5 *6 *7 *8)) (-5 *4 (-644 *8))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 *8)) (-5 *4 (-644 (-1175))) (-4 *8 (-949 *5 *7 *6))
+ (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
+ (-4 *7 (-793))
+ (-5 *2
+ (-644
+ (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8))
+ (|:| |wcond| (-644 (-952 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *5))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *5))))))))))
+ (-5 *1 (-924 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-689 *7)) (-4 *7 (-949 *4 *6 *5))
+ (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793))
+ (-5 *2
+ (-644
+ (-2 (|:| |eqzro| (-644 *7)) (|:| |neqzro| (-644 *7))
+ (|:| |wcond| (-644 (-952 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *4))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *4))))))))))
+ (-5 *1 (-924 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-689 *9)) (-5 *5 (-921)) (-4 *9 (-949 *6 *8 *7))
+ (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175))))
+ (-4 *8 (-793))
+ (-5 *2
+ (-644
+ (-2 (|:| |eqzro| (-644 *9)) (|:| |neqzro| (-644 *9))
+ (|:| |wcond| (-644 (-952 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *6))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *6))))))))))
+ (-5 *1 (-924 *6 *7 *8 *9)) (-5 *4 (-644 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 (-1175))) (-5 *5 (-921))
+ (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147)))
+ (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793))
+ (-5 *2
+ (-644
+ (-2 (|:| |eqzro| (-644 *9)) (|:| |neqzro| (-644 *9))
+ (|:| |wcond| (-644 (-952 *6)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *6))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *6))))))))))
+ (-5 *1 (-924 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 *8)) (-5 *4 (-921)) (-4 *8 (-949 *5 *7 *6))
+ (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
+ (-4 *7 (-793))
+ (-5 *2
+ (-644
+ (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8))
+ (|:| |wcond| (-644 (-952 *5)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *5))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *5))))))))))
+ (-5 *1 (-924 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 *9)) (-5 *5 (-1157))
+ (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147)))
+ (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566))
+ (-5 *1 (-924 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 (-1175))) (-5 *5 (-1157))
+ (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147)))
+ (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566))
+ (-5 *1 (-924 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 *8)) (-5 *4 (-1157)) (-4 *8 (-949 *5 *7 *6))
+ (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
+ (-4 *7 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-689 *10)) (-5 *4 (-644 *10)) (-5 *5 (-921))
+ (-5 *6 (-1157)) (-4 *10 (-949 *7 *9 *8)) (-4 *7 (-13 (-308) (-147)))
+ (-4 *8 (-13 (-850) (-614 (-1175)))) (-4 *9 (-793)) (-5 *2 (-566))
+ (-5 *1 (-924 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-689 *10)) (-5 *4 (-644 (-1175))) (-5 *5 (-921))
+ (-5 *6 (-1157)) (-4 *10 (-949 *7 *9 *8)) (-4 *7 (-13 (-308) (-147)))
+ (-4 *8 (-13 (-850) (-614 (-1175)))) (-4 *9 (-793)) (-5 *2 (-566))
+ (-5 *1 (-924 *7 *8 *9 *10))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-689 *9)) (-5 *4 (-921)) (-5 *5 (-1157))
+ (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147)))
+ (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566))
+ (-5 *1 (-924 *6 *7 *8 *9)))))
+(((*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1059))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)) (-4 *2 (-1059))))
+ ((*1 *1 *1) (-4 *1 (-848)))
+ ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)) (-4 *2 (-1059))))
+ ((*1 *1 *1) (-4 *1 (-1059))) ((*1 *1 *1) (-4 *1 (-1138))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-365) (-1199) (-1002))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-976 *4 *5 *6 *3)) (-4 *4 (-1049)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4))))
- (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-107 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-755)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-31))))
- ((*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))) ((*1 *1) (-4 *1 (-547)))
- ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-381)) (-5 *1 (-1062)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-381)) (-5 *1 (-1062)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-538)))))
-(((*1 *1 *1) (-4 *1 (-35)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850))))
- ((*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049))))
- ((*1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))))
-(((*1 *2 *3 *3 *1)
- (-12 (-5 *3 (-508)) (-5 *2 (-691 (-1103))) (-5 *1 (-292)))))
-(((*1 *1) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))))
-(((*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-822)))))
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049))
- (-5 *2
- (-2 (|:| -1917 (-771)) (|:| |curves| (-771))
- (|:| |polygons| (-771)) (|:| |constructs| (-771)))))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1157)) (-5 *4 (-169 (-225))) (-5 *5 (-566))
- (-5 *2 (-1035)) (-5 *1 (-758)))))
+ (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *6)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-771)) (-5 *2 (-112)) (-5 *1 (-588 *3)) (-4 *3 (-547)))))
+ (-12 (-5 *3 (-409 (-566))) (-5 *4 (-566)) (-5 *2 (-52))
+ (-5 *1 (-1005)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 *4))))
+ (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-649 *3 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-952 (-566))) (-5 *2 (-644 *1)) (-4 *1 (-1012))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *2 (-644 *1)) (-4 *1 (-1012))))
- ((*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-1012)) (-5 *2 (-644 *1))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1171 (-566))) (-5 *2 (-644 *1)) (-4 *1 (-1012))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1171 (-409 (-566)))) (-5 *2 (-644 *1)) (-4 *1 (-1012))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1171 *1)) (-4 *1 (-1012)) (-5 *2 (-644 *1))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-644 *1))
- (-4 *1 (-1067 *4 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-52)))))
-(((*1 *1 *1) (-4 *1 (-35)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214)) (-4 *2 (-850))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-375 *3)) (-4 *3 (-1214))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-905 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1 *3)
- (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850))
- (-4 *6 (-1064 *4 *5 *3))
- (-5 *2 (-2 (|:| |under| *1) (|:| -4317 *1) (|:| |upper| *1)))
- (-4 *1 (-976 *4 *5 *3 *6)))))
+ (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1099)) (-4 *5 (-1099))
+ (-5 *2 (-1 *5 *4)) (-5 *1 (-683 *4 *5)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 (-409 (-566))))
- (-5 *2
- (-644
- (-2 (|:| |outval| *4) (|:| |outmult| (-566))
- (|:| |outvect| (-644 (-689 *4))))))
- (-5 *1 (-779 *4)) (-4 *4 (-13 (-365) (-848))))))
-(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-241)))))
+ (-12 (-5 *4 (-566)) (-4 *2 (-432 *3)) (-5 *1 (-32 *3 *2))
+ (-4 *3 (-1038 *4)) (-4 *3 (-558)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-244 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *1 *2)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3))))
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793))
+ (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-644 *3))
+ (-5 *1 (-592 *5 *6 *7 *8 *3)) (-4 *3 (-1108 *5 *6 *7 *8))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *4))))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147)))
+ (-5 *2
+ (-644 (-2 (|:| -4126 (-1171 *5)) (|:| -2543 (-644 (-952 *5))))))
+ (-5 *1 (-1077 *5 *6)) (-5 *3 (-644 (-952 *5)))
+ (-14 *6 (-644 (-1175)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-308) (-147)))
+ (-5 *2
+ (-644 (-2 (|:| -4126 (-1171 *4)) (|:| -2543 (-644 (-952 *4))))))
+ (-5 *1 (-1077 *4 *5)) (-5 *3 (-644 (-952 *4)))
+ (-14 *5 (-644 (-1175)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147)))
+ (-5 *2
+ (-644 (-2 (|:| -4126 (-1171 *5)) (|:| -2543 (-644 (-952 *5))))))
+ (-5 *1 (-1077 *5 *6)) (-5 *3 (-644 (-952 *5)))
+ (-14 *6 (-644 (-1175))))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-579))))
+ ((*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-579)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-958 (-1119)))
+ (-5 *1 (-348 *4)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
+ (-4 *4 (-375 *2)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1155 (-409 *3))) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
-(((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1175)) (-4 *4 (-1049)) (-4 *4 (-1099))
- (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -3250 (-566))))
- (-4 *1 (-432 *4))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1049)) (-4 *4 (-1099))
- (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -3250 (-566))))
- (-4 *1 (-432 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1111)) (-4 *3 (-1099))
- (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -3250 (-566))))
- (-4 *1 (-432 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |val| (-892 *3)) (|:| -3250 (-771))))
- (-5 *1 (-892 *3)) (-4 *3 (-1099))))
+ (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-644 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-52)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1274)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
+ (-5 *1 (-176 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-671))))
((*1 *2 *1)
- (|partial| -12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-2 (|:| |var| *5) (|:| -3250 (-771))))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049))
- (-4 *7 (-949 *6 *4 *5))
- (-5 *2 (-2 (|:| |var| *5) (|:| -3250 (-566))))
- (-5 *1 (-950 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-365)
- (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $))
- (-15 -3013 (*7 $))))))))
+ (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1100 *3 *4)) (-14 *3 (-921))
+ (-14 *4 (-921)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-538))) (-5 *2 (-1175)) (-5 *1 (-538)))))
-(((*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-848)) (-5 *1 (-304 *3)))))
+ (-12 (-5 *3 (-1171 (-566))) (-5 *2 (-566)) (-5 *1 (-942)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-4 *4 (-1049))
+ (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-1240 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5))
- (-5 *2
- (-2 (|:| -4224 (-415 *4 (-409 *4) *5 *6)) (|:| |principalPart| *6)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365))
- (-5 *2
- (-2 (|:| |poly| *6) (|:| -3792 (-409 *6))
- (|:| |special| (-409 *6))))
- (-5 *1 (-727 *5 *6)) (-5 *3 (-409 *6))))
+ (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
+ (-5 *2 (-112)))))
+(((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-165 *3 *2)) (-4 *3 (-166 *2))))
((*1 *2 *3)
- (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-896 *3 *4))
- (-4 *3 (-1240 *4))))
- ((*1 *2 *3 *4 *4)
- (|partial| -12 (-5 *4 (-771)) (-4 *5 (-365))
- (-5 *2 (-2 (|:| -4357 *3) (|:| -4368 *3))) (-5 *1 (-896 *3 *5))
- (-4 *3 (-1240 *5))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112))
- (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454))
- (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1068 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112))
- (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454))
- (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1068 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4)
- (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112))
- (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454))
- (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1144 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
- (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112))
- (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454))
- (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-428 *4 *2)) (-4 *2 (-13 (-1199) (-29 *4)))))
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *2 *4)) (-4 *4 (-1240 *2))
+ (-4 *2 (-172))))
+ ((*1 *2)
+ (-12 (-4 *4 (-1240 *2)) (-4 *2 (-172)) (-5 *1 (-410 *3 *2 *4))
+ (-4 *3 (-411 *2 *4))))
+ ((*1 *2) (-12 (-4 *1 (-411 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1240 *2)) (-5 *2 (-566)) (-5 *1 (-768 *3 *4))
+ (-4 *4 (-411 *2 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850)) (-4 *3 (-172))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-172)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-112)) (-5 *5 (-566)) (-4 *6 (-365)) (-4 *6 (-370))
+ (-4 *6 (-1049)) (-5 *2 (-644 (-644 (-689 *6)))) (-5 *1 (-1029 *6))
+ (-5 *3 (-644 (-689 *6)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-365)) (-4 *4 (-370)) (-4 *4 (-1049))
+ (-5 *2 (-644 (-644 (-689 *4)))) (-5 *1 (-1029 *4))
+ (-5 *3 (-644 (-689 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-147))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-317 *5))
- (-5 *1 (-590 *5)))))
-(((*1 *1 *1) (-4 *1 (-143)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))))
-(((*1 *1 *1) (-4 *1 (-35)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
+ (-12 (-5 *4 (-112)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049))
+ (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5))
+ (-5 *3 (-644 (-689 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-921)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049))
+ (-5 *2 (-644 (-644 (-689 *5)))) (-5 *1 (-1029 *5))
+ (-5 *3 (-644 (-689 *5))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-829)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-612 *5))) (-4 *4 (-1099)) (-5 *2 (-612 *5))
+ (-5 *1 (-575 *4 *5)) (-4 *5 (-432 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850))
+ (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-644 *4)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-30))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-420 *4) *4)) (-4 *4 (-558)) (-5 *2 (-420 *4))
+ (-5 *1 (-421 *4))))
+ ((*1 *1 *1) (-5 *1 (-926)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926))))
+ ((*1 *1 *1) (-5 *1 (-927)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))
+ (-5 *4 (-409 (-566))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))
+ (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))
+ (-5 *4 (-409 (-566))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 *4))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))
+ (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566))))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
+ (-4 *3 (-1240 *2)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-277 *4 *3))
+ (-4 *3 (-13 (-432 *4) (-1002))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 *4))))
+ (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-370)) (-4 *2 (-1099)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
+ (-12 (-5 *4 (-689 (-566))) (-5 *5 (-112)) (-5 *7 (-689 (-225)))
+ (-5 *3 (-566)) (-5 *6 (-225)) (-5 *2 (-1035)) (-5 *1 (-754)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225)))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-63 LSFUN2))))
+ (-5 *2 (-1035)) (-5 *1 (-753)))))
+(((*1 *2 *3 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-365) (-147) (-1038 (-566))))
+ (-4 *5 (-1240 *4)) (-5 *2 (-644 (-409 *5))) (-5 *1 (-1016 *4 *5))
+ (-5 *3 (-409 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2222 *3)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+ (-12 (-4 *4 (-1049)) (-4 *2 (-687 *4 *5 *6))
+ (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1240 *4)) (-4 *5 (-375 *4))
+ (-4 *6 (-375 *4)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-1 (-1155 (-952 *4)) (-1155 (-952 *4))))
+ (-5 *1 (-1272 *4)) (-4 *4 (-365)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-317 *3)) (-4 *3 (-13 (-1049) (-850)))
+ (-5 *1 (-223 *3 *4)) (-14 *4 (-644 (-1175))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5))
+ (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793)) (-5 *2 (-112)) (-5 *1 (-924 *4 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-13 (-308) (-147)))
+ (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-112))
+ (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-308)) (-5 *1 (-179 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1264 (-3 (-470) "undefined"))) (-5 *1 (-1265)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-205))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 (-381))) (-5 *2 (-381)) (-5 *1 (-205)))))
+(((*1 *2 *1) (-12 (-5 *2 (-822)) (-5 *1 (-821)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-644 (-1175))) (-5 *3 (-1175)) (-5 *1 (-538))))
((*1 *2 *3 *2)
@@ -5667,279 +6284,168 @@
((*1 *2 *3 *2 *4)
(-12 (-5 *4 (-644 (-1175))) (-5 *2 (-1175)) (-5 *1 (-704 *3))
(-4 *3 (-614 (-538))))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-825)))))
(((*1 *2)
- (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *2 (-1269))
- (-5 *1 (-435 *3 *4)) (-4 *4 (-432 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
-(((*1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-689 *1)) (-4 *1 (-351)) (-5 *2 (-1264 *1))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-689 *1)) (-4 *1 (-145)) (-4 *1 (-909))
- (-5 *2 (-1264 *1)))))
-(((*1 *1)
- (-12 (-4 *3 (-1099)) (-5 *1 (-885 *2 *3 *4)) (-4 *2 (-1099))
- (-4 *4 (-666 *3))))
- ((*1 *1) (-12 (-5 *1 (-889 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
-(((*1 *2)
- (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-345 *3 *4)) (-14 *3 (-921))
- (-14 *4 (-921))))
+ (-12 (-4 *4 (-172)) (-5 *2 (-1171 (-952 *4))) (-5 *1 (-418 *3 *4))
+ (-4 *3 (-419 *4))))
((*1 *2)
- (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-346 *3 *4)) (-4 *3 (-351))
- (-14 *4 (-1171 *3))))
+ (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-4 *3 (-365))
+ (-5 *2 (-1171 (-952 *3)))))
((*1 *2)
- (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-347 *3 *4)) (-4 *3 (-351))
- (-14 *4 (-921)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1274)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-793))
- (-4 *3 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))) (-4 *5 (-558))
- (-5 *1 (-732 *4 *3 *5 *2)) (-4 *2 (-949 (-409 (-952 *5)) *4 *3))))
- ((*1 *2 *2 *3)
- (-12 (-4 *4 (-1049)) (-4 *5 (-793))
- (-4 *3
- (-13 (-850)
- (-10 -8 (-15 -3134 ((-1175) $))
- (-15 -1353 ((-3 $ "failed") (-1175))))))
- (-5 *1 (-984 *4 *5 *3 *2)) (-4 *2 (-949 (-952 *4) *5 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 *6))
- (-4 *6
- (-13 (-850)
- (-10 -8 (-15 -3134 ((-1175) $))
- (-15 -1353 ((-3 $ "failed") (-1175))))))
- (-4 *4 (-1049)) (-4 *5 (-793)) (-5 *1 (-984 *4 *5 *6 *2))
- (-4 *2 (-949 (-952 *4) *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1) (-4 *1 (-495)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-566))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1171 *1)) (-5 *3 (-1175)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-952 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-4 *1 (-29 *3)) (-4 *3 (-558))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-558)))))
-(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
- (|partial| -12 (-5 *3 (-612 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175))) (-5 *5 (-1171 *2))
- (-4 *2 (-13 (-432 *6) (-27) (-1199)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *1 (-562 *6 *2 *7)) (-4 *7 (-1099))))
- ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
- (|partial| -12 (-5 *3 (-612 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175)))
- (-5 *5 (-409 (-1171 *2))) (-4 *2 (-13 (-432 *6) (-27) (-1199)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *1 (-562 *6 *2 *7)) (-4 *7 (-1099)))))
-(((*1 *2)
- (-12 (-4 *1 (-351))
- (-5 *2 (-644 (-2 (|:| -2391 (-566)) (|:| -3250 (-566))))))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-454)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3))
- (-4 *3 (-1099)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
- ((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1) (-4 *1 (-495)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *2)
- (-12 (-4 *4 (-365)) (-5 *2 (-771)) (-5 *1 (-329 *3 *4))
- (-4 *3 (-330 *4))))
- ((*1 *2) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-771)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *3))
- (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))))
+ (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2)
- (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1099)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-191)) (-5 *3 (-566))))
- ((*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-172))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))))
-(((*1 *2 *1) (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792))))
- ((*1 *2 *1) (-12 (-4 *1 (-708 *3)) (-4 *3 (-1049)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-771))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-771)))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-949 *4 *5 *3)) (-4 *4 (-1049)) (-4 *5 (-793))
- (-4 *3 (-850)) (-5 *2 (-771)))))
+ (-12 (-5 *3 (-644 (-644 (-644 *4)))) (-5 *2 (-644 (-644 *4)))
+ (-5 *1 (-1185 *4)) (-4 *4 (-850)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1180))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-508)) (-5 *3 (-644 (-1180))) (-5 *1 (-1180)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1249 *3 *4 *5)) (-5 *1 (-320 *3 *4 *5)) (-4 *3 (-365))
- (-14 *4 (-1175)) (-14 *5 *3)))
- ((*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566))))
- ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-420 *3)) (-4 *3 (-558))))
- ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-699))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1099)) (-5 *1 (-713 *3 *2 *4)) (-4 *3 (-850))
- (-14 *4
- (-1 (-112) (-2 (|:| -2168 *3) (|:| -3250 *2))
- (-2 (|:| -2168 *3) (|:| -3250 *2)))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+ (-12 (|has| *1 (-6 -4414)) (-4 *1 (-491 *3)) (-4 *3 (-1214))
+ (-5 *2 (-644 *3))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-737 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-441))) (-5 *1 (-865)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1) (-4 *1 (-495)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-436)) (-4 *5 (-1099))
+ (-5 *1 (-1105 *5 *4)) (-4 *4 (-432 *5)))))
+(((*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-829)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-169 (-317 *4)))
- (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4))))))
+ (-12 (-5 *2 (-2 (|:| -2760 (-566)) (|:| -2670 (-644 *3))))
+ (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-560 *3)) (-4 *3 (-547))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *2 (-169 *3)) (-5 *1 (-1203 *4 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *4))))))
-(((*1 *1 *2) (-12 (-5 *2 (-317 (-169 (-381)))) (-5 *1 (-331))))
- ((*1 *1 *2) (-12 (-5 *2 (-317 (-566))) (-5 *1 (-331))))
- ((*1 *1 *2) (-12 (-5 *2 (-317 (-381))) (-5 *1 (-331))))
- ((*1 *1 *2) (-12 (-5 *2 (-317 (-694))) (-5 *1 (-331))))
- ((*1 *1 *2) (-12 (-5 *2 (-317 (-701))) (-5 *1 (-331))))
- ((*1 *1 *2) (-12 (-5 *2 (-317 (-699))) (-5 *1 (-331))))
- ((*1 *1) (-5 *1 (-331))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-566)) (|has| *1 (-6 -4418)) (-4 *1 (-375 *3))
- (-4 *3 (-1214)))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *2 (-644 *4)) (-5 *1 (-779 *4))
- (-4 *4 (-13 (-365) (-848))))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-5 *1 (-331)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-905 *3))) (-4 *3 (-1099)) (-5 *1 (-904 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-241)) (-5 *3 (-1157))))
- ((*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-241))))
- ((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
-(((*1 *2 *3 *3 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
- (-5 *2 (-1035)) (-5 *1 (-756)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-541 *4 *2 *5 *6))
- (-4 *4 (-308)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-771))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-1175))
- (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-4 *4 (-13 (-29 *6) (-1199) (-959)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -1990 (-644 *4))))
- (-5 *1 (-801 *6 *4 *3)) (-4 *3 (-656 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-303))))
- ((*1 *1 *1) (-4 *1 (-303))) ((*1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *1 *1) (-4 *1 (-495)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-821)) (-5 *4 (-52)) (-5 *2 (-1269)) (-5 *1 (-831)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-1099))
- (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4))))
- (-5 *1 (-54 *4 *5 *2))
- (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-771)) (-4 *5 (-558))
+ (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3))
+ (-5 *1 (-742 *4 *5 *6 *3)) (-4 *3 (-949 *6 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308))
+ (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-420 (-1171 *7)))
+ (-5 *1 (-742 *4 *5 *6 *7)) (-5 *3 (-1171 *7))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-454)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2 (-420 *1)) (-4 *1 (-949 *3 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-454)) (-5 *2 (-420 *3))
+ (-5 *1 (-979 *4 *5 *6 *3)) (-4 *3 (-949 *6 *5 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-454))
+ (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-420 (-1171 (-409 *7))))
+ (-5 *1 (-1170 *4 *5 *6 *7)) (-5 *3 (-1171 (-409 *7)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-420 *1)) (-4 *1 (-1218))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-420 *3)) (-5 *1 (-1243 *4 *3))
+ (-4 *3 (-13 (-1240 *4) (-558) (-10 -8 (-15 -2235 ($ $ $)))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
+ (-14 *5 (-644 (-1175)))
(-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *6 *6 *3)
- (-12 (-5 *3 (-566)) (-5 *5 (-112)) (-5 *6 (-689 (-225)))
- (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175))
- (-5 *2 (-644 *4)) (-5 *1 (-1113 *4 *5)))))
+ (-644 (-1145 *4 (-533 (-864 *6)) (-864 *6) (-780 *4 (-864 *6)))))
+ (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))))
+(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
+ (-12 (-5 *3 (-921)) (-5 *4 (-225)) (-5 *5 (-566)) (-5 *6 (-874))
+ (-5 *2 (-1269)) (-5 *1 (-1265)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-247 *3 *4))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-566))) (-14 *3 (-644 (-1175)))
+ (-5 *1 (-456 *3 *4 *5)) (-4 *4 (-1049))
+ (-4 *5 (-238 (-3020 *3) (-771)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-483 *3 *4))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-1049)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-245 *3)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-119 *2)) (-4 *2 (-1214)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-689 (-409 (-952 (-566)))))
+ (-12
+ (-5 *3
+ (-2 (|:| -4193 (-689 (-409 (-952 *4))))
+ (|:| |vec| (-644 (-409 (-952 *4)))) (|:| -4157 (-771))
+ (|:| |rows| (-644 (-566))) (|:| |cols| (-644 (-566)))))
+ (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793))
(-5 *2
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *4))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *4)))))))
+ (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-241)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1214))
+ (-4 *5 (-1214)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-240 *6 *7)) (-14 *6 (-771))
+ (-4 *7 (-1214)) (-4 *5 (-1214)) (-5 *2 (-240 *6 *5))
+ (-5 *1 (-239 *6 *7 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1214)) (-4 *5 (-1214))
+ (-4 *2 (-375 *5)) (-5 *1 (-373 *6 *4 *5 *2)) (-4 *4 (-375 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1099)) (-4 *5 (-1099))
+ (-4 *2 (-427 *5)) (-5 *1 (-425 *6 *4 *5 *2)) (-4 *4 (-427 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-644 *6)) (-4 *6 (-1214))
+ (-4 *5 (-1214)) (-5 *2 (-644 *5)) (-5 *1 (-642 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-958 *6)) (-4 *6 (-1214))
+ (-4 *5 (-1214)) (-5 *2 (-958 *5)) (-5 *1 (-957 *6 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1155 *6)) (-4 *6 (-1214))
+ (-4 *3 (-1214)) (-5 *2 (-1155 *3)) (-5 *1 (-1153 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1264 *6)) (-4 *6 (-1214))
+ (-4 *5 (-1214)) (-5 *2 (-1264 *5)) (-5 *1 (-1263 *6 *5)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
(-644
- (-2 (|:| |radval| (-317 (-566))) (|:| |radmult| (-566))
- (|:| |radvect| (-644 (-689 (-317 (-566))))))))
- (-5 *1 (-1031)))))
+ (-2 (|:| -4157 (-771))
+ (|:| |eqns|
+ (-644
+ (-2 (|:| |det| *7) (|:| |rows| (-644 (-566)))
+ (|:| |cols| (-644 (-566))))))
+ (|:| |fgb| (-644 *7)))))
+ (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147)))
+ (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-771))
+ (-5 *1 (-924 *4 *5 *6 *7)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))))
+(((*1 *1)
+ (-12 (-4 *3 (-1099)) (-5 *1 (-885 *2 *3 *4)) (-4 *2 (-1099))
+ (-4 *4 (-666 *3))))
+ ((*1 *1) (-12 (-5 *1 (-889 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))))
-(((*1 *2 *1) (-12 (-4 *1 (-767 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-303)) (-4 *2 (-1214))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-612 *1))) (-5 *3 (-644 *1)) (-4 *1 (-303))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-295 *1))) (-4 *1 (-303))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-295 *1)) (-4 *1 (-303)))))
+ (-12 (-4 *4 (-1049)) (-4 *5 (-1240 *4)) (-5 *2 (-1 *6 (-644 *6)))
+ (-5 *1 (-1258 *4 *5 *3 *6)) (-4 *3 (-656 *5)) (-4 *6 (-1255 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-258)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1207 *4 *5 *3 *6)) (-4 *4 (-558)) (-4 *5 (-793))
+ (-4 *3 (-850)) (-4 *6 (-1064 *4 *5 *3)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1175)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-702 *4 *5 *6 *7))
+ (-4 *4 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214))
+ (-4 *7 (-1214)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-873 (-1180) (-771)))) (-5 *1 (-334)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-91 *3)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793))
+ (-5 *2 (-112)) (-5 *1 (-987 *3 *4 *5 *6))
+ (-4 *6 (-949 *3 *5 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
+ (-4 *4 (-13 (-1099) (-34))))))
+(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-529)) (-5 *3 (-128)) (-5 *2 (-771)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1180)))))
(((*1 *2 *1)
(-12
(-5 *2
@@ -5948,7 +6454,7 @@
(-2 (|:| |var| (-1175))
(|:| |arrayIndex| (-644 (-952 (-566))))
(|:| |rand|
- (-2 (|:| |ints2Floats?| (-112)) (|:| -1316 (-862))))))
+ (-2 (|:| |ints2Floats?| (-112)) (|:| -1355 (-862))))))
(|:| |arrayAssignmentBranch|
(-2 (|:| |var| (-1175)) (|:| |rand| (-862))
(|:| |ints2Floats?| (-112))))
@@ -5956,384 +6462,239 @@
(-2 (|:| |switch| (-1174)) (|:| |thenClause| (-331))
(|:| |elseClause| (-331))))
(|:| |returnBranch|
- (-2 (|:| -4194 (-112))
- (|:| -2212
- (-2 (|:| |ints2Floats?| (-112)) (|:| -1316 (-862))))))
+ (-2 (|:| -3461 (-112))
+ (|:| -2252
+ (-2 (|:| |ints2Floats?| (-112)) (|:| -1355 (-862))))))
(|:| |blockBranch| (-644 (-331)))
(|:| |commentBranch| (-644 (-1157))) (|:| |callBranch| (-1157))
(|:| |forBranch|
- (-2 (|:| -4344 (-1091 (-952 (-566))))
- (|:| |span| (-952 (-566))) (|:| -2639 (-331))))
+ (-2 (|:| -2498 (-1091 (-952 (-566))))
+ (|:| |span| (-952 (-566))) (|:| -1398 (-331))))
(|:| |labelBranch| (-1119))
- (|:| |loopBranch| (-2 (|:| |switch| (-1174)) (|:| -2639 (-331))))
+ (|:| |loopBranch| (-2 (|:| |switch| (-1174)) (|:| -1398 (-331))))
(|:| |commonBranch|
- (-2 (|:| -2628 (-1175)) (|:| |contents| (-644 (-1175)))))
+ (-2 (|:| -2639 (-1175)) (|:| |contents| (-644 (-1175)))))
(|:| |printBranch| (-644 (-862)))))
(-5 *1 (-331)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-244 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *1 *1) (-4 *1 (-495)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1117)) (-5 *1 (-1114)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-531))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-579))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-861)))))
-(((*1 *2 *3 *3 *2 *4)
- (-12 (-5 *3 (-689 *2)) (-5 *4 (-566))
- (-4 *2 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))))
- (-4 *5 (-1240 *2)) (-5 *1 (-501 *2 *5 *6)) (-4 *6 (-411 *2 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *1 *1) (-4 *1 (-495)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-225))) (-5 *2 (-1264 (-699))) (-5 *1 (-306)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-904 *4))
- (-4 *4 (-1099))))
- ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
+(((*1 *1 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-370)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-566)) (-4 *2 (-432 *3)) (-5 *1 (-32 *3 *2))
- (-4 *3 (-1038 *4)) (-4 *3 (-558)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-671))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1100 *3 *4)) (-14 *3 (-921))
- (-14 *4 (-921)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *3 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-365) (-147) (-1038 (-566))))
- (-4 *5 (-1240 *4)) (-5 *2 (-644 (-409 *5))) (-5 *1 (-1016 *4 *5))
- (-5 *3 (-409 *5)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-1171 (-952 *4))) (-5 *1 (-418 *3 *4))
- (-4 *3 (-419 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-4 *3 (-365))
- (-5 *2 (-1171 (-952 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *2 *1 *3 *4 *4 *4 *4 *5 *5 *5 *5 *6 *5 *6 *5)
- (-12 (-5 *3 (-921)) (-5 *4 (-225)) (-5 *5 (-566)) (-5 *6 (-874))
- (-5 *2 (-1269)) (-5 *1 (-1265)))))
-(((*1 *1 *1) (-4 *1 (-95)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
+ (-12 (-5 *3 (-1171 *1)) (-5 *4 (-1175)) (-4 *1 (-27))
+ (-5 *2 (-644 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1))))
+ ((*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *2 (-644 *1))
+ (-4 *1 (-29 *4))))
+ ((*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1175)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-702 *4 *5 *6 *7))
- (-4 *4 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214))
- (-4 *7 (-1214)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-751)))))
-(((*1 *1 *2) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862))))))
-(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-751)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
-(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
- (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-225))
- (-5 *7 (-689 (-566))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4))
+ (-12 (-5 *3 (-769))
(-5 *2
- (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-409 *5))
- (|:| |c2| (-409 *5)) (|:| |deg| (-771))))
- (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
-(((*1 *1 *1) (-4 *1 (-95)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *1 *1 *1) (-5 *1 (-225)))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040))))
- ((*1 *1 *1 *1) (-4 *1 (-1138))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-429 *3 *2)) (-4 *3 (-13 (-172) (-38 (-409 (-566)))))
- (-4 *2 (-13 (-850) (-21))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-483 *4 *5))) (-14 *4 (-644 (-1175)))
- (-4 *5 (-454)) (-5 *2 (-644 (-247 *4 *5))) (-5 *1 (-631 *4 *5)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *5 (-612 *4)) (-5 *6 (-1175))
- (-4 *4 (-13 (-432 *7) (-27) (-1199)))
- (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-2 (|:| -3245 (-381)) (|:| -2639 (-1157))
+ (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))))
+ (-5 *1 (-567))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-769)) (-5 *4 (-1062))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4))))
- (-5 *1 (-568 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
- (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566))
- (-5 *2 (-1035)) (-5 *1 (-756)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-587 *3)) (-4 *3 (-365)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-531)))))
-(((*1 *1 *1) (-4 *1 (-95)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-454))
- (-5 *2 (-483 *4 *5)) (-5 *1 (-631 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-5 *1 (-488 *2)) (-4 *2 (-1240 (-566))))))
-(((*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267))))
- ((*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-327 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049))
- (-4 *2 (-454))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 *4)) (-4 *4 (-1240 (-566))) (-5 *2 (-644 (-566)))
- (-5 *1 (-488 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-454))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850)) (-4 *3 (-454)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1049))
- (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285)))
- (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *5))))
- (-5 *1 (-1128 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-13 (-308) (-147)))
- (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1128 *4))))
+ (-2 (|:| -3245 (-381)) (|:| -2639 (-1157))
+ (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))))
+ (-5 *1 (-567))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-295 (-409 (-952 *5)))) (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-295 (-317 *5))))
- (-5 *1 (-1128 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-295 (-409 (-952 *4)))) (-4 *4 (-13 (-308) (-147)))
- (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1128 *4))))
+ (-12 (-4 *1 (-787)) (-5 *3 (-1062))
+ (-5 *4
+ (-2 (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2
+ (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))
+ (|:| |extra| (-1035))))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175)))
- (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *5)))))
- (-5 *1 (-1128 *5))))
+ (-12 (-4 *1 (-787)) (-5 *3 (-1062))
+ (-5 *4
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2
+ (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))
+ (|:| |extra| (-1035))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-800)) (-5 *3 (-1062))
+ (-5 *4
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))))))
((*1 *2 *3)
- (-12 (-5 *3 (-644 (-409 (-952 *4)))) (-4 *4 (-13 (-308) (-147)))
- (-5 *2 (-644 (-644 (-295 (-317 *4))))) (-5 *1 (-1128 *4))))
+ (-12 (-5 *3 (-808))
+ (-5 *2
+ (-2 (|:| -3245 (-381)) (|:| -2639 (-1157))
+ (|:| |explanations| (-644 (-1157)))))
+ (-5 *1 (-805))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-295 (-409 (-952 *5))))) (-5 *4 (-644 (-1175)))
- (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *5)))))
- (-5 *1 (-1128 *5))))
+ (-12 (-5 *3 (-808)) (-5 *4 (-1062))
+ (-5 *2
+ (-2 (|:| -3245 (-381)) (|:| -2639 (-1157))
+ (|:| |explanations| (-644 (-1157)))))
+ (-5 *1 (-805))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-839)) (-5 *3 (-1062))
+ (-5 *4
+ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))
+ (-5 *2 (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-839)) (-5 *3 (-1062))
+ (-5 *4
+ (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225)))
+ (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225))))
+ (|:| |ub| (-644 (-843 (-225))))))
+ (-5 *2 (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))))))
((*1 *2 *3)
- (-12 (-5 *3 (-644 (-295 (-409 (-952 *4)))))
- (-4 *4 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-295 (-317 *4)))))
- (-5 *1 (-1128 *4)))))
-(((*1 *2)
- (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1099)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-1093 (-225)))))
- ((*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-644 (-381))) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-470))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-470))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-874)) (-5 *2 (-1269)) (-5 *1 (-1265))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
-(((*1 *2 *1) (-12 (-4 *1 (-255 *3)) (-4 *3 (-1214)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-771))))
+ (-12 (-5 *3 (-841))
+ (-5 *2
+ (-2 (|:| -3245 (-381)) (|:| -2639 (-1157))
+ (|:| |explanations| (-644 (-1157)))))
+ (-5 *1 (-840))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-841)) (-5 *4 (-1062))
+ (-5 *2
+ (-2 (|:| -3245 (-381)) (|:| -2639 (-1157))
+ (|:| |explanations| (-644 (-1157)))))
+ (-5 *1 (-840))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-895)) (-5 *3 (-1062))
+ (-5 *4
+ (-2 (|:| |pde| (-644 (-317 (-225))))
+ (|:| |constraints|
+ (-644
+ (-2 (|:| |start| (-225)) (|:| |finish| (-225))
+ (|:| |grid| (-771)) (|:| |boundaryType| (-566))
+ (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225))))))
+ (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157))
+ (|:| |tol| (-225))))
+ (-5 *2 (-2 (|:| -3245 (-381)) (|:| |explanations| (-1157))))))
((*1 *2 *3)
- (-12 (-4 *4 (-1049))
- (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285)))
- (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-612 *3)) (-4 *3 (-1099))))
- ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862))))
- ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
-(((*1 *1 *1) (-4 *1 (-95))) ((*1 *1 *1 *1) (-5 *1 (-225)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *1 *1 *1) (-5 *1 (-381)))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
- (-4 *3 (-13 (-1099) (-34))))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3 *4 *5 *3 *6 *3)
- (-12 (-5 *3 (-566)) (-5 *5 (-169 (-225))) (-5 *6 (-1157))
- (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1060 (-1024 *3) (-1171 (-1024 *3))))
- (-5 *1 (-1024 *3)) (-4 *3 (-13 (-848) (-365) (-1022))))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-771)) (-4 *4 (-13 (-558) (-147)))
- (-5 *1 (-1234 *4 *2)) (-4 *2 (-1240 *4)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-147)) (-4 *2 (-308)) (-4 *2 (-454)) (-4 *3 (-850))
- (-4 *4 (-793)) (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3))))
- ((*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-317 (-566))) (-5 *1 (-1118))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-1093 (-225)))))
- ((*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))))
-(((*1 *1 *1 *2)
- (-12
+ (-12 (-5 *3 (-898))
(-5 *2
- (-2 (|:| -1553 (-644 (-862))) (|:| -3711 (-644 (-862)))
- (|:| |presup| (-644 (-862))) (|:| -1722 (-644 (-862)))
- (|:| |args| (-644 (-862)))))
- (-5 *1 (-1175))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-644 (-862)))) (-5 *1 (-1175)))))
-(((*1 *1 *1) (-4 *1 (-95)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-405 *3)) (-4 *3 (-406))))
- ((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-405 *3)) (-4 *3 (-406))))
- ((*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4408)) (-4 *1 (-406))))
- ((*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921))))
- ((*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-1155 (-566))))))
+ (-2 (|:| -3245 (-381)) (|:| -2639 (-1157))
+ (|:| |explanations| (-644 (-1157)))))
+ (-5 *1 (-897))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-898)) (-5 *4 (-1062))
+ (-5 *2
+ (-2 (|:| -3245 (-381)) (|:| -2639 (-1157))
+ (|:| |explanations| (-644 (-1157)))))
+ (-5 *1 (-897)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-157)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-566)) (-4 *1 (-1224 *4)) (-4 *4 (-1049)) (-4 *4 (-558))
+ (-5 *2 (-409 (-952 *4)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-4 *1 (-1224 *4)) (-4 *4 (-1049)) (-4 *4 (-558))
+ (-5 *2 (-409 (-952 *4))))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-653 (-409 *2))) (-4 *2 (-1240 *4)) (-5 *1 (-810 *4 *2))
- (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))))
+ (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-241)) (-5 *3 (-1157))))
+ ((*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-241))))
+ ((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
+(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-4 *3 (-1064 *6 *7 *8))
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4))))
+ (-5 *1 (-1071 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2327 *9))))
+ (-5 *5 (-112)) (-4 *8 (-1064 *6 *7 *4)) (-4 *9 (-1070 *6 *7 *4 *8))
+ (-4 *6 (-454)) (-4 *7 (-793)) (-4 *4 (-850))
+ (-5 *2 (-644 (-2 (|:| |val| *8) (|:| -2327 *9))))
+ (-5 *1 (-1071 *6 *7 *4 *8 *9)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))))
+(((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-751)))))
+(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-720)) (-5 *2 (-921))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-771)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1060 (-1024 *4) (-1171 (-1024 *4)))) (-5 *3 (-862))
+ (-5 *1 (-1024 *4)) (-4 *4 (-13 (-848) (-365) (-1022))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1214)) (-5 *2 (-771)) (-5 *1 (-182 *4 *3))
+ (-4 *3 (-674 *4)))))
+(((*1 *2 *3 *4 *5 *5 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *3 (-952 *6)) (-5 *4 (-1175))
+ (-5 *5 (-843 *7))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-4 *7 (-13 (-1199) (-29 *6))) (-5 *1 (-224 *6 *7))))
+ ((*1 *2 *3 *4 *4 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1171 *6)) (-5 *4 (-843 *6))
+ (-4 *6 (-13 (-1199) (-29 *5)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-224 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850))
+ (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-771))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850))
+ (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-4 *1 (-267 *3)) (-4 *3 (-850)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-921))))
((*1 *2 *3)
- (-12 (-5 *3 (-654 *2 (-409 *2))) (-4 *2 (-1240 *4))
- (-5 *1 (-810 *4 *2))
- (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566))))))))
+ (-12 (-5 *3 (-338 *4 *5 *6 *7)) (-4 *4 (-13 (-370) (-365)))
+ (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-4 *7 (-344 *4 *5 *6))
+ (-5 *2 (-771)) (-5 *1 (-394 *4 *5 *6 *7))))
+ ((*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-833 (-921)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-597 *3)) (-4 *3 (-1049))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-597 *3)) (-4 *3 (-1049))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-558)) (-5 *2 (-566)) (-5 *1 (-623 *3 *4))
+ (-4 *4 (-1240 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-740 *4 *3)) (-4 *4 (-1049))
+ (-4 *3 (-850))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-740 *4 *3)) (-4 *4 (-1049)) (-4 *3 (-850))
+ (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-904 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4))
+ (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6)))
+ (-4 *8 (-344 *5 *6 *7)) (-4 *4 (-13 (-558) (-1038 (-566))))
+ (-5 *2 (-771)) (-5 *1 (-911 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6))
+ (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4)))
+ (-4 *6 (-344 (-409 (-566)) *4 *5)) (-5 *2 (-771))
+ (-5 *1 (-912 *4 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-338 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-365))
+ (-4 *7 (-1240 *6)) (-4 *4 (-1240 (-409 *7))) (-4 *8 (-344 *6 *7 *4))
+ (-4 *9 (-13 (-370) (-365))) (-5 *2 (-771))
+ (-5 *1 (-1018 *6 *7 *4 *8 *9))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-4 *3 (-558))
+ (-5 *2 (-771))))
+ ((*1 *2 *1 *2)
+ (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))))
+(((*1 *1 *1) (|partial| -4 *1 (-145))) ((*1 *1 *1) (-4 *1 (-351)))
+ ((*1 *1 *1) (|partial| -12 (-4 *1 (-145)) (-4 *1 (-909)))))
+(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-169 (-225)))) (-5 *2 (-1035))
+ (-5 *1 (-756)))))
+(((*1 *1 *2) (-12 (-5 *1 (-691 *2)) (-4 *2 (-613 (-862))))))
(((*1 *2 *3 *1)
(-12 (-5 *3 (-1288 *4 *2)) (-4 *1 (-376 *4 *2)) (-4 *4 (-850))
(-4 *2 (-172))))
@@ -6344,57 +6705,33 @@
(-4 *2 (-1049))))
((*1 *2 *1 *3)
(-12 (-4 *2 (-1049)) (-5 *1 (-1287 *2 *3)) (-4 *3 (-846)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *4))))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3309 *4)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))))
-(((*1 *2 *3) (-12 (-5 *3 (-952 (-225))) (-5 *2 (-225)) (-5 *1 (-306)))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558))))
- ((*1 *1 *1) (|partial| -4 *1 (-722))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1138))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-308)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
- (-5 *1 (-1123 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1171 *3)) (-4 *3 (-1049)) (-4 *1 (-1240 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1175)) (-4 *5 (-365)) (-5 *2 (-644 (-1208 *5)))
+ (-5 *1 (-1272 *5)) (-5 *4 (-1208 *5)))))
+(((*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1178)))))
(((*1 *2 *3)
- (-12 (-4 *3 (-1240 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-985 *4 *2 *3 *5))
- (-4 *4 (-351)) (-4 *5 (-724 *2 *3)))))
-(((*1 *1) (-5 *1 (-292))))
-(((*1 *2 *1 *3 *2)
- (-12 (-5 *3 (-771)) (-5 *1 (-213 *4 *2)) (-14 *4 (-921))
- (-4 *2 (-1099)))))
-(((*1 *1 *1) (-4 *1 (-95)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
-(((*1 *2 *3) (-12 (-5 *3 (-644 *2)) (-5 *1 (-1188 *2)) (-4 *2 (-365)))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *2) (-12 (-5 *2 (-1146 (-1157))) (-5 *1 (-393)))))
+ (-12 (-5 *3 (-1175)) (-5 *2 (-1 (-1171 (-952 *4)) (-952 *4)))
+ (-5 *1 (-1272 *4)) (-4 *4 (-365)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-751)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))
+ (-5 *2 (-644 (-225))) (-5 *1 (-306)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-879 (-1 (-225) (-225)))) (-5 *4 (-1093 (-381)))
(-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-256))))
@@ -6448,31 +6785,29 @@
(-12 (-5 *3 (-882 *5)) (-5 *4 (-1091 (-381)))
(-4 *5 (-13 (-614 (-538)) (-1099))) (-5 *2 (-1132 (-225)))
(-5 *1 (-260 *5)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-112)) (-5 *1 (-829)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1178)) (-5 *3 (-1175)))))
-(((*1 *2 *3 *3 *3 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-375 *2))
- (-4 *5 (-375 *2)) (-4 *2 (-1214))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-4 *2 (-1099)) (-5 *1 (-213 *4 *2))
- (-14 *4 (-921))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-289 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *2 *6 *7))
- (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *2 (-13 (-432 *4) (-1002) (-1199)))
- (-5 *1 (-600 *4 *2 *3))
- (-4 *3 (-13 (-432 (-169 *4)) (-1002) (-1199))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-508)) (-5 *2 (-691 (-774))) (-5 *1 (-114))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-1157)) (-5 *2 (-774)) (-5 *1 (-114))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1103)) (-5 *1 (-965)))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-558))
+ (-4 *3 (-949 *7 *5 *6))
+ (-5 *2
+ (-2 (|:| -2456 (-771)) (|:| -3223 *3) (|:| |radicand| (-644 *3))))
+ (-5 *1 (-953 *5 *6 *7 *3 *8)) (-5 *4 (-771))
+ (-4 *8
+ (-13 (-365)
+ (-10 -8 (-15 -3780 ($ *3)) (-15 -3088 (*3 $)) (-15 -3100 (*3 $))))))))
+(((*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 (-689 (-225))) (-5 *6 (-112)) (-5 *7 (-689 (-566)))
+ (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-65 QPHESS))))
+ (-5 *3 (-566)) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-753)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-409 (-566)))
+ (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-5 *2 (-1171 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-905 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1197)))))
(((*1 *2 *3)
(-12 (-4 *5 (-13 (-614 *2) (-172))) (-5 *2 (-892 *4))
(-5 *1 (-170 *4 *5 *3)) (-4 *4 (-1099)) (-4 *3 (-166 *5))))
@@ -6507,7 +6842,7 @@
((*1 *1 *2)
(-2805
(-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5))
- (-12 (-2426 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566)))
+ (-12 (-2436 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566)))
(-4 *5 (-614 (-1175))))
(-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)))
(-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5))
@@ -6518,12 +6853,12 @@
(-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175))) (-4 *3 (-1049))
(-4 *4 (-793)) (-4 *5 (-850))))
((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2248 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2327 *8)))
(-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454))
(-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1157))
(-5 *1 (-1068 *4 *5 *6 *7 *8))))
((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2248 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2327 *8)))
(-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1108 *4 *5 *6 *7)) (-4 *4 (-454))
(-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1157))
(-5 *1 (-1144 *4 *5 *6 *7 *8))))
@@ -6555,131 +6890,99 @@
(-4 *4 (-13 (-848) (-308) (-147) (-1022))) (-14 *6 (-644 (-1175)))
(-5 *2 (-644 (-780 *4 (-864 *6)))) (-5 *1 (-1290 *4 *5 *6))
(-14 *5 (-644 (-1175))))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4))))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-846)))))
+(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266))))
+ ((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-822)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3))))
- ((*1 *1 *1) (-4 *1 (-1202))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214)) (-4 *2 (-850))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-375 *3)) (-4 *3 (-1214))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4))
- (-14 *3 (-921)) (-4 *4 (-1049))))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-483 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049))
- (-5 *2 (-952 *5)) (-5 *1 (-944 *4 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 (-112) *7 (-644 *7))) (-4 *1 (-1207 *4 *5 *6 *7))
- (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175)))
+ (-14 *4 (-644 (-1175))) (-4 *5 (-389))))
+ ((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175)))
+ (-14 *4 (-644 (-1175))) (-4 *5 (-389)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-644 (-381))) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-470))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-381))) (-5 *1 (-470))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-874)) (-5 *2 (-1269)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-864 *5))) (-14 *5 (-644 (-1175))) (-4 *6 (-454))
+ (-12 (-5 *3 (-689 *8)) (-5 *4 (-771)) (-4 *8 (-949 *5 *7 *6))
+ (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
+ (-4 *7 (-793))
(-5 *2
- (-2 (|:| |dpolys| (-644 (-247 *5 *6)))
- (|:| |coords| (-644 (-566)))))
- (-5 *1 (-473 *5 *6 *7)) (-5 *3 (-644 (-247 *5 *6))) (-4 *7 (-454)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-112))
- (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4))))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-112))
- (-5 *1 (-1203 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099))
- (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
-(((*1 *2 *3 *4)
- (-12 (-4 *6 (-558)) (-4 *2 (-949 *3 *5 *4))
- (-5 *1 (-732 *5 *4 *6 *2)) (-5 *3 (-409 (-952 *6))) (-4 *5 (-793))
- (-4 *4 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1264 (-1175))) (-5 *3 (-1264 (-455 *4 *5 *6 *7)))
- (-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-921))
- (-14 *6 (-644 (-1175))) (-14 *7 (-1264 (-689 *4)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-455 *4 *5 *6 *7)))
- (-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-172)) (-14 *5 (-921))
- (-14 *6 (-644 *2)) (-14 *7 (-1264 (-689 *4)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-455 *3 *4 *5 *6))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175)))
- (-14 *6 (-1264 (-689 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-1175))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-172)) (-14 *4 (-921)) (-14 *5 (-644 (-1175)))
- (-14 *6 (-1264 (-689 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1175)) (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172))
- (-14 *4 (-921)) (-14 *5 (-644 *2)) (-14 *6 (-1264 (-689 *3)))))
- ((*1 *1)
- (-12 (-5 *1 (-455 *2 *3 *4 *5)) (-4 *2 (-172)) (-14 *3 (-921))
- (-14 *4 (-644 (-1175))) (-14 *5 (-1264 (-689 *2))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3))))
- ((*1 *1 *1) (-4 *1 (-1202))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1089)))))
-(((*1 *1 *1) (-4 *1 (-629)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
-(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214)))))
+ (-644
+ (-2 (|:| |det| *8) (|:| |rows| (-644 (-566)))
+ (|:| |cols| (-644 (-566))))))
+ (-5 *1 (-924 *5 *6 *7 *8)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1264 *4)) (-4 *4 (-1049)) (-4 *2 (-1240 *4))
- (-5 *1 (-446 *4 *2))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-409 (-1171 (-317 *5)))) (-5 *3 (-1264 (-317 *5)))
- (-5 *4 (-566)) (-4 *5 (-558)) (-5 *1 (-1129 *5)))))
+ (|partial| -12 (-5 *2 (-409 *4)) (-4 *4 (-1240 *3))
+ (-4 *3 (-13 (-365) (-147) (-1038 (-566)))) (-5 *1 (-570 *3 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1224 *3))
- (-5 *2 (-409 (-566))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-850)) (-5 *2 (-644 (-644 (-644 *4))))
- (-5 *1 (-1185 *4)) (-5 *3 (-644 (-644 *4))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
- ((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *2 *2) (|partial| -12 (-5 *2 (-317 (-225))) (-5 *1 (-306))))
+ (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-112))))
((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| |num| (-892 *3)) (|:| |den| (-892 *3))))
- (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-889 *4 *5)) (-5 *3 (-889 *4 *6)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-666 *5)) (-5 *1 (-885 *4 *5 *6)))))
+(((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157))
+ (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-843 (-225)))) (-5 *4 (-225)) (-5 *2 (-644 *4))
+ (-5 *1 (-268)))))
(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
+ (|:| |xpnt| (-566))))
+ (-4 *4 (-13 (-1240 *3) (-558) (-10 -8 (-15 -2235 ($ $ $)))))
+ (-4 *3 (-558)) (-5 *1 (-1243 *3 *4)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-823)) (-5 *1 (-822)))))
+(((*1 *2 *3 *4 *5 *4 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *7 *4)
+ (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-225))
+ (-5 *7 (-689 (-566))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *2 *3)
+ (-12 (|has| *2 (-6 (-4416 "*"))) (-4 *5 (-375 *2)) (-4 *6 (-375 *2))
+ (-4 *2 (-1049)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1240 *2))
+ (-4 *4 (-687 *2 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
+(((*1 *1 *2 *1 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))))
+(((*1 *1 *1) (-4 *1 (-35)))
+ ((*1 *2 *2)
(-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
(-4 *2 (-13 (-432 *3) (-1002)))))
((*1 *2 *2)
@@ -6693,103 +6996,62 @@
(-5 *1 (-1160 *3))))
((*1 *2 *2)
(-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3))))
- ((*1 *1 *1) (-4 *1 (-1202))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-945 *4 *3))
- (-4 *3 (-1240 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-363 (-114))) (-4 *2 (-1049)) (-5 *1 (-714 *2 *4))
- (-4 *4 (-648 *2))))
- ((*1 *1 *2 *3)
- (-12 (-5 *3 (-363 (-114))) (-5 *1 (-836 *2)) (-4 *2 (-1049)))))
+ (-5 *1 (-1161 *3)))))
(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-409 *2)) (-4 *2 (-1240 *5))
- (-5 *1 (-807 *5 *2 *3 *6))
- (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566)))))
- (-4 *3 (-656 *2)) (-4 *6 (-656 *4))))
+ (-12 (-5 *3 (-644 (-566))) (-5 *4 (-905 (-566)))
+ (-5 *2 (-689 (-566))) (-5 *1 (-591))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-644 (-689 (-566))))
+ (-5 *1 (-591))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-409 *2))) (-4 *2 (-1240 *5))
- (-5 *1 (-807 *5 *2 *3 *6))
- (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2))
- (-4 *6 (-656 (-409 *2))))))
-(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-752)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099))
- (-4 *4 (-23)) (-14 *5 *4))))
+ (-12 (-5 *3 (-644 (-566))) (-5 *4 (-644 (-905 (-566))))
+ (-5 *2 (-644 (-689 (-566)))) (-5 *1 (-591)))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
(((*1 *1 *1)
(-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *2 *2 *2 *3 *3 *4)
+ (|partial| -12 (-5 *3 (-612 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175)))
+ (-4 *2 (-13 (-432 *5) (-27) (-1199)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *1 (-568 *5 *2 *6)) (-4 *6 (-1099)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1026 (-843 (-566))))
+ (-5 *3 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *4)))) (-4 *4 (-1049))
+ (-5 *1 (-596 *4)))))
+(((*1 *2 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-241))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-644 (-1157))) (-5 *3 (-566)) (-5 *4 (-1157))
+ (-5 *1 (-241))))
+ ((*1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1242 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1186 (-644 *4))) (-4 *4 (-850))
- (-5 *2 (-644 (-644 *4))) (-5 *1 (-1185 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3))))
- ((*1 *1 *1) (-4 *1 (-1202))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-1277 *4 *5 *6 *7)))
- (-5 *1 (-1277 *4 *5 *6 *7))))
+ (-12 (-4 *4 (-351)) (-5 *2 (-420 *3)) (-5 *1 (-216 *4 *3))
+ (-4 *3 (-1240 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3))
+ (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 (-771))) (-5 *2 (-420 *3)) (-5 *1 (-444 *3))
+ (-4 *3 (-1240 (-566)))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-644 *9)) (-5 *4 (-1 (-112) *9 *9))
- (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558))
- (-4 *7 (-793)) (-4 *8 (-850)) (-5 *2 (-644 (-1277 *6 *7 *8 *9)))
- (-5 *1 (-1277 *6 *7 *8 *9)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *1 *2 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381)))
- (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
- (-5 *1 (-1174)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-644 *2)) (-5 *1 (-113 *2))
- (-4 *2 (-1099))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-644 *4))) (-4 *4 (-1099))
- (-5 *1 (-113 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1099))
- (-5 *1 (-113 *4))))
+ (-12 (-5 *4 (-644 (-771))) (-5 *5 (-771)) (-5 *2 (-420 *3))
+ (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3))
+ (-4 *3 (-1240 (-566)))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-644 *4)))
- (-5 *1 (-113 *4)) (-4 *4 (-1099))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-648 *3)) (-4 *3 (-1049))
- (-5 *1 (-714 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-836 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *5)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-381))))
- ((*1 *1 *1 *1) (-4 *1 (-547)))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365))))
- ((*1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-771)))))
-(((*1 *2 *3) (-12 (-5 *3 (-409 (-566))) (-5 *2 (-225)) (-5 *1 (-306)))))
+ (-12 (-5 *2 (-420 *3)) (-5 *1 (-1007 *3))
+ (-4 *3 (-1240 (-409 (-566))))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-420 *3)) (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *3 (-1 (-225) (-225))) (-5 *4 (-1093 (-381)))
(-5 *5 (-644 (-264))) (-5 *2 (-1265)) (-5 *1 (-256))))
@@ -6887,112 +7149,115 @@
((*1 *2 *3 *3 *3 *4)
(-12 (-5 *3 (-644 (-225))) (-5 *4 (-644 (-264))) (-5 *2 (-1266))
(-5 *1 (-261)))))
-(((*1 *2 *1 *1)
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4))
+ (-5 *2
+ (-2 (|:| |func| *3) (|:| |poly| *3) (|:| |c1| (-409 *5))
+ (|:| |c2| (-409 *5)) (|:| |deg| (-771))))
+ (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1099)) (-4 *3 (-900 *5)) (-5 *2 (-1264 *3))
+ (-5 *1 (-692 *5 *3 *6 *4)) (-4 *6 (-375 *3))
+ (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4414)))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 (-644 *8))) (-5 *3 (-644 *8))
+ (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793))
+ (-4 *7 (-850)) (-5 *2 (-112)) (-5 *1 (-977 *5 *6 *7 *8)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-755)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-2 (|:| |deg| (-771)) (|:| -2457 *5))))
+ (-4 *5 (-1240 *4)) (-4 *4 (-351)) (-5 *2 (-644 *5))
+ (-5 *1 (-216 *4 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-2 (|:| -2473 *5) (|:| -2108 (-566)))))
+ (-5 *4 (-566)) (-4 *5 (-1240 *4)) (-5 *2 (-644 *5))
+ (-5 *1 (-696 *5)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-508)) (-5 *2 (-691 (-774))) (-5 *1 (-114))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-1157)) (-5 *2 (-774)) (-5 *1 (-114))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1103)) (-5 *1 (-965)))))
+(((*1 *2 *3 *2)
(-12
(-5 *2
- (-2 (|:| |lm| (-388 *3)) (|:| |mm| (-388 *3)) (|:| |rm| (-388 *3))))
- (-5 *1 (-388 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1 *1)
+ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225))
+ (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
+ (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
+ (-5 *3 (-644 (-264))) (-5 *1 (-262))))
+ ((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |lm| (-819 *3)) (|:| |mm| (-819 *3)) (|:| |rm| (-819 *3))))
- (-5 *1 (-819 *3)) (-4 *3 (-850)))))
-(((*1 *1) (-4 *1 (-351)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 *5)) (-4 *5 (-432 *4)) (-4 *4 (-13 (-558) (-147)))
+ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225))
+ (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
+ (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
+ (-5 *1 (-264))))
+ ((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266))))
+ ((*1 *2 *1 *3 *3 *4 *4 *4)
+ (-12 (-5 *3 (-566)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266))))
+ ((*1 *2 *1 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225))
+ (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
+ (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
+ (-5 *2 (-1269)) (-5 *1 (-1266))))
+ ((*1 *2 *1)
+ (-12
(-5 *2
- (-2 (|:| |primelt| *5) (|:| |poly| (-644 (-1171 *5)))
- (|:| |prim| (-1171 *5))))
- (-5 *1 (-434 *4 *5))))
+ (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2239 (-225))
+ (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
+ (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
+ (-5 *1 (-1266))))
+ ((*1 *2 *1 *3 *3 *3 *3 *3)
+ (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1216))))
((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-558) (-147)))
- (-5 *2
- (-2 (|:| |primelt| *3) (|:| |pol1| (-1171 *3))
- (|:| |pol2| (-1171 *3)) (|:| |prim| (-1171 *3))))
- (-5 *1 (-434 *4 *3)) (-4 *3 (-27)) (-4 *3 (-432 *4))))
- ((*1 *2 *3 *4 *3 *4)
- (-12 (-5 *3 (-952 *5)) (-5 *4 (-1175)) (-4 *5 (-13 (-365) (-147)))
- (-5 *2
- (-2 (|:| |coef1| (-566)) (|:| |coef2| (-566))
- (|:| |prim| (-1171 *5))))
- (-5 *1 (-960 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175)))
- (-4 *5 (-13 (-365) (-147)))
- (-5 *2
- (-2 (|:| -3157 (-644 (-566))) (|:| |poly| (-644 (-1171 *5)))
- (|:| |prim| (-1171 *5))))
- (-5 *1 (-960 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175))) (-5 *5 (-1175))
- (-4 *6 (-13 (-365) (-147)))
- (-5 *2
- (-2 (|:| -3157 (-644 (-566))) (|:| |poly| (-644 (-1171 *6)))
- (|:| |prim| (-1171 *6))))
- (-5 *1 (-960 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *1 *1) (-5 *1 (-225)))
- ((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ (-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1269)) (-5 *1 (-1216)))))
+(((*1 *1 *1 *1) (-5 *1 (-225)))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
((*1 *2 *2 *2)
(-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *1 *1) (-4 *1 (-1138))) ((*1 *1 *1 *1) (-4 *1 (-1138))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *2) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3))))
- ((*1 *1 *1) (-4 *1 (-1202))))
-(((*1 *1 *2 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381)))
- (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
- (-5 *1 (-1174)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1010 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454))
- (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-977 *3 *4 *5 *6)))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040))))
+ ((*1 *1 *1 *1) (-4 *1 (-1138))))
(((*1 *2 *3)
- (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3))
- (-5 *1 (-742 *4 *5 *6 *3)) (-4 *3 (-949 *6 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1195)))))
+ (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-829)) (-5 *3 (-1157)))))
+(((*1 *1) (-5 *1 (-141))) ((*1 *1 *1) (-5 *1 (-144)))
+ ((*1 *1 *1) (-4 *1 (-1143))))
(((*1 *1 *2 *3) (-12 (-5 *2 (-114)) (-5 *3 (-644 *1)) (-4 *1 (-303))))
((*1 *1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-114))))
((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-612 *3)) (-4 *3 (-1099))))
((*1 *1 *2 *3 *4)
(-12 (-5 *2 (-114)) (-5 *3 (-644 *5)) (-5 *4 (-771)) (-4 *5 (-1099))
(-5 *1 (-612 *5)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *3 (-112)) (-5 *1 (-110))))
- ((*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4408)) (-4 *1 (-406))))
- ((*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-958 (-771))) (-5 *1 (-334)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1049) (-850)))
- (-14 *3 (-644 (-1175))))))
-(((*1 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381))))
+ ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))))
+(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266))))
+ ((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-566)) (-5 *1 (-381)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-771)) (-4 *5 (-1049)) (-4 *2 (-1240 *5))
+ (-5 *1 (-1258 *5 *2 *6 *3)) (-4 *6 (-656 *2)) (-4 *3 (-1255 *5)))))
+(((*1 *2 *1 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-862) (-862) (-862))) (-5 *4 (-566)) (-5 *2 (-862))
+ (-5 *1 (-649 *5 *6 *7)) (-4 *5 (-1099)) (-4 *6 (-23)) (-14 *7 *6)))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-862)) (-5 *1 (-854 *3 *4 *5)) (-4 *3 (-1049))
+ (-14 *4 (-99 *3)) (-14 *5 (-1 *3 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-862))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-862))))
+ ((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862))))
+ ((*1 *2 *1 *2)
+ (-12 (-5 *2 (-862)) (-5 *1 (-1171 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1049))
(-4 *4 (-792))))
@@ -7099,9 +7364,9 @@
(-4 *6 (-365)) (-5 *2 (-587 *6)) (-5 *1 (-586 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *6 *5))
- (-5 *4 (-3 (-2 (|:| -2806 *5) (|:| |coeff| *5)) "failed"))
+ (-5 *4 (-3 (-2 (|:| -2883 *5) (|:| |coeff| *5)) "failed"))
(-4 *5 (-365)) (-4 *6 (-365))
- (-5 *2 (-2 (|:| -2806 *6) (|:| |coeff| *6)))
+ (-5 *2 (-2 (|:| -2883 *6) (|:| |coeff| *6)))
(-5 *1 (-586 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed"))
@@ -7220,7 +7485,7 @@
(-4 *8 (-1049)) (-4 *6 (-793))
(-4 *2
(-13 (-1099)
- (-10 -8 (-15 -3034 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-771))))))
+ (-10 -8 (-15 -3040 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-771))))))
(-5 *1 (-951 *6 *7 *8 *5 *2)) (-4 *5 (-949 *8 *6 *7))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-5 *4 (-958 *5)) (-4 *5 (-1214))
@@ -7233,8 +7498,8 @@
(-4 *2 (-949 (-952 *4) *5 *6)) (-4 *5 (-793))
(-4 *6
(-13 (-850)
- (-10 -8 (-15 -3134 ((-1175) $))
- (-15 -1353 ((-3 $ "failed") (-1175))))))
+ (-10 -8 (-15 -3204 ((-1175) $))
+ (-15 -1401 ((-3 $ "failed") (-1175))))))
(-5 *1 (-984 *4 *5 *6 *2))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-558)) (-4 *6 (-558))
@@ -7321,390 +7586,237 @@
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-1287 *3 *4))
(-4 *4 (-846)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-429 *3 *2)) (-4 *3 (-13 (-172) (-38 (-409 (-566)))))
+ (-4 *2 (-13 (-850) (-21))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
+ (-5 *2 (-689 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))))
(((*1 *2 *2)
(-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *1 *2) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850))))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1255 *4)) (-5 *1 (-1257 *4 *2))
+ (-4 *4 (-38 (-409 (-566)))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-506 *3 *4 *5 *6))) (-4 *3 (-365)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850))
+ (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7))
+ (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1))
+ (-4 *1 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1))
+ (-4 *1 (-1070 *4 *5 *6 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *1 (-787)) (-5 *2 (-1035))
+ (-5 *3
+ (-2 (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))))
+ ((*1 *2 *3 *2)
+ (-12 (-4 *1 (-787)) (-5 *2 (-1035))
+ (-5 *3
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225)))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *1) (-5 *1 (-292))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1178))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178))))
+ ((*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-483 *4 *5))) (-14 *4 (-644 (-1175)))
+ (-4 *5 (-454)) (-5 *2 (-644 (-247 *4 *5))) (-5 *1 (-631 *4 *5)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-365) (-1199) (-1002))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *2)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-114)) (-4 *4 (-1049)) (-5 *1 (-714 *4 *2))
+ (-4 *2 (-648 *4))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-114)) (-5 *1 (-836 *2)) (-4 *2 (-1049)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1049)) (-14 *3 (-644 (-1175)))))
((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3))))
- ((*1 *1 *1) (-4 *1 (-1202))))
+ (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1049) (-850)))
+ (-14 *3 (-644 (-1175))))))
+(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035))
+ (-5 *1 (-748)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *5 (-612 *4)) (-5 *6 (-1175))
+ (-4 *4 (-13 (-432 *7) (-27) (-1199)))
+ (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4))))
+ (-5 *1 (-568 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099)))))
(((*1 *2 *2)
(-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
(-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *1 *2 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381)))
- (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
- (-5 *1 (-1174)))))
+(((*1 *2) (-12 (-5 *2 (-833 (-566))) (-5 *1 (-536))))
+ ((*1 *1) (-12 (-5 *1 (-833 *2)) (-4 *2 (-1099)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-381))))
+ ((*1 *1 *1 *1) (-4 *1 (-547)))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365))))
+ ((*1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-771)))))
+(((*1 *2 *1 *3 *3 *2)
+ (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1214))
+ (-4 *4 (-375 *2)) (-4 *5 (-375 *2))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-289 *3 *2)) (-4 *3 (-1099))
+ (-4 *2 (-1214)))))
+(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
+ (-12 (-5 *4 (-566))
+ (-5 *6
+ (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3873 (-381))))
+ (-5 *7 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
+ (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
+ (-5 *1 (-788))))
+ ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
+ (-12 (-5 *4 (-566))
+ (-5 *6
+ (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3873 (-381))))
+ (-5 *7 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
+ (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
+ (-5 *1 (-788)))))
+(((*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 (-566)) (-5 *5 (-689 (-225))) (-5 *6 (-675 (-225)))
+ (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-750)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-438)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *3 *5 *3 *5 *4 *5 *5 *4 *4 *5 *3)
+ (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566))
+ (-5 *2 (-1035)) (-5 *1 (-756)))))
+(((*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2))
+ (-4 *3 (-558))))
+ ((*1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *1) (-5 *1 (-479))) ((*1 *1) (-4 *1 (-1199))))
(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
- (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
- (-4 *7 (-992 *4)) (-4 *2 (-687 *7 *8 *9))
- (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-687 *4 *5 *6))
- (-4 *8 (-375 *7)) (-4 *9 (-375 *7))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
- (-4 *4 (-375 *2)) (-4 *2 (-308))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-308)) (-4 *3 (-172)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2))
- (-4 *2 (-687 *3 *4 *5))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1053 *2 *3 *4 *5 *6)) (-4 *4 (-1049))
- (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *2 *4)) (-4 *4 (-308)))))
-(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
- (-5 *2 (-1035)) (-5 *1 (-751)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1252 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-901 *2)) (-4 *2 (-1099))))
- ((*1 *1 *2) (-12 (-5 *1 (-901 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *1)
- (-12
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-644 *7)) (-5 *5 (-644 (-644 *8))) (-4 *7 (-850))
+ (-4 *8 (-308)) (-4 *6 (-793)) (-4 *9 (-949 *8 *6 *7))
(-5 *2
- (-644
- (-644
- (-3 (|:| -2628 (-1175))
- (|:| -3121 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566))))))))))
- (-5 *1 (-1179)))))
+ (-2 (|:| |unitPart| *9)
+ (|:| |suPart|
+ (-644 (-2 (|:| -2473 (-1171 *9)) (|:| -2456 (-566)))))))
+ (-5 *1 (-742 *6 *7 *8 *9)) (-5 *3 (-1171 *9)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4417)) (-4 *1 (-235 *3))
- (-4 *3 (-1099))))
- ((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4417)) (-4 *1 (-235 *2)) (-4 *2 (-1099))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-1099))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214))))
- ((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-566)) (-4 *4 (-1099))
- (-5 *1 (-737 *4))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-5 *1 (-737 *2)) (-4 *2 (-1099))))
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214))
+ (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
- (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))))
+ (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4415)) (-4 *1 (-491 *3))
+ (-4 *3 (-1214)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1191 *4 *5))
+ (-4 *4 (-1099)) (-4 *5 (-1099)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-171)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
-(((*1 *1 *1) (-4 *1 (-629)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
+ (-12 (-5 *2 (-2 (|:| |var| (-644 (-1175))) (|:| |pred| (-52))))
+ (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *5 (-1038 (-48)))
+ (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4))
+ (-5 *2 (-420 (-1171 (-48)))) (-5 *1 (-437 *4 *5 *3))
+ (-4 *3 (-1240 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *4 (-1099)) (-5 *2 (-889 *3 *4)) (-5 *1 (-885 *3 *4 *5))
+ (-4 *3 (-1099)) (-4 *5 (-666 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *3 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
+ (-5 *1 (-451 *4 *3 *5 *6)) (-4 *6 (-949 *4 *3 *5)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381)))
+ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381)))
(|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
(-5 *1 (-1174)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-689 *7)) (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5))
- (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793)) (-5 *1 (-924 *4 *5 *6 *7)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792))
- (-4 *2 (-365))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-225))))
- ((*1 *1 *1 *1)
- (-2805 (-12 (-5 *1 (-295 *2)) (-4 *2 (-365)) (-4 *2 (-1214)))
- (-12 (-5 *1 (-295 *2)) (-4 *2 (-475)) (-4 *2 (-1214)))))
- ((*1 *1 *1 *1) (-4 *1 (-365)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-381))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-1124 *3 (-612 *1))) (-4 *3 (-558)) (-4 *3 (-1099))
- (-4 *1 (-432 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-475)))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1264 *3)) (-4 *3 (-351)) (-5 *1 (-530 *3))))
- ((*1 *1 *1 *1) (-5 *1 (-538)))
- ((*1 *1 *2 *3)
- (-12 (-4 *4 (-172)) (-5 *1 (-621 *2 *4 *3)) (-4 *2 (-38 *4))
- (-4 *3 (|SubsetCategory| (-726) *4))))
- ((*1 *1 *1 *2)
- (-12 (-4 *4 (-172)) (-5 *1 (-621 *3 *4 *2)) (-4 *3 (-38 *4))
- (-4 *2 (|SubsetCategory| (-726) *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-634 *2)) (-4 *2 (-172)) (-4 *2 (-365))))
- ((*1 *1 *2 *3)
- (-12 (-4 *4 (-172)) (-5 *1 (-662 *2 *4 *3)) (-4 *2 (-717 *4))
- (-4 *3 (|SubsetCategory| (-726) *4))))
- ((*1 *1 *1 *2)
- (-12 (-4 *4 (-172)) (-5 *1 (-662 *3 *4 *2)) (-4 *3 (-717 *4))
- (-4 *2 (|SubsetCategory| (-726) *4))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
- (-4 *4 (-375 *2)) (-4 *2 (-365))))
- ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1 *1)
- (|partial| -12 (-5 *1 (-866 *2 *3 *4 *5)) (-4 *2 (-365))
- (-4 *2 (-1049)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-771)))
- (-14 *5 (-771))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099))))
- ((*1 *1 *2 *2) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1053 *3 *4 *2 *5 *6)) (-4 *2 (-1049))
- (-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-365))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1271 *2)) (-4 *2 (-365))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *2 (-365)) (-4 *2 (-1049)) (-4 *3 (-850))
- (-4 *4 (-793)) (-14 *6 (-644 *3))
- (-5 *1 (-1276 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-949 *2 *4 *3))
- (-14 *7 (-644 (-771))) (-14 *8 (-771))))
- ((*1 *1 *1 *2)
- (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-365)) (-4 *2 (-1049))
- (-4 *3 (-846)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))))
-(((*1 *1)
- (-12 (-4 *1 (-406)) (-2426 (|has| *1 (-6 -4408)))
- (-2426 (|has| *1 (-6 -4400)))))
- ((*1 *2 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-850))))
- ((*1 *1) (-4 *1 (-844))) ((*1 *1 *1 *1) (-4 *1 (-850)))
- ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850)))))
-(((*1 *1 *1 *1) (-4 *1 (-661))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119))))))
- (-4 *4 (-351)) (-5 *2 (-689 *4)) (-5 *1 (-348 *4)))))
-(((*1 *2)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *2 (-1064 *4 *5 *6)) (-5 *1 (-776 *4 *5 *6 *2 *3))
- (-4 *3 (-1070 *4 *5 *6 *2)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-324 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-131))
- (-4 *3 (-792)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))
- (-5 *2 (-409 (-566))) (-5 *1 (-1020 *4)) (-4 *4 (-1240 (-566))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-454))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-436))
(-5 *2
(-644
- (-2 (|:| |eigval| (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4))))
- (|:| |geneigvec| (-644 (-689 (-409 (-952 *4))))))))
- (-5 *1 (-293 *4)) (-5 *3 (-689 (-409 (-952 *4)))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-927))
- (-5 *2
- (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
- (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
- (-5 *1 (-153))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-927)) (-5 *4 (-409 (-566)))
- (-5 *2
- (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
- (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
- (-5 *1 (-153)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-689 *4)) (-5 *3 (-921)) (-4 *4 (-1049))
- (-5 *1 (-1028 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-644 (-689 *4))) (-5 *3 (-921)) (-4 *4 (-1049))
- (-5 *1 (-1028 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
- ((*1 *1 *1) (-5 *1 (-862))))
-(((*1 *2) (-12 (-5 *2 (-833 (-566))) (-5 *1 (-536))))
- ((*1 *1) (-12 (-5 *1 (-833 *2)) (-4 *2 (-1099)))))
-(((*1 *1 *1 *1) (-4 *1 (-21))) ((*1 *1 *1) (-4 *1 (-21)))
- ((*1 *1 *1 *1) (|partial| -5 *1 (-134)))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-214 *2))
- (-4 *2
- (-13 (-850)
- (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 ((-1269) $))
- (-15 -2509 ((-1269) $)))))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
- ((*1 *1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
- (-4 *4 (-375 *2))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
- (-4 *4 (-375 *2))))
- ((*1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-21))))
- ((*1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-21)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *1 *1 *1) (-4 *1 (-661))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1264 *1)) (-5 *4 (-1 *5 *5)) (-4 *5 (-365))
- (-4 *1 (-724 *5 *6)) (-4 *5 (-172)) (-4 *6 (-1240 *5))
- (-5 *2 (-689 *5)))))
-(((*1 *1) (-5 *1 (-225))) ((*1 *1) (-5 *1 (-381))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-921)) (-5 *2 (-1171 *3)) (-5 *1 (-1188 *3))
- (-4 *3 (-365)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2))
- (-4 *2 (-1255 *3))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-4 *4 (-1240 *3))
- (-4 *5 (-724 *3 *4)) (-5 *1 (-543 *3 *4 *5 *2)) (-4 *2 (-1255 *5))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-5 *1 (-544 *3 *2))
- (-4 *2 (-1255 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147)))
- (-5 *1 (-1151 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *3 (-1218)) (-4 *5 (-1240 *3)) (-4 *6 (-1240 (-409 *5)))
- (-5 *2 (-112)) (-5 *1 (-343 *4 *3 *5 *6)) (-4 *4 (-344 *3 *5 *6))))
- ((*1 *2 *3 *3)
+ (-3 (|:| -2639 (-1175))
+ (|:| -3787 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566)))))))))
+ (-5 *1 (-1179)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4))
+ (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112))))
+ ((*1 *2 *1)
(-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
(-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
-(((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-644 (-612 *2))) (-5 *4 (-1175))
- (-4 *2 (-13 (-27) (-1199) (-432 *5)))
- (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-278 *5 *2)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2))
- (-4 *3 (-558))))
- ((*1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *1) (-5 *1 (-479))) ((*1 *1) (-4 *1 (-1199))))
-(((*1 *1 *1 *1) (-4 *1 (-25))) ((*1 *1 *1 *1) (-5 *1 (-157)))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-214 *2))
- (-4 *2
- (-13 (-850)
- (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 ((-1269) $))
- (-15 -2509 ((-1269) $)))))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-25)) (-4 *2 (-1214))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-25)) (-4 *2 (-1214))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-324 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-131))))
- ((*1 *1 *2 *1)
- (-12 (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *2))
- (-4 *2 (-1240 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850))
- (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4))))
- ((*1 *1 *1 *1) (-5 *1 (-538)))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
- (-4 *4 (-375 *2))))
- ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-25)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-752)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-838))) (-5 *1 (-140)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-952 *4)) (-4 *4 (-1049)) (-4 *4 (-614 *2))
- (-5 *2 (-381)) (-5 *1 (-785 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-952 *5)) (-5 *4 (-921)) (-4 *5 (-1049))
- (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558))
- (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1 (-112) *9)) (-5 *5 (-1 (-112) *9 *9))
+ (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558)) (-4 *7 (-793))
+ (-4 *8 (-850)) (-5 *2 (-2 (|:| |bas| *1) (|:| -3918 (-644 *9))))
+ (-5 *3 (-644 *9)) (-4 *1 (-1207 *6 *7 *8 *9))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-921)) (-4 *5 (-558))
- (-4 *5 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *5))))
+ (|partial| -12 (-5 *4 (-1 (-112) *8 *8)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-2 (|:| |bas| *1) (|:| -3918 (-644 *8))))
+ (-5 *3 (-644 *8)) (-4 *1 (-1207 *5 *6 *7 *8)))))
+(((*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1171 *5)) (-4 *5 (-365)) (-5 *2 (-644 *6))
+ (-5 *1 (-534 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-317 *4)) (-4 *4 (-558)) (-4 *4 (-850))
- (-4 *4 (-614 *2)) (-5 *2 (-381)) (-5 *1 (-785 *4))))
- ((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-317 *5)) (-5 *4 (-921)) (-4 *5 (-558))
- (-4 *5 (-850)) (-4 *5 (-614 *2)) (-5 *2 (-381))
- (-5 *1 (-785 *5)))))
-(((*1 *2 *3 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-571 *3)) (-4 *3 (-1038 (-566)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
+(((*1 *1 *2 *2)
(-12
(-5 *2
- (-2 (|:| |cycle?| (-112)) (|:| -3541 (-771)) (|:| |period| (-771))))
- (-5 *1 (-1155 *4)) (-4 *4 (-1214)) (-5 *3 (-771)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2222 *3)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-4 *4 (-1214)) (-5 *2 (-112))
- (-5 *1 (-1155 *4)))))
-(((*1 *1 *1) (-4 *1 (-629)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1155 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1049))
- (-5 *3 (-409 (-566))) (-5 *1 (-1159 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-409 (-566))))
- (-5 *2 (-2 (|:| -3215 (-1155 *4)) (|:| -3223 (-1155 *4))))
- (-5 *1 (-1161 *4)) (-5 *3 (-1155 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-943 *4)) (-4 *4 (-1049)) (-5 *1 (-1163 *3 *4))
- (-14 *3 (-921)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-225)) (-5 *3 (-771)) (-5 *1 (-226))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-169 (-225))) (-5 *3 (-771)) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1138))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-689 *4)) (-4 *4 (-365)) (-5 *2 (-1171 *4))
- (-5 *1 (-534 *4 *5 *6)) (-4 *5 (-365)) (-4 *6 (-13 (-365) (-848))))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1171 *1)) (-4 *1 (-1012)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-390)) (-5 *1 (-438))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-390)) (-5 *1 (-438)))))
+ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381)))
+ (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
+ (-5 *1 (-1174)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-752)))))
(((*1 *2 *1) (-12 (-5 *2 (-1124 (-566) (-612 (-48)))) (-5 *1 (-48))))
((*1 *2 *1)
(-12 (-4 *3 (-992 *2)) (-4 *4 (-1240 *3)) (-4 *2 (-308))
@@ -7720,32 +7832,45 @@
(-12 (-4 *4 (-172)) (-4 *2 (|SubsetCategory| (-726) *4))
(-5 *1 (-662 *3 *4 *2)) (-4 *3 (-717 *4))))
((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-218))))
- ((*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-441))))
- ((*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-838))))
- ((*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-1114))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-1180))) (-5 *3 (-1180)) (-5 *1 (-1117)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-747)))))
-(((*1 *1 *1) (-4 *1 (-661))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-97)))))
-(((*1 *1) (-5 *1 (-141))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-470)) (-5 *3 (-644 (-264))) (-5 *1 (-1265))))
- ((*1 *1 *1) (-5 *1 (-1265))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-420 *6)) (-4 *6 (-1240 *5))
- (-4 *5 (-1049)) (-5 *2 (-644 *6)) (-5 *1 (-446 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *6))
+ (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-587 *3)) (-4 *3 (-365)))))
+(((*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-1093 (-225)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))))
+(((*1 *2 *2) (-12 (-5 *2 (-689 (-317 (-566)))) (-5 *1 (-1031)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-644 (-1171 (-566)))) (-5 *1 (-191)) (-5 *3 (-566)))))
-(((*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267))))
- ((*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-566)) (-4 *5 (-351)) (-5 *2 (-420 (-1171 (-1171 *5))))
- (-5 *1 (-1212 *5)) (-5 *3 (-1171 (-1171 *5))))))
+ (-12 (-4 *4 (-27))
+ (-4 *4 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-4 *5 (-1240 *4)) (-5 *2 (-644 (-653 (-409 *5))))
+ (-5 *1 (-657 *4 *5)) (-5 *3 (-653 (-409 *5))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-644 (-689 (-566))))
+ (-5 *1 (-1109)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *3 *5)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225)))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-66 FUNCT1))))
+ (-5 *2 (-1035)) (-5 *1 (-753)))))
+(((*1 *1 *2 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381)))
+ (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
+ (-5 *1 (-1174)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566)))))
+ (-4 *5 (-1240 *4))
+ (-5 *2 (-644 (-2 (|:| |deg| (-771)) (|:| -4257 *5))))
+ (-5 *1 (-809 *4 *5 *3 *6)) (-4 *3 (-656 *5))
+ (-4 *6 (-656 (-409 *5))))))
(((*1 *2 *1) (-12 (-5 *2 (-1124 (-566) (-612 (-48)))) (-5 *1 (-48))))
((*1 *2 *1)
(-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4))
@@ -7762,75 +7887,106 @@
(-12 (-4 *3 (-172)) (-4 *2 (-717 *3)) (-5 *1 (-662 *2 *3 *4))
(-4 *4 (|SubsetCategory| (-726) *3))))
((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-531)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-409 (-566))) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-558)) (-4 *8 (-949 *7 *5 *6))
+ (-5 *2 (-2 (|:| -2456 (-771)) (|:| -3223 *9) (|:| |radicand| *9)))
+ (-5 *1 (-953 *5 *6 *7 *8 *9)) (-5 *4 (-771))
+ (-4 *9
+ (-13 (-365)
+ (-10 -8 (-15 -3780 ($ *8)) (-15 -3088 (*8 $)) (-15 -3100 (*8 $))))))))
+(((*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-1093 (-225)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365))
+ (-4 *7 (-1240 (-409 *6)))
+ (-5 *2 (-2 (|:| |answer| *3) (|:| -1777 *3)))
+ (-5 *1 (-564 *5 *6 *7 *3)) (-4 *3 (-344 *5 *6 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365))
+ (-5 *2
+ (-2 (|:| |answer| (-409 *6)) (|:| -1777 (-409 *6))
+ (|:| |specpart| (-409 *6)) (|:| |polypart| *6)))
+ (-5 *1 (-565 *5 *6)) (-5 *3 (-409 *6)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-558))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-558)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112))))
- ((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *1) (-12 (|has| *1 (-6 -4417)) (-4 *1 (-34)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-250))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-566))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-846)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-644 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-744 *3)) (-4 *3 (-172)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-850)) (-4 *5 (-909)) (-4 *6 (-793))
+ (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-420 (-1171 *8)))
+ (-5 *1 (-906 *5 *6 *7 *8)) (-5 *4 (-1171 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5)))
+ (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))))
(((*1 *2 *3)
- (-12 (-14 *4 (-644 (-1175))) (-4 *5 (-454))
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-344 *4 *5 *6)) (-4 *4 (-1218))
+ (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5)))
+ (-5 *2 (-2 (|:| |num| (-689 *5)) (|:| |den| *5))))))
+(((*1 *1 *2 *2)
+ (-12
(-5 *2
- (-2 (|:| |glbase| (-644 (-247 *4 *5))) (|:| |glval| (-644 (-566)))))
- (-5 *1 (-631 *4 *5)) (-5 *3 (-644 (-247 *4 *5))))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *4 (-13 (-1049) (-717 (-409 (-566)))))
- (-4 *5 (-850)) (-5 *1 (-1280 *4 *5 *2)) (-4 *2 (-1285 *5 *4)))))
+ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381)))
+ (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
+ (-5 *1 (-1174)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1138))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1159 *4)) (-4 *4 (-1049))
- (-5 *3 (-566)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *3 (-644 (-566)))
- (-5 *1 (-883)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-538)))))
-(((*1 *2 *3 *3 *3 *4 *5)
- (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1240 *6))
- (-4 *6 (-13 (-365) (-147) (-1038 *4))) (-5 *4 (-566))
+ (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-454))
+ (-5 *2 (-483 *4 *5)) (-5 *1 (-631 *4 *5)))))
+(((*1 *2 *1) (|partial| -12 (-5 *1 (-367 *2)) (-4 *2 (-1099))))
+ ((*1 *2 *1) (|partial| -12 (-5 *2 (-1157)) (-5 *1 (-1195)))))
+(((*1 *1 *1 *1) (-4 *1 (-661))))
+(((*1 *2 *1 *3 *2)
+ (-12 (-5 *3 (-771)) (-5 *1 (-213 *4 *2)) (-14 *4 (-921))
+ (-4 *2 (-1099)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-183)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-4 *3 (-1064 *6 *7 *8))
(-5 *2
- (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
- (|:| -3525
- (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
- (|:| |beta| *3)))))
- (-5 *1 (-1015 *6 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112))))
- ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-752)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
- ((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-551))))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-689 *2)) (-5 *4 (-771))
- (-4 *2 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))))
- (-4 *5 (-1240 *2)) (-5 *1 (-501 *2 *5 *6)) (-4 *6 (-411 *2 *5)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *1) (-5 *1 (-1062))))
-(((*1 *1) (-5 *1 (-561))))
-(((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-701))))
- ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-701)))))
-(((*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-281)))))
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1068 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-4 *3 (-1064 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1144 *6 *7 *8 *3 *4)) (-4 *4 (-1108 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-375 *3)) (-4 *3 (-1214)) (-4 *3 (-850)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-375 *4)) (-4 *4 (-1214))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1175)) (-5 *2 (-1 *6 *5)) (-5 *1 (-706 *4 *5 *6))
+ (-4 *4 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)))))
(((*1 *2 *3)
(|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1214))))
((*1 *1 *2)
@@ -7908,24 +8064,24 @@
((*1 *1 *2)
(|partial| -2805
(-12 (-5 *2 (-952 *3))
- (-12 (-2426 (-4 *3 (-38 (-409 (-566)))))
- (-2426 (-4 *3 (-38 (-566)))) (-4 *5 (-614 (-1175))))
+ (-12 (-2436 (-4 *3 (-38 (-409 (-566)))))
+ (-2436 (-4 *3 (-38 (-566)))) (-4 *5 (-614 (-1175))))
(-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793))
(-4 *5 (-850)))
(-12 (-5 *2 (-952 *3))
- (-12 (-2426 (-4 *3 (-547))) (-2426 (-4 *3 (-38 (-409 (-566)))))
+ (-12 (-2436 (-4 *3 (-547))) (-2436 (-4 *3 (-38 (-409 (-566)))))
(-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175))))
(-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793))
(-4 *5 (-850)))
(-12 (-5 *2 (-952 *3))
- (-12 (-2426 (-4 *3 (-992 (-566)))) (-4 *3 (-38 (-409 (-566))))
+ (-12 (-2436 (-4 *3 (-992 (-566)))) (-4 *3 (-38 (-409 (-566))))
(-4 *5 (-614 (-1175))))
(-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793))
(-4 *5 (-850)))))
((*1 *1 *2)
(|partial| -2805
(-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5))
- (-12 (-2426 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566)))
+ (-12 (-2436 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566)))
(-4 *5 (-614 (-1175))))
(-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)))
(-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5))
@@ -7935,19 +8091,397 @@
(|partial| -12 (-5 *2 (-952 (-409 (-566)))) (-4 *1 (-1064 *3 *4 *5))
(-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175)))
(-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1179)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157))
- (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112))))
- ((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))
+ (-5 *2 (-644 (-409 (-566)))) (-5 *1 (-1020 *4))
+ (-4 *4 (-1240 (-566))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-5 *1 (-488 *2)) (-4 *2 (-1240 (-566))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -2662 *4)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792))
+ (-4 *2 (-365))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-225))))
+ ((*1 *1 *1 *1)
+ (-2805 (-12 (-5 *1 (-295 *2)) (-4 *2 (-365)) (-4 *2 (-1214)))
+ (-12 (-5 *1 (-295 *2)) (-4 *2 (-475)) (-4 *2 (-1214)))))
+ ((*1 *1 *1 *1) (-4 *1 (-365)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-381))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-1124 *3 (-612 *1))) (-4 *3 (-558)) (-4 *3 (-1099))
+ (-4 *1 (-432 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-475)))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1264 *3)) (-4 *3 (-351)) (-5 *1 (-530 *3))))
+ ((*1 *1 *1 *1) (-5 *1 (-538)))
+ ((*1 *1 *2 *3)
+ (-12 (-4 *4 (-172)) (-5 *1 (-621 *2 *4 *3)) (-4 *2 (-38 *4))
+ (-4 *3 (|SubsetCategory| (-726) *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *4 (-172)) (-5 *1 (-621 *3 *4 *2)) (-4 *3 (-38 *4))
+ (-4 *2 (|SubsetCategory| (-726) *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-634 *2)) (-4 *2 (-172)) (-4 *2 (-365))))
+ ((*1 *1 *2 *3)
+ (-12 (-4 *4 (-172)) (-5 *1 (-662 *2 *4 *3)) (-4 *2 (-717 *4))
+ (-4 *3 (|SubsetCategory| (-726) *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *4 (-172)) (-5 *1 (-662 *3 *4 *2)) (-4 *3 (-717 *4))
+ (-4 *2 (|SubsetCategory| (-726) *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
+ (-4 *4 (-375 *2)) (-4 *2 (-365))))
+ ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-5 *1 (-866 *2 *3 *4 *5)) (-4 *2 (-365))
+ (-4 *2 (-1049)) (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-771)))
+ (-14 *5 (-771))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1053 *3 *4 *2 *5 *6)) (-4 *2 (-1049))
+ (-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-365))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1271 *2)) (-4 *2 (-365))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *2 (-365)) (-4 *2 (-1049)) (-4 *3 (-850))
+ (-4 *4 (-793)) (-14 *6 (-644 *3))
+ (-5 *1 (-1276 *2 *3 *4 *5 *6 *7 *8)) (-4 *5 (-949 *2 *4 *3))
+ (-14 *7 (-644 (-771))) (-14 *8 (-771))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-365)) (-4 *2 (-1049))
+ (-4 *3 (-846)))))
+(((*1 *1 *1 *1) (-4 *1 (-661))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-375 *2))
+ (-4 *5 (-375 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-4 *2 (-1099)) (-5 *1 (-213 *4 *2))
+ (-14 *4 (-921))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-289 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1214))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *2 *6 *7))
+ (-4 *6 (-238 *5 *2)) (-4 *7 (-238 *4 *2)) (-4 *2 (-1049)))))
+(((*1 *1) (-5 *1 (-144)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-264)))))
+(((*1 *1) (-5 *1 (-1081))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-644 (-1171 *7))) (-5 *3 (-1171 *7))
+ (-4 *7 (-949 *5 *6 *4)) (-4 *5 (-909)) (-4 *6 (-793))
+ (-4 *4 (-850)) (-5 *1 (-906 *5 *6 *4 *7)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-892 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1099))
+ (-4 *5 (-1214)) (-5 *1 (-890 *4 *5))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-892 *4)) (-5 *3 (-644 (-1 (-112) *5))) (-4 *4 (-1099))
+ (-4 *5 (-1214)) (-5 *1 (-890 *4 *5))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-892 *5)) (-5 *3 (-644 (-1175)))
+ (-5 *4 (-1 (-112) (-644 *6))) (-4 *5 (-1099)) (-4 *6 (-1214))
+ (-5 *1 (-890 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1214)) (-4 *4 (-1099))
+ (-5 *1 (-937 *4 *2 *5)) (-4 *2 (-432 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 (-1 (-112) *5))) (-4 *5 (-1214)) (-4 *4 (-1099))
+ (-5 *1 (-937 *4 *2 *5)) (-4 *2 (-432 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1175)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1214))
+ (-5 *2 (-317 (-566))) (-5 *1 (-938 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1175)) (-5 *4 (-644 (-1 (-112) *5))) (-4 *5 (-1214))
+ (-5 *2 (-317 (-566))) (-5 *1 (-938 *5))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-1 (-112) (-644 *6)))
+ (-4 *6 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))) (-4 *4 (-1099))
+ (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4))))
+ (-5 *1 (-1075 *4 *5 *6)))))
+(((*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267))))
+ ((*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-454)) (-4 *4 (-850))
+ (-4 *5 (-793)) (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1099)) (-5 *1 (-964 *3 *2)) (-4 *3 (-1099)))))
+(((*1 *1 *1 *1) (-4 *1 (-21))) ((*1 *1 *1) (-4 *1 (-21)))
+ ((*1 *1 *1 *1) (|partial| -5 *1 (-134)))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-214 *2))
+ (-4 *2
+ (-13 (-850)
+ (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 ((-1269) $))
+ (-15 -3018 ((-1269) $)))))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
+ ((*1 *1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
+ (-4 *4 (-375 *2))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
+ (-4 *4 (-375 *2))))
+ ((*1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-21))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-21)))))
(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-218))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-441))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-838))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1117)) (-5 *1 (-1114))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-1180))) (-5 *3 (-1180)) (-5 *1 (-1117)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558))
+ (-5 *2 (-2 (|:| -3223 *4) (|:| -3644 *3) (|:| -4228 *3)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-1064 *3 *4 *5))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-558)) (-4 *3 (-1049))
+ (-5 *2 (-2 (|:| -3223 *3) (|:| -3644 *1) (|:| -4228 *1)))
+ (-4 *1 (-1240 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-921)) (-4 *1 (-238 *3 *4)) (-4 *4 (-1049))
+ (-4 *4 (-1214))))
+ ((*1 *1 *2)
+ (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172))
+ (-4 *5 (-238 (-3020 *3) (-771)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2208 *2) (|:| -2456 *5))
+ (-2 (|:| -2208 *2) (|:| -2456 *5))))
+ (-5 *1 (-463 *3 *4 *2 *5 *6 *7)) (-4 *2 (-850))
+ (-4 *7 (-949 *4 *5 (-864 *3)))))
+ ((*1 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4414)) (-4 *1 (-491 *4))
+ (-4 *4 (-1214)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6))
+ (-5 *2 (-644 (-2 (|:| -1713 *1) (|:| -3537 (-644 *7)))))
+ (-5 *3 (-644 *7)) (-4 *1 (-1207 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-327 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049))
+ (-4 *2 (-454))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 *4)) (-4 *4 (-1240 (-566))) (-5 *2 (-644 (-566)))
+ (-5 *1 (-488 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-454))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850)) (-4 *3 (-454)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-920)) (-5 *2 (-2 (|:| -3223 (-644 *1)) (|:| -4152 *1)))
+ (-5 *3 (-644 *1)))))
+(((*1 *1 *1 *1) (-4 *1 (-25))) ((*1 *1 *1 *1) (-5 *1 (-157)))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-214 *2))
+ (-4 *2
+ (-13 (-850)
+ (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 ((-1269) $))
+ (-15 -3018 ((-1269) $)))))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-25)) (-4 *2 (-1214))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-25)) (-4 *2 (-1214))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-324 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-131))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *2))
+ (-4 *2 (-1240 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850))
+ (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4))))
+ ((*1 *1 *1 *1) (-5 *1 (-538)))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
+ (-4 *4 (-375 *2))))
+ ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-25)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *1) (-12 (-5 *1 (-1209 *2)) (-4 *2 (-974)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *3 (-3 (-409 (-952 *6)) (-1164 (-1175) (-952 *6))))
+ (-5 *5 (-771)) (-4 *6 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *6)))))
+ (-5 *1 (-293 *6)) (-5 *4 (-689 (-409 (-952 *6))))))
+ ((*1 *2 *3 *4)
(-12
- (-5 *2
- (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-689 *3))))
- (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))))
- (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))))
+ (-5 *3
+ (-2 (|:| |eigval| (-3 (-409 (-952 *5)) (-1164 (-1175) (-952 *5))))
+ (|:| |eigmult| (-771)) (|:| |eigvec| (-644 *4))))
+ (-4 *5 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *5)))))
+ (-5 *1 (-293 *5)) (-5 *4 (-689 (-409 (-952 *5)))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049))
+ (-5 *2 (-644 (-644 (-644 (-943 *3))))))))
+(((*1 *1 *1 *1) (-4 *1 (-761))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-1214)) (-5 *1 (-182 *3 *2))
+ (-4 *2 (-674 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-538)) (-5 *1 (-537 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-538)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
+ (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-169 (-225))))
+ (-5 *2 (-1035)) (-5 *1 (-754)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1049))
+ (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285)))
+ (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1157) (-774))) (-5 *1 (-114)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *1 *1) (-4 *1 (-661))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-771))
+ (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-862)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 (-771))
+ (-14 *4 (-771)) (-4 *5 (-172)))))
+(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266))))
+ ((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-1075 *3 *4 *5))) (-4 *3 (-1099))
+ (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3))))
+ (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3))))
+ (-5 *1 (-1076 *3 *4 *5)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4)
+ (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035))
+ (-5 *1 (-756)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2))
+ (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4415)))))))
+(((*1 *2 *1) (-12 (|has| *1 (-6 -4414)) (-4 *1 (-34)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-250))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-566))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-846)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-644 (-952 *3))) (-4 *3 (-454))
+ (-5 *1 (-362 *3 *4)) (-14 *4 (-644 (-1175)))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-644 (-780 *3 (-864 *4)))) (-4 *3 (-454))
+ (-14 *4 (-644 (-1175))) (-5 *1 (-628 *3 *4)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-214 *4))
+ (-4 *4
+ (-13 (-850)
+ (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 (*2 $))
+ (-15 -3018 (*2 $)))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1269)) (-5 *1 (-214 *3))
+ (-4 *3
+ (-13 (-850)
+ (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 (*2 $))
+ (-15 -3018 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-504)))))
+(((*1 *1) (-5 *1 (-55))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1035)))))
+(((*1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
+ (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-646 *3)) (-4 *3 (-1057)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1051 *3)) (-4 *3 (-1057)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365)))
+ (-4 *3 (-1240 *4)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-419 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1035)) (-5 *3 (-1175)) (-5 *1 (-192)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175)))
+ (-4 *5 (-558)) (-5 *2 (-644 (-644 (-952 *5)))) (-5 *1 (-1183 *5)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112))))
+ ((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
+ ((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3 *3 *3 *3 *5 *3 *6)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-70 APROD)))) (-5 *4 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-756)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-420 *2)) (-4 *2 (-308)) (-5 *1 (-914 *2))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-147))) (-5 *2 (-52)) (-5 *1 (-915 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-420 (-952 *6))) (-5 *5 (-1175)) (-5 *3 (-952 *6))
+ (-4 *6 (-13 (-308) (-147))) (-5 *2 (-52)) (-5 *1 (-915 *6)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-112)) (-5 *5 (-689 (-225)))
+ (-5 *2 (-1035)) (-5 *1 (-755)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1) (-12 (-5 *2 (-183)) (-5 *1 (-281)))))
+(((*1 *2 *3 *4 *4 *5 *3 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1155 *4)) (-5 *3 (-1 *4 (-566))) (-4 *4 (-1049))
+ (-5 *1 (-1159 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-905 (-566))) (-5 *4 (-566)) (-5 *2 (-689 *4))
+ (-5 *1 (-1028 *5)) (-4 *5 (-1049))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1028 *4))
+ (-4 *4 (-1049))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-905 (-566)))) (-5 *4 (-566))
+ (-5 *2 (-644 (-689 *4))) (-5 *1 (-1028 *5)) (-4 *5 (-1049))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-644 (-566)))) (-5 *2 (-644 (-689 (-566))))
+ (-5 *1 (-1028 *4)) (-4 *4 (-1049)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112))))
+ ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-112)) (-5 *5 (-689 (-169 (-225))))
+ (-5 *2 (-1035)) (-5 *1 (-755)))))
(((*1 *1 *1 *2)
(|partial| -12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-558))))
((*1 *1 *1 *2)
@@ -7969,223 +8503,440 @@
(-4 *5 (-238 *4 *2)) (-4 *6 (-238 *3 *2)) (-4 *2 (-558))))
((*1 *2 *2 *2)
(|partial| -12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
-(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
- (|partial| -12 (-5 *4 (-644 *11)) (-5 *5 (-644 (-1171 *9)))
- (-5 *6 (-644 *9)) (-5 *7 (-644 *12)) (-5 *8 (-644 (-771)))
- (-4 *11 (-850)) (-4 *9 (-308)) (-4 *12 (-949 *9 *10 *11))
- (-4 *10 (-793)) (-5 *2 (-644 (-1171 *12)))
- (-5 *1 (-707 *10 *11 *9 *12)) (-5 *3 (-1171 *12)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-276)))))
-(((*1 *2 *2) (-12 (-5 *1 (-961 *2)) (-4 *2 (-547)))))
+(((*1 *2 *1)
+ (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172))
+ (-4 *5 (-238 (-3020 *3) (-771)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2208 *2) (|:| -2456 *5))
+ (-2 (|:| -2208 *2) (|:| -2456 *5))))
+ (-4 *2 (-850)) (-5 *1 (-463 *3 *4 *2 *5 *6 *7))
+ (-4 *7 (-949 *4 *5 (-864 *3))))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-365)) (-5 *1 (-659 *4 *2))
+ (-4 *2 (-656 *4)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218))
+ (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))))
+(((*1 *1) (-5 *1 (-331))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-438)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-866 *4 *5 *6 *7))
- (-4 *4 (-1049)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 *3))
- (-14 *7 *3)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *4 (-1049)) (-4 *5 (-850)) (-4 *6 (-793))
- (-14 *8 (-644 *5)) (-5 *2 (-1269))
- (-5 *1 (-1276 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-949 *4 *6 *5))
- (-14 *9 (-644 *3)) (-14 *10 *3))))
-(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1099))))
- ((*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1099)))))
+ (-12 (-4 *4 (-850)) (-5 *2 (-1186 (-644 *4))) (-5 *1 (-1185 *4))
+ (-5 *3 (-644 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-493)) (-5 *2 (-691 (-581))) (-5 *1 (-581)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5))
+ (-4 *3 (-1240 *4))
+ (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))))
(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-921)) (-4 *1 (-406))))
((*1 *1 *2 *2) (-12 (-5 *2 (-566)) (-4 *1 (-406))))
((*1 *2 *1)
(-12 (-4 *1 (-1102 *3 *4 *5 *2 *6)) (-4 *3 (-1099)) (-4 *4 (-1099))
(-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-747)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1049)) (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-644 *1)) (-4 *1 (-432 *4))
+ (-4 *4 (-1099))))
+ ((*1 *1 *2 *1 *1 *1 *1)
+ (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099))))
+ ((*1 *1 *2 *1 *1 *1)
+ (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1175)) (-4 *1 (-432 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-1192)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112))))
- ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-903 *3)) (-4 *3 (-1099)) (-5 *2 (-112))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
+ ((*1 *1 *1 *1) (-5 *1 (-862))))
(((*1 *2 *1 *1)
(|partial| -12 (-5 *2 (-2 (|:| |lm| (-819 *3)) (|:| |rm| (-819 *3))))
(-5 *1 (-819 *3)) (-4 *3 (-850))))
((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-486 *3)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-308)) (-4 *3 (-992 *2)) (-4 *4 (-1240 *3))
- (-5 *1 (-415 *2 *3 *4 *5)) (-4 *5 (-13 (-411 *3 *4) (-1038 *3))))))
+(((*1 *2 *3 *3 *3 *4 *5 *4 *6)
+ (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225)))
+ (-5 *5 (-1093 (-225))) (-5 *6 (-566)) (-5 *2 (-1209 (-926)))
+ (-5 *1 (-319))))
+ ((*1 *2 *3 *3 *3 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225)))
+ (-5 *5 (-1093 (-225))) (-5 *6 (-566)) (-5 *7 (-1157))
+ (-5 *2 (-1209 (-926))) (-5 *1 (-319))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225)))
+ (-5 *5 (-1093 (-225))) (-5 *6 (-225)) (-5 *7 (-566))
+ (-5 *2 (-1209 (-926))) (-5 *1 (-319))))
+ ((*1 *2 *3 *3 *3 *4 *5 *6 *7 *8)
+ (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225)))
+ (-5 *5 (-1093 (-225))) (-5 *6 (-225)) (-5 *7 (-566)) (-5 *8 (-1157))
+ (-5 *2 (-1209 (-926))) (-5 *1 (-319)))))
+(((*1 *2 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-751)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 *4))
+ (-5 *2 (-2 (|:| |radicand| (-409 *5)) (|:| |deg| (-771))))
+ (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-862))))
+ ((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-962)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930)))))
(((*1 *2 *3 *1)
- (-12 (-5 *3 (-508)) (-5 *2 (-644 (-965))) (-5 *1 (-292)))))
-(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
- (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225)))
- (-5 *2 (-1035)) (-5 *1 (-757)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850))
- (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))))
-(((*1 *1) (-4 *1 (-34))) ((*1 *1) (-5 *1 (-292)))
- ((*1 *1) (-5 *1 (-862)))
- ((*1 *1)
- (-12 (-4 *2 (-454)) (-4 *3 (-850)) (-4 *4 (-793))
- (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3))))
- ((*1 *1) (-5 *1 (-1084)))
- ((*1 *1)
- (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
- (-4 *3 (-13 (-1099) (-34)))))
- ((*1 *1) (-5 *1 (-1178))) ((*1 *1) (-5 *1 (-1179))))
-(((*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1178)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *3 *1 *4)
- (-12 (-5 *3 (-1139 *5 *6)) (-5 *4 (-1 (-112) *6 *6))
- (-4 *5 (-13 (-1099) (-34))) (-4 *6 (-13 (-1099) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1140 *5 *6)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-623 *4 *5))
- (-5 *3
- (-1 (-2 (|:| |ans| *4) (|:| -4368 *4) (|:| |sol?| (-112)))
- (-566) *4))
- (-4 *4 (-365)) (-4 *5 (-1240 *4)) (-5 *1 (-576 *4 *5)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
- (-5 *1 (-1071 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
- (-5 *1 (-1107 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+ (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1175)) (-4 *5 (-365)) (-5 *2 (-1155 (-1155 (-952 *5))))
- (-5 *1 (-1272 *5)) (-5 *4 (-1155 (-952 *5))))))
-(((*1 *1 *1) (-5 *1 (-1062))))
-(((*1 *1) (-5 *1 (-141))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *3) (-12 (-5 *3 (-493)) (-5 *2 (-691 (-581))) (-5 *1 (-581)))))
+ (-12 (-5 *3 (-1171 *2)) (-4 *2 (-949 (-409 (-952 *6)) *5 *4))
+ (-5 *1 (-732 *5 *4 *6 *2)) (-4 *5 (-793))
+ (-4 *4 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $)))))
+ (-4 *6 (-558)))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-644 (-1175))) (-14 *5 (-771))
+ (-5 *2
+ (-644
+ (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
+ (-247 *4 (-409 (-566))))))
+ (-5 *1 (-507 *4 *5))
+ (-5 *3
+ (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
+ (-247 *4 (-409 (-566))))))))
+(((*1 *2)
+ (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-419 *3)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-850)) (-5 *2 (-112))))
+ ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-903 *3)) (-4 *3 (-1099)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-295 (-833 *3)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *2 (-833 *3)) (-5 *1 (-636 *5 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-295 (-833 (-952 *5)))) (-4 *5 (-454))
+ (-5 *2 (-833 (-409 (-952 *5)))) (-5 *1 (-637 *5))
+ (-5 *3 (-409 (-952 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-295 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5)))
+ (-4 *5 (-454)) (-5 *2 (-833 *3)) (-5 *1 (-637 *5)))))
(((*1 *1 *1) (-5 *1 (-1062))))
-(((*1 *2 *3) (-12 (-5 *3 (-822)) (-5 *2 (-52)) (-5 *1 (-829)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-644 (-171)))))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214))))
- ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436))))
- ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1026 *3)) (-4 *3 (-1214)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
+ (-12 (-5 *2 (-644 (-1200 *3))) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))))
+ (-5 *1 (-205)))))
+(((*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267))))
+ ((*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6))
+ (-5 *2 (-2 (|:| |bas| (-478 *4 *5 *6 *7)) (|:| -3918 (-644 *7))))
+ (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172))
+ (-4 *5 (-1240 *4)) (-5 *2 (-689 *4))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-4 *5 (-1240 *4)) (-5 *2 (-689 *4))
+ (-5 *1 (-410 *3 *4 *5)) (-4 *3 (-411 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3))
+ (-5 *2 (-689 *3)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-689 *6)) (-5 *5 (-1 (-420 (-1171 *6)) (-1171 *6)))
+ (-4 *6 (-365))
+ (-5 *2
+ (-644
+ (-2 (|:| |outval| *7) (|:| |outmult| (-566))
+ (|:| |outvect| (-644 (-689 *7))))))
+ (-5 *1 (-534 *6 *7 *4)) (-4 *7 (-365)) (-4 *4 (-13 (-365) (-848))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-644 (-943 (-225)))))
+ (-5 *2 (-644 (-1093 (-225)))) (-5 *1 (-928)))))
(((*1 *1 *1 *1) (-4 *1 (-308))) ((*1 *1 *1 *1) (-5 *1 (-771)))
((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5))
- (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-1277 *3 *4 *5 *6))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558))
- (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1277 *5 *6 *7 *8)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
-(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-774)) (-5 *1 (-114))))
- ((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-774)) (-5 *1 (-114)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-862))))
- ((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-962)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1125 *4 *3 *5))) (-4 *4 (-38 (-409 (-566))))
- (-4 *4 (-1049)) (-4 *3 (-850)) (-5 *1 (-1125 *4 *3 *5))
- (-4 *5 (-949 *4 (-533 *3) *3))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1 (-1208 *4))) (-5 *3 (-1175)) (-5 *1 (-1208 *4))
- (-4 *4 (-38 (-409 (-566)))) (-4 *4 (-1049)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
+ (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-644 *5) *6))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5))
+ (-5 *2 (-644 (-2 (|:| |poly| *6) (|:| -4257 *3))))
+ (-5 *1 (-809 *5 *6 *3 *7)) (-4 *3 (-656 *6))
+ (-4 *7 (-656 (-409 *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 (-644 *5) *6))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-4 *6 (-1240 *5))
+ (-5 *2 (-644 (-2 (|:| |poly| *6) (|:| -4257 (-654 *6 (-409 *6))))))
+ (-5 *1 (-812 *5 *6)) (-5 *3 (-654 *6 (-409 *6))))))
+(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-393)))))
+(((*1 *2 *2 *3)
+ (-12
+ (-5 *2
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *4))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *4)))))))
+ (-5 *3 (-644 *7)) (-4 *4 (-13 (-308) (-147)))
+ (-4 *7 (-949 *4 *6 *5)) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793)) (-5 *1 (-924 *4 *5 *6 *7)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
+(((*1 *1 *1) (-4 *1 (-35)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
(((*1 *2 *3 *4)
(-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
(-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *4))))
- (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-921))
- (-5 *2 (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119))))))
- (-5 *1 (-348 *4)) (-4 *4 (-351)))))
-(((*1 *2 *1 *1)
- (-12
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4))))
+ (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-1175)) (-5 *6 (-112))
+ (-4 *7 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
+ (-4 *3 (-13 (-1199) (-959) (-29 *7)))
(-5 *2
- (-2 (|:| |polnum| (-782 *3)) (|:| |polden| *3) (|:| -1812 (-771))))
- (-5 *1 (-782 *3)) (-4 *3 (-1049))))
+ (-3 (|:| |f1| (-843 *3)) (|:| |f2| (-644 (-843 *3)))
+ (|:| |fail| "failed") (|:| |pole| "potentialPole")))
+ (-5 *1 (-219 *7 *3)) (-5 *5 (-843 *3)))))
+(((*1 *2 *3 *2)
+ (|partial| -12 (-5 *2 (-1264 *4)) (-5 *3 (-689 *4)) (-4 *4 (-365))
+ (-5 *1 (-667 *4))))
+ ((*1 *2 *3 *2)
+ (|partial| -12 (-4 *4 (-365))
+ (-4 *5 (-13 (-375 *4) (-10 -7 (-6 -4415))))
+ (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4415))))
+ (-5 *1 (-668 *4 *5 *2 *3)) (-4 *3 (-687 *4 *5 *2))))
+ ((*1 *2 *3 *2 *4 *5)
+ (|partial| -12 (-5 *4 (-644 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-365))
+ (-5 *1 (-814 *2 *3)) (-4 *3 (-656 *2))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
+ ((*1 *1 *2 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436))))
+ ((*1 *1 *1 *1) (-5 *1 (-862)))
((*1 *2 *1 *1)
- (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -1812 (-771))))
- (-4 *1 (-1064 *3 *4 *5)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1026 *3)) (-4 *3 (-1214)))))
(((*1 *1 *1 *1) (-4 *1 (-308))) ((*1 *1 *1 *1) (-5 *1 (-771)))
((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *5 *5))
- (-4 *5 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *2
- (-2 (|:| |solns| (-644 *5))
- (|:| |maps| (-644 (-2 (|:| |arg| *5) (|:| |res| *5))))))
- (-5 *1 (-1127 *3 *5)) (-4 *3 (-1240 *5)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049))
- (-5 *1 (-1159 *4))))
- ((*1 *1 *2 *2 *1)
- (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049))
- (-14 *4 (-1175)) (-14 *5 *3))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049))
+ (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-644 (-644 *3)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-644 (-644 *5)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-644 *3))) (-5 *1 (-1186 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3 *3 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-225) (-225) (-225)))
+ (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined"))
+ (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225)))
+ (-5 *1 (-697))))
+ ((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *3 (-1 (-943 (-225)) (-225) (-225))) (-5 *4 (-1093 (-225)))
+ (-5 *5 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-697))))
+ ((*1 *2 *2 *3 *4 *4 *5)
+ (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-1 (-943 (-225)) (-225) (-225)))
+ (-5 *4 (-1093 (-225))) (-5 *5 (-644 (-264))) (-5 *1 (-697)))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006))))
+ ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))))
(((*1 *2) (-12 (-5 *2 (-843 (-566))) (-5 *1 (-536))))
((*1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-1099)))))
+(((*1 *1 *1) (-4 *1 (-35)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *8))
+ (-5 *4 (-689 (-1171 *8))) (-4 *5 (-1049)) (-4 *8 (-1049))
+ (-4 *6 (-1240 *5)) (-5 *2 (-689 *6)) (-5 *1 (-503 *5 *6 *7 *8))
+ (-4 *7 (-1240 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *1 *1) (-4 *1 (-303))) ((*1 *1 *1) (-4 *1 (-303))))
+(((*1 *1 *2 *2 *2)
+ (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199)))))
+ ((*1 *2 *1 *3 *4 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
+(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1220))))))
+(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-566)) (-5 *1 (-571 *3)) (-4 *3 (-1038 *2)))))
-(((*1 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-448)) (-5 *3 (-566)))))
-(((*1 *2 *3) (-12 (-5 *3 (-841)) (-5 *2 (-1035)) (-5 *1 (-840))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-317 (-381)))) (-5 *4 (-644 (-381)))
- (-5 *2 (-1035)) (-5 *1 (-840)))))
-(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-1049)) (-4 *4 (-172))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049))
- (-4 *3 (-172)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-771)) (-5 *1 (-1100 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
-(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-566))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))
- (-5 *2 (-1035)) (-5 *1 (-748)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1175))
- (-4 *5 (-13 (-558) (-1038 (-566)) (-147)))
- (-5 *2
- (-2 (|:| -2806 (-409 (-952 *5))) (|:| |coeff| (-409 (-952 *5)))))
- (-5 *1 (-572 *5)) (-5 *3 (-409 (-952 *5))))))
-(((*1 *2 *2) (-12 (-5 *1 (-961 *2)) (-4 *2 (-547)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-4 *2 (-1099))
- (-5 *1 (-889 *4 *2)))))
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-2 (|:| -1746 (-114)) (|:| |w| (-225)))) (-5 *1 (-204)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
(((*1 *2) (-12 (-5 *2 (-843 (-566))) (-5 *1 (-536))))
((*1 *1) (-12 (-5 *1 (-843 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1157)) (-5 *1 (-306)))))
-(((*1 *2 *3 *1)
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
+ (-5 *2 (-1264 (-689 *4)))))
+ ((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-1264 (-689 *4))) (-5 *1 (-418 *3 *4))
+ (-4 *3 (-419 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-1264 (-689 *3)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-1175))) (-4 *5 (-365))
+ (-5 *2 (-1264 (-689 (-409 (-952 *5))))) (-5 *1 (-1085 *5))
+ (-5 *4 (-689 (-409 (-952 *5))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-1175))) (-4 *5 (-365))
+ (-5 *2 (-1264 (-689 (-952 *5)))) (-5 *1 (-1085 *5))
+ (-5 *4 (-689 (-952 *5)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-689 *4))) (-4 *4 (-365))
+ (-5 *2 (-1264 (-689 *4))) (-5 *1 (-1085 *4)))))
+(((*1 *1 *1) (-4 *1 (-35)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2))
+ (-4 *2 (-1240 *4))))
+ ((*1 *2 *2 *3 *2 *3)
+ (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-317 (-225))) (-5 *1 (-210)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-152 *2 *3 *4)) (-14 *2 (-921)) (-4 *3 (-365))
+ (-14 *4 (-993 *2 *3))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7))
+ (-4 *3 (-1240 *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 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172))
+ (-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 (-718 *2)) (-4 *2 (-365))))
+ ((*1 *1) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365))))
+ ((*1 *1 *1) (|partial| -4 *1 (-722)))
+ ((*1 *1 *1) (|partial| -4 *1 (-726)))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
+ (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-4 *1 (-1067 *3 *2)) (-4 *3 (-13 (-848) (-365)))
+ (-4 *2 (-1240 *3))))
+ ((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-965))) (-5 *1 (-109))))
+ ((*1 *2 *1) (-12 (-5 *2 (-45 (-1157) (-774))) (-5 *1 (-114)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-107 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1084))) (-5 *1 (-292)))))
+(((*1 *2 *3 *3 *1)
(-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1))
+ (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-3 *3 (-644 *1)))
(-4 *1 (-1070 *4 *5 *6 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-351)) (-5 *2 (-958 (-1171 *4))) (-5 *1 (-359 *4))
- (-5 *3 (-1171 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1264 (-1264 (-566)))) (-5 *1 (-468)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218))
+ (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))))
+(((*1 *1 *1) (-4 *1 (-1059)))
+ ((*1 *1 *1 *2 *2)
+ (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1179)))))
+(((*1 *1 *1) (-4 *1 (-35)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175))
+ (-14 *4 *2))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365)))
+ (-4 *3 (-1240 *4)) (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-144))))
+ ((*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-144)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558))
+ (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3))
+ (-4 *2
+ (-13 (-365) (-303)
+ (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $))
+ (-15 -3100 ((-1124 *3 (-612 $)) $))
+ (-15 -3780 ($ (-1124 *3 (-612 $))))))))))
(((*1 *1 *2 *1) (-12 (-4 *1 (-23)) (-5 *2 (-771))))
((*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-921))))
((*1 *1 *1 *1)
@@ -8216,10 +8967,10 @@
((*1 *1 *2 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099))))
((*1 *1 *2 *1)
(-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172))
- (-4 *6 (-238 (-2997 *3) (-771)))
+ (-4 *6 (-238 (-3020 *3) (-771)))
(-14 *7
- (-1 (-112) (-2 (|:| -2168 *5) (|:| -3250 *6))
- (-2 (|:| -2168 *5) (|:| -3250 *6))))
+ (-1 (-112) (-2 (|:| -2208 *5) (|:| -2456 *6))
+ (-2 (|:| -2208 *5) (|:| -2456 *6))))
(-5 *1 (-463 *3 *4 *5 *6 *7 *2)) (-4 *5 (-850))
(-4 *2 (-949 *4 *6 (-864 *3)))))
((*1 *1 *1 *2)
@@ -8299,330 +9050,333 @@
((*1 *1 *1 *2)
(-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-846)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119))))))
- (-4 *4 (-351)) (-5 *2 (-771)) (-5 *1 (-348 *4))))
- ((*1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-353 *3 *4)) (-14 *3 (-921))
- (-14 *4 (-921))))
- ((*1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-354 *3 *4)) (-4 *3 (-351))
- (-14 *4
- (-3 (-1171 *3)
- (-1264 (-644 (-2 (|:| -2212 *3) (|:| -2168 (-1119)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-355 *3 *4)) (-4 *3 (-351))
- (-14 *4 (-921)))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-803)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *3))
- (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 (-644 *7) (-644 *7))) (-5 *2 (-644 *7))
- (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793))
- (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175)) (-5 *2 (-1 (-225) (-225))) (-5 *1 (-703 *3))
- (-4 *3 (-614 (-538)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1175)) (-5 *2 (-1 (-225) (-225) (-225)))
- (-5 *1 (-703 *3)) (-4 *3 (-614 (-538))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-508)) (-5 *3 (-644 (-965))) (-5 *1 (-109)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3))
- (-4 *3 (-1099)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365))
- (-5 *2 (-2 (|:| -2806 (-409 *6)) (|:| |coeff| (-409 *6))))
- (-5 *1 (-576 *5 *6)) (-5 *3 (-409 *6)))))
-(((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *1) (-12 (-4 *1 (-511 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-850)))))
-(((*1 *1 *1) (-4 *1 (-629)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-144))))
- ((*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-144)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-644 (-612 *2))) (-5 *4 (-644 (-1175)))
- (-4 *2 (-13 (-432 (-169 *5)) (-1002) (-1199))) (-4 *5 (-558))
- (-5 *1 (-600 *5 *6 *2)) (-4 *6 (-13 (-432 *5) (-1002) (-1199))))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5 *5)) (-4 *5 (-1255 *4))
- (-4 *4 (-38 (-409 (-566))))
- (-5 *2 (-1 (-1155 *4) (-1155 *4) (-1155 *4))) (-5 *1 (-1257 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-250)) (-5 *1 (-334)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-771)) (-4 *4 (-13 (-558) (-147)))
- (-5 *1 (-1234 *4 *2)) (-4 *2 (-1240 *4)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2))
- (-4 *2 (-1240 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1038 (-566))) (-4 *1 (-303)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2))
- (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4418)))))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1216)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-454)) (-5 *2 (-112))
- (-5 *1 (-362 *4 *5)) (-14 *5 (-644 (-1175)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-780 *4 (-864 *5)))) (-4 *4 (-454))
- (-14 *5 (-644 (-1175))) (-5 *2 (-112)) (-5 *1 (-628 *4 *5)))))
+ (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4))
+ (-5 *2 (-2 (|:| -3223 (-409 *5)) (|:| |poly| *3)))
+ (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566)))
- (-5 *2 (-1264 (-566))) (-5 *1 (-1291 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-1157)))))
+ (-12 (-5 *3 (-644 (-921))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-771)) (-5 *5 (-644 *3)) (-4 *3 (-308)) (-4 *6 (-850))
+ (-4 *7 (-793)) (-5 *2 (-112)) (-5 *1 (-625 *6 *7 *3 *8))
+ (-4 *8 (-949 *3 *7 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566)))))
- (-4 *5 (-1240 *4)) (-5 *2 (-644 (-2 (|:| -2420 *5) (|:| -2077 *5))))
- (-5 *1 (-807 *4 *5 *3 *6)) (-4 *3 (-656 *5))
- (-4 *6 (-656 (-409 *5)))))
+ (-12 (-5 *3 (-644 (-2 (|:| -2473 (-1171 *6)) (|:| -2456 (-566)))))
+ (-4 *6 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-566))
+ (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))))
+(((*1 *1 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))))
+(((*1 *1 *1) (-4 *1 (-35)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-755)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-527)))))
+(((*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-850))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-126 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-566)) (-4 *1 (-283 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-4 *1 (-283 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2
+ (|:| -2050
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (|:| -2849
+ (-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| (-1155 (-225)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2498
+ (-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 (-561))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-4 *1 (-695 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-2
+ (|:| -2050
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (|:| -2849
+ (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381))
+ (|:| |expense| (-381)) (|:| |accuracy| (-381))
+ (|:| |intermediateResults| (-381))))))
+ (-5 *1 (-803))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566)))))
- (-4 *4 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -2420 *4) (|:| -2077 *4))))
- (-5 *1 (-807 *5 *4 *3 *6)) (-4 *3 (-656 *4))
- (-4 *6 (-656 (-409 *4)))))
+ (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1099)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-747)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-404)) (-5 *2 (-771))))
+ ((*1 *1 *1) (-4 *1 (-404))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
+ (-5 *4 (-317 (-169 (-381)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
+ (-5 *4 (-317 (-381))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
+ (-5 *4 (-317 (-566))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-169 (-381)))))
+ (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-381)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-566)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-169 (-381)))))
+ (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-381)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-566)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-169 (-381)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-381))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-566))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
+ (-5 *4 (-317 (-694))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
+ (-5 *4 (-317 (-699))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
+ (-5 *4 (-317 (-701))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-694)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-699)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-701)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-694)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-699)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-701)))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-694))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-699))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-701))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-694))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-699))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-701))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-694))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-699))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-701))) (-5 *1 (-331))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1157)) (-5 *1 (-331))))
+ ((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-566))))
+ ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-905 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365)))
+ (-4 *3 (-1240 *4)) (-5 *2 (-566))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566)))))
- (-4 *5 (-1240 *4)) (-5 *2 (-644 (-2 (|:| -2420 *5) (|:| -2077 *5))))
- (-5 *1 (-807 *4 *5 *6 *3)) (-4 *6 (-656 *5))
- (-4 *3 (-656 (-409 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566)))))
- (-4 *4 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -2420 *4) (|:| -2077 *4))))
- (-5 *1 (-807 *5 *4 *6 *3)) (-4 *6 (-656 *4))
- (-4 *3 (-656 (-409 *4))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1215 *2))
- (-4 *2 (-1099))))
+ (|partial| -12 (-4 *4 (-13 (-558) (-1038 *2) (-639 *2) (-454)))
+ (-5 *2 (-566)) (-5 *1 (-1115 *4 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *4)))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-843 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-558) (-1038 *2) (-639 *2) (-454))) (-5 *2 (-566))
+ (-5 *1 (-1115 *6 *3))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-1157))
+ (-4 *6 (-13 (-558) (-1038 *2) (-639 *2) (-454))) (-5 *2 (-566))
+ (-5 *1 (-1115 *6 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6)))))
((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-850))
- (-5 *1 (-1215 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-927)))))
-(((*1 *1) (-5 *1 (-1084))))
-(((*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365)))))
-(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-497)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))))
-(((*1 *2 *1) (-12 (-4 *1 (-427 *3)) (-4 *3 (-1099)) (-5 *2 (-771)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566))))
+ (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-454)) (-5 *2 (-566))
+ (-5 *1 (-1116 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-843 (-409 (-952 *6))))
+ (-5 *3 (-409 (-952 *6))) (-4 *6 (-454)) (-5 *2 (-566))
+ (-5 *1 (-1116 *6))))
+ ((*1 *2 *3 *4 *3 *5)
+ (|partial| -12 (-5 *3 (-409 (-952 *6))) (-5 *4 (-1175))
+ (-5 *5 (-1157)) (-4 *6 (-454)) (-5 *2 (-566)) (-5 *1 (-1116 *6))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-566)) (-5 *1 (-1196 *3)) (-4 *3 (-1049)))))
+(((*1 *1) (-5 *1 (-157)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
((*1 *2 *2)
- (-12 (-4 *3 (-308)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
- (-5 *1 (-1123 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-112)) (-5 *5 (-1101 (-771))) (-5 *6 (-771))
- (-5 *2
- (-2 (|:| |contp| (-566))
- (|:| -4236 (-644 (-2 (|:| |irr| *3) (|:| -2175 (-566)))))))
- (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1) (-4 *1 (-495)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-381)) (-5 *1 (-1062)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
+ (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-38 (-409 (-566))))
+ (-4 *2 (-172)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-824)) (-5 *3 (-644 (-1175))) (-5 *1 (-825)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1285 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
- (-5 *2 (-819 *3))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-846)) (-5 *1 (-1287 *3 *2)) (-4 *3 (-1049)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-381)) (-5 *1 (-205)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-365) (-848)))
- (-5 *2 (-644 (-2 (|:| -4236 (-644 *3)) (|:| -1457 *5))))
- (-5 *1 (-181 *5 *3)) (-4 *3 (-1240 (-169 *5)))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-365) (-848)))
- (-5 *2 (-644 (-2 (|:| -4236 (-644 *3)) (|:| -1457 *4))))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
-(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199)))))
- ((*1 *1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365))))
- ((*1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365))))
- ((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
+ (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-771)) (-4 *1 (-231 *4))
- (-4 *4 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-231 *3)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-233)) (-5 *2 (-771))))
- ((*1 *1 *1) (-4 *1 (-233)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-267 *3)) (-4 *3 (-850))))
- ((*1 *1 *1) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218))
- (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4))
- (-4 *4 (-1240 *3))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-365) (-147))) (-5 *1 (-401 *2 *3))
- (-4 *3 (-1240 *2))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-476 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-365)) (-4 *2 (-900 *3)) (-5 *1 (-587 *2))
- (-5 *3 (-1175))))
+ (-12 (-5 *2 (-566)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1214))
+ (-4 *3 (-375 *4)) (-4 *5 (-375 *4)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-558)) (-4 *3 (-1049))
+ (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-852 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-558)) (-4 *5 (-1049))
+ (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-853 *5 *3))
+ (-4 *3 (-852 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1) (-4 *1 (-495)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *4 (-644 (-1175)))
+ (-5 *2 (-689 (-317 (-225)))) (-5 *1 (-205))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1099)) (-4 *6 (-900 *5)) (-5 *2 (-689 *6))
+ (-5 *1 (-692 *5 *6 *3 *4)) (-4 *3 (-375 *6))
+ (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4414)))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-381)) (-5 *1 (-1062)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-1175)) (-5 *2 (-112))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-114)) (-5 *2 (-112))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-587 *2)) (-4 *2 (-365))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 *4)) (-5 *3 (-644 (-771))) (-4 *1 (-900 *4))
+ (-12 (-5 *3 (-1175)) (-5 *2 (-112)) (-5 *1 (-612 *4))
(-4 *4 (-1099))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *1 (-900 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *1 (-900 *3)) (-4 *3 (-1099))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-900 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1166 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1172 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1173 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1228 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1240 *3)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1249 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3))))
-(((*1 *1 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)) (-4 *2 (-1049))))
- ((*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-558)))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-612 *4)) (-4 *4 (-1099))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-835 *3)) (-4 *3 (-1099)) (-5 *2 (-112))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1099)) (-5 *2 (-112)) (-5 *1 (-887 *5 *3 *4))
+ (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *6)) (-4 *6 (-886 *5)) (-4 *5 (-1099))
+ (-5 *2 (-112)) (-5 *1 (-887 *5 *6 *4)) (-4 *4 (-614 (-892 *5))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *2 (-644 (-169 *4)))
- (-5 *1 (-764 *4)) (-4 *4 (-13 (-365) (-848))))))
-(((*1 *2)
- (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-419 *3)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-949 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-454))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *3 (-1064 *4 *5 *6))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *1))))
- (-4 *1 (-1070 *4 *5 *6 *3))))
- ((*1 *1 *1) (-4 *1 (-1218)))
+ (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 *5)) (-4 *5 (-365))
+ (-4 *5 (-558)) (-5 *2 (-1264 *5)) (-5 *1 (-638 *5 *4))))
+ ((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 *5))
+ (-2436 (-4 *5 (-365))) (-4 *5 (-558)) (-5 *2 (-1264 (-409 *5)))
+ (-5 *1 (-638 *5 *4)))))
+(((*1 *2 *1) (-12 (-5 *1 (-587 *2)) (-4 *2 (-365)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))))
+(((*1 *2 *3 *4 *5 *6 *7 *6)
+ (|partial| -12
+ (-5 *5
+ (-2 (|:| |contp| *3)
+ (|:| -2670 (-644 (-2 (|:| |irr| *10) (|:| -2831 (-566)))))))
+ (-5 *6 (-644 *3)) (-5 *7 (-644 *8)) (-4 *8 (-850)) (-4 *3 (-308))
+ (-4 *10 (-949 *3 *9 *8)) (-4 *9 (-793))
+ (-5 *2
+ (-2 (|:| |polfac| (-644 *10)) (|:| |correct| *3)
+ (|:| |corrfact| (-644 (-1171 *3)))))
+ (-5 *1 (-625 *8 *9 *3 *10)) (-5 *4 (-644 (-1171 *3))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-128)))))
+(((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267))))
+ ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))
+ (-5 *2 (-1035)) (-5 *1 (-748)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-1243 *3 *2))
- (-4 *2 (-13 (-1240 *3) (-558) (-10 -8 (-15 -2222 ($ $ $))))))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-144))) (-5 *1 (-141))))
- ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-141)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-566) (-566))) (-5 *1 (-363 *3)) (-4 *3 (-1099))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-771) (-771))) (-5 *1 (-388 *3)) (-4 *3 (-1099))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
- (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)))))
-(((*1 *1 *2 *3 *1 *3)
- (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3))
- (-4 *3 (-1099)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1264 *3)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3))
- (-4 *3 (-1099)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-5 *5 (-644 (-644 *8)))
- (-4 *7 (-850)) (-4 *8 (-308)) (-4 *9 (-949 *8 *6 *7)) (-4 *6 (-793))
- (-5 *2
- (-2 (|:| |upol| (-1171 *8)) (|:| |Lval| (-644 *8))
- (|:| |Lfact|
- (-644 (-2 (|:| -2391 (-1171 *8)) (|:| -3250 (-566)))))
- (|:| |ctpol| *8)))
- (-5 *1 (-742 *6 *7 *8 *9)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-771)) (-4 *5 (-172))))
- ((*1 *1 *1 *2 *1 *2)
- (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
- (-14 *4 (-771)) (-4 *5 (-172))))
- ((*1 *2 *2 *3)
- (-12
- (-5 *2
- (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
- (-247 *4 (-409 (-566)))))
- (-5 *3 (-644 (-864 *4))) (-14 *4 (-644 (-1175))) (-14 *5 (-771))
- (-5 *1 (-507 *4 *5)))))
-(((*1 *1 *1) (-4 *1 (-1143))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1288 *3 *4)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-172))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-388 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-819 *3)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-952 (-225))) (-5 *2 (-317 (-381))) (-5 *1 (-306)))))
-(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-566)) (-5 *1 (-488 *4))
- (-4 *4 (-1240 *2)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *5 *6)) (-4 *6 (-614 (-1175)))
- (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850))
- (-5 *2 (-1164 (-644 (-952 *4)) (-644 (-295 (-952 *4)))))
- (-5 *1 (-506 *4 *5 *6 *7)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1264 (-1264 (-566)))) (-5 *3 (-921)) (-5 *1 (-468)))))
-(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1) (-4 *1 (-495)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-771)) (-4 *1 (-231 *4))
(-4 *4 (-1049))))
@@ -8645,79 +9399,124 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-644 *3)) (-4 *1 (-900 *3)) (-4 *3 (-1099))))
((*1 *1 *1 *2) (-12 (-4 *1 (-900 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1175)) (-5 *6 (-644 (-612 *3)))
+ (-5 *5 (-612 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *7)))
+ (-4 *7 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))))
+ (-5 *2 (-2 (|:| -2883 *3) (|:| |coeff| *3)))
+ (-5 *1 (-559 *7 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-538)))))
+(((*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))))
+(((*1 *2)
+ (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5)))
+ (-5 *2 (-112)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
+(((*1 *1 *1 *2 *3 *1)
+ (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-952 *5)) (-4 *5 (-1049)) (-5 *2 (-483 *4 *5))
- (-5 *1 (-944 *4 *5)) (-14 *4 (-644 (-1175))))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-566)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-308))
- (-4 *9 (-949 *8 *6 *7))
- (-5 *2 (-2 (|:| -3589 (-1171 *9)) (|:| |polval| (-1171 *8))))
- (-5 *1 (-742 *6 *7 *8 *9)) (-5 *3 (-1171 *9)) (-5 *4 (-1171 *8)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-419 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *2)) (-4 *2 (-172))))
- ((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-418 *3 *2)) (-4 *3 (-419 *2))))
- ((*1 *2) (-12 (-4 *1 (-419 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-1171 *3)) (-5 *1 (-41 *4 *3))
- (-4 *3
- (-13 (-365) (-303)
- (-10 -8 (-15 -3001 ((-1124 *4 (-612 $)) $))
- (-15 -3013 ((-1124 *4 (-612 $)) $))
- (-15 -2512 ($ (-1124 *4 (-612 $))))))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-555)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-508)) (-5 *2 (-112)) (-5 *1 (-114)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+ (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *2 (-644 (-225)))
+ (-5 *1 (-470)))))
+(((*1 *1) (-5 *1 (-157)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-822)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3))))
+ (-5 *2 (-644 (-1175))) (-5 *1 (-1075 *3 *4 *5))
+ (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *1 *1) (-4 *1 (-495)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-558))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))))
-(((*1 *2)
- (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-419 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-317 *5)))
- (-5 *1 (-1128 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175)))
- (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-317 *5))))
- (-5 *1 (-1128 *5)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049))))
+ ((*1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))))
+(((*1 *2) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1267))))
+ ((*1 *2 *2) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1267)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-365) (-848))) (-5 *1 (-181 *3 *2))
+ (-4 *2 (-1240 (-169 *3))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-644 (-689 (-566))))
- (-5 *1 (-1109)))))
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-558)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *1 (-344 *4 *5 *6)) (-4 *4 (-1218))
- (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5)))
- (-5 *2 (-2 (|:| |num| (-689 *5)) (|:| |den| *5))))))
+ (-12 (-5 *3 (-843 (-381))) (-5 *2 (-843 (-225))) (-5 *1 (-306)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-470)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1175)) (-5 *2 (-1 *6 *5)) (-5 *1 (-706 *4 *5 *6))
- (-4 *4 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *2 (-644 (-1171 *7))) (-5 *3 (-1171 *7))
- (-4 *7 (-949 *5 *6 *4)) (-4 *5 (-909)) (-4 *6 (-793))
- (-4 *4 (-850)) (-5 *1 (-906 *5 *6 *4 *7)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4417)) (-4 *1 (-491 *4))
- (-4 *4 (-1214)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1) (-4 *1 (-761))))
-(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266))))
- ((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))))
-(((*1 *2)
- (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-419 *3)))))
+ (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-365) (-1199) (-1002))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1240 (-409 (-566)))) (-5 *1 (-913 *3 *2))
+ (-4 *2 (-1240 (-409 *3))))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *1 *1) (-4 *1 (-495)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-317 *4)) (-4 *4 (-13 (-828) (-1049))) (-5 *2 (-1157))
+ (-5 *1 (-826 *4))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-317 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-828) (-1049)))
+ (-5 *2 (-1157)) (-5 *1 (-826 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-822)) (-5 *4 (-317 *5)) (-4 *5 (-13 (-828) (-1049)))
+ (-5 *2 (-1269)) (-5 *1 (-826 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-822)) (-5 *4 (-317 *6)) (-5 *5 (-112))
+ (-4 *6 (-13 (-828) (-1049))) (-5 *2 (-1269)) (-5 *1 (-826 *6))))
+ ((*1 *2 *1) (-12 (-4 *1 (-828)) (-5 *2 (-1157))))
+ ((*1 *2 *1 *3) (-12 (-4 *1 (-828)) (-5 *3 (-112)) (-5 *2 (-1157))))
+ ((*1 *2 *3 *1) (-12 (-4 *1 (-828)) (-5 *3 (-822)) (-5 *2 (-1269))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-4 *1 (-828)) (-5 *3 (-822)) (-5 *4 (-112)) (-5 *2 (-1269)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))))
+(((*1 *2 *3 *3 *1)
+ (-12 (-5 *3 (-508)) (-5 *2 (-691 (-1103))) (-5 *1 (-292)))))
(((*1 *2 *3)
(-12
(-5 *3
(-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
(|:| |relerr| (-225))))
(-5 *2
(-2
@@ -8735,7 +9534,7 @@
(-3 (|:| |str| (-1155 (-225)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -4344
+ (|:| -2498
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -8743,87 +9542,110 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-561)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *1 *2 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381)))
- (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
- (-5 *1 (-1174)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 *4))
- (-5 *2 (-2 (|:| |radicand| (-409 *5)) (|:| |deg| (-771))))
- (-5 *1 (-148 *4 *5 *3)) (-4 *3 (-1240 (-409 *5))))))
-(((*1 *2)
- (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-419 *3)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6))
- (-5 *2 (-2 (|:| |bas| (-478 *4 *5 *6 *7)) (|:| -3877 (-644 *7))))
- (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
-(((*1 *1 *1 *1) (-4 *1 (-303))) ((*1 *1 *1) (-4 *1 (-303))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-771)) (-4 *4 (-351)) (-5 *1 (-216 *4 *2))
- (-4 *2 (-1240 *4))))
- ((*1 *2 *2 *3 *2 *3)
- (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178))))
- ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1179)))))
-(((*1 *1 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))))
-(((*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-566))))
- ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-905 *3)) (-4 *3 (-1099))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112))))
((*1 *2 *3 *1)
- (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365)))
- (-4 *3 (-1240 *4)) (-5 *2 (-566))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-558) (-1038 *2) (-639 *2) (-454)))
- (-5 *2 (-566)) (-5 *1 (-1115 *4 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *4)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-843 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-558) (-1038 *2) (-639 *2) (-454))) (-5 *2 (-566))
- (-5 *1 (-1115 *6 *3))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-1157))
- (-4 *6 (-13 (-558) (-1038 *2) (-639 *2) (-454))) (-5 *2 (-566))
- (-5 *1 (-1115 *6 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6)))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-454)) (-5 *2 (-566))
- (-5 *1 (-1116 *4))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-843 (-409 (-952 *6))))
- (-5 *3 (-409 (-952 *6))) (-4 *6 (-454)) (-5 *2 (-566))
- (-5 *1 (-1116 *6))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-409 (-952 *6))) (-5 *4 (-1175))
- (-5 *5 (-1157)) (-4 *6 (-454)) (-5 *2 (-566)) (-5 *1 (-1116 *6))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *2 (-566)) (-5 *1 (-1196 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *1 (-587 *2)) (-4 *2 (-365)))))
-(((*1 *1 *2 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381)))
- (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
- (-5 *1 (-1174)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792)))))
+ (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-308))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-449 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6))
+ (-4 *4 (-308)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-5 *1 (-449 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6))
+ (-4 *4 (-308)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-5 *1 (-449 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-644 (-644 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-644 (-3 (|:| |array| (-644 *3)) (|:| |scalar| (-1175)))))
+ (-5 *6 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1103))
+ (-5 *1 (-399))))
+ ((*1 *2 *3 *4 *5 *6 *3)
+ (-12 (-5 *5 (-644 (-644 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
+ (-5 *4 (-644 (-3 (|:| |array| (-644 *3)) (|:| |scalar| (-1175)))))
+ (-5 *6 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1103))
+ (-5 *1 (-399))))
+ ((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *4 (-644 (-1175))) (-5 *5 (-1178)) (-5 *3 (-1175))
+ (-5 *2 (-1103)) (-5 *1 (-399)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1255 *4)) (-5 *1 (-1257 *4 *2))
+ (-4 *4 (-38 (-409 (-566)))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-558)))))
+ (-12 (-5 *3 (-483 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049))
+ (-5 *2 (-247 *4 *5)) (-5 *1 (-944 *4 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-1240 (-409 (-566)))) (-5 *1 (-913 *3 *2))
- (-4 *2 (-1240 (-409 *3))))))
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *1 *1) (-4 *1 (-495)))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1062)))))
(((*1 *2 *3 *4 *5)
(-12 (-5 *5 (-771)) (-4 *6 (-1099)) (-4 *3 (-900 *6))
(-5 *2 (-689 *3)) (-5 *1 (-692 *6 *3 *7 *4)) (-4 *7 (-375 *3))
- (-4 *4 (-13 (-375 *6) (-10 -7 (-6 -4417)))))))
+ (-4 *4 (-13 (-375 *6) (-10 -7 (-6 -4414)))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-363 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-5 *2 (-771)) (-5 *1 (-388 *4)) (-4 *4 (-1099))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-4 *2 (-23)) (-5 *1 (-649 *4 *2 *5))
+ (-4 *4 (-1099)) (-14 *5 *2)))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-5 *2 (-771)) (-5 *1 (-819 *4)) (-4 *4 (-850)))))
+(((*1 *1) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454))
+ (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-977 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-644 *7)) (-5 *3 (-112)) (-4 *7 (-1064 *4 *5 *6))
+ (-4 *4 (-454)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-5 *1 (-977 *4 *5 *6 *7)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-121 *2)) (-4 *2 (-850)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-558)) (-5 *1 (-623 *2 *3)) (-4 *3 (-1240 *2)))))
+(((*1 *1 *1) (-4 *1 (-95)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002)))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
+ (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
+ (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1160 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
+ (-5 *1 (-1161 *3)))))
(((*1 *1 *2 *3 *3 *4 *5)
(-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *3 (-644 (-874)))
(-5 *4 (-644 (-921))) (-5 *5 (-644 (-264))) (-5 *1 (-470))))
@@ -8832,12 +9654,120 @@
(-5 *4 (-644 (-921))) (-5 *1 (-470))))
((*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470))))
((*1 *1 *1) (-5 *1 (-470))))
+(((*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-822)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1049)) (-5 *2 (-958 (-712 *3 *4))) (-5 *1 (-712 *3 *4))
+ (-4 *4 (-1240 *3)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-644 (-689 *4))) (-5 *2 (-689 *4)) (-4 *4 (-1049))
+ (-5 *1 (-1029 *4)))))
+(((*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-558)) (-4 *2 (-454)) (-5 *1 (-969 *2 *3))
+ (-4 *3 (-1240 *2)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049))
+ (-4 *2 (-1255 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-952 (-566)))) (-5 *1 (-439))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1175)) (-5 *4 (-689 (-225))) (-5 *2 (-1103))
+ (-5 *1 (-759))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1175)) (-5 *4 (-689 (-566))) (-5 *2 (-1103))
+ (-5 *1 (-759)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
+ (-5 *2 (-819 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-846)) (-5 *1 (-1287 *3 *2)) (-4 *3 (-1049)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
(((*1 *2 *3 *4)
(-12 (-4 *5 (-308)) (-4 *6 (-375 *5)) (-4 *4 (-375 *5))
(-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4))))
(-5 *1 (-1123 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
+ (-4 *4 (-351)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1157)) (-5 *4 (-169 (-225))) (-5 *5 (-566))
+ (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2)
+ (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381))))
+ ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))))
+(((*1 *1 *2 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381)))
+ (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
+ (-5 *1 (-1174)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
+ (-5 *2
+ (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566))
+ (|:| |success| (-112))))
+ (-5 *1 (-789)) (-5 *5 (-566)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1175)) (-5 *1 (-675 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-566)) (|has| *1 (-6 -4405)) (-4 *1 (-406))
+ (-5 *2 (-921)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4))))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
(((*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *6)) (-4 *5 (-1099))
+ (-4 *6 (-1214)) (-5 *2 (-1 *6 *5)) (-5 *1 (-641 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-4 *5 (-1099))
+ (-4 *2 (-1214)) (-5 *1 (-641 *5 *2))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 *5)) (-4 *6 (-1099))
+ (-4 *5 (-1214)) (-5 *2 (-1 *5 *6)) (-5 *1 (-641 *6 *5))))
+ ((*1 *2 *3 *4 *5 *2)
+ (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-4 *5 (-1099))
+ (-4 *2 (-1214)) (-5 *1 (-641 *5 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-1 *6 *5)) (-5 *3 (-644 *5)) (-5 *4 (-644 *6))
+ (-4 *5 (-1099)) (-4 *6 (-1214)) (-5 *1 (-641 *5 *6))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 *2)) (-5 *6 (-1 *2 *5))
+ (-4 *5 (-1099)) (-4 *2 (-1214)) (-5 *1 (-641 *5 *2))))
+ ((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-144)) (-5 *2 (-771)))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-771)) (-5 *2 (-112)) (-5 *1 (-588 *3)) (-4 *3 (-547)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-351)) (-5 *2 (-420 (-1171 (-1171 *4))))
+ (-5 *1 (-1212 *4)) (-5 *3 (-1171 (-1171 *4))))))
+(((*1 *1 *2 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381)))
+ (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
+ (-5 *1 (-1174)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-365)) (-5 *1 (-896 *2 *3))
+ (-4 *2 (-1240 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1269))
+ (-5 *1 (-451 *4 *5 *6 *7)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-819 *4)) (-4 *4 (-850)) (-5 *2 (-112))
+ (-5 *1 (-672 *4)))))
(((*1 *2 *3 *4 *3 *3)
(-12 (-5 *3 (-295 *6)) (-5 *4 (-114)) (-4 *6 (-432 *5))
(-4 *5 (-13 (-558) (-614 (-538)))) (-5 *2 (-52))
@@ -8880,6 +9810,70 @@
(-12 (-5 *4 (-114)) (-5 *5 (-295 *3)) (-5 *6 (-644 *3))
(-4 *3 (-432 *7)) (-4 *7 (-13 (-558) (-614 (-538)))) (-5 *2 (-52))
(-5 *1 (-318 *7 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 *4)) (-5 *1 (-1140 *3 *4))
+ (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-952 (-566))) (-5 *2 (-644 *1)) (-4 *1 (-1012))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *2 (-644 *1)) (-4 *1 (-1012))))
+ ((*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-1012)) (-5 *2 (-644 *1))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1171 (-566))) (-5 *2 (-644 *1)) (-4 *1 (-1012))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1171 (-409 (-566)))) (-5 *2 (-644 *1)) (-4 *1 (-1012))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *1)) (-4 *1 (-1012)) (-5 *2 (-644 *1))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-848) (-365))) (-4 *3 (-1240 *4)) (-5 *2 (-644 *1))
+ (-4 *1 (-1067 *4 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-793))
+ (-4 *5 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))) (-4 *6 (-558))
+ (-5 *2 (-2 (|:| -4385 (-952 *6)) (|:| -3013 (-952 *6))))
+ (-5 *1 (-732 *4 *5 *6 *3)) (-4 *3 (-949 (-409 (-952 *6)) *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-1059)) (-4 *3 (-1199))
+ (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
+(((*1 *1 *1) (-5 *1 (-1174)))
+ ((*1 *1 *2)
+ (-12
+ (-5 *2
+ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381)))
+ (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
+ (-5 *1 (-1174)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2327 *8)))
+ (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-988 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-644 *7)) (|:| -2327 *8)))
+ (-4 *7 (-1064 *4 *5 *6)) (-4 *8 (-1070 *4 *5 *6 *7)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-1106 *4 *5 *6 *7 *8)))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-1264
+ (-2 (|:| |scaleX| (-225)) (|:| |scaleY| (-225))
+ (|:| |deltaX| (-225)) (|:| |deltaY| (-225)) (|:| -2089 (-566))
+ (|:| -3140 (-566)) (|:| |spline| (-566)) (|:| -4350 (-566))
+ (|:| |axesColor| (-874)) (|:| -3197 (-566))
+ (|:| |unitsColor| (-874)) (|:| |showing| (-566)))))
+ (-5 *1 (-1265)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
+ (-5 *1 (-988 *3 *4 *5 *6 *7))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
+ (-5 *1 (-1106 *3 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112))
+ (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
(((*1 *2 *2 *2)
(-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
(-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6))))
@@ -8888,33 +9882,299 @@
(-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
(-5 *1 (-977 *4 *5 *6 *7)))))
(((*1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-683 *4 *3)) (-4 *4 (-1099))
+ (-4 *3 (-1099)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 (-409 (-566))))
+ (-5 *2
+ (-644
+ (-2 (|:| |outval| *4) (|:| |outmult| (-566))
+ (|:| |outvect| (-644 (-689 *4))))))
+ (-5 *1 (-779 *4)) (-4 *4 (-13 (-365) (-848))))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *5 (-771)) (-4 *6 (-1099)) (-4 *7 (-900 *6))
+ (-5 *2 (-689 *7)) (-5 *1 (-692 *6 *7 *3 *4)) (-4 *3 (-375 *7))
+ (-4 *4 (-13 (-375 *6) (-10 -7 (-6 -4414)))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-112)) (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *1 *1) (-12 (-4 *1 (-376 *2 *3)) (-4 *2 (-850)) (-4 *3 (-172))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-627 *2 *3 *4)) (-4 *2 (-850))
+ (-4 *3 (-13 (-172) (-717 (-409 (-566))))) (-14 *4 (-921))))
+ ((*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
+(((*1 *2 *3)
(-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3))
(-4 *3 (-419 *4)))))
-(((*1 *1 *1) (-5 *1 (-1174)))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381)))
- (|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
- (-5 *1 (-1174)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1171 *1)) (-5 *3 (-1175)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-952 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-4 *1 (-29 *3)) (-4 *3 (-558))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-558))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1171 *2)) (-5 *4 (-1175)) (-4 *2 (-432 *5))
+ (-5 *1 (-32 *5 *2)) (-4 *5 (-558))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1171 *1)) (-5 *3 (-921)) (-4 *1 (-1012))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-1171 *1)) (-5 *3 (-921)) (-5 *4 (-862))
+ (-4 *1 (-1012))))
+ ((*1 *1 *2 *3)
+ (|partial| -12 (-5 *3 (-921)) (-4 *4 (-13 (-848) (-365)))
+ (-4 *1 (-1067 *4 *2)) (-4 *2 (-1240 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *1 (-679 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-587 *2)) (-4 *2 (-13 (-29 *4) (-1199)))
+ (-5 *1 (-585 *4 *2))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-587 (-409 (-952 *4))))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-317 *4))
+ (-5 *1 (-590 *4)))))
+(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-241)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-644 (-1175)))
+ (-5 *2 (-644 (-644 (-381)))) (-5 *1 (-1023)) (-5 *5 (-381))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
+ (-14 *5 (-644 (-1175))) (-5 *2 (-644 (-644 (-1024 (-409 *4)))))
+ (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
+ (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2 (-644 (-644 (-1024 (-409 *5))))) (-5 *1 (-1290 *5 *6 *7))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-952 *4)))
+ (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2 (-644 (-644 (-1024 (-409 *4))))) (-5 *1 (-1290 *4 *5 *6))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7)))
+ (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793))
+ (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8)))
+ (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7)))
+ (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793))
+ (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8)))
+ (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-365) (-1199) (-1002)))))
+ ((*1 *2)
+ (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 (-409 *2)))
+ (-4 *2 (-1240 *4)) (-5 *1 (-343 *3 *4 *2 *5))
+ (-4 *3 (-344 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-344 *3 *2 *4)) (-4 *3 (-1218))
+ (-4 *4 (-1240 (-409 *2))) (-4 *2 (-1240 *3)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1269)) (-5 *1 (-822)))))
(((*1 *1 *1 *2)
(-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1240 *4)) (-4 *4 (-1218))
+ (-4 *1 (-344 *4 *3 *5)) (-4 *5 (-1240 (-409 *3))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *4))))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *1 (-679 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175))) (-4 *5 (-558))
+ (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-770 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-558))
+ (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-770 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-689 *7))
+ (-5 *5
+ (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -1575 (-644 *6)))
+ *7 *6))
+ (-4 *6 (-365)) (-4 *7 (-656 *6))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1264 *6) "failed"))
+ (|:| -1575 (-644 (-1264 *6)))))
+ (-5 *1 (-813 *6 *7)) (-5 *4 (-1264 *6)))))
+(((*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-247 *5 *6))) (-4 *6 (-454))
+ (-5 *2 (-247 *5 *6)) (-14 *5 (-644 (-1175))) (-5 *1 (-631 *5 *6)))))
+(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
+ (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566))
+ (-5 *2 (-1035)) (-5 *1 (-756)))))
+(((*1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-850))))
+ ((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862))))
+ ((*1 *1 *1) (-5 *1 (-862))))
(((*1 *2 *3)
(-12
(-5 *3
(-3
(|:| |noa|
- (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225)))
+ (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225)))
(|:| |lb| (-644 (-843 (-225))))
(|:| |cf| (-644 (-317 (-225))))
(|:| |ub| (-644 (-843 (-225))))))
(|:| |lsa|
(-2 (|:| |lfn| (-644 (-317 (-225))))
- (|:| -2759 (-644 (-225)))))))
+ (|:| -3625 (-644 (-225)))))))
(-5 *2 (-644 (-1157))) (-5 *1 (-268)))))
+(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
+ (|partial| -12 (-5 *2 (-644 (-1171 *11))) (-5 *3 (-1171 *11))
+ (-5 *4 (-644 *10)) (-5 *5 (-644 *8)) (-5 *6 (-644 (-771)))
+ (-5 *7 (-1264 (-644 (-1171 *8)))) (-4 *10 (-850))
+ (-4 *8 (-308)) (-4 *11 (-949 *8 *9 *10)) (-4 *9 (-793))
+ (-5 *1 (-707 *9 *10 *8 *11)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1155 (-409 *3))) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-366 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-5 *2 (-1157)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792))
+ (-4 *2 (-454))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-344 *2 *3 *4)) (-4 *2 (-1218)) (-4 *3 (-1240 *2))
+ (-4 *4 (-1240 (-409 *3)))))
+ ((*1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-454))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850)) (-4 *3 (-454))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-949 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-454))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *3 (-308)) (-4 *3 (-558)) (-5 *1 (-1162 *3 *2))
+ (-4 *2 (-1240 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-644 (-1171 *7))) (-5 *3 (-1171 *7))
+ (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-909)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-5 *1 (-906 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-644 (-1171 *5))) (-5 *3 (-1171 *5))
+ (-4 *5 (-1240 *4)) (-4 *4 (-909)) (-5 *1 (-907 *4 *5)))))
(((*1 *2 *3 *4 *5 *6 *5)
(-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157))
(-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-921)) (-4 *4 (-370)) (-4 *4 (-365)) (-5 *2 (-1171 *1))
+ (-4 *1 (-330 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1171 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-372 *3 *2)) (-4 *3 (-172)) (-4 *3 (-365))
+ (-4 *2 (-1240 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-1171 *4))
+ (-5 *1 (-530 *4)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-1175)) (-4 *4 (-1049)) (-4 *4 (-1099))
+ (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -2456 (-566))))
+ (-4 *1 (-432 *4))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-114)) (-4 *4 (-1049)) (-4 *4 (-1099))
+ (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -2456 (-566))))
+ (-4 *1 (-432 *4))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1111)) (-4 *3 (-1099))
+ (-5 *2 (-2 (|:| |var| (-612 *1)) (|:| -2456 (-566))))
+ (-4 *1 (-432 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |val| (-892 *3)) (|:| -2456 (-771))))
+ (-5 *1 (-892 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-2 (|:| |var| *5) (|:| -2456 (-771))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049))
+ (-4 *7 (-949 *6 *4 *5))
+ (-5 *2 (-2 (|:| |var| *5) (|:| -2456 (-566))))
+ (-5 *1 (-950 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-365)
+ (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $))
+ (-15 -3100 (*7 $))))))))
+(((*1 *1 *2) (-12 (-5 *2 (-183)) (-5 *1 (-248)))))
+(((*1 *2 *3 *4 *5 *5 *4 *6)
+ (-12 (-5 *5 (-612 *4)) (-5 *6 (-1171 *4))
+ (-4 *4 (-13 (-432 *7) (-27) (-1199)))
+ (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4))))
+ (-5 *1 (-562 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099))))
+ ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
+ (-12 (-5 *5 (-612 *4)) (-5 *6 (-409 (-1171 *4)))
+ (-4 *4 (-13 (-432 *7) (-27) (-1199)))
+ (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4))))
+ (-5 *1 (-562 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-644 (-566))) (-5 *3 (-689 (-566))) (-5 *1 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
+ (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793))
+ (-5 *2 (-112)) (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))))
+(((*1 *2 *2 *2)
+ (-12
+ (-5 *2
+ (-644
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-771)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-793)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *5 (-850))
+ (-5 *1 (-451 *3 *4 *5 *6)))))
+(((*1 *1) (-5 *1 (-439))))
(((*1 *2 *2 *3 *3)
(-12 (-5 *3 (-566)) (-4 *4 (-13 (-558) (-147))) (-5 *1 (-539 *4 *2))
(-4 *2 (-1255 *4))))
@@ -8928,27 +10188,295 @@
((*1 *2 *2 *3 *3)
(-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-13 (-558) (-147)))
(-5 *1 (-1151 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1109)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-848)) (-5 *1 (-304 *3)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-308)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *4 *4 *4 *3 *4 *4 *6)
+ (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *2 (-1035))
+ (-5 *1 (-749)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-365)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
+ (-5 *2 (-771)) (-5 *1 (-523 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-771))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4))
+ (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-688 *4 *5 *6 *3))
+ (-4 *3 (-687 *4 *5 *6))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558))
+ (-5 *2 (-771)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175))
+ (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-566)) (-4 *1 (-1092 *3)) (-4 *3 (-1214)))))
(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1157)) (-5 *1 (-192))))
((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1157)) (-5 *1 (-301))))
((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1157)) (-5 *1 (-306)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5))
+ (-5 *2
+ (-2 (|:| -4249 (-415 *4 (-409 *4) *5 *6)) (|:| |principalPart| *6)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365))
+ (-5 *2
+ (-2 (|:| |poly| *6) (|:| -3362 (-409 *6))
+ (|:| |special| (-409 *6))))
+ (-5 *1 (-727 *5 *6)) (-5 *3 (-409 *6))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-896 *3 *4))
+ (-4 *3 (-1240 *4))))
+ ((*1 *2 *3 *4 *4)
+ (|partial| -12 (-5 *4 (-771)) (-4 *5 (-365))
+ (-5 *2 (-2 (|:| -4380 *3) (|:| -4394 *3))) (-5 *1 (-896 *3 *5))
+ (-4 *3 (-1240 *5))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112))
+ (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454))
+ (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1068 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112))
+ (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454))
+ (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1068 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4)
+ (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112))
+ (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454))
+ (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1144 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *2 *4 *4 *4 *4 *4)
+ (-12 (-5 *2 (-644 *9)) (-5 *3 (-644 *8)) (-5 *4 (-112))
+ (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454))
+ (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-945 *4 *3))
+ (-4 *3 (-1240 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
+ (-5 *1 (-176 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-225)) (-5 *2 (-112)) (-5 *1 (-300 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1093 (-843 (-225)))) (-5 *3 (-225)) (-5 *2 (-112))
+ (-5 *1 (-306))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
+ (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793)) (-4 *7 (-949 *4 *6 *5))
+ (-5 *2
+ (-2 (|:| |sysok| (-112)) (|:| |z0| (-644 *7)) (|:| |n0| (-644 *7))))
+ (-5 *1 (-924 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-132)) (-5 *3 (-771)) (-5 *2 (-1269)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-4 *1 (-324 *4 *2)) (-4 *4 (-1099))
+ (-4 *2 (-131)))))
+(((*1 *2)
+ (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-909))
+ (-5 *1 (-459 *3 *4 *2 *5)) (-4 *5 (-949 *2 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *2 (-909))
+ (-5 *1 (-906 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4))))
+ ((*1 *2) (-12 (-4 *2 (-909)) (-5 *1 (-907 *2 *3)) (-4 *3 (-1240 *2)))))
(((*1 *2 *2)
(-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
+ (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-84 FCNF))))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-749)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-428 *4 *2)) (-4 *2 (-13 (-1199) (-29 *4)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175)) (-4 *5 (-147))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-317 *5))
+ (-5 *1 (-590 *5)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-612 (-48)))) (-5 *1 (-48))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-612 (-48))) (-5 *1 (-48))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1171 (-48))) (-5 *3 (-644 (-612 (-48)))) (-5 *1 (-48))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1171 (-48))) (-5 *3 (-612 (-48))) (-5 *1 (-48))))
+ ((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
+ ((*1 *2 *3)
+ (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3))
+ (-4 *3 (-1240 (-169 *2)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-921)) (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370))))
+ ((*1 *2 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-365))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-372 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1240 *2)) (-4 *2 (-992 *3)) (-5 *1 (-415 *3 *2 *4 *5))
+ (-4 *3 (-308)) (-4 *5 (-13 (-411 *2 *4) (-1038 *2)))))
+ ((*1 *2 *1)
+ (-12 (-4 *4 (-1240 *2)) (-4 *2 (-992 *3))
+ (-5 *1 (-416 *3 *2 *4 *5 *6)) (-4 *3 (-308)) (-4 *5 (-411 *2 *4))
+ (-14 *6 (-1264 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-921)) (-4 *5 (-1049))
+ (-4 *2 (-13 (-406) (-1038 *5) (-365) (-1199) (-285)))
+ (-5 *1 (-445 *5 *3 *2)) (-4 *3 (-1240 *5))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-612 (-497)))) (-5 *1 (-497))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-612 (-497))) (-5 *1 (-497))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1171 (-497))) (-5 *3 (-644 (-612 (-497))))
+ (-5 *1 (-497))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1171 (-497))) (-5 *3 (-612 (-497))) (-5 *1 (-497))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1264 *4)) (-5 *3 (-921)) (-4 *4 (-351))
+ (-5 *1 (-530 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-724 *4 *2)) (-4 *2 (-1240 *4))
+ (-5 *1 (-775 *4 *2 *5 *3)) (-4 *3 (-1240 *5))))
+ ((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172))))
+ ((*1 *1 *1) (-4 *1 (-1059))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-771))) (-5 *3 (-112)) (-5 *1 (-1163 *4 *5))
+ (-14 *4 (-921)) (-4 *5 (-1049)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1119)) (-5 *2 (-1269)) (-5 *1 (-831)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-850))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-677 *3)) (-4 *3 (-850))))
+ ((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-819 *3)) (-4 *3 (-850)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1109)))))
(((*1 *2 *2 *2)
(|partial| -12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-1234 *3 *2))
(-4 *2 (-1240 *3)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-604 *2 *3)) (-4 *3 (-1214)) (-4 *2 (-1099))
+ (-4 *2 (-850)))))
+(((*1 *1 *1) (-4 *1 (-143)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *7) (|:| -4394 *7) (|:| |sol?| (-112)))
+ (-566) *7))
+ (-5 *6 (-644 (-409 *8))) (-4 *7 (-365)) (-4 *8 (-1240 *7))
+ (-5 *3 (-409 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-576 *7 *8)))))
+(((*1 *1)
+ (-12 (-4 *1 (-406)) (-2436 (|has| *1 (-6 -4405)))
+ (-2436 (|has| *1 (-6 -4397)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-850))))
+ ((*1 *1) (-4 *1 (-844))) ((*1 *1 *1 *1) (-4 *1 (-850)))
+ ((*1 *2 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))))
+(((*1 *2 *3 *3 *4 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225)))
+ (-5 *2 (-1035)) (-5 *1 (-747)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-555)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1264 *6)) (-5 *4 (-1264 (-566))) (-5 *5 (-566))
+ (-4 *6 (-1099)) (-5 *2 (-1 *6)) (-5 *1 (-1017 *6)))))
+(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))))
(((*1 *2 *1) (-12 (-5 *2 (-822)) (-5 *1 (-821)))))
(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2235 *3)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172))))
+ ((*1 *2 *3 *3 *2)
+ (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-644 (-295 *4))) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850))
+ (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))))
+(((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *3 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *6))))
+ (-5 *4 (-1026 (-843 (-566)))) (-5 *5 (-1175)) (-5 *7 (-409 (-566)))
+ (-4 *6 (-1049)) (-5 *2 (-862)) (-5 *1 (-596 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-365) (-848)))
+ (-5 *2 (-2 (|:| |start| *3) (|:| -2670 (-420 *3))))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-566)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-420 *2)) (-4 *2 (-558)))))
+(((*1 *2 *3 *3)
(-12 (-5 *2 (-1171 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308)))))
+(((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *3 (-558)))))
+(((*1 *2)
+ (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *2 (-1269))
+ (-5 *1 (-435 *3 *4)) (-4 *4 (-432 *3)))))
+(((*1 *2 *3 *4 *4 *5 *3 *6)
+ (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3)) (-5 *6 (-1171 *3))
+ (-4 *3 (-13 (-432 *7) (-27) (-1199)))
+ (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-562 *7 *3 *8)) (-4 *8 (-1099))))
+ ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
+ (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3))
+ (-5 *6 (-409 (-1171 *3))) (-4 *3 (-13 (-432 *7) (-27) (-1199)))
+ (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-562 *7 *3 *8)) (-4 *8 (-1099)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-5 *2 (-2 (|:| -2050 *3) (|:| -2849 *4))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454))
+ (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-977 *3 *4 *5 *6)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558))
+ (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-977 *5 *6 *7 *8)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-365)) (-5 *1 (-1025 *3 *2)) (-4 *2 (-656 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-365)) (-5 *2 (-2 (|:| -4257 *3) (|:| -1746 (-644 *5))))
+ (-5 *1 (-1025 *5 *3)) (-5 *4 (-644 *5)) (-4 *3 (-656 *5)))))
(((*1 *2 *1)
(-12
(-5 *2
(-644
(-2
- (|:| -2010
+ (|:| -2050
(-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
(|:| |relerr| (-225))))
- (|:| -2818
+ (|:| -2849
(-2
(|:| |endPointContinuity|
(-3 (|:| |continuous| "Continuous at the end points")
@@ -8964,7 +10492,7 @@
(-3 (|:| |str| (-1155 (-225)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -4344
+ (|:| -2498
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite|
"The bottom of range is infinite")
@@ -8976,10 +10504,81 @@
((*1 *2 *1)
(-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214))
(-5 *2 (-644 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
+(((*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
+ (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
+ (-5 *1 (-788))))
+ ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
+ (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
+ (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
+ (-5 *1 (-788)))))
+(((*1 *2 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1095))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4 *4 *4 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))))
+(((*1 *1) (-5 *1 (-1178))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-365) (-1038 (-409 *2)))) (-5 *2 (-566))
+ (-5 *1 (-115 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))))
(((*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-112))))
((*1 *2 *1)
(-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
(-4 *4 (-1049)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -1616 "void")))
+ (-5 *1 (-439)))))
+(((*1 *1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *3 *4 *4 *3)
+ (|partial| -12 (-5 *4 (-612 *3))
+ (-4 *3 (-13 (-432 *5) (-27) (-1199)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2 (-2 (|:| -2883 *3) (|:| |coeff| *3)))
+ (-5 *1 (-568 *5 *3 *6)) (-4 *6 (-1099)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 (-566)))))
+ (-5 *1 (-363 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 (-771)))))
+ (-5 *1 (-388 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-2 (|:| -2473 *3) (|:| -2456 (-566)))))
+ (-5 *1 (-420 *3)) (-4 *3 (-558))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 (-771)))))
+ (-5 *1 (-819 *3)) (-4 *3 (-850)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-558))
+ (-4 *7 (-949 *3 *5 *6))
+ (-5 *2 (-2 (|:| -2456 (-771)) (|:| -3223 *8) (|:| |radicand| *8)))
+ (-5 *1 (-953 *5 *6 *3 *7 *8)) (-5 *4 (-771))
+ (-4 *8
+ (-13 (-365)
+ (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $))))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175))
+ (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566))))
+ (-5 *2
+ (-2 (|:| |func| *3) (|:| |kers| (-644 (-612 *3)))
+ (|:| |vals| (-644 *3))))
+ (-5 *1 (-278 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-566)) (-5 *1 (-1196 *3)) (-4 *3 (-1049)))))
(((*1 *2 *3 *4)
(-12 (-4 *2 (-1240 *4)) (-5 *1 (-807 *4 *2 *3 *5))
(-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2))
@@ -8988,445 +10587,49 @@
(-12 (-4 *2 (-1240 *4)) (-5 *1 (-807 *4 *2 *5 *3))
(-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-656 *2))
(-4 *3 (-656 (-409 *2))))))
-(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266))))
- ((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1 (-1155 (-952 *4)) (-1155 (-952 *4))))
- (-5 *1 (-1272 *4)) (-4 *4 (-365)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-420 *3)) (-4 *3 (-558)) (-5 *1 (-421 *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| (-1155 (-225)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -4344
- (-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 (-1035)) (-5 *1 (-306)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12
- (-5 *3
- (-1 (-3 (-2 (|:| -2806 *4) (|:| |coeff| *4)) "failed") *4))
- (-4 *4 (-365)) (-5 *1 (-576 *4 *2)) (-4 *2 (-1240 *4)))))
-(((*1 *2)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))))
-(((*1 *2 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *2 (-1099)) (-5 *1 (-1191 *3 *2)) (-4 *3 (-1099)))))
-(((*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-334)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *1 (-264))))
+ (|partial| -12 (-5 *3 (-689 *1)) (-4 *1 (-351)) (-5 *2 (-1264 *1))))
((*1 *2 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-330 *4)) (-4 *4 (-365))
- (-5 *2 (-689 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1264 *3))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
- (-5 *2 (-689 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
- (-5 *2 (-1264 *4))))
+ (|partial| -12 (-5 *3 (-689 *1)) (-4 *1 (-145)) (-4 *1 (-909))
+ (-5 *2 (-1264 *1)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850)) (-4 *3 (-172))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172))
- (-4 *5 (-1240 *4)) (-5 *2 (-689 *4))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172))
- (-4 *5 (-1240 *4)) (-5 *2 (-1264 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-411 *4 *5)) (-4 *4 (-172))
- (-4 *5 (-1240 *4)) (-5 *2 (-689 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3))
- (-5 *2 (-1264 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-419 *4)) (-4 *4 (-172))
- (-5 *2 (-689 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-1264 *3))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-689 *5))) (-5 *3 (-689 *5)) (-4 *5 (-365))
- (-5 *2 (-1264 *5)) (-5 *1 (-1085 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-862)) (-5 *1 (-1155 *3)) (-4 *3 (-1099))
- (-4 *3 (-1214)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1097 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-903 *3)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-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 (-192)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1171 *7)) (-4 *7 (-949 *6 *4 *5)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1049)) (-5 *2 (-1171 *6))
- (-5 *1 (-322 *4 *5 *6 *7)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175))
- (-14 *4 *2))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-183)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5))))
+ (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2))))
((*1 *1 *1 *1)
- (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850))
- (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))))
-(((*1 *1 *1)
(-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850))))
- ((*1 *1) (-4 *1 (-1150))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
- (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1287 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-846)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-538)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-566)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-5 *2 (-1269)) (-5 *1 (-451 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))))
-(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-97)))))
+ (-4 *4 (-850)) (-4 *2 (-558))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-172)))))
+(((*1 *1 *2 *1)
+ (-12 (|has| *1 (-6 -4414)) (-4 *1 (-151 *2)) (-4 *2 (-1214))
+ (-4 *2 (-1099))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4414)) (-4 *1 (-151 *3))
+ (-4 *3 (-1214))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-674 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-566)) (-4 *4 (-1099))
+ (-5 *1 (-737 *4))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-5 *1 (-737 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
+ (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))))
(((*1 *1 *1 *1)
- (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771))
- (-4 *4 (-172))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2))
- (-4 *2 (-432 *4))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1091 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558))
- (-5 *1 (-158 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-160))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-467 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-172)))))
-(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-892 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1) (-12 (-4 *1 (-1120 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-351)) (-4 *4 (-330 *3)) (-4 *5 (-1240 *4))
- (-5 *1 (-777 *3 *4 *5 *2 *6)) (-4 *2 (-1240 *5)) (-14 *6 (-921))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-4 *3 (-370))))
- ((*1 *1 *1) (-12 (-4 *1 (-1283 *2)) (-4 *2 (-365)) (-4 *2 (-370)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1264 (-317 (-225))))
- (-5 *2
- (-2 (|:| |additions| (-566)) (|:| |multiplications| (-566))
- (|:| |exponentiations| (-566)) (|:| |functionCalls| (-566))))
- (-5 *1 (-306)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *2
- (-3 (|:| |%expansion| (-314 *5 *3 *6 *7))
- (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))))
- (-5 *1 (-422 *5 *3 *6 *7)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
- (-14 *6 (-1175)) (-14 *7 *3))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *5 (-370))
- (-5 *2 (-771)))))
-(((*1 *1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-926))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-926))))
- ((*1 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-927))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1 (-943 (-225)) (-225))) (-5 *3 (-1093 (-225)))
- (-5 *1 (-927)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7))))
- (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *4)) (-4 *4 (-1099)) (-4 *6 (-1099))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-684 *4 *5 *6)) (-4 *5 (-1099)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-850))
- (-4 *3 (-1099)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793))
- (-5 *1 (-506 *4 *5 *6 *2)) (-4 *2 (-949 *4 *5 *6))))
- ((*1 *1 *1 *2)
- (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-506 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
- (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-722)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-726)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
- (-5 *2 (-112)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-691 (-966 *3))) (-5 *1 (-966 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 (-943 *4))) (-4 *1 (-1133 *4)) (-4 *4 (-1049))
- (-5 *2 (-771)))))
-(((*1 *1 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214))))
- ((*1 *1 *1)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-375 *2)) (-4 *2 (-1214))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-612 *5)) (-4 *5 (-432 *4)) (-4 *4 (-1038 (-566)))
- (-4 *4 (-558)) (-5 *2 (-1171 *5)) (-5 *1 (-32 *4 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-612 *1)) (-4 *1 (-1049)) (-4 *1 (-303))
- (-5 *2 (-1171 *1)))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-62 *3)) (-14 *3 (-1175))))
- ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-69 *3)) (-14 *3 (-1175))))
- ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-72 *3)) (-14 *3 (-1175))))
- ((*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-1269))))
- ((*1 *2 *3) (-12 (-5 *3 (-390)) (-5 *2 (-1269)) (-5 *1 (-399))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1157)) (-5 *4 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137))))
- ((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-558)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-566)) (-4 *1 (-1092 *3)) (-4 *3 (-1214)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)))))
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-119 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
(((*1 *2 *1 *3)
- (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1062)) (-5 *3 (-1157)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 *4))))
- (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-649 *3 *4 *5)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
- (-5 *1 (-176 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-829)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *5 *6 *5 *4 *7 *3)
- (-12 (-5 *4 (-689 (-566))) (-5 *5 (-112)) (-5 *7 (-689 (-225)))
- (-5 *3 (-566)) (-5 *6 (-225)) (-5 *2 (-1035)) (-5 *1 (-754)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1264 (-3 (-470) "undefined"))) (-5 *1 (-1265)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -3930 (-566)) (|:| -4236 (-644 *3))))
- (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1049)) (-4 *5 (-1240 *4)) (-5 *2 (-1 *6 (-644 *6)))
- (-5 *1 (-1258 *4 *5 *3 *6)) (-4 *3 (-656 *5)) (-4 *6 (-1255 *4)))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-393)))))
-(((*1 *1 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-370)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850))
- (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-771))))
- ((*1 *2 *1 *3)
(-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850))
- (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-4 *1 (-267 *3)) (-4 *3 (-850)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-921))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-338 *4 *5 *6 *7)) (-4 *4 (-13 (-370) (-365)))
- (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-4 *7 (-344 *4 *5 *6))
- (-5 *2 (-771)) (-5 *1 (-394 *4 *5 *6 *7))))
- ((*1 *2 *1) (-12 (-4 *1 (-404)) (-5 *2 (-833 (-921)))))
- ((*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-597 *3)) (-4 *3 (-1049))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-597 *3)) (-4 *3 (-1049))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-558)) (-5 *2 (-566)) (-5 *1 (-623 *3 *4))
- (-4 *4 (-1240 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-740 *4 *3)) (-4 *4 (-1049))
- (-4 *3 (-850))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-740 *4 *3)) (-4 *4 (-1049)) (-4 *3 (-850))
- (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-771))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-904 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4))
- (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6)))
- (-4 *8 (-344 *5 *6 *7)) (-4 *4 (-13 (-558) (-1038 (-566))))
- (-5 *2 (-771)) (-5 *1 (-911 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6))
- (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4)))
- (-4 *6 (-344 (-409 (-566)) *4 *5)) (-5 *2 (-771))
- (-5 *1 (-912 *4 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-338 *6 *7 *4 *8)) (-5 *5 (-1 *9 *6)) (-4 *6 (-365))
- (-4 *7 (-1240 *6)) (-4 *4 (-1240 (-409 *7))) (-4 *8 (-344 *6 *7 *4))
- (-4 *9 (-13 (-370) (-365))) (-5 *2 (-771))
- (-5 *1 (-1018 *6 *7 *4 *8 *9))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1240 *3)) (-4 *3 (-1049)) (-4 *3 (-558))
- (-5 *2 (-771))))
- ((*1 *2 *1 *2)
- (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))))
-(((*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1178)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-905 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *8)) (-5 *4 (-771)) (-4 *8 (-949 *5 *7 *6))
- (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
- (-4 *7 (-793))
- (-5 *2
- (-644
- (-2 (|:| |det| *8) (|:| |rows| (-644 (-566)))
- (|:| |cols| (-644 (-566))))))
- (-5 *1 (-924 *5 *6 *7 *8)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-823)) (-5 *1 (-822)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1026 (-843 (-566))))
- (-5 *3 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *4)))) (-4 *4 (-1049))
- (-5 *1 (-596 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-390)) (-5 *2 (-1269)) (-5 *1 (-393))))
- ((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-393)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225))
- (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
- (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
- (-5 *3 (-644 (-264))) (-5 *1 (-262))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225))
- (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
- (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
- (-5 *1 (-264))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266))))
- ((*1 *2 *1 *3 *3 *4 *4 *4)
- (-12 (-5 *3 (-566)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266))))
- ((*1 *2 *1 *3)
- (-12
- (-5 *3
- (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225))
- (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
- (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
- (-5 *2 (-1269)) (-5 *1 (-1266))))
+ (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-644 (-771)))))
((*1 *2 *1)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-225)) (|:| |phi| (-225)) (|:| -2863 (-225))
- (|:| |scaleX| (-225)) (|:| |scaleY| (-225)) (|:| |scaleZ| (-225))
- (|:| |deltaX| (-225)) (|:| |deltaY| (-225))))
- (-5 *1 (-1266))))
- ((*1 *2 *1 *3 *3 *3 *3 *3)
- (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *1) (-5 *1 (-292))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1049)) (-14 *3 (-644 (-1175)))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1049) (-850)))
- (-14 *3 (-644 (-1175))))))
-(((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1099)) (-5 *2 (-889 *3 *4)) (-5 *1 (-885 *3 *4 *5))
- (-4 *3 (-1099)) (-4 *5 (-666 *4)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-5 *3 (-1 (-112) *5 *5)) (-4 *5 (-13 (-1099) (-34)))
- (-5 *2 (-112)) (-5 *1 (-1139 *4 *5)) (-4 *4 (-13 (-1099) (-34))))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-860)) (-5 *2 (-691 (-1222))) (-5 *3 (-1222)))))
-(((*1 *2 *3) (-12 (-5 *3 (-644 (-52))) (-5 *2 (-1269)) (-5 *1 (-863)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-943 *4))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 (-2 (|:| -2391 (-1171 *6)) (|:| -3250 (-566)))))
- (-4 *6 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
- (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5))))
- ((*1 *1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 (-439)))))
- (-5 *1 (-1179)))))
+ (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850))
+ (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-644 (-771))))))
(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1111)) (-4 *3 (-1099)) (-5 *2 (-644 *1))
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1099)) (-5 *2 (-644 *1))
(-4 *1 (-432 *3))))
((*1 *2 *1)
(|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3))
@@ -9440,272 +10643,73 @@
(-5 *1 (-950 *4 *5 *6 *7 *3))
(-4 *3
(-13 (-365)
- (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $))
- (-15 -3013 (*7 $))))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-644 (-483 *5 *6))) (-5 *4 (-864 *5))
- (-14 *5 (-644 (-1175))) (-5 *2 (-483 *5 *6)) (-5 *1 (-631 *5 *6))
- (-4 *6 (-454))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-483 *5 *6))) (-5 *4 (-864 *5))
- (-14 *5 (-644 (-1175))) (-5 *2 (-483 *5 *6)) (-5 *1 (-631 *5 *6))
- (-4 *6 (-454)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-980 *2)) (-4 *2 (-1049))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1049)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
- (-5 *2 (-1264 *6)) (-5 *1 (-338 *3 *4 *5 *6))
- (-4 *6 (-344 *3 *4 *5)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2222 (-782 *3)) (|:| |coef2| (-782 *3))))
- (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *2 (-2 (|:| -2222 *1) (|:| |coef2| *1)))
- (-4 *1 (-1064 *3 *4 *5)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2
- (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381))
- (|:| |expense| (-381)) (|:| |accuracy| (-381))
- (|:| |intermediateResults| (-381))))
- (-5 *1 (-803)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-589 *4))
- (-4 *4 (-351)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-317 *3)) (-4 *3 (-558)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-558))
- (-5 *2 (-2 (|:| -1380 (-689 *5)) (|:| |vec| (-1264 (-644 (-921))))))
- (-5 *1 (-90 *5 *3)) (-5 *4 (-921)) (-4 *3 (-656 *5)))))
-(((*1 *1) (-5 *1 (-1266))))
-(((*1 *2 *3 *4 *5 *4 *4 *4)
- (-12 (-4 *6 (-850)) (-5 *3 (-644 *6)) (-5 *5 (-644 *3))
- (-5 *2
- (-2 (|:| |f1| *3) (|:| |f2| (-644 *5)) (|:| |f3| *5)
- (|:| |f4| (-644 *5))))
- (-5 *1 (-1185 *6)) (-5 *4 (-644 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-5 *2 (-2 (|:| -2010 *3) (|:| -2818 *4))))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
-(((*1 *2)
- (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5)))
- (-5 *2 (-644 (-644 *4))) (-5 *1 (-343 *3 *4 *5 *6))
- (-4 *3 (-344 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-4 *3 (-370)) (-5 *2 (-644 (-644 *3))))))
-(((*1 *2 *2) (-12 (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3))
- (-4 *3 (-1240 (-169 *2))))))
-(((*1 *2 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214))))
- ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1095))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1252 *3)) (-4 *3 (-1214))))
- ((*1 *2 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1175)) (-5 *1 (-587 *2)) (-4 *2 (-1038 *3))
- (-4 *2 (-365))))
- ((*1 *1 *2 *2) (-12 (-5 *1 (-587 *2)) (-4 *2 (-365))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-630 *4 *2))
- (-4 *2 (-13 (-432 *4) (-1002) (-1199)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1091 *2)) (-4 *2 (-13 (-432 *4) (-1002) (-1199)))
- (-4 *4 (-558)) (-5 *1 (-630 *4 *2))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-959)) (-5 *2 (-1175))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-959)))))
-(((*1 *2 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-409 (-566))) (-5 *1 (-596 *3)) (-4 *3 (-38 *2))
- (-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-647 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1171 *1)) (-4 *1 (-1012)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793)) (-5 *2 (-644 *3)) (-5 *1 (-924 *4 *5 *6 *3))
- (-4 *3 (-949 *4 *6 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
- (-5 *2
- (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566))
- (|:| |success| (-112))))
- (-5 *1 (-789)) (-5 *5 (-566)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-708 *3)) (-5 *1 (-827 *2 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-4 *4 (-1099))
- (-5 *1 (-575 *4 *2)) (-4 *2 (-432 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -2806 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-365)) (-4 *7 (-1240 *6))
- (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6)))
- (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
-(((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
- (-4 *4 (-375 *2)))))
-(((*1 *2 *3 *3 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *3 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
- (-5 *1 (-451 *4 *3 *5 *6)) (-4 *6 (-949 *4 *3 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *5)) (-4 *5 (-432 *4)) (-4 *4 (-558))
- (-5 *2 (-862)) (-5 *1 (-32 *4 *5)))))
+ (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $))
+ (-15 -3100 (*7 $))))))))
+(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266))))
+ ((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1119)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))))
(((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4417)) (-4 *1 (-151 *2)) (-4 *2 (-1214))
- (-4 *2 (-1099))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4417)) (-4 *1 (-151 *3))
- (-4 *3 (-1214))))
+ (-12 (-5 *2 (-1 *3 (-566))) (-4 *3 (-1049)) (-5 *1 (-596 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-674 *3)) (-4 *3 (-1214))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-566)) (-4 *4 (-1099))
- (-5 *1 (-737 *4))))
- ((*1 *1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-5 *1 (-737 *2)) (-4 *2 (-1099))))
+ (-12 (-5 *2 (-1 *3 (-566))) (-4 *1 (-1224 *3)) (-4 *3 (-1049))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
- (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365))
- (-5 *2
- (-2 (|:| |ir| (-587 (-409 *6))) (|:| |specpart| (-409 *6))
- (|:| |polypart| *6)))
- (-5 *1 (-576 *5 *6)) (-5 *3 (-409 *6)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1138))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-409 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-13 (-365) (-147)))
- (-5 *1 (-401 *3 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-4 *1 (-324 *2 *4)) (-4 *4 (-131))
- (-4 *2 (-1099))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-363 *2)) (-4 *2 (-1099))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-388 *2)) (-4 *2 (-1099))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-4 *2 (-1099)) (-5 *1 (-649 *2 *4 *5))
- (-4 *4 (-23)) (-14 *5 *4)))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *1 (-819 *2)) (-4 *2 (-850)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1264 *5)) (-4 *5 (-639 *4)) (-4 *4 (-558))
- (-5 *2 (-1264 *4)) (-5 *1 (-638 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *2 (-112)) (-5 *1 (-268))))
- ((*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-112)) (-5 *1 (-268))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))))
-(((*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-5 *5 (-644 *8))
- (-4 *7 (-850)) (-4 *8 (-1049)) (-4 *9 (-949 *8 *6 *7))
- (-4 *6 (-793)) (-5 *2 (-1171 *8)) (-5 *1 (-322 *6 *7 *8 *9)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-183))) (-5 *1 (-140)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1099)) (-4 *5 (-1099))
- (-5 *2 (-1 *5)) (-5 *1 (-683 *4 *5)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1257 *3 *2))
- (-4 *2 (-1255 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-31))))
- ((*1 *2 *1) (-12 (-5 *2 (-1180)) (-5 *1 (-49))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-133))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-138))))
- ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-154))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-161))))
- ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-218))))
- ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-676))))
- ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1019))))
- ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1065))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1095)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112))
- (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-351)) (-4 *5 (-330 *4)) (-4 *6 (-1240 *5))
- (-5 *2 (-644 *3)) (-5 *1 (-777 *4 *5 *6 *3 *7)) (-4 *3 (-1240 *6))
- (-14 *7 (-921)))))
+ (-12 (-5 *2 (-1 *3 (-566))) (-4 *1 (-1255 *3)) (-4 *3 (-1049)))))
+(((*1 *2)
+ (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-345 *3 *4)) (-14 *3 (-921))
+ (-14 *4 (-921))))
+ ((*1 *2)
+ (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-346 *3 *4)) (-4 *3 (-351))
+ (-14 *4 (-1171 *3))))
+ ((*1 *2)
+ (-12 (-5 *2 (-958 (-1119))) (-5 *1 (-347 *3 *4)) (-4 *3 (-351))
+ (-14 *4 (-921)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1171 *6)) (-5 *3 (-566)) (-4 *6 (-308)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-644 (-2 (|:| |totdeg| (-771)) (|:| -2576 *3))))
+ (-5 *4 (-771)) (-4 *3 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793))
+ (-4 *7 (-850)) (-5 *1 (-451 *5 *6 *7 *3)))))
+(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-752)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
- (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-432 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
-(((*1 *2 *3) (-12 (-5 *3 (-169 (-566))) (-5 *2 (-112)) (-5 *1 (-448))))
+ (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3))
+ (-4 *3 (-1099)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1274)))))
+(((*1 *2 *1) (-12 (-4 *1 (-558)) (-5 *2 (-112)))))
+(((*1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049))))
((*1 *2 *3)
- (-12
- (-5 *3
- (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
- (-247 *4 (-409 (-566)))))
- (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112))
- (-5 *1 (-507 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-547))))
- ((*1 *2 *1) (-12 (-4 *1 (-1218)) (-5 *2 (-112)))))
-(((*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-971)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
- (-5 *2 (-587 *3)) (-5 *1 (-428 *5 *3))
- (-4 *3 (-13 (-1199) (-29 *5))))))
-(((*1 *2) (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1267))))
- ((*1 *2 *2) (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1267)))))
-(((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-114)) (-5 *4 (-771))
- (-4 *5 (-13 (-454) (-1038 (-566)))) (-4 *5 (-558))
- (-5 *1 (-41 *5 *2)) (-4 *2 (-432 *5))
- (-4 *2
- (-13 (-365) (-303)
- (-10 -8 (-15 -3001 ((-1124 *5 (-612 $)) $))
- (-15 -3013 ((-1124 *5 (-612 $)) $))
- (-15 -2512 ($ (-1124 *5 (-612 $))))))))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-295 *2)) (-4 *2 (-726)) (-4 *2 (-1214)))))
+ (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4))
+ (-4 *6 (-375 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
+ (-5 *1 (-688 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3))
+ (-4 *3 (-648 *2))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3))
+ (-4 *3 (-648 *2))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049))))
+ ((*1 *1 *1) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *2 (-1035)) (-5 *1 (-754)))))
+(((*1 *1) (-5 *1 (-823))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7)
+ (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))))
+ (-5 *2 (-1035)) (-5 *1 (-749))))
+ ((*1 *2 *3 *4 *4 *5 *4 *4 *5 *5 *3 *4 *4 *6 *7 *8 *8)
+ (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-61 COEFFN))))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-87 BDYVAL))))
+ (-5 *8 (-390)) (-5 *2 (-1035)) (-5 *1 (-749)))))
(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-96))))
((*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-109))))
((*1 *2 *1)
@@ -9719,289 +10723,83 @@
((*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-1074 *3)) (-14 *3 *2)))
((*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1114))))
((*1 *1 *1) (-5 *1 (-1175))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-1131 *4 *2))
- (-4 *2 (-13 (-604 (-566) *4) (-10 -7 (-6 -4417) (-6 -4418))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-850)) (-4 *3 (-1214)) (-5 *1 (-1131 *3 *2))
- (-4 *2 (-13 (-604 (-566) *3) (-10 -7 (-6 -4417) (-6 -4418)))))))
-(((*1 *1 *1) (-4 *1 (-243)))
- ((*1 *1 *1)
- (-12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1240 *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)
- (-2805 (-12 (-5 *1 (-295 *2)) (-4 *2 (-365)) (-4 *2 (-1214)))
- (-12 (-5 *1 (-295 *2)) (-4 *2 (-475)) (-4 *2 (-1214)))))
- ((*1 *1 *1) (-4 *1 (-475)))
- ((*1 *2 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-351)) (-5 *1 (-530 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-797 *2)) (-4 *2 (-172)) (-4 *2 (-365)))))
-(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1219))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1141 *3 *4)) (-14 *3 (-921)) (-4 *4 (-365))
- (-5 *1 (-993 *3 *4)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-1155 *3))) (-5 *1 (-1155 *3)) (-4 *3 (-1214)))))
-(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-317 (-381))) (-5 *1 (-306)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 *3)) (-4 *3 (-1070 *5 *6 *7 *8)) (-4 *5 (-454))
- (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7))
- (-5 *2 (-112)) (-5 *1 (-988 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 *3)) (-4 *3 (-1070 *5 *6 *7 *8)) (-4 *5 (-454))
- (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7))
- (-5 *2 (-112)) (-5 *1 (-1106 *5 *6 *7 *8 *3)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *3 (-1064 *4 *5 *6))
- (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2248 *1))))
- (-4 *1 (-1070 *4 *5 *6 *3)))))
-(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-682 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1195))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1195)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
- (-5 *2
- (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566))
- (|:| |success| (-112))))
- (-5 *1 (-789)) (-5 *5 (-566)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1099)) (-4 *4 (-1099))
- (-4 *6 (-1099)) (-5 *2 (-1 *6 *5)) (-5 *1 (-684 *5 *4 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1049))
- (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285)))
- (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-921)) (-4 *5 (-1049))
- (-4 *2 (-13 (-406) (-1038 *5) (-365) (-1199) (-285)))
- (-5 *1 (-445 *5 *3 *2)) (-4 *3 (-1240 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-822)))))
+(((*1 *1 *1) (-4 *1 (-547))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2 (-1 *5 *5)) (-5 *1 (-804 *4 *5))
- (-4 *5 (-13 (-29 *4) (-1199) (-959))))))
-(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
- (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-169 (-225))))
- (-5 *2 (-1035)) (-5 *1 (-754)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))))
+ (-12 (-5 *3 (-771)) (-5 *2 (-1 (-1155 (-952 *4)) (-1155 (-952 *4))))
+ (-5 *1 (-1272 *4)) (-4 *4 (-365)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225)))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-79 LSFUN1))))
+ (-5 *2 (-1035)) (-5 *1 (-753)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4))
+ (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-792)) (-4 *3 (-172)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-409 (-566)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-295 *3)) (-5 *5 (-409 (-566)))
- (-4 *3 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *6 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-1 *8 (-409 (-566)))) (-5 *4 (-295 *8))
- (-5 *5 (-1231 (-409 (-566)))) (-5 *6 (-409 (-566)))
- (-4 *8 (-13 (-27) (-1199) (-432 *7)))
- (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *7 *8))))
- ((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-409 (-566))))
- (-5 *7 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *8)))
- (-4 *8 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *8 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-409 (-566))) (-4 *4 (-1049)) (-4 *1 (-1247 *4 *3))
- (-4 *3 (-1224 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-381)) (-5 *1 (-1040)))))
-(((*1 *2 *3 *3 *4 *5 *3 *6)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1035))
- (-5 *1 (-746)))))
-(((*1 *1 *1) (-5 *1 (-1062))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-648 *3)) (-4 *3 (-1049))
- (-5 *1 (-714 *3 *4))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-836 *3)))))
-(((*1 *2 *3 *4 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
- (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-921)) (-5 *2 (-470)) (-5 *1 (-1265)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1224 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-3 (-2 (|:| -2806 *7) (|:| |coeff| *7)) "failed") *7))
- (-5 *6 (-644 (-409 *8))) (-4 *7 (-365)) (-4 *8 (-1240 *7))
- (-5 *3 (-409 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-576 *7 *8)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1255 *4))
- (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-1 (-1155 *4) (-1155 *4)))
- (-5 *1 (-1257 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-566)) (-4 *5 (-13 (-454) (-1038 *4) (-639 *4)))
- (-5 *2 (-52)) (-5 *1 (-316 *5 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-454) (-1038 *5) (-639 *5))) (-5 *5 (-566))
- (-5 *2 (-52)) (-5 *1 (-316 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-566)))
- (-4 *7 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-566)))
- (-4 *3 (-13 (-27) (-1199) (-432 *7)))
- (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *7 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-566)) (-4 *4 (-1049)) (-4 *1 (-1226 *4 *3))
- (-4 *3 (-1255 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1224 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-644
- (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-771)) (|:| |poli| *6)
- (|:| |polj| *6))))
- (-4 *3 (-793)) (-4 *6 (-949 *4 *3 *5)) (-4 *4 (-454)) (-4 *5 (-850))
- (-5 *1 (-451 *4 *3 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
- ((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-483 *4 *5))) (-14 *4 (-644 (-1175)))
- (-4 *5 (-454))
- (-5 *2
- (-2 (|:| |gblist| (-644 (-247 *4 *5)))
- (|:| |gvlist| (-644 (-566)))))
- (-5 *1 (-631 *4 *5)))))
-(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-112))
- (-5 *6 (-225)) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 APROD))))
- (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-73 MSOLVE))))
- (-5 *2 (-1035)) (-5 *1 (-756)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-1171 (-952 *4))) (-5 *1 (-418 *3 *4))
- (-4 *3 (-419 *4))))
- ((*1 *2)
- (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-4 *3 (-365))
- (-5 *2 (-1171 (-952 *3)))))
- ((*1 *2)
- (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *3 (-558)))))
+ (|partial| -12 (-5 *3 (-114)) (-5 *1 (-113 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-420 *3)) (-4 *3 (-558)) (-5 *1 (-421 *3)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-793))
+ (-4 *3 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))) (-4 *5 (-558))
+ (-5 *1 (-732 *4 *3 *5 *2)) (-4 *2 (-949 (-409 (-952 *5)) *4 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-4 *4 (-1049)) (-4 *5 (-793))
+ (-4 *3
+ (-13 (-850)
+ (-10 -8 (-15 -3204 ((-1175) $))
+ (-15 -1401 ((-3 $ "failed") (-1175))))))
+ (-5 *1 (-984 *4 *5 *3 *2)) (-4 *2 (-949 (-952 *4) *5 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 *6))
+ (-4 *6
+ (-13 (-850)
+ (-10 -8 (-15 -3204 ((-1175) $))
+ (-15 -1401 ((-3 $ "failed") (-1175))))))
+ (-4 *4 (-1049)) (-4 *5 (-793)) (-5 *1 (-984 *4 *5 *6 *2))
+ (-4 *2 (-949 (-952 *4) *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4)))))
+ (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049))
+ (-5 *2 (-483 *4 *5)) (-5 *1 (-944 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *2 (-644 (-169 *4))) (-5 *1 (-155 *3 *4))
+ (-4 *3 (-1240 (-169 (-566)))) (-4 *4 (-13 (-365) (-848)))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-771)) (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *2 (-52)) (-5 *1 (-316 *5 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-295 *3)) (-5 *5 (-771))
- (-4 *3 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *6 *3))))
+ (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-644 (-169 *4)))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 (-566))) (-5 *4 (-295 *6))
- (-4 *6 (-13 (-27) (-1199) (-432 *5)))
- (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-771)))
- (-4 *7 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-771)))
- (-4 *3 (-13 (-27) (-1199) (-432 *7)))
- (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *7 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1255 *3)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
- (-4 *4 (-375 *2)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-126 *3)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
+ (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-644 (-169 *4)))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3))
+ (-4 *3 (-1099)))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-914 *3)) (-4 *3 (-308)))))
+(((*1 *2 *2) (-12 (-5 *1 (-588 *2)) (-4 *2 (-547)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-644 (-771))) (-5 *1 (-969 *4 *3))
+ (-4 *3 (-1240 *4)))))
(((*1 *2 *3)
(|partial| -12
(-5 *3
(-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
(|:| |relerr| (-225))))
(-5 *2
(-2
@@ -10019,7 +10817,7 @@
(-3 (|:| |str| (-1155 (-225)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -4344
+ (|:| -2498
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -10028,224 +10826,67 @@
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-561)))))
(((*1 *2) (-12 (-5 *2 (-644 *3)) (-5 *1 (-1083 *3)) (-4 *3 (-132)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-874)) (-5 *2 (-1269)) (-5 *1 (-1265))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-558))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-558)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1093 (-843 (-381)))) (-5 *2 (-1093 (-843 (-225))))
- (-5 *1 (-306)))))
-(((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566))))
- (-5 *2
- (-2 (|:| |a| *6) (|:| |b| (-409 *6)) (|:| |c| (-409 *6))
- (|:| -1454 *6)))
- (-5 *1 (-1015 *5 *6)) (-5 *3 (-409 *6)))))
-(((*1 *2 *3 *4 *4 *5)
- (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3))
- (-4 *3 (-13 (-432 *6) (-27) (-1199)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-568 *6 *3 *7)) (-4 *7 (-1099)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1255 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-644 (-952 *4))) (-5 *3 (-644 (-1175))) (-4 *4 (-454))
- (-5 *1 (-918 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-225))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-225))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-381))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-381)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-566))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-365) (-1199) (-1002))))))
-(((*1 *2 *1) (-12 (-5 *2 (-774)) (-5 *1 (-52)))))
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
+ ((*1 *2 *3) (-12 (-5 *3 (-971)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-365)) (-4 *1 (-330 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1240 *4)) (-4 *4 (-1218))
+ (-4 *1 (-344 *4 *3 *5)) (-4 *5 (-1240 (-409 *3)))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1264 *4)) (-5 *3 (-1264 *1)) (-4 *4 (-172))
+ (-4 *1 (-369 *4))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1264 *4)) (-5 *3 (-1264 *1)) (-4 *4 (-172))
+ (-4 *1 (-372 *4 *5)) (-4 *5 (-1240 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-411 *3 *4))
+ (-4 *4 (-1240 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-419 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-927))
- (-5 *2
- (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
- (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
- (-5 *1 (-153))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-927)) (-5 *4 (-409 (-566)))
- (-5 *2
- (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
- (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
- (-5 *1 (-153))))
- ((*1 *2 *3)
- (-12
- (-5 *2
- (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
- (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
- (-5 *1 (-153)) (-5 *3 (-644 (-943 (-225))))))
- ((*1 *2 *3)
(-12
- (-5 *2
- (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
- (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
- (-5 *1 (-153)) (-5 *3 (-644 (-644 (-943 (-225)))))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264)))))
-(((*1 *1 *1 *1) (-4 *1 (-547))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-493)) (-5 *4 (-954)) (-5 *2 (-691 (-535)))
- (-5 *1 (-535))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-954)) (-4 *3 (-1099)) (-5 *2 (-691 *1))
- (-4 *1 (-767 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-248)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
- (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-558)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
- (-4 *7 (-992 *4)) (-4 *2 (-687 *7 *8 *9))
- (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-687 *4 *5 *6))
- (-4 *8 (-375 *7)) (-4 *9 (-375 *7))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049))
- (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (-4 *2 (-365))))
- ((*1 *2 *2)
- (|partial| -12 (-4 *3 (-365)) (-4 *3 (-172)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2))
- (-4 *2 (-687 *3 *4 *5))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-689 *2)) (-4 *2 (-365)) (-4 *2 (-1049))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *1 (-1122 *2 *3 *4 *5)) (-4 *3 (-1049))
- (-4 *4 (-238 *2 *3)) (-4 *5 (-238 *2 *3)) (-4 *3 (-365))))
- ((*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-1185 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-689 *3))
- (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))))
- (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))))
-(((*1 *1) (-5 *1 (-470))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
- (-14 *5 (-644 (-1175)))
- (-5 *2
- (-644 (-2 (|:| -4137 (-1171 *4)) (|:| -2770 (-644 (-952 *4))))))
- (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175)))))
- ((*1 *2 *3 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2
- (-644 (-2 (|:| -4137 (-1171 *5)) (|:| -2770 (-644 (-952 *5))))))
- (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5)))
- (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2
- (-644 (-2 (|:| -4137 (-1171 *5)) (|:| -2770 (-644 (-952 *5))))))
- (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5)))
- (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2
- (-644 (-2 (|:| -4137 (-1171 *5)) (|:| -2770 (-644 (-952 *5))))))
- (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5)))
- (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2
- (-644 (-2 (|:| -4137 (-1171 *4)) (|:| -2770 (-644 (-952 *4))))))
- (-5 *1 (-1290 *4 *5 *6)) (-5 *3 (-644 (-952 *4)))
- (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793)) (-5 *2 (-644 (-644 (-566))))
- (-5 *1 (-924 *4 *5 *6 *7)) (-5 *3 (-566)) (-4 *7 (-949 *4 *6 *5)))))
-(((*1 *1 *1) (-12 (-5 *1 (-1200 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *1 (-804 *4 *2)) (-4 *2 (-13 (-29 *4) (-1199) (-959))))))
-(((*1 *2 *3 *4 *2 *2 *5)
- (|partial| -12 (-5 *2 (-843 *4)) (-5 *3 (-612 *4)) (-5 *5 (-112))
- (-4 *4 (-13 (-1199) (-29 *6)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-224 *6 *4)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1552 *4)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *4 (-771))
- (-5 *2 (-689 (-225))) (-5 *1 (-268)))))
-(((*1 *1 *1) (-5 *1 (-1062))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
-(((*1 *2 *2 *3 *4 *4)
- (-12 (-5 *4 (-566)) (-4 *3 (-172)) (-4 *5 (-375 *3))
- (-4 *6 (-375 *3)) (-5 *1 (-688 *3 *5 *6 *2))
- (-4 *2 (-687 *3 *5 *6)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1099)) (-4 *3 (-900 *5)) (-5 *2 (-689 *3))
- (-5 *1 (-692 *5 *3 *6 *4)) (-4 *6 (-375 *3))
- (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4417)))))))
-(((*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
+ (-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| (-1155 (-225)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2498
+ (-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 (-1035)) (-5 *1 (-306)))))
+(((*1 *2)
+ (-12 (-4 *3 (-1049)) (-5 *2 (-958 (-712 *3 *4))) (-5 *1 (-712 *3 *4))
+ (-4 *4 (-1240 *3)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-644 (-508))) (-5 *2 (-508)) (-5 *1 (-485)))))
(((*1 *2 *2 *3)
- (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3)))))
-(((*1 *2 *1 *1)
- (|partial| -12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))))
-(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266))))
- ((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))))
-(((*1 *1 *1) (|partial| -4 *1 (-1150))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3))
- (-4 *3 (-648 *2))))
- ((*1 *2 *2) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-531))))
- ((*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-531)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-365)) (-4 *4 (-558)) (-4 *5 (-1240 *4))
- (-5 *2 (-2 (|:| -1908 (-623 *4 *5)) (|:| -3388 (-409 *5))))
- (-5 *1 (-623 *4 *5)) (-5 *3 (-409 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4))
- (-14 *3 (-921)) (-4 *4 (-1049))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-454)) (-4 *3 (-1049))
- (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
- (-4 *1 (-1240 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-5 *2 (-1269))
- (-5 *1 (-1215 *4))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-5 *2 (-1269))
- (-5 *1 (-1215 *4)))))
+ (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *3 (-644 (-874)))
+ (-5 *1 (-470)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))
+ (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -3625 (-644 (-225)))))
(-5 *2 (-644 (-1175))) (-5 *1 (-268))))
((*1 *2 *3)
(-12 (-5 *3 (-1171 *7)) (-4 *7 (-949 *6 *4 *5)) (-4 *4 (-793))
@@ -10267,7 +10908,7 @@
(-5 *1 (-950 *4 *5 *6 *7 *3))
(-4 *3
(-13 (-365)
- (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $)))))))
+ (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $)))))))
((*1 *2 *1)
(-12 (-4 *1 (-973 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-792))
(-4 *5 (-850)) (-5 *2 (-644 *5))))
@@ -10277,43 +10918,52 @@
((*1 *2 *3)
(-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558)) (-5 *2 (-644 (-1175)))
(-5 *1 (-1043 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-169 *5)) (-5 *1 (-600 *4 *5 *3))
- (-4 *5 (-13 (-432 *4) (-1002) (-1199)))
- (-4 *3 (-13 (-432 (-169 *4)) (-1002) (-1199))))))
-(((*1 *1 *1) (-4 *1 (-547))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-132)) (-5 *1 (-1083 *2))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-566) *2 *2)) (-4 *2 (-132)) (-5 *1 (-1083 *2)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-675 *3)) (-4 *3 (-1049))
- (-4 *3 (-1099)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7))
+ (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1))
+ (-4 *1 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1))
+ (-4 *1 (-1070 *4 *5 *6 *3)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12
+ (-5 *3
+ (-1 (-3 (-2 (|:| -2883 *4) (|:| |coeff| *4)) "failed") *4))
+ (-4 *4 (-365)) (-5 *1 (-576 *4 *2)) (-4 *2 (-1240 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-366 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-4 *7 (-850))
- (-4 *9 (-949 *8 *6 *7)) (-4 *6 (-793)) (-4 *8 (-308))
- (-5 *2 (-644 (-771))) (-5 *1 (-742 *6 *7 *8 *9)) (-5 *5 (-771)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-454))
- (-5 *2
- (-644
- (-2 (|:| |eigval| (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4))))
- (|:| |eigmult| (-771))
- (|:| |eigvec| (-644 (-689 (-409 (-952 *4))))))))
- (-5 *1 (-293 *4)) (-5 *3 (-689 (-409 (-952 *4)))))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-112))))
- ((*1 *2 *3 *1 *4)
- (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1207 *5 *6 *7 *3))
- (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-862)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 (-771))
+ (-14 *4 (-771)) (-4 *5 (-172)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-774)) (-5 *1 (-52)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1171 *1)) (-5 *3 (-1175)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-27))))
+ ((*1 *1 *2) (-12 (-5 *2 (-952 *1)) (-4 *1 (-27))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-4 *1 (-29 *3)) (-4 *3 (-558))))
+ ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-558)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3))
+ (-4 *3 (-1099)))))
+(((*1 *2 *3 *4 *3 *4 *4 *4 *4 *4)
+ (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035))
+ (-5 *1 (-755)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
+ (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
(((*1 *2 *3 *4 *2)
(-12 (-5 *3 (-1171 (-409 (-1171 *2)))) (-5 *4 (-612 *2))
(-4 *2 (-13 (-432 *5) (-27) (-1199)))
@@ -10330,135 +10980,66 @@
(-4 *6 (-1049))
(-4 *2
(-13 (-365)
- (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $)))))
+ (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $)))))
(-5 *1 (-950 *5 *4 *6 *7 *2)) (-4 *7 (-949 *6 *5 *4))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-409 (-1171 (-409 (-952 *5))))) (-5 *4 (-1175))
(-5 *2 (-409 (-952 *5))) (-5 *1 (-1043 *5)) (-4 *5 (-558)))))
-(((*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-821)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-558))
- (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-1235 *4 *3))
- (-4 *3 (-1240 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-829)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)))))
+(((*1 *2)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-566)) (|has| *1 (-6 -4408)) (-4 *1 (-406))
- (-5 *2 (-921)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-151 *3))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-644 (-2 (|:| -3250 (-771)) (|:| -2420 *4) (|:| |num| *4))))
- (-4 *4 (-1240 *3)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-5 *3 (-644 (-952 (-566)))) (-5 *4 (-112)) (-5 *1 (-439))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-5 *3 (-644 (-1175))) (-5 *4 (-112)) (-5 *1 (-439))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1155 *3)) (-5 *1 (-601 *3)) (-4 *3 (-1214))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-634 *2)) (-4 *2 (-172))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4))
- (-4 *4 (-172))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4))
- (-4 *4 (-172))))
- ((*1 *1 *2 *2)
- (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-5 *1 (-664 *3 *4))
- (-4 *4 (-172))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-644 (-644 *3)))) (-4 *3 (-1099))
- (-5 *1 (-675 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-713 *2 *3 *4)) (-4 *2 (-850)) (-4 *3 (-1099))
- (-14 *4
- (-1 (-112) (-2 (|:| -2168 *2) (|:| -3250 *3))
- (-2 (|:| -2168 *2) (|:| -3250 *3))))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-1117)) (-5 *1 (-838))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-873 *2 *3)) (-4 *2 (-1214)) (-4 *3 (-1214))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 *4))))
- (-4 *4 (-1099)) (-5 *1 (-889 *3 *4)) (-4 *3 (-1099))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 *5)) (-4 *5 (-13 (-1099) (-34)))
- (-5 *2 (-644 (-1139 *3 *5))) (-5 *1 (-1139 *3 *5))
- (-4 *3 (-13 (-1099) (-34)))))
+ (-12 (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))))
+ (-4 *4 (-1240 *3))
+ (-5 *2
+ (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-689 *3))))
+ (-5 *1 (-352 *3 *4 *5)) (-4 *5 (-411 *3 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-644 (-2 (|:| |val| *4) (|:| -2248 *5))))
- (-4 *4 (-13 (-1099) (-34))) (-4 *5 (-13 (-1099) (-34)))
- (-5 *2 (-644 (-1139 *4 *5))) (-5 *1 (-1139 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -2248 *4)))
- (-4 *3 (-13 (-1099) (-34))) (-4 *4 (-13 (-1099) (-34)))
- (-5 *1 (-1139 *3 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
- (-4 *3 (-13 (-1099) (-34)))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
- (-4 *3 (-13 (-1099) (-34)))))
- ((*1 *1 *2 *3 *2 *4)
- (-12 (-5 *4 (-644 *3)) (-4 *3 (-13 (-1099) (-34)))
- (-5 *1 (-1140 *2 *3)) (-4 *2 (-13 (-1099) (-34)))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-1139 *2 *3))) (-4 *2 (-13 (-1099) (-34)))
- (-4 *3 (-13 (-1099) (-34))) (-5 *1 (-1140 *2 *3))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-1140 *2 *3))) (-5 *1 (-1140 *2 *3))
- (-4 *2 (-13 (-1099) (-34))) (-4 *3 (-13 (-1099) (-34)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
- (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *1 (-1164 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
- (-5 *1 (-587 *3)) (-4 *3 (-365)))))
-(((*1 *1 *2)
- (-12
+ (-12 (-5 *3 (-566)) (-4 *4 (-1240 *3))
(-5 *2
- (-644
- (-2
- (|:| -2010
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (|:| -2818
- (-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| (-1155 (-225)))
- (|:| |notEvaluated|
- "Internal singularities not yet evaluated")))
- (|:| -4344
- (-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 (-561)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4))))
- ((*1 *2 *3 *3 *3 *3 *3)
- (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))))
+ (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-689 *3))))
+ (-5 *1 (-768 *4 *5)) (-4 *5 (-411 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-351)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 *3))
+ (-5 *2
+ (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-689 *3))))
+ (-5 *1 (-985 *4 *3 *5 *6)) (-4 *6 (-724 *3 *5))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-351)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 *3))
+ (-5 *2
+ (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-689 *3))))
+ (-5 *1 (-1273 *4 *3 *5 *6)) (-4 *6 (-411 *3 *5)))))
+(((*1 *2 *2 *2 *3 *3 *4 *2 *5)
+ (|partial| -12 (-5 *3 (-612 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175))) (-5 *5 (-1171 *2))
+ (-4 *2 (-13 (-432 *6) (-27) (-1199)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *1 (-562 *6 *2 *7)) (-4 *7 (-1099))))
+ ((*1 *2 *2 *2 *3 *3 *4 *3 *2 *5)
+ (|partial| -12 (-5 *3 (-612 *2))
+ (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175)))
+ (-5 *5 (-409 (-1171 *2))) (-4 *2 (-13 (-432 *6) (-27) (-1199)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *1 (-562 *6 *2 *7)) (-4 *7 (-1099)))))
+(((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-538))) (-5 *1 (-538)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-248)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-566)) (-5 *2 (-644 (-2 (|:| -2473 *3) (|:| -2108 *4))))
+ (-5 *1 (-696 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-493)))))
(((*1 *1 *2 *3)
(-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-792))))
((*1 *1 *2 *3)
@@ -10466,10 +11047,10 @@
(-4 *2 (-365)) (-14 *5 (-993 *4 *2))))
((*1 *1 *2 *3)
(-12 (-5 *3 (-713 *5 *6 *7)) (-4 *5 (-850))
- (-4 *6 (-238 (-2997 *4) (-771)))
+ (-4 *6 (-238 (-3020 *4) (-771)))
(-14 *7
- (-1 (-112) (-2 (|:| -2168 *5) (|:| -3250 *6))
- (-2 (|:| -2168 *5) (|:| -3250 *6))))
+ (-1 (-112) (-2 (|:| -2208 *5) (|:| -2456 *6))
+ (-2 (|:| -2208 *5) (|:| -2456 *6))))
(-14 *4 (-644 (-1175))) (-4 *2 (-172))
(-5 *1 (-463 *4 *2 *5 *6 *7 *8)) (-4 *8 (-949 *2 *6 (-864 *4)))))
((*1 *1 *2 *3)
@@ -10499,692 +11080,482 @@
((*1 *1 *1 *2 *3)
(-12 (-4 *1 (-973 *4 *3 *2)) (-4 *4 (-1049)) (-4 *3 (-792))
(-4 *2 (-850)))))
-(((*1 *1 *1 *1) (-4 *1 (-547))))
+(((*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-1171 *3)))))
+(((*1 *2 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-506 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175))
+ (-14 *4 *2))))
+(((*1 *2)
+ (-12 (-4 *1 (-351))
+ (-5 *2 (-644 (-2 (|:| -2473 (-566)) (|:| -2456 (-566))))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-604 *2 *3)) (-4 *3 (-1214)) (-4 *2 (-1099))
+ (-4 *2 (-850)))))
(((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 (-644 *2) *2 *2 *2)) (-4 *2 (-1099))
- (-5 *1 (-103 *2))))
+ (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-771)) (-4 *1 (-231 *4))
+ (-4 *4 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-231 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-233)) (-5 *2 (-771))))
+ ((*1 *1 *1) (-4 *1 (-233)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-4 *1 (-267 *3)) (-4 *3 (-850))))
+ ((*1 *1 *1) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218))
+ (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *3 (-13 (-365) (-147))) (-5 *1 (-401 *3 *4))
+ (-4 *4 (-1240 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-13 (-365) (-147))) (-5 *1 (-401 *2 *3))
+ (-4 *3 (-1240 *2))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-476 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *2 (-365)) (-4 *2 (-900 *3)) (-5 *1 (-587 *2))
+ (-5 *3 (-1175))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-587 *2)) (-4 *2 (-365))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862))))
((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1099)) (-5 *1 (-103 *2)))))
-(((*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))))
+ (-12 (-5 *2 (-644 *4)) (-5 *3 (-644 (-771))) (-4 *1 (-900 *4))
+ (-4 *4 (-1099))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-771)) (-4 *1 (-900 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *1 (-900 *3)) (-4 *3 (-1099))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-900 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1166 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1172 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1173 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1228 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1240 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1249 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3)))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5))
+ (-4 *3 (-1049)) (-14 *5 *3))))
+(((*1 *2 *3 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-74 FCN)))) (-5 *2 (-1035))
+ (-5 *1 (-746)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-1171 *4))
+ (-5 *1 (-530 *4)))))
+(((*1 *2)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-1264 *5))) (-5 *4 (-566)) (-5 *2 (-1264 *5))
+ (-5 *1 (-1029 *5)) (-4 *5 (-365)) (-4 *5 (-370)) (-4 *5 (-1049)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-454)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793))
+ (-5 *2
+ (-2 (|:| |mval| (-689 *4)) (|:| |invmval| (-689 *4))
+ (|:| |genIdeal| (-506 *4 *5 *6 *7))))
+ (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1264 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2))
- (-4 *2 (-432 *4))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175))))
- ((*1 *1 *1) (-4 *1 (-160))))
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1099)) (-5 *1 (-103 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1099)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-172))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1285 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-1049)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 (-1155 *4) (-1155 *4))) (-5 *2 (-1155 *4))
- (-5 *1 (-1289 *4)) (-4 *4 (-1214))))
+ (|partial| -12 (-4 *2 (-1099)) (-5 *1 (-1191 *3 *2)) (-4 *3 (-1099)))))
+(((*1 *1) (-5 *1 (-823))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-644 (-689 *6))) (-5 *4 (-112)) (-5 *5 (-566))
+ (-5 *2 (-689 *6)) (-5 *1 (-1029 *6)) (-4 *6 (-365)) (-4 *6 (-1049))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 (-689 *4))) (-5 *2 (-689 *4)) (-5 *1 (-1029 *4))
+ (-4 *4 (-365)) (-4 *4 (-1049))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-566)) (-5 *2 (-689 *5))
+ (-5 *1 (-1029 *5)) (-4 *5 (-365)) (-4 *5 (-1049)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3))
+ (-4 *3 (-1099)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-1155 (-225))) (-5 *1 (-192))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-317 (-225))) (-5 *4 (-644 (-1175)))
+ (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *4 (-644 (-1175)))
+ (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301)))))
+(((*1 *2 *3 *4 *4 *4 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-751)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-850)) (-5 *4 (-644 *6))
+ (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-644 *4))))
+ (-5 *1 (-1185 *6)) (-5 *5 (-644 *4)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4414)) (-4 *1 (-235 *3))
+ (-4 *3 (-1099))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))))
+(((*1 *2) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-331))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-331)))))
+(((*1 *2) (-12 (-5 *2 (-1146 (-1157))) (-5 *1 (-393)))))
+(((*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-334)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
+ ((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-612 *4)) (-5 *1 (-611 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1099)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-874))
+ (-5 *5 (-921)) (-5 *6 (-644 (-264))) (-5 *2 (-470)) (-5 *1 (-1268))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *2 (-470))
+ (-5 *1 (-1268))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-644 (-1155 *5)) (-644 (-1155 *5)))) (-5 *4 (-566))
- (-5 *2 (-644 (-1155 *5))) (-5 *1 (-1289 *5)) (-4 *5 (-1214)))))
+ (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-644 (-264)))
+ (-5 *2 (-470)) (-5 *1 (-1268)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1093 (-843 (-225)))) (-5 *1 (-306)))))
+(((*1 *1 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
+(((*1 *1) (-5 *1 (-130))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 *4))))
+ (-5 *1 (-889 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099))
+ (-4 *7 (-1099)) (-5 *2 (-644 *1)) (-4 *1 (-1102 *3 *4 *5 *6 *7)))))
(((*1 *2 *3 *3)
(-12 (-4 *4 (-558))
- (-5 *2 (-2 (|:| -3157 *4) (|:| -2760 *3) (|:| -1644 *3)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-1064 *3 *4 *5))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-558)) (-4 *3 (-1049))
- (-5 *2 (-2 (|:| -3157 *3) (|:| -2760 *1) (|:| -1644 *1)))
- (-4 *1 (-1240 *3)))))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2235 *3)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-1264 *3)) (-4 *3 (-365)) (-14 *6 (-1264 (-689 *3)))
- (-5 *1 (-44 *3 *4 *5 *6)) (-14 *4 (-921)) (-14 *5 (-644 (-1175)))))
- ((*1 *1 *2) (-12 (-5 *2 (-1124 (-566) (-612 (-48)))) (-5 *1 (-48))))
- ((*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1214))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523 'JINT 'X 'ELAM) (-2523) (-699))))
- (-5 *1 (-61 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523) (-2523 'XC) (-699))))
- (-5 *1 (-63 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-341 (-2523 'X) (-2523) (-699))) (-5 *1 (-64 *3))
- (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-341 (-2523) (-2523 'XC) (-699))) (-5 *1 (-66 *3))
- (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523 'X) (-2523 '-2514) (-699))))
- (-5 *1 (-71 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523) (-2523 'X) (-699))))
- (-5 *1 (-74 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523 'X 'EPS) (-2523 '-2514) (-699))))
- (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1175)) (-14 *4 (-1175))
- (-14 *5 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523 'EPS) (-2523 'YA 'YB) (-699))))
- (-5 *1 (-76 *3 *4 *5)) (-14 *3 (-1175)) (-14 *4 (-1175))
- (-14 *5 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-341 (-2523) (-2523 'X) (-699))) (-5 *1 (-77 *3))
- (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-341 (-2523) (-2523 'X) (-699))) (-5 *1 (-78 *3))
- (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523) (-2523 'XC) (-699))))
- (-5 *1 (-79 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523) (-2523 'X) (-699))))
- (-5 *1 (-80 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523 'X '-2514) (-2523) (-699))))
- (-5 *1 (-82 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-689 (-341 (-2523 'X '-2514) (-2523) (-699))))
- (-5 *1 (-83 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-689 (-341 (-2523 'X) (-2523) (-699)))) (-5 *1 (-84 *3))
- (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523 'X) (-2523) (-699))))
- (-5 *1 (-85 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-341 (-2523 'X) (-2523 '-2514) (-699))))
- (-5 *1 (-86 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-689 (-341 (-2523 'XL 'XR 'ELAM) (-2523) (-699))))
- (-5 *1 (-87 *3)) (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-341 (-2523 'X) (-2523 '-2514) (-699))) (-5 *1 (-89 *3))
- (-14 *3 (-1175))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-136 *3 *4 *5))) (-5 *1 (-136 *3 *4 *5))
- (-14 *3 (-566)) (-14 *4 (-771)) (-4 *5 (-172))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5))
- (-14 *3 (-566)) (-14 *4 (-771))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1141 *4 *5)) (-14 *4 (-771)) (-4 *5 (-172))
- (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-240 *4 *5)) (-14 *4 (-771)) (-4 *5 (-172))
- (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566))))
+ (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *1 (-264))))
((*1 *2 *3)
- (-12 (-5 *3 (-1264 (-689 *4))) (-4 *4 (-172))
- (-5 *2 (-1264 (-689 (-409 (-952 *4))))) (-5 *1 (-189 *4))))
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-330 *4)) (-4 *4 (-365))
+ (-5 *2 (-689 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1264 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
+ (-5 *2 (-689 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
+ (-5 *2 (-1264 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172))
+ (-4 *5 (-1240 *4)) (-5 *2 (-689 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172))
+ (-4 *5 (-1240 *4)) (-5 *2 (-1264 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-1091 (-317 *4)))
- (-4 *4 (-13 (-850) (-558) (-614 (-381)))) (-5 *2 (-1091 (-381)))
- (-5 *1 (-259 *4))))
- ((*1 *1 *2) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-276))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1240 *3)) (-5 *1 (-290 *3 *2 *4 *5 *6 *7))
- (-4 *3 (-172)) (-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 (-1249 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3)))
- (-14 *5 (-1175)) (-14 *6 *4)
- (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454)))
- (-5 *1 (-314 *3 *4 *5 *6))))
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-411 *4 *5)) (-4 *4 (-172))
+ (-4 *5 (-1240 *4)) (-5 *2 (-689 *4))))
((*1 *2 *1)
- (-12 (-5 *2 (-317 *5)) (-5 *1 (-341 *3 *4 *5))
- (-14 *3 (-644 (-1175))) (-14 *4 (-644 (-1175))) (-4 *5 (-389))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-351)) (-4 *2 (-330 *4)) (-5 *1 (-349 *3 *4 *2))
- (-4 *3 (-330 *4))))
+ (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3))
+ (-5 *2 (-1264 *3))))
((*1 *2 *3)
- (-12 (-4 *4 (-351)) (-4 *2 (-330 *4)) (-5 *1 (-349 *2 *4 *3))
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-419 *4)) (-4 *4 (-172))
+ (-5 *2 (-689 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-1264 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 (-689 *5))) (-5 *3 (-689 *5)) (-4 *5 (-365))
+ (-5 *2 (-1264 *5)) (-5 *1 (-1085 *5)))))
+(((*1 *2)
+ (|partial| -12 (-4 *4 (-1218)) (-4 *5 (-1240 (-409 *2)))
+ (-4 *2 (-1240 *4)) (-5 *1 (-343 *3 *4 *2 *5))
+ (-4 *3 (-344 *4 *2 *5))))
+ ((*1 *2)
+ (|partial| -12 (-4 *1 (-344 *3 *2 *4)) (-4 *3 (-1218))
+ (-4 *4 (-1240 (-409 *2))) (-4 *2 (-1240 *3)))))
+(((*1 *2)
+ (-12 (-4 *4 (-365)) (-5 *2 (-771)) (-5 *1 (-329 *3 *4))
(-4 *3 (-330 *4))))
+ ((*1 *2) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-771)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-108))))
+ ((*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-217))))
+ ((*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-489))))
+ ((*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-308))))
((*1 *2 *1)
- (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172))
- (-5 *2 (-1288 *3 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172))
- (-5 *2 (-1279 *3 *4))))
- ((*1 *1 *2) (-12 (-4 *1 (-376 *2 *3)) (-4 *2 (-850)) (-4 *3 (-172))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))
- (-4 *1 (-385))))
- ((*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-385))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-385))))
- ((*1 *1 *2) (-12 (-5 *2 (-689 (-699))) (-4 *1 (-385))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))
- (-4 *1 (-386))))
- ((*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-386))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-386))))
- ((*1 *2 *3) (-12 (-5 *2 (-396)) (-5 *1 (-395 *3)) (-4 *3 (-1099))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))
- (-4 *1 (-398))))
- ((*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-398))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-398))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-295 (-317 (-169 (-381))))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-295 (-317 (-381)))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-295 (-317 (-566)))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-317 (-169 (-381)))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-317 (-381))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-317 (-566))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-295 (-317 (-694)))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-295 (-317 (-699)))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-295 (-317 (-701)))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-317 (-694))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-317 (-699))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-317 (-701))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))
- (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175))
- (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-331))) (-5 *1 (-400 *3 *4 *5 *6))
- (-14 *3 (-1175)) (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-331)) (-5 *1 (-400 *3 *4 *5 *6)) (-14 *3 (-1175))
- (-14 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1179))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-332 *4)) (-4 *4 (-13 (-850) (-21)))
- (-5 *1 (-429 *3 *4)) (-4 *3 (-13 (-172) (-38 (-409 (-566)))))))
- ((*1 *1 *2)
- (-12 (-5 *1 (-429 *2 *3)) (-4 *2 (-13 (-172) (-38 (-409 (-566)))))
- (-4 *3 (-13 (-850) (-21)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-409 (-952 (-409 *3)))) (-4 *3 (-558)) (-4 *3 (-1099))
- (-4 *1 (-432 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-952 (-409 *3))) (-4 *3 (-558)) (-4 *3 (-1099))
- (-4 *1 (-432 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-409 *3)) (-4 *3 (-558)) (-4 *3 (-1099))
- (-4 *1 (-432 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1124 *3 (-612 *1))) (-4 *3 (-1049)) (-4 *3 (-1099))
- (-4 *1 (-432 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-436))))
- ((*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-436))))
- ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-436))))
- ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-436))))
- ((*1 *1 *2) (-12 (-5 *2 (-436)) (-5 *1 (-439))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))
- (-4 *1 (-442))))
- ((*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-442))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-442))))
- ((*1 *1 *2) (-12 (-5 *2 (-1264 (-699))) (-4 *1 (-442))))
- ((*1 *1 *2)
- (-12
- (-5 *2 (-2 (|:| |localSymbols| (-1179)) (|:| -3225 (-644 (-331)))))
- (-4 *1 (-443))))
- ((*1 *1 *2) (-12 (-5 *2 (-331)) (-4 *1 (-443))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-331))) (-4 *1 (-443))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 (-409 (-952 *3)))) (-4 *3 (-172))
- (-14 *6 (-1264 (-689 *3))) (-5 *1 (-455 *3 *4 *5 *6))
- (-14 *4 (-921)) (-14 *5 (-644 (-1175)))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470))))
- ((*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-470))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1249 *3 *4 *5)) (-4 *3 (-1049)) (-14 *4 (-1175))
- (-14 *5 *3) (-5 *1 (-476 *3 *4 *5))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-476 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *1 *2) (-12 (-5 *2 (-1124 (-566) (-612 (-497)))) (-5 *1 (-497))))
- ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-504))))
- ((*1 *1 *2)
+ (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566))))
+ ((*1 *1 *1) (-4 *1 (-1059))))
+(((*1 *2 *3) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-187))) (-5 *1 (-187)))))
+(((*1 *1 *2)
(-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-526))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-606))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-172)) (-5 *1 (-607 *3 *2)) (-4 *2 (-744 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-613 *2)) (-4 *2 (-1214))))
- ((*1 *1 *2) (-12 (-4 *1 (-616 *2)) (-4 *2 (-1214))))
- ((*1 *1 *2) (-12 (-4 *1 (-620 *2)) (-4 *2 (-1049))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1284 *3 *4)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850))
- (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850))
- (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-172)) (-5 *1 (-635 *3 *2)) (-4 *2 (-744 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-677 *3)) (-5 *1 (-672 *3)) (-4 *3 (-850))))
- ((*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-672 *3)) (-4 *3 (-850))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-958 (-958 (-958 *3)))) (-5 *1 (-675 *3))
- (-4 *3 (-1099))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-958 (-958 (-958 *3)))) (-4 *3 (-1099))
- (-5 *1 (-675 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-677 *3)) (-4 *3 (-850))))
- ((*1 *1 *2) (-12 (-5 *2 (-1117)) (-5 *1 (-681))))
- ((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-682 *3)) (-4 *3 (-1099))))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558))
+ (-5 *2 (-1171 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
+ ((*1 *1 *1) (-5 *1 (-862)))
((*1 *1 *2)
- (-12 (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *2)) (-4 *4 (-375 *3))
- (-4 *2 (-375 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-169 (-381))) (-5 *1 (-694))))
- ((*1 *1 *2) (-12 (-5 *2 (-169 (-701))) (-5 *1 (-694))))
- ((*1 *1 *2) (-12 (-5 *2 (-169 (-699))) (-5 *1 (-694))))
- ((*1 *1 *2) (-12 (-5 *2 (-169 (-566))) (-5 *1 (-694))))
- ((*1 *1 *2) (-12 (-5 *2 (-169 (-381))) (-5 *1 (-694))))
- ((*1 *1 *2) (-12 (-5 *2 (-701)) (-5 *1 (-699))))
- ((*1 *2 *1) (-12 (-5 *2 (-381)) (-5 *1 (-699))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-317 (-566))) (-5 *2 (-317 (-701))) (-5 *1 (-701))))
- ((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-172)) (-5 *1 (-711 *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))))
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-1097 *3))))
+ ((*1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175))
+ (-14 *4 *2))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-862)) (-5 *1 (-1155 *3)) (-4 *3 (-1099))
+ (-4 *3 (-1214)))))
+(((*1 *1)
+ (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771))
+ (-4 *4 (-172)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-4 *2 (-172)) (-5 *1 (-715 *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 (-644 (-2 (|:| -3157 *3) (|:| -1966 *4))))
- (-4 *3 (-1049)) (-4 *4 (-726)) (-5 *1 (-735 *3 *4))))
- ((*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-763))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-3
- (|:| |nia|
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (|:| |mdnia|
- (-2 (|:| |fn| (-317 (-225)))
- (|:| -4344 (-644 (-1093 (-843 (-225)))))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))))
- (-5 *1 (-769))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |fn| (-317 (-225)))
- (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *1 (-769))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *1 (-769))))
- ((*1 *2 *3) (-12 (-5 *2 (-774)) (-5 *1 (-773 *3)) (-4 *3 (-1214))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *1 (-808))))
- ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-824))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-3
- (|:| |noa|
- (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225)))
- (|:| |lb| (-644 (-843 (-225))))
- (|:| |cf| (-644 (-317 (-225))))
- (|:| |ub| (-644 (-843 (-225))))))
- (|:| |lsa|
- (-2 (|:| |lfn| (-644 (-317 (-225))))
- (|:| -2759 (-644 (-225)))))))
- (-5 *1 (-841))))
- ((*1 *1 *2)
- (-12
- (-5 *2
- (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))
- (-5 *1 (-841))))
- ((*1 *1 *2)
- (-12
+ (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
+ ((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1138))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049))
(-5 *2
- (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225)))
- (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225))))
- (|:| |ub| (-644 (-843 (-225))))))
- (-5 *1 (-841))))
- ((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-858))))
- ((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-952 (-48))) (-5 *2 (-317 (-566))) (-5 *1 (-875))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-409 (-952 (-48)))) (-5 *2 (-317 (-566)))
- (-5 *1 (-875))))
- ((*1 *1 *2) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850))))
- ((*1 *2 *1) (-12 (-5 *2 (-819 *3)) (-5 *1 (-893 *3)) (-4 *3 (-850))))
- ((*1 *1 *2)
+ (-2 (|:| -2089 (-771)) (|:| |curves| (-771))
+ (|:| |polygons| (-771)) (|:| |constructs| (-771)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-328 *3)) (-4 *3 (-1214))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214))
+ (-14 *4 (-566)))))
+(((*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))))
+(((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |pde| (-644 (-317 (-225))))
- (|:| |constraints|
- (-644
- (-2 (|:| |start| (-225)) (|:| |finish| (-225))
- (|:| |grid| (-771)) (|:| |boundaryType| (-566))
- (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225))))))
- (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157))
- (|:| |tol| (-225))))
- (-5 *1 (-898))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-905 *3))) (-4 *3 (-1099)) (-5 *1 (-904 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-905 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-409 (-420 *3))) (-4 *3 (-308)) (-5 *1 (-914 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-409 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-479)) (-5 *2 (-317 *4)) (-5 *1 (-919 *4))
- (-4 *4 (-558))))
- ((*1 *2 *3) (-12 (-5 *2 (-1269)) (-5 *1 (-1033 *3)) (-4 *3 (-1214))))
- ((*1 *2 *3) (-12 (-5 *3 (-313)) (-5 *1 (-1033 *2)) (-4 *2 (-1214))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-1034 *3 *4 *5 *2 *6)) (-4 *2 (-949 *3 *4 *5))
- (-14 *6 (-644 *2))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-1043 *3)) (-4 *3 (-558))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-1049)) (-4 *4 (-850)) (-5 *1 (-1125 *3 *4 *2))
- (-4 *2 (-949 *3 (-533 *4) *4))))
- ((*1 *1 *2)
- (-12 (-4 *3 (-1049)) (-4 *2 (-850)) (-5 *1 (-1125 *3 *2 *4))
- (-4 *4 (-949 *3 (-533 *2) *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-862))))
- ((*1 *1 *2) (-12 (-5 *2 (-144)) (-4 *1 (-1143))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-1049))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1166 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1173 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1237 *4 *3)) (-4 *3 (-1049)) (-14 *4 (-1175))
- (-14 *5 *3) (-5 *1 (-1173 *3 *4 *5))))
- ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1174))))
- ((*1 *2 *1) (-12 (-5 *2 (-1187 (-1175) (-439))) (-5 *1 (-1179))))
- ((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-225)) (-5 *1 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1180))))
- ((*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-1186 *3)) (-4 *3 (-1099))))
- ((*1 *2 *3) (-12 (-5 *2 (-1194)) (-5 *1 (-1193 *3)) (-4 *3 (-1099))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-952 *3)) (-4 *3 (-1049)) (-5 *1 (-1208 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1208 *3)) (-4 *3 (-1049))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1228 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1093 *3)) (-4 *3 (-1214)) (-5 *1 (-1231 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1260 *4)) (-14 *4 (-1175)) (-5 *1 (-1256 *3 *4 *5))
- (-4 *3 (-1049)) (-14 *5 *3)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1237 *4 *3)) (-4 *3 (-1049)) (-14 *4 (-1175))
- (-14 *5 *3) (-5 *1 (-1256 *3 *4 *5))))
- ((*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-1260 *3)) (-14 *3 *2)))
- ((*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-1265))))
- ((*1 *2 *3) (-12 (-5 *3 (-470)) (-5 *2 (-1265)) (-5 *1 (-1268))))
- ((*1 *1 *2)
- (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1288 *3 *4)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-172))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-1284 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-172))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-664 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172))
- (-5 *1 (-1284 *3 *4)))))
-(((*1 *2 *1) (-12 (-5 *1 (-1209 *2)) (-4 *2 (-974)))))
+ (-2 (|:| |mval| (-689 *3)) (|:| |invmval| (-689 *3))
+ (|:| |genIdeal| (-506 *3 *4 *5 *6))))
+ (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1097 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-921)) (-5 *1 (-786)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *3))
+ (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-771))
- (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-214 *4))
- (-4 *4
- (-13 (-850)
- (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 (*2 $))
- (-15 -2509 (*2 $)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1269)) (-5 *1 (-214 *3))
- (-4 *3
- (-13 (-850)
- (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 (*2 $))
- (-15 -2509 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-504)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-420 *2)) (-4 *2 (-308)) (-5 *1 (-914 *2))))
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-1177 (-409 (-566))))
+ (-5 *1 (-190)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 (-1155 *4) (-1155 *4))) (-5 *2 (-1155 *4))
+ (-5 *1 (-1289 *4)) (-4 *4 (-1214))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-147))) (-5 *2 (-52)) (-5 *1 (-915 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-420 (-952 *6))) (-5 *5 (-1175)) (-5 *3 (-952 *6))
- (-4 *6 (-13 (-308) (-147))) (-5 *2 (-52)) (-5 *1 (-915 *6)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218))
- (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-1200 *3))) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-644 (-644 *3)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-644 (-644 *5)))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-644 *3))) (-5 *1 (-1186 *3)) (-4 *3 (-1099)))))
+ (-12 (-5 *3 (-1 (-644 (-1155 *5)) (-644 (-1155 *5)))) (-5 *4 (-566))
+ (-5 *2 (-644 (-1155 *5))) (-5 *1 (-1289 *5)) (-4 *5 (-1214)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-604 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1214)) (-5 *2 (-1269)))))
(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-2 (|:| -1706 (-114)) (|:| |w| (-225)))) (-5 *1 (-204)))))
-(((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-3 *3 (-644 *1)))
- (-4 *1 (-1070 *4 *5 *6 *3)))))
+ (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308))
+ (-5 *2 (-644 (-771))) (-5 *1 (-778 *3 *4 *5 *6 *7))
+ (-4 *3 (-1240 *6)) (-4 *7 (-949 *6 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-183))) (-5 *1 (-140)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-921))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-747)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5 *6 *7 *6)
- (|partial| -12
- (-5 *5
- (-2 (|:| |contp| *3)
- (|:| -4236 (-644 (-2 (|:| |irr| *10) (|:| -2175 (-566)))))))
- (-5 *6 (-644 *3)) (-5 *7 (-644 *8)) (-4 *8 (-850)) (-4 *3 (-308))
- (-4 *10 (-949 *3 *9 *8)) (-4 *9 (-793))
- (-5 *2
- (-2 (|:| |polfac| (-644 *10)) (|:| |correct| *3)
- (|:| |corrfact| (-644 (-1171 *3)))))
- (-5 *1 (-625 *8 *9 *3 *10)) (-5 *4 (-644 (-1171 *3))))))
-(((*1 *1) (-5 *1 (-157)))
- ((*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))))
-(((*1 *1) (-12 (-4 *1 (-467 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
- ((*1 *1) (-5 *1 (-538))) ((*1 *1) (-4 *1 (-722)))
- ((*1 *1) (-4 *1 (-726)))
- ((*1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099))))
- ((*1 *1) (-12 (-5 *1 (-893 *2)) (-4 *2 (-850)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-470)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-644 (-644 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-644 (-3 (|:| |array| (-644 *3)) (|:| |scalar| (-1175)))))
- (-5 *6 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1103))
- (-5 *1 (-399))))
- ((*1 *2 *3 *4 *5 *6 *3)
- (-12 (-5 *5 (-644 (-644 (-3 (|:| |array| *6) (|:| |scalar| *3)))))
- (-5 *4 (-644 (-3 (|:| |array| (-644 *3)) (|:| |scalar| (-1175)))))
- (-5 *6 (-644 (-1175))) (-5 *3 (-1175)) (-5 *2 (-1103))
- (-5 *1 (-399))))
- ((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *4 (-644 (-1175))) (-5 *5 (-1178)) (-5 *3 (-1175))
- (-5 *2 (-1103)) (-5 *1 (-399)))))
+ (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-192))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-301))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1093 (-843 (-225)))) (-5 *2 (-225)) (-5 *1 (-306)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-547))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1264 *4)) (-4 *4 (-1214)) (-4 *1 (-238 *3 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049))
+ (-5 *2 (-644 (-644 (-644 (-771))))))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-903 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-1157)))))
+(((*1 *1) (-4 *1 (-351))))
(((*1 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454))
- (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-977 *3 *4 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-644 *7)) (-5 *3 (-112)) (-4 *7 (-1064 *4 *5 *6))
- (-4 *4 (-454)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
- (-5 *1 (-977 *4 *5 *6 *7)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-365)) (-5 *1 (-896 *2 *3))
- (-4 *2 (-1240 *3)))))
+ (-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2))
+ (-4 *2 (-1255 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-4 *4 (-1240 *3))
+ (-4 *5 (-724 *3 *4)) (-5 *1 (-543 *3 *4 *5 *2)) (-4 *2 (-1255 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-5 *1 (-544 *3 *2))
+ (-4 *2 (-1255 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147)))
+ (-5 *1 (-1151 *3)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
- (-5 *1 (-988 *3 *4 *5 *6 *7))))
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099))
+ (-4 *6 (-1099)) (-5 *2 (-1 *6 *5 *4)) (-5 *1 (-684 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-317 *4))
+ (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4))))))
((*1 *2 *2)
- (-12 (-5 *2 (-644 *7)) (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
- (-5 *1 (-1106 *3 *4 *5 *6 *7)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7)))
- (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793))
- (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8)))
- (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8))))
+ (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-508)) (-5 *1 (-114))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-114)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1099)))))
+(((*1 *1) (-5 *1 (-141))))
+(((*1 *2 *2) (-12 (-5 *2 (-644 (-317 (-225)))) (-5 *1 (-268)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-409 (-566))))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927))
+ (-5 *1 (-925 *3)) (-4 *3 (-614 (-538)))))
+ ((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927))
+ (-5 *1 (-925 *3)) (-4 *3 (-614 (-538)))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926))))
+ ((*1 *1 *2 *2 *2 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-926))))
+ ((*1 *1 *2 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-926))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927))))
+ ((*1 *1 *2 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-927))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-927))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-644 (-1 (-225) (-225)))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-927))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-1 (-225) (-225)))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-927))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-927))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-927)))))
+(((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
((*1 *2 *3)
- (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-644 (-644 *7)))
- (-5 *1 (-450 *4 *5 *6 *7)) (-5 *3 (-644 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793))
- (-4 *7 (-850)) (-4 *8 (-949 *5 *6 *7)) (-5 *2 (-644 (-644 *8)))
- (-5 *1 (-450 *5 *6 *7 *8)) (-5 *3 (-644 *8)))))
+ (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-317 *4))
+ (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4))))))
+ ((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699))))
+ ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))))
(((*1 *1) (-4 *1 (-23)))
((*1 *1) (-12 (-4 *1 (-472 *2 *3)) (-4 *2 (-172)) (-4 *3 (-23))))
((*1 *1) (-5 *1 (-538)))
((*1 *1) (-12 (-4 *1 (-646 *2)) (-4 *2 (-1057))))
((*1 *1) (-12 (-5 *1 (-892 *2)) (-4 *2 (-1099))))
((*1 *1) (-12 (-4 *1 (-1051 *2)) (-4 *2 (-1057)))))
-(((*1 *2 *3 *4 *3 *4 *5 *3 *4 *3 *3 *3 *3)
- (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566))
- (-5 *2 (-1035)) (-5 *1 (-756)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
- (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
- (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793))
- (-5 *2 (-112)) (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-365)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
- (-5 *2 (-771)) (-5 *1 (-523 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-771))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4))
- (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-688 *4 *5 *6 *3))
- (-4 *3 (-687 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558))
- (-5 *2 (-771)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-132)) (-5 *3 (-771)) (-5 *2 (-1269)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1119)) (-5 *2 (-1269)) (-5 *1 (-831)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-555)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| -2010 (-1175)) (|:| -2818 *4))))
- (-5 *1 (-889 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *3 *4 *4 *5)
+ (-12 (-5 *4 (-612 *3)) (-5 *5 (-1 (-1171 *3) (-1171 *3)))
+ (-4 *3 (-13 (-27) (-432 *6))) (-4 *6 (-558)) (-5 *2 (-587 *3))
+ (-5 *1 (-553 *6 *3)))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-877 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-879 *2)) (-4 *2 (-1214))))
((*1 *2 *1)
- (-12 (-4 *3 (-1099)) (-4 *4 (-1099)) (-4 *5 (-1099)) (-4 *6 (-1099))
- (-4 *7 (-1099)) (-5 *2 (-644 *1)) (-4 *1 (-1102 *3 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *3 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *6))))
- (-5 *4 (-1026 (-843 (-566)))) (-5 *5 (-1175)) (-5 *7 (-409 (-566)))
- (-4 *6 (-1049)) (-5 *2 (-862)) (-5 *1 (-596 *6)))))
-(((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8))
- (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558))
- (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-977 *5 *6 *7 *8)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-1038 (-409 *2)))) (-5 *2 (-566))
- (-5 *1 (-115 *4 *3)) (-4 *3 (-1240 *4)))))
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-454)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-3 (-112) (-644 *1)))
+ (-4 *1 (-1070 *4 *5 *6 *3)))))
+(((*1 *2 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308))))
+ ((*1 *2 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308))))
+ ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-308))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1059)) (-5 *2 (-566)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566))))
+ ((*1 *1 *1) (-4 *1 (-1002)))
+ ((*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1012))))
+ ((*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-4 *1 (-1012))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-921))))
+ ((*1 *1 *1) (-4 *1 (-1012))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *3 (-566)) (-4 *4 (-172)) (-4 *5 (-375 *4))
+ (-4 *6 (-375 *4)) (-5 *1 (-688 *4 *5 *6 *2))
+ (-4 *2 (-687 *4 *5 *6)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -3398)) (-5 *2 (-112)) (-5 *1 (-617))))
+ (-12 (-5 *3 (|[\|\|]| -3400)) (-5 *2 (-112)) (-5 *1 (-617))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -3342)) (-5 *2 (-112)) (-5 *1 (-617))))
+ (-12 (-5 *3 (|[\|\|]| -3411)) (-5 *2 (-112)) (-5 *1 (-617))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -2234)) (-5 *2 (-112)) (-5 *1 (-617))))
+ (-12 (-5 *3 (|[\|\|]| -2247)) (-5 *2 (-112)) (-5 *1 (-617))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -3410)) (-5 *2 (-112)) (-5 *1 (-691 *4))
+ (-12 (-5 *3 (|[\|\|]| -3435)) (-5 *2 (-112)) (-5 *1 (-691 *4))
(-4 *4 (-613 (-862)))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-613 (-862))) (-5 *2 (-112))
@@ -11259,336 +11630,31 @@
(-12 (-5 *3 (|[\|\|]| (-225))) (-5 *2 (-112)) (-5 *1 (-1180))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| (-566))) (-5 *2 (-112)) (-5 *1 (-1180)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-558))
- (-4 *7 (-949 *3 *5 *6))
- (-5 *2 (-2 (|:| -3250 (-771)) (|:| -3157 *8) (|:| |radicand| *8)))
- (-5 *1 (-953 *5 *6 *3 *7 *8)) (-5 *4 (-771))
- (-4 *8
- (-13 (-365)
- (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $))))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-644 (-2 (|:| |totdeg| (-771)) (|:| -3589 *3))))
- (-5 *4 (-771)) (-4 *3 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *6 (-793))
- (-4 *7 (-850)) (-5 *1 (-451 *5 *6 *7 *3)))))
-(((*1 *1) (-5 *1 (-823))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-792)) (-4 *3 (-172)))))
-(((*1 *2 *2) (-12 (-5 *1 (-588 *2)) (-4 *2 (-547)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *3 (-644 (-874)))
- (-5 *1 (-470)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
- ((*1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-1097 *3))))
- ((*1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
- (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-493)))))
-(((*1 *2)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123)))
- ((*1 *1 *1 *1) (-5 *1 (-1119))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 (-112) *6 *6)) (-4 *6 (-850)) (-5 *4 (-644 *6))
- (-5 *2 (-2 (|:| |fs| (-112)) (|:| |sd| *4) (|:| |td| (-644 *4))))
- (-5 *1 (-1185 *6)) (-5 *5 (-644 *4)))))
-(((*1 *1) (-5 *1 (-130))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)))))
-(((*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-21)) (-4 *2 (-1214)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
-(((*1 *2 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308))))
- ((*1 *2 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308))))
- ((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-308))))
- ((*1 *2 *1) (-12 (-4 *1 (-1059)) (-5 *2 (-566)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1 *1) (-4 *1 (-967))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-134)))))
+ (|partial| -12 (-5 *3 (-771)) (-4 *4 (-308)) (-4 *6 (-1240 *4))
+ (-5 *2 (-1264 (-644 *6))) (-5 *1 (-457 *4 *6)) (-5 *5 (-644 *6)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-1163 3 *3))))
- ((*1 *1) (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1266))))
- ((*1 *2 *1) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1266)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-689 *2)) (-4 *4 (-1240 *2))
- (-4 *2 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))))
- (-5 *1 (-501 *2 *4 *5)) (-4 *5 (-411 *2 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
- (-4 *5 (-238 *3 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-351))
- (-5 *2 (-644 (-2 (|:| |deg| (-771)) (|:| -2133 *3))))
- (-5 *1 (-216 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *1)
- (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771))
- (-4 *4 (-172)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-839))
- (-5 *3
- (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225)))
- (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225))))
- (|:| |ub| (-644 (-843 (-225))))))
- (-5 *2 (-1035))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-839))
- (-5 *3
- (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))
- (-5 *2 (-1035)))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-1139 *4 *5))) (-5 *3 (-1 (-112) *5 *5))
- (-4 *4 (-13 (-1099) (-34))) (-4 *5 (-13 (-1099) (-34)))
- (-5 *1 (-1140 *4 *5))))
- ((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-1139 *3 *4))) (-4 *3 (-13 (-1099) (-34)))
- (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))))
-(((*1 *2 *3)
- (-12 (|has| *6 (-6 -4418)) (-4 *4 (-365)) (-4 *5 (-375 *4))
- (-4 *6 (-375 *4)) (-5 *2 (-644 *6)) (-5 *1 (-523 *4 *5 *6 *3))
- (-4 *3 (-687 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (|has| *9 (-6 -4418)) (-4 *4 (-558)) (-4 *5 (-375 *4))
- (-4 *6 (-375 *4)) (-4 *7 (-992 *4)) (-4 *8 (-375 *7))
- (-4 *9 (-375 *7)) (-5 *2 (-644 *6))
- (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *10)) (-4 *3 (-687 *4 *5 *6))
- (-4 *10 (-687 *7 *8 *9))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-644 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4))
- (-4 *6 (-375 *4)) (-5 *2 (-644 *6)) (-5 *1 (-688 *4 *5 *6 *3))
- (-4 *3 (-687 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558))
- (-5 *2 (-644 *7)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1264 *4)) (-4 *4 (-1214)) (-4 *1 (-238 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
-(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1 *1) (-4 *1 (-967))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))))
+ (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3))))
- (-5 *1 (-596 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-1265))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-192))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-301))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-306)))))
-(((*1 *2 *1) (-12 (-5 *2 (-971)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-351)) (-5 *2 (-420 (-1171 (-1171 *4))))
- (-5 *1 (-1212 *4)) (-5 *3 (-1171 (-1171 *4))))))
-(((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-317 *4))
- (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-689 (-409 (-952 (-566)))))
- (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031))
- (-5 *3 (-317 (-566))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-1000 *3)))))
-(((*1 *2 *2)
- (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2))
- (-4 *2 (-687 *3 *4 *5)))))
-(((*1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1) (-4 *1 (-967))) ((*1 *1 *1) (-5 *1 (-1119))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-381)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-644 (-1237 *5 *4)))
- (-5 *1 (-1113 *4 *5)) (-5 *3 (-1237 *5 *4)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-560 *2)) (-4 *2 (-547)))))
-(((*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267))))
- ((*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-112) *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558))
- (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8))))
- (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))))
-(((*1 *2 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-241))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-644 (-1157))) (-5 *3 (-566)) (-5 *4 (-1157))
- (-5 *1 (-241))))
- ((*1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1242 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *4 (-558)) (-5 *1 (-969 *4 *2))
- (-4 *2 (-1240 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-317 *4))
- (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4))))))
- ((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))))
+ (-12 (-4 *2 (-1099)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1099)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *2 (-112)) (-5 *1 (-268)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-1290 *5 *6 *7))
- (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-112))
- (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2 (-644 (-1046 *5 *6))) (-5 *1 (-1290 *5 *6 *7))
- (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-952 *4)))
- (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
- (-5 *2 (-644 (-1046 *4 *5))) (-5 *1 (-1290 *4 *5 *6))
- (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-644 (-264))) (-5 *1 (-1266))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1132 (-225))) (-5 *3 (-1157)) (-5 *1 (-1266))))
- ((*1 *1 *1) (-5 *1 (-1266))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-644 *3)) (-4 *3 (-1214)))))
-(((*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-217)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-976 *4 *5 *6 *3)) (-4 *4 (-1049)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-579))))
- ((*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-579)))))
-(((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-165 *3 *2)) (-4 *3 (-166 *2))))
+ (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-191)) (-5 *3 (-566))))
+ ((*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-172))))
((*1 *2 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *2 *4)) (-4 *4 (-1240 *2))
- (-4 *2 (-172))))
- ((*1 *2)
- (-12 (-4 *4 (-1240 *2)) (-4 *2 (-172)) (-5 *1 (-410 *3 *2 *4))
- (-4 *3 (-411 *2 *4))))
- ((*1 *2) (-12 (-4 *1 (-411 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172))))
+ (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))))
+(((*1 *1 *2 *3 *3 *4 *4)
+ (-12 (-5 *2 (-952 (-566))) (-5 *3 (-1175))
+ (-5 *4 (-1093 (-409 (-566)))) (-5 *1 (-30)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-644 (-1264 *4))) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
((*1 *2)
- (-12 (-4 *3 (-1240 *2)) (-5 *2 (-566)) (-5 *1 (-768 *3 *4))
- (-4 *4 (-411 *2 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850)) (-4 *3 (-172))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2))))
- ((*1 *2 *1) (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-172)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 *4))))
- (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)) (-4 *4 (-23)) (-14 *5 *4))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1 (-1155 (-952 *4)) (-1155 (-952 *4))))
- (-5 *1 (-1272 *4)) (-4 *4 (-365)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793))
- (-5 *2 (-112)) (-5 *1 (-987 *3 *4 *5 *6))
- (-4 *6 (-949 *3 *5 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
- (-4 *4 (-13 (-1099) (-34))))))
-(((*1 *2 *1)
- (-12 (|has| *1 (-6 -4417)) (-4 *1 (-491 *3)) (-4 *3 (-1214))
- (-5 *2 (-644 *3))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-737 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-441))) (-5 *1 (-865)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-59 *6)) (-4 *6 (-1214))
- (-4 *5 (-1214)) (-5 *2 (-59 *5)) (-5 *1 (-58 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *7 *5)) (-5 *4 (-240 *6 *7)) (-14 *6 (-771))
- (-4 *7 (-1214)) (-4 *5 (-1214)) (-5 *2 (-240 *6 *5))
- (-5 *1 (-239 *6 *7 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1214)) (-4 *5 (-1214))
- (-4 *2 (-375 *5)) (-5 *1 (-373 *6 *4 *5 *2)) (-4 *4 (-375 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-4 *6 (-1099)) (-4 *5 (-1099))
- (-4 *2 (-427 *5)) (-5 *1 (-425 *6 *4 *5 *2)) (-4 *4 (-427 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-644 *6)) (-4 *6 (-1214))
- (-4 *5 (-1214)) (-5 *2 (-644 *5)) (-5 *1 (-642 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-958 *6)) (-4 *6 (-1214))
- (-4 *5 (-1214)) (-5 *2 (-958 *5)) (-5 *1 (-957 *6 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1 *3 *6 *3)) (-5 *5 (-1155 *6)) (-4 *6 (-1214))
- (-4 *3 (-1214)) (-5 *2 (-1155 *3)) (-5 *1 (-1153 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *5 *6 *5)) (-5 *4 (-1264 *6)) (-4 *6 (-1214))
- (-4 *5 (-1214)) (-5 *2 (-1264 *5)) (-5 *1 (-1263 *6 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566))))
- ((*1 *1 *1) (-4 *1 (-1002)))
- ((*1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-1012))))
- ((*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-4 *1 (-1012))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-921))))
- ((*1 *1 *1) (-4 *1 (-1012))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-1060 (-1024 *4) (-1171 (-1024 *4)))) (-5 *3 (-862))
- (-5 *1 (-1024 *4)) (-4 *4 (-13 (-848) (-365) (-1022))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
- (-5 *2 (-112)))))
-(((*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 (-689 (-225))) (-5 *6 (-112)) (-5 *7 (-689 (-566)))
- (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-65 QPHESS))))
- (-5 *3 (-566)) (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-753)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157))
- (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-755)))))
-(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266))))
- ((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))))
+ (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558))
+ (-5 *2 (-644 (-1264 *3))))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-644 (-48))) (-5 *2 (-420 *3)) (-5 *1 (-39 *3))
(-4 *3 (-1240 (-48)))))
@@ -11637,8 +11703,8 @@
(-12
(-4 *4
(-13 (-850)
- (-10 -8 (-15 -3134 ((-1175) $))
- (-15 -1353 ((-3 $ "failed") (-1175))))))
+ (-10 -8 (-15 -3204 ((-1175) $))
+ (-15 -1401 ((-3 $ "failed") (-1175))))))
(-4 *5 (-793)) (-4 *7 (-558)) (-5 *2 (-420 *3))
(-5 *1 (-458 *4 *5 *6 *7 *3)) (-4 *6 (-558))
(-4 *3 (-949 *7 *5 *4))))
@@ -11687,13 +11753,13 @@
(-12 (-4 *4 (-793))
(-4 *5
(-13 (-850)
- (-10 -8 (-15 -3134 ((-1175) $))
- (-15 -1353 ((-3 $ "failed") (-1175))))))
+ (-10 -8 (-15 -3204 ((-1175) $))
+ (-15 -1401 ((-3 $ "failed") (-1175))))))
(-4 *6 (-308)) (-5 *2 (-420 *3)) (-5 *1 (-730 *4 *5 *6 *3))
(-4 *3 (-949 (-952 *6) *4 *5))))
((*1 *2 *3)
(-12 (-4 *4 (-793))
- (-4 *5 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))) (-4 *6 (-558))
+ (-4 *5 (-13 (-850) (-10 -8 (-15 -3204 ((-1175) $))))) (-4 *6 (-558))
(-5 *2 (-420 *3)) (-5 *1 (-732 *4 *5 *6 *3))
(-4 *3 (-949 (-409 (-952 *6)) *4 *5))))
((*1 *2 *3)
@@ -11729,364 +11795,183 @@
((*1 *2 *1) (-12 (-5 *2 (-420 *1)) (-4 *1 (-1218))))
((*1 *2 *3)
(-12 (-5 *2 (-420 *3)) (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-506 *3 *4 *5 *6))) (-4 *3 (-365)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850))
- (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7))
- (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1))
- (-4 *1 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1))
- (-4 *1 (-1070 *4 *5 *6 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-365) (-1199) (-1002))))))
-(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
- (-12 (-5 *4 (-566))
- (-5 *6
- (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3836 (-381))))
- (-5 *7 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
- (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
- (-5 *1 (-788))))
- ((*1 *2 *3 *4 *5 *6 *5 *3 *7 *3 *3 *3 *3 *3 *3 *3)
- (-12 (-5 *4 (-566))
- (-5 *6
- (-2 (|:| |try| (-381)) (|:| |did| (-381)) (|:| -3836 (-381))))
- (-5 *7 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
- (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
- (-5 *1 (-788)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1191 *4 *5))
- (-4 *4 (-1099)) (-4 *5 (-1099)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1171 *5)) (-4 *5 (-365)) (-5 *2 (-644 *6))
- (-5 *1 (-534 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848))))))
-(((*1 *2 *2) (-12 (-5 *2 (-689 (-317 (-566)))) (-5 *1 (-1031)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-375 *3)) (-4 *3 (-1214)) (-4 *3 (-850)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-375 *4)) (-4 *4 (-1214))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))))
-(((*1 *2 *3 *4 *4 *4 *5 *6 *7)
- (|partial| -12 (-5 *5 (-1175))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-644 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-644 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -2806 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1199) (-27) (-432 *8)))
- (-4 *8 (-13 (-454) (-147) (-1038 *3) (-639 *3))) (-5 *3 (-566))
- (-5 *2 (-644 *4)) (-5 *1 (-1014 *8 *4)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-644 *6)) (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
- (-4 *3 (-558)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *4 (-558)) (-5 *1 (-969 *4 *2))
- (-4 *2 (-1240 *4)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-308)) (-5 *1 (-179 *3)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-644 (-566))) (-5 *3 (-112)) (-5 *1 (-1109)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1177 (-409 (-566)))) (-5 *2 (-409 (-566)))
- (-5 *1 (-190)))))
-(((*1 *1) (-5 *1 (-508))))
-(((*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
-(((*1 *2)
- (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-419 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-409 (-952 (-566)))))
- (-5 *2 (-644 (-644 (-295 (-952 *4))))) (-5 *1 (-382 *4))
- (-4 *4 (-13 (-848) (-365)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-295 (-409 (-952 (-566))))))
- (-5 *2 (-644 (-644 (-295 (-952 *4))))) (-5 *1 (-382 *4))
- (-4 *4 (-13 (-848) (-365)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-952 (-566)))) (-5 *2 (-644 (-295 (-952 *4))))
- (-5 *1 (-382 *4)) (-4 *4 (-13 (-848) (-365)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-295 (-409 (-952 (-566)))))
- (-5 *2 (-644 (-295 (-952 *4)))) (-5 *1 (-382 *4))
- (-4 *4 (-13 (-848) (-365)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *5 (-1175))
- (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-4 *4 (-13 (-29 *6) (-1199) (-959)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -1990 (-644 *4))))
- (-5 *1 (-652 *6 *4 *3)) (-4 *3 (-656 *4))))
- ((*1 *2 *3 *2 *4 *2 *5)
- (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 *2))
- (-4 *2 (-13 (-29 *6) (-1199) (-959)))
- (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *1 (-652 *6 *2 *3)) (-4 *3 (-656 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *5)) (-4 *5 (-365))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1264 *5) "failed"))
- (|:| -1990 (-644 (-1264 *5)))))
- (-5 *1 (-667 *5)) (-5 *4 (-1264 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-644 *5))) (-4 *5 (-365))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1264 *5) "failed"))
- (|:| -1990 (-644 (-1264 *5)))))
- (-5 *1 (-667 *5)) (-5 *4 (-1264 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *5)) (-4 *5 (-365))
- (-5 *2
- (-644
- (-2 (|:| |particular| (-3 (-1264 *5) "failed"))
- (|:| -1990 (-644 (-1264 *5))))))
- (-5 *1 (-667 *5)) (-5 *4 (-644 (-1264 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-644 *5))) (-4 *5 (-365))
- (-5 *2
- (-644
- (-2 (|:| |particular| (-3 (-1264 *5) "failed"))
- (|:| -1990 (-644 (-1264 *5))))))
- (-5 *1 (-667 *5)) (-5 *4 (-644 (-1264 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4418))))
- (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4418))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4))))
- (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4418))))
- (-4 *7 (-13 (-375 *5) (-10 -7 (-6 -4418))))
- (-5 *2
- (-644
- (-2 (|:| |particular| (-3 *7 "failed")) (|:| -1990 (-644 *7)))))
- (-5 *1 (-668 *5 *6 *7 *3)) (-5 *4 (-644 *7))
- (-4 *3 (-687 *5 *6 *7))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175))) (-4 *5 (-558))
- (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-770 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-558))
- (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-770 *4))))
- ((*1 *2 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *1 (-772 *5 *2)) (-4 *2 (-13 (-29 *5) (-1199) (-959)))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-689 *7)) (-5 *5 (-1175))
- (-4 *7 (-13 (-29 *6) (-1199) (-959)))
- (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2
- (-2 (|:| |particular| (-1264 *7)) (|:| -1990 (-644 (-1264 *7)))))
- (-5 *1 (-802 *6 *7)) (-5 *4 (-1264 *7))))
+ (-12 (-5 *3 (-644 *4)) (-4 *4 (-1049)) (-5 *2 (-1264 *4))
+ (-5 *1 (-1176 *4))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-689 *6)) (-5 *4 (-1175))
- (-4 *6 (-13 (-29 *5) (-1199) (-959)))
- (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2 (-644 (-1264 *6))) (-5 *1 (-802 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-644 (-295 *7))) (-5 *4 (-644 (-114)))
- (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959)))
- (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2
- (-2 (|:| |particular| (-1264 *7)) (|:| -1990 (-644 (-1264 *7)))))
- (-5 *1 (-802 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-644 *7)) (-5 *4 (-644 (-114)))
- (-5 *5 (-1175)) (-4 *7 (-13 (-29 *6) (-1199) (-959)))
- (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2
- (-2 (|:| |particular| (-1264 *7)) (|:| -1990 (-644 (-1264 *7)))))
- (-5 *1 (-802 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-295 *7)) (-5 *4 (-114)) (-5 *5 (-1175))
- (-4 *7 (-13 (-29 *6) (-1199) (-959)))
- (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2
- (-3 (-2 (|:| |particular| *7) (|:| -1990 (-644 *7))) *7 "failed"))
- (-5 *1 (-802 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-114)) (-5 *5 (-1175))
- (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-12 (-5 *4 (-921)) (-5 *2 (-1264 *3)) (-5 *1 (-1176 *3))
+ (-4 *3 (-1049)))))
+(((*1 *2 *1)
+ (-12
(-5 *2
- (-3 (-2 (|:| |particular| *3) (|:| -1990 (-644 *3))) *3 "failed"))
- (-5 *1 (-802 *6 *3)) (-4 *3 (-13 (-29 *6) (-1199) (-959)))))
- ((*1 *2 *3 *4 *3 *5)
- (|partial| -12 (-5 *3 (-295 *2)) (-5 *4 (-114)) (-5 *5 (-644 *2))
- (-4 *2 (-13 (-29 *6) (-1199) (-959))) (-5 *1 (-802 *6 *2))
- (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))))
- ((*1 *2 *2 *3 *4 *5)
- (|partial| -12 (-5 *3 (-114)) (-5 *4 (-295 *2)) (-5 *5 (-644 *2))
- (-4 *2 (-13 (-29 *6) (-1199) (-959)))
- (-4 *6 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *1 (-802 *6 *2))))
- ((*1 *2 *3) (-12 (-5 *3 (-808)) (-5 *2 (-1035)) (-5 *1 (-805))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-808)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-805))))
- ((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4))
- (-5 *2 (-1035)) (-5 *1 (-805))))
- ((*1 *2 *3 *4 *4 *5 *4)
- (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4))
- (-5 *2 (-1035)) (-5 *1 (-805))))
- ((*1 *2 *3 *4 *4 *5 *6 *4)
- (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381)))
- (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805))))
- ((*1 *2 *3 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1264 (-317 (-381)))) (-5 *4 (-381)) (-5 *5 (-644 *4))
- (-5 *2 (-1035)) (-5 *1 (-805))))
- ((*1 *2 *3 *4 *4 *5 *6 *5 *4)
- (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381)))
- (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805))))
- ((*1 *2 *3 *4 *4 *5 *6 *5 *4 *4)
- (-12 (-5 *3 (-1264 (-317 *4))) (-5 *5 (-644 (-381)))
- (-5 *6 (-317 (-381))) (-5 *4 (-381)) (-5 *2 (-1035)) (-5 *1 (-805))))
- ((*1 *2 *3 *4 *5)
- (|partial| -12
- (-5 *5
- (-1
- (-3 (-2 (|:| |particular| *6) (|:| -1990 (-644 *6))) "failed")
- *7 *6))
- (-4 *6 (-365)) (-4 *7 (-656 *6))
- (-5 *2 (-2 (|:| |particular| (-1264 *6)) (|:| -1990 (-689 *6))))
- (-5 *1 (-813 *6 *7)) (-5 *3 (-689 *6)) (-5 *4 (-1264 *6))))
- ((*1 *2 *3) (-12 (-5 *3 (-898)) (-5 *2 (-1035)) (-5 *1 (-897))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-898)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-897))))
- ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7 *8)
- (-12 (-5 *4 (-771)) (-5 *6 (-644 (-644 (-317 *3)))) (-5 *7 (-1157))
- (-5 *8 (-225)) (-5 *5 (-644 (-317 (-381)))) (-5 *3 (-381))
- (-5 *2 (-1035)) (-5 *1 (-897))))
- ((*1 *2 *3 *3 *3 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *4 (-771)) (-5 *6 (-644 (-644 (-317 *3)))) (-5 *7 (-1157))
- (-5 *5 (-644 (-317 (-381)))) (-5 *3 (-381)) (-5 *2 (-1035))
- (-5 *1 (-897))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *2 (-644 (-381)))
- (-5 *1 (-1023)) (-5 *4 (-381))))
+ (-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 (-331)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-123)))
+ ((*1 *1 *1 *1) (-5 *1 (-1119))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1038 (-566))) (-4 *1 (-303)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-172)) (-4 *2 (-23)) (-5 *1 (-290 *3 *4 *2 *5 *6 *7))
+ (-4 *4 (-1240 *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 (-711 *3 *2 *4 *5 *6)) (-4 *3 (-172))
+ (-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 (-1240 *3)) (-5 *1 (-712 *3 *2)) (-4 *3 (-1049))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-23)) (-5 *1 (-715 *3 *2 *4 *5 *6)) (-4 *3 (-172))
+ (-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 (-869 *3)) (-5 *2 (-566)))))
+(((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *1 *1) (-4 *1 (-1138))))
+(((*1 *2 *1) (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792))))
+ ((*1 *2 *1) (-12 (-4 *1 (-708 *3)) (-4 *3 (-1049)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-771))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-771)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-949 *4 *5 *3)) (-4 *4 (-1049)) (-4 *5 (-793))
+ (-4 *3 (-850)) (-5 *2 (-771)))))
+(((*1 *2 *3 *4 *4 *5 *6)
+ (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-874))
+ (-5 *5 (-921)) (-5 *6 (-644 (-264))) (-5 *2 (-1265))
+ (-5 *1 (-1268))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-952 (-566))) (-5 *2 (-644 (-381))) (-5 *1 (-1023))
- (-5 *4 (-381))))
+ (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-644 (-264)))
+ (-5 *2 (-1265)) (-5 *1 (-1268)))))
+(((*1 *2 *1) (-12 (-5 *2 (-485)) (-5 *1 (-218))))
+ ((*1 *1 *1) (-12 (-4 *1 (-244 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *1) (-12 (-5 *2 (-485)) (-5 *1 (-676))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-303)) (-4 *2 (-1214))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-612 *1))) (-5 *3 (-644 *1)) (-4 *1 (-303))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-295 *1))) (-4 *1 (-303))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-295 *1)) (-4 *1 (-303)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
+ (-5 *1 (-1071 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
+ (-5 *1 (-1107 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1 *1) (-4 *1 (-967))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5)) (-4 *5 (-1099)) (-5 *2 (-1 *5 *4))
+ (-5 *1 (-683 *4 *5)) (-4 *4 (-1099))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3))))
((*1 *2 *3)
+ (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1281 *3 *2)) (-4 *3 (-850)) (-4 *2 (-1049))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1049)) (-5 *1 (-1287 *2 *3)) (-4 *3 (-846)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2))
+ (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4415)))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-566)) (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1049))
+ (-5 *1 (-322 *4 *5 *2 *6)) (-4 *6 (-949 *2 *4 *5)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1249 *3 *4 *5)) (-5 *1 (-320 *3 *4 *5)) (-4 *3 (-365))
+ (-14 *4 (-1175)) (-14 *5 *3)))
+ ((*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566))))
+ ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-420 *3)) (-4 *3 (-558))))
+ ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-699))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-1099)) (-5 *1 (-713 *3 *2 *4)) (-4 *3 (-850))
+ (-14 *4
+ (-1 (-112) (-2 (|:| -2208 *3) (|:| -2456 *2))
+ (-2 (|:| -2208 *3) (|:| -2456 *2)))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131))
+ (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -4337 *4))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-2 (|:| -3223 *3) (|:| -2044 *4))))
+ (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
+ (-5 *2 (-1155 (-2 (|:| |k| *4) (|:| |c| *3)))))))
+(((*1 *1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-771)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5))
+ (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
+ ((*1 *1 *2)
+ (-12 (-4 *2 (-1049)) (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
+ (-4 *5 (-238 *3 *2)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-644 (-952 *4))) (-5 *3 (-644 (-1175))) (-4 *4 (-454))
+ (-5 *1 (-918 *4)))))
+(((*1 *2 *3)
(-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
(-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1130 *4))
- (-5 *3 (-317 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2 (-644 (-295 (-317 *4)))) (-5 *1 (-1130 *4))
- (-5 *3 (-295 (-317 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1130 *5))
- (-5 *3 (-295 (-317 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175))
- (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2 (-644 (-295 (-317 *5)))) (-5 *1 (-1130 *5))
- (-5 *3 (-317 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-1175)))
- (-4 *5 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *2 (-644 (-644 (-295 (-317 *5))))) (-5 *1 (-1130 *5))
- (-5 *3 (-644 (-295 (-317 *5))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175)))
- (-4 *5 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *5))))))
- (-5 *1 (-1183 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-1175))) (-4 *5 (-558))
- (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-1183 *5))
- (-5 *3 (-644 (-295 (-409 (-952 *5)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-409 (-952 *4)))) (-4 *4 (-558))
- (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-1183 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-644 (-644 (-295 (-409 (-952 *4))))))
- (-5 *1 (-1183 *4)) (-5 *3 (-644 (-295 (-409 (-952 *4)))))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175)) (-4 *5 (-558))
- (-5 *2 (-644 (-295 (-409 (-952 *5))))) (-5 *1 (-1183 *5))
- (-5 *3 (-409 (-952 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175)) (-4 *5 (-558))
- (-5 *2 (-644 (-295 (-409 (-952 *5))))) (-5 *1 (-1183 *5))
- (-5 *3 (-295 (-409 (-952 *5))))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *4)))))
- (-5 *1 (-1183 *4)) (-5 *3 (-409 (-952 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-644 (-295 (-409 (-952 *4)))))
- (-5 *1 (-1183 *4)) (-5 *3 (-295 (-409 (-952 *4)))))))
-(((*1 *1 *1 *1) (-5 *1 (-129)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921))))
- ((*1 *1 *1 *1) (-5 *1 (-1219))) ((*1 *1 *1 *1) (-5 *1 (-1220)))
- ((*1 *1 *1 *1) (-5 *1 (-1221))) ((*1 *1 *1 *1) (-5 *1 (-1222))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-653 *4)) (-4 *4 (-344 *5 *6 *7))
- (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
- (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6)))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4))))
- (-5 *1 (-806 *5 *6 *7 *4)))))
-(((*1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-864 *5))) (-14 *5 (-644 (-1175))) (-4 *6 (-454))
- (-5 *2 (-644 (-644 (-247 *5 *6)))) (-5 *1 (-473 *5 *6 *7))
- (-5 *3 (-644 (-247 *5 *6))) (-4 *7 (-454)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
- (-4 *3 (-13 (-1099) (-34))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-351)) (-5 *2 (-112)) (-5 *1 (-216 *4 *3))
- (-4 *3 (-1240 *4)))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1216)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-1264 (-566))) (-5 *3 (-566)) (-5 *1 (-1109))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-1264 (-566))) (-5 *3 (-644 (-566))) (-5 *4 (-566))
+ (-5 *1 (-1109)))))
+(((*1 *1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1 *1) (-4 *1 (-967))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-1099) (-34))) (-5 *1 (-1139 *3 *2))
+ (-4 *3 (-13 (-1099) (-34)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1275)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-419 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+ (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
+ (-4 *4 (-351)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-792)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-454)) (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
- (-5 *2 (-644 *3)) (-5 *1 (-977 *4 *5 *6 *3))
- (-4 *3 (-1064 *4 *5 *6)))))
+ (-12 (-4 *2 (-1240 *4)) (-5 *1 (-809 *4 *2 *3 *5))
+ (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *3 (-656 *2))
+ (-4 *5 (-656 (-409 *2))))))
+(((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-62 *3)) (-14 *3 (-1175))))
+ ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-69 *3)) (-14 *3 (-1175))))
+ ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-72 *3)) (-14 *3 (-1175))))
+ ((*1 *2 *1) (-12 (-4 *1 (-397)) (-5 *2 (-1269))))
+ ((*1 *2 *3) (-12 (-5 *3 (-390)) (-5 *2 (-1269)) (-5 *1 (-399))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1157)) (-5 *4 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137))))
+ ((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *6)) (-5 *4 (-644 (-1155 *7))) (-4 *6 (-850))
- (-4 *7 (-949 *5 (-533 *6) *6)) (-4 *5 (-1049))
- (-5 *2 (-1 (-1155 *7) *7)) (-5 *1 (-1125 *5 *6 *7)))))
-(((*1 *1 *1 *1) (-5 *1 (-129)))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921))))
- ((*1 *1 *1 *1) (-5 *1 (-1219))) ((*1 *1 *1 *1) (-5 *1 (-1220)))
- ((*1 *1 *1 *1) (-5 *1 (-1221))) ((*1 *1 *1 *1) (-5 *1 (-1222))))
+ (-12 (-5 *3 (-1 *6 *4 *5)) (-4 *4 (-1099)) (-4 *5 (-1099))
+ (-4 *6 (-1099)) (-5 *2 (-1 *6 *5)) (-5 *1 (-684 *4 *5 *6)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-612 *1)) (-4 *1 (-432 *4)) (-4 *4 (-1099))
(-4 *4 (-558)) (-5 *2 (-409 (-1171 *1)))))
@@ -12110,106 +11995,93 @@
(-5 *1 (-950 *5 *4 *6 *7 *3))
(-4 *3
(-13 (-365)
- (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $)))))))
+ (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $)))))))
((*1 *2 *3 *4 *2)
(-12 (-5 *2 (-1171 *3))
(-4 *3
(-13 (-365)
- (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $)) (-15 -3013 (*7 $)))))
+ (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $)) (-15 -3100 (*7 $)))))
(-4 *7 (-949 *6 *5 *4)) (-4 *5 (-793)) (-4 *4 (-850))
(-4 *6 (-1049)) (-5 *1 (-950 *5 *4 *6 *7 *3))))
((*1 *2 *3 *4)
(-12 (-5 *4 (-1175)) (-4 *5 (-558))
(-5 *2 (-409 (-1171 (-409 (-952 *5))))) (-5 *1 (-1043 *5))
(-5 *3 (-409 (-952 *5))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-1 (-112) *8))) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8))))
- (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-882 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))))
-(((*1 *2 *3 *4 *4 *2 *2 *2)
- (-12 (-5 *2 (-566))
- (-5 *3
- (-2 (|:| |lcmfij| *6) (|:| |totdeg| (-771)) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-4 *6 (-793)) (-4 *4 (-949 *5 *6 *7)) (-4 *5 (-454)) (-4 *7 (-850))
- (-5 *1 (-451 *5 *6 *7 *4)))))
-(((*1 *1) (-5 *1 (-141))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-547)) (-5 *1 (-159 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175)))
- (-4 *6 (-13 (-558) (-1038 *5))) (-4 *5 (-558))
- (-5 *2 (-644 (-644 (-295 (-409 (-952 *6)))))) (-5 *1 (-1039 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-308))))
- ((*1 *2 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |lm| (-388 *3)) (|:| |rm| (-388 *3))))
- (-5 *1 (-388 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2760 (-771)) (|:| -1644 (-771))))
- (-5 *1 (-771))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *1 *1) (-5 *1 (-225)))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *1 *1) (-5 *1 (-381))) ((*1 *1) (-5 *1 (-381))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-1218))
+ (-4 *6 (-1240 (-409 *5)))
+ (-5 *2
+ (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
+ (|:| |gd| *5)))
+ (-4 *1 (-344 *4 *5 *6)))))
+(((*1 *1 *1) (-4 *1 (-123))) ((*1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1) (-4 *1 (-967))) ((*1 *1 *1) (-5 *1 (-1119))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-454)) (-5 *2 (-112))
+ (-5 *1 (-362 *4 *5)) (-14 *5 (-644 (-1175)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-780 *4 (-864 *5)))) (-4 *4 (-454))
+ (-14 *5 (-644 (-1175))) (-5 *2 (-112)) (-5 *1 (-628 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-1171 *4)) (-5 *1 (-530 *4))
+ (-4 *4 (-351)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-169 (-317 *4)))
+ (-5 *1 (-188 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 (-169 *4))))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *2 (-169 *3)) (-5 *1 (-1203 *4 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *4))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))))
(((*1 *2 *2)
(-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
(-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-112))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))))
-(((*1 *1) (-4 *1 (-23))) ((*1 *1) (-4 *1 (-34)))
- ((*1 *1) (-5 *1 (-129)))
- ((*1 *1)
- (-12 (-5 *1 (-136 *2 *3 *4)) (-14 *2 (-566)) (-14 *3 (-771))
- (-4 *4 (-172))))
- ((*1 *1) (-5 *1 (-548))) ((*1 *1) (-5 *1 (-549)))
- ((*1 *1) (-5 *1 (-550))) ((*1 *1) (-5 *1 (-551)))
- ((*1 *1) (-4 *1 (-726))) ((*1 *1) (-5 *1 (-1175)))
- ((*1 *1) (-12 (-5 *1 (-1181 *2)) (-14 *2 (-921))))
- ((*1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921))))
- ((*1 *1) (-5 *1 (-1219))) ((*1 *1) (-5 *1 (-1220)))
- ((*1 *1) (-5 *1 (-1221))) ((*1 *1) (-5 *1 (-1222))))
-(((*1 *1 *2 *3 *4)
- (-12 (-14 *5 (-644 (-1175))) (-4 *2 (-172))
- (-4 *4 (-238 (-2997 *5) (-771)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2168 *3) (|:| -3250 *4))
- (-2 (|:| -2168 *3) (|:| -3250 *4))))
- (-5 *1 (-463 *5 *2 *3 *4 *6 *7)) (-4 *3 (-850))
- (-4 *7 (-949 *2 *4 (-864 *5))))))
-(((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-157))))
- ((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1 (-943 (-225)) (-225) (-225)))
- (-5 *3 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-256)))))
-(((*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
-(((*1 *2 *3 *2 *2)
- (-12 (-5 *2 (-644 (-483 *4 *5))) (-5 *3 (-864 *4))
- (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-631 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1157)) (-5 *1 (-1195)))))
+(((*1 *1 *1) (-4 *1 (-547))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-393)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-225))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-225))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-381))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-409 (-566))) (-5 *1 (-381)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1266))))
+ ((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566)))
+ (-5 *2 (-1264 (-566))) (-5 *1 (-1291 *4)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-351)) (-4 *2 (-1049)) (-5 *1 (-712 *2 *3))
+ (-4 *3 (-1240 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-644 *3)) (-4 *3 (-1214)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *3 (-566)) (-5 *2 (-112)) (-5 *1 (-482)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2))
+ (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566))))
+ (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-1203 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-862)))))
+(((*1 *2 *3) (-12 (-5 *3 (-390)) (-5 *2 (-1269)) (-5 *1 (-393))))
+ ((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-393)))))
(((*1 *2 *2)
(-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-32 *3 *4))
(-4 *4 (-432 *3))))
@@ -12236,175 +12108,138 @@
(-12 (-5 *2 (-114)) (-4 *3 (-558)) (-5 *1 (-630 *3 *4))
(-4 *4 (-13 (-432 *3) (-1002) (-1199)))))
((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1019)))))
-(((*1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-563)) (-5 *3 (-566))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-365)) (-4 *3 (-1049))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4067 *1)))
- (-4 *1 (-852 *3)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-952 (-409 (-566)))) (-5 *4 (-1175))
- (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-301)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
- (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
- (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4)) (-4 *6 (-1240 *5))
- (-4 *7 (-1240 (-409 *6))) (-4 *8 (-344 *5 *6 *7))
- (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-112))
- (-5 *1 (-911 *4 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6))
- (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4)))
- (-4 *6 (-344 (-409 (-566)) *4 *5)) (-5 *2 (-112))
- (-5 *1 (-912 *4 *5 *6)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| -3803 *1) (|:| -4404 *1) (|:| |associate| *1)))
- (-4 *1 (-558)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1099)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-737 *3))))
- ((*1 *1 *2) (-12 (-5 *1 (-737 *2)) (-4 *2 (-1099))))
- ((*1 *1) (-12 (-5 *1 (-737 *2)) (-4 *2 (-1099)))))
+ (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5))
+ (-5 *2 (-415 *4 (-409 *4) *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 *6)) (-4 *6 (-13 (-411 *4 *5) (-1038 *4)))
+ (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-4 *3 (-308))
+ (-5 *1 (-415 *3 *4 *5 *6))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-365))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-506 *3 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-244 *2)) (-4 *2 (-1214)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-454)) (-4 *3 (-850)) (-4 *4 (-793))
+ (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-644 *3)) (-5 *1 (-961 *3)) (-4 *3 (-547)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
- (-5 *2 (-689 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-689 *4)) (-5 *1 (-418 *3 *4))
- (-4 *3 (-419 *4))))
- ((*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))))
-(((*1 *2 *3 *4 *4 *3 *5)
- (-12 (-5 *4 (-612 *3)) (-5 *5 (-1171 *3))
- (-4 *3 (-13 (-432 *6) (-27) (-1199)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2 (-587 *3)) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099))))
- ((*1 *2 *3 *4 *4 *4 *3 *5)
- (-12 (-5 *4 (-612 *3)) (-5 *5 (-409 (-1171 *3)))
- (-4 *3 (-13 (-432 *6) (-27) (-1199)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2 (-587 *3)) (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 (-644 *5) *6))
- (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *6 (-1240 *5))
- (-5 *2 (-644 (-2 (|:| -1655 *5) (|:| -3525 *3))))
- (-5 *1 (-809 *5 *6 *3 *7)) (-4 *3 (-656 *6))
- (-4 *7 (-656 (-409 *6))))))
-(((*1 *1) (-5 *1 (-823))))
+ (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-365) (-1199) (-1002))))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-874))))
+ ((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
(((*1 *2 *1) (-12 (-5 *2 (-644 (-612 *1))) (-4 *1 (-303)))))
-(((*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-225)) (-5 *1 (-306)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1237 *4 *5)) (-5 *3 (-644 *5)) (-14 *4 (-1175))
- (-4 *5 (-365)) (-5 *1 (-923 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *5)) (-4 *5 (-365)) (-5 *2 (-1171 *5))
- (-5 *1 (-923 *4 *5)) (-14 *4 (-1175))))
- ((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-644 *6)) (-5 *4 (-771)) (-4 *6 (-365))
- (-5 *2 (-409 (-952 *6))) (-5 *1 (-1050 *5 *6)) (-14 *5 (-1175)))))
-(((*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-399)))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558))))
- ((*1 *1 *1) (|partial| -4 *1 (-722))))
-(((*1 *2 *1)
+(((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267))))
+ ((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1099)) (-5 *2 (-1157)))))
+(((*1 *1 *1) (-4 *1 (-869 *2))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-720)) (-5 *2 (-921))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-771)))))
+(((*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-644 (-644 (-943 (-225)))))))
+ ((*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-644 (-644 (-943 (-225))))))))
+(((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE)))) (-5 *4 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-755))))
+ ((*1 *2 *3 *3 *4 *3 *3 *3 *3 *3 *3 *3 *5 *3 *6 *7 *8)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-67 DOT))))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 IMAGE)))) (-5 *8 (-390))
+ (-5 *4 (-225)) (-5 *2 (-1035)) (-5 *1 (-755)))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1267)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-2 (|:| -2050 (-1175)) (|:| -2849 (-439)))))
+ (-5 *1 (-1179)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-927))
+ (-5 *2
+ (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
+ (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
+ (-5 *1 (-153))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-927)) (-5 *4 (-409 (-566)))
+ (-5 *2
+ (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
+ (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
+ (-5 *1 (-153))))
+ ((*1 *2 *3)
(-12
(-5 *2
- (-644
- (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 *3))
- (|:| |logand| (-1171 *3)))))
- (-5 *1 (-587 *3)) (-4 *3 (-365)))))
-(((*1 *2 *3)
+ (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
+ (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
+ (-5 *1 (-153)) (-5 *3 (-644 (-943 (-225))))))
+ ((*1 *2 *3)
(-12
- (-5 *3
- (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381))
- (|:| |expense| (-381)) (|:| |accuracy| (-381))
- (|:| |intermediateResults| (-381))))
- (-5 *2 (-1035)) (-5 *1 (-306)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558))
- (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3))
- (-4 *2
- (-13 (-365) (-303)
- (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $))
- (-15 -3013 ((-1124 *3 (-612 $)) $))
- (-15 -2512 ($ (-1124 *3 (-612 $))))))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-308))
- (-5 *2 (-409 (-420 (-952 *4)))) (-5 *1 (-1042 *4)))))
-(((*1 *2 *3 *3 *4 *4)
- (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035))
- (-5 *1 (-748)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *3 (-1 (-225) (-225) (-225)))
- (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined"))
- (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225)))
- (-5 *1 (-697)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850))
- (-5 *2 (-2 (|:| -3157 *1) (|:| |gap| (-771)) (|:| -1644 *1)))
- (-4 *1 (-1064 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *2 (-2 (|:| -3157 *1) (|:| |gap| (-771)) (|:| -1644 *1)))
- (-4 *1 (-1064 *3 *4 *5)))))
-(((*1 *2 *3 *4 *4 *3 *3 *5)
- (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-1171 *3))
- (-4 *3 (-13 (-432 *6) (-27) (-1199)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2 (-2 (|:| -2806 *3) (|:| |coeff| *3)))
- (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099))))
- ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
- (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-409 (-1171 *3)))
- (-4 *3 (-13 (-432 *6) (-27) (-1199)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2 (-2 (|:| -2806 *3) (|:| |coeff| *3)))
- (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-295 *2)) (-4 *2 (-726)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454))
- (-14 *6 (-644 (-1175)))
(-5 *2
- (-644 (-1145 *5 (-533 (-864 *6)) (-864 *6) (-780 *5 (-864 *6)))))
- (-5 *1 (-628 *5 *6)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+ (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
+ (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
+ (-5 *1 (-153)) (-5 *3 (-644 (-644 (-943 (-225)))))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264)))))
+(((*1 *2 *2 *2 *2 *3)
+ (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-32 *4 *5))
- (-4 *5 (-432 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112))
- (-5 *1 (-158 *4 *5)) (-4 *5 (-432 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112))
- (-5 *1 (-277 *4 *5)) (-4 *5 (-13 (-432 *4) (-1002)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-302 *4)) (-4 *4 (-303))))
- ((*1 *2 *3) (-12 (-4 *1 (-303)) (-5 *3 (-114)) (-5 *2 (-112))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *5 (-1099)) (-5 *2 (-112))
- (-5 *1 (-431 *4 *5)) (-4 *4 (-432 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112))
- (-5 *1 (-433 *4 *5)) (-4 *5 (-432 *4))))
+ (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566)))))
+ (-4 *5 (-1240 *4)) (-5 *2 (-644 (-2 (|:| -3174 *5) (|:| -2175 *5))))
+ (-5 *1 (-807 *4 *5 *3 *6)) (-4 *3 (-656 *5))
+ (-4 *6 (-656 (-409 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566)))))
+ (-4 *4 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -3174 *4) (|:| -2175 *4))))
+ (-5 *1 (-807 *5 *4 *3 *6)) (-4 *3 (-656 *4))
+ (-4 *6 (-656 (-409 *4)))))
((*1 *2 *3)
- (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112))
- (-5 *1 (-630 *4 *5)) (-4 *5 (-13 (-432 *4) (-1002) (-1199))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331))
- (-5 *1 (-333)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
+ (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566)))))
+ (-4 *5 (-1240 *4)) (-5 *2 (-644 (-2 (|:| -3174 *5) (|:| -2175 *5))))
+ (-5 *1 (-807 *4 *5 *6 *3)) (-4 *6 (-656 *5))
+ (-4 *3 (-656 (-409 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566)))))
+ (-4 *4 (-1240 *5)) (-5 *2 (-644 (-2 (|:| -3174 *4) (|:| -2175 *4))))
+ (-5 *1 (-807 *5 *4 *6 *3)) (-4 *6 (-656 *4))
+ (-4 *3 (-656 (-409 *4))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))))
+(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-454)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-303))))
+ ((*1 *1 *1) (-4 *1 (-303)))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
+ ((*1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 (-644 (-644 *4)))) (-5 *2 (-644 (-644 *4)))
+ (-4 *4 (-850)) (-5 *1 (-1185 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))))
+(((*1 *1 *1 *1) (-4 *1 (-547))))
+(((*1 *1 *1 *1) (-5 *1 (-129)))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921))))
+ ((*1 *1 *1 *1) (-5 *1 (-1219))) ((*1 *1 *1 *1) (-5 *1 (-1220)))
+ ((*1 *1 *1 *1) (-5 *1 (-1221))) ((*1 *1 *1 *1) (-5 *1 (-1222))))
(((*1 *2 *3)
(-12 (-5 *2 (-169 (-381))) (-5 *1 (-785 *3)) (-4 *3 (-614 (-381)))))
((*1 *2 *3 *4)
@@ -12453,166 +12288,288 @@
(-12 (-5 *3 (-317 (-169 *5))) (-5 *4 (-921)) (-4 *5 (-558))
(-4 *5 (-850)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381)))
(-5 *1 (-785 *5)))))
-(((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049))
- (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558))
- (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3))
- (-4 *2
- (-13 (-365) (-303)
- (-10 -8 (-15 -3001 ((-1124 *3 (-612 $)) $))
- (-15 -3013 ((-1124 *3 (-612 $)) $))
- (-15 -2512 ($ (-1124 *3 (-612 $))))))))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1175))
- (-5 *2 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-5 *1 (-1178)))))
-(((*1 *2 *1 *1)
- (-12
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1215 *2))
+ (-4 *2 (-1099))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-1099)) (-4 *2 (-850))
+ (-5 *1 (-1215 *2)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1 (-3 *5 "failed") *7)) (-5 *4 (-1171 *7))
+ (-4 *5 (-1049)) (-4 *7 (-1049)) (-4 *2 (-1240 *5))
+ (-5 *1 (-503 *5 *2 *6 *7)) (-4 *6 (-1240 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *1) (-5 *1 (-439))))
+(((*1 *1 *1 *1) (-4 *1 (-143)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547))))
+ ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047))
+ (-5 *3 (-566)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
+ (-5 *2 (-689 *4))))
+ ((*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558))
(-5 *2
- (-2 (|:| -2222 (-782 *3)) (|:| |coef1| (-782 *3))
- (|:| |coef2| (-782 *3))))
- (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *2 (-2 (|:| -2222 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-1064 *3 *4 *5)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-129))))))
-(((*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-644 (-317 (-225)))) (-5 *1 (-268)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1155 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1049))
+ (-5 *3 (-409 (-566))) (-5 *1 (-1159 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-656 *3)) (-4 *3 (-1049)) (-4 *3 (-365))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-771)) (-5 *4 (-1 *5 *5)) (-4 *5 (-365))
+ (-5 *1 (-659 *5 *2)) (-4 *2 (-656 *5)))))
+(((*1 *1 *1 *1) (-5 *1 (-129)))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-1182 *2)) (-14 *2 (-921))))
+ ((*1 *1 *1 *1) (-5 *1 (-1219))) ((*1 *1 *1 *1) (-5 *1 (-1220)))
+ ((*1 *1 *1 *1) (-5 *1 (-1221))) ((*1 *1 *1 *1) (-5 *1 (-1222))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-927)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-175)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365))
- (-5 *2 (-2 (|:| -3792 (-420 *3)) (|:| |special| (-420 *3))))
- (-5 *1 (-727 *5 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
+ (-12 (-5 *4 (-1 (-1155 *3))) (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3))
+ (-4 *3 (-38 (-409 (-566)))) (-4 *3 (-1049)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-566)) (-5 *2 (-112)) (-5 *1 (-555)))))
+(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-112))
+ (-5 *2 (-1035)) (-5 *1 (-753)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-558)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
+ (-5 *1 (-1204 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *1 *2)
+ (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
+(((*1 *1 *1) (-5 *1 (-225)))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
+ (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
+ ((*1 *1 *1) (-5 *1 (-381))) ((*1 *1) (-5 *1 (-381))))
+(((*1 *1) (-5 *1 (-1084))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1157)) (-5 *2 (-566)) (-5 *1 (-1196 *4))
- (-4 *4 (-1049)))))
+ (-12 (-5 *3 (-566)) (-5 *2 (-644 (-644 (-225)))) (-5 *1 (-1210)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099))
+ (-5 *2 (-644 (-2 (|:| |k| *4) (|:| |c| *3))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-2 (|:| |k| (-893 *3)) (|:| |c| *4))))
+ (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850))
+ (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-672 *3))) (-5 *1 (-893 *3)) (-4 *3 (-850)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566)))))
- (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *5))
- (-4 *5 (-1240 (-409 *4))))))
+ (-12 (-4 *4 (-38 (-409 (-566))))
+ (-5 *2 (-2 (|:| -2843 (-1155 *4)) (|:| -2853 (-1155 *4))))
+ (-5 *1 (-1161 *4)) (-5 *3 (-1155 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-493)) (-5 *4 (-954)) (-5 *2 (-691 (-535)))
+ (-5 *1 (-535))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-954)) (-4 *3 (-1099)) (-5 *2 (-691 *1))
+ (-4 *1 (-767 *3)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-508)) (-5 *2 (-691 (-109))) (-5 *1 (-175))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-508)) (-5 *2 (-691 (-109))) (-5 *1 (-1084)))))
+(((*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365)))))
+(((*1 *2 *1) (-12 (-4 *1 (-351)) (-5 *2 (-771))))
+ ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-404)) (-5 *2 (-771)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-258)))))
+(((*1 *1 *2 *3 *3 *3 *4)
+ (-12 (-4 *4 (-365)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 (-409 *3)))
+ (-4 *1 (-337 *4 *3 *5 *2)) (-4 *2 (-344 *4 *3 *5))))
+ ((*1 *1 *2 *2 *3)
+ (-12 (-5 *3 (-566)) (-4 *2 (-365)) (-4 *4 (-1240 *2))
+ (-4 *5 (-1240 (-409 *4))) (-4 *1 (-337 *2 *4 *5 *6))
+ (-4 *6 (-344 *2 *4 *5))))
+ ((*1 *1 *2 *2)
+ (-12 (-4 *2 (-365)) (-4 *3 (-1240 *2)) (-4 *4 (-1240 (-409 *3)))
+ (-4 *1 (-337 *2 *3 *4 *5)) (-4 *5 (-344 *2 *3 *4))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-365)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
+ (-4 *1 (-337 *3 *4 *5 *2)) (-4 *2 (-344 *3 *4 *5))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-415 *4 (-409 *4) *5 *6)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-4 *3 (-365))
+ (-4 *1 (-337 *3 *4 *5 *6)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
- (-5 *1 (-176 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-909)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-420 (-1171 *7)))
- (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-1171 *7))))
+ (|partial| -12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
+ (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5))))
((*1 *2 *3)
- (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5)))
- (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))))
+ (|partial| -12 (-4 *4 (-558)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
+ (-4 *7 (-992 *4)) (-4 *2 (-687 *7 *8 *9))
+ (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-687 *4 *5 *6))
+ (-4 *8 (-375 *7)) (-4 *9 (-375 *7))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049))
+ (-4 *3 (-375 *2)) (-4 *4 (-375 *2)) (-4 *2 (-365))))
+ ((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-365)) (-4 *3 (-172)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2))
+ (-4 *2 (-687 *3 *4 *5))))
+ ((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-689 *2)) (-4 *2 (-365)) (-4 *2 (-1049))))
+ ((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-1122 *2 *3 *4 *5)) (-4 *3 (-1049))
+ (-4 *4 (-238 *2 *3)) (-4 *5 (-238 *2 *3)) (-4 *3 (-365))))
+ ((*1 *2 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-1185 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4))
- (-5 *2 (-420 *3)) (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))))
+ (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
+ (-4 *4 (-351)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-921)) (-5 *1 (-1032 *2))
+ (-4 *2 (-13 (-1099) (-10 -8 (-15 * ($ $ $))))))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1214)) (-5 *2 (-644 *1)) (-4 *1 (-1010 *3)))))
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
+(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-144)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-786)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-497)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
(((*1 *2 *3)
- (-12 (-5 *3 (-317 (-225))) (-5 *2 (-317 (-381))) (-5 *1 (-306)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172))
- (-14 *6
- (-1 (-112) (-2 (|:| -2168 *5) (|:| -3250 *2))
- (-2 (|:| -2168 *5) (|:| -3250 *2))))
- (-4 *2 (-238 (-2997 *3) (-771))) (-5 *1 (-463 *3 *4 *5 *2 *6 *7))
- (-4 *5 (-850)) (-4 *7 (-949 *4 *2 (-864 *3))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-771)) (-4 *5 (-558))
- (-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1207 *2 *3 *4 *5)) (-4 *2 (-558)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *5 (-1064 *2 *3 *4)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-365))
- (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-5 *1 (-452 *4 *5 *6 *2))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-365))
- (-5 *2
- (-2 (|:| R (-689 *6)) (|:| A (-689 *6)) (|:| |Ainv| (-689 *6))))
- (-5 *1 (-978 *6)) (-5 *3 (-689 *6)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-846)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1146 *3)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-588 *2)) (-4 *2 (-547)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-547))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-644 (-281))) (-5 *1 (-281))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1180)))))
-(((*1 *2 *3) (-12 (-5 *3 (-538)) (-5 *1 (-537 *2)) (-4 *2 (-1214))))
- ((*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-538)))))
+ (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7))))
+ (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-566)))) (-4 *5 (-1240 *4))
+ (-5 *2 (-2 (|:| |ans| (-409 *5)) (|:| |nosol| (-112))))
+ (-5 *1 (-1015 *4 *5)) (-5 *3 (-409 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-977 *4 *5 *6 *7)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-644 *1))
+ (-4 *1 (-384 *3 *4))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-735 *3 *4))) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-726))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1))
+ (-4 *1 (-949 *3 *4 *5)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-112)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-612 *1))) (-4 *1 (-303)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1093 (-225)))
+ (-5 *2 (-1266)) (-5 *1 (-258)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *4))))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))))
+(((*1 *1 *1 *1) (-4 *1 (-967))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-225)))) (-5 *1 (-926)))))
+(((*1 *2 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049))))
+ ((*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-365) (-848))) (-5 *1 (-181 *3 *2))
- (-4 *2 (-1240 (-169 *3))))))
-(((*1 *1) (-5 *1 (-1265))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-222 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-4 *1 (-255 *3))))
- ((*1 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-644 *6)) (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))
- (-4 *3 (-558)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147))
- (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-977 *3 *4 *5 *6)))))
+ (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-451 *3 *4 *5 *2)) (-4 *2 (-949 *3 *4 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2))
+ (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4415)))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3))))
- ((*1 *1 *1 *1)
- (|partial| -12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *1) (-5 *1 (-130))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-644 (-952 *4))) (-5 *3 (-644 (-1175))) (-4 *4 (-454))
- (-5 *1 (-918 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))))
+ (-12 (-5 *2 (-689 *3))
+ (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))))
+ (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-943 *4)) (-4 *4 (-1049)) (-5 *1 (-1163 *3 *4))
+ (-14 *3 (-921)))))
(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-409 (-1171 (-317 *3)))) (-4 *3 (-558))
- (-5 *1 (-1129 *3)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-244 *2)) (-4 *2 (-1214)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-720)) (-5 *2 (-921))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-722)) (-5 *2 (-771)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-566)) (-5 *2 (-112)) (-5 *1 (-555)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-566)) (-5 *2 (-644 (-644 (-225)))) (-5 *1 (-1210)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-258)))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *1 *1 *1) (-4 *1 (-967))))
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 (-644 *8))) (-5 *3 (-644 *8))
+ (-4 *8 (-949 *5 *7 *6)) (-4 *5 (-13 (-308) (-147)))
+ (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-112))
+ (-5 *1 (-924 *5 *6 *7 *8)))))
+(((*1 *2 *1) (-12 (-4 *1 (-427 *3)) (-4 *3 (-1099)) (-5 *2 (-771)))))
+(((*1 *1 *1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-558)))))
(((*1 *2 *3)
(-12 (-5 *3 (-644 *4)) (-4 *4 (-850)) (-5 *2 (-644 (-664 *4 *5)))
(-5 *1 (-627 *4 *5 *6)) (-4 *5 (-13 (-172) (-717 (-409 (-566)))))
(-14 *6 (-921)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 *5)) (-4 *5 (-639 *4)) (-4 *4 (-558))
+ (-5 *2 (-112)) (-5 *1 (-638 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-895))
+ (-5 *3
+ (-2 (|:| |pde| (-644 (-317 (-225))))
+ (|:| |constraints|
+ (-644
+ (-2 (|:| |start| (-225)) (|:| |finish| (-225))
+ (|:| |grid| (-771)) (|:| |boundaryType| (-566))
+ (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225))))))
+ (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157))
+ (|:| |tol| (-225))))
+ (-5 *2 (-1035)))))
+(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-566)) (-5 *2 (-112)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-225)) (-5 *3 (-771)) (-5 *1 (-226))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-169 (-225))) (-5 *3 (-771)) (-5 *1 (-226))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *1 *1 *1) (-4 *1 (-1138))))
+(((*1 *1) (-5 *1 (-470))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
+ (-4 *4 (-351)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049))
+ (-5 *1 (-1159 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049))
+ (-14 *4 (-1175)) (-14 *5 *3))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-308)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
+ (-5 *1 (-1123 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *5 *7)) (-5 *4 (-1171 *7)) (-4 *5 (-1049))
(-4 *7 (-1049)) (-4 *2 (-1240 *5)) (-5 *1 (-503 *5 *2 *6 *7))
@@ -12621,35 +12578,594 @@
(-12 (-5 *3 (-1 *7 *5)) (-4 *5 (-1049)) (-4 *7 (-1049))
(-4 *4 (-1240 *5)) (-5 *2 (-1171 *7)) (-5 *1 (-503 *5 *4 *6 *7))
(-4 *6 (-1240 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-612 *1))) (-4 *1 (-303)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4414)) (-4 *1 (-604 *4 *3)) (-4 *4 (-1099))
+ (-4 *3 (-1214)) (-4 *3 (-1099)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
+ (-14 *5 (-644 (-1175)))
+ (-5 *2
+ (-644 (-2 (|:| -4126 (-1171 *4)) (|:| -2543 (-644 (-952 *4))))))
+ (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175)))))
+ ((*1 *2 *3 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2
+ (-644 (-2 (|:| -4126 (-1171 *5)) (|:| -2543 (-644 (-952 *5))))))
+ (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5)))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2
+ (-644 (-2 (|:| -4126 (-1171 *5)) (|:| -2543 (-644 (-952 *5))))))
+ (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5)))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2
+ (-644 (-2 (|:| -4126 (-1171 *5)) (|:| -2543 (-644 (-952 *5))))))
+ (-5 *1 (-1290 *5 *6 *7)) (-5 *3 (-644 (-952 *5)))
+ (-14 *6 (-644 (-1175))) (-14 *7 (-644 (-1175)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
+ (-5 *2
+ (-644 (-2 (|:| -4126 (-1171 *4)) (|:| -2543 (-644 (-952 *4))))))
+ (-5 *1 (-1290 *4 *5 *6)) (-5 *3 (-644 (-952 *4)))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-644 (-1175))))))
+(((*1 *2 *3 *4 *3 *5 *5 *3 *5 *4)
+ (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566))
+ (-5 *2 (-1035)) (-5 *1 (-756)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-174 *3)) (-4 *3 (-308))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-674 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-740 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-850))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *1 (-980 *3)) (-4 *3 (-1049))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7))
+ (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1))
+ (-4 *1 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1))
+ (-4 *1 (-1070 *4 *5 *6 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-689 *4)) (-4 *4 (-365)) (-5 *2 (-1171 *4))
+ (-5 *1 (-534 *4 *5 *6)) (-4 *5 (-365)) (-4 *6 (-13 (-365) (-848))))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-112)) (-5 *5 (-1101 (-771))) (-5 *6 (-771))
+ (-5 *2
+ (-2 (|:| |contp| (-566))
+ (|:| -2670 (-644 (-2 (|:| |irr| *3) (|:| -2831 (-566)))))))
+ (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-566)) (-5 *1 (-317 *3)) (-4 *3 (-558)) (-4 *3 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-4 *2 (-365)) (-4 *2 (-848)) (-5 *1 (-945 *2 *3))
+ (-4 *3 (-1240 *2)))))
(((*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793)) (-5 *2 (-644 (-644 (-566))))
+ (-5 *1 (-924 *4 *5 *6 *7)) (-5 *3 (-566)) (-4 *7 (-949 *4 *6 *5)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-508)) (-5 *1 (-281)))))
+(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-644 (-1027 *5 *6 *7 *3))) (-5 *1 (-1027 *5 *6 *7 *3))
+ (-4 *3 (-1064 *5 *6 *7))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-644 *6)) (-4 *1 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-1070 *3 *4 *5 *2)) (-4 *3 (-454)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5))))
+ ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-644 (-1145 *5 *6 *7 *3))) (-5 *1 (-1145 *5 *6 *7 *3))
+ (-4 *3 (-1064 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1285 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
+ (-5 *2 (-819 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-846)) (-5 *1 (-1287 *3 *2)) (-4 *3 (-1049)))))
+(((*1 *2 *3 *4 *5 *6 *7 *7 *8)
+ (-12
+ (-5 *3
+ (-2 (|:| |det| *12) (|:| |rows| (-644 (-566)))
+ (|:| |cols| (-644 (-566)))))
+ (-5 *4 (-689 *12)) (-5 *5 (-644 (-409 (-952 *9))))
+ (-5 *6 (-644 (-644 *12))) (-5 *7 (-771)) (-5 *8 (-566))
+ (-4 *9 (-13 (-308) (-147))) (-4 *12 (-949 *9 *11 *10))
+ (-4 *10 (-13 (-850) (-614 (-1175)))) (-4 *11 (-793))
+ (-5 *2
+ (-2 (|:| |eqzro| (-644 *12)) (|:| |neqzro| (-644 *12))
+ (|:| |wcond| (-644 (-952 *9)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *9))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *9)))))))))
+ (-5 *1 (-924 *9 *10 *11 *12)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
(((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137))))
((*1 *2 *3)
(-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-558)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *1 (-351)) (-5 *3 (-566)) (-5 *2 (-1187 (-921) (-771))))))
+(((*1 *1 *1) (-12 (-5 *1 (-1200 *2)) (-4 *2 (-1099)))))
+(((*1 *1 *1 *1 *2)
+ (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1171 *1)) (-4 *1 (-1012)))))
+(((*1 *2 *2 *3)
+ (|partial| -12
+ (-5 *3 (-644 (-2 (|:| |func| *2) (|:| |pole| (-112)))))
+ (-4 *2 (-13 (-432 *4) (-1002))) (-4 *4 (-558))
+ (-5 *1 (-277 *4 *2)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-755)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-381)) (-5 *1 (-205)))))
(((*1 *2 *3 *1)
(-12 (-5 *3 (-1139 *4 *5)) (-4 *4 (-13 (-1099) (-34)))
(-4 *5 (-13 (-1099) (-34))) (-5 *2 (-112)) (-5 *1 (-1140 *4 *5)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547))
+ (-5 *2 (-409 (-566)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-409 (-566))) (-5 *1 (-420 *3)) (-4 *3 (-547))
+ (-4 *3 (-558))))
+ ((*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-409 (-566)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547))
+ (-5 *2 (-409 (-566)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-409 (-566))) (-5 *1 (-833 *3)) (-4 *3 (-547))
+ (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-409 (-566))) (-5 *1 (-843 *3)) (-4 *3 (-547))
+ (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547))
+ (-5 *2 (-409 (-566)))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1008 *3)) (-4 *3 (-1038 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-689 (-317 (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-558)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
+ (-5 *1 (-1204 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-644 (-644 (-644 *4)))) (-5 *3 (-644 *4)) (-4 *4 (-850))
+ (-5 *1 (-1185 *4)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *1 (-804 *4 *2)) (-4 *2 (-13 (-29 *4) (-1199) (-959))))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-566)) (-5 *1 (-204)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *3 *3 *3 *4 *5 *6)
+ (-12 (-5 *3 (-317 (-566))) (-5 *4 (-1 (-225) (-225)))
+ (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225)))
+ (-5 *1 (-697)))))
(((*1 *2 *2 *3)
(-12 (-5 *2 (-1264 *4)) (-5 *3 (-771)) (-4 *4 (-351))
(-5 *1 (-530 *4)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147))
+ (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-977 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-38 (-409 (-566))))
+ (-5 *2 (-2 (|:| -3915 (-1155 *4)) (|:| -3927 (-1155 *4))))
+ (-5 *1 (-1161 *4)) (-5 *3 (-1155 *4)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))))
+(((*1 *2 *3 *4 *2 *2 *5)
+ (|partial| -12 (-5 *2 (-843 *4)) (-5 *3 (-612 *4)) (-5 *5 (-112))
+ (-4 *4 (-13 (-1199) (-29 *6)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-224 *6 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1141 *4 *2)) (-14 *4 (-921))
+ (-4 *2 (-13 (-1049) (-10 -7 (-6 (-4416 "*")))))
+ (-5 *1 (-902 *4 *2)))))
+(((*1 *2 *2) (-12 (-5 *2 (-390)) (-5 *1 (-438))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-390)) (-5 *1 (-438)))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-858))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-965))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-989))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-1099) (-34))) (-5 *1 (-1139 *2 *3))
+ (-4 *3 (-13 (-1099) (-34))))))
+(((*1 *1) (-5 *1 (-1062))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-365) (-848)))
+ (-5 *2 (-644 (-2 (|:| -2670 (-644 *3)) (|:| -1499 *5))))
+ (-5 *1 (-181 *5 *3)) (-4 *3 (-1240 (-169 *5)))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-365) (-848)))
+ (-5 *2 (-644 (-2 (|:| -2670 (-644 *3)) (|:| -1499 *4))))
+ (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
+(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
(((*1 *2 *3 *3 *3 *4 *3)
(-12 (-5 *3 (-566)) (-5 *4 (-689 (-169 (-225)))) (-5 *2 (-1035))
(-5 *1 (-754)))))
+(((*1 *1) (-4 *1 (-967))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-873 *2 *3)) (-4 *2 (-1214)) (-4 *3 (-1214)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2662 *4)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-689 (-317 (-225))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-381)) (|:| |stabilityFactor| (-381))))
+ (-5 *1 (-205)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-174 (-409 (-566)))) (-5 *1 (-117 *3)) (-14 *3 (-566))))
+ ((*1 *1 *2 *3 *3)
+ (-12 (-5 *3 (-1155 *2)) (-4 *2 (-308)) (-5 *1 (-174 *2))))
+ ((*1 *1 *2) (-12 (-5 *2 (-409 *3)) (-4 *3 (-308)) (-5 *1 (-174 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-174 (-566))) (-5 *1 (-765 *3)) (-4 *3 (-406))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-174 (-409 (-566)))) (-5 *1 (-871 *3)) (-14 *3 (-566))))
+ ((*1 *2 *1)
+ (-12 (-14 *3 (-566)) (-5 *2 (-174 (-409 (-566))))
+ (-5 *1 (-872 *3 *4)) (-4 *4 (-869 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *2 *2 *2)
+ (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199)))))
+ ((*1 *1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365))))
+ ((*1 *1 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365))))
+ ((*1 *2 *1 *3 *4 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
+(((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-644 *7)) (-5 *3 (-566)) (-4 *7 (-949 *4 *5 *6))
+ (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-5 *1 (-451 *4 *5 *6 *7)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-926)))))
(((*1 *1 *1 *2 *2 *1)
(-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049))
(-4 *4 (-375 *3)) (-4 *5 (-375 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-454))))
+ ((*1 *1 *1 *1) (-4 *1 (-454)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-5 *1 (-488 *2)) (-4 *2 (-1240 (-566)))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3))))
+ ((*1 *1 *1 *1) (-5 *1 (-771)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308))
+ (-5 *1 (-916 *3 *4 *5 *2)) (-4 *2 (-949 *5 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *6 *4 *5))
+ (-5 *1 (-916 *4 *5 *6 *2)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-4 *6 (-308))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *6))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-1171 *7))) (-4 *4 (-793)) (-4 *5 (-850))
+ (-4 *6 (-308)) (-5 *2 (-1171 *7)) (-5 *1 (-916 *4 *5 *6 *7))
+ (-4 *7 (-949 *6 *4 *5))))
+ ((*1 *1 *1 *1) (-5 *1 (-921)))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-454)) (-4 *3 (-558)) (-5 *1 (-969 *3 *2))
+ (-4 *2 (-1240 *3))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-454)))))
+(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-549))))))
+(((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793))
+ (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -4257 (-644 *9)) (|:| -2327 *4) (|:| |ineq| (-644 *9))))
+ (-5 *1 (-988 *6 *7 *8 *9 *4)) (-5 *3 (-644 *9))
+ (-4 *4 (-1070 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4 *3 *5 *5 *5 *5 *5)
+ (|partial| -12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793))
+ (-4 *8 (-850)) (-4 *9 (-1064 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| -4257 (-644 *9)) (|:| -2327 *4) (|:| |ineq| (-644 *9))))
+ (-5 *1 (-1106 *6 *7 *8 *9 *4)) (-5 *3 (-644 *9))
+ (-4 *4 (-1070 *6 *7 *8 *9)))))
+(((*1 *1 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-317 (-225)))) (-5 *4 (-771))
+ (-5 *2 (-689 (-225))) (-5 *1 (-268)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-365)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3)))
+ (-5 *1 (-766 *3 *4)) (-4 *3 (-708 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-365)) (-4 *3 (-1049))
+ (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-852 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-365)) (-4 *5 (-1049))
+ (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-853 *5 *3))
+ (-4 *3 (-852 *5)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-747)))))
+(((*1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566))))
+ ((*1 *1 *1) (-5 *1 (-1119))))
+(((*1 *1 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)) (-4 *2 (-1049))))
+ ((*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
(((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1199))))
((*1 *2 *1) (-12 (-5 *1 (-332 *2)) (-4 *2 (-850))))
((*1 *2 *1) (-12 (-5 *2 (-644 *3)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))))
+(((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267))))
+ ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-454))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *5 (-909)) (-5 *1 (-459 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-909)))))
+(((*1 *1 *1) (-5 *1 (-1062))))
+(((*1 *1 *1 *1) (-4 *1 (-967))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-38 (-409 (-566))))
+ (-4 *2 (-172)))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-97)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566))))
+ ((*1 *1 *1 *1) (-5 *1 (-1119))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1231 (-566))) (-4 *1 (-651 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-558)))))
+(((*1 *2 *3 *3 *3 *4)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566))))
+ (-5 *2
+ (-2 (|:| |a| *6) (|:| |b| (-409 *6)) (|:| |h| *6)
+ (|:| |c1| (-409 *6)) (|:| |c2| (-409 *6)) (|:| -1493 *6)))
+ (-5 *1 (-1016 *5 *6)) (-5 *3 (-409 *6)))))
(((*1 *2 *3 *4 *5 *5 *4 *6)
(-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
(-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
(-5 *1 (-788)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 *1)) (-5 *4 (-1264 *1)) (-4 *1 (-639 *5))
+ (-4 *5 (-1049))
+ (-5 *2 (-2 (|:| -4193 (-689 *5)) (|:| |vec| (-1264 *5))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-689 *1)) (-4 *1 (-639 *4)) (-4 *4 (-1049))
+ (-5 *2 (-689 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-547))))
+ ((*1 *1 *1) (-4 *1 (-1059))))
+(((*1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-370))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4))
+ (-4 *4 (-351))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-850)) (-5 *1 (-713 *2 *3 *4)) (-4 *3 (-1099))
+ (-14 *4
+ (-1 (-112) (-2 (|:| -2208 *2) (|:| -2456 *3))
+ (-2 (|:| -2208 *2) (|:| -2456 *3)))))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-771))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-949 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-771)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172))
+ (-4 *5 (-1240 *4)) (-5 *2 (-689 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3))
+ (-5 *2 (-689 *3)))))
+(((*1 *1) (-5 *1 (-141))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566))))
+ ((*1 *1 *1 *1) (-5 *1 (-1119))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *2 (-644 (-169 *4)))
+ (-5 *1 (-764 *4)) (-4 *4 (-13 (-365) (-848))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-874)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))))
+(((*1 *1) (-5 *1 (-439))))
(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-258)))))
+(((*1 *2)
+ (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
+ (-5 *1 (-1071 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
+ (-5 *1 (-1107 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-454))))
+ ((*1 *1 *1 *1) (-4 *1 (-454))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-112)) (-5 *1 (-301)))))
+(((*1 *2 *3 *4 *4 *4 *5 *4 *6 *6 *3)
+ (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *6 (-225))
+ (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-751)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-566)) (-4 *3 (-172)) (-4 *5 (-375 *3))
+ (-4 *6 (-375 *3)) (-5 *1 (-688 *3 *5 *6 *2))
+ (-4 *2 (-687 *3 *5 *6)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-470)) (-5 *3 (-644 (-264))) (-5 *1 (-1265))))
+ ((*1 *1 *1) (-5 *1 (-1265))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1175)) (-4 *5 (-1218)) (-4 *6 (-1240 *5))
+ (-4 *7 (-1240 (-409 *6))) (-5 *2 (-644 (-952 *5)))
+ (-5 *1 (-343 *4 *5 *6 *7)) (-4 *4 (-344 *5 *6 *7))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1175)) (-4 *1 (-344 *4 *5 *6)) (-4 *4 (-1218))
+ (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-4 *4 (-365))
+ (-5 *2 (-644 (-952 *4))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-771)) (-4 *4 (-365)) (-5 *1 (-896 *2 *4))
+ (-4 *2 (-1240 *4)))))
+(((*1 *2)
+ (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-419 *3)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |pde| (-644 (-317 (-225))))
+ (|:| |constraints|
+ (-644
+ (-2 (|:| |start| (-225)) (|:| |finish| (-225))
+ (|:| |grid| (-771)) (|:| |boundaryType| (-566))
+ (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225))))))
+ (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157))
+ (|:| |tol| (-225))))
+ (-5 *2 (-112)) (-5 *1 (-210)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1047)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5 *6 *6 *7 *7 *3)
+ (-12 (-5 *4 (-644 (-112))) (-5 *5 (-689 (-225)))
+ (-5 *6 (-689 (-566))) (-5 *7 (-225)) (-5 *3 (-566)) (-5 *2 (-1035))
+ (-5 *1 (-754)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1099)) (-4 *3 (-900 *5)) (-5 *2 (-689 *3))
+ (-5 *1 (-692 *5 *3 *6 *4)) (-4 *6 (-375 *3))
+ (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4414)))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-644 (-612 *5))) (-5 *3 (-1175)) (-4 *5 (-432 *4))
+ (-4 *4 (-1099)) (-5 *1 (-575 *4 *5)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4414)) (-4 *1 (-491 *3)) (-4 *3 (-1214))
+ (-4 *3 (-1099)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-112))
+ (-5 *1 (-904 *4))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-921)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-921)) (-5 *4 (-420 *6)) (-4 *6 (-1240 *5))
+ (-4 *5 (-1049)) (-5 *2 (-644 *6)) (-5 *1 (-446 *5 *6)))))
+(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-771)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5))
+ (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1262 *3)) (-4 *3 (-23)) (-4 *3 (-1214)))))
+(((*1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1267)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-949 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-454))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *3 (-1064 *4 *5 *6))
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *1))))
+ (-4 *1 (-1070 *4 *5 *6 *3))))
+ ((*1 *1 *1) (-4 *1 (-1218)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-1243 *3 *2))
+ (-4 *2 (-13 (-1240 *3) (-558) (-10 -8 (-15 -2235 ($ $ $))))))))
(((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-1157)) (-5 *4 (-1119)) (-5 *2 (-112)) (-5 *1 (-821)))))
(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
+ (-247 *4 (-409 (-566)))))
+ (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112))
+ (-5 *1 (-507 *4 *5)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-874)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))))
+(((*1 *1 *2 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1157)) (-5 *1 (-989))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-1093 *4)) (-4 *4 (-1214))
+ (-5 *1 (-1091 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1240 (-48))))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
+ (-5 *2
+ (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566))
+ (|:| |success| (-112))))
+ (-5 *1 (-789)) (-5 *5 (-566)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-644 (-1171 (-566)))) (-5 *1 (-191)) (-5 *3 (-566)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-451 *3 *4 *5 *6)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-144))) (-5 *1 (-141))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-141)))))
+(((*1 *2 *3)
(|partial| -12 (-5 *3 (-952 (-169 *4))) (-4 *4 (-172))
(-4 *4 (-614 (-381))) (-5 *2 (-169 (-381))) (-5 *1 (-785 *4))))
((*1 *2 *3 *4)
@@ -12688,13 +13204,134 @@
(|partial| -12 (-5 *3 (-317 (-169 *5))) (-5 *4 (-921)) (-4 *5 (-558))
(-4 *5 (-850)) (-4 *5 (-614 (-381))) (-5 *2 (-169 (-381)))
(-5 *1 (-785 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-558)) (-4 *2 (-1049))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-558))))
+ ((*1 *2 *3 *3 *1)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *3 (-1064 *4 *5 *6))
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *1))))
+ (-4 *1 (-1070 *4 *5 *6 *3)))))
+(((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267))))
+ ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1049)) (-5 *1 (-446 *3 *2)) (-4 *2 (-1240 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-303)) (-5 *2 (-644 (-114))))))
+(((*1 *2)
+ (-12 (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
+ (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))))
+ (-4 *4 (-1240 *3))
+ (-5 *2
+ (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-689 *3))))
+ (-5 *1 (-352 *3 *4 *5)) (-4 *5 (-411 *3 *4))))
+ ((*1 *2)
+ (-12 (-4 *3 (-1240 (-566)))
+ (-5 *2
+ (-2 (|:| -1575 (-689 (-566))) (|:| |basisDen| (-566))
+ (|:| |basisInv| (-689 (-566)))))
+ (-5 *1 (-768 *3 *4)) (-4 *4 (-411 (-566) *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-351)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 *4))
+ (-5 *2
+ (-2 (|:| -1575 (-689 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-689 *4))))
+ (-5 *1 (-985 *3 *4 *5 *6)) (-4 *6 (-724 *4 *5))))
+ ((*1 *2)
+ (-12 (-4 *3 (-351)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 *4))
+ (-5 *2
+ (-2 (|:| -1575 (-689 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-689 *4))))
+ (-5 *1 (-1273 *3 *4 *5 *6)) (-4 *6 (-411 *4 *5)))))
+(((*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267))))
+ ((*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
+ ((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-566) (-566))) (-5 *1 (-363 *3)) (-4 *3 (-1099))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-771) (-771))) (-5 *1 (-388 *3)) (-4 *3 (-1099))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-23)) (-14 *5 *4)
+ (-5 *1 (-649 *3 *4 *5)) (-4 *3 (-1099)))))
(((*1 *2 *3 *3)
(-12 (-4 *4 (-820)) (-14 *5 (-1175)) (-5 *2 (-644 (-1237 *5 *4)))
(-5 *1 (-1113 *4 *5)) (-5 *3 (-1237 *5 *4)))))
-(((*1 *1) (-4 *1 (-967))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-747)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-454)) (-4 *4 (-820))
+ (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793))
+ (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1068 *5 *6 *7 *8 *9))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793))
+ (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))))
+(((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-771)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *3 *3 *4 *4)
+ (-12 (-5 *3 (-771)) (-5 *4 (-921)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *1 *1)
+ (|partial| -12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-566)) (-4 *5 (-351)) (-5 *2 (-420 (-1171 (-1171 *5))))
+ (-5 *1 (-1212 *5)) (-5 *3 (-1171 (-1171 *5))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1024 *3))
+ (-4 *3 (-13 (-848) (-365) (-1022)))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
+ (-4 *3 (-1240 *2))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-4 *1 (-1067 *2 *3)) (-4 *2 (-13 (-848) (-365)))
+ (-4 *3 (-1240 *2)))))
+(((*1 *1 *2 *3 *1 *3)
+ (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3))
+ (-4 *3 (-1099)))))
+(((*1 *1) (-5 *1 (-144))))
(((*1 *2 *1)
(-12 (-5 *2 (-1101 *3)) (-5 *1 (-905 *3)) (-4 *3 (-370))
(-4 *3 (-1099)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351))
+ (-4 *2
+ (-13 (-404)
+ (-10 -7 (-15 -3780 (*2 *4)) (-15 -1299 ((-921) *2))
+ (-15 -1575 ((-1264 *2) (-921))) (-15 -3583 (*2 *2)))))
+ (-5 *1 (-358 *2 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266))))
+ ((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1266)))))
+(((*1 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-563)) (-5 *3 (-566)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214))
+ (-5 *2 (-644 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-175))) (-5 *1 (-1084)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3))
+ (-4 *3 (-1099)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1279 (-1175) *3)) (-4 *3 (-1049)) (-5 *1 (-1286 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1279 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
+ (-5 *1 (-1288 *3 *4)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
(-5 *2 (-644 (-952 *4)))))
@@ -12711,802 +13348,247 @@
(-12 (-5 *3 (-1264 (-455 *4 *5 *6 *7))) (-5 *2 (-644 (-952 *4)))
(-5 *1 (-455 *4 *5 *6 *7)) (-4 *4 (-558)) (-4 *4 (-172))
(-14 *5 (-921)) (-14 *6 (-644 (-1175))) (-14 *7 (-1264 (-689 *4))))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-612 *1)) (-4 *1 (-303)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1049)) (-5 *1 (-1236 *3 *2)) (-4 *2 (-1240 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
+ (-12 (-5 *3 (-1155 (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4))
+ (-4 *4 (-38 (-409 (-566)))) (-4 *4 (-1049)))))
+(((*1 *1 *1) (|partial| -4 *1 (-1150))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1171 *5)) (-4 *5 (-454)) (-5 *2 (-644 *6))
+ (-5 *1 (-540 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-952 *5)) (-4 *5 (-454)) (-5 *2 (-644 *6))
+ (-5 *1 (-540 *5 *6 *4)) (-4 *6 (-365)) (-4 *4 (-13 (-365) (-848))))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-558))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-558)))))
+(((*1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1155 *3)) (-4 *3 (-1099))
+ (-4 *3 (-1214)))))
(((*1 *2 *3 *4 *5)
- (-12 (-4 *6 (-1240 *9)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-308))
- (-4 *10 (-949 *9 *7 *8))
+ (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-5 *5 (-644 (-644 *8)))
+ (-4 *7 (-850)) (-4 *8 (-308)) (-4 *9 (-949 *8 *6 *7)) (-4 *6 (-793))
(-5 *2
- (-2 (|:| |deter| (-644 (-1171 *10)))
- (|:| |dterm|
- (-644 (-644 (-2 (|:| -1942 (-771)) (|:| |pcoef| *10)))))
- (|:| |nfacts| (-644 *6)) (|:| |nlead| (-644 *10))))
- (-5 *1 (-778 *6 *7 *8 *9 *10)) (-5 *3 (-1171 *10)) (-5 *4 (-644 *6))
- (-5 *5 (-644 *10)))))
+ (-2 (|:| |upol| (-1171 *8)) (|:| |Lval| (-644 *8))
+ (|:| |Lfact|
+ (-644 (-2 (|:| -2473 (-1171 *8)) (|:| -2456 (-566)))))
+ (|:| |ctpol| *8)))
+ (-5 *1 (-742 *6 *7 *8 *9)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-644
- (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *3)
- (|:| |polj| *3))))
- (-4 *5 (-793)) (-4 *3 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850))
- (-5 *1 (-451 *4 *5 *6 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1175))
- (-5 *2
- (-2 (|:| |zeros| (-1155 (-225))) (|:| |ones| (-1155 (-225)))
- (|:| |singularities| (-1155 (-225)))))
- (-5 *1 (-105)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1))
- (-4 *1 (-1064 *3 *4 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *1 *1) (-4 *1 (-1138))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-454))))
- ((*1 *1 *1 *1) (-4 *1 (-454)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-5 *1 (-488 *2)) (-4 *2 (-1240 (-566)))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3))))
- ((*1 *1 *1 *1) (-5 *1 (-771)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308))
- (-5 *1 (-916 *3 *4 *5 *2)) (-4 *2 (-949 *5 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *6 *4 *5))
- (-5 *1 (-916 *4 *5 *6 *2)) (-4 *4 (-793)) (-4 *5 (-850))
- (-4 *6 (-308))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *6))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-1171 *7))) (-4 *4 (-793)) (-4 *5 (-850))
- (-4 *6 (-308)) (-5 *2 (-1171 *7)) (-5 *1 (-916 *4 *5 *6 *7))
- (-4 *7 (-949 *6 *4 *5))))
- ((*1 *1 *1 *1) (-5 *1 (-921)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-454)) (-4 *3 (-558)) (-5 *1 (-969 *3 *2))
- (-4 *2 (-1240 *3))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-454)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1002))
- (-4 *2 (-1049)))))
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2 *3 *4 *4)
+ (-12 (-5 *4 (-566)) (-4 *3 (-172)) (-4 *5 (-375 *3))
+ (-4 *6 (-375 *3)) (-5 *1 (-688 *3 *5 *6 *2))
+ (-4 *2 (-687 *3 *5 *6)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-438)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1159 *4)) (-4 *4 (-1049))
- (-5 *3 (-566)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5))
- (-14 *3 (-566)) (-14 *4 (-771)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-858))))
- ((*1 *2 *1) (-12 (-5 *2 (-1103)) (-5 *1 (-965))))
- ((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-989))))
- ((*1 *2 *1) (-12 (-4 *1 (-1010 *2)) (-4 *2 (-1214))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-13 (-1099) (-34))) (-5 *1 (-1139 *2 *3))
- (-4 *3 (-13 (-1099) (-34))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-1049)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
- ((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))
- (-5 *2 (-1035)) (-5 *1 (-748)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-526)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-873 *2 *3)) (-4 *2 (-1214)) (-4 *3 (-1214)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4))))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+ (|partial| -12 (-5 *3 (-771)) (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7))))
- (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1231 (-566))) (-4 *1 (-651 *3)) (-4 *3 (-1214))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-651 *3)) (-4 *3 (-1214)))))
-(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331))
- (-5 *1 (-333)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-103 *3)))))
+ (-12 (-5 *3 (-771)) (-4 *4 (-365)) (-4 *5 (-1240 *4)) (-5 *2 (-1269))
+ (-5 *1 (-40 *4 *5 *6 *7)) (-4 *6 (-1240 (-409 *5))) (-14 *7 *6))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-892 *4)) (-5 *3 (-1 (-112) *5)) (-4 *4 (-1099))
- (-4 *5 (-1214)) (-5 *1 (-890 *4 *5))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-892 *4)) (-5 *3 (-644 (-1 (-112) *5))) (-4 *4 (-1099))
- (-4 *5 (-1214)) (-5 *1 (-890 *4 *5))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *2 (-892 *5)) (-5 *3 (-644 (-1175)))
- (-5 *4 (-1 (-112) (-644 *6))) (-4 *5 (-1099)) (-4 *6 (-1214))
- (-5 *1 (-890 *5 *6))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-112) *5)) (-4 *5 (-1214)) (-4 *4 (-1099))
- (-5 *1 (-937 *4 *2 *5)) (-4 *2 (-432 *4))))
+ (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-890 *4 *3))
+ (-4 *3 (-1214))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *2)
+ (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3))
+ (-4 *3 (-648 *2))))
+ ((*1 *2 *2) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049)))))
+(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
+ (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386)))) (-5 *3 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-748)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-744 *3)) (-4 *3 (-172)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-771)) (-4 *5 (-172))))
+ ((*1 *1 *1 *2 *1 *2)
+ (-12 (-5 *2 (-566)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 *2)
+ (-14 *4 (-771)) (-4 *5 (-172))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 (-1 (-112) *5))) (-4 *5 (-1214)) (-4 *4 (-1099))
- (-5 *1 (-937 *4 *2 *5)) (-4 *2 (-432 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1175)) (-5 *4 (-1 (-112) *5)) (-4 *5 (-1214))
- (-5 *2 (-317 (-566))) (-5 *1 (-938 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1175)) (-5 *4 (-644 (-1 (-112) *5))) (-4 *5 (-1214))
- (-5 *2 (-317 (-566))) (-5 *1 (-938 *5))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-1 (-112) (-644 *6)))
- (-4 *6 (-13 (-432 *5) (-886 *4) (-614 (-892 *4)))) (-4 *4 (-1099))
- (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4))))
- (-5 *1 (-1075 *4 *5 *6)))))
-(((*1 *2 *3)
(-12
- (-5 *3
+ (-5 *2
(-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
(-247 *4 (-409 (-566)))))
- (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112))
+ (-5 *3 (-644 (-864 *4))) (-14 *4 (-644 (-1175))) (-14 *5 (-771))
(-5 *1 (-507 *4 *5)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1035)) (-5 *3 (-1175)) (-5 *1 (-192)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-905 (-566))) (-5 *4 (-566)) (-5 *2 (-689 *4))
- (-5 *1 (-1028 *5)) (-4 *5 (-1049))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1028 *4))
- (-4 *4 (-1049))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-905 (-566)))) (-5 *4 (-566))
- (-5 *2 (-644 (-689 *4))) (-5 *1 (-1028 *5)) (-4 *5 (-1049))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-644 (-566)))) (-5 *2 (-644 (-689 (-566))))
- (-5 *1 (-1028 *4)) (-4 *4 (-1049)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5))
- (-4 *3 (-1240 *4))
- (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566))))
- ((*1 *1 *1) (-5 *1 (-1119))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-1175)) (-5 *6 (-112))
- (-4 *7 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
- (-4 *3 (-13 (-1199) (-959) (-29 *7)))
- (-5 *2
- (-3 (|:| |f1| (-843 *3)) (|:| |f2| (-644 (-843 *3)))
- (|:| |fail| "failed") (|:| |pole| "potentialPole")))
- (-5 *1 (-219 *7 *3)) (-5 *5 (-843 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *2) (-12 (-5 *2 (-317 (-225))) (-5 *1 (-210)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175))
- (-14 *4 *2))))
-(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-527)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-454))))
- ((*1 *1 *1 *1) (-4 *1 (-454))))
-(((*1 *1 *2 *2 *2)
- (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199)))))
- ((*1 *2 *1 *3 *4 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-381)) (-5 *2 (-1269)) (-5 *1 (-1265))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-38 (-409 (-566))))
- (-4 *2 (-172)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-1175)) (-5 *2 (-112))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-114)) (-5 *2 (-112))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1175)) (-5 *2 (-112)) (-5 *1 (-612 *4))
- (-4 *4 (-1099))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-612 *4)) (-4 *4 (-1099))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-835 *3)) (-4 *3 (-1099)) (-5 *2 (-112))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-1099)) (-5 *2 (-112)) (-5 *1 (-887 *5 *3 *4))
- (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *6)) (-4 *6 (-886 *5)) (-4 *5 (-1099))
- (-5 *2 (-112)) (-5 *1 (-887 *5 *6 *4)) (-4 *4 (-614 (-892 *5))))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1175)) (-5 *6 (-644 (-612 *3)))
- (-5 *5 (-612 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *7)))
- (-4 *7 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))))
- (-5 *2 (-2 (|:| -2806 *3) (|:| |coeff| *3)))
- (-5 *1 (-559 *7 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-365) (-848))) (-5 *1 (-181 *3 *2))
- (-4 *2 (-1240 (-169 *3))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-317 *4)) (-4 *4 (-13 (-828) (-1049))) (-5 *2 (-1157))
- (-5 *1 (-826 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-317 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-828) (-1049)))
- (-5 *2 (-1157)) (-5 *1 (-826 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-822)) (-5 *4 (-317 *5)) (-4 *5 (-13 (-828) (-1049)))
- (-5 *2 (-1269)) (-5 *1 (-826 *5))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-822)) (-5 *4 (-317 *6)) (-5 *5 (-112))
- (-4 *6 (-13 (-828) (-1049))) (-5 *2 (-1269)) (-5 *1 (-826 *6))))
- ((*1 *2 *1) (-12 (-4 *1 (-828)) (-5 *2 (-1157))))
- ((*1 *2 *1 *3) (-12 (-4 *1 (-828)) (-5 *3 (-112)) (-5 *2 (-1157))))
- ((*1 *2 *3 *1) (-12 (-4 *1 (-828)) (-5 *3 (-822)) (-5 *2 (-1269))))
- ((*1 *2 *3 *1 *4)
- (-12 (-4 *1 (-828)) (-5 *3 (-822)) (-5 *4 (-112)) (-5 *2 (-1269)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566))))
- ((*1 *1 *1 *1) (-5 *1 (-1119))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1062)))))
-(((*1 *2)
- (-12 (-4 *3 (-1049)) (-5 *2 (-958 (-712 *3 *4))) (-5 *1 (-712 *3 *4))
- (-4 *4 (-1240 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-793))
- (-4 *5 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))) (-4 *6 (-558))
- (-5 *2 (-2 (|:| -3711 (-952 *6)) (|:| -3317 (-952 *6))))
- (-5 *1 (-732 *4 *5 *6 *3)) (-4 *3 (-949 (-409 (-952 *6)) *4 *5)))))
-(((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *5 (-771)) (-4 *6 (-1099)) (-4 *7 (-900 *6))
- (-5 *2 (-689 *7)) (-5 *1 (-692 *6 *7 *3 *4)) (-4 *3 (-375 *7))
- (-4 *4 (-13 (-375 *6) (-10 -7 (-6 -4417)))))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1171 *1)) (-5 *3 (-1175)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-1171 *1)) (-4 *1 (-27))))
- ((*1 *1 *2) (-12 (-5 *2 (-952 *1)) (-4 *1 (-27))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1175)) (-4 *1 (-29 *3)) (-4 *3 (-558))))
- ((*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-558))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1171 *2)) (-5 *4 (-1175)) (-4 *2 (-432 *5))
- (-5 *1 (-32 *5 *2)) (-4 *5 (-558))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1171 *1)) (-5 *3 (-921)) (-4 *1 (-1012))))
- ((*1 *1 *2 *3 *4)
- (|partial| -12 (-5 *2 (-1171 *1)) (-5 *3 (-921)) (-5 *4 (-862))
- (-4 *1 (-1012))))
- ((*1 *1 *2 *3)
- (|partial| -12 (-5 *3 (-921)) (-4 *4 (-13 (-848) (-365)))
- (-4 *1 (-1067 *4 *2)) (-4 *2 (-1240 *4)))))
-(((*1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-1049)))))
-(((*1 *1 *2) (-12 (-5 *2 (-921)) (-4 *1 (-370))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4))
- (-4 *4 (-351))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-850)) (-5 *1 (-713 *2 *3 *4)) (-4 *3 (-1099))
- (-14 *4
- (-1 (-112) (-2 (|:| -2168 *2) (|:| -3250 *3))
- (-2 (|:| -2168 *2) (|:| -3250 *3)))))))
-(((*1 *2 *3 *4 *5 *6 *2 *7 *8)
- (|partial| -12 (-5 *2 (-644 (-1171 *11))) (-5 *3 (-1171 *11))
- (-5 *4 (-644 *10)) (-5 *5 (-644 *8)) (-5 *6 (-644 (-771)))
- (-5 *7 (-1264 (-644 (-1171 *8)))) (-4 *10 (-850))
- (-4 *8 (-308)) (-4 *11 (-949 *8 *9 *10)) (-4 *9 (-793))
- (-5 *1 (-707 *9 *10 *8 *11)))))
-(((*1 *1 *2) (-12 (-5 *2 (-183)) (-5 *1 (-248)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-965))) (-5 *1 (-109))))
- ((*1 *2 *1) (-12 (-5 *2 (-45 (-1157) (-774))) (-5 *1 (-114)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-502 *2)) (-14 *2 (-566))))
- ((*1 *1 *1 *1) (-5 *1 (-1119))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-365)) (-5 *2 (-644 *3)) (-5 *1 (-945 *4 *3))
- (-4 *3 (-1240 *4)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *5 *5 *5 *5 *4 *4 *6 *7)
- (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225)))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-84 FCNF))))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-85 FCNG)))) (-5 *3 (-225))
- (-5 *2 (-1035)) (-5 *1 (-749)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-604 *2 *3)) (-4 *3 (-1214)) (-4 *2 (-1099))
- (-4 *2 (-850)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-1075 *3 *4 *5))) (-4 *3 (-1099))
- (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3))))
- (-4 *5 (-13 (-432 *4) (-886 *3) (-614 (-892 *3))))
- (-5 *1 (-1076 *3 *4 *5)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *3 (-558)))))
-(((*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *4 *4 *3)
- (|partial| -12 (-5 *4 (-612 *3))
- (-4 *3 (-13 (-432 *5) (-27) (-1199)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2 (-2 (|:| -2806 *3) (|:| |coeff| *3)))
- (-5 *1 (-568 *5 *3 *6)) (-4 *6 (-1099)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-566))) (-4 *3 (-1049)) (-5 *1 (-596 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-566))) (-4 *1 (-1224 *3)) (-4 *3 (-1049))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 (-566))) (-4 *1 (-1255 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-4 *1 (-558)) (-5 *2 (-112)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049))
- (-5 *2 (-483 *4 *5)) (-5 *1 (-944 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
- ((*1 *2 *3) (-12 (-5 *3 (-971)) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))))
- (-4 *4 (-1240 *3))
- (-5 *2
- (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-689 *3))))
- (-5 *1 (-352 *3 *4 *5)) (-4 *5 (-411 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-566)) (-4 *4 (-1240 *3))
- (-5 *2
- (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-689 *3))))
- (-5 *1 (-768 *4 *5)) (-4 *5 (-411 *3 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-351)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 *3))
- (-5 *2
- (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-689 *3))))
- (-5 *1 (-985 *4 *3 *5 *6)) (-4 *6 (-724 *3 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-351)) (-4 *3 (-1240 *4)) (-4 *5 (-1240 *3))
- (-5 *2
- (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-689 *3))))
- (-5 *1 (-1273 *4 *3 *5 *6)) (-4 *6 (-411 *3 *5)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175))
- (-14 *4 *2))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 *6)) (-4 *6 (-850)) (-4 *4 (-365)) (-4 *5 (-793))
- (-5 *2
- (-2 (|:| |mval| (-689 *4)) (|:| |invmval| (-689 *4))
- (|:| |genIdeal| (-506 *4 *5 *6 *7))))
- (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6)))))
-(((*1 *2 *3 *3 *4 *5)
- (-12 (-5 *3 (-644 (-689 *6))) (-5 *4 (-112)) (-5 *5 (-566))
- (-5 *2 (-689 *6)) (-5 *1 (-1029 *6)) (-4 *6 (-365)) (-4 *6 (-1049))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 (-689 *4))) (-5 *2 (-689 *4)) (-5 *1 (-1029 *4))
- (-4 *4 (-365)) (-4 *4 (-1049))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-566)) (-5 *2 (-689 *5))
- (-5 *1 (-1029 *5)) (-4 *5 (-365)) (-4 *5 (-1049)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-612 *4)) (-5 *1 (-611 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1099)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
- ((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *1 *2 *2)
- (-12 (-5 *2 (-771)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5))
- (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1262 *3)) (-4 *3 (-23)) (-4 *3 (-1214)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-1177 (-409 (-566))))
- (-5 *1 (-190)))))
-(((*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-1157)))))
-(((*1 *1) (-5 *1 (-141))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-877 *2)) (-4 *2 (-1214))))
- ((*1 *1 *2 *2 *2) (-12 (-5 *1 (-879 *2)) (-4 *2 (-1214))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1099)) (-5 *1 (-964 *2 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *1 *1) (-4 *1 (-1138))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1) (-5 *1 (-862))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-792)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566)))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-1062)))))
-(((*1 *1) (-5 *1 (-331))))
-(((*1 *2)
- (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
- (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
- (-5 *1 (-1071 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
- (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
- (-5 *1 (-1107 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1038 (-566))) (-4 *3 (-558)) (-5 *1 (-32 *3 *2))
- (-4 *2 (-432 *3))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-1171 *4)) (-5 *1 (-165 *3 *4))
- (-4 *3 (-166 *4))))
- ((*1 *1 *1) (-12 (-4 *1 (-1049)) (-4 *1 (-303))))
- ((*1 *2) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-1171 *3))))
- ((*1 *2) (-12 (-4 *1 (-724 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1067 *3 *2)) (-4 *3 (-13 (-848) (-365)))
- (-4 *2 (-1240 *3)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-151 *2))
- (-4 *2 (-1214)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4 *4 *5 *6 *7)
- (-12 (-5 *5 (-1175))
- (-5 *6
- (-1
- (-3
- (-2 (|:| |mainpart| *4)
- (|:| |limitedlogs|
- (-644 (-2 (|:| |coeff| *4) (|:| |logand| *4)))))
- "failed")
- *4 (-644 *4)))
- (-5 *7
- (-1 (-3 (-2 (|:| -2806 *4) (|:| |coeff| *4)) "failed") *4 *4))
- (-4 *4 (-13 (-1199) (-27) (-432 *8)))
- (-4 *8 (-13 (-454) (-147) (-1038 *3) (-639 *3))) (-5 *3 (-566))
- (-5 *2 (-2 (|:| |ans| *4) (|:| -4368 *4) (|:| |sol?| (-112))))
- (-5 *1 (-1013 *8 *4)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-754)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926))))
- ((*1 *2 *1) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-365)) (-4 *3 (-1049))
- (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-852 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-365)) (-4 *5 (-1049))
- (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-853 *5 *3))
- (-4 *3 (-852 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1157)) (-5 *2 (-214 (-504))) (-5 *1 (-837)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-308)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
- (-5 *2 (-2 (|:| |Hermite| *3) (|:| |eqMat| *3)))
- (-5 *1 (-1123 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-245 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-331)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365))
- (-5 *2 (-2 (|:| |answer| *3) (|:| |polypart| *3)))
- (-5 *1 (-576 *5 *3)))))
+ (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 *6)) (-4 *5 (-1218)) (-4 *6 (-1240 *5))
- (-5 *2 (-2 (|:| -3250 (-771)) (|:| -3157 *3) (|:| |radicand| *6)))
- (-5 *1 (-148 *5 *6 *7)) (-5 *4 (-771)) (-4 *7 (-1240 *3)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1099))
- (-5 *2 (-2 (|:| -3157 (-566)) (|:| |var| (-612 *1))))
- (-4 *1 (-432 *3)))))
+ (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1240 *6))
+ (-4 *6 (-13 (-27) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566))))
+ (-4 *8 (-1240 (-409 *7))) (-5 *2 (-587 *3))
+ (-5 *1 (-554 *5 *6 *7 *8 *3)) (-4 *3 (-344 *6 *7 *8)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-612 *1)) (-4 *1 (-303)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1240 *5))
- (-5 *1 (-727 *5 *2)) (-4 *5 (-365)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-695 *3)) (-4 *3 (-1099))
- (-5 *2 (-644 (-2 (|:| -2818 *3) (|:| -4044 (-771))))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-308))
- (-5 *2 (-771)) (-5 *1 (-457 *5 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
- ((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1049)) (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-4 *3 (-1099))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *4 (-558))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| -4256 *4))) (-5 *1 (-969 *4 *3))
- (-4 *3 (-1240 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-2 (|:| |totdeg| (-771)) (|:| -3589 *4))) (-5 *5 (-771))
- (-4 *4 (-949 *6 *7 *8)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-5 *2
- (-2 (|:| |lcmfij| *7) (|:| |totdeg| *5) (|:| |poli| *4)
- (|:| |polj| *4)))
- (-5 *1 (-451 *6 *7 *8 *4)))))
-(((*1 *1 *1 *1 *2 *3)
- (-12 (-5 *2 (-943 *5)) (-5 *3 (-771)) (-4 *5 (-1049))
- (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5 *4 *4)) (-4 *4 (-1099)) (-4 *5 (-1099))
- (-5 *2 (-1 *5 *4)) (-5 *1 (-683 *4 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1171 (-566))) (-5 *2 (-566)) (-5 *1 (-942)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-612 *5))) (-4 *4 (-1099)) (-5 *2 (-612 *5))
- (-5 *1 (-575 *4 *5)) (-4 *5 (-432 *4)))))
+ (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-317 (-566))) (|:| -2382 (-317 (-381)))
+ (-3 (|:| I (-317 (-566))) (|:| -2386 (-317 (-381)))
(|:| CF (-317 (-169 (-381)))) (|:| |switch| (-1174))))
(-5 *1 (-1174)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))))
-(((*1 *2 *1) (-12 (-5 *2 (-822)) (-5 *1 (-821)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-119 *2)) (-4 *2 (-1214)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-91 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-769))
- (-5 *2
- (-2 (|:| -2092 (-381)) (|:| -2628 (-1157))
- (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))))
- (-5 *1 (-567))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-769)) (-5 *4 (-1062))
- (-5 *2
- (-2 (|:| -2092 (-381)) (|:| -2628 (-1157))
- (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))))
- (-5 *1 (-567))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-787)) (-5 *3 (-1062))
- (-5 *4
- (-2 (|:| |fn| (-317 (-225)))
- (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2
- (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))
- (|:| |extra| (-1035))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-787)) (-5 *3 (-1062))
- (-5 *4
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
+ (-12 (-5 *3 (-1157)) (-4 *4 (-13 (-308) (-147)))
+ (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793))
(-5 *2
- (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))
- (|:| |extra| (-1035))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-800)) (-5 *3 (-1062))
- (-5 *4
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))))))
+ (-644
+ (-2 (|:| |eqzro| (-644 *7)) (|:| |neqzro| (-644 *7))
+ (|:| |wcond| (-644 (-952 *4)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1264 (-409 (-952 *4))))
+ (|:| -1575 (-644 (-1264 (-409 (-952 *4))))))))))
+ (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5))
+ (-4 *3 (-1240 *4))
+ (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-4 *5 (-992 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-142 *4 *5 *3))
+ (-4 *3 (-375 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-808))
- (-5 *2
- (-2 (|:| -2092 (-381)) (|:| -2628 (-1157))
- (|:| |explanations| (-644 (-1157)))))
- (-5 *1 (-805))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-808)) (-5 *4 (-1062))
- (-5 *2
- (-2 (|:| -2092 (-381)) (|:| -2628 (-1157))
- (|:| |explanations| (-644 (-1157)))))
- (-5 *1 (-805))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-839)) (-5 *3 (-1062))
- (-5 *4
- (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))
- (-5 *2 (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-839)) (-5 *3 (-1062))
- (-5 *4
- (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225)))
- (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225))))
- (|:| |ub| (-644 (-843 (-225))))))
- (-5 *2 (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))))))
+ (-12 (-4 *4 (-558)) (-4 *5 (-992 *4))
+ (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
+ (-5 *1 (-505 *4 *5 *6 *3)) (-4 *6 (-375 *4)) (-4 *3 (-375 *5))))
((*1 *2 *3)
- (-12 (-5 *3 (-841))
- (-5 *2
- (-2 (|:| -2092 (-381)) (|:| -2628 (-1157))
- (|:| |explanations| (-644 (-1157)))))
- (-5 *1 (-840))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-841)) (-5 *4 (-1062))
- (-5 *2
- (-2 (|:| -2092 (-381)) (|:| -2628 (-1157))
- (|:| |explanations| (-644 (-1157)))))
- (-5 *1 (-840))))
+ (-12 (-5 *3 (-689 *5)) (-4 *5 (-992 *4)) (-4 *4 (-558))
+ (-5 *2 (-2 (|:| |num| (-689 *4)) (|:| |den| *4)))
+ (-5 *1 (-693 *4 *5))))
((*1 *2 *3 *4)
- (-12 (-4 *1 (-895)) (-5 *3 (-1062))
- (-5 *4
- (-2 (|:| |pde| (-644 (-317 (-225))))
- (|:| |constraints|
- (-644
- (-2 (|:| |start| (-225)) (|:| |finish| (-225))
- (|:| |grid| (-771)) (|:| |boundaryType| (-566))
- (|:| |dStart| (-689 (-225))) (|:| |dFinish| (-689 (-225))))))
- (|:| |f| (-644 (-644 (-317 (-225))))) (|:| |st| (-1157))
- (|:| |tol| (-225))))
- (-5 *2 (-2 (|:| -2092 (-381)) (|:| |explanations| (-1157))))))
+ (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566)))))
+ (-4 *6 (-1240 *5))
+ (-5 *2 (-2 (|:| -4257 *7) (|:| |rh| (-644 (-409 *6)))))
+ (-5 *1 (-807 *5 *6 *7 *3)) (-5 *4 (-644 (-409 *6)))
+ (-4 *7 (-656 *6)) (-4 *3 (-656 (-409 *6)))))
((*1 *2 *3)
- (-12 (-5 *3 (-898))
+ (-12 (-4 *4 (-558)) (-4 *5 (-992 *4))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1233 *4 *5 *3))
+ (-4 *3 (-1240 *5)))))
+(((*1 *2 *3)
+ (-12 (-14 *4 (-644 (-1175))) (-4 *5 (-454))
(-5 *2
- (-2 (|:| -2092 (-381)) (|:| -2628 (-1157))
- (|:| |explanations| (-644 (-1157)))))
- (-5 *1 (-897))))
+ (-2 (|:| |glbase| (-644 (-247 *4 *5))) (|:| |glval| (-644 (-566)))))
+ (-5 *1 (-631 *4 *5)) (-5 *3 (-644 (-247 *4 *5))))))
+(((*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049))
+ (-14 *4 (-644 (-1175)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-566)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850)))
+ (-14 *4 (-644 (-1175)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-254 *4 *3 *5 *6)) (-4 *4 (-1049)) (-4 *3 (-850))
+ (-4 *5 (-267 *3)) (-4 *6 (-793)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-276))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-898)) (-5 *4 (-1062))
- (-5 *2
- (-2 (|:| -2092 (-381)) (|:| -2628 (-1157))
- (|:| |explanations| (-644 (-1157)))))
- (-5 *1 (-897)))))
-(((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
-(((*1 *2 *3 *4 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-169 (-225)))) (-5 *2 (-1035))
- (-5 *1 (-756)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1175)) (-5 *2 (-1 (-1171 (-952 *4)) (-952 *4)))
- (-5 *1 (-1272 *4)) (-4 *4 (-365)))))
-(((*1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-1197)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-112))))
+ (-12 (-5 *3 (-1171 *8)) (-5 *4 (-644 *6)) (-4 *6 (-850))
+ (-4 *8 (-949 *7 *5 *6)) (-4 *5 (-793)) (-4 *7 (-1049))
+ (-5 *2 (-644 (-771))) (-5 *1 (-322 *5 *6 *7 *8))))
+ ((*1 *2 *1) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-921))))
((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
+ (-12 (-4 *1 (-376 *3 *4)) (-4 *3 (-850)) (-4 *4 (-172))
+ (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-4 *1 (-472 *3 *2)) (-4 *3 (-172)) (-4 *2 (-23))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-558)) (-5 *2 (-566)) (-5 *1 (-623 *3 *4))
+ (-4 *4 (-1240 *3))))
+ ((*1 *2 *1) (-12 (-4 *1 (-708 *3)) (-4 *3 (-1049)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-4 *1 (-852 *3)) (-4 *3 (-1049)) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-904 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 *6)) (-4 *1 (-949 *4 *5 *6)) (-4 *4 (-1049))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-771)))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *1 (-949 *4 *5 *3)) (-4 *4 (-1049)) (-4 *5 (-793))
+ (-4 *3 (-850)) (-5 *2 (-771))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-973 *3 *2 *4)) (-4 *3 (-1049)) (-4 *4 (-850))
+ (-4 *2 (-792))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-771))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1226 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1255 *3))
+ (-5 *2 (-566))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1247 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1224 *3))
+ (-5 *2 (-409 (-566)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-833 (-921)))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1285 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
+ (-5 *2 (-771)))))
+(((*1 *1 *1) (-4 *1 (-1143))))
(((*1 *2 *3)
- (-12 (|has| *2 (-6 (-4419 "*"))) (-4 *5 (-375 *2)) (-4 *6 (-375 *2))
- (-4 *2 (-1049)) (-5 *1 (-104 *2 *3 *4 *5 *6)) (-4 *3 (-1240 *2))
- (-4 *4 (-687 *2 *5 *6)))))
+ (-12 (-5 *3 (-295 (-952 (-566))))
+ (-5 *2
+ (-2 (|:| |varOrder| (-644 (-1175)))
+ (|:| |inhom| (-3 (-644 (-1264 (-771))) "failed"))
+ (|:| |hom| (-644 (-1264 (-771))))))
+ (-5 *1 (-236)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-351)) (-5 *2 (-420 *3)) (-5 *1 (-216 *4 *3))
- (-4 *3 (-1240 *4))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-420 *3)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3))
- (-4 *3 (-1240 (-566)))))
+ (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-532 *3)) (-4 *3 (-13 (-726) (-25))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-531))))
+ ((*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-531)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-771)) (-4 *4 (-13 (-1049) (-717 (-409 (-566)))))
+ (-4 *5 (-850)) (-5 *1 (-1280 *4 *5 *2)) (-4 *2 (-1285 *5 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *3 (-644 (-264)))
+ (-5 *1 (-262))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *1 (-264))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-771))) (-5 *2 (-420 *3)) (-5 *1 (-444 *3))
- (-4 *3 (-1240 (-566)))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-644 (-771))) (-5 *5 (-771)) (-5 *2 (-420 *3))
- (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566)))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-771)) (-5 *2 (-420 *3)) (-5 *1 (-444 *3))
- (-4 *3 (-1240 (-566)))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-420 *3)) (-5 *1 (-1007 *3))
- (-4 *3 (-1240 (-409 (-566))))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-420 *3)) (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-829)) (-5 *3 (-1157)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1178))))
- ((*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178))))
- ((*1 *2 *3 *1) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))))
-(((*1 *2 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-566))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035))
- (-5 *1 (-748)))))
-(((*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-436))
+ (-12 (-5 *4 (-644 (-483 *5 *6))) (-5 *3 (-483 *5 *6))
+ (-14 *5 (-644 (-1175))) (-4 *6 (-454)) (-5 *2 (-1264 *6))
+ (-5 *1 (-631 *5 *6)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2))
+ (-4 *2 (-432 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1091 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558))
+ (-5 *1 (-158 *4 *2))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1091 *1)) (-4 *1 (-160))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-4 *6 (-1240 *9)) (-4 *7 (-793)) (-4 *8 (-850)) (-4 *9 (-308))
+ (-4 *10 (-949 *9 *7 *8))
(-5 *2
- (-644
- (-3 (|:| -2628 (-1175))
- (|:| -3121 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566)))))))))
- (-5 *1 (-1179)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-752)))))
-(((*1 *1 *2 *2) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1157)) (-5 *1 (-989))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1093 *4)) (-4 *4 (-1214))
- (-5 *1 (-1091 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566)))))
- (-4 *5 (-1240 *4))
- (-5 *2 (-644 (-2 (|:| |deg| (-771)) (|:| -3525 *5))))
- (-5 *1 (-809 *4 *5 *3 *6)) (-4 *3 (-656 *5))
- (-4 *6 (-656 (-409 *5))))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *1 *1 *1) (-4 *1 (-1138))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))
- (-5 *2 (-644 (-409 (-566)))) (-5 *1 (-1020 *4))
- (-4 *4 (-1240 (-566))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-3 (-112) "failed")) (-4 *3 (-454)) (-4 *4 (-850))
- (-4 *5 (-793)) (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6))
- (-5 *2 (-644 (-2 (|:| -1673 *1) (|:| -3509 (-644 *7)))))
- (-5 *3 (-644 *7)) (-4 *1 (-1207 *4 *5 *6 *7)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *4)
- (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-169 (-225))))
- (-5 *2 (-1035)) (-5 *1 (-754)))))
+ (-2 (|:| |deter| (-644 (-1171 *10)))
+ (|:| |dterm|
+ (-644 (-644 (-2 (|:| -2342 (-771)) (|:| |pcoef| *10)))))
+ (|:| |nfacts| (-644 *6)) (|:| |nlead| (-644 *10))))
+ (-5 *1 (-778 *6 *7 *8 *9 *10)) (-5 *3 (-1171 *10)) (-5 *4 (-644 *6))
+ (-5 *5 (-644 *10)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-4 *6 (-1064 *3 *4 *5)) (-5 *1 (-624 *3 *4 *5 *6 *7 *2))
+ (-4 *7 (-1070 *3 *4 *5 *6)) (-4 *2 (-1108 *3 *4 *5 *6)))))
(((*1 *2 *2 *3 *3)
(-12 (-5 *3 (-409 *5)) (-4 *4 (-1218)) (-4 *5 (-1240 *4))
(-5 *1 (-148 *4 *5 *2)) (-4 *2 (-1240 *3))))
@@ -13606,422 +13688,208 @@
((*1 *2 *1 *3)
(-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
(|has| *3 (-15 ** (*3 *3 *4))) (-5 *2 (-1155 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-819 *3)) (-4 *3 (-850)) (-5 *1 (-672 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351))
- (-5 *2 (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119))))))
- (-5 *1 (-348 *4)))))
-(((*1 *2 *3) (-12 (-5 *2 (-114)) (-5 *1 (-113 *3)) (-4 *3 (-1099)))))
-(((*1 *2)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-581)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-419 *4)))))
-(((*1 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-370)) (-4 *2 (-365))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4))
- (-4 *4 (-351)))))
-(((*1 *1)
- (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-171)))))
-(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1157)) (-5 *1 (-786)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4)))
- (-5 *2 (-2 (|:| |num| (-1264 *4)) (|:| |den| *4))))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-13 (-1038 (-566)) (-639 (-566)) (-454)))
- (-5 *2
- (-2
- (|:| |%term|
- (-2 (|:| |%coef| (-1249 *4 *5 *6))
- (|:| |%expon| (-320 *4 *5 *6))
- (|:| |%expTerms|
- (-644 (-2 (|:| |k| (-409 (-566))) (|:| |c| *4))))))
- (|:| |%type| (-1157))))
- (-5 *1 (-1250 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1199) (-432 *3)))
- (-14 *5 (-1175)) (-14 *6 *4))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-420 (-1171 *1))) (-5 *1 (-317 *4)) (-5 *3 (-1171 *1))
- (-4 *4 (-454)) (-4 *4 (-558)) (-4 *4 (-1099))))
- ((*1 *2 *3)
- (-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-295 *3))) (-5 *1 (-295 *3)) (-4 *3 (-558))
- (-4 *3 (-1214)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-771))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-771)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-365) (-1199) (-1002))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
-(((*1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-470)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119))))))
+ (-4 *4 (-351)) (-5 *2 (-1269)) (-5 *1 (-530 *4)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1157)) (-5 *2 (-644 (-1180))) (-5 *1 (-1135)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2))
- (-4 *3 (-558)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-1186 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))))
-(((*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926))))
- ((*1 *1 *1 *2 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927))))
- ((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *2 (-771))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-771)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
- (-4 *4 (-1049)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214))
- (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1191 *4 *5))
- (-4 *4 (-1099)) (-4 *5 (-1099)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-454)) (-4 *4 (-820))
- (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331))
+ (-5 *1 (-333))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1175)) (-5 *4 (-1091 (-952 (-566)))) (-5 *2 (-331))
+ (-5 *1 (-333))))
+ ((*1 *1 *2 *2 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-675 *3)) (-4 *3 (-1049))
+ (-4 *3 (-1099)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-786)))))
-(((*1 *1 *1) (-5 *1 (-1062))))
-(((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| -1706 (-114)) (|:| |arg| (-644 (-892 *3)))))
- (-5 *1 (-892 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *2 (-644 (-892 *4)))
- (-5 *1 (-892 *4)) (-4 *4 (-1099)))))
+ (-12 (-4 *4 (-365)) (-4 *4 (-558)) (-4 *5 (-1240 *4))
+ (-5 *2 (-2 (|:| -2000 (-623 *4 *5)) (|:| -4284 (-409 *5))))
+ (-5 *1 (-623 *4 *5)) (-5 *3 (-409 *5))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4))
+ (-14 *3 (-921)) (-4 *4 (-1049))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-454)) (-4 *3 (-1049))
+ (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
+ (-4 *1 (-1240 *3)))))
+(((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-644 *10)) (-5 *5 (-112)) (-4 *10 (-1070 *6 *7 *8 *9))
+ (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-4 *9 (-1064 *6 *7 *8))
+ (-5 *2
+ (-644
+ (-2 (|:| -4257 (-644 *9)) (|:| -2327 *10) (|:| |ineq| (-644 *9)))))
+ (-5 *1 (-988 *6 *7 *8 *9 *10)) (-5 *3 (-644 *9))))
+ ((*1 *2 *3 *4 *5 *5)
+ (-12 (-5 *4 (-644 *10)) (-5 *5 (-112)) (-4 *10 (-1070 *6 *7 *8 *9))
+ (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-4 *9 (-1064 *6 *7 *8))
+ (-5 *2
+ (-644
+ (-2 (|:| -4257 (-644 *9)) (|:| -2327 *10) (|:| |ineq| (-644 *9)))))
+ (-5 *1 (-1106 *6 *7 *8 *9 *10)) (-5 *3 (-644 *9)))))
(((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
-(((*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
- ((*1 *1 *1 *1) (-4 *1 (-475)))
- ((*1 *1 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
- ((*1 *2 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-883))))
- ((*1 *1 *1) (-5 *1 (-971)))
- ((*1 *1 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))))
-(((*1 *2 *2 *3 *3)
- (|partial| -12 (-5 *3 (-1175))
- (-4 *4 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-577 *4 *2))
- (-4 *2 (-13 (-1199) (-959) (-1138) (-29 *4))))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-860)) (-5 *2 (-691 (-129))) (-5 *3 (-129)))))
-(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-1157)) (-5 *1 (-786)))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1157)) (-4 *1 (-391)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1240 *2)) (-4 *2 (-1218)) (-5 *1 (-148 *2 *4 *3))
- (-4 *3 (-1240 (-409 *4))))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-112))
- (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-4 *1 (-1240 *4)) (-4 *4 (-1049))
- (-5 *2 (-1264 *4)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-566))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035))
- (-5 *1 (-748)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1159 *4)) (-4 *4 (-1049))
+ (-5 *3 (-566)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1288 *3 *4)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-172))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-388 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-819 *3)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-644 (-483 *3 *4))) (-14 *3 (-644 (-1175)))
- (-4 *4 (-454)) (-5 *1 (-631 *3 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-792)) (-4 *2 (-1049))))
- ((*1 *2 *1 *1)
- (-12 (-4 *2 (-1049)) (-5 *1 (-50 *2 *3)) (-14 *3 (-644 (-1175)))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-644 (-921))) (-4 *2 (-365)) (-5 *1 (-152 *4 *2 *5))
- (-14 *4 (-921)) (-14 *5 (-993 *4 *2))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-317 *3)) (-5 *1 (-223 *3 *4))
- (-4 *3 (-13 (-1049) (-850))) (-14 *4 (-644 (-1175)))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-324 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-131))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-384 *2 *3)) (-4 *3 (-1099)) (-4 *2 (-1049))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-4 *2 (-558)) (-5 *1 (-623 *2 *4))
- (-4 *4 (-1240 *2))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-708 *2)) (-4 *2 (-1049))))
- ((*1 *2 *1 *3)
- (-12 (-4 *2 (-1049)) (-5 *1 (-735 *2 *3)) (-4 *3 (-726))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 *5)) (-5 *3 (-644 (-771))) (-4 *1 (-740 *4 *5))
- (-4 *4 (-1049)) (-4 *5 (-850))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *1 (-740 *4 *2)) (-4 *4 (-1049))
- (-4 *2 (-850))))
- ((*1 *2 *1 *3) (-12 (-5 *3 (-771)) (-4 *1 (-852 *2)) (-4 *2 (-1049))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 *6)) (-5 *3 (-644 (-771))) (-4 *1 (-949 *4 *5 *6))
- (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *6 (-850))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *1 (-949 *4 *5 *2)) (-4 *4 (-1049))
- (-4 *5 (-793)) (-4 *2 (-850))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-4 *2 (-949 *4 (-533 *5) *5))
- (-5 *1 (-1125 *4 *5 *2)) (-4 *4 (-1049)) (-4 *5 (-850))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-5 *2 (-952 *4)) (-5 *1 (-1208 *4))
- (-4 *4 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-862)) (-5 *1 (-52)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-689 (-566))) (-5 *3 (-644 (-566))) (-5 *1 (-1109)))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1))
- (-4 *1 (-1064 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)) (-5 *2 (-644 *6))
- (-5 *1 (-987 *3 *4 *5 *6)) (-4 *6 (-949 *3 *5 *4)))))
-(((*1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-1040)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454))
- (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6)))
- (-5 *1 (-628 *5 *6)))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *3 (-921)) (-5 *1 (-444 *2))
- (-4 *2 (-1240 (-566)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-921)) (-5 *4 (-771)) (-5 *1 (-444 *2))
- (-4 *2 (-1240 (-566)))))
- ((*1 *2 *3 *2 *4)
- (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *1 (-444 *2))
- (-4 *2 (-1240 (-566)))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *5 (-771))
- (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566)))))
- ((*1 *2 *3 *2 *4 *5 *6)
- (|partial| -12 (-5 *3 (-921)) (-5 *4 (-644 (-771))) (-5 *5 (-771))
- (-5 *6 (-112)) (-5 *1 (-444 *2)) (-4 *2 (-1240 (-566)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-420 *2)) (-4 *2 (-1240 *5))
- (-5 *1 (-446 *5 *2)) (-4 *5 (-1049)))))
-(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-337 *3 *4 *5 *6)) (-4 *3 (-365)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-4 *6 (-344 *3 *4 *5)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-470))))
- ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1265))))
- ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1266)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))))
-(((*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-756)))))
-(((*1 *2 *3 *4 *5 *4)
- (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-112))
- (-5 *2 (-1035)) (-5 *1 (-745)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))))
-(((*1 *2)
- (-12 (-4 *4 (-365)) (-5 *2 (-921)) (-5 *1 (-329 *3 *4))
- (-4 *3 (-330 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-365)) (-5 *2 (-833 (-921))) (-5 *1 (-329 *3 *4))
- (-4 *3 (-330 *4))))
- ((*1 *2) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-921))))
- ((*1 *2)
- (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-833 (-921))))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-508)) (-5 *3 (-644 (-965))) (-5 *1 (-292)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-614 (-892 (-566))))
- (-4 *5 (-886 (-566)))
- (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566))))
- (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
- (-5 *1 (-569 *5 *3)) (-4 *3 (-629))
- (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
- ((*1 *2 *2 *3 *4 *4)
- (|partial| -12 (-5 *3 (-1175)) (-5 *4 (-843 *2)) (-4 *2 (-1138))
- (-4 *2 (-13 (-27) (-1199) (-432 *5)))
- (-4 *5 (-614 (-892 (-566)))) (-4 *5 (-886 (-566)))
- (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566))))
- (-5 *1 (-569 *5 *2)))))
-(((*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-128)))))
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035))
+ (-5 *1 (-755)))))
+(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-419 *4)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-1 (-225) (-225) (-225)))
- (-5 *4 (-1 (-225) (-225) (-225) (-225)))
- (-5 *2 (-1 (-943 (-225)) (-225) (-225))) (-5 *1 (-697)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1049)) (-5 *2 (-1264 *3)) (-5 *1 (-712 *3 *4))
- (-4 *4 (-1240 *3)))))
+ (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-5 *2 (-1269))
+ (-5 *1 (-1215 *4))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *4)) (-4 *4 (-1099)) (-5 *2 (-1269))
+ (-5 *1 (-1215 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-644 (-566))) (-5 *2 (-771)) (-5 *1 (-591)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *3 (-644 (-566)))
+ (-5 *1 (-883)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112)))))
(((*1 *1 *2 *3)
(-12 (-5 *3 (-644 (-1175))) (-5 *2 (-1175)) (-5 *1 (-331)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-644 (-317 (-225)))) (-5 *3 (-225)) (-5 *2 (-112))
- (-5 *1 (-210)))))
-(((*1 *2)
- (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-419 *3)))))
-(((*1 *2 *1 *1)
+(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-755)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-952 (-225))) (-5 *2 (-317 (-381))) (-5 *1 (-306)))))
+(((*1 *2 *3 *2)
(-12
(-5 *2
- (-2 (|:| -3157 *3) (|:| |gap| (-771)) (|:| -2760 (-782 *3))
- (|:| -1644 (-782 *3))))
- (-5 *1 (-782 *3)) (-4 *3 (-1049))))
- ((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850))
- (-5 *2
- (-2 (|:| -3157 *1) (|:| |gap| (-771)) (|:| -2760 *1)
- (|:| -1644 *1)))
- (-4 *1 (-1064 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-644
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *3)
+ (|:| |polj| *3))))
+ (-4 *5 (-793)) (-4 *3 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850))
+ (-5 *1 (-451 *4 *5 *6 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-332 *3)) (-4 *3 (-850)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519)))))
+(((*1 *1 *1) (-5 *1 (-1062))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *2 (-1157)) (-4 *1 (-391)))))
+(((*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-169 *5)) (-5 *1 (-600 *4 *5 *3))
+ (-4 *5 (-13 (-432 *4) (-1002) (-1199)))
+ (-4 *3 (-13 (-432 (-169 *4)) (-1002) (-1199))))))
+(((*1 *2 *3 *3 *3 *4 *5)
+ (-12 (-5 *5 (-1 *3 *3)) (-4 *3 (-1240 *6))
+ (-4 *6 (-13 (-365) (-147) (-1038 *4))) (-5 *4 (-566))
(-5 *2
- (-2 (|:| -3157 *1) (|:| |gap| (-771)) (|:| -2760 *1)
- (|:| -1644 *1)))
- (-4 *1 (-1064 *3 *4 *5)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1101 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1101 *3)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1264 *4)) (-4 *4 (-419 *3)) (-4 *3 (-308))
- (-4 *3 (-558)) (-5 *1 (-43 *3 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-4 *4 (-365)) (-5 *2 (-1264 *1))
- (-4 *1 (-330 *4))))
- ((*1 *2) (-12 (-4 *3 (-365)) (-5 *2 (-1264 *1)) (-4 *1 (-330 *3))))
- ((*1 *2)
- (-12 (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-1264 *1))
- (-4 *1 (-411 *3 *4))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4))
- (-5 *2 (-1264 *6)) (-5 *1 (-415 *3 *4 *5 *6))
- (-4 *6 (-13 (-411 *4 *5) (-1038 *4)))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4))
- (-5 *2 (-1264 *6)) (-5 *1 (-416 *3 *4 *5 *6 *7))
- (-4 *6 (-411 *4 *5)) (-14 *7 *2)))
- ((*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1264 *1)) (-4 *1 (-419 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1264 (-1264 *4))) (-5 *1 (-530 *4))
- (-4 *4 (-351)))))
-(((*1 *2)
- (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-419 *3)))))
+ (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
+ (|:| -4257
+ (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
+ (|:| |beta| *3)))))
+ (-5 *1 (-1015 *6 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2))
- (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3))))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566))))
- (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *4))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-1203 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))))
+ (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
+ (-5 *1 (-176 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
+(((*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-489)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-192))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-301))))
+ (-12
+ (-5 *3
+ (-2 (|:| -3245 (-381)) (|:| -2639 (-1157))
+ (|:| |explanations| (-644 (-1157)))))
+ (-5 *2 (-1035)) (-5 *1 (-306))))
((*1 *2 *3)
- (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-306)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-561)))))
-(((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
+ (-2 (|:| -3245 (-381)) (|:| -2639 (-1157))
+ (|:| |explanations| (-644 (-1157))) (|:| |extra| (-1035))))
+ (-5 *2 (-1035)) (-5 *1 (-306)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1175))
(-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 (-192)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-1175)) (-5 *2 (-112))))
- ((*1 *2 *1 *1) (-12 (-4 *1 (-303)) (-5 *2 (-112)))))
+ (-2 (|:| |zeros| (-1155 (-225))) (|:| |ones| (-1155 (-225)))
+ (|:| |singularities| (-1155 (-225)))))
+ (-5 *1 (-105)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-1131 *4 *2))
+ (-4 *2 (-13 (-604 (-566) *4) (-10 -7 (-6 -4414) (-6 -4415))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-850)) (-4 *3 (-1214)) (-5 *1 (-1131 *3 *2))
+ (-4 *2 (-13 (-604 (-566) *3) (-10 -7 (-6 -4414) (-6 -4415)))))))
+(((*1 *2)
+ (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5)))
+ (-5 *2 (-771)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-771))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-132)) (-5 *1 (-1083 *2))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-566) *2 *2)) (-4 *2 (-132)) (-5 *1 (-1083 *2)))))
+(((*1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-771)) (-5 *1 (-563)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-566)) (-5 *1 (-488 *4))
+ (-4 *4 (-1240 *2)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |cd| (-1157)) (|:| -2628 (-1157))))
- (-5 *1 (-822)))))
-(((*1 *1) (-12 (-4 *1 (-1045 *2)) (-4 *2 (-23)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-308) (-147))) (-4 *4 (-13 (-850) (-614 (-1175))))
- (-4 *5 (-793)) (-5 *1 (-924 *3 *4 *5 *2)) (-4 *2 (-949 *3 *5 *4)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-755)))))
+ (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1))
+ (-4 *1 (-1064 *3 *4 *5)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-1175))) (-5 *3 (-52)) (-5 *1 (-892 *4))
+ (-4 *4 (-1099)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3)))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
- (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *6 (-225))
- (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))))
+ (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-470))))
+ ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1265))))
+ ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-1266)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1175)) (-5 *5 (-1093 (-225))) (-5 *2 (-927))
+ (-5 *1 (-925 *3)) (-4 *3 (-614 (-538)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175)) (-5 *2 (-927)) (-5 *1 (-925 *3))
+ (-4 *3 (-614 (-538)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-927))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 (-225) (-225))) (-5 *3 (-1093 (-225)))
+ (-5 *1 (-927)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-675 *3)) (-4 *3 (-1049))
+ (-4 *3 (-1099)))))
+(((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-943 (-225))) (-5 *4 (-874)) (-5 *5 (-921))
+ (-5 *2 (-1269)) (-5 *1 (-470))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-943 (-225))) (-5 *2 (-1269)) (-5 *1 (-470))))
+ ((*1 *2 *1 *3 *4 *4 *5)
+ (-12 (-5 *3 (-644 (-943 (-225)))) (-5 *4 (-874)) (-5 *5 (-921))
+ (-5 *2 (-1269)) (-5 *1 (-470)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-558) (-147)))
- (-5 *2 (-2 (|:| -4357 *3) (|:| -4368 *3))) (-5 *1 (-1234 *4 *3))
- (-4 *3 (-1240 *4)))))
-(((*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566))))
- ((*1 *1 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214))))
- ((*1 *1 *1) (-4 *1 (-869 *2)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-973 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-792))
- (-4 *4 (-850)))))
-(((*1 *2) (-12 (-5 *2 (-130)) (-5 *1 (-1184)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-756)))))
-(((*1 *2 *3 *4 *4 *3)
+ (-12 (-4 *4 (-1049)) (-5 *2 (-112)) (-5 *1 (-446 *4 *3))
+ (-4 *3 (-1240 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
(-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-751)))))
-(((*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1179)))))
-(((*1 *2 *3 *4 *3 *5 *3)
- (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566))
- (-5 *2 (-1035)) (-5 *1 (-754)))))
+ (-5 *1 (-752)))))
(((*1 *1 *2 *3)
(-12 (-4 *1 (-384 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1099))))
((*1 *2 *3 *4)
@@ -14030,350 +13898,115 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-819 *4)) (-4 *4 (-850)) (-4 *1 (-1281 *4 *3))
(-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-4 *1 (-835 *3)) (-4 *3 (-1099)) (-5 *2 (-55)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-771)) (-4 *5 (-351)) (-4 *6 (-1240 *5))
- (-5 *2
- (-644
- (-2 (|:| -1990 (-689 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-689 *6)))))
- (-5 *1 (-500 *5 *6 *7))
- (-5 *3
- (-2 (|:| -1990 (-689 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-689 *6))))
- (-4 *7 (-1240 *6)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-689 *2)) (-4 *2 (-172)) (-5 *1 (-146 *2))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-172)) (-4 *2 (-1240 *4)) (-5 *1 (-177 *4 *2 *3))
- (-4 *3 (-724 *4 *2))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 (-409 (-952 *5)))) (-5 *4 (-1175))
- (-5 *2 (-952 *5)) (-5 *1 (-293 *5)) (-4 *5 (-454))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-689 (-409 (-952 *4)))) (-5 *2 (-952 *4))
- (-5 *1 (-293 *4)) (-4 *4 (-454))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-372 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-689 (-169 (-409 (-566)))))
- (-5 *2 (-952 (-169 (-409 (-566))))) (-5 *1 (-764 *4))
- (-4 *4 (-13 (-365) (-848)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 (-169 (-409 (-566))))) (-5 *4 (-1175))
- (-5 *2 (-952 (-169 (-409 (-566))))) (-5 *1 (-764 *5))
- (-4 *5 (-13 (-365) (-848)))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *2 (-952 (-409 (-566))))
- (-5 *1 (-779 *4)) (-4 *4 (-13 (-365) (-848)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 (-409 (-566)))) (-5 *4 (-1175))
- (-5 *2 (-952 (-409 (-566)))) (-5 *1 (-779 *5))
- (-4 *5 (-13 (-365) (-848))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-921))
- (-5 *2
- (-3 (-1171 *4)
- (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119)))))))
- (-5 *1 (-348 *4)) (-4 *4 (-351)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-771)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-254 *2 *3 *4 *5)) (-4 *2 (-1049)) (-4 *3 (-850))
- (-4 *4 (-267 *3)) (-4 *5 (-793)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *1 (-103 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-588 *3)) (-4 *3 (-547)))))
(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-125 *2)) (-4 *2 (-1099)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-3 (|:| |fst| (-436)) (|:| -4354 "void")))
- (-5 *2 (-1269)) (-5 *1 (-1178))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1175))
- (-5 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-5 *2 (-1269))
- (-5 *1 (-1178))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *3 (-1175))
- (-5 *4 (-3 (|:| |fst| (-436)) (|:| -4354 "void"))) (-5 *2 (-1269))
- (-5 *1 (-1178)))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-1264 (-689 *4))) (-5 *1 (-90 *4 *5))
- (-5 *3 (-689 *4)) (-4 *5 (-656 *4)))))
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *5 *6)) (-4 *6 (-614 (-1175)))
+ (-4 *4 (-365)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-5 *2 (-1164 (-644 (-952 *4)) (-644 (-295 (-952 *4)))))
+ (-5 *1 (-506 *4 *5 *6 *7)))))
(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1175)) (-5 *1 (-612 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175)) (-4 *4 (-454)) (-4 *4 (-1099))
- (-5 *1 (-575 *4 *2)) (-4 *2 (-285)) (-4 *2 (-432 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-108))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-538))) (-5 *1 (-538)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1171 *2)) (-4 *2 (-432 *4)) (-4 *4 (-558))
- (-5 *1 (-32 *4 *2)))))
-(((*1 *1) (-5 *1 (-130))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -2222 (-782 *3)) (|:| |coef1| (-782 *3))))
- (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *2 (-2 (|:| -2222 *1) (|:| |coef1| *1)))
- (-4 *1 (-1064 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *1 (-914 *2)) (-4 *2 (-308)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-656 *3)) (-4 *3 (-1049)) (-4 *3 (-365))))
- ((*1 *2 *2 *3 *4)
- (-12 (-5 *3 (-771)) (-5 *4 (-1 *5 *5)) (-4 *5 (-365))
- (-5 *1 (-659 *5 *2)) (-4 *2 (-656 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *1 (-1032 *2))
- (-4 *2 (-13 (-1099) (-10 -8 (-15 * ($ $ $))))))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 (-169 (-225)) (-169 (-225)))) (-5 *4 (-1093 (-225)))
- (-5 *2 (-1266)) (-5 *1 (-258)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
- (-4 *4 (-351)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-174 *3)) (-4 *3 (-308))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-674 *3)) (-4 *3 (-1214))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-740 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-850))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-869 *3)) (-5 *2 (-566))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *1 (-980 *3)) (-4 *3 (-1049))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7))
- (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1))
- (-4 *1 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1))
- (-4 *1 (-1070 *4 *5 *6 *3))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))))
-(((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-644 (-1027 *5 *6 *7 *3))) (-5 *1 (-1027 *5 *6 *7 *3))
- (-4 *3 (-1064 *5 *6 *7))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-644 *6)) (-4 *1 (-1070 *3 *4 *5 *6)) (-4 *3 (-454))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5))))
- ((*1 *1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *2)) (-4 *3 (-454)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5))))
- ((*1 *2 *3 *1 *4 *4 *4 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-644 (-1145 *5 *6 *7 *3))) (-5 *1 (-1145 *5 *6 *7 *3))
- (-4 *3 (-1064 *5 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-841)) (-5 *4 (-1062)) (-5 *2 (-1035)) (-5 *1 (-840))))
- ((*1 *2 *3) (-12 (-5 *3 (-841)) (-5 *2 (-1035)) (-5 *1 (-840))))
- ((*1 *2 *3 *4 *5 *6 *5)
- (-12 (-5 *4 (-644 (-381))) (-5 *5 (-644 (-843 (-381))))
- (-5 *6 (-644 (-317 (-381)))) (-5 *3 (-317 (-381))) (-5 *2 (-1035))
- (-5 *1 (-840))))
- ((*1 *2 *3 *4 *5 *5)
- (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-381)))
- (-5 *5 (-644 (-843 (-381)))) (-5 *2 (-1035)) (-5 *1 (-840))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-317 (-381))) (-5 *4 (-644 (-381))) (-5 *2 (-1035))
- (-5 *1 (-840))))
+ (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-4 *3 (-558))
+ (-5 *2 (-1171 *3)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-4 *3 (-1064 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-317 (-381)))) (-5 *4 (-644 (-381)))
- (-5 *2 (-1035)) (-5 *1 (-840)))))
-(((*1 *2 *2 *3)
- (|partial| -12
- (-5 *3 (-644 (-2 (|:| |func| *2) (|:| |pole| (-112)))))
- (-4 *2 (-13 (-432 *4) (-1002))) (-4 *4 (-558))
- (-5 *1 (-277 *4 *2)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-566)) (-5 *1 (-204)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1141 *4 *2)) (-14 *4 (-921))
- (-4 *2 (-13 (-1049) (-10 -7 (-6 (-4419 "*")))))
- (-5 *1 (-902 *4 *2)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-174 (-409 (-566)))) (-5 *1 (-117 *3)) (-14 *3 (-566))))
- ((*1 *1 *2 *3 *3)
- (-12 (-5 *3 (-1155 *2)) (-4 *2 (-308)) (-5 *1 (-174 *2))))
- ((*1 *1 *2) (-12 (-5 *2 (-409 *3)) (-4 *3 (-308)) (-5 *1 (-174 *3))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-174 (-566))) (-5 *1 (-765 *3)) (-4 *3 (-406))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-174 (-409 (-566)))) (-5 *1 (-871 *3)) (-14 *3 (-566))))
- ((*1 *2 *1)
- (-12 (-14 *3 (-566)) (-5 *2 (-174 (-409 (-566))))
- (-5 *1 (-872 *3 *4)) (-4 *4 (-869 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-365)) (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3)))
- (-5 *1 (-766 *3 *4)) (-4 *3 (-708 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-365)) (-4 *3 (-1049))
- (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-852 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-365)) (-4 *5 (-1049))
- (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-853 *5 *3))
- (-4 *3 (-852 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-771)) (-5 *1 (-783 *2)) (-4 *2 (-38 (-409 (-566))))
- (-4 *2 (-172)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-372 *4 *5)) (-4 *4 (-172))
- (-4 *5 (-1240 *4)) (-5 *2 (-689 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-411 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3))
- (-5 *2 (-689 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1175)) (-4 *5 (-1218)) (-4 *6 (-1240 *5))
- (-4 *7 (-1240 (-409 *6))) (-5 *2 (-644 (-952 *5)))
- (-5 *1 (-343 *4 *5 *6 *7)) (-4 *4 (-344 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1175)) (-4 *1 (-344 *4 *5 *6)) (-4 *4 (-1218))
- (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5))) (-4 *4 (-365))
- (-5 *2 (-644 (-952 *4))))))
-(((*1 *2 *3 *1)
- (-12 (|has| *1 (-6 -4417)) (-4 *1 (-491 *3)) (-4 *3 (-1214))
- (-4 *3 (-1099)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-112))
- (-5 *1 (-904 *4))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-921)) (-5 *2 (-112)) (-5 *1 (-1100 *4 *5)) (-14 *4 *3)
- (-14 *5 *3))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
(-5 *2
- (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566))
- (|:| |success| (-112))))
- (-5 *1 (-789)) (-5 *5 (-566)))))
-(((*1 *2)
- (-12 (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
- (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-13 (-308) (-10 -8 (-15 -1370 ((-420 $) $)))))
- (-4 *4 (-1240 *3))
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850))
+ (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-949 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1049)) (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1)))
+ (-4 *1 (-1240 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *1 *1) (-4 *1 (-1138))))
+(((*1 *2 *2)
+ (-12
(-5 *2
- (-2 (|:| -1990 (-689 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-689 *3))))
- (-5 *1 (-352 *3 *4 *5)) (-4 *5 (-411 *3 *4))))
- ((*1 *2)
- (-12 (-4 *3 (-1240 (-566)))
+ (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225)))
+ (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225))))
+ (|:| |ub| (-644 (-843 (-225))))))
+ (-5 *1 (-268)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-862)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-862)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-551))))))
+(((*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-527)))))
+(((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 (-892 *6)))
+ (-5 *5 (-1 (-889 *6 *8) *8 (-892 *6) (-889 *6 *8))) (-4 *6 (-1099))
+ (-4 *8 (-13 (-1049) (-614 (-892 *6)) (-1038 *7)))
+ (-5 *2 (-889 *6 *8)) (-4 *7 (-1049)) (-5 *1 (-941 *6 *7 *8)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1264 (-1264 (-566)))) (-5 *3 (-921)) (-5 *1 (-468)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1002))
+ (-4 *2 (-1049)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4))))
+ (-5 *1 (-1071 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -2662 *3) (|:| |coef2| (-782 *3))))
+ (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))))
+(((*1 *1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-295 (-843 *3))) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566))))
(-5 *2
- (-2 (|:| -1990 (-689 (-566))) (|:| |basisDen| (-566))
- (|:| |basisInv| (-689 (-566)))))
- (-5 *1 (-768 *3 *4)) (-4 *4 (-411 (-566) *3))))
- ((*1 *2)
- (-12 (-4 *3 (-351)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 *4))
+ (-3 (-843 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-843 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-843 *3) "failed")))
+ "failed"))
+ (-5 *1 (-636 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-295 *3)) (-5 *5 (-1157))
+ (-4 *3 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *2 (-843 *3)) (-5 *1 (-636 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-295 (-843 (-952 *5)))) (-4 *5 (-454))
(-5 *2
- (-2 (|:| -1990 (-689 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-689 *4))))
- (-5 *1 (-985 *3 *4 *5 *6)) (-4 *6 (-724 *4 *5))))
- ((*1 *2)
- (-12 (-4 *3 (-351)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 *4))
+ (-3 (-843 (-409 (-952 *5)))
+ (-2 (|:| |leftHandLimit| (-3 (-843 (-409 (-952 *5))) "failed"))
+ (|:| |rightHandLimit| (-3 (-843 (-409 (-952 *5))) "failed")))
+ "failed"))
+ (-5 *1 (-637 *5)) (-5 *3 (-409 (-952 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-295 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5)))
+ (-4 *5 (-454))
(-5 *2
- (-2 (|:| -1990 (-689 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-689 *4))))
- (-5 *1 (-1273 *3 *4 *5 *6)) (-4 *6 (-411 *4 *5)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1024 *3))
- (-4 *3 (-13 (-848) (-365) (-1022)))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
- (-4 *3 (-1240 *2))))
- ((*1 *2 *3 *1 *2)
- (-12 (-4 *1 (-1067 *2 *3)) (-4 *2 (-13 (-848) (-365)))
- (-4 *3 (-1240 *2)))))
-(((*1 *2 *2 *2 *3 *4)
- (-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1049))
- (-5 *1 (-853 *5 *2)) (-4 *2 (-852 *5)))))
+ (-3 (-843 *3)
+ (-2 (|:| |leftHandLimit| (-3 (-843 *3) "failed"))
+ (|:| |rightHandLimit| (-3 (-843 *3) "failed")))
+ "failed"))
+ (-5 *1 (-637 *5))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-295 (-409 (-952 *6)))) (-5 *5 (-1157))
+ (-5 *3 (-409 (-952 *6))) (-4 *6 (-454)) (-5 *2 (-843 *3))
+ (-5 *1 (-637 *6)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-1194)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-604 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1214))
- (-5 *2 (-644 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-771)) (-5 *1 (-120 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *3 *3 *4 *5 *3 *3 *4 *4 *4 *6)
- (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225)))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382)))) (-5 *3 (-225))
- (-5 *2 (-1035)) (-5 *1 (-748)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-992 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-142 *4 *5 *3))
- (-4 *3 (-375 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-992 *4))
- (-5 *2 (-2 (|:| |num| *6) (|:| |den| *4)))
- (-5 *1 (-505 *4 *5 *6 *3)) (-4 *6 (-375 *4)) (-4 *3 (-375 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-689 *5)) (-4 *5 (-992 *4)) (-4 *4 (-558))
- (-5 *2 (-2 (|:| |num| (-689 *4)) (|:| |den| *4)))
- (-5 *1 (-693 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-13 (-365) (-147) (-1038 (-409 (-566)))))
- (-4 *6 (-1240 *5))
- (-5 *2 (-2 (|:| -3525 *7) (|:| |rh| (-644 (-409 *6)))))
- (-5 *1 (-807 *5 *6 *7 *3)) (-5 *4 (-644 (-409 *6)))
- (-4 *7 (-656 *6)) (-4 *3 (-656 (-409 *6)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-992 *4))
- (-5 *2 (-2 (|:| |num| *3) (|:| |den| *4))) (-5 *1 (-1233 *4 *5 *3))
- (-4 *3 (-1240 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *3 (-644 (-264)))
- (-5 *1 (-262))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1 (-943 (-225)) (-943 (-225)))) (-5 *1 (-264))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 (-483 *5 *6))) (-5 *3 (-483 *5 *6))
- (-14 *5 (-644 (-1175))) (-4 *6 (-454)) (-5 *2 (-1264 *6))
- (-5 *1 (-631 *5 *6)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
- (-5 *1 (-176 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2248 *9))))
- (-5 *4 (-771)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1070 *5 *6 *7 *8))
- (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-1269))
- (-5 *1 (-1068 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2248 *9))))
- (-5 *4 (-771)) (-4 *8 (-1064 *5 *6 *7)) (-4 *9 (-1108 *5 *6 *7 *8))
- (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-1269))
- (-5 *1 (-1144 *5 *6 *7 *8 *9)))))
-(((*1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-771)) (-5 *1 (-563)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1049)) (-5 *2 (-112)) (-5 *1 (-446 *4 *3))
- (-4 *3 (-1240 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-508)) (-5 *1 (-527)))))
+ (-12 (-4 *1 (-366 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-689 *2)) (-5 *4 (-771))
+ (-4 *2 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))))
+ (-4 *5 (-1240 *2)) (-5 *1 (-501 *2 *5 *6)) (-4 *6 (-411 *2 *5)))))
(((*1 *2 *3 *2)
(-12 (-5 *3 (-644 (-1075 *4 *5 *2))) (-4 *4 (-1099))
(-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4))))
@@ -14384,6 +14017,36 @@
(-4 *6 (-13 (-1049) (-886 *5) (-614 (-892 *5))))
(-4 *2 (-13 (-432 *6) (-886 *5) (-614 (-892 *5))))
(-5 *1 (-54 *5 *6 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
+(((*1 *1 *2 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1012)) (-5 *2 (-862)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-566)) (-5 *1 (-696 *2)) (-4 *2 (-1240 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1255 *3)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1049)) (-4 *3 (-1099))
+ (-5 *2 (-2 (|:| |val| *1) (|:| -2456 (-566)))) (-4 *1 (-432 *3))))
+ ((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| |val| (-892 *3)) (|:| -2456 (-892 *3))))
+ (-5 *1 (-892 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049))
+ (-4 *7 (-949 *6 *4 *5))
+ (-5 *2 (-2 (|:| |val| *3) (|:| -2456 (-566))))
+ (-5 *1 (-950 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-365)
+ (-10 -8 (-15 -3780 ($ *7)) (-15 -3088 (*7 $))
+ (-15 -3100 (*7 $))))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1171 *9)) (-5 *4 (-644 *7)) (-4 *7 (-850))
+ (-4 *9 (-949 *8 *6 *7)) (-4 *6 (-793)) (-4 *8 (-308))
+ (-5 *2 (-644 (-771))) (-5 *1 (-742 *6 *7 *8 *9)) (-5 *5 (-771)))))
(((*1 *2)
(-12 (-14 *4 (-771)) (-4 *5 (-1214)) (-5 *2 (-134))
(-5 *1 (-237 *3 *4 *5)) (-4 *3 (-238 *4 *5))))
@@ -14401,181 +14064,202 @@
(-5 *2 (-566)) (-5 *1 (-506 *4 *5 *6 *7)) (-4 *7 (-949 *4 *5 *6))))
((*1 *2 *1) (-12 (-4 *1 (-980 *3)) (-4 *3 (-1049)) (-5 *2 (-921))))
((*1 *2) (-12 (-4 *1 (-1271 *3)) (-4 *3 (-365)) (-5 *2 (-134)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-771)) (-4 *5 (-558))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-952 *5)) (-4 *5 (-1049)) (-5 *2 (-483 *4 *5))
+ (-5 *1 (-944 *4 *5)) (-14 *4 (-644 (-1175))))))
+(((*1 *1) (-5 *1 (-439))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-771)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-381)) (-5 *1 (-1062)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-454))
+ (-5 *2
+ (-644
+ (-2 (|:| |eigval| (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4))))
+ (|:| |eigmult| (-771))
+ (|:| |eigvec| (-644 (-689 (-409 (-952 *4))))))))
+ (-5 *1 (-293 *4)) (-5 *3 (-689 (-409 (-952 *4)))))))
+(((*1 *1) (-5 *1 (-1062))))
(((*1 *2 *1)
(-12 (-4 *2 (-1240 *3)) (-5 *1 (-401 *3 *2))
(-4 *3 (-13 (-365) (-147))))))
+(((*1 *2 *2 *2 *3 *4)
+ (-12 (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5)) (-4 *5 (-1049))
+ (-5 *1 (-853 *5 *2)) (-4 *2 (-852 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112))
+ (-5 *2
+ (-2 (|:| |contp| (-566))
+ (|:| -2670 (-644 (-2 (|:| |irr| *3) (|:| -2831 (-566)))))))
+ (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112))
+ (-5 *2
+ (-2 (|:| |contp| (-566))
+ (|:| -2670 (-644 (-2 (|:| |irr| *3) (|:| -2831 (-566)))))))
+ (-5 *1 (-1229 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547)))))
+(((*1 *2 *3 *2 *4)
+ (|partial| -12 (-5 *4 (-1 (-3 (-566) "failed") *5)) (-4 *5 (-1049))
+ (-5 *2 (-566)) (-5 *1 (-545 *5 *3)) (-4 *3 (-1240 *5))))
+ ((*1 *2 *3 *4 *2 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-566) "failed") *4)) (-4 *4 (-1049))
+ (-5 *2 (-566)) (-5 *1 (-545 *4 *3)) (-4 *3 (-1240 *4))))
+ ((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *5 (-1 (-3 (-566) "failed") *4)) (-4 *4 (-1049))
+ (-5 *2 (-566)) (-5 *1 (-545 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-438)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-169 *5)) (-4 *5 (-13 (-432 *4) (-1002) (-1199)))
+ (-4 *4 (-558)) (-4 *2 (-13 (-432 (-169 *4)) (-1002) (-1199)))
+ (-5 *1 (-600 *4 *5 *2)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-644 *1)) (-4 *1 (-1064 *4 *5 *6)) (-4 *4 (-1049))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1 *4)
+ (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *1 (-1207 *5 *6 *7 *3))
+ (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-112)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *1) (-5 *1 (-561))))
(((*1 *2 *1)
(-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370))
(-5 *2 (-1171 *3)))))
+(((*1 *2 *2 *1)
+ (-12 (-5 *2 (-1288 *3 *4)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-172))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-388 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-819 *3)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-420 *5)) (-4 *5 (-558))
+ (-5 *2
+ (-2 (|:| -2456 (-771)) (|:| -3223 *5) (|:| |radicand| (-644 *5))))
+ (-5 *1 (-321 *5)) (-5 *4 (-771))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1002)) (-5 *2 (-566)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-566)) (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-308))
+ (-4 *9 (-949 *8 *6 *7))
+ (-5 *2 (-2 (|:| -2576 (-1171 *9)) (|:| |polval| (-1171 *8))))
+ (-5 *1 (-742 *6 *7 *8 *9)) (-5 *3 (-1171 *9)) (-5 *4 (-1171 *8)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850))))
+ ((*1 *2 *3)
+ (|partial| -12 (-4 *4 (-793)) (-4 *5 (-1049)) (-4 *6 (-949 *5 *4 *2))
+ (-4 *2 (-850)) (-5 *1 (-950 *4 *2 *5 *6 *3))
+ (-4 *3
+ (-13 (-365)
+ (-10 -8 (-15 -3780 ($ *6)) (-15 -3088 (*6 $))
+ (-15 -3100 (*6 $)))))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-558))
+ (-5 *2 (-1175)) (-5 *1 (-1043 *4)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))))
+(((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-547))))
+ ((*1 *1 *1) (-4 *1 (-1059))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-558)))))
+(((*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *4 (-365)) (-5 *2 (-644 (-1155 *4))) (-5 *1 (-286 *4 *5))
+ (-5 *3 (-1155 *4)) (-4 *5 (-1255 *4)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1122 *3 *4 *2 *5)) (-4 *4 (-1049)) (-4 *5 (-238 *3 *4))
(-4 *2 (-238 *3 *4)))))
+(((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-701))))
+ ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-701)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-566)) (-5 *4 (-420 *2)) (-4 *2 (-949 *7 *5 *6))
+ (-5 *1 (-742 *5 *6 *7 *2)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-308)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-419 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *1) (-5 *1 (-157))))
+(((*1 *1) (-5 *1 (-144))) ((*1 *1 *1) (-5 *1 (-862))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
+ ((*1 *2 *2 *1)
+ (|partial| -12 (-5 *2 (-409 *1)) (-4 *1 (-1240 *3)) (-4 *3 (-1049))
+ (-4 *3 (-558))))
+ ((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-821)))))
+(((*1 *1 *1) (-4 *1 (-558))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1179)))))
(((*1 *2 *1)
(-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
(-4 *5 (-375 *3)) (-5 *2 (-566))))
((*1 *2 *1)
(-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
(-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1099)) (-5 *2 (-889 *3 *5)) (-5 *1 (-885 *3 *4 *5))
- (-4 *3 (-1099)) (-4 *5 (-666 *4)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1148 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1171 *3)) (-4 *3 (-370)) (-4 *1 (-330 *3))
- (-4 *3 (-365)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1264 (-689 *4))) (-4 *4 (-172))
- (-5 *2 (-1264 (-689 (-952 *4)))) (-5 *1 (-189 *4)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-1099)) (-4 *2 (-900 *5)) (-5 *1 (-692 *5 *2 *3 *4))
- (-4 *3 (-375 *2)) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4417)))))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-644
- (-2 (|:| -1821 (-771))
- (|:| |eqns|
- (-644
- (-2 (|:| |det| *7) (|:| |rows| (-644 (-566)))
- (|:| |cols| (-644 (-566))))))
- (|:| |fgb| (-644 *7)))))
- (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147)))
- (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-771))
- (-5 *1 (-924 *4 *5 *6 *7)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1264 *4)) (-5 *3 (-566)) (-4 *4 (-351))
- (-5 *1 (-530 *4)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-644 (-483 *4 *5))) (-5 *3 (-644 (-864 *4)))
- (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-473 *4 *5 *6))
- (-4 *6 (-454)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *7 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-558))
- (-4 *8 (-949 *7 *5 *6))
- (-5 *2 (-2 (|:| -3250 (-771)) (|:| -3157 *3) (|:| |radicand| *3)))
- (-5 *1 (-953 *5 *6 *7 *8 *3)) (-5 *4 (-771))
- (-4 *3
- (-13 (-365)
- (-10 -8 (-15 -2512 ($ *8)) (-15 -3001 (*8 $)) (-15 -3013 (*8 $))))))))
-(((*1 *2 *1) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-771)) (-5 *1 (-588 *2)) (-4 *2 (-547))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -3306 *3) (|:| -3250 (-771)))) (-5 *1 (-588 *3))
- (-4 *3 (-547)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-771)) (-5 *3 (-943 *4)) (-4 *1 (-1133 *4))
- (-4 *4 (-1049))))
- ((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-771)) (-5 *4 (-943 (-225))) (-5 *2 (-1269))
- (-5 *1 (-1266)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1249 *3 *4 *5)) (-4 *3 (-365)) (-14 *4 (-1175))
- (-14 *5 *3) (-5 *1 (-320 *3 *4 *5))))
- ((*1 *2 *3) (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-892 *4)) (-4 *4 (-1099)) (-5 *1 (-889 *4 *3))
+ (-4 *3 (-1099)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *2)) (-4 *2 (-172))))
+ ((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-418 *3 *2)) (-4 *3 (-419 *2))))
+ ((*1 *2) (-12 (-4 *1 (-419 *2)) (-4 *2 (-172)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))))
-(((*1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267))))
- ((*1 *2 *2) (-12 (-5 *2 (-874)) (-5 *1 (-1267)))))
-(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-393)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006))))
- ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
-(((*1 *1 *1) (-4 *1 (-1059)))
- ((*1 *1 *1 *2 *2)
- (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1242 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-792)))))
+ (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1159 *4)) (-4 *4 (-1049))
+ (-5 *3 (-566)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-2 (|:| -2391 (-1171 *6)) (|:| -3250 (-566)))))
- (-4 *6 (-308)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-566))
- (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
- (-5 *4 (-317 (-169 (-381)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
- (-5 *4 (-317 (-381))) (-5 *1 (-331))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
- (-5 *4 (-317 (-566))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-169 (-381)))))
- (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-381)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-566)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-169 (-381)))))
- (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-381)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-566)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-169 (-381)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-381))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-566))) (-5 *1 (-331))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
- (-5 *4 (-317 (-694))) (-5 *1 (-331))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
- (-5 *4 (-317 (-699))) (-5 *1 (-331))))
- ((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-952 (-566))))
- (-5 *4 (-317 (-701))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-694)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-699)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-317 (-701)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-694)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-699)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-317 (-701)))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-694))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-699))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-1264 (-701))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-694))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-699))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-689 (-701))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-694))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-699))) (-5 *1 (-331))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-317 (-701))) (-5 *1 (-331))))
- ((*1 *1 *2 *3) (-12 (-5 *2 (-1175)) (-5 *3 (-1157)) (-5 *1 (-331))))
- ((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-566)) (-4 *1 (-57 *4 *3 *5)) (-4 *4 (-1214))
- (-4 *3 (-375 *4)) (-4 *5 (-375 *4)))))
-(((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267))))
- ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))))
-(((*1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))))
+ (-12 (-5 *3 (-317 (-381))) (-5 *2 (-317 (-225))) (-5 *1 (-306)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3 *2 *4 *5)
+ (-12 (-5 *2 (-644 *3)) (-5 *5 (-921)) (-4 *3 (-1240 *4))
+ (-4 *4 (-308)) (-5 *1 (-462 *4 *3)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-558))
+ (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-1235 *4 *3))
+ (-4 *3 (-1240 *4)))))
+(((*1 *2 *3) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-563)) (-5 *3 (-566)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4 *5 *6 *5)
+ (-12 (-5 *4 (-169 (-225))) (-5 *5 (-566)) (-5 *6 (-1157))
+ (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
(-14 *4 *3)))
@@ -14584,456 +14268,415 @@
(-14 *4 *3)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-675 *2)) (-4 *2 (-1049)) (-4 *2 (-1099)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-295 (-409 (-952 *5)))) (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-147)))
+ (-5 *2 (-1164 (-644 (-317 *5)) (-644 (-295 (-317 *5)))))
+ (-5 *1 (-1128 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-147)))
+ (-5 *2 (-1164 (-644 (-317 *5)) (-644 (-295 (-317 *5)))))
+ (-5 *1 (-1128 *5)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
- (-4 *3 (-13 (-365) (-1199) (-1002))))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1255 *4)) (-5 *1 (-1257 *4 *2))
- (-4 *4 (-38 (-409 (-566)))))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-558)) (-5 *1 (-623 *2 *3)) (-4 *3 (-1240 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
- (-5 *2 (-819 *3))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-846)) (-5 *1 (-1287 *3 *2)) (-4 *3 (-1049)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-566)) (|has| *1 (-6 -4408)) (-4 *1 (-406))
- (-5 *2 (-921)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112))
- (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))))
-(((*1 *1 *1) (-12 (-4 *1 (-376 *2 *3)) (-4 *2 (-850)) (-4 *3 (-172))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-627 *2 *3 *4)) (-4 *2 (-850))
- (-4 *3 (-13 (-172) (-717 (-409 (-566))))) (-14 *4 (-921))))
- ((*1 *1 *1) (-12 (-5 *1 (-677 *2)) (-4 *2 (-850))))
- ((*1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-225)) (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-850))))
- ((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-968 *2)) (-4 *2 (-850)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-644 (-1171 *7))) (-5 *3 (-1171 *7))
- (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-909)) (-4 *5 (-793))
- (-4 *6 (-850)) (-5 *1 (-906 *4 *5 *6 *7))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-644 (-1171 *5))) (-5 *3 (-1171 *5))
- (-4 *5 (-1240 *4)) (-4 *4 (-909)) (-5 *1 (-907 *4 *5)))))
-(((*1 *1 *1) (-4 *1 (-547))))
+ (-12 (-4 *4 (-558)) (-5 *2 (-1171 *3)) (-5 *1 (-41 *4 *3))
+ (-4 *3
+ (-13 (-365) (-303)
+ (-10 -8 (-15 -3088 ((-1124 *4 (-612 $)) $))
+ (-15 -3100 ((-1124 *4 (-612 $)) $))
+ (-15 -3780 ($ (-1124 *4 (-612 $))))))))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 *5)) (-4 *5 (-172)) (-5 *1 (-136 *3 *4 *5))
+ (-14 *3 (-566)) (-14 *4 (-771)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *1) (-5 *1 (-439))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175))
- (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-4 *1 (-324 *4 *2)) (-4 *4 (-1099))
- (-4 *2 (-131)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1109)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1264 *6)) (-5 *4 (-1264 (-566))) (-5 *5 (-566))
- (-4 *6 (-1099)) (-5 *2 (-1 *6)) (-5 *1 (-1017 *6)))))
-(((*1 *1 *2 *3 *4)
- (-12 (-5 *3 (-566)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-420 *2)) (-4 *2 (-558)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-829)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-644 *1)) (-4 *1 (-308)))))
(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1099)) (-5 *2 (-644 *1))
- (-4 *1 (-432 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-644 (-892 *3))) (-5 *1 (-892 *3))
- (-4 *3 (-1099))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *2 (-644 *1)) (-4 *1 (-949 *3 *4 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049))
- (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-644 *3))
- (-5 *1 (-950 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-365)
- (-10 -8 (-15 -2512 ($ *7)) (-15 -3001 (*7 $))
- (-15 -3013 (*7 $))))))))
-(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-752)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1175)) (-5 *1 (-822)))))
+(((*1 *1)
+ (-12 (-4 *1 (-406)) (-2436 (|has| *1 (-6 -4405)))
+ (-2436 (|has| *1 (-6 -4397)))))
+ ((*1 *2 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-850))))
+ ((*1 *2 *1) (-12 (-4 *1 (-830 *2)) (-4 *2 (-850))))
+ ((*1 *1) (-4 *1 (-844))) ((*1 *1 *1 *1) (-4 *1 (-850))))
+(((*1 *2 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| -1575 (-689 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-689 *3))))
+ (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))))
+ (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-555)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-114)) (-5 *1 (-113 *2)) (-4 *2 (-1099)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1215 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-644 *1)) (-5 *3 (-644 *7)) (-4 *1 (-1070 *4 *5 *6 *7))
- (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1))
- (-4 *1 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-644 *1)) (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6))))
- ((*1 *2 *3 *1)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1))
- (-4 *1 (-1070 *4 *5 *6 *3)))))
+ (|partial| -12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4))
+ (-5 *2 (-420 (-1171 (-409 (-566))))) (-5 *1 (-437 *4 *5 *3))
+ (-4 *3 (-1240 *5)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))))
+(((*1 *2 *1 *3 *3 *3 *2)
+ (-12 (-5 *3 (-771)) (-5 *1 (-675 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
+ (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-225))
+ (-5 *7 (-689 (-566))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-566)) (-5 *1 (-1155 *3)) (-4 *3 (-1214))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *1) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-1171 *3)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1175))
+ (-4 *5 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))))
+ (-5 *2 (-2 (|:| -2883 *3) (|:| |coeff| *3))) (-5 *1 (-559 *5 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *5))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1148 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4 *5 *6 *7 *8 *9)
+ (|partial| -12 (-5 *4 (-644 *11)) (-5 *5 (-644 (-1171 *9)))
+ (-5 *6 (-644 *9)) (-5 *7 (-644 *12)) (-5 *8 (-644 (-771)))
+ (-4 *11 (-850)) (-4 *9 (-308)) (-4 *12 (-949 *9 *10 *11))
+ (-4 *10 (-793)) (-5 *2 (-644 (-1171 *12)))
+ (-5 *1 (-707 *10 *11 *9 *12)) (-5 *3 (-1171 *12)))))
+(((*1 *2 *1) (-12 (-5 *2 (-334)) (-5 *1 (-249)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-508)) (-5 *2 (-112)) (-5 *1 (-114)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-596 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1049)) (-5 *1 (-712 *3 *2)) (-4 *2 (-1240 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-958 (-183))) (-5 *1 (-334))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-606)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1148 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
+(((*1 *1) (-5 *1 (-439))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-566)) (|has| *1 (-6 -4405)) (-4 *1 (-406))
+ (-5 *2 (-921)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-172))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1285 *3 *4)) (-4 *3 (-850))
+ (-12 (-5 *2 (-1171 *3)) (-4 *3 (-370)) (-4 *1 (-330 *3))
+ (-4 *3 (-365)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-276)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1099)) (-4 *6 (-886 *5)) (-5 *2 (-885 *5 *6 (-644 *6)))
+ (-5 *1 (-887 *5 *6 *4)) (-5 *3 (-644 *6)) (-4 *4 (-614 (-892 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1099)) (-5 *2 (-644 (-295 *3))) (-5 *1 (-887 *5 *3 *4))
+ (-4 *3 (-1038 (-1175))) (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1099)) (-5 *2 (-644 (-295 (-952 *3))))
+ (-5 *1 (-887 *5 *3 *4)) (-4 *3 (-1049))
+ (-2436 (-4 *3 (-1038 (-1175)))) (-4 *3 (-886 *5))
+ (-4 *4 (-614 (-892 *5)))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-1099)) (-5 *2 (-889 *5 *3)) (-5 *1 (-887 *5 *3 *4))
+ (-2436 (-4 *3 (-1038 (-1175)))) (-2436 (-4 *3 (-1049)))
+ (-4 *3 (-886 *5)) (-4 *4 (-614 (-892 *5))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2 (-644 *1)) (-4 *1 (-1064 *3 *4 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
+ ((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178))))
+ ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1178)))))
+(((*1 *2 *2 *3 *3 *4)
+ (-12 (-5 *4 (-771)) (-4 *3 (-558)) (-5 *1 (-969 *3 *2))
+ (-4 *2 (-1240 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-2 (|:| |k| (-672 *3)) (|:| |c| *4))))
+ (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850))
+ (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-644 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
+ (-5 *1 (-587 *3)) (-4 *3 (-365)))))
+(((*1 *2 *2) (-12 (-5 *1 (-961 *2)) (-4 *2 (-547)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-396)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-558))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-558)))))
+(((*1 *1 *2) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *3 *6)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))
+ (-5 *2 (-1035)) (-5 *1 (-748)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-439)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1155 (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4))
(-4 *4 (-1049)))))
-(((*1 *2) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2222 *3)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175))
- (-14 *4 *2))))
+(((*1 *1) (-5 *1 (-823))))
(((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |mval| (-689 *3)) (|:| |invmval| (-689 *3))
- (|:| |genIdeal| (-506 *3 *4 *5 *6))))
- (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-547))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-508)) (-5 *1 (-114))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-114)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699))))
- ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-699)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *3 (-566)) (-4 *4 (-172)) (-4 *5 (-375 *4))
- (-4 *6 (-375 *4)) (-5 *1 (-688 *4 *5 *6 *2))
- (-4 *2 (-687 *4 *5 *6)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *4)) (-4 *4 (-1049)) (-5 *2 (-1264 *4))
- (-5 *1 (-1176 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-921)) (-5 *2 (-1264 *3)) (-5 *1 (-1176 *3))
- (-4 *3 (-1049)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
- (-5 *1 (-1071 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
- (-5 *1 (-1107 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+ (-644
+ (-2
+ (|:| -2050
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (|:| -2849
+ (-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| (-1155 (-225)))
+ (|:| |notEvaluated|
+ "Internal singularities not yet evaluated")))
+ (|:| -2498
+ (-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 (-561)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4))))
- ((*1 *2 *3 *3 *3)
- (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-1218))
- (-4 *6 (-1240 (-409 *5)))
- (-5 *2
- (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
- (|:| |gd| *5)))
- (-4 *1 (-344 *4 *5 *6)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1266))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-874))))
- ((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *2 *2 *2 *3)
- (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214))))
- ((*1 *1 *2 *1) (-12 (-5 *1 (-1155 *2)) (-4 *2 (-1214)))))
+ (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-866 *4 *5 *6 *7))
+ (-4 *4 (-1049)) (-14 *5 (-644 (-1175))) (-14 *6 (-644 *3))
+ (-14 *7 *3)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-771)) (-4 *4 (-1049)) (-4 *5 (-850)) (-4 *6 (-793))
+ (-14 *8 (-644 *5)) (-5 *2 (-1269))
+ (-5 *1 (-1276 *4 *5 *6 *7 *8 *9 *10)) (-4 *7 (-949 *4 *6 *5))
+ (-14 *9 (-644 *3)) (-14 *10 *3))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-319)) (-5 *3 (-225)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454))
- (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-977 *3 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
-(((*1 *2 *3 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
- (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-276)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566))
- (-14 *4 *2) (-4 *5 (-172))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-921)) (-5 *1 (-165 *3 *4))
- (-4 *3 (-166 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-921))))
- ((*1 *2)
- (-12 (-4 *1 (-372 *3 *4)) (-4 *3 (-172)) (-4 *4 (-1240 *3))
- (-5 *2 (-921))))
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4)))))
((*1 *2 *3)
- (-12 (-4 *4 (-365)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
- (-5 *2 (-771)) (-5 *1 (-523 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6))))
+ (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)) (-4 *5 (-365))
- (-5 *2 (-771)) (-5 *1 (-667 *5))))
+ (-12 (-5 *4 (-409 (-566)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4418))))
- (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4418)))) (-5 *2 (-771))
- (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-4 *3 (-558)) (-5 *2 (-771))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4))
- (-4 *6 (-375 *4)) (-5 *2 (-771)) (-5 *1 (-688 *4 *5 *6 *3))
- (-4 *3 (-687 *4 *5 *6))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
- (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-4 *5 (-558))
- (-5 *2 (-771)))))
+ (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *5 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-295 *3)) (-5 *5 (-409 (-566)))
+ (-4 *3 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-316 *6 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 (-566))) (-5 *4 (-295 *6))
+ (-4 *6 (-13 (-27) (-1199) (-432 *5)))
+ (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *5 *6))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *6 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-566)))
+ (-4 *7 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *6 *7))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-566)))
+ (-4 *3 (-13 (-27) (-1199) (-432 *7)))
+ (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *7 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *3 (-1 *8 (-409 (-566)))) (-5 *4 (-295 *8))
+ (-5 *5 (-1231 (-409 (-566)))) (-5 *6 (-409 (-566)))
+ (-4 *8 (-13 (-27) (-1199) (-432 *7)))
+ (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *7 *8))))
+ ((*1 *2 *3 *4 *5 *6 *7)
+ (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-409 (-566))))
+ (-5 *7 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *8)))
+ (-4 *8 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
+ (-5 *1 (-461 *8 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3))))
+ (-4 *3 (-1049)) (-5 *1 (-596 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-597 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3))))
+ (-4 *3 (-1049)) (-4 *1 (-1224 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-771))
+ (-5 *3 (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| *4))))
+ (-4 *4 (-1049)) (-4 *1 (-1245 *4))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-4 *1 (-1255 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1155 (-2 (|:| |k| (-771)) (|:| |c| *3))))
+ (-4 *3 (-1049)) (-4 *1 (-1255 *3)))))
(((*1 *2 *3 *2)
(-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264))))
- ((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-4 *1 (-1097 *3))))
- ((*1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
+ ((*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-264)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1103)) (-5 *3 (-774)) (-5 *1 (-52)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
+(((*1 *2)
+ (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-419 *3)))))
+(((*1 *2 *3 *3 *4 *5 *5)
+ (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-4 *3 (-1064 *6 *7 *8))
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4))))
+ (-5 *1 (-1107 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-644 (-2 (|:| |val| (-644 *8)) (|:| -2327 *9))))
+ (-5 *5 (-112)) (-4 *8 (-1064 *6 *7 *4)) (-4 *9 (-1070 *6 *7 *4 *8))
+ (-4 *6 (-454)) (-4 *7 (-793)) (-4 *4 (-850))
+ (-5 *2 (-644 (-2 (|:| |val| *8) (|:| -2327 *9))))
+ (-5 *1 (-1107 *6 *7 *4 *8 *9)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1213))) (-5 *1 (-526)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-13 (-308) (-147)))
- (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793))
- (-5 *2 (-644 (-409 (-952 *4)))) (-5 *1 (-924 *4 *5 *6 *7))
- (-4 *7 (-949 *4 *6 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2))
- (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3))))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-644 (-771)))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-365)) (-4 *3 (-1049))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4067 *1)))
- (-4 *1 (-852 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-822)))))
-(((*1 *2 *1) (-12 (-4 *1 (-308)) (-5 *2 (-771)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-365)) (-4 *3 (-1049))
- (-5 *1 (-1159 *3)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-793)) (-4 *4 (-850)) (-4 *5 (-308))
- (-5 *1 (-916 *3 *4 *5 *2)) (-4 *2 (-949 *5 *3 *4))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1171 *6)) (-4 *6 (-949 *5 *3 *4)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *5 (-308)) (-5 *1 (-916 *3 *4 *5 *6))))
+ (-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-365))
+ (-5 *1 (-523 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2))
+ (|has| *2 (-6 (-4416 "*"))) (-4 *2 (-1049))))
((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *6 *4 *5))
- (-5 *1 (-916 *4 *5 *6 *2)) (-4 *4 (-793)) (-4 *5 (-850))
- (-4 *6 (-308)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-1 *6 *6)) (-4 *6 (-1240 *5))
- (-4 *5 (-13 (-27) (-432 *4))) (-4 *4 (-13 (-558) (-1038 (-566))))
- (-4 *7 (-1240 (-409 *6))) (-5 *1 (-554 *4 *5 *6 *7 *2))
- (-4 *2 (-344 *5 *6 *7)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1175)) (-5 *3 (-644 (-538))) (-5 *1 (-538)))))
-(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-409 (-566))) (-5 *1 (-306)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
- (-5 *1 (-176 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
- (-5 *1 (-176 *3)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-747)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-672 *3)) (-4 *3 (-850)) (-4 *1 (-376 *3 *4))
- (-4 *4 (-172)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1049)) (-5 *1 (-894 *2 *3)) (-4 *2 (-1240 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-800))
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-1035)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 (-566))) (-5 *2 (-1177 (-409 (-566))))
- (-5 *1 (-190)))))
+ (-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-172))
+ (-5 *1 (-688 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
+ (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4416 "*"))) (-4 *2 (-1049)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-850))
- (-5 *2
- (-2 (|:| |f1| (-644 *4)) (|:| |f2| (-644 (-644 (-644 *4))))
- (|:| |f3| (-644 (-644 *4))) (|:| |f4| (-644 (-644 (-644 *4))))))
- (-5 *1 (-1185 *4)) (-5 *3 (-644 (-644 (-644 *4)))))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-1213))) (-5 *3 (-1213)) (-5 *1 (-681)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *6)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
- (-4 *4 (-375 *2)))))
+ (-12 (-4 *4 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *2 (-644 *4)) (-5 *1 (-1127 *3 *4)) (-4 *3 (-1240 *4))))
+ ((*1 *2 *3 *3 *3 *3 *3)
+ (-12 (-4 *3 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *2 (-644 *3)) (-5 *1 (-1127 *4 *3)) (-4 *4 (-1240 *3)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-370)) (-4 *2 (-1099)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5))
- (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793)) (-5 *2 (-112)) (-5 *1 (-924 *4 *5 *6 *7))))
+ (-12 (-4 *3 (-233)) (-4 *3 (-1049)) (-4 *4 (-850)) (-4 *5 (-267 *4))
+ (-4 *6 (-793)) (-5 *2 (-1 *1 (-771))) (-4 *1 (-254 *3 *4 *5 *6))))
((*1 *2 *3)
- (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-13 (-308) (-147)))
- (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-112))
- (-5 *1 (-924 *4 *5 *6 *7)) (-4 *7 (-949 *4 *6 *5)))))
+ (-12 (-4 *4 (-1049)) (-4 *3 (-850)) (-4 *5 (-267 *3)) (-4 *6 (-793))
+ (-5 *2 (-1 *1 (-771))) (-4 *1 (-254 *4 *3 *5 *6))))
+ ((*1 *1 *2 *3) (-12 (-5 *3 (-771)) (-4 *1 (-267 *2)) (-4 *2 (-850)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 (-689 *4))) (-4 *4 (-172))
+ (-5 *2 (-1264 (-689 (-952 *4)))) (-5 *1 (-189 *4)))))
(((*1 *2 *2)
(-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
(-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-927)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1180)))))
-(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3 *4 *5 *5 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *3 (-952 *6)) (-5 *4 (-1175))
- (-5 *5 (-843 *7))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-4 *7 (-13 (-1199) (-29 *6))) (-5 *1 (-224 *6 *7))))
- ((*1 *2 *3 *4 *4 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *3 (-1171 *6)) (-5 *4 (-843 *6))
- (-4 *6 (-13 (-1199) (-29 *5)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-224 *5 *6)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-409 (-566)))
- (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-278 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175)))
- (-14 *4 (-644 (-1175))) (-4 *5 (-389))))
- ((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-341 *3 *4 *5)) (-14 *3 (-644 (-1175)))
- (-14 *4 (-644 (-1175))) (-4 *5 (-389)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-843 (-225)))) (-5 *4 (-225)) (-5 *2 (-644 *4))
- (-5 *1 (-268)))))
-(((*1 *2 *2 *2 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-612 *2))
- (-5 *4 (-1 (-3 *2 "failed") *2 *2 (-1175)))
- (-4 *2 (-13 (-432 *5) (-27) (-1199)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *1 (-568 *5 *2 *6)) (-4 *6 (-1099)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 (-2 (|:| |deg| (-771)) (|:| -2133 *5))))
- (-4 *5 (-1240 *4)) (-4 *4 (-351)) (-5 *2 (-644 *5))
- (-5 *1 (-216 *4 *5))))
+ (-12 (-5 *3 (-409 (-952 *5))) (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-317 *5)))
+ (-5 *1 (-1128 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-2 (|:| -2391 *5) (|:| -3992 (-566)))))
- (-5 *4 (-566)) (-4 *5 (-1240 *4)) (-5 *2 (-644 *5))
- (-5 *1 (-696 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-771)) (-4 *5 (-1049)) (-4 *2 (-1240 *5))
- (-5 *1 (-1258 *5 *2 *6 *3)) (-4 *6 (-656 *2)) (-4 *3 (-1255 *5)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-644 (-612 *4))) (-4 *4 (-432 *3)) (-4 *3 (-1099))
- (-5 *1 (-575 *3 *4))))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-889 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099))))
- ((*1 *1 *2 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
-(((*1 *2 *3 *2)
- (-12 (-4 *1 (-787)) (-5 *2 (-1035))
- (-5 *3
- (-2 (|:| |fn| (-317 (-225)))
- (|:| -4344 (-644 (-1093 (-843 (-225))))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))))
- ((*1 *2 *3 *2)
- (-12 (-4 *1 (-787)) (-5 *2 (-1035))
- (-5 *3
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225)))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-438)))))
-(((*1 *2 *3)
- (|partial| -12 (-4 *5 (-1038 (-48)))
- (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4))
- (-5 *2 (-420 (-1171 (-48)))) (-5 *1 (-437 *4 *5 *3))
- (-4 *3 (-1240 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-571 *3)) (-4 *3 (-1038 (-566)))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
- (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-1120 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *1) (-5 *1 (-144)))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-264))) (-5 *2 (-1132 (-225))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-1132 (-225))) (-5 *1 (-264)))))
-(((*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-632)))))
+ (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175)))
+ (-4 *5 (-13 (-308) (-147))) (-5 *2 (-644 (-644 (-317 *5))))
+ (-5 *1 (-1128 *5)))))
+(((*1 *2 *2 *3 *4)
+ (-12 (-5 *2 (-1264 *5)) (-5 *3 (-771)) (-5 *4 (-1119)) (-4 *5 (-351))
+ (-5 *1 (-530 *5)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049))
- (-5 *2 (-644 (-644 (-644 (-943 *3))))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-862)) (-5 *1 (-392 *3 *4 *5)) (-14 *3 (-771))
- (-14 *4 (-771)) (-4 *5 (-172)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1035)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-438)))))
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
(((*1 *2 *1)
- (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
- (-4 *3 (-1240 *2)))))
-(((*1 *2 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225)))
- (-5 *2 (-1035)) (-5 *1 (-747)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-454)) (-4 *4 (-558))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4256 *4)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+ (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-1064 *3 *4 *2)) (-4 *2 (-850))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *2 (-850)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))
+ (-5 *2 (-1035)) (-5 *1 (-748)))))
+(((*1 *1 *1 *1) (-4 *1 (-547))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5))
+ (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-644 (-862)))) (-5 *1 (-862))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1141 *3 *4)) (-5 *1 (-993 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-365))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 *5))) (-4 *5 (-1049))
+ (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *6 (-238 *4 *5))
+ (-4 *7 (-238 *3 *5)))))
+(((*1 *1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *2) (-12 (-5 *1 (-127 *2)) (-4 *2 (-1099)))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
+ (-4 *4 (-558)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 *3))
+ (-4 *3 (-13 (-27) (-1199) (-432 *6)))
+ (-4 *6 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-559 *6 *3)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 (-644 *2) *2 *2 *2)) (-4 *2 (-1099))
+ (-5 *1 (-103 *2))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1099)) (-5 *1 (-103 *2)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-943 (-225))) (-5 *4 (-874)) (-5 *2 (-1269))
+ (-5 *1 (-470))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1049)) (-4 *1 (-980 *3))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-943 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-943 *3)) (-4 *3 (-1049)) (-4 *1 (-1133 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-943 *3)) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
+ ((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)) (-5 *3 (-225)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-747)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *7)) (-4 *7 (-850))
- (-4 *8 (-949 *5 *6 *7)) (-4 *5 (-558)) (-4 *6 (-793))
+ (-12 (-4 *5 (-1099)) (-4 *2 (-900 *5)) (-5 *1 (-692 *5 *2 *3 *4))
+ (-4 *3 (-375 *2)) (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4414)))))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-644 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *2 *1) (-12 (-5 *1 (-1155 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4))
(-5 *2
- (-2 (|:| |particular| (-3 (-1264 (-409 *8)) "failed"))
- (|:| -1990 (-644 (-1264 (-409 *8))))))
- (-5 *1 (-669 *5 *6 *7 *8)))))
-(((*1 *1) (-5 *1 (-141))) ((*1 *1 *1) (-5 *1 (-144)))
- ((*1 *1 *1) (-4 *1 (-1143))))
-(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1 (-538) (-644 (-538)))) (-5 *1 (-114))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-538) (-644 (-538)))) (-5 *1 (-114))))
- ((*1 *1) (-5 *1 (-580))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
+ (-3 (|:| |overq| (-1171 (-409 (-566))))
+ (|:| |overan| (-1171 (-48))) (|:| -3261 (-112))))
+ (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4))))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-4 *2 (-13 (-432 (-169 *4)) (-1002) (-1199)))
+ (-5 *1 (-600 *4 *3 *2)) (-4 *3 (-13 (-432 *4) (-1002) (-1199))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-1 *4 (-566))) (-5 *5 (-1 (-1155 *4))) (-4 *4 (-365))
+ (-4 *4 (-1049)) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4)))))
(((*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1214))))
((*1 *1 *2)
(-12 (-5 *2 (-952 (-381))) (-5 *1 (-341 *3 *4 *5))
@@ -15089,11 +14732,11 @@
(-3
(|:| |nia|
(-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
(|:| |relerr| (-225))))
(|:| |mdnia|
(-2 (|:| |fn| (-317 (-225)))
- (|:| -4344 (-644 (-1093 (-843 (-225)))))
+ (|:| -2498 (-644 (-1093 (-843 (-225)))))
(|:| |abserr| (-225)) (|:| |relerr| (-225))))))
(-5 *1 (-769))))
((*1 *2 *1)
@@ -15109,13 +14752,13 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225)))
+ (-2 (|:| |fn| (-317 (-225))) (|:| -3625 (-644 (-225)))
(|:| |lb| (-644 (-843 (-225))))
(|:| |cf| (-644 (-317 (-225))))
(|:| |ub| (-644 (-843 (-225))))))
(|:| |lsa|
(-2 (|:| |lfn| (-644 (-317 (-225))))
- (|:| -2759 (-644 (-225)))))))
+ (|:| -3625 (-644 (-225)))))))
(-5 *1 (-841))))
((*1 *2 *1)
(-12
@@ -15136,24 +14779,24 @@
((*1 *1 *2)
(-2805
(-12 (-5 *2 (-952 *3))
- (-12 (-2426 (-4 *3 (-38 (-409 (-566)))))
- (-2426 (-4 *3 (-38 (-566)))) (-4 *5 (-614 (-1175))))
+ (-12 (-2436 (-4 *3 (-38 (-409 (-566)))))
+ (-2436 (-4 *3 (-38 (-566)))) (-4 *5 (-614 (-1175))))
(-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793))
(-4 *5 (-850)))
(-12 (-5 *2 (-952 *3))
- (-12 (-2426 (-4 *3 (-547))) (-2426 (-4 *3 (-38 (-409 (-566)))))
+ (-12 (-2436 (-4 *3 (-547))) (-2436 (-4 *3 (-38 (-409 (-566)))))
(-4 *3 (-38 (-566))) (-4 *5 (-614 (-1175))))
(-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793))
(-4 *5 (-850)))
(-12 (-5 *2 (-952 *3))
- (-12 (-2426 (-4 *3 (-992 (-566)))) (-4 *3 (-38 (-409 (-566))))
+ (-12 (-2436 (-4 *3 (-992 (-566)))) (-4 *3 (-38 (-409 (-566))))
(-4 *5 (-614 (-1175))))
(-4 *3 (-1049)) (-4 *1 (-1064 *3 *4 *5)) (-4 *4 (-793))
(-4 *5 (-850)))))
((*1 *1 *2)
(-2805
(-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5))
- (-12 (-2426 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566)))
+ (-12 (-2436 (-4 *3 (-38 (-409 (-566))))) (-4 *3 (-38 (-566)))
(-4 *5 (-614 (-1175))))
(-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)))
(-12 (-5 *2 (-952 (-566))) (-4 *1 (-1064 *3 *4 *5))
@@ -15163,154 +14806,155 @@
(-12 (-5 *2 (-952 (-409 (-566)))) (-4 *1 (-1064 *3 *4 *5))
(-4 *3 (-38 (-409 (-566)))) (-4 *5 (-614 (-1175))) (-4 *3 (-1049))
(-4 *4 (-793)) (-4 *5 (-850)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97))))
- ((*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-381)) (-5 *1 (-97)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-331)))))
-(((*1 *2 *3 *3 *2) (-12 (-5 *2 (-381)) (-5 *3 (-1157)) (-5 *1 (-97))))
- ((*1 *2 *3 *2) (-12 (-5 *2 (-381)) (-5 *3 (-1157)) (-5 *1 (-97)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
- ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
- ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
- ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *1 *1) (-4 *1 (-1138))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-689 (-409 (-952 *4)))) (-4 *4 (-454))
- (-5 *2 (-644 (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4)))))
- (-5 *1 (-293 *4)))))
-(((*1 *1 *2) (-12 (-5 *1 (-227 *2)) (-4 *2 (-13 (-365) (-1199))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *2) (-12 (-5 *2 (-317 (-225))) (-5 *1 (-268)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-771)) (-5 *3 (-943 *5)) (-4 *5 (-1049))
- (-5 *1 (-1163 *4 *5)) (-14 *4 (-921))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-771))) (-5 *3 (-771)) (-5 *1 (-1163 *4 *5))
- (-14 *4 (-921)) (-4 *5 (-1049))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-771))) (-5 *3 (-943 *5)) (-4 *5 (-1049))
- (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1097 *3)) (-4 *3 (-1099)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1049)) (-5 *2 (-644 *1)) (-4 *1 (-1133 *3)))))
(((*1 *2 *3)
- (-12 (-4 *3 (-1240 (-409 (-566))))
- (-5 *2 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566))))
- (-5 *1 (-913 *3 *4)) (-4 *4 (-1240 (-409 *3)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *3))
- (-4 *3 (-1240 (-409 *4))))))
+ (-12
+ (-5 *3
+ (-644
+ (-2 (|:| -4157 (-771))
+ (|:| |eqns|
+ (-644
+ (-2 (|:| |det| *7) (|:| |rows| (-644 (-566)))
+ (|:| |cols| (-644 (-566))))))
+ (|:| |fgb| (-644 *7)))))
+ (-4 *7 (-949 *4 *6 *5)) (-4 *4 (-13 (-308) (-147)))
+ (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)) (-5 *2 (-771))
+ (-5 *1 (-924 *4 *5 *6 *7)))))
+(((*1 *2 *1) (-12 (-4 *1 (-369 *2)) (-4 *2 (-172)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1192)))))
+(((*1 *2 *3 *1 *4)
+ (-12 (-5 *3 (-1139 *5 *6)) (-5 *4 (-1 (-112) *6 *6))
+ (-4 *5 (-13 (-1099) (-34))) (-4 *6 (-13 (-1099) (-34)))
+ (-5 *2 (-112)) (-5 *1 (-1140 *5 *6)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-644 *5))
- (-5 *1 (-890 *4 *5)) (-4 *5 (-1214)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
+ (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7))))
+ (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *5)) (-5 *4 (-921)) (-4 *5 (-850))
+ (-5 *2 (-644 (-672 *5))) (-5 *1 (-672 *5)))))
+(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035))
+ (-5 *1 (-748)))))
+(((*1 *2 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *1 (-158 *4 *2))
+ (-4 *2 (-432 *4))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-160)) (-5 *2 (-1175))))
+ ((*1 *1 *1) (-4 *1 (-160))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1264 *4)) (-5 *3 (-566)) (-4 *4 (-351))
+ (-5 *1 (-530 *4)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-623 *4 *5))
+ (-5 *3
+ (-1 (-2 (|:| |ans| *4) (|:| -4394 *4) (|:| |sol?| (-112)))
+ (-566) *4))
+ (-4 *4 (-365)) (-4 *5 (-1240 *4)) (-5 *1 (-576 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-247 *4 *5)) (-14 *4 (-644 (-1175))) (-4 *5 (-1049))
- (-5 *2 (-952 *5)) (-5 *1 (-944 *4 *5)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+ (-12 (-4 *4 (-850))
+ (-5 *2
+ (-2 (|:| |f1| (-644 *4)) (|:| |f2| (-644 (-644 (-644 *4))))
+ (|:| |f3| (-644 (-644 *4))) (|:| |f4| (-644 (-644 (-644 *4))))))
+ (-5 *1 (-1185 *4)) (-5 *3 (-644 (-644 (-644 *4)))))))
+(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1214)) (-5 *1 (-182 *3 *2)) (-4 *2 (-674 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-850)) (-5 *1 (-486 *3)))))
(((*1 *2 *2 *3)
- (-12 (-4 *4 (-1099)) (-4 *2 (-900 *4)) (-5 *1 (-692 *4 *2 *5 *3))
- (-4 *5 (-375 *2)) (-4 *3 (-13 (-375 *4) (-10 -7 (-6 -4417)))))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-860)) (-5 *2 (-691 (-551))) (-5 *3 (-551)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-644 (-771)))
- (-5 *1 (-904 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-699)) (-5 *1 (-306)))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-771)) (-4 *5 (-365)) (-5 *2 (-409 *6))
- (-5 *1 (-867 *5 *4 *6)) (-4 *4 (-1255 *5)) (-4 *6 (-1240 *5))))
- ((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-771)) (-5 *4 (-1256 *5 *6 *7)) (-4 *5 (-365))
- (-14 *6 (-1175)) (-14 *7 *5) (-5 *2 (-409 (-1237 *6 *5)))
- (-5 *1 (-868 *5 *6 *7))))
- ((*1 *2 *3 *3 *4)
- (|partial| -12 (-5 *3 (-771)) (-5 *4 (-1256 *5 *6 *7)) (-4 *5 (-365))
- (-14 *6 (-1175)) (-14 *7 *5) (-5 *2 (-409 (-1237 *6 *5)))
- (-5 *1 (-868 *5 *6 *7)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3 *4 *4 *5)
- (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225)))
- (-5 *2 (-1035)) (-5 *1 (-757)))))
-(((*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566))))
- ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-699)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-748)))))
+ (|partial| -12 (-5 *2 (-644 (-483 *4 *5))) (-5 *3 (-644 (-864 *4)))
+ (-14 *4 (-644 (-1175))) (-4 *5 (-454)) (-5 *1 (-473 *4 *5 *6))
+ (-4 *6 (-454)))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-312))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850))
- (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-943 *4)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
+ (-5 *1 (-1071 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-1157)) (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-1269))
+ (-5 *1 (-1107 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 *10))
- (-5 *1 (-624 *5 *6 *7 *8 *9 *10)) (-4 *9 (-1070 *5 *6 *7 *8))
- (-4 *10 (-1108 *5 *6 *7 *8))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454))
- (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6)))
- (-5 *1 (-628 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454))
- (-14 *6 (-644 (-1175)))
+ (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331))
+ (-5 *1 (-333)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-952 *5)) (-4 *5 (-1049)) (-5 *2 (-247 *4 *5))
+ (-5 *1 (-944 *4 *5)) (-14 *4 (-644 (-1175))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-689 *8)) (-4 *8 (-949 *5 *7 *6))
+ (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
+ (-4 *7 (-793))
(-5 *2
- (-644 (-1145 *5 (-533 (-864 *6)) (-864 *6) (-780 *5 (-864 *6)))))
- (-5 *1 (-628 *5 *6))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-644 (-1027 *5 *6 *7 *8))) (-5 *1 (-1027 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454))
- (-14 *6 (-644 (-1175))) (-5 *2 (-644 (-1046 *5 *6)))
- (-5 *1 (-1046 *5 *6))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850)) (-5 *2 (-644 *1))
- (-4 *1 (-1070 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-112)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-644 (-1145 *5 *6 *7 *8))) (-5 *1 (-1145 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *1))
- (-4 *1 (-1207 *4 *5 *6 *7)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *4 (-13 (-848) (-365))) (-5 *2 (-112)) (-5 *1 (-1060 *4 *3))
- (-4 *3 (-1240 *4)))))
-(((*1 *2 *2 *2 *3 *3)
- (-12 (-5 *3 (-771)) (-4 *4 (-1049)) (-5 *1 (-1236 *4 *2))
- (-4 *2 (-1240 *4)))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
+ (-644
+ (-2 (|:| -4157 (-771))
+ (|:| |eqns|
+ (-644
+ (-2 (|:| |det| *8) (|:| |rows| (-644 (-566)))
+ (|:| |cols| (-644 (-566))))))
+ (|:| |fgb| (-644 *8)))))
+ (-5 *1 (-924 *5 *6 *7 *8)) (-5 *4 (-771)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
+ (-12 (-4 *3 (-558)) (-4 *3 (-172)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2))
+ (-4 *2 (-687 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-183))) (-5 *1 (-140)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *7 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-4 *7 (-558))
+ (-4 *8 (-949 *7 *5 *6))
+ (-5 *2 (-2 (|:| -2456 (-771)) (|:| -3223 *3) (|:| |radicand| *3)))
+ (-5 *1 (-953 *5 *6 *7 *8 *3)) (-5 *4 (-771))
+ (-4 *3
+ (-13 (-365)
+ (-10 -8 (-15 -3780 ($ *8)) (-15 -3088 (*8 $)) (-15 -3100 (*8 $))))))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-308)) (-4 *3 (-992 *2)) (-4 *4 (-1240 *3))
+ (-5 *1 (-415 *2 *3 *4 *5)) (-4 *5 (-13 (-411 *3 *4) (-1038 *3))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1175)) (-4 *5 (-365)) (-5 *2 (-1155 (-1155 (-952 *5))))
+ (-5 *1 (-1272 *5)) (-5 *4 (-1155 (-952 *5))))))
+(((*1 *1 *2) (-12 (-5 *2 (-819 *3)) (-4 *3 (-850)) (-5 *1 (-672 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-225)) (-5 *1 (-306)))))
(((*1 *1 *1 *2)
- (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1214)) (-4 *3 (-375 *2))
- (-4 *4 (-375 *2))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-604 *3 *2)) (-4 *3 (-1099))
- (-4 *2 (-1214)))))
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1099)) (-5 *1 (-103 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
+ (-5 *2
+ (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566))
+ (|:| |success| (-112))))
+ (-5 *1 (-789)) (-5 *5 (-566)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-508)) (-5 *1 (-281))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-3 (-566) (-225) (-508) (-1157) (-1180)))
+ (-5 *1 (-1180)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1099)) (-4 *5 (-1099))
+ (-5 *2 (-1 *5)) (-5 *1 (-683 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *1 (-1026 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-508)) (-5 *2 (-644 (-965))) (-5 *1 (-292)))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-771)) (-5 *2 (-644 (-1175))) (-5 *1 (-210))
(-5 *3 (-1175))))
@@ -15330,92 +14974,317 @@
((*1 *2 *1)
(-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
(-5 *2 (-644 *3)))))
-(((*1 *2 *3 *4 *5 *5 *5 *5 *6 *4 *4 *4 *4 *4 *5 *4 *5 *5 *4)
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-225)) (-5 *5 (-566)) (-5 *2 (-1209 *3))
+ (-5 *1 (-790 *3)) (-4 *3 (-974))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-112))
+ (-5 *1 (-1209 *2)) (-4 *2 (-974)))))
+(((*1 *1 *1) (-5 *1 (-1062))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
+ (-247 *4 (-409 (-566)))))
+ (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112))
+ (-5 *1 (-507 *4 *5)))))
+(((*1 *2 *1) (-12 (-4 *1 (-255 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-38 (-409 (-566)))) (-5 *1 (-1257 *3 *2))
+ (-4 *2 (-1255 *3)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-862)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035))
+ (-5 *1 (-748)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-422 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1199) (-432 *3)))
+ (-14 *4 (-1175)) (-14 *5 *2)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-4 *2 (-13 (-27) (-1199) (-432 *3) (-10 -8 (-15 -3780 ($ *4)))))
+ (-4 *4 (-848))
+ (-4 *5
+ (-13 (-1242 *2 *4) (-365) (-1199)
+ (-10 -8 (-15 -2578 ($ $)) (-15 -3921 ($ $)))))
+ (-5 *1 (-424 *3 *2 *4 *5 *6 *7)) (-4 *6 (-983 *5)) (-14 *7 (-1175)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-644 (-612 *4))) (-4 *4 (-432 *3)) (-4 *3 (-1099))
+ (-5 *1 (-575 *3 *4))))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-889 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099))))
+ ((*1 *1 *2 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1 *1) (-12 (-4 *1 (-1097 *2)) (-4 *2 (-1099)))))
+(((*1 *2 *3 *4 *4 *5 *4 *4 *5)
(-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-225)))
- (-5 *6 (-225)) (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *7 *7)) (-4 *7 (-1240 *6))
- (-4 *6 (-13 (-27) (-432 *5))) (-4 *5 (-13 (-558) (-1038 (-566))))
- (-4 *8 (-1240 (-409 *7))) (-5 *2 (-587 *3))
- (-5 *1 (-554 *5 *6 *7 *8 *3)) (-4 *3 (-344 *6 *7 *8)))))
+ (-5 *2 (-1035)) (-5 *1 (-757)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-771)) (-5 *1 (-588 *2)) (-4 *2 (-547))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-2 (|:| -3819 *3) (|:| -2456 (-771)))) (-5 *1 (-588 *3))
+ (-4 *3 (-547)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
+ (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
+(((*1 *1) (-5 *1 (-141))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-644 *5)) (-5 *4 (-566)) (-4 *5 (-848)) (-4 *5 (-365))
+ (-5 *2 (-771)) (-5 *1 (-945 *5 *6)) (-4 *6 (-1240 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112))
+ (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))))
+(((*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 (-689 (-225))) (-5 *5 (-112)) (-5 *6 (-225))
+ (-5 *7 (-689 (-566)))
+ (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-80 CONFUN))))
+ (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-77 OBJFUN))))
+ (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-753)))))
+(((*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-632)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-771)) (-5 *3 (-943 *4)) (-4 *1 (-1133 *4))
+ (-4 *4 (-1049))))
+ ((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-771)) (-5 *4 (-943 (-225))) (-5 *2 (-1269))
+ (-5 *1 (-1266)))))
+(((*1 *1 *1)
+ (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850))
+ (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-682 *2)) (-4 *2 (-1099))))
+ (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6))
+ (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7))))
+ (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))))
+(((*1 *2 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-399)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 *3)) (-4 *3 (-1108 *5 *6 *7 *8))
+ (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-112))
+ (-5 *1 (-592 *5 *6 *7 *8 *3)))))
+(((*1 *2 *1 *3)
+ (|partial| -12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-5 *2 (-112))
+ (-5 *1 (-889 *4 *5)) (-4 *5 (-1099))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 (-644 *5) (-644 *5))) (-5 *4 (-566))
- (-5 *2 (-644 *5)) (-5 *1 (-682 *5)) (-4 *5 (-1099)))))
+ (-12 (-5 *4 (-892 *5)) (-4 *5 (-1099)) (-5 *2 (-112))
+ (-5 *1 (-890 *5 *3)) (-4 *3 (-1214))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *6)) (-5 *4 (-892 *5)) (-4 *5 (-1099))
+ (-4 *6 (-1214)) (-5 *2 (-112)) (-5 *1 (-890 *5 *6)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-351)) (-4 *5 (-330 *4)) (-4 *6 (-1240 *5))
+ (-5 *2 (-644 *3)) (-5 *1 (-777 *4 *5 *6 *3 *7)) (-4 *3 (-1240 *6))
+ (-14 *7 (-921)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-771)) (-5 *1 (-588 *2)) (-4 *2 (-547)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1 (-538) (-644 (-538)))) (-5 *1 (-114))))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-538) (-644 (-538)))) (-5 *1 (-114))))
+ ((*1 *1) (-5 *1 (-580))))
+(((*1 *1) (-4 *1 (-34))) ((*1 *1) (-5 *1 (-292)))
+ ((*1 *1) (-5 *1 (-862)))
+ ((*1 *1)
+ (-12 (-4 *2 (-454)) (-4 *3 (-850)) (-4 *4 (-793))
+ (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3))))
+ ((*1 *1) (-5 *1 (-1084)))
+ ((*1 *1)
+ (-12 (-5 *1 (-1139 *2 *3)) (-4 *2 (-13 (-1099) (-34)))
+ (-4 *3 (-13 (-1099) (-34)))))
+ ((*1 *1) (-5 *1 (-1178))) ((*1 *1) (-5 *1 (-1179))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1249 *3 *4 *5)) (-4 *3 (-365)) (-14 *4 (-1175))
+ (-14 *5 *3) (-5 *1 (-320 *3 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-1 (-381))) (-5 *1 (-1040)) (-5 *3 (-381)))))
+(((*1 *2 *1) (-12 (-4 *1 (-406)) (-5 *2 (-566))))
+ ((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-699)))))
+(((*1 *1 *1) (-5 *1 (-1062))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 (-169 (-409 (-566)))))
- (-5 *2
- (-644
- (-2 (|:| |outval| (-169 *4)) (|:| |outmult| (-566))
- (|:| |outvect| (-644 (-689 (-169 *4)))))))
- (-5 *1 (-764 *4)) (-4 *4 (-13 (-365) (-848))))))
+ (-12 (-5 *3 (-644 (-1 (-112) *8))) (-4 *8 (-1064 *5 *6 *7))
+ (-4 *5 (-558)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-2 (|:| |goodPols| (-644 *8)) (|:| |badPols| (-644 *8))))
+ (-5 *1 (-977 *5 *6 *7 *8)) (-5 *4 (-644 *8)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1084)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558))))
+ ((*1 *1 *1) (|partial| -4 *1 (-722))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175))
+ (-14 *4 *2))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049))
+ (-4 *2 (-1224 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-169 (-566))) (-5 *2 (-112)) (-5 *1 (-448))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-506 (-409 (-566)) (-240 *5 (-771)) (-864 *4)
+ (-247 *4 (-409 (-566)))))
+ (-14 *4 (-644 (-1175))) (-14 *5 (-771)) (-5 *2 (-112))
+ (-5 *1 (-507 *4 *5))))
+ ((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-961 *3)) (-4 *3 (-547))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1218)) (-5 *2 (-112)))))
+(((*1 *1 *1 *1) (-4 *1 (-475))) ((*1 *1 *1 *1) (-4 *1 (-761))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1157))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-112))
- (-5 *1 (-224 *4 *5)) (-4 *5 (-13 (-1199) (-29 *4))))))
+ (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-419 *4)))))
+(((*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1178)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1175)) (-5 *2 (-538)) (-5 *1 (-537 *4))
- (-4 *4 (-1214)))))
+ (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))))
+(((*1 *2 *3) (-12 (-5 *3 (-822)) (-5 *2 (-52)) (-5 *1 (-829)))))
+(((*1 *2)
+ (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-644
+ (-2 (|:| |scalar| (-409 (-566))) (|:| |coeff| (-1171 *3))
+ (|:| |logand| (-1171 *3)))))
+ (-5 *1 (-587 *3)) (-4 *3 (-365)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
(((*1 *2 *1)
(-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 *2)))
(-5 *2 (-892 *3)) (-5 *1 (-1075 *3 *4 *5))
(-4 *5 (-13 (-432 *4) (-886 *3) (-614 *2))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 *1)) (|has| *1 (-6 -4418)) (-4 *1 (-1010 *3))
- (-4 *3 (-1214)))))
+(((*1 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-971)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *4)) (-4 *4 (-351)) (-5 *2 (-112))
+ (-5 *1 (-359 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-112))
+ (-5 *1 (-530 *4)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-689 *5))) (-5 *4 (-566)) (-4 *5 (-365))
- (-4 *5 (-1049)) (-5 *2 (-112)) (-5 *1 (-1029 *5))))
+ (-12 (-5 *4 (-644 *3)) (-4 *3 (-949 *5 *6 *7)) (-4 *5 (-454))
+ (-4 *6 (-793)) (-4 *7 (-850))
+ (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
+ (-5 *1 (-451 *5 *6 *7 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4405)) (-4 *1 (-406))))
+ ((*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921))))
+ ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699))))
+ ((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-699)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-644 (-171)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |stiffness| (-381)) (|:| |stability| (-381))
+ (|:| |expense| (-381)) (|:| |accuracy| (-381))
+ (|:| |intermediateResults| (-381))))
+ (-5 *2 (-1035)) (-5 *1 (-306)))))
+(((*1 *2 *3 *2)
+ (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3))
+ (-4 *3 (-1240 (-169 *2)))))
((*1 *2 *3)
- (-12 (-5 *3 (-644 (-689 *4))) (-4 *4 (-365)) (-4 *4 (-1049))
- (-5 *2 (-112)) (-5 *1 (-1029 *4)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-964 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
+ (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3))
+ (-4 *3 (-1240 (-169 *2))))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225)))
+ (-5 *2 (-1035)) (-5 *1 (-747)))))
+(((*1 *2 *1) (-12 (-4 *1 (-995 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1092 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1186 (-644 *4))) (-4 *4 (-850))
+ (-5 *2 (-644 (-644 *4))) (-5 *1 (-1185 *4)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-756)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1175))
+ (-4 *5 (-13 (-308) (-147) (-1038 (-566)) (-639 (-566))))
+ (-5 *2 (-587 *3)) (-5 *1 (-428 *5 *3))
+ (-4 *3 (-13 (-1199) (-29 *5))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-1188 *2)) (-4 *2 (-365)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-1240 *4)) (-5 *1 (-541 *4 *2 *5 *6))
+ (-4 *4 (-308)) (-14 *5 *4) (-14 *6 (-1 *4 *4 (-771))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558))
+ (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3))
+ (-4 *2
+ (-13 (-365) (-303)
+ (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $))
+ (-15 -3100 ((-1124 *3 (-612 $)) $))
+ (-15 -3780 ($ (-1124 *3 (-612 $))))))))))
+(((*1 *1) (-5 *1 (-331))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-281)))))
+(((*1 *2) (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1267))))
+ ((*1 *2 *2) (-12 (-5 *2 (-644 (-771))) (-5 *1 (-1267)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-757)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 (-1277 *4 *5 *6 *7)))
+ (-5 *1 (-1277 *4 *5 *6 *7))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-644 *9)) (-5 *4 (-1 (-112) *9 *9))
+ (-5 *5 (-1 *9 *9 *9)) (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558))
+ (-4 *7 (-793)) (-4 *8 (-850)) (-5 *2 (-644 (-1277 *6 *7 *8 *9)))
+ (-5 *1 (-1277 *6 *7 *8 *9)))))
+(((*1 *2 *3 *4 *5 *4)
+ (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *5 (-112))
+ (-5 *2 (-1035)) (-5 *1 (-745)))))
(((*1 *1 *2)
(-12 (-4 *3 (-1049)) (-5 *1 (-827 *2 *3)) (-4 *2 (-708 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-566)) (-4 *4 (-1240 (-409 *3))) (-5 *2 (-921))
- (-5 *1 (-913 *4 *5)) (-4 *5 (-1240 (-409 *4))))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-1 (-587 *3) *3 (-1175)))
- (-5 *6
- (-1 (-3 (-2 (|:| |special| *3) (|:| |integrand| *3)) "failed") *3
- (-1175)))
- (-4 *3 (-285)) (-4 *3 (-629)) (-4 *3 (-1038 *4)) (-4 *3 (-432 *7))
- (-5 *4 (-1175)) (-4 *7 (-614 (-892 (-566)))) (-4 *7 (-454))
- (-4 *7 (-886 (-566))) (-4 *7 (-1099)) (-5 *2 (-587 *3))
- (-5 *1 (-575 *7 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *3 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1099)) (-4 *6 (-1099))
+ (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-684 *4 *5 *6)) (-4 *4 (-1099)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-850)) (-5 *2 (-644 (-644 *4))) (-5 *1 (-1185 *4))
+ (-5 *3 (-644 *4)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-1174)) (-5 *1 (-331)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-409 (-952 *4))) (-4 *4 (-308))
+ (-5 *2 (-409 (-420 (-952 *4)))) (-5 *1 (-1042 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-1049))
+ (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285)))
+ (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *1 *2 *3)
+ (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *2 *3)
+ (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1157)) (-5 *1 (-1266))))
+ ((*1 *2 *1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1266))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1266)))))
+(((*1 *1 *1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049))
+ (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))))
+(((*1 *2 *3 *3 *4 *3)
(-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
(-5 *1 (-755)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *3 (-644 (-264)))
- (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-470))))
- ((*1 *2 *1) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-470)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
- ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
- ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566)))))
- (-4 *3 (-1240 *4)) (-5 *1 (-809 *4 *3 *2 *5)) (-4 *2 (-656 *3))
- (-4 *5 (-656 (-409 *3)))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-409 *5))
- (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4))
- (-5 *1 (-809 *4 *5 *2 *6)) (-4 *2 (-656 *5)) (-4 *6 (-656 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-862) (-862))) (-5 *1 (-114))))
((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-862) (-644 (-862)))) (-5 *1 (-114))))
((*1 *2 *1)
@@ -15424,1055 +15293,1227 @@
(-12 (-5 *2 (-1269)) (-5 *1 (-214 *3))
(-4 *3
(-13 (-850)
- (-10 -8 (-15 -4386 ((-1157) $ (-1175))) (-15 -1697 (*2 $))
- (-15 -2509 (*2 $)))))))
+ (-10 -8 (-15 -4393 ((-1157) $ (-1175))) (-15 -1736 (*2 $))
+ (-15 -3018 (*2 $)))))))
((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-396))))
((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-396))))
((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-504))))
((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-710))))
((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1194))))
((*1 *2 *1 *3) (-12 (-5 *3 (-566)) (-5 *2 (-1269)) (-5 *1 (-1194)))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-755)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1038 (-566))) (-4 *1 (-303)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
- (-5 *1 (-747)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))))
-(((*1 *2 *1) (-12 (-5 *2 (-186)) (-5 *1 (-138))))
- ((*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-186)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-558)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850))))
- ((*1 *2 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-689 (-409 (-952 (-566)))))
- (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365)))
- (-4 *3 (-1240 *4)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-566))
- (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-109))) (-5 *1 (-175)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519)))))
-(((*1 *2)
- (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
- (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-331)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566))) (-5 *2 (-112))
- (-5 *1 (-1291 *4)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-614 (-892 *3))) (-4 *3 (-886 *3)) (-4 *3 (-454))
- (-5 *1 (-1205 *3 *2)) (-4 *2 (-614 (-892 *3))) (-4 *2 (-886 *3))
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
(-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1035)) (-5 *3 (-1175)) (-5 *1 (-268)))))
-(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
- (-12 (-5 *4 (-566)) (-5 *5 (-1157)) (-5 *6 (-689 (-225)))
- (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))))
- (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))
- (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-71 PEDERV))))
- (-5 *10 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))
- (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171))))
- ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1265))))
- ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
- (|partial| -12 (-5 *2 (-644 (-1171 *13))) (-5 *3 (-1171 *13))
- (-5 *4 (-644 *12)) (-5 *5 (-644 *10)) (-5 *6 (-644 *13))
- (-5 *7 (-644 (-644 (-2 (|:| -1942 (-771)) (|:| |pcoef| *13)))))
- (-5 *8 (-644 (-771))) (-5 *9 (-1264 (-644 (-1171 *10))))
- (-4 *12 (-850)) (-4 *10 (-308)) (-4 *13 (-949 *10 *11 *12))
- (-4 *11 (-793)) (-5 *1 (-707 *11 *12 *10 *13)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-409 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-558))
- (-4 *4 (-1049)) (-4 *2 (-1255 *4)) (-5 *1 (-1258 *4 *5 *6 *2))
- (-4 *6 (-656 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-117 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-566))))
- ((*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-871 *3)) (-14 *3 *2)))
- ((*1 *1 *1) (-12 (-5 *1 (-871 *2)) (-14 *2 (-566))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-566)) (-14 *3 *2) (-5 *1 (-872 *3 *4))
- (-4 *4 (-869 *3))))
- ((*1 *1 *1)
- (-12 (-14 *2 (-566)) (-5 *1 (-872 *2 *3)) (-4 *3 (-869 *2))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-566)) (-4 *1 (-1226 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-1255 *3))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1226 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-1255 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-420 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
- (-5 *2
- (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566))
- (|:| |success| (-112))))
- (-5 *1 (-789)) (-5 *5 (-566)))))
(((*1 *1 *2 *3)
- (-12 (-5 *1 (-429 *3 *2)) (-4 *3 (-13 (-172) (-38 (-409 (-566)))))
- (-4 *2 (-13 (-850) (-21))))))
-(((*1 *2 *1 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-308))))
- ((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4067 *1)))
- (-4 *1 (-308)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 (-1 *6 (-644 *6))))
- (-4 *5 (-38 (-409 (-566)))) (-4 *6 (-1255 *5)) (-5 *2 (-644 *6))
- (-5 *1 (-1257 *5 *6)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-644 (-771)))
- (-5 *1 (-904 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-558)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *2 *3 *4 *5)
- (-12 (-5 *2 (-644 *9)) (-5 *3 (-1 (-112) *9))
- (-5 *4 (-1 (-112) *9 *9)) (-5 *5 (-1 *9 *9 *9))
- (-4 *9 (-1064 *6 *7 *8)) (-4 *6 (-558)) (-4 *7 (-793))
- (-4 *8 (-850)) (-5 *1 (-977 *6 *7 *8 *9)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *3))
- (-4 *3 (-1240 (-409 *4))))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-365)) (-5 *1 (-766 *2 *3)) (-4 *2 (-708 *3))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *1 *1 *1) (-4 *1 (-547))))
-(((*1 *1 *2 *3 *1)
- (-12 (-14 *4 (-644 (-1175))) (-4 *2 (-172))
- (-4 *3 (-238 (-2997 *4) (-771)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2168 *5) (|:| -3250 *3))
- (-2 (|:| -2168 *5) (|:| -3250 *3))))
- (-5 *1 (-463 *4 *2 *5 *3 *6 *7)) (-4 *5 (-850))
- (-4 *7 (-949 *2 *3 (-864 *4))))))
+ (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
+ (-14 *4 *3))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1 *5)) (-4 *5 (-1099)) (-5 *2 (-1 *5 *4))
- (-5 *1 (-683 *4 *5)) (-4 *4 (-1099))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-1099)) (-5 *1 (-929 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1175)) (-5 *2 (-317 (-566))) (-5 *1 (-930))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1281 *3 *2)) (-4 *3 (-850)) (-4 *2 (-1049))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-1049)) (-5 *1 (-1287 *2 *3)) (-4 *3 (-846)))))
-(((*1 *1 *2) (-12 (-5 *2 (-644 (-1157))) (-5 *1 (-331))))
- ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-331)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1163 3 *3)) (-4 *3 (-1049)) (-4 *1 (-1133 *3))))
- ((*1 *1) (-12 (-4 *1 (-1133 *2)) (-4 *2 (-1049)))))
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1269))
+ (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))))
+(((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-186)) (-5 *1 (-138))))
+ ((*1 *2 *1) (-12 (-4 *1 (-185)) (-5 *2 (-186)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-771)) (-5 *4 (-1264 *2)) (-4 *5 (-308))
- (-4 *6 (-992 *5)) (-4 *2 (-13 (-411 *6 *7) (-1038 *6)))
- (-5 *1 (-415 *5 *6 *7 *2)) (-4 *7 (-1240 *6)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-823)) (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-612 *4)) (-4 *4 (-1099)) (-4 *2 (-1099))
- (-5 *1 (-611 *2 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-359 *3)) (-4 *3 (-351)))))
-(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-157))))
- ((*1 *2 *1) (-12 (-5 *2 (-157)) (-5 *1 (-874))))
- ((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-909)) (-5 *2 (-420 (-1171 *1))) (-5 *3 (-1171 *1)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-1175)) (-5 *2 (-1 *7 *5 *6)) (-5 *1 (-702 *3 *5 *6 *7))
- (-4 *3 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214))
- (-4 *7 (-1214))))
+ (-12 (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)) (-4 *5 (-365))
+ (-5 *2 (-112)) (-5 *1 (-667 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-1175)) (-5 *2 (-1 *6 *5)) (-5 *1 (-706 *3 *5 *6))
- (-4 *3 (-614 (-538))) (-4 *5 (-1214)) (-4 *6 (-1214)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-976 *4 *5 *6 *3)) (-4 *4 (-1049)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558))
- (-5 *2 (-2 (|:| |rnum| *4) (|:| |polnum| *3) (|:| |den| *4))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-308))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-449 *4 *5 *6 *2)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2)
- (-12 (-4 *3 (-1218)) (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4)))
- (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519))))
- ((*1 *2 *1)
- (-12 (-4 *2 (-13 (-1099) (-34))) (-5 *1 (-1139 *3 *2))
- (-4 *3 (-13 (-1099) (-34)))))
- ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1275)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-1064 *4 *5 *6))
- (-5 *2 (-2 (|:| |goodPols| (-644 *7)) (|:| |badPols| (-644 *7))))
- (-5 *1 (-977 *4 *5 *6 *7)) (-5 *3 (-644 *7)))))
-(((*1 *2 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049))))
- ((*1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-447 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-558)) (-5 *2 (-112)))))
+ (-12 (-4 *5 (-365)) (-4 *6 (-13 (-375 *5) (-10 -7 (-6 -4415))))
+ (-4 *4 (-13 (-375 *5) (-10 -7 (-6 -4415)))) (-5 *2 (-112))
+ (-5 *1 (-668 *5 *6 *4 *3)) (-4 *3 (-687 *5 *6 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035))
+ (-5 *1 (-748)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 (-771) *2)) (-5 *4 (-771)) (-4 *2 (-1099))
+ (-5 *1 (-678 *2))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1 *3 (-771) *3)) (-4 *3 (-1099)) (-5 *1 (-682 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-689 (-317 (-225)))) (-5 *2 (-381)) (-5 *1 (-205)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147))
- (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *1 (-977 *3 *4 *5 *6)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-549))))))
-(((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267))))
- ((*1 *2 *2) (-12 (-5 *2 (-921)) (-5 *1 (-1267)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *1)) (-5 *4 (-1264 *1)) (-4 *1 (-639 *5))
- (-4 *5 (-1049))
- (-5 *2 (-2 (|:| -1380 (-689 *5)) (|:| |vec| (-1264 *5))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-689 *1)) (-4 *1 (-639 *4)) (-4 *4 (-1049))
- (-5 *2 (-689 *4)))))
+ (-12 (-5 *2 (-566)) (-5 *1 (-447 *3)) (-4 *3 (-406)) (-4 *3 (-1049)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-943 *5)) (-4 *5 (-1049)) (-5 *2 (-771))
+ (-5 *1 (-1163 *4 *5)) (-14 *4 (-921))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-771))) (-5 *3 (-771)) (-5 *1 (-1163 *4 *5))
+ (-14 *4 (-921)) (-4 *5 (-1049))))
+ ((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-771))) (-5 *3 (-943 *5)) (-4 *5 (-1049))
+ (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5))
+ (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-1277 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558))
+ (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1277 *5 *6 *7 *8)))))
(((*1 *2)
- (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
- (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
- (-5 *1 (-1071 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6))))
+ (-12 (-4 *4 (-365)) (-5 *2 (-921)) (-5 *1 (-329 *3 *4))
+ (-4 *3 (-330 *4))))
((*1 *2)
- (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
- (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
- (-5 *1 (-1107 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))))
-(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1047)))))
+ (-12 (-4 *4 (-365)) (-5 *2 (-833 (-921))) (-5 *1 (-329 *3 *4))
+ (-4 *3 (-330 *4))))
+ ((*1 *2) (-12 (-4 *1 (-330 *3)) (-4 *3 (-365)) (-5 *2 (-921))))
+ ((*1 *2)
+ (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-833 (-921))))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-114)) (-5 *4 (-644 *2)) (-5 *1 (-113 *2))
+ (-4 *2 (-1099))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 (-644 *4))) (-4 *4 (-1099))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-114)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1099))
+ (-5 *1 (-113 *4))))
+ ((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-114)) (-5 *2 (-1 *4 (-644 *4)))
+ (-5 *1 (-113 *4)) (-4 *4 (-1099))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-648 *3)) (-4 *3 (-1049))
+ (-5 *1 (-714 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-836 *3)))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *3 (-114)) (-5 *4 (-771))
+ (-4 *5 (-13 (-454) (-1038 (-566)))) (-4 *5 (-558))
+ (-5 *1 (-41 *5 *2)) (-4 *2 (-432 *5))
+ (-4 *2
+ (-13 (-365) (-303)
+ (-10 -8 (-15 -3088 ((-1124 *5 (-612 $)) $))
+ (-15 -3100 ((-1124 *5 (-612 $)) $))
+ (-15 -3780 ($ (-1124 *5 (-612 $))))))))))
+(((*1 *1 *2)
+ (|partial| -12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5))
+ (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-1277 *3 *4 *5 *6))))
+ ((*1 *1 *2 *3 *4)
+ (|partial| -12 (-5 *2 (-644 *8)) (-5 *3 (-1 (-112) *8 *8))
+ (-5 *4 (-1 *8 *8 *8)) (-4 *8 (-1064 *5 *6 *7)) (-4 *5 (-558))
+ (-4 *6 (-793)) (-4 *7 (-850)) (-5 *1 (-1277 *5 *6 *7 *8)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-689 *5)) (-4 *5 (-1049)) (-5 *1 (-1054 *3 *4 *5))
+ (-14 *3 (-771)) (-14 *4 (-771)))))
+(((*1 *1 *1) (-4 *1 (-1143))))
+(((*1 *2 *3 *4 *5 *5 *6)
+ (-12 (-5 *3 (-1 (-225) (-225) (-225)))
+ (-5 *4 (-3 (-1 (-225) (-225) (-225) (-225)) "undefined"))
+ (-5 *5 (-1093 (-225))) (-5 *6 (-644 (-264))) (-5 *2 (-1132 (-225)))
+ (-5 *1 (-697)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1265))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1266)))))
(((*1 *2 *3 *2)
- (-12 (-5 *2 (-874)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-558)) (-4 *2 (-1049))))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-969 *3 *2)) (-4 *2 (-1240 *3))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-558))))
- ((*1 *2 *3 *3 *1)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *3 (-1064 *4 *5 *6))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *1))))
- (-4 *1 (-1070 *4 *5 *6 *3)))))
-(((*1 *1 *1) (-4 *1 (-547))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-454)) (-4 *4 (-820))
- (-14 *5 (-1175)) (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1049)) (-5 *1 (-1236 *3 *2)) (-4 *2 (-1240 *3)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-771)) (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
+ (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *3 (-644 (-264)))
+ (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-264))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-470))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-1093 (-381)))) (-5 *1 (-470)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
+ (-4 *4 (-13 (-1099) (-34))))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-171))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1265))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *5)))))
(((*1 *2 *2)
(|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-295 *2)) (-4 *2 (-726)) (-4 *2 (-1214)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-508)) (-5 *3 (-644 (-965))) (-5 *1 (-292)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
(((*1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-532 *3)) (-4 *3 (-13 (-726) (-25))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2212 *4) (|:| -2168 (-1119))))))
- (-4 *4 (-351)) (-5 *2 (-1269)) (-5 *1 (-530 *4)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-689 (-225))) (-5 *4 (-566)) (-5 *2 (-1035))
- (-5 *1 (-755)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519)))))
+ (-12 (-4 *2 (-13 (-432 *3) (-1002))) (-5 *1 (-277 *3 *2))
+ (-4 *3 (-558)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850))
+ (-5 *2 (-2 (|:| -3223 *1) (|:| |gap| (-771)) (|:| -4228 *1)))
+ (-4 *1 (-1064 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2 (-2 (|:| -3223 *1) (|:| |gap| (-771)) (|:| -4228 *1)))
+ (-4 *1 (-1064 *3 *4 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-971)))))
+(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
+ ((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-469))))
+ ((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1207 *4 *5 *6 *3)) (-4 *4 (-558)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-558) (-147))) (-5 *2 (-644 *3))
+ (-5 *1 (-1234 *4 *3)) (-4 *3 (-1240 *4)))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-1131 *4 *2))
- (-4 *2 (-13 (-604 (-566) *4) (-10 -7 (-6 -4417) (-6 -4418))))))
+ (-4 *2 (-13 (-604 (-566) *4) (-10 -7 (-6 -4414) (-6 -4415))))))
((*1 *2 *2)
(-12 (-4 *3 (-850)) (-4 *3 (-1214)) (-5 *1 (-1131 *3 *2))
- (-4 *2 (-13 (-604 (-566) *3) (-10 -7 (-6 -4417) (-6 -4418)))))))
+ (-4 *2 (-13 (-604 (-566) *3) (-10 -7 (-6 -4414) (-6 -4415)))))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-756)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-1175)) (-4 *5 (-614 (-892 (-566))))
+ (-4 *5 (-886 (-566)))
+ (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566))))
+ (-5 *2 (-2 (|:| |special| *3) (|:| |integrand| *3)))
+ (-5 *1 (-569 *5 *3)) (-4 *3 (-629))
+ (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
+ ((*1 *2 *2 *3 *4 *4)
+ (|partial| -12 (-5 *3 (-1175)) (-5 *4 (-843 *2)) (-4 *2 (-1138))
+ (-4 *2 (-13 (-27) (-1199) (-432 *5)))
+ (-4 *5 (-614 (-892 (-566)))) (-4 *5 (-886 (-566)))
+ (-4 *5 (-13 (-1038 (-566)) (-454) (-639 (-566))))
+ (-5 *1 (-569 *5 *2)))))
+(((*1 *2 *3) (-12 (-5 *3 (-409 (-566))) (-5 *2 (-225)) (-5 *1 (-306)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-3 (-409 (-952 *5)) (-1164 (-1175) (-952 *5))))
+ (-4 *5 (-454)) (-5 *2 (-644 (-689 (-409 (-952 *5)))))
+ (-5 *1 (-293 *5)) (-5 *4 (-689 (-409 (-952 *5)))))))
+(((*1 *1 *1 *2 *3) (-12 (-5 *2 (-508)) (-5 *3 (-774)) (-5 *1 (-114))))
+ ((*1 *1 *1 *2 *3) (-12 (-5 *2 (-1157)) (-5 *3 (-774)) (-5 *1 (-114)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5)
+ (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-1171 *3))
+ (-4 *3 (-13 (-432 *6) (-27) (-1199)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2 (-2 (|:| -2883 *3) (|:| |coeff| *3)))
+ (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099))))
+ ((*1 *2 *3 *4 *4 *3 *4 *3 *5)
+ (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-409 (-1171 *3)))
+ (-4 *3 (-13 (-432 *6) (-27) (-1199)))
+ (-4 *6 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2 (-2 (|:| -2883 *3) (|:| |coeff| *3)))
+ (-5 *1 (-562 *6 *3 *7)) (-4 *7 (-1099)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-771)) (-5 *4 (-566)) (-5 *1 (-447 *2)) (-4 *2 (-1049)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-862)))))
+ (-12 (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2327 *4))))
+ (-5 *1 (-1140 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
+ (-4 *4 (-13 (-1099) (-34))))))
(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))))
+(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-1219))))))
+(((*1 *2 *1 *1)
(-12
(-5 *2
- (-2 (|:| |fn| (-317 (-225))) (|:| -2759 (-644 (-225)))
- (|:| |lb| (-644 (-843 (-225)))) (|:| |cf| (-644 (-317 (-225))))
- (|:| |ub| (-644 (-843 (-225))))))
- (-5 *1 (-268)))))
-(((*1 *1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))))
-(((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1269)) (-5 *1 (-1137))))
+ (-2 (|:| |lm| (-388 *3)) (|:| |mm| (-388 *3)) (|:| |rm| (-388 *3))))
+ (-5 *1 (-388 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |lm| (-819 *3)) (|:| |mm| (-819 *3)) (|:| |rm| (-819 *3))))
+ (-5 *1 (-819 *3)) (-4 *3 (-850)))))
+(((*1 *2)
+ (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
+(((*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-128)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1125 *4 *3 *5))) (-4 *4 (-38 (-409 (-566))))
+ (-4 *4 (-1049)) (-4 *3 (-850)) (-5 *1 (-1125 *4 *3 *5))
+ (-4 *5 (-949 *4 (-533 *3) *3))))
+ ((*1 *1 *2 *3 *4)
+ (-12 (-5 *2 (-1 (-1208 *4))) (-5 *3 (-1175)) (-5 *1 (-1208 *4))
+ (-4 *4 (-38 (-409 (-566)))) (-4 *4 (-1049)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-903 *3)) (-4 *3 (-1099)) (-5 *2 (-1101 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1099)) (-5 *2 (-1101 (-644 *4))) (-5 *1 (-904 *4))
+ (-5 *3 (-644 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1099)) (-5 *2 (-1101 (-1101 *4))) (-5 *1 (-904 *4))
+ (-5 *3 (-1101 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *2 (-1101 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *2)) (-4 *2 (-172))))
+ ((*1 *2) (-12 (-4 *2 (-172)) (-5 *1 (-418 *3 *2)) (-4 *3 (-419 *2))))
+ ((*1 *2) (-12 (-4 *1 (-419 *2)) (-4 *2 (-172)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-295 *2)) (-4 *2 (-726)) (-4 *2 (-1214)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566)))))
+ (-4 *3 (-1240 *4)) (-5 *1 (-809 *4 *3 *2 *5)) (-4 *2 (-656 *3))
+ (-4 *5 (-656 (-409 *3)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-409 *5))
+ (-4 *4 (-13 (-365) (-147) (-1038 (-409 (-566))))) (-4 *5 (-1240 *4))
+ (-5 *1 (-809 *4 *5 *2 *6)) (-4 *2 (-656 *5)) (-4 *6 (-656 *3)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-644 (-771))) (-5 *3 (-171)) (-5 *1 (-1163 *4 *5))
+ (-14 *4 (-921)) (-4 *5 (-1049)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1141 *3 *4)) (-14 *3 (-921)) (-4 *4 (-365))
+ (-5 *1 (-993 *3 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-892 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1120 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))))
+(((*1 *1) (-4 *1 (-351)))
((*1 *2 *3)
- (-12 (-5 *3 (-644 (-862))) (-5 *2 (-1269)) (-5 *1 (-1137)))))
+ (-12 (-5 *3 (-644 *5)) (-4 *5 (-432 *4)) (-4 *4 (-13 (-558) (-147)))
+ (-5 *2
+ (-2 (|:| |primelt| *5) (|:| |poly| (-644 (-1171 *5)))
+ (|:| |prim| (-1171 *5))))
+ (-5 *1 (-434 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-13 (-558) (-147)))
+ (-5 *2
+ (-2 (|:| |primelt| *3) (|:| |pol1| (-1171 *3))
+ (|:| |pol2| (-1171 *3)) (|:| |prim| (-1171 *3))))
+ (-5 *1 (-434 *4 *3)) (-4 *3 (-27)) (-4 *3 (-432 *4))))
+ ((*1 *2 *3 *4 *3 *4)
+ (-12 (-5 *3 (-952 *5)) (-5 *4 (-1175)) (-4 *5 (-13 (-365) (-147)))
+ (-5 *2
+ (-2 (|:| |coef1| (-566)) (|:| |coef2| (-566))
+ (|:| |prim| (-1171 *5))))
+ (-5 *1 (-960 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175)))
+ (-4 *5 (-13 (-365) (-147)))
+ (-5 *2
+ (-2 (|:| -3223 (-644 (-566))) (|:| |poly| (-644 (-1171 *5)))
+ (|:| |prim| (-1171 *5))))
+ (-5 *1 (-960 *5))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-644 (-952 *6))) (-5 *4 (-644 (-1175))) (-5 *5 (-1175))
+ (-4 *6 (-13 (-365) (-147)))
+ (-5 *2
+ (-2 (|:| -3223 (-644 (-566))) (|:| |poly| (-644 (-1171 *6)))
+ (|:| |prim| (-1171 *6))))
+ (-5 *1 (-960 *6)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-689 (-566))) (-5 *1 (-1109)))))
+(((*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883)) (-5 *3 (-566)))))
-(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-547))))
- ((*1 *1 *1) (-4 *1 (-1059))))
-(((*1 *1) (-5 *1 (-144))) ((*1 *1 *1) (-5 *1 (-862))))
+ (-12 (-4 *4 (-558)) (-5 *2 (-771)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-419 *4)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *4 (-644 (-409 *6))) (-5 *3 (-409 *6))
+ (-4 *6 (-1240 *5)) (-4 *5 (-13 (-365) (-147) (-1038 (-566))))
+ (-5 *2
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (-5 *1 (-570 *5 *6)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1070 *3 *4 *5 *6)) (-4 *3 (-454)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793))
- (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+ (-12 (-5 *2 (-644 (-644 (-943 (-225))))) (-5 *1 (-1209 *3))
+ (-4 *3 (-974)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-780 *5 (-864 *6)))) (-5 *4 (-112)) (-4 *5 (-454))
+ (-14 *6 (-644 (-1175)))
+ (-5 *2
+ (-644 (-1145 *5 (-533 (-864 *6)) (-864 *6) (-780 *5 (-864 *6)))))
+ (-5 *1 (-628 *5 *6)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-755)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *5)) (-5 *4 (-921)) (-4 *5 (-850))
+ (-5 *2 (-59 (-644 (-672 *5)))) (-5 *1 (-672 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-1155 *3))) (-5 *1 (-1155 *3)) (-4 *3 (-1214)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 *1)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5))
+ (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1049)) (-4 *1 (-687 *3 *4 *5))
+ (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1049)) (-5 *1 (-689 *3))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 *4)) (-4 *4 (-1049)) (-4 *1 (-1122 *3 *4 *5 *6))
+ (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *3 *4)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4 *5 *5 *5 *6 *4 *4 *4 *5 *4 *5 *7)
- (-12 (-5 *3 (-1157)) (-5 *5 (-689 (-225))) (-5 *6 (-225))
- (-5 *7 (-689 (-566))) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-1049)) (-5 *1 (-712 *3 *2)) (-4 *2 (-1240 *3)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178))))
- ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-1178)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1155 (-1155 *4))) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4))
- (-4 *4 (-1049)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-1 (-225) (-225) (-225)))
+ (-5 *4 (-1 (-225) (-225) (-225) (-225)))
+ (-5 *2 (-1 (-943 (-225)) (-225) (-225))) (-5 *1 (-697)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3))))
+ ((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
(((*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-141))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1143)) (-5 *2 (-144)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-365))
- (-5 *1 (-523 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5))))
+(((*1 *2 *1) (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-112)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *4))))
+ (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1171 (-409 (-566)))) (-5 *1 (-942)) (-5 *3 (-566)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-241))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-1269)) (-5 *1 (-241)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-566))))
((*1 *2 *1)
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-566)))))
+(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-420 *3)) (-4 *3 (-558))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-2 (|:| -2473 *4) (|:| -2108 (-566)))))
+ (-4 *4 (-1240 (-566))) (-5 *2 (-771)) (-5 *1 (-444 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1171 *6)) (-4 *6 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2 (-1171 *7)) (-5 *1 (-322 *4 *5 *6 *7))
+ (-4 *7 (-949 *6 *4 *5)))))
+(((*1 *1 *1) (-5 *1 (-225)))
+ ((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
+ ((*1 *1 *1) (-4 *1 (-1138))) ((*1 *1 *1 *1) (-4 *1 (-1138))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-388 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *1 *1) (-12 (-5 *1 (-819 *2)) (-4 *2 (-850)))))
+(((*1 *2 *3) (-12 (-5 *3 (-225)) (-5 *2 (-317 (-381))) (-5 *1 (-306)))))
+(((*1 *2 *1)
(-12 (-4 *1 (-687 *2 *3 *4)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2))
- (|has| *2 (-6 (-4419 "*"))) (-4 *2 (-1049))))
+ (|has| *2 (-6 (-4416 "*"))) (-4 *2 (-1049))))
((*1 *2 *3)
(-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-172))
(-5 *1 (-688 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5))))
((*1 *2 *1)
(-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
- (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4419 "*"))) (-4 *2 (-1049)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-1064 *3 *4 *2)) (-4 *2 (-850))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1064 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-432 *4)) (-5 *1 (-158 *4 *2))
- (-4 *4 (-558)))))
+ (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4416 "*"))) (-4 *2 (-1049)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *4 (-566))) (-5 *5 (-1 (-1155 *4))) (-4 *4 (-365))
- (-4 *4 (-1049)) (-5 *2 (-1155 *4)) (-5 *1 (-1159 *4)))))
-(((*1 *2 *3 *3 *4 *3 *4 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-566))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 G)))) (-5 *2 (-1035))
- (-5 *1 (-748)))))
-(((*1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-1006)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-952 *5)) (-4 *5 (-1049)) (-5 *2 (-247 *4 *5))
- (-5 *1 (-944 *4 *5)) (-14 *4 (-644 (-1175))))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
+ (-12 (-5 *4 (-112)) (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-4 *3 (-13 (-27) (-1199) (-432 *6) (-10 -8 (-15 -3780 ($ *7)))))
+ (-4 *7 (-848))
+ (-4 *8
+ (-13 (-1242 *3 *7) (-365) (-1199)
+ (-10 -8 (-15 -2578 ($ $)) (-15 -3921 ($ $)))))
(-5 *2
- (-2 (|:| -2212 *4) (|:| -1457 *4) (|:| |totalpts| (-566))
- (|:| |success| (-112))))
- (-5 *1 (-789)) (-5 *5 (-566)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 *3)) (-4 *3 (-1108 *5 *6 *7 *8))
- (-4 *5 (-13 (-308) (-147))) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *8 (-1064 *5 *6 *7)) (-5 *2 (-112))
- (-5 *1 (-592 *5 *6 *7 *8 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1256 *2 *3 *4)) (-4 *2 (-1049)) (-14 *3 (-1175))
- (-14 *4 *2))))
+ (-3 (|:| |%series| *8)
+ (|:| |%problem| (-2 (|:| |func| (-1157)) (|:| |prob| (-1157))))))
+ (-5 *1 (-424 *6 *3 *7 *8 *9 *10)) (-5 *5 (-1157)) (-4 *9 (-983 *8))
+ (-14 *10 (-1175)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-921))
+ (-5 *2 (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119))))))
+ (-5 *1 (-348 *4)) (-4 *4 (-351)))))
(((*1 *1 *1 *2)
- (|partial| -12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558))
- (-4 *4 (-793)) (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
-(((*1 *2 *3 *3 *4 *5 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225)))
- (-5 *2 (-1035)) (-5 *1 (-747)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-927)))))
-(((*1 *1 *1 *2 *2 *2 *2)
- (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049))
- (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))))
+ (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-921)) (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-792))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-409 (-566))) (-4 *1 (-1245 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112)) (-5 *1 (-32 *4 *5))
+ (-4 *5 (-432 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112))
+ (-5 *1 (-158 *4 *5)) (-4 *5 (-432 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112))
+ (-5 *1 (-277 *4 *5)) (-4 *5 (-13 (-432 *4) (-1002)))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-5 *2 (-112)) (-5 *1 (-302 *4)) (-4 *4 (-303))))
+ ((*1 *2 *3) (-12 (-4 *1 (-303)) (-5 *3 (-114)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *5 (-1099)) (-5 *2 (-112))
+ (-5 *1 (-431 *4 *5)) (-4 *4 (-432 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112))
+ (-5 *1 (-433 *4 *5)) (-4 *5 (-432 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-114)) (-4 *4 (-558)) (-5 *2 (-112))
+ (-5 *1 (-630 *4 *5)) (-4 *5 (-13 (-432 *4) (-1002) (-1199))))))
(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-152 *2 *3 *4)) (-14 *2 (-921)) (-4 *3 (-365))
- (-14 *4 (-993 *2 *3))))
- ((*1 *1 *1)
- (|partial| -12 (-4 *2 (-172)) (-5 *1 (-290 *2 *3 *4 *5 *6 *7))
- (-4 *3 (-1240 *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 (-369 *2)) (-4 *2 (-172)) (-4 *2 (-558))))
- ((*1 *1 *1)
- (|partial| -12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172))
- (-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 (-718 *2)) (-4 *2 (-365))))
- ((*1 *1) (-12 (-5 *1 (-718 *2)) (-4 *2 (-365))))
- ((*1 *1 *1) (|partial| -4 *1 (-722)))
- ((*1 *1 *1) (|partial| -4 *1 (-726)))
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-644 (-644 (-566)))) (-5 *1 (-971))
+ (-5 *3 (-644 (-566))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-988 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-2 (|:| |num| *3) (|:| |den| *3)))
- (-5 *1 (-776 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3))))
- ((*1 *2 *2 *1)
- (|partial| -12 (-4 *1 (-1067 *3 *2)) (-4 *3 (-13 (-848) (-365)))
- (-4 *2 (-1240 *3))))
- ((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-1159 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-112))))
- ((*1 *2 *3 *1)
- (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365)))
- (-4 *3 (-1240 *4)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
- (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 *5)) (-4 *5 (-365))
- (-4 *5 (-558)) (-5 *2 (-1264 *5)) (-5 *1 (-638 *5 *4))))
+ (-12 (-5 *4 (-644 *3)) (-4 *3 (-1070 *5 *6 *7 *8)) (-4 *5 (-454))
+ (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7))
+ (-5 *2 (-112)) (-5 *1 (-988 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-1064 *4 *5 *6)) (-5 *2 (-112))
+ (-5 *1 (-1106 *4 *5 *6 *7 *3)) (-4 *3 (-1070 *4 *5 *6 *7))))
((*1 *2 *3 *4)
- (|partial| -12 (-5 *3 (-1264 *4)) (-4 *4 (-639 *5))
- (-2426 (-4 *5 (-365))) (-4 *5 (-558)) (-5 *2 (-1264 (-409 *5)))
- (-5 *1 (-638 *5 *4)))))
-(((*1 *2)
- (-12 (-4 *4 (-1218)) (-4 *5 (-1240 *4)) (-4 *6 (-1240 (-409 *5)))
- (-5 *2 (-112)) (-5 *1 (-343 *3 *4 *5 *6)) (-4 *3 (-344 *4 *5 *6))))
- ((*1 *2)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1267))))
- ((*1 *2 *2) (-12 (-5 *2 (-644 (-921))) (-5 *1 (-1267)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-824)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-363 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-5 *2 (-771)) (-5 *1 (-388 *4)) (-4 *4 (-1099))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-4 *2 (-23)) (-5 *1 (-649 *4 *2 *5))
- (-4 *4 (-1099)) (-14 *5 *2)))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-566)) (-5 *2 (-771)) (-5 *1 (-819 *4)) (-4 *4 (-850)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-644 (-689 *4))) (-5 *2 (-689 *4)) (-4 *4 (-1049))
- (-5 *1 (-1029 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1269)) (-5 *1 (-381))))
- ((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-381)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+ (-12 (-5 *4 (-644 *3)) (-4 *3 (-1070 *5 *6 *7 *8)) (-4 *5 (-454))
+ (-4 *6 (-793)) (-4 *7 (-850)) (-4 *8 (-1064 *5 *6 *7))
+ (-5 *2 (-112)) (-5 *1 (-1106 *5 *6 *7 *8 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 (-112) *6)) (-4 *6 (-13 (-1099) (-1038 *5)))
+ (-4 *5 (-886 *4)) (-4 *4 (-1099)) (-5 *2 (-1 (-112) *5))
+ (-5 *1 (-931 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-1010 *2)) (-4 *2 (-1214)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-1059)) (-4 *3 (-1199))
- (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-112)) (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-420 *3))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
+ (-12 (-4 *3 (-1049)) (-5 *2 (-1264 *3)) (-5 *1 (-712 *3 *4))
+ (-4 *4 (-1240 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-587 *2)) (-4 *2 (-13 (-29 *4) (-1199)))
- (-5 *1 (-585 *4 *2))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566))))))
+ (-12 (-5 *3 (-952 *4)) (-4 *4 (-13 (-308) (-147)))
+ (-4 *2 (-949 *4 *6 *5)) (-5 *1 (-924 *4 *5 *6 *2))
+ (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |polnum| (-782 *3)) (|:| |polden| *3) (|:| -3458 (-771))))
+ (-5 *1 (-782 *3)) (-4 *3 (-1049))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -3458 (-771))))
+ (-4 *1 (-1064 *3 *4 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883))
+ (-5 *3 (-644 (-566)))))
((*1 *2 *3)
- (-12 (-5 *3 (-587 (-409 (-952 *4))))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-317 *4))
- (-5 *1 (-590 *4)))))
+ (-12 (-5 *2 (-1155 (-644 (-566)))) (-5 *1 (-883))
+ (-5 *3 (-644 (-566))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-952 *5))) (-5 *4 (-644 (-1175))) (-4 *5 (-558))
- (-5 *2 (-644 (-644 (-295 (-409 (-952 *5)))))) (-5 *1 (-770 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-952 *4))) (-4 *4 (-558))
- (-5 *2 (-644 (-644 (-295 (-409 (-952 *4)))))) (-5 *1 (-770 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-689 *7))
- (-5 *5
- (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -1990 (-644 *6)))
- *7 *6))
- (-4 *6 (-365)) (-4 *7 (-656 *6))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1264 *6) "failed"))
- (|:| -1990 (-644 (-1264 *6)))))
- (-5 *1 (-813 *6 *7)) (-5 *4 (-1264 *6)))))
+ (-12 (-5 *3 (-1175)) (-5 *4 (-952 (-566))) (-5 *2 (-331))
+ (-5 *1 (-333)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-366 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-1099))
- (-5 *2 (-1157)))))
-(((*1 *2 *3 *4 *5 *5 *4 *6)
- (-12 (-5 *5 (-612 *4)) (-5 *6 (-1171 *4))
- (-4 *4 (-13 (-432 *7) (-27) (-1199)))
- (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4))))
- (-5 *1 (-562 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099))))
- ((*1 *2 *3 *4 *5 *5 *5 *4 *6)
- (-12 (-5 *5 (-612 *4)) (-5 *6 (-409 (-1171 *4)))
- (-4 *4 (-13 (-432 *7) (-27) (-1199)))
- (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1990 (-644 *4))))
- (-5 *1 (-562 *7 *4 *3)) (-4 *3 (-656 *4)) (-4 *3 (-1099)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-308)) (-5 *2 (-112)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
- (-5 *1 (-176 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-612 (-48)))) (-5 *1 (-48))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-612 (-48))) (-5 *1 (-48))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1171 (-48))) (-5 *3 (-644 (-612 (-48)))) (-5 *1 (-48))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1171 (-48))) (-5 *3 (-612 (-48))) (-5 *1 (-48))))
- ((*1 *2 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-365) (-848))) (-5 *1 (-181 *2 *3))
- (-4 *3 (-1240 (-169 *2)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-921)) (-4 *1 (-330 *3)) (-4 *3 (-365)) (-4 *3 (-370))))
- ((*1 *2 *1) (-12 (-4 *1 (-330 *2)) (-4 *2 (-365))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-372 *2 *3)) (-4 *3 (-1240 *2)) (-4 *2 (-172))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-1240 *2)) (-4 *2 (-992 *3)) (-5 *1 (-415 *3 *2 *4 *5))
- (-4 *3 (-308)) (-4 *5 (-13 (-411 *2 *4) (-1038 *2)))))
- ((*1 *2 *1)
- (-12 (-4 *4 (-1240 *2)) (-4 *2 (-992 *3))
- (-5 *1 (-416 *3 *2 *4 *5 *6)) (-4 *3 (-308)) (-4 *5 (-411 *2 *4))
- (-14 *6 (-1264 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-921)) (-4 *5 (-1049))
- (-4 *2 (-13 (-406) (-1038 *5) (-365) (-1199) (-285)))
- (-5 *1 (-445 *5 *3 *2)) (-4 *3 (-1240 *5))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-612 (-497)))) (-5 *1 (-497))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-612 (-497))) (-5 *1 (-497))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1171 (-497))) (-5 *3 (-644 (-612 (-497))))
- (-5 *1 (-497))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1171 (-497))) (-5 *3 (-612 (-497))) (-5 *1 (-497))))
- ((*1 *2 *2 *3)
- (-12 (-5 *2 (-1264 *4)) (-5 *3 (-921)) (-4 *4 (-351))
- (-5 *1 (-530 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-724 *4 *2)) (-4 *2 (-1240 *4))
- (-5 *1 (-775 *4 *2 *5 *3)) (-4 *3 (-1240 *5))))
- ((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
- ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172))))
- ((*1 *1 *1) (-4 *1 (-1059))))
-(((*1 *2 *3 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-2 (|:| |ans| *7) (|:| -4368 *7) (|:| |sol?| (-112)))
- (-566) *7))
- (-5 *6 (-644 (-409 *8))) (-4 *7 (-365)) (-4 *8 (-1240 *7))
- (-5 *3 (-409 *8))
- (-5 *2
- (-2
- (|:| |answer|
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (|:| |a0| *7)))
- (-5 *1 (-576 *7 *8)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172))))
- ((*1 *2 *3 *3 *2)
- (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))))
-(((*1 *2 *3 *4 *4 *5 *3 *6)
- (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3)) (-5 *6 (-1171 *3))
- (-4 *3 (-13 (-432 *7) (-27) (-1199)))
- (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-562 *7 *3 *8)) (-4 *8 (-1099))))
- ((*1 *2 *3 *4 *4 *5 *4 *3 *6)
- (|partial| -12 (-5 *4 (-612 *3)) (-5 *5 (-644 *3))
- (-5 *6 (-409 (-1171 *3))) (-4 *3 (-13 (-432 *7) (-27) (-1199)))
- (-4 *7 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-12 (-4 *1 (-1038 (-566))) (-4 *1 (-303)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-538)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *3 (-1064 *4 *5 *6))
+ (-5 *2 (-644 (-2 (|:| |val| (-112)) (|:| -2327 *1))))
+ (-4 *1 (-1070 *4 *5 *6 *3)))))
+(((*1 *2 *3 *4 *5)
+ (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 (-409 (-952 *6))))
+ (-5 *3 (-409 (-952 *6)))
+ (-4 *6 (-13 (-558) (-1038 (-566)) (-147)))
(-5 *2
(-2 (|:| |mainpart| *3)
(|:| |limitedlogs|
(-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-562 *7 *3 *8)) (-4 *8 (-1099)))))
-(((*1 *2 *3 *4 *5 *5 *6)
- (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
- (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
- (-5 *1 (-788))))
- ((*1 *2 *3 *4 *5 *5 *6 *3 *3 *3 *3)
- (-12 (-5 *4 (-566)) (-5 *6 (-1 (-1269) (-1264 *5) (-1264 *5) (-381)))
- (-5 *3 (-1264 (-381))) (-5 *5 (-381)) (-5 *2 (-1269))
- (-5 *1 (-788)))))
+ (-5 *1 (-572 *6)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-454))
+ (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-977 *3 *4 *5 *6)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *2)
+ (|:| |polj| *2)))
+ (-4 *5 (-793)) (-4 *2 (-949 *4 *5 *6)) (-5 *1 (-451 *4 *5 *6 *2))
+ (-4 *4 (-454)) (-4 *6 (-850)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-644 (-317 (-225)))) (-5 *3 (-225)) (-5 *2 (-112))
+ (-5 *1 (-210)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *5 *5))
+ (-4 *5 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *2
+ (-2 (|:| |solns| (-644 *5))
+ (|:| |maps| (-644 (-2 (|:| |arg| *5) (|:| |res| *5))))))
+ (-5 *1 (-1127 *3 *5)) (-4 *3 (-1240 *5)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-4 *1 (-57 *4 *5 *2)) (-4 *4 (-1214))
+ (-4 *5 (-375 *4)) (-4 *2 (-375 *4))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-4 *1 (-1053 *4 *5 *6 *7 *2)) (-4 *6 (-1049))
+ (-4 *7 (-238 *5 *6)) (-4 *2 (-238 *4 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-644 *5)) (-4 *5 (-1240 *3)) (-4 *3 (-308))
+ (-5 *2 (-112)) (-5 *1 (-457 *3 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
+ (-4 *4 (-351))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
+ (-4 *4 (-351))))
+ ((*1 *1) (-4 *1 (-370)))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1264 *4)) (-5 *1 (-530 *4))
+ (-4 *4 (-351))))
+ ((*1 *1 *1) (-4 *1 (-547))) ((*1 *1) (-4 *1 (-547)))
+ ((*1 *1 *1) (-5 *1 (-566))) ((*1 *1 *1) (-5 *1 (-771)))
+ ((*1 *2 *1) (-12 (-5 *2 (-905 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-5 *2 (-905 *4)) (-5 *1 (-904 *4))
+ (-4 *4 (-1099))))
+ ((*1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-547)) (-4 *2 (-558)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-747)))))
+(((*1 *1) (-5 *1 (-1269))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-1091 (-952 (-566)))) (-5 *3 (-952 (-566)))
+ (-5 *1 (-331))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-1091 (-952 (-566)))) (-5 *1 (-331)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1119)) (-5 *2 (-112)) (-5 *1 (-821)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1231 *3)) (-4 *3 (-1214)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3))
+ (-5 *1 (-742 *4 *5 *6 *3)) (-4 *3 (-949 *6 *4 *5)))))
+(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-682 *3)) (-4 *3 (-1099)))))
(((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-644 (-264))) (-5 *4 (-1175))
(-5 *1 (-263 *2)) (-4 *2 (-1214))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-644 (-264))) (-5 *4 (-1175)) (-5 *2 (-52))
(-5 *1 (-264)))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
-(((*1 *1 *1 *1 *2)
- (-12 (-4 *1 (-949 *3 *4 *2)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850)) (-4 *3 (-172))))
- ((*1 *2 *3 *3)
- (-12 (-4 *2 (-558)) (-5 *1 (-969 *2 *3)) (-4 *3 (-1240 *2))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-558))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1240 *2)) (-4 *2 (-1049)) (-4 *2 (-172)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1171 *6)) (-5 *3 (-566)) (-4 *6 (-308)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *1 (-742 *4 *5 *6 *7)) (-4 *7 (-949 *6 *4 *5)))))
-(((*1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-4 *4 (-172)) (-4 *5 (-375 *4))
- (-4 *6 (-375 *4)) (-5 *2 (-2 (|:| |adjMat| *3) (|:| |detMat| *4)))
- (-5 *1 (-688 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6))))
- ((*1 *1 *1 *1)
- (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3))
- (-4 *3 (-648 *2))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-172)) (-4 *2 (-1049)) (-5 *1 (-714 *2 *3))
- (-4 *3 (-648 *2))))
- ((*1 *1 *1 *1) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049))))
- ((*1 *1 *1) (-12 (-5 *1 (-836 *2)) (-4 *2 (-172)) (-4 *2 (-1049)))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *2 (-644 (-169 *4))) (-5 *1 (-155 *3 *4))
- (-4 *3 (-1240 (-169 (-566)))) (-4 *4 (-13 (-365) (-848)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-644 (-169 *4)))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4)))))
- ((*1 *2 *3 *4)
- (-12 (-4 *4 (-13 (-365) (-848))) (-5 *2 (-644 (-169 *4)))
- (-5 *1 (-181 *4 *3)) (-4 *3 (-1240 (-169 *4))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-365)) (-4 *1 (-330 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1240 *4)) (-4 *4 (-1218))
- (-4 *1 (-344 *4 *3 *5)) (-4 *5 (-1240 (-409 *3)))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1264 *4)) (-5 *3 (-1264 *1)) (-4 *4 (-172))
- (-4 *1 (-369 *4))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-1264 *4)) (-5 *3 (-1264 *1)) (-4 *4 (-172))
- (-4 *1 (-372 *4 *5)) (-4 *5 (-1240 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-411 *3 *4))
- (-4 *4 (-1240 *3))))
- ((*1 *1 *2) (-12 (-5 *2 (-1264 *3)) (-4 *3 (-172)) (-4 *1 (-419 *3)))))
(((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
- (-4 *3 (-369 *4))))
- ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
-(((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-862)))))
+ (-12 (-4 *3 (-558)) (-5 *2 (-644 (-689 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-419 *3)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049))
+ (-5 *1 (-1159 *4))))
+ ((*1 *1 *2 *2 *1)
+ (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049))
+ (-14 *4 (-1175)) (-14 *5 *3))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 *3))) (-4 *3 (-1099)) (-5 *1 (-905 *3)))))
+(((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1175)) (-5 *3 (-112)) (-5 *1 (-892 *4))
+ (-4 *4 (-1099)))))
+(((*1 *1 *1 *2 *2)
+ (-12 (-5 *2 (-566)) (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049))
+ (-4 *4 (-375 *3)) (-4 *5 (-375 *3)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-469)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3 (-566))) (-4 *3 (-1049)) (-5 *1 (-99 *3))))
+ ((*1 *1 *2 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-99 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-99 *3)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-604 *2 *3)) (-4 *3 (-1214)) (-4 *2 (-1099))
- (-4 *2 (-850)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
-(((*1 *2 *3)
+ (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
+ (-5 *2 (-2 (|:| |k| (-819 *3)) (|:| |c| *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1157)) (-5 *1 (-1195))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1195)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1195)))))
+(((*1 *2 *1 *1)
(-12
- (-5 *3
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-1155 (-225))) (-5 *1 (-192))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-317 (-225))) (-5 *4 (-644 (-1175)))
- (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *4 (-644 (-1175)))
- (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-874))
- (-5 *5 (-921)) (-5 *6 (-644 (-264))) (-5 *2 (-470)) (-5 *1 (-1268))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *2 (-470))
- (-5 *1 (-1268))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-644 (-264)))
- (-5 *2 (-470)) (-5 *1 (-1268)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-108))))
- ((*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-217))))
- ((*1 *2 *1) (-12 (-5 *2 (-409 (-566))) (-5 *1 (-489))))
- ((*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)) (-4 *2 (-308))))
+ (-5 *2
+ (-2 (|:| -3223 *3) (|:| |gap| (-771)) (|:| -3644 (-782 *3))
+ (|:| -4228 (-782 *3))))
+ (-5 *1 (-782 *3)) (-4 *3 (-1049))))
+ ((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850))
+ (-5 *2
+ (-2 (|:| -3223 *1) (|:| |gap| (-771)) (|:| -3644 *1)
+ (|:| -4228 *1)))
+ (-4 *1 (-1064 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2
+ (-2 (|:| -3223 *1) (|:| |gap| (-771)) (|:| -3644 *1)
+ (|:| -4228 *1)))
+ (-4 *1 (-1064 *3 *4 *5)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-415 *3 *4 *5 *6)) (-4 *6 (-1038 *4)) (-4 *3 (-308))
+ (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-4 *6 (-411 *4 *5))
+ (-14 *7 (-1264 *6)) (-5 *1 (-416 *3 *4 *5 *6 *7))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-1264 *6)) (-4 *6 (-411 *4 *5)) (-4 *4 (-992 *3))
+ (-4 *5 (-1240 *4)) (-4 *3 (-308)) (-5 *1 (-416 *3 *4 *5 *6 *7))
+ (-14 *7 *2))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-687 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-112))))
((*1 *2 *1)
- (-12 (-5 *2 (-409 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566))))
- ((*1 *1 *1) (-4 *1 (-1059))))
+ (-12 (-4 *1 (-1053 *3 *4 *5 *6 *7)) (-4 *5 (-1049))
+ (-4 *6 (-238 *4 *5)) (-4 *7 (-238 *3 *5)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *2 (-566)) (-5 *1 (-571 *3)) (-4 *3 (-1038 *2)))))
+(((*1 *1)
+ (-12 (-5 *1 (-649 *2 *3 *4)) (-4 *2 (-1099)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-369 *2)) (-4 *2 (-558)) (-4 *2 (-172)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *2 *1 *3 *3)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-604 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1214)) (-5 *2 (-1269)))))
-(((*1 *1) (-4 *1 (-351))))
-(((*1 *2 *2) (-12 (-5 *2 (-644 (-317 (-225)))) (-5 *1 (-268)))))
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *2 (-558)))))
(((*1 *2 *1) (-12 (-5 *2 (-139)) (-5 *1 (-140))))
((*1 *2 *1) (-12 (-5 *2 (-187)) (-5 *1 (-183))))
((*1 *2 *1) (-12 (-5 *2 (-249)) (-5 *1 (-248)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-454)))))
-(((*1 *1 *2 *3 *3 *4 *4)
- (-12 (-5 *2 (-952 (-566))) (-5 *3 (-1175))
- (-5 *4 (-1093 (-409 (-566)))) (-5 *1 (-30)))))
-(((*1 *2 *3 *4 *4 *5 *6)
- (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-874))
- (-5 *5 (-921)) (-5 *6 (-644 (-264))) (-5 *2 (-1265))
- (-5 *1 (-1268))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-644 (-943 (-225))))) (-5 *4 (-644 (-264)))
- (-5 *2 (-1265)) (-5 *1 (-1268)))))
+(((*1 *1 *1) (-4 *1 (-1059))))
+(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
+ (-5 *2
+ (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566))
+ (|:| |success| (-112))))
+ (-5 *1 (-789)) (-5 *5 (-566)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-771)) (-4 *6 (-365)) (-5 *4 (-1208 *6))
+ (-5 *2 (-1 (-1155 *4) (-1155 *4))) (-5 *1 (-1272 *6))
+ (-5 *5 (-1155 *4)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-324 *3 *4)) (-4 *3 (-1099)) (-4 *4 (-131))
- (-5 *2 (-644 (-2 (|:| |gen| *3) (|:| -3613 *4))))))
+ (-12 (-5 *2 (-1101 *3)) (-5 *1 (-904 *3)) (-4 *3 (-1099))))
((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| -3157 *3) (|:| -1966 *4))))
- (-5 *1 (-735 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-726))))
+ (-12 (-5 *2 (-1101 *3)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-771)) (-5 *3 (-112)) (-5 *1 (-110))))
+ ((*1 *2 *2) (-12 (-5 *2 (-921)) (|has| *1 (-6 -4405)) (-4 *1 (-406))))
+ ((*1 *2) (-12 (-4 *1 (-406)) (-5 *2 (-921)))))
+(((*1 *2 *3) (-12 (-5 *2 (-644 (-566))) (-5 *1 (-448)) (-5 *3 (-566)))))
+(((*1 *2)
+ (-12 (-5 *2 (-689 (-910 *3))) (-5 *1 (-353 *3 *4)) (-14 *3 (-921))
+ (-14 *4 (-921))))
+ ((*1 *2)
+ (-12 (-5 *2 (-689 *3)) (-5 *1 (-354 *3 *4)) (-4 *3 (-351))
+ (-14 *4
+ (-3 (-1171 *3)
+ (-1264 (-644 (-2 (|:| -2252 *3) (|:| -2208 (-1119)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-689 *3)) (-5 *1 (-355 *3 *4)) (-4 *3 (-351))
+ (-14 *4 (-921)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4414)) (-4 *1 (-491 *4))
+ (-4 *4 (-1214)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-454) (-1038 (-566)))) (-4 *3 (-558))
+ (-5 *1 (-41 *3 *2)) (-4 *2 (-432 *3))
+ (-4 *2
+ (-13 (-365) (-303)
+ (-10 -8 (-15 -3088 ((-1124 *3 (-612 $)) $))
+ (-15 -3100 ((-1124 *3 (-612 $)) $))
+ (-15 -3780 ($ (-1124 *3 (-612 $))))))))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *1 *1) (-5 *1 (-48)))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-59 *5)) (-4 *5 (-1214))
+ (-4 *2 (-1214)) (-5 *1 (-58 *5 *2))))
+ ((*1 *2 *3 *1 *2 *2)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1099)) (|has| *1 (-6 -4414))
+ (-4 *1 (-151 *2)) (-4 *2 (-1214))))
+ ((*1 *2 *3 *1 *2)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4414)) (-4 *1 (-151 *2))
+ (-4 *2 (-1214))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4414)) (-4 *1 (-151 *2))
+ (-4 *2 (-1214))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1049))
+ (-5 *2 (-2 (|:| -2576 (-1171 *4)) (|:| |deg| (-921))))
+ (-5 *1 (-221 *4 *5)) (-5 *3 (-1171 *4)) (-4 *5 (-558))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *6 *2)) (-5 *4 (-240 *5 *6)) (-14 *5 (-771))
+ (-4 *6 (-1214)) (-4 *2 (-1214)) (-5 *1 (-239 *5 *6 *2))))
+ ((*1 *1 *2 *3)
+ (-12 (-4 *4 (-172)) (-5 *1 (-290 *4 *2 *3 *5 *6 *7))
+ (-4 *2 (-1240 *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 (-317 *2)) (-4 *2 (-558)) (-4 *2 (-1099))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-337 *2 *3 *4 *5)) (-4 *2 (-365)) (-4 *3 (-1240 *2))
+ (-4 *4 (-1240 (-409 *3))) (-4 *5 (-344 *2 *3 *4))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1214)) (-4 *2 (-1214))
+ (-5 *1 (-373 *5 *4 *2 *6)) (-4 *4 (-375 *5)) (-4 *6 (-375 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1099)) (-4 *2 (-1099))
+ (-5 *1 (-425 *5 *4 *2 *6)) (-4 *4 (-427 *5)) (-4 *6 (-427 *2))))
+ ((*1 *1 *1) (-5 *1 (-497)))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-644 *5)) (-4 *5 (-1214))
+ (-4 *2 (-1214)) (-5 *1 (-642 *5 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-4 *5 (-1049)) (-4 *2 (-1049))
+ (-4 *6 (-375 *5)) (-4 *7 (-375 *5)) (-4 *8 (-375 *2))
+ (-4 *9 (-375 *2)) (-5 *1 (-685 *5 *6 *7 *4 *2 *8 *9 *10))
+ (-4 *4 (-687 *5 *6 *7)) (-4 *10 (-687 *2 *8 *9))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-711 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-1049)) (-5 *1 (-712 *3 *2)) (-4 *2 (-1240 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *1 (-715 *2 *3 *4 *5 *6)) (-4 *2 (-172)) (-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 (-409 *4)) (-4 *4 (-1240 *3)) (-4 *3 (-365))
+ (-4 *3 (-172)) (-4 *1 (-724 *3 *4))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-172)) (-4 *1 (-724 *3 *2)) (-4 *2 (-1240 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-958 *5)) (-4 *5 (-1214))
+ (-4 *2 (-1214)) (-5 *1 (-957 *5 *2))))
+ ((*1 *1 *2)
+ (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-1034 *3 *4 *5 *2 *6)) (-4 *2 (-949 *3 *4 *5))
+ (-14 *6 (-644 *2))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *7 *2)) (-4 *7 (-1049)) (-4 *2 (-1049))
+ (-14 *5 (-771)) (-14 *6 (-771)) (-4 *8 (-238 *6 *7))
+ (-4 *9 (-238 *5 *7)) (-4 *10 (-238 *6 *2)) (-4 *11 (-238 *5 *2))
+ (-5 *1 (-1055 *5 *6 *7 *8 *9 *4 *2 *10 *11 *12))
+ (-4 *4 (-1053 *5 *6 *7 *8 *9)) (-4 *12 (-1053 *5 *6 *2 *10 *11))))
+ ((*1 *2 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1155 *5)) (-4 *5 (-1214))
+ (-4 *2 (-1214)) (-5 *1 (-1153 *5 *2))))
+ ((*1 *2 *2 *1 *3 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *4 (-1 (-112) *2 *2))
+ (-4 *1 (-1207 *5 *6 *7 *2)) (-4 *5 (-558)) (-4 *6 (-793))
+ (-4 *7 (-850)) (-4 *2 (-1064 *5 *6 *7))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *3 (-1 *2 *5 *2)) (-5 *4 (-1264 *5)) (-4 *5 (-1214))
+ (-4 *2 (-1214)) (-5 *1 (-1263 *5 *2)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-612 *3)) (-4 *3 (-13 (-432 *5) (-27) (-1199)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2 (-587 *3)) (-5 *1 (-568 *5 *3 *6)) (-4 *6 (-1099)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2662 *4)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-771)) (-5 *6 (-112)) (-4 *7 (-454)) (-4 *8 (-793))
+ (-4 *9 (-850)) (-4 *3 (-1064 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1068 *7 *8 *9 *3 *4)) (-4 *4 (-1070 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-4 *3 (-1064 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1068 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3))))
+ ((*1 *2 *3 *4 *5 *6)
+ (-12 (-5 *5 (-771)) (-5 *6 (-112)) (-4 *7 (-454)) (-4 *8 (-793))
+ (-4 *9 (-850)) (-4 *3 (-1064 *7 *8 *9))
+ (-5 *2
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1144 *7 *8 *9 *3 *4)) (-4 *4 (-1108 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-4 *3 (-1064 *6 *7 *8))
+ (-5 *2
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1144 *6 *7 *8 *3 *4)) (-4 *4 (-1108 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2
+ (-2 (|:| |done| (-644 *4))
+ (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))))
+ (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *6 *5 *4)) (-4 *5 (-1099)) (-4 *4 (-1099))
+ (-4 *6 (-1099)) (-5 *2 (-1 *6 *5)) (-5 *1 (-684 *5 *4 *6)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-1264 *4)) (-4 *4 (-419 *3)) (-4 *3 (-308))
+ (-4 *3 (-558)) (-5 *1 (-43 *3 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-921)) (-4 *4 (-365)) (-5 *2 (-1264 *1))
+ (-4 *1 (-330 *4))))
+ ((*1 *2) (-12 (-4 *3 (-365)) (-5 *2 (-1264 *1)) (-4 *1 (-330 *3))))
+ ((*1 *2)
+ (-12 (-4 *3 (-172)) (-4 *4 (-1240 *3)) (-5 *2 (-1264 *1))
+ (-4 *1 (-411 *3 *4))))
((*1 *2 *1)
- (-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
- (-5 *2 (-1155 (-2 (|:| |k| *4) (|:| |c| *3)))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
+ (-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4))
+ (-5 *2 (-1264 *6)) (-5 *1 (-415 *3 *4 *5 *6))
+ (-4 *6 (-13 (-411 *4 *5) (-1038 *4)))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-308)) (-4 *4 (-992 *3)) (-4 *5 (-1240 *4))
+ (-5 *2 (-1264 *6)) (-5 *1 (-416 *3 *4 *5 *6 *7))
+ (-4 *6 (-411 *4 *5)) (-14 *7 *2)))
+ ((*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1264 *1)) (-4 *1 (-419 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1264 (-1264 *4))) (-5 *1 (-530 *4))
(-4 *4 (-351)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *1 *1)
- (-12 (-4 *2 (-454)) (-4 *3 (-850)) (-4 *4 (-793))
- (-5 *1 (-987 *2 *3 *4 *5)) (-4 *5 (-949 *2 *4 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-955)) (-5 *2 (-644 (-644 (-943 (-225)))))))
- ((*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-644 (-644 (-943 (-225))))))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-771)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-771)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
+(((*1 *2 *3) (-12 (-5 *3 (-841)) (-5 *2 (-1035)) (-5 *1 (-840))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-317 (-381)))) (-5 *4 (-644 (-381)))
+ (-5 *2 (-1035)) (-5 *1 (-840)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1175))
+ (-5 *2 (-3 (|:| |fst| (-436)) (|:| -1616 "void"))) (-5 *1 (-1178)))))
(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4415)) (-4 *1 (-375 *2)) (-4 *2 (-1214))
+ (-4 *2 (-850))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4415))
+ (-4 *1 (-375 *3)) (-4 *3 (-1214)))))
+(((*1 *1 *1 *1)
(-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-454)))))
-(((*1 *1 *1 *1) (-4 *1 (-143)))
- ((*1 *2 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-158 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *2 *2 *2) (-12 (-5 *1 (-159 *2)) (-4 *2 (-547))))
- ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-566))) (-5 *1 (-1047))
- (-5 *3 (-566)))))
-(((*1 *2 *3 *3 *3 *3 *3 *3 *4 *4 *4 *4 *5 *3 *3 *4 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-112))
- (-5 *2 (-1035)) (-5 *1 (-753)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099))
- (-5 *2 (-644 (-2 (|:| |k| *4) (|:| |c| *3))))))
+ (-4 *4 (-850))))
+ ((*1 *2 *2 *1)
+ (-12 (-4 *1 (-1207 *3 *4 *5 *2)) (-4 *3 (-558)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *2 (-1064 *3 *4 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-375 *2)) (-4 *2 (-1214)) (-4 *2 (-850))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-375 *3)) (-4 *3 (-1214))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-905 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1 *3)
+ (-12 (-4 *4 (-1049)) (-4 *5 (-793)) (-4 *3 (-850))
+ (-4 *6 (-1064 *4 *5 *3))
+ (-5 *2 (-2 (|:| |under| *1) (|:| -2209 *1) (|:| |upper| *1)))
+ (-4 *1 (-976 *4 *5 *3 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-612 *6)) (-4 *6 (-13 (-432 *5) (-27) (-1199)))
+ (-4 *5 (-13 (-454) (-1038 (-566)) (-147) (-639 (-566))))
+ (-5 *2 (-1171 (-409 (-1171 *6)))) (-5 *1 (-562 *5 *6 *7))
+ (-5 *3 (-1171 *6)) (-4 *7 (-1099))))
((*1 *2 *1)
- (-12 (-5 *2 (-644 (-2 (|:| |k| (-893 *3)) (|:| |c| *4))))
- (-5 *1 (-627 *3 *4 *5)) (-4 *3 (-850))
- (-4 *4 (-13 (-172) (-717 (-409 (-566))))) (-14 *5 (-921))))
+ (-12 (-4 *2 (-1240 *3)) (-5 *1 (-712 *3 *2)) (-4 *3 (-1049))))
((*1 *2 *1)
- (-12 (-5 *2 (-644 (-672 *3))) (-5 *1 (-893 *3)) (-4 *3 (-850)))))
-(((*1 *2 *2) (|partial| -12 (-5 *2 (-317 (-225))) (-5 *1 (-268)))))
+ (-12 (-4 *1 (-724 *3 *2)) (-4 *3 (-172)) (-4 *2 (-1240 *3))))
+ ((*1 *2 *3 *4 *4 *5 *6 *7 *8)
+ (|partial| -12 (-5 *4 (-1171 *11)) (-5 *6 (-644 *10))
+ (-5 *7 (-644 (-771))) (-5 *8 (-644 *11)) (-4 *10 (-850))
+ (-4 *11 (-308)) (-4 *9 (-793)) (-4 *5 (-949 *11 *9 *10))
+ (-5 *2 (-644 (-1171 *5))) (-5 *1 (-742 *9 *10 *11 *5))
+ (-5 *3 (-1171 *5))))
+ ((*1 *2 *1)
+ (-12 (-4 *2 (-949 *3 *4 *5)) (-5 *1 (-1034 *3 *4 *5 *2 *6))
+ (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-14 *6 (-644 *2)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |preimage| (-644 *3)) (|:| |image| (-644 *3))))
+ (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-689 (-409 (-952 (-566))))) (-5 *2 (-644 (-317 (-566))))
- (-5 *1 (-1031)))))
+ (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-5 *2 (-409 (-566)))
- (-5 *1 (-435 *4 *3)) (-4 *3 (-432 *4))))
+ (-12 (-4 *4 (-1049))
+ (-4 *2 (-13 (-406) (-1038 *4) (-365) (-1199) (-285)))
+ (-5 *1 (-445 *4 *3 *2)) (-4 *3 (-1240 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-612 *3)) (-4 *3 (-432 *5))
- (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-1171 (-409 (-566))))
- (-5 *1 (-435 *5 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-1175)))))
-(((*1 *2 *1 *1) (-12 (-4 *1 (-1143)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1171 *1)) (-5 *4 (-1175)) (-4 *1 (-27))
- (-5 *2 (-644 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-1171 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1))))
- ((*1 *2 *3) (-12 (-5 *3 (-952 *1)) (-4 *1 (-27)) (-5 *2 (-644 *1))))
- ((*1 *2 *1 *3)
- (-12 (-5 *3 (-1175)) (-4 *4 (-558)) (-5 *2 (-644 *1))
- (-4 *1 (-29 *4))))
- ((*1 *2 *1) (-12 (-4 *3 (-558)) (-5 *2 (-644 *1)) (-4 *1 (-29 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-317 (-225))) (-5 *4 (-644 (-1175)))
- (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-1155 (-225))) (-5 *1 (-301)))))
+ (-12 (-5 *4 (-921)) (-4 *5 (-1049))
+ (-4 *2 (-13 (-406) (-1038 *5) (-365) (-1199) (-285)))
+ (-5 *1 (-445 *5 *3 *2)) (-4 *3 (-1240 *5)))))
+(((*1 *2 *1) (-12 (-5 *2 (-958 (-771))) (-5 *1 (-334)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))))
+(((*1 *2)
+ (-12 (-4 *3 (-558)) (-5 *2 (-644 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-419 *3)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
+(((*1 *2 *2) (-12 (-5 *2 (-225)) (-5 *1 (-226))))
+ ((*1 *2 *2) (-12 (-5 *2 (-169 (-225))) (-5 *1 (-226)))))
+(((*1 *2 *1 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -2235 (-782 *3)) (|:| |coef1| (-782 *3))
+ (|:| |coef2| (-782 *3))))
+ (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-558)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *2 (-2 (|:| -2235 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-1064 *3 *4 *5)))))
(((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-454))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-451 *4 *5 *6 *2)))))
+ (|partial| -12 (-5 *2 (-409 (-952 *4))) (-5 *3 (-1175))
+ (-4 *4 (-13 (-558) (-1038 (-566)) (-147))) (-5 *1 (-572 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-988 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-454))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
+ (-5 *1 (-1106 *4 *5 *6 *7 *8)) (-4 *8 (-1070 *4 *5 *6 *7)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-771)) (-4 *5 (-1049)) (-5 *2 (-566))
+ (-5 *1 (-445 *5 *3 *6)) (-4 *3 (-1240 *5))
+ (-4 *6 (-13 (-406) (-1038 *5) (-365) (-1199) (-285)))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-1049)) (-5 *2 (-566)) (-5 *1 (-445 *4 *3 *5))
+ (-4 *3 (-1240 *4))
+ (-4 *5 (-13 (-406) (-1038 *4) (-365) (-1199) (-285))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
+ (-5 *2 (-1 *5 *5)) (-5 *1 (-804 *4 *5))
+ (-4 *5 (-13 (-29 *4) (-1199) (-959))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-759)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-1049)) (-4 *4 (-1240 *3)) (-5 *1 (-164 *3 *4 *2))
- (-4 *2 (-1240 *4))))
- ((*1 *1 *1) (-12 (-5 *1 (-295 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-793))
- (-4 *3 (-13 (-850) (-10 -8 (-15 -3134 ((-1175) $))))) (-4 *5 (-558))
- (-5 *1 (-732 *4 *3 *5 *2)) (-4 *2 (-949 (-409 (-952 *5)) *4 *3))))
+ (-12 (-4 *3 (-13 (-558) (-1038 (-566)))) (-5 *1 (-188 *3 *2))
+ (-4 *2 (-13 (-27) (-1199) (-432 (-169 *3))))))
((*1 *2 *2 *3)
- (-12 (-4 *4 (-1049)) (-4 *5 (-793))
- (-4 *3
- (-13 (-850)
- (-10 -8 (-15 -3134 ((-1175) $))
- (-15 -1353 ((-3 $ "failed") (-1175))))))
- (-5 *1 (-984 *4 *5 *3 *2)) (-4 *2 (-949 (-952 *4) *5 *3))))
+ (-12 (-5 *3 (-1175)) (-4 *4 (-13 (-558) (-1038 (-566))))
+ (-5 *1 (-188 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 (-169 *4))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-1203 *3 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *3)))))
((*1 *2 *2 *3)
- (-12 (-5 *3 (-644 *6))
- (-4 *6
- (-13 (-850)
- (-10 -8 (-15 -3134 ((-1175) $))
- (-15 -1353 ((-3 $ "failed") (-1175))))))
- (-4 *4 (-1049)) (-4 *5 (-793)) (-5 *1 (-984 *4 *5 *6 *2))
- (-4 *2 (-949 (-952 *4) *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-689 *4)) (-5 *3 (-771)) (-4 *4 (-1049))
- (-5 *1 (-690 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *6)) (-5 *4 (-1175)) (-4 *6 (-432 *5))
- (-4 *5 (-1099)) (-5 *2 (-644 (-612 *6))) (-5 *1 (-575 *5 *6)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-566)) (-5 *1 (-241))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-1157))) (-5 *2 (-566)) (-5 *1 (-241)))))
+ (-12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-1203 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-223 *2 *3)) (-4 *2 (-13 (-1049) (-850)))
+ (-14 *3 (-644 (-1175))))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-1049)) (-4 *4 (-172))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049))
+ (-4 *3 (-172)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-860)) (-5 *3 (-128)) (-5 *2 (-771)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *3 (-1064 *5 *6 *7))
+ (-5 *2 (-644 (-2 (|:| |val| (-644 *3)) (|:| -2327 *4))))
+ (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1049)) (-5 *1 (-1236 *3 *2)) (-4 *2 (-1240 *3)))))
+ (-12 (-5 *2 (-771))
+ (-4 *3 (-13 (-308) (-10 -8 (-15 -3271 ((-420 $) $)))))
+ (-4 *4 (-1240 *3)) (-5 *1 (-501 *3 *4 *5)) (-4 *5 (-411 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-689 (-409 (-952 (-566)))))
+ (-5 *2 (-644 (-689 (-317 (-566))))) (-5 *1 (-1031)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-771)) (-5 *1 (-1100 *4 *5)) (-14 *4 *3)
+ (-14 *5 *3))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))))
(((*1 *1 *1)
- (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
- (-4 *4 (-850)) (-4 *2 (-454)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-225)) (-5 *1 (-1267))))
- ((*1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-1267)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-558)) (-4 *3 (-172))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -1990 (-644 *1))))
- (-4 *1 (-369 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-455 *3 *4 *5 *6))
- (|:| -1990 (-644 (-455 *3 *4 *5 *6)))))
- (-5 *1 (-455 *3 *4 *5 *6)) (-4 *3 (-172)) (-14 *4 (-921))
- (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
-(((*1 *1 *1 *1) (-5 *1 (-162)))
- ((*1 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-162)))))
+ (-12 (-5 *1 (-1163 *2 *3)) (-14 *2 (-921)) (-4 *3 (-1049)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *5 (-850)) (-5 *2 (-112)))))
+ (-12 (-4 *2 (-949 *3 *5 *4)) (-5 *1 (-987 *3 *4 *5 *2))
+ (-4 *3 (-454)) (-4 *4 (-850)) (-4 *5 (-793)))))
+(((*1 *2 *3 *3 *4 *4 *5 *4 *5 *4 *4 *5 *4)
+ (-12 (-5 *3 (-1157)) (-5 *4 (-566)) (-5 *5 (-689 (-169 (-225))))
+ (-5 *2 (-1035)) (-5 *1 (-754)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
+ (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-192))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-301))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1155 (-225))) (-5 *2 (-644 (-1157))) (-5 *1 (-306)))))
+(((*1 *1 *2 *2 *3)
+ (-12 (-5 *3 (-644 (-1175))) (-4 *4 (-1099))
+ (-4 *5 (-13 (-1049) (-886 *4) (-614 (-892 *4))))
+ (-5 *1 (-1075 *4 *5 *2))
+ (-4 *2 (-13 (-432 *5) (-886 *4) (-614 (-892 *4))))))
+ ((*1 *1 *2 *2)
+ (-12 (-4 *3 (-1099)) (-4 *4 (-13 (-1049) (-886 *3) (-614 (-892 *3))))
+ (-5 *1 (-1075 *3 *4 *2))
+ (-4 *2 (-13 (-432 *4) (-886 *3) (-614 (-892 *3)))))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1155 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1004 *3)) (-14 *3 (-566)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *8)) (-4 *8 (-949 *5 *7 *6))
- (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
- (-4 *7 (-793))
+ (-12 (-5 *3 (-653 (-409 *6))) (-5 *4 (-409 *6)) (-4 *6 (-1240 *5))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
(-5 *2
- (-644
- (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8))
- (|:| |wcond| (-644 (-952 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1264 (-409 (-952 *5))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *5))))))))))
- (-5 *1 (-924 *5 *6 *7 *8)) (-5 *4 (-644 *8))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4))))
+ (-5 *1 (-810 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *8)) (-5 *4 (-644 (-1175))) (-4 *8 (-949 *5 *7 *6))
- (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
- (-4 *7 (-793))
- (-5 *2
- (-644
- (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8))
- (|:| |wcond| (-644 (-952 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1264 (-409 (-952 *5))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *5))))))))))
- (-5 *1 (-924 *5 *6 *7 *8))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-689 *7)) (-4 *7 (-949 *4 *6 *5))
- (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793))
- (-5 *2
- (-644
- (-2 (|:| |eqzro| (-644 *7)) (|:| |neqzro| (-644 *7))
- (|:| |wcond| (-644 (-952 *4)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1264 (-409 (-952 *4))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *4))))))))))
- (-5 *1 (-924 *4 *5 *6 *7))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-689 *9)) (-5 *5 (-921)) (-4 *9 (-949 *6 *8 *7))
- (-4 *6 (-13 (-308) (-147))) (-4 *7 (-13 (-850) (-614 (-1175))))
- (-4 *8 (-793))
- (-5 *2
- (-644
- (-2 (|:| |eqzro| (-644 *9)) (|:| |neqzro| (-644 *9))
- (|:| |wcond| (-644 (-952 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1264 (-409 (-952 *6))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *6))))))))))
- (-5 *1 (-924 *6 *7 *8 *9)) (-5 *4 (-644 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 (-1175))) (-5 *5 (-921))
- (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147)))
- (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793))
- (-5 *2
- (-644
- (-2 (|:| |eqzro| (-644 *9)) (|:| |neqzro| (-644 *9))
- (|:| |wcond| (-644 (-952 *6)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1264 (-409 (-952 *6))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *6))))))))))
- (-5 *1 (-924 *6 *7 *8 *9))))
+ (-12 (-5 *3 (-653 (-409 *6))) (-4 *6 (-1240 *5))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-5 *2 (-2 (|:| -1575 (-644 (-409 *6))) (|:| -4193 (-689 *5))))
+ (-5 *1 (-810 *5 *6)) (-5 *4 (-644 (-409 *6)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *8)) (-5 *4 (-921)) (-4 *8 (-949 *5 *7 *6))
- (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
- (-4 *7 (-793))
+ (-12 (-5 *3 (-654 *6 (-409 *6))) (-5 *4 (-409 *6)) (-4 *6 (-1240 *5))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
(-5 *2
- (-644
- (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8))
- (|:| |wcond| (-644 (-952 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1264 (-409 (-952 *5))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *5))))))))))
- (-5 *1 (-924 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 *9)) (-5 *5 (-1157))
- (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147)))
- (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566))
- (-5 *1 (-924 *6 *7 *8 *9))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-689 *9)) (-5 *4 (-644 (-1175))) (-5 *5 (-1157))
- (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147)))
- (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566))
- (-5 *1 (-924 *6 *7 *8 *9))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1575 (-644 *4))))
+ (-5 *1 (-810 *5 *6))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-689 *8)) (-5 *4 (-1157)) (-4 *8 (-949 *5 *7 *6))
- (-4 *5 (-13 (-308) (-147))) (-4 *6 (-13 (-850) (-614 (-1175))))
- (-4 *7 (-793)) (-5 *2 (-566)) (-5 *1 (-924 *5 *6 *7 *8))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-689 *10)) (-5 *4 (-644 *10)) (-5 *5 (-921))
- (-5 *6 (-1157)) (-4 *10 (-949 *7 *9 *8)) (-4 *7 (-13 (-308) (-147)))
- (-4 *8 (-13 (-850) (-614 (-1175)))) (-4 *9 (-793)) (-5 *2 (-566))
- (-5 *1 (-924 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-689 *10)) (-5 *4 (-644 (-1175))) (-5 *5 (-921))
- (-5 *6 (-1157)) (-4 *10 (-949 *7 *9 *8)) (-4 *7 (-13 (-308) (-147)))
- (-4 *8 (-13 (-850) (-614 (-1175)))) (-4 *9 (-793)) (-5 *2 (-566))
- (-5 *1 (-924 *7 *8 *9 *10))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-689 *9)) (-5 *4 (-921)) (-5 *5 (-1157))
- (-4 *9 (-949 *6 *8 *7)) (-4 *6 (-13 (-308) (-147)))
- (-4 *7 (-13 (-850) (-614 (-1175)))) (-4 *8 (-793)) (-5 *2 (-566))
- (-5 *1 (-924 *6 *7 *8 *9)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-244 *2)) (-4 *2 (-1214))))
- ((*1 *1 *1 *1) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214))))
- ((*1 *1 *1 *2)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-1252 *2)) (-4 *2 (-1214)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-771)) (-4 *4 (-1049))
- (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-1240 *4)))))
+ (-12 (-5 *3 (-654 *6 (-409 *6))) (-4 *6 (-1240 *5))
+ (-4 *5 (-13 (-365) (-147) (-1038 (-566)) (-1038 (-409 (-566)))))
+ (-5 *2 (-2 (|:| -1575 (-644 (-409 *6))) (|:| -4193 (-689 *5))))
+ (-5 *1 (-810 *5 *6)) (-5 *4 (-644 (-409 *6))))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1070 *4 *5 *6 *3)) (-4 *4 (-454)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-129))))))
(((*1 *2 *1)
- (-12 (-4 *1 (-254 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-850))
- (-4 *5 (-267 *4)) (-4 *6 (-793)) (-5 *2 (-644 *4)))))
+ (-12 (-4 *1 (-556 *3)) (-4 *3 (-13 (-406) (-1199))) (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-4 *1 (-848)) (-5 *2 (-112))))
+ ((*1 *2 *3 *1)
+ (-12 (-4 *1 (-1067 *4 *3)) (-4 *4 (-13 (-848) (-365)))
+ (-4 *3 (-1240 *4)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 (-952 *3))) (-4 *3 (-454)) (-5 *1 (-362 *3 *4))
+ (-14 *4 (-644 (-1175)))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-452 *3 *4 *5 *6))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6))
+ (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-5 *1 (-452 *4 *5 *6 *7))))
+ ((*1 *2 *2 *3 *3)
+ (-12 (-5 *2 (-644 *7)) (-5 *3 (-1157)) (-4 *7 (-949 *4 *5 *6))
+ (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-5 *1 (-452 *4 *5 *6 *7))))
+ ((*1 *1 *1)
+ (-12 (-4 *2 (-365)) (-4 *3 (-793)) (-4 *4 (-850))
+ (-5 *1 (-506 *2 *3 *4 *5)) (-4 *5 (-949 *2 *3 *4))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-644 (-780 *3 (-864 *4)))) (-4 *3 (-454))
+ (-14 *4 (-644 (-1175))) (-5 *1 (-628 *3 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1175)) (-5 *2 (-1269)) (-5 *1 (-1178)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-1049)) (-4 *2 (-687 *4 *5 *6))
- (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1240 *4)) (-4 *5 (-375 *4))
- (-4 *6 (-375 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-825)))))
-(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1143)) (-5 *3 (-566)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-247 *3 *4))
- (-14 *3 (-644 (-1175))) (-4 *4 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-566))) (-14 *3 (-644 (-1175)))
- (-5 *1 (-456 *3 *4 *5)) (-4 *4 (-1049))
- (-4 *5 (-238 (-2997 *3) (-771)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-483 *3 *4))
- (-14 *3 (-644 (-1175))) (-4 *4 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-644 (-873 (-1180) (-771)))) (-5 *1 (-334)))))
-(((*1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-157)))))
-(((*1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-1184)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2408 *4)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-644 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566))))))
- (-5 *2 (-644 (-225))) (-5 *1 (-306)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2 (-644 (-2 (|:| |val| *3) (|:| -2248 *4))))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-889 *4 *5)) (-5 *3 (-889 *4 *6)) (-4 *4 (-1099))
- (-4 *5 (-1099)) (-4 *6 (-666 *5)) (-5 *1 (-885 *4 *5 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-905 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *1) (-5 *1 (-141))) ((*1 *1 *1) (-5 *1 (-144)))
- ((*1 *1 *1) (-4 *1 (-1143))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
- (-5 *2 (-689 *4))))
- ((*1 *2 *1) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-921)) (-5 *4 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265)))))
+ (-12 (-4 *3 (-308)) (-4 *3 (-172)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3)))
+ (-5 *1 (-688 *3 *4 *5 *6)) (-4 *6 (-687 *3 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-700 *3))
+ (-4 *3 (-308)))))
(((*1 *2 *2)
(-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
(-4 *2 (-13 (-432 *3) (-1199))))))
-(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-344 *4 *3 *5)) (-4 *4 (-1218)) (-4 *3 (-1240 *4))
- (-4 *5 (-1240 (-409 *3))) (-5 *2 (-112))))
- ((*1 *2 *1 *3)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
- (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-365)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *6))
- (-5 *1 (-506 *3 *4 *5 *6)) (-4 *6 (-949 *3 *4 *5))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-905 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3) (-12 (-5 *3 (-112)) (-5 *2 (-1157)) (-5 *1 (-52)))))
+ (-12 (-4 *1 (-1102 *3 *4 *5 *6 *7)) (-4 *3 (-1099)) (-4 *4 (-1099))
+ (-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *7 (-1099)) (-5 *2 (-112)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5 *4 *6 *7)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *5 (-1157))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-82 PDEF))))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-83 BNDY)))) (-5 *2 (-1035))
+ (-5 *1 (-750)))))
+(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))
+ (-5 *2 (-1035)) (-5 *1 (-748)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-889 *5 *3)) (-5 *4 (-892 *5)) (-4 *5 (-1099))
+ (-4 *3 (-166 *6)) (-4 (-952 *6) (-886 *5))
+ (-4 *6 (-13 (-886 *5) (-172))) (-5 *1 (-178 *5 *6 *3))))
+ ((*1 *2 *1 *3 *2)
+ (-12 (-5 *2 (-889 *4 *1)) (-5 *3 (-892 *4)) (-4 *1 (-886 *4))
+ (-4 *4 (-1099))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-889 *5 *6)) (-5 *4 (-892 *5)) (-4 *5 (-1099))
+ (-4 *6 (-13 (-1099) (-1038 *3))) (-4 *3 (-886 *5))
+ (-5 *1 (-931 *5 *3 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099))
+ (-4 *3 (-13 (-432 *6) (-614 *4) (-886 *5) (-1038 (-612 $))))
+ (-5 *4 (-892 *5)) (-4 *6 (-13 (-558) (-886 *5)))
+ (-5 *1 (-932 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-889 (-566) *3)) (-5 *4 (-892 (-566))) (-4 *3 (-547))
+ (-5 *1 (-933 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-889 *5 *6)) (-5 *3 (-612 *6)) (-4 *5 (-1099))
+ (-4 *6 (-13 (-1099) (-1038 (-612 $)) (-614 *4) (-886 *5)))
+ (-5 *4 (-892 *5)) (-5 *1 (-934 *5 *6))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-885 *5 *6 *3)) (-5 *4 (-892 *5)) (-4 *5 (-1099))
+ (-4 *6 (-886 *5)) (-4 *3 (-666 *6)) (-5 *1 (-935 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2 *5)
+ (-12 (-5 *5 (-1 (-889 *6 *3) *8 (-892 *6) (-889 *6 *3)))
+ (-4 *8 (-850)) (-5 *2 (-889 *6 *3)) (-5 *4 (-892 *6))
+ (-4 *6 (-1099)) (-4 *3 (-13 (-949 *9 *7 *8) (-614 *4)))
+ (-4 *7 (-793)) (-4 *9 (-13 (-1049) (-886 *6)))
+ (-5 *1 (-936 *6 *7 *8 *9 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099))
+ (-4 *3 (-13 (-949 *8 *6 *7) (-614 *4))) (-5 *4 (-892 *5))
+ (-4 *7 (-886 *5)) (-4 *6 (-793)) (-4 *7 (-850))
+ (-4 *8 (-13 (-1049) (-886 *5))) (-5 *1 (-936 *5 *6 *7 *8 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099)) (-4 *3 (-992 *6))
+ (-4 *6 (-13 (-558) (-886 *5) (-614 *4))) (-5 *4 (-892 *5))
+ (-5 *1 (-939 *5 *6 *3))))
+ ((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-889 *5 (-1175))) (-5 *3 (-1175)) (-5 *4 (-892 *5))
+ (-4 *5 (-1099)) (-5 *1 (-940 *5))))
+ ((*1 *2 *3 *4 *5 *2 *6)
+ (-12 (-5 *4 (-644 (-892 *7))) (-5 *5 (-1 *9 (-644 *9)))
+ (-5 *6 (-1 (-889 *7 *9) *9 (-892 *7) (-889 *7 *9))) (-4 *7 (-1099))
+ (-4 *9 (-13 (-1049) (-614 (-892 *7)) (-1038 *8)))
+ (-5 *2 (-889 *7 *9)) (-5 *3 (-644 *9)) (-4 *8 (-1049))
+ (-5 *1 (-941 *7 *8 *9)))))
+(((*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-566))
+ (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-612 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4)))
+ (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-278 *4 *2)))))
+(((*1 *2)
+ (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
+ (-5 *1 (-988 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6))))
+ ((*1 *2)
+ (-12 (-4 *3 (-454)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-1269))
+ (-5 *1 (-1106 *3 *4 *5 *6 *7)) (-4 *7 (-1070 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1264 *3)) (-4 *3 (-1049)) (-5 *1 (-712 *3 *4))
+ (-4 *4 (-1240 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-561)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1175))
+ (-4 *5 (-13 (-558) (-1038 (-566)) (-147)))
+ (-5 *2
+ (-2 (|:| -2883 (-409 (-952 *5))) (|:| |coeff| (-409 (-952 *5)))))
+ (-5 *1 (-572 *5)) (-5 *3 (-409 (-952 *5))))))
+(((*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-560 *3)) (-4 *3 (-547)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-365))
+ (-5 *2 (-2 (|:| -3362 (-420 *3)) (|:| |special| (-420 *3))))
+ (-5 *1 (-727 *5 *3)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1103)) (-5 *1 (-281)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-508)) (-5 *1 (-114))))
((*1 *2 *2 *3)
(-12 (-5 *3 (-508)) (-4 *4 (-1099)) (-5 *1 (-929 *4 *2))
@@ -16480,97 +16521,41 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-1175)) (-5 *4 (-508)) (-5 *2 (-317 (-566)))
(-5 *1 (-930)))))
-(((*1 *2 *3 *4)
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-109))) (-5 *1 (-175)))))
+(((*1 *2 *3 *3 *4 *4 *3 *3 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-755)))))
+(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-381)) (-5 *1 (-1040)))))
+(((*1 *2 *3 *3 *3 *3 *4 *3 *5 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-750)))))
+(((*1 *2 *3 *3 *3 *4)
(-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1552 *4)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1099)) (-5 *1 (-964 *3 *2)) (-4 *3 (-1099)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-920)) (-5 *2 (-2 (|:| -3157 (-644 *1)) (|:| -4067 *1)))
- (-5 *3 (-644 *1)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1157) (-774))) (-5 *1 (-114)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2))
- (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4418)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-409 (-952 *5)))) (-5 *4 (-644 (-1175)))
- (-4 *5 (-558)) (-5 *2 (-644 (-644 (-952 *5)))) (-5 *1 (-1183 *5)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *3 *4 *3 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-112)) (-5 *5 (-689 (-169 (-225))))
- (-5 *2 (-1035)) (-5 *1 (-755)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-52)) (-5 *1 (-1192)))))
-(((*1 *2 *3 *4)
- (|partial| -12 (-5 *4 (-295 (-833 *3)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *2 (-833 *3)) (-5 *1 (-636 *5 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-295 (-833 (-952 *5)))) (-4 *5 (-454))
- (-5 *2 (-833 (-409 (-952 *5)))) (-5 *1 (-637 *5))
- (-5 *3 (-409 (-952 *5)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-295 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5)))
- (-4 *5 (-454)) (-5 *2 (-833 *3)) (-5 *1 (-637 *5)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-689 *6)) (-5 *5 (-1 (-420 (-1171 *6)) (-1171 *6)))
- (-4 *6 (-365))
- (-5 *2
- (-644
- (-2 (|:| |outval| *7) (|:| |outmult| (-566))
- (|:| |outvect| (-644 (-689 *7))))))
- (-5 *1 (-534 *6 *7 *4)) (-4 *7 (-365)) (-4 *4 (-13 (-365) (-848))))))
-(((*1 *2 *3 *2)
- (|partial| -12 (-5 *2 (-1264 *4)) (-5 *3 (-689 *4)) (-4 *4 (-365))
- (-5 *1 (-667 *4))))
- ((*1 *2 *3 *2)
- (|partial| -12 (-4 *4 (-365))
- (-4 *5 (-13 (-375 *4) (-10 -7 (-6 -4418))))
- (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4418))))
- (-5 *1 (-668 *4 *5 *2 *3)) (-4 *3 (-687 *4 *5 *2))))
- ((*1 *2 *3 *2 *4 *5)
- (|partial| -12 (-5 *4 (-644 *2)) (-5 *5 (-1 *2 *2)) (-4 *2 (-365))
- (-5 *1 (-814 *2 *3)) (-4 *3 (-656 *2))))
- ((*1 *2 *3)
- (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-771)) (-4 *2 (-558)) (-5 *1 (-969 *2 *4))
- (-4 *4 (-1240 *2)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *2)) (-5 *1 (-179 *2)) (-4 *2 (-308))))
- ((*1 *2 *3 *2)
- (-12 (-5 *3 (-644 (-644 *4))) (-5 *2 (-644 *4)) (-4 *4 (-308))
- (-5 *1 (-179 *4))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-644 *8))
- (-5 *4
- (-644
- (-2 (|:| -1990 (-689 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-689 *7)))))
- (-5 *5 (-771)) (-4 *8 (-1240 *7)) (-4 *7 (-1240 *6)) (-4 *6 (-351))
- (-5 *2
- (-2 (|:| -1990 (-689 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-689 *7))))
- (-5 *1 (-500 *6 *7 *8))))
- ((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
-(((*1 *1 *1) (-4 *1 (-173)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-366 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-1099)))))
-(((*1 *1 *2 *3)
- (-12
- (-5 *3
- (-644
- (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *2)
- (|:| |xpnt| (-566)))))
- (-4 *2 (-558)) (-5 *1 (-420 *2))))
- ((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| |contp| (-566))
- (|:| -4236 (-644 (-2 (|:| |irr| *4) (|:| -2175 (-566)))))))
- (-4 *4 (-1240 (-566))) (-5 *2 (-420 *4)) (-5 *1 (-444 *4)))))
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-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 (-192)))))
+(((*1 *2 *2) (-12 (-5 *1 (-961 *2)) (-4 *2 (-547)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1157)) (-5 *2 (-566)) (-5 *1 (-1196 *4))
+ (-4 *4 (-1049)))))
+(((*1 *2 *3 *3 *4 *5)
+ (-12 (-5 *3 (-1157)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
+ (-4 *4 (-1064 *6 *7 *8)) (-5 *2 (-1269))
+ (-5 *1 (-776 *6 *7 *8 *4 *5)) (-4 *5 (-1070 *6 *7 *8 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-519)))))
(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-297))))
((*1 *2 *3)
(-12 (-5 *3 (-644 (-1157))) (-5 *2 (-313)) (-5 *1 (-297))))
@@ -16578,197 +16563,214 @@
((*1 *2 *3 *4)
(-12 (-5 *4 (-644 (-1157))) (-5 *3 (-1157)) (-5 *2 (-313))
(-5 *1 (-297)))))
-(((*1 *1 *1 *1) (-5 *1 (-862))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-338 *5 *6 *7 *8)) (-4 *5 (-432 *4))
- (-4 *6 (-1240 *5)) (-4 *7 (-1240 (-409 *6)))
- (-4 *8 (-344 *5 *6 *7)) (-4 *4 (-13 (-558) (-1038 (-566))))
- (-5 *2 (-2 (|:| -2716 (-771)) (|:| -3277 *8)))
- (-5 *1 (-911 *4 *5 *6 *7 *8))))
+ (-12 (-5 *3 (-1237 *5 *4)) (-4 *4 (-820)) (-14 *5 (-1175))
+ (-5 *2 (-566)) (-5 *1 (-1113 *4 *5)))))
+(((*1 *2 *3 *4 *4 *3 *3 *5 *3 *4 *6 *7)
+ (-12 (-5 *4 (-566)) (-5 *5 (-689 (-225)))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN)))) (-5 *3 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-749)))))
+(((*1 *2 *3 *3 *4 *5 *3 *6)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
+ (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-81 FCN)))) (-5 *2 (-1035))
+ (-5 *1 (-746)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-365)) (-4 *4 (-375 *3)) (-4 *5 (-375 *3))
+ (-5 *1 (-523 *3 *4 *5 *2)) (-4 *2 (-687 *3 *4 *5))))
((*1 *2 *3)
- (|partial| -12 (-5 *3 (-338 (-409 (-566)) *4 *5 *6))
- (-4 *4 (-1240 (-409 (-566)))) (-4 *5 (-1240 (-409 *4)))
- (-4 *6 (-344 (-409 (-566)) *4 *5))
- (-5 *2 (-2 (|:| -2716 (-771)) (|:| -3277 *6)))
- (-5 *1 (-912 *4 *5 *6)))))
+ (-12 (-4 *4 (-558)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
+ (-4 *7 (-992 *4)) (-4 *2 (-687 *7 *8 *9))
+ (-5 *1 (-524 *4 *5 *6 *3 *7 *8 *9 *2)) (-4 *3 (-687 *4 *5 *6))
+ (-4 *8 (-375 *7)) (-4 *9 (-375 *7))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
+ (-4 *4 (-375 *2)) (-4 *2 (-308))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-308)) (-4 *3 (-172)) (-4 *4 (-375 *3))
+ (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2))
+ (-4 *2 (-687 *3 *4 *5))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1053 *2 *3 *4 *5 *6)) (-4 *4 (-1049))
+ (-4 *5 (-238 *3 *4)) (-4 *6 (-238 *2 *4)) (-4 *4 (-308)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1155 *3)) (-5 *1 (-174 *3)) (-4 *3 (-308)))))
(((*1 *2 *3) (-12 (-5 *3 (-771)) (-5 *2 (-1 (-381))) (-5 *1 (-1040)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *3 (-1240 (-566))) (-5 *1 (-488 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-238 *3 *2)) (-4 *2 (-1214)) (-4 *2 (-1049))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-862))))
- ((*1 *1 *1) (-5 *1 (-862)))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-943 (-225))) (-5 *2 (-225)) (-5 *1 (-1210))))
- ((*1 *2 *1 *1)
- (-12 (-4 *1 (-1262 *2)) (-4 *2 (-1214)) (-4 *2 (-1049)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *4)) (-4 *4 (-365)) (-4 *2 (-1240 *4))
- (-5 *1 (-922 *4 *2)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-644 (-409 (-952 (-566))))) (-5 *4 (-644 (-1175)))
- (-5 *2 (-644 (-644 *5))) (-5 *1 (-382 *5))
- (-4 *5 (-13 (-848) (-365)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-952 (-566)))) (-5 *2 (-644 *4)) (-5 *1 (-382 *4))
- (-4 *4 (-13 (-848) (-365))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1 (-225) (-225) (-225) (-225))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225) (-225))) (-5 *1 (-264))))
- ((*1 *1 *2) (-12 (-5 *2 (-1 (-225) (-225))) (-5 *1 (-264)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1214)) (-5 *2 (-644 *1)) (-4 *1 (-1010 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-1163 *3 *4))) (-5 *1 (-1163 *3 *4))
- (-14 *3 (-921)) (-4 *4 (-1049)))))
-(((*1 *2 *2 *2 *2 *2 *2)
- (-12 (-4 *2 (-13 (-365) (-10 -8 (-15 ** ($ $ (-409 (-566)))))))
- (-5 *1 (-1127 *3 *2)) (-4 *3 (-1240 *2)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *8 (-1064 *5 *6 *7))
- (-5 *2
- (-2 (|:| |val| (-644 *8))
- (|:| |towers| (-644 (-1027 *5 *6 *7 *8)))))
- (-5 *1 (-1027 *5 *6 *7 *8)) (-5 *3 (-644 *8))))
- ((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *8 (-1064 *5 *6 *7))
- (-5 *2
- (-2 (|:| |val| (-644 *8))
- (|:| |towers| (-644 (-1145 *5 *6 *7 *8)))))
- (-5 *1 (-1145 *5 *6 *7 *8)) (-5 *3 (-644 *8)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1171 (-566))) (-5 *1 (-942)) (-5 *3 (-566)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-147))
+ (-4 *3 (-308)) (-4 *3 (-558)) (-4 *4 (-793)) (-4 *5 (-850))
+ (-5 *1 (-977 *3 *4 *5 *6)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-892 *4)) (-4 *4 (-1099)) (-4 *2 (-1099))
+ (-5 *1 (-889 *4 *2)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-142 *2 *4 *3))
- (-4 *3 (-375 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-505 *2 *4 *5 *3))
- (-4 *5 (-375 *2)) (-4 *3 (-375 *4))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-689 *4)) (-4 *4 (-992 *2)) (-4 *2 (-558))
- (-5 *1 (-693 *2 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-992 *2)) (-4 *2 (-558)) (-5 *1 (-1233 *2 *4 *3))
- (-4 *3 (-1240 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-566)))))
-(((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-782 *3)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *1 (-963 *3 *2)) (-4 *2 (-131)) (-4 *3 (-558))
- (-4 *3 (-1049)) (-4 *2 (-792))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-1171 *3)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-971)) (-4 *2 (-131)) (-5 *1 (-1177 *3)) (-4 *3 (-558))
- (-4 *3 (-1049))))
- ((*1 *1 *1 *2 *3 *1)
- (-12 (-5 *2 (-771)) (-5 *1 (-1237 *4 *3)) (-14 *4 (-1175))
- (-4 *3 (-1049)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-689 *5))) (-4 *5 (-308)) (-4 *5 (-1049))
- (-5 *2 (-1264 (-1264 *5))) (-5 *1 (-1029 *5)) (-5 *4 (-1264 *5)))))
-(((*1 *1)
- (-12 (-4 *1 (-406)) (-2426 (|has| *1 (-6 -4408)))
- (-2426 (|has| *1 (-6 -4400)))))
- ((*1 *2 *1) (-12 (-4 *1 (-427 *2)) (-4 *2 (-1099)) (-4 *2 (-850))))
- ((*1 *2 *1) (-12 (-4 *1 (-830 *2)) (-4 *2 (-850))))
- ((*1 *1) (-4 *1 (-844))) ((*1 *1 *1 *1) (-4 *1 (-850))))
-(((*1 *2 *3 *3 *4 *4)
- (|partial| -12 (-5 *3 (-771)) (-4 *5 (-365)) (-5 *2 (-174 *6))
- (-5 *1 (-867 *5 *4 *6)) (-4 *4 (-1255 *5)) (-4 *6 (-1240 *5)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *9 (-1070 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793))
- (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1068 *5 *6 *7 *8 *9))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 *8)) (-5 *4 (-644 *9)) (-4 *8 (-1064 *5 *6 *7))
- (-4 *9 (-1108 *5 *6 *7 *8)) (-4 *5 (-454)) (-4 *6 (-793))
- (-4 *7 (-850)) (-5 *2 (-771)) (-5 *1 (-1144 *5 *6 *7 *8 *9)))))
-(((*1 *2 *1)
- (-12 (-4 *4 (-1099)) (-5 *2 (-112)) (-5 *1 (-885 *3 *4 *5))
- (-4 *3 (-1099)) (-4 *5 (-666 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-889 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1099)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1101 (-1101 *3))) (-5 *1 (-904 *3)) (-4 *3 (-1099)))))
+ (-12 (-5 *3 (-644 (-2 (|:| |den| (-566)) (|:| |gcdnum| (-566)))))
+ (-4 *4 (-1240 (-409 *2))) (-5 *2 (-566)) (-5 *1 (-913 *4 *5))
+ (-4 *5 (-1240 (-409 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-144)))))
+(((*1 *2)
+ (-12 (-5 *2 (-409 (-952 *3))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-656 *2)) (-4 *2 (-1049)) (-4 *2 (-365))))
- ((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-365)) (-5 *1 (-659 *4 *2))
- (-4 *2 (-656 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-954)))))
+ (-12 (-4 *1 (-254 *2 *3 *4 *5)) (-4 *2 (-1049)) (-4 *3 (-850))
+ (-4 *4 (-267 *3)) (-4 *5 (-793)))))
(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-317 (-225))) (-5 *4 (-1175))
- (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-192))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-317 (-225))) (-5 *4 (-1175))
- (-5 *5 (-1093 (-843 (-225)))) (-5 *2 (-644 (-225))) (-5 *1 (-301)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-409 (-952 (-169 (-566))))))
- (-5 *2 (-644 (-644 (-295 (-952 (-169 *4)))))) (-5 *1 (-380 *4))
- (-4 *4 (-13 (-365) (-848)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-295 (-409 (-952 (-169 (-566)))))))
- (-5 *2 (-644 (-644 (-295 (-952 (-169 *4)))))) (-5 *1 (-380 *4))
- (-4 *4 (-13 (-365) (-848)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-409 (-952 (-169 (-566)))))
- (-5 *2 (-644 (-295 (-952 (-169 *4))))) (-5 *1 (-380 *4))
- (-4 *4 (-13 (-365) (-848)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-295 (-409 (-952 (-169 (-566))))))
- (-5 *2 (-644 (-295 (-952 (-169 *4))))) (-5 *1 (-380 *4))
- (-4 *4 (-13 (-365) (-848))))))
-(((*1 *2 *3) (-12 (-5 *3 (-317 (-225))) (-5 *2 (-112)) (-5 *1 (-268)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *4 (-225))
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -4394 *6) (|:| |sol?| (-112))) (-566)
+ *6))
+ (-4 *6 (-365)) (-4 *7 (-1240 *6))
+ (-5 *2 (-2 (|:| |answer| (-587 (-409 *7))) (|:| |a0| *6)))
+ (-5 *1 (-576 *6 *7)) (-5 *3 (-409 *7)))))
+(((*1 *1 *1) (-5 *1 (-1062))))
+(((*1 *2 *2)
+ (-12
(-5 *2
- (-2 (|:| |brans| (-644 (-644 (-943 *4))))
- (|:| |xValues| (-1093 *4)) (|:| |yValues| (-1093 *4))))
- (-5 *1 (-153)) (-5 *3 (-644 (-644 (-943 *4)))))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1207 *3 *4 *5 *6)) (-4 *3 (-558)) (-4 *4 (-793))
- (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-644 *5)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-566)) (-5 *3 (-921)) (-5 *1 (-699))))
- ((*1 *2 *2 *2 *3 *4)
- (-12 (-5 *2 (-689 *5)) (-5 *3 (-99 *5)) (-5 *4 (-1 *5 *5))
- (-4 *5 (-365)) (-5 *1 (-978 *5)))))
+ (-644
+ (-2 (|:| |lcmfij| *4) (|:| |totdeg| (-771)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *4 (-793)) (-4 *6 (-949 *3 *4 *5)) (-4 *3 (-454)) (-4 *5 (-850))
+ (-5 *1 (-451 *3 *4 *5 *6)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-782 *2)) (-4 *2 (-1049))))
+ ((*1 *1 *1 *1)
+ (-12 (-4 *1 (-1064 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-793))
+ (-4 *4 (-850)))))
+(((*1 *2 *3 *4 *4 *4 *3 *3 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-751)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
+(((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1157)) (-5 *1 (-306)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
+ (-5 *1 (-176 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-331)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-558) (-147))) (-5 *1 (-539 *3 *2))
+ (-4 *2 (-1255 *3))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-4 *4 (-1240 *3))
+ (-4 *5 (-724 *3 *4)) (-5 *1 (-543 *3 *4 *5 *2)) (-4 *2 (-1255 *5))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-365) (-370) (-614 (-566)))) (-5 *1 (-544 *3 *2))
+ (-4 *2 (-1255 *3))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-13 (-558) (-147)))
+ (-5 *1 (-1151 *3)))))
(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1231 (-566))) (-4 *1 (-283 *3)) (-4 *3 (-1214))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-566)) (-4 *1 (-283 *3)) (-4 *3 (-1214)))))
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-648 *3)) (-4 *3 (-1049))
+ (-5 *1 (-714 *3 *4))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1049)) (-5 *1 (-836 *3)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-313)) (-5 *1 (-829)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1252 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-303)) (-5 *3 (-1175)) (-5 *2 (-112))))
+ ((*1 *2 *1 *1) (-12 (-4 *1 (-303)) (-5 *2 (-112)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1119)) (-5 *1 (-954)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1099)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *3 (-1064 *4 *5 *6)) (-5 *2 (-644 *1))
+ (-4 *1 (-1070 *4 *5 *6 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-563)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1157)) (-4 *1 (-366 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-1099)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
- (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
- (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
- (|:| |abserr| (-225)) (|:| |relerr| (-225))))
- (-5 *2 (-381)) (-5 *1 (-205)))))
-(((*1 *2 *2)
+ (-12 (-5 *3 (-1264 *4)) (-4 *4 (-639 (-566))) (-5 *2 (-112))
+ (-5 *1 (-1291 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-921)) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
+ (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *2 *3 *3 *3 *3 *4 *5)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566))
+ (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2386))))
+ (-5 *2 (-1035)) (-5 *1 (-746)))))
+(((*1 *2 *1)
(-12
(-5 *2
- (-987 (-409 (-566)) (-864 *3) (-240 *4 (-771))
- (-247 *3 (-409 (-566)))))
- (-14 *3 (-644 (-1175))) (-14 *4 (-771)) (-5 *1 (-986 *3 *4)))))
+ (-644
+ (-644
+ (-3 (|:| -2639 (-1175))
+ (|:| -3787 (-644 (-3 (|:| S (-1175)) (|:| P (-952 (-566))))))))))
+ (-5 *1 (-1179)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-2 (|:| |cd| (-1157)) (|:| -2639 (-1157))))
+ (-5 *1 (-822)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-1 *2 *2)) (-4 *5 (-365)) (-4 *6 (-1240 (-409 *2)))
- (-4 *2 (-1240 *5)) (-5 *1 (-215 *5 *2 *6 *3))
- (-4 *3 (-344 *5 *2 *6)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-558))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1552 *4)))
- (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-114) (-114))) (-5 *1 (-114)))))
+ (-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
+ (-5 *1 (-705 *3 *4)) (-4 *3 (-1214)) (-4 *4 (-1214)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-689 (-952 *4))) (-5 *1 (-1028 *4))
+ (-4 *4 (-1049)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-351)) (-5 *2 (-958 (-1171 *4))) (-5 *1 (-359 *4))
+ (-5 *3 (-1171 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-909)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *7 (-949 *4 *5 *6)) (-5 *2 (-420 (-1171 *7)))
+ (-5 *1 (-906 *4 *5 *6 *7)) (-5 *3 (-1171 *7))))
+ ((*1 *2 *3)
+ (-12 (-4 *4 (-909)) (-4 *5 (-1240 *4)) (-5 *2 (-420 (-1171 *5)))
+ (-5 *1 (-907 *4 *5)) (-5 *3 (-1171 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-2 (|:| -2473 *4) (|:| -2108 (-566)))))
+ (-4 *4 (-1240 (-566))) (-5 *2 (-737 (-771))) (-5 *1 (-444 *4))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-420 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-1049))
+ (-5 *2 (-737 (-771))) (-5 *1 (-446 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-614 (-892 *3))) (-4 *3 (-886 *3)) (-4 *3 (-454))
+ (-5 *1 (-1205 *3 *2)) (-4 *2 (-614 (-892 *3))) (-4 *2 (-886 *3))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
+ (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-384 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-1099))
+ (-5 *2 (-112))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-596 *3)) (-4 *3 (-1049))))
+ ((*1 *2 *1)
+ (-12 (-4 *3 (-558)) (-5 *2 (-112)) (-5 *1 (-623 *3 *4))
+ (-4 *4 (-1240 *3))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-726))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1281 *3 *4)) (-4 *3 (-850)) (-4 *4 (-1049))
+ (-5 *2 (-112)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-921)) (-5 *2 (-470)) (-5 *1 (-1265)))))
+(((*1 *1 *2) (-12 (-5 *2 (-874)) (-5 *1 (-264))))
+ ((*1 *1 *2) (-12 (-5 *2 (-381)) (-5 *1 (-264)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4414)) (-4 *1 (-235 *3))
+ (-4 *3 (-1099))))
+ ((*1 *1 *2 *1)
+ (-12 (|has| *1 (-6 -4414)) (-4 *1 (-235 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *2 *1)
+ (-12 (-4 *1 (-283 *2)) (-4 *2 (-1214)) (-4 *2 (-1099))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-283 *3)) (-4 *3 (-1214))))
+ ((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-1099))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-566)) (-4 *4 (-1099))
+ (-5 *1 (-737 *4))))
+ ((*1 *1 *2 *1 *3)
+ (-12 (-5 *3 (-566)) (-5 *1 (-737 *2)) (-4 *2 (-1099))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1139 *3 *4)) (-4 *3 (-13 (-1099) (-34)))
+ (-4 *4 (-13 (-1099) (-34))) (-5 *1 (-1140 *3 *4)))))
+(((*1 *1) (-12 (-4 *1 (-1045 *2)) (-4 *2 (-23)))))
(((*1 *2 *2 *3)
(-12 (-5 *3 (-409 (-566))) (-4 *4 (-1038 (-566))) (-4 *4 (-558))
(-5 *1 (-32 *4 *2)) (-4 *2 (-432 *4))))
@@ -16841,409 +16843,203 @@
(-5 *1 (-1161 *3))))
((*1 *1 *1 *2)
(-12 (-4 *1 (-1255 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-365) (-147) (-1038 (-566))))
- (-4 *5 (-1240 *4))
- (-5 *2 (-2 (|:| -2806 (-409 *5)) (|:| |coeff| (-409 *5))))
- (-5 *1 (-570 *4 *5)) (-5 *3 (-409 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *3 *3 *3 *4 *5 *3 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *5 (-689 (-225))) (-5 *4 (-225))
- (-5 *2 (-1035)) (-5 *1 (-753)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-454) (-147))) (-5 *2 (-420 *3))
- (-5 *1 (-100 *4 *3)) (-4 *3 (-1240 *4))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 *3)) (-4 *3 (-1240 *5)) (-4 *5 (-13 (-454) (-147)))
- (-5 *2 (-420 *3)) (-5 *1 (-100 *5 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-171))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-861))))
- ((*1 *1 *2) (-12 (-5 *2 (-390)) (-5 *1 (-861)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-1099))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))))
(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-566)) (|has| *1 (-6 -4418)) (-4 *1 (-1252 *3))
- (-4 *3 (-1214)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-419 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7)) (-5 *2 (-644 *4))
- (-5 *1 (-1107 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 (-566))) (-5 *1 (-136 *3 *4 *5)) (-14 *3 (-566))
- (-14 *4 (-771)) (-4 *5 (-172)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-1175))
+ (-4 *4 (-13 (-454) (-147) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-559 *4 *2)) (-4 *2 (-13 (-27) (-1199) (-432 *4))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793)) (-5 *2 (-409 (-952 *4))) (-5 *1 (-924 *4 *5 *6 *3))
- (-4 *3 (-949 *4 *6 *5))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-689 *7)) (-4 *7 (-949 *4 *6 *5))
- (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793)) (-5 *2 (-689 (-409 (-952 *4))))
- (-5 *1 (-924 *4 *5 *6 *7))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5))
- (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
- (-4 *6 (-793)) (-5 *2 (-644 (-409 (-952 *4))))
- (-5 *1 (-924 *4 *5 *6 *7)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-558) (-1038 (-566)))) (-4 *5 (-432 *4))
+ (-5 *2 (-420 *3)) (-5 *1 (-437 *4 *5 *3)) (-4 *3 (-1240 *5)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 *1)) (-4 *1 (-303))))
+ ((*1 *1 *1) (-4 *1 (-303))) ((*1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-1093 *3)) (-4 *3 (-949 *7 *6 *4)) (-4 *6 (-793))
+ (-4 *4 (-850)) (-4 *7 (-558))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-566))))
+ (-5 *1 (-595 *6 *4 *7 *3))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *5 (-793)) (-4 *4 (-850)) (-4 *6 (-558))
+ (-5 *2 (-2 (|:| |num| *3) (|:| |den| (-566))))
+ (-5 *1 (-595 *5 *4 *6 *3)) (-4 *3 (-949 *6 *5 *4))))
+ ((*1 *1 *1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1 *1) (-5 *1 (-862)))
+ ((*1 *1 *1) (-5 *1 (-862)))
+ ((*1 *2 *2 *3)
(-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *4 *5)) (-4 *5 (-13 (-27) (-1199) (-432 *4)))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *4 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *4)))))
+ (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-1167 *4 *2)) (-4 *2 (-13 (-432 *4) (-160) (-27) (-1199)))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-1091 *2)) (-4 *2 (-13 (-432 *4) (-160) (-27) (-1199)))
+ (-4 *4 (-13 (-558) (-1038 (-566)) (-639 (-566))))
+ (-5 *1 (-1167 *4 *2))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-409 (-566)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *5 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))))
+ (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566))))
+ (-5 *2 (-409 (-952 *5))) (-5 *1 (-1168 *5)) (-5 *3 (-952 *5))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-295 *3)) (-4 *3 (-13 (-27) (-1199) (-432 *5)))
- (-4 *5 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *5 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-295 *3)) (-5 *5 (-409 (-566)))
- (-4 *3 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-316 *6 *3))))
+ (-12 (-5 *4 (-1175)) (-4 *5 (-13 (-558) (-1038 (-566))))
+ (-5 *2 (-3 (-409 (-952 *5)) (-317 *5))) (-5 *1 (-1168 *5))
+ (-5 *3 (-409 (-952 *5)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-1 *6 (-566))) (-5 *4 (-295 *6))
- (-4 *6 (-13 (-27) (-1199) (-432 *5)))
- (-4 *5 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *5 *6))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3))
- (-4 *3 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *6 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-1 *7 (-566))) (-5 *4 (-295 *7)) (-5 *5 (-1231 (-566)))
- (-4 *7 (-13 (-27) (-1199) (-432 *6)))
- (-4 *6 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *6 *7))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-566)))
- (-4 *3 (-13 (-27) (-1199) (-432 *7)))
- (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *7 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *3 (-1 *8 (-409 (-566)))) (-5 *4 (-295 *8))
- (-5 *5 (-1231 (-409 (-566)))) (-5 *6 (-409 (-566)))
- (-4 *8 (-13 (-27) (-1199) (-432 *7)))
- (-4 *7 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *7 *8))))
- ((*1 *2 *3 *4 *5 *6 *7)
- (-12 (-5 *4 (-1175)) (-5 *5 (-295 *3)) (-5 *6 (-1231 (-409 (-566))))
- (-5 *7 (-409 (-566))) (-4 *3 (-13 (-27) (-1199) (-432 *8)))
- (-4 *8 (-13 (-558) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-52))
- (-5 *1 (-461 *8 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3))))
- (-4 *3 (-1049)) (-5 *1 (-596 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-5 *1 (-597 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1155 (-2 (|:| |k| (-566)) (|:| |c| *3))))
- (-4 *3 (-1049)) (-4 *1 (-1224 *3))))
- ((*1 *1 *2 *3)
- (-12 (-5 *2 (-771))
- (-5 *3 (-1155 (-2 (|:| |k| (-409 (-566))) (|:| |c| *4))))
- (-4 *4 (-1049)) (-4 *1 (-1245 *4))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-1049)) (-4 *1 (-1255 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1155 (-2 (|:| |k| (-771)) (|:| |c| *3))))
- (-4 *3 (-1049)) (-4 *1 (-1255 *3)))))
-(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1091 (-952 *5))) (-5 *3 (-952 *5))
+ (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-409 *3))
+ (-5 *1 (-1168 *5))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1091 (-409 (-952 *5)))) (-5 *3 (-409 (-952 *5)))
+ (-4 *5 (-13 (-558) (-1038 (-566)))) (-5 *2 (-3 *3 (-317 *5)))
+ (-5 *1 (-1168 *5)))))
+(((*1 *2)
(-12
- (-5 *3
- (-644
- (-2 (|:| |eqzro| (-644 *8)) (|:| |neqzro| (-644 *8))
- (|:| |wcond| (-644 (-952 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1264 (-409 (-952 *5))))
- (|:| -1990 (-644 (-1264 (-409 (-952 *5))))))))))
- (-5 *4 (-1157)) (-4 *5 (-13 (-308) (-147))) (-4 *8 (-949 *5 *7 *6))
- (-4 *6 (-13 (-850) (-614 (-1175)))) (-4 *7 (-793)) (-5 *2 (-566))
- (-5 *1 (-924 *5 *6 *7 *8)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-943 *3)) (-4 *3 (-13 (-365) (-1199) (-1002)))
- (-5 *1 (-176 *3)))))
-(((*1 *1 *1 *2)
- (-12 (-4 *1 (-976 *3 *4 *2 *5)) (-4 *3 (-1049)) (-4 *4 (-793))
- (-4 *2 (-850)) (-4 *5 (-1064 *3 *4 *2)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
- (|:| -4344 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
- (|:| |relerr| (-225))))
- (-5 *2 (-644 (-225))) (-5 *1 (-204)))))
+ (-5 *2
+ (-1264 (-644 (-2 (|:| -2252 (-910 *3)) (|:| -2208 (-1119))))))
+ (-5 *1 (-353 *3 *4)) (-14 *3 (-921)) (-14 *4 (-921))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1264 (-644 (-2 (|:| -2252 *3) (|:| -2208 (-1119))))))
+ (-5 *1 (-354 *3 *4)) (-4 *3 (-351)) (-14 *4 (-3 (-1171 *3) *2))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1264 (-644 (-2 (|:| -2252 *3) (|:| -2208 (-1119))))))
+ (-5 *1 (-355 *3 *4)) (-4 *3 (-351)) (-14 *4 (-921)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |lfn| (-644 (-317 (-225)))) (|:| -2759 (-644 (-225)))))
- (-5 *2 (-381)) (-5 *1 (-268))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1264 (-317 (-225)))) (-5 *2 (-381)) (-5 *1 (-306)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-1175))
- (-4 *4 (-13 (-308) (-1038 (-566)) (-639 (-566)) (-147)))
- (-5 *1 (-804 *4 *2)) (-4 *2 (-13 (-29 *4) (-1199) (-959)))))
- ((*1 *1 *1 *1 *1) (-5 *1 (-862))) ((*1 *1 *1 *1) (-5 *1 (-862)))
- ((*1 *1 *1) (-5 *1 (-862)))
- ((*1 *2 *3)
- (-12 (-5 *2 (-1155 *3)) (-5 *1 (-1159 *3)) (-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1264 *5)) (-4 *5 (-792)) (-5 *2 (-112))
- (-5 *1 (-845 *4 *5)) (-14 *4 (-771)))))
+ (-12 (-4 *4 (-1049)) (-4 *3 (-1240 *4)) (-4 *2 (-1255 *4))
+ (-5 *1 (-1258 *4 *3 *5 *2)) (-4 *5 (-656 *3)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1))
- (-4 *1 (-1064 *3 *4 *5)))))
-(((*1 *2 *1) (-12 (-4 *1 (-529)) (-5 *2 (-691 (-548))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-771)) (-4 *5 (-558))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-157)) (-5 *1 (-874)))))
-(((*1 *2 *2 *1)
- (-12 (-5 *2 (-1288 *3 *4)) (-4 *1 (-376 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-172))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-388 *2)) (-4 *2 (-1099))))
- ((*1 *1 *1 *2) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
- ((*1 *1 *1 *1) (|partial| -12 (-5 *1 (-819 *2)) (-4 *2 (-850))))
- ((*1 *1 *1 *1)
- (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-819 *3)) (-4 *1 (-1281 *3 *4)) (-4 *3 (-850))
- (-4 *4 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-566)) (-5 *4 (-420 *2)) (-4 *2 (-949 *7 *5 *6))
- (-5 *1 (-742 *5 *6 *7 *2)) (-4 *5 (-793)) (-4 *6 (-850))
- (-4 *7 (-308)))))
-(((*1 *2 *3) (-12 (-5 *3 (-508)) (-5 *2 (-691 (-187))) (-5 *1 (-187)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-983 *2)) (-4 *2 (-1199)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-264))) (-5 *4 (-1175)) (-5 *2 (-112))
- (-5 *1 (-264)))))
+ (-12 (-4 *1 (-1247 *3 *2)) (-4 *3 (-1049)) (-4 *2 (-1224 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-171)) (-5 *1 (-1163 *3 *4)) (-14 *3 (-921))
+ (-4 *4 (-1049)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-308) (-147))) (-4 *4 (-13 (-850) (-614 (-1175))))
+ (-4 *5 (-793)) (-5 *1 (-924 *3 *4 *5 *2)) (-4 *2 (-949 *3 *5 *4)))))
(((*1 *2 *3) (-12 (-5 *2 (-566)) (-5 *1 (-571 *3)) (-4 *3 (-1038 *2))))
((*1 *2 *1)
(-12 (-4 *1 (-1102 *3 *4 *2 *5 *6)) (-4 *3 (-1099)) (-4 *4 (-1099))
(-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))))
-(((*1 *1 *1) (-4 *1 (-35)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002)))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1255 *3))
- (-5 *1 (-279 *3 *4 *2)) (-4 *2 (-1226 *3 *4))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-38 (-409 (-566)))) (-4 *4 (-1224 *3))
- (-5 *1 (-280 *3 *4 *2 *5)) (-4 *2 (-1247 *3 *4)) (-4 *5 (-983 *4))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1160 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-1155 *3)) (-4 *3 (-38 (-409 (-566))))
- (-5 *1 (-1161 *3)))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1 *7 *7)) (-5 *5 (-644 (-409 *7)))
- (-4 *7 (-1240 *6)) (-5 *3 (-409 *7)) (-4 *6 (-365))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-576 *6 *7)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-644 (-225))) (-5 *4 (-771)) (-5 *2 (-689 (-225)))
- (-5 *1 (-306)))))
-(((*1 *2 *2) (-12 (-5 *2 (-566)) (-5 *1 (-926)))))
-(((*1 *2) (-12 (-4 *3 (-172)) (-5 *2 (-1264 *1)) (-4 *1 (-369 *3)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-1265))))
- ((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-921)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
+ (-5 *2
+ (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566))
+ (|:| |success| (-112))))
+ (-5 *1 (-789)) (-5 *5 (-566)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1264 (-1264 (-566)))) (-5 *1 (-468)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1214)) (-5 *2 (-644 *1)) (-4 *1 (-1010 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-432 *2)) (-4 *2 (-1099)) (-4 *2 (-558))))
+ ((*1 *1 *1) (-12 (-4 *1 (-992 *2)) (-4 *2 (-558)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1035)) (-5 *3 (-1175)) (-5 *1 (-268)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-365)) (-4 *7 (-1240 *5)) (-4 *4 (-724 *5 *7))
- (-5 *2 (-2 (|:| -1380 (-689 *6)) (|:| |vec| (-1264 *5))))
- (-5 *1 (-811 *5 *6 *7 *4 *3)) (-4 *6 (-656 *5)) (-4 *3 (-656 *4)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-409 (-566))) (-4 *1 (-556 *3))
+ (-4 *3 (-13 (-406) (-1199)))))
+ ((*1 *1 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199)))))
+ ((*1 *1 *2 *2) (-12 (-4 *1 (-556 *2)) (-4 *2 (-13 (-406) (-1199))))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-689 *7)) (-5 *3 (-644 *7)) (-4 *7 (-949 *4 *6 *5))
+ (-4 *4 (-13 (-308) (-147))) (-4 *5 (-13 (-850) (-614 (-1175))))
+ (-4 *6 (-793)) (-5 *1 (-924 *4 *5 *6 *7)))))
+(((*1 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-755)))))
(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-180))))
((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-312))))
((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-970))))
((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-994))))
((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1036))))
((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1072)))))
+(((*1 *2 *3 *4 *3 *5)
+ (-12 (-5 *3 (-1157)) (-5 *4 (-169 (-225))) (-5 *5 (-566))
+ (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-689 (-409 (-952 (-566)))))
- (-5 *2 (-689 (-317 (-566)))) (-5 *1 (-1031)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-943 (-225))) (-5 *4 (-874)) (-5 *2 (-1269))
- (-5 *1 (-470))))
- ((*1 *1 *2) (-12 (-5 *2 (-644 *3)) (-4 *3 (-1049)) (-4 *1 (-980 *3))))
- ((*1 *2 *1)
- (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-943 *3))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-943 *3)) (-4 *3 (-1049)) (-4 *1 (-1133 *3))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-771)) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-644 *3)) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-943 *3)) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
- ((*1 *2 *3 *3 *3 *3)
- (-12 (-5 *2 (-943 (-225))) (-5 *1 (-1210)) (-5 *3 (-225)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-644 *7)) (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558))
- (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-112))
- (-5 *1 (-977 *4 *5 *6 *7)))))
-(((*1 *2 *3) (-12 (-5 *2 (-420 *3)) (-5 *1 (-560 *3)) (-4 *3 (-547))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308)) (-5 *2 (-420 *3))
- (-5 *1 (-742 *4 *5 *6 *3)) (-4 *3 (-949 *6 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-308))
- (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-420 (-1171 *7)))
- (-5 *1 (-742 *4 *5 *6 *7)) (-5 *3 (-1171 *7))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-454)) (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850))
- (-5 *2 (-420 *1)) (-4 *1 (-949 *3 *4 *5))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-850)) (-4 *5 (-793)) (-4 *6 (-454)) (-5 *2 (-420 *3))
- (-5 *1 (-979 *4 *5 *6 *3)) (-4 *3 (-949 *6 *5 *4))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-454))
- (-4 *7 (-949 *6 *4 *5)) (-5 *2 (-420 (-1171 (-409 *7))))
- (-5 *1 (-1170 *4 *5 *6 *7)) (-5 *3 (-1171 (-409 *7)))))
- ((*1 *2 *1) (-12 (-5 *2 (-420 *1)) (-4 *1 (-1218))))
- ((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-420 *3)) (-5 *1 (-1243 *4 *3))
- (-4 *3 (-13 (-1240 *4) (-558) (-10 -8 (-15 -2222 ($ $ $)))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1046 *4 *5)) (-4 *4 (-13 (-848) (-308) (-147) (-1022)))
- (-14 *5 (-644 (-1175)))
- (-5 *2
- (-644 (-1145 *4 (-533 (-864 *6)) (-864 *6) (-780 *4 (-864 *6)))))
- (-5 *1 (-1290 *4 *5 *6)) (-14 *6 (-644 (-1175))))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-1207 *4 *5 *3 *6)) (-4 *4 (-558)) (-4 *5 (-793))
- (-4 *3 (-850)) (-4 *6 (-1064 *4 *5 *3)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-4 *1 (-1283 *3)) (-4 *3 (-365)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-112)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-4 *3 (-1064 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
- (-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1552 *3) (|:| |coef2| (-782 *3))))
- (-5 *1 (-782 *3)) (-4 *3 (-558)) (-4 *3 (-1049)))))
-(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-144)))))
+ (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119))))))
+ (-4 *4 (-351)) (-5 *2 (-771)) (-5 *1 (-348 *4))))
+ ((*1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-353 *3 *4)) (-14 *3 (-921))
+ (-14 *4 (-921))))
+ ((*1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-354 *3 *4)) (-4 *3 (-351))
+ (-14 *4
+ (-3 (-1171 *3)
+ (-1264 (-644 (-2 (|:| -2252 *3) (|:| -2208 (-1119)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-771)) (-5 *1 (-355 *3 *4)) (-4 *3 (-351))
+ (-14 *4 (-921)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-738)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
+(((*1 *2 *3 *4 *4 *5 *4 *3 *6 *3 *4 *7 *8 *9 *10)
+ (-12 (-5 *4 (-566)) (-5 *5 (-1157)) (-5 *6 (-689 (-225)))
+ (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-89 G))))
+ (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-86 FCN))))
+ (-5 *9 (-3 (|:| |fn| (-390)) (|:| |fp| (-71 PEDERV))))
+ (-5 *10 (-3 (|:| |fn| (-390)) (|:| |fp| (-88 OUTPUT))))
+ (-5 *3 (-225)) (-5 *2 (-1035)) (-5 *1 (-749)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-317 (-225))) (-5 *2 (-317 (-381))) (-5 *1 (-306)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-943 *3) (-943 *3))) (-5 *1 (-176 *3))
+ (-4 *3 (-13 (-365) (-1199) (-1002))))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-324 *3 *4)) (-4 *3 (-1099))
+ (-4 *4 (-131)))))
+(((*1 *1) (-5 *1 (-803))))
(((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-154))))
((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1065)))))
-(((*1 *1 *2) (-12 (-5 *2 (-771)) (-5 *1 (-129)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1049)) (-4 *4 (-1099)) (-5 *2 (-644 *1))
- (-4 *1 (-384 *3 *4))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-644 (-735 *3 *4))) (-5 *1 (-735 *3 *4)) (-4 *3 (-1049))
- (-4 *4 (-726))))
- ((*1 *2 *1)
- (-12 (-4 *3 (-1049)) (-4 *4 (-793)) (-4 *5 (-850)) (-5 *2 (-644 *1))
- (-4 *1 (-949 *3 *4 *5)))))
-(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-759)))))
+ (-12 (-4 *1 (-1133 *3)) (-4 *3 (-1049)) (-5 *2 (-644 (-943 *3)))))
+ ((*1 *1 *2)
+ (-12 (-5 *2 (-644 (-943 *3))) (-4 *3 (-1049)) (-4 *1 (-1133 *3))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-644 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049))))
+ ((*1 *1 *1 *2)
+ (-12 (-5 *2 (-644 (-943 *3))) (-4 *1 (-1133 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-644 (-566))) (-5 *1 (-1109)) (-5 *3 (-566)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-3 (-2 (|:| -2883 *7) (|:| |coeff| *7)) "failed") *7))
+ (-5 *6 (-644 (-409 *8))) (-4 *7 (-365)) (-4 *8 (-1240 *7))
+ (-5 *3 (-409 *8))
+ (-5 *2
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-576 *7 *8)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1102 *3 *2 *4 *5 *6)) (-4 *3 (-1099)) (-4 *4 (-1099))
(-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))))
-(((*1 *2 *1) (-12 (-5 *2 (-824)) (-5 *1 (-825)))))
-(((*1 *2 *3 *4 *4 *3 *5 *3 *3 *4 *3 *6)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
- (-5 *6 (-3 (|:| |fn| (-390)) (|:| |fp| (-78 FUNCTN))))
- (-5 *2 (-1035)) (-5 *1 (-748)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-134))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-1099))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *3) (-12 (-5 *3 (-862)) (-5 *2 (-1157)) (-5 *1 (-710)))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-889 *5 *3)) (-5 *4 (-892 *5)) (-4 *5 (-1099))
- (-4 *3 (-166 *6)) (-4 (-952 *6) (-886 *5))
- (-4 *6 (-13 (-886 *5) (-172))) (-5 *1 (-178 *5 *6 *3))))
- ((*1 *2 *1 *3 *2)
- (-12 (-5 *2 (-889 *4 *1)) (-5 *3 (-892 *4)) (-4 *1 (-886 *4))
- (-4 *4 (-1099))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-889 *5 *6)) (-5 *4 (-892 *5)) (-4 *5 (-1099))
- (-4 *6 (-13 (-1099) (-1038 *3))) (-4 *3 (-886 *5))
- (-5 *1 (-931 *5 *3 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099))
- (-4 *3 (-13 (-432 *6) (-614 *4) (-886 *5) (-1038 (-612 $))))
- (-5 *4 (-892 *5)) (-4 *6 (-13 (-558) (-886 *5)))
- (-5 *1 (-932 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-889 (-566) *3)) (-5 *4 (-892 (-566))) (-4 *3 (-547))
- (-5 *1 (-933 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-889 *5 *6)) (-5 *3 (-612 *6)) (-4 *5 (-1099))
- (-4 *6 (-13 (-1099) (-1038 (-612 $)) (-614 *4) (-886 *5)))
- (-5 *4 (-892 *5)) (-5 *1 (-934 *5 *6))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-885 *5 *6 *3)) (-5 *4 (-892 *5)) (-4 *5 (-1099))
- (-4 *6 (-886 *5)) (-4 *3 (-666 *6)) (-5 *1 (-935 *5 *6 *3))))
- ((*1 *2 *3 *4 *2 *5)
- (-12 (-5 *5 (-1 (-889 *6 *3) *8 (-892 *6) (-889 *6 *3)))
- (-4 *8 (-850)) (-5 *2 (-889 *6 *3)) (-5 *4 (-892 *6))
- (-4 *6 (-1099)) (-4 *3 (-13 (-949 *9 *7 *8) (-614 *4)))
- (-4 *7 (-793)) (-4 *9 (-13 (-1049) (-886 *6)))
- (-5 *1 (-936 *6 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099))
- (-4 *3 (-13 (-949 *8 *6 *7) (-614 *4))) (-5 *4 (-892 *5))
- (-4 *7 (-886 *5)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *8 (-13 (-1049) (-886 *5))) (-5 *1 (-936 *5 *6 *7 *8 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-889 *5 *3)) (-4 *5 (-1099)) (-4 *3 (-992 *6))
- (-4 *6 (-13 (-558) (-886 *5) (-614 *4))) (-5 *4 (-892 *5))
- (-5 *1 (-939 *5 *6 *3))))
- ((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-889 *5 (-1175))) (-5 *3 (-1175)) (-5 *4 (-892 *5))
- (-4 *5 (-1099)) (-5 *1 (-940 *5))))
- ((*1 *2 *3 *4 *5 *2 *6)
- (-12 (-5 *4 (-644 (-892 *7))) (-5 *5 (-1 *9 (-644 *9)))
- (-5 *6 (-1 (-889 *7 *9) *9 (-892 *7) (-889 *7 *9))) (-4 *7 (-1099))
- (-4 *9 (-13 (-1049) (-614 (-892 *7)) (-1038 *8)))
- (-5 *2 (-889 *7 *9)) (-5 *3 (-644 *9)) (-4 *8 (-1049))
- (-5 *1 (-941 *7 *8 *9)))))
-(((*1 *2 *3 *4 *3 *5)
- (-12 (-5 *3 (-1157)) (-5 *4 (-169 (-225))) (-5 *5 (-566))
- (-5 *2 (-1035)) (-5 *1 (-758)))))
(((*1 *1 *2)
(-12 (-5 *2 (-689 *4)) (-4 *4 (-1049)) (-5 *1 (-1141 *3 *4))
(-14 *3 (-771)))))
+(((*1 *2) (-12 (-5 *2 (-1269)) (-5 *1 (-803)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-38 (-409 (-566))))
+ (-4 *2 (-172)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-921)) (-5 *1 (-786)))))
+(((*1 *2 *3 *4 *2 *5 *6 *7 *8 *9 *10)
+ (|partial| -12 (-5 *2 (-644 (-1171 *13))) (-5 *3 (-1171 *13))
+ (-5 *4 (-644 *12)) (-5 *5 (-644 *10)) (-5 *6 (-644 *13))
+ (-5 *7 (-644 (-644 (-2 (|:| -2342 (-771)) (|:| |pcoef| *13)))))
+ (-5 *8 (-644 (-771))) (-5 *9 (-1264 (-644 (-1171 *10))))
+ (-4 *12 (-850)) (-4 *10 (-308)) (-4 *13 (-949 *10 *11 *12))
+ (-4 *11 (-793)) (-5 *1 (-707 *11 *12 *10 *13)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2662 *4)))
+ (-5 *1 (-969 *4 *3)) (-4 *3 (-1240 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *5 *5)) (-4 *5 (-1255 *4))
+ (-4 *4 (-38 (-409 (-566)))) (-5 *2 (-1 (-1155 *4) (-1155 *4)))
+ (-5 *1 (-1257 *4 *5)))))
(((*1 *2 *1) (-12 (-4 *1 (-267 *2)) (-4 *2 (-850))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-1175)) (-5 *1 (-864 *3)) (-14 *3 (-644 *2))))
@@ -17253,1060 +17049,1261 @@
(-12 (-4 *1 (-1242 *3 *4)) (-4 *3 (-1049)) (-4 *4 (-792))
(-5 *2 (-1175))))
((*1 *2) (-12 (-5 *2 (-1175)) (-5 *1 (-1260 *3)) (-14 *3 *2))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1155 *4)) (-5 *3 (-566)) (-4 *4 (-1049))
- (-5 *1 (-1159 *4))))
- ((*1 *1 *1 *2 *2)
- (-12 (-5 *2 (-566)) (-5 *1 (-1256 *3 *4 *5)) (-4 *3 (-1049))
- (-14 *4 (-1175)) (-14 *5 *3))))
-(((*1 *2 *3 *4 *4 *4 *5 *4 *5 *5 *3)
- (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-225))
- (-5 *2 (-1035)) (-5 *1 (-751)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-1028 *3))))
- ((*1 *2 *2 *2)
- (-12 (-5 *2 (-644 (-689 *3))) (-4 *3 (-1049)) (-5 *1 (-1028 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-1028 *3))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-644 (-689 *3))) (-4 *3 (-1049)) (-5 *1 (-1028 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-566)) (-5 *1 (-420 *3)) (-4 *3 (-558)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *5 *3 *3 *3 *6 *4 *3)
+ (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *6 (-225))
+ (-5 *3 (-566)) (-5 *2 (-1035)) (-5 *1 (-752)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 (-644 (-2 (|:| -2252 *4) (|:| -2208 (-1119))))))
+ (-4 *4 (-351)) (-5 *2 (-689 *4)) (-5 *1 (-348 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-31))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1180)) (-5 *1 (-49))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-133))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-138))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-154))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-161))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-218))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-676))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1019))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1134)) (-5 *1 (-1065))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-1134))) (-5 *1 (-1095)))))
(((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-644 (-1171 *5))) (-5 *3 (-1171 *5))
- (-4 *5 (-166 *4)) (-4 *4 (-547)) (-5 *1 (-149 *4 *5))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-644 *3)) (-4 *3 (-1240 *5))
- (-4 *5 (-1240 *4)) (-4 *4 (-351)) (-5 *1 (-360 *4 *5 *3))))
- ((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-644 (-1171 (-566)))) (-5 *3 (-1171 (-566)))
- (-5 *1 (-574))))
+ (-12 (-5 *2 (-1171 *7)) (-5 *3 (-566)) (-4 *7 (-949 *6 *4 *5))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *6 (-1049))
+ (-5 *1 (-322 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-558)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-644 *3))
+ (-5 *1 (-977 *4 *5 *6 *3)) (-4 *3 (-1064 *4 *5 *6))))
((*1 *2 *2 *3)
- (|partial| -12 (-5 *2 (-644 (-1171 *1))) (-5 *3 (-1171 *1))
- (-4 *1 (-909)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-328 *3)) (-4 *3 (-1214))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-518 *3 *4)) (-4 *3 (-1214))
- (-14 *4 (-566)))))
-(((*1 *1 *1) (-12 (-4 *1 (-166 *2)) (-4 *2 (-172)) (-4 *2 (-1059))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-341 *2 *3 *4)) (-14 *2 (-644 (-1175)))
- (-14 *3 (-644 (-1175))) (-4 *4 (-389))))
- ((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3))))
- ((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172)) (-4 *2 (-1059))))
- ((*1 *1 *1) (-4 *1 (-848)))
- ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)) (-4 *2 (-1059))))
- ((*1 *1 *1) (-4 *1 (-1059))) ((*1 *1 *1) (-4 *1 (-1138))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-566)) (-5 *1 (-420 *2)) (-4 *2 (-558)))))
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1064 *4 *5 *6)) (-4 *4 (-558))
+ (-4 *5 (-793)) (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *3))))
+ ((*1 *2 *2 *2)
+ (-12 (-5 *2 (-644 *6)) (-4 *6 (-1064 *3 *4 *5)) (-4 *3 (-558))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-5 *1 (-977 *3 *4 *5 *6))))
+ ((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-1 (-644 *7) (-644 *7))) (-5 *2 (-644 *7))
+ (-4 *7 (-1064 *4 *5 *6)) (-4 *4 (-558)) (-4 *5 (-793))
+ (-4 *6 (-850)) (-5 *1 (-977 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-112)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-644 (-52))) (-5 *1 (-892 *3)) (-4 *3 (-1099)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-225)) (-5 *1 (-30))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-1 (-420 *4) *4)) (-4 *4 (-558)) (-5 *2 (-420 *4))
- (-5 *1 (-421 *4))))
- ((*1 *1 *1) (-5 *1 (-926)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-926))))
- ((*1 *1 *1) (-5 *1 (-927)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1093 (-225))) (-5 *1 (-927))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))
- (-5 *4 (-409 (-566))) (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566)))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))
- (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566)))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))
- (-5 *4 (-409 (-566))) (-5 *1 (-1021 *3)) (-4 *3 (-1240 *4))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -4357 (-409 (-566))) (|:| -4368 (-409 (-566)))))
- (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566))))))
- ((*1 *1 *1)
- (-12 (-4 *2 (-13 (-848) (-365))) (-5 *1 (-1060 *2 *3))
- (-4 *3 (-1240 *2)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-771)) (-5 *1 (-856 *2)) (-4 *2 (-172)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1269)) (-5 *1 (-822)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1157)) (-5 *3 (-566)) (-5 *1 (-241)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-433 *3 *2)) (-4 *2 (-432 *3)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *3 (-365)) (-5 *1 (-286 *3 *2)) (-4 *2 (-1255 *3)))))
+ (-12 (-14 *3 (-644 (-1175))) (-4 *4 (-172))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2208 *5) (|:| -2456 *2))
+ (-2 (|:| -2208 *5) (|:| -2456 *2))))
+ (-4 *2 (-238 (-3020 *3) (-771))) (-5 *1 (-463 *3 *4 *5 *2 *6 *7))
+ (-4 *5 (-850)) (-4 *7 (-949 *4 *2 (-864 *3))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1157)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1157)) (-5 *1 (-264)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-409 *5)) (-4 *5 (-1240 *4)) (-4 *4 (-558))
+ (-4 *4 (-1049)) (-4 *2 (-1255 *4)) (-5 *1 (-1258 *4 *5 *6 *2))
+ (-4 *6 (-656 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1264 (-1264 *4))) (-4 *4 (-1049)) (-5 *2 (-689 *4))
+ (-5 *1 (-1029 *4)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1226 *3 *2)) (-4 *3 (-1049))
- (-4 *2 (-1255 *3)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1148 *3)) (-4 *3 (-1214)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3 *3 *4)
- (-12 (-5 *4 (-771)) (-4 *3 (-558)) (-5 *1 (-969 *3 *2))
- (-4 *2 (-1240 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-4 *3 (-172)) (-4 *4 (-375 *3))
- (-4 *5 (-375 *3)) (-5 *1 (-688 *3 *4 *5 *2))
- (-4 *2 (-687 *3 *4 *5)))))
-(((*1 *2 *1 *3 *3 *2)
- (-12 (-5 *3 (-566)) (-4 *1 (-57 *2 *4 *5)) (-4 *2 (-1214))
- (-4 *4 (-375 *2)) (-4 *5 (-375 *2))))
- ((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4418)) (-4 *1 (-289 *3 *2)) (-4 *3 (-1099))
- (-4 *2 (-1214)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-508)) (-5 *1 (-281))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-3 (-566) (-225) (-508) (-1157) (-1180)))
- (-5 *1 (-1180)))))
+ (-12 (-4 *1 (-976 *3 *4 *5 *6)) (-4 *3 (-1049)) (-4 *4 (-793))
+ (-4 *5 (-850)) (-4 *6 (-1064 *3 *4 *5)) (-5 *2 (-112)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-5 *1 (-422 *3 *2 *4 *5)) (-4 *2 (-13 (-27) (-1199) (-432 *3)))
- (-14 *4 (-1175)) (-14 *5 *2)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-454) (-1038 (-566)) (-639 (-566))))
- (-4 *2 (-13 (-27) (-1199) (-432 *3) (-10 -8 (-15 -2512 ($ *4)))))
- (-4 *4 (-848))
- (-4 *5
- (-13 (-1242 *2 *4) (-365) (-1199)
- (-10 -8 (-15 -2862 ($ $)) (-15 -4117 ($ $)))))
- (-5 *1 (-424 *3 *2 *4 *5 *6 *7)) (-4 *6 (-983 *5)) (-14 *7 (-1175)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *3 (-644 *5)) (-5 *4 (-566)) (-4 *5 (-848)) (-4 *5 (-365))
- (-5 *2 (-771)) (-5 *1 (-945 *5 *6)) (-4 *6 (-1240 *5)))))
-(((*1 *2 *2 *3) (-12 (-5 *3 (-771)) (-5 *1 (-588 *2)) (-4 *2 (-547)))))
+ (-12 (-5 *2 (-1264 *1)) (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218))
+ (-4 *4 (-1240 *3)) (-4 *5 (-1240 (-409 *4))))))
(((*1 *2 *3)
- (-12 (-4 *4 (-558)) (-5 *2 (-644 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-419 *4)))))
+ (|partial| -12 (-4 *4 (-13 (-558) (-147)))
+ (-5 *2 (-2 (|:| -4380 *3) (|:| -4394 *3))) (-5 *1 (-1234 *4 *3))
+ (-4 *3 (-1240 *4)))))
+(((*1 *2)
+ (-12 (-4 *1 (-344 *3 *4 *5)) (-4 *3 (-1218)) (-4 *4 (-1240 *3))
+ (-4 *5 (-1240 (-409 *4))) (-5 *2 (-689 (-409 *4))))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4414)) (-4 *1 (-151 *3))
+ (-4 *3 (-1214))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-674 *3)) (-4 *3 (-1214))))
+ ((*1 *2 *1 *3)
+ (|partial| -12 (-4 *1 (-1207 *4 *5 *3 *2)) (-4 *4 (-558))
+ (-4 *5 (-793)) (-4 *3 (-850)) (-4 *2 (-1064 *4 *5 *3))))
+ ((*1 *2 *1 *3)
+ (-12 (-5 *3 (-771)) (-5 *1 (-1211 *2)) (-4 *2 (-1214)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-644 *3)) (-4 *3 (-949 *5 *6 *7)) (-4 *5 (-454))
- (-4 *6 (-793)) (-4 *7 (-850))
- (-5 *2 (-2 (|:| |poly| *3) (|:| |mult| *5)))
- (-5 *1 (-451 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-436)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-1099)) (-4 *6 (-1099))
- (-5 *2 (-1 *6 *4 *5)) (-5 *1 (-684 *4 *5 *6)) (-4 *4 (-1099)))))
+ (-12 (-5 *4 (-1175)) (-5 *2 (-1 (-225) (-225))) (-5 *1 (-703 *3))
+ (-4 *3 (-614 (-538)))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-1175)) (-5 *2 (-1 (-225) (-225) (-225)))
+ (-5 *1 (-703 *3)) (-4 *3 (-614 (-538))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1265))))
+ ((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-771)) (-4 *5 (-558))
+ (-5 *2
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-969 *5 *3)) (-4 *3 (-1240 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *3 (-644 (-264))) (-5 *1 (-262)))))
+(((*1 *2 *3 *2)
+ (-12
+ (-5 *2
+ (-644
+ (-2 (|:| |lcmfij| *3) (|:| |totdeg| (-771)) (|:| |poli| *6)
+ (|:| |polj| *6))))
+ (-4 *3 (-793)) (-4 *6 (-949 *4 *3 *5)) (-4 *4 (-454)) (-4 *5 (-850))
+ (-5 *1 (-451 *4 *3 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002))))))
+(((*1 *1 *1) (-12 (-5 *1 (-174 *2)) (-4 *2 (-308))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-1177 (-409 (-566)))) (-5 *1 (-190)) (-5 *3 (-566))))
+ ((*1 *1 *1) (-12 (-4 *1 (-674 *2)) (-4 *2 (-1214))))
+ ((*1 *1 *1) (-4 *1 (-869 *2)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-973 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-792))
+ (-4 *4 (-850)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-4 *2 (-1064 *4 *5 *6)) (-5 *1 (-776 *4 *5 *6 *2 *3))
+ (-4 *3 (-1070 *4 *5 *6 *2)))))
(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1214))
- (-4 *4 (-375 *3)) (-4 *5 (-375 *3))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4418)) (-4 *1 (-491 *3))
- (-4 *3 (-1214)))))
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))))
+(((*1 *1) (-5 *1 (-157)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1044 *2)) (-4 *2 (-23)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-508)) (-5 *3 (-644 (-965))) (-5 *1 (-109)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850)) (-5 *2 (-1269))
- (-5 *1 (-451 *4 *5 *6 *3)) (-4 *3 (-949 *4 *5 *6)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-943 *5)) (-4 *5 (-1049)) (-5 *2 (-771))
- (-5 *1 (-1163 *4 *5)) (-14 *4 (-921))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-771))) (-5 *3 (-771)) (-5 *1 (-1163 *4 *5))
- (-14 *4 (-921)) (-4 *5 (-1049))))
- ((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-644 (-771))) (-5 *3 (-943 *5)) (-4 *5 (-1049))
- (-5 *1 (-1163 *4 *5)) (-14 *4 (-921)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1171 *3)) (-4 *3 (-351)) (-5 *1 (-359 *3)))))
+ (-12 (-5 *3 (-644 *4)) (-4 *4 (-848)) (-4 *4 (-365)) (-5 *2 (-771))
+ (-5 *1 (-945 *4 *5)) (-4 *5 (-1240 *4)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1157)) (-5 *2 (-1269)) (-5 *1 (-822)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-117 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-117 *2)) (-14 *2 (-566))))
+ ((*1 *1 *2 *1) (-12 (-5 *2 (-566)) (-5 *1 (-871 *3)) (-14 *3 *2)))
+ ((*1 *1 *1) (-12 (-5 *1 (-871 *2)) (-14 *2 (-566))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-566)) (-14 *3 *2) (-5 *1 (-872 *3 *4))
+ (-4 *4 (-869 *3))))
+ ((*1 *1 *1)
+ (-12 (-14 *2 (-566)) (-5 *1 (-872 *2 *3)) (-4 *3 (-869 *2))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-566)) (-4 *1 (-1226 *3 *4)) (-4 *3 (-1049))
+ (-4 *4 (-1255 *3))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1226 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-1255 *2)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-644 *3)) (-4 *3 (-1214)) (-5 *1 (-1146 *3)))))
+(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *3 (-225)) (-5 *4 (-566)) (-5 *2 (-1035)) (-5 *1 (-758)))))
+(((*1 *2 *3) (-12 (-5 *3 (-943 *2)) (-5 *1 (-982 *2)) (-4 *2 (-1049)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-558) (-147))) (-5 *2 (-644 *3))
- (-5 *1 (-1234 *4 *3)) (-4 *3 (-1240 *4)))))
-(((*1 *2)
- (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566)))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-921)) (-5 *1 (-444 *3)) (-4 *3 (-1240 (-566))))))
-(((*1 *2 *1) (-12 (-4 *1 (-674 *3)) (-4 *3 (-1214)) (-5 *2 (-771)))))
+ (-12 (-5 *3 (-644 (-566))) (-5 *2 (-904 (-566))) (-5 *1 (-917))))
+ ((*1 *2) (-12 (-5 *2 (-904 (-566))) (-5 *1 (-917)))))
+(((*1 *2) (-12 (-5 *2 (-130)) (-5 *1 (-1184)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-324 *2 *3)) (-4 *2 (-1099)) (-4 *3 (-131))
+ (-4 *3 (-792)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1240 *3)) (-4 *3 (-1049)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-691 (-873 (-966 *3) (-966 *3)))) (-5 *1 (-966 *3))
+ (-4 *3 (-1099)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1207 *2 *3 *4 *5)) (-4 *2 (-558)) (-4 *3 (-793))
+ (-4 *4 (-850)) (-4 *5 (-1064 *2 *3 *4)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-308)) (-4 *5 (-375 *4)) (-4 *6 (-375 *4))
+ (-5 *2
+ (-2 (|:| |Smith| *3) (|:| |leftEqMat| *3) (|:| |rightEqMat| *3)))
+ (-5 *1 (-1123 *4 *5 *6 *3)) (-4 *3 (-687 *4 *5 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-420 *3)) (-5 *1 (-914 *3)) (-4 *3 (-308)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-1049)) (-4 *2 (-687 *4 *5 *6))
+ (-5 *1 (-104 *4 *3 *2 *5 *6)) (-4 *3 (-1240 *4)) (-4 *5 (-375 *4))
+ (-4 *6 (-375 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-166 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-420 *3)) (-4 *3 (-547)) (-4 *3 (-558))))
+ ((*1 *2 *1) (-12 (-4 *1 (-547)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-797 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-833 *3)) (-4 *3 (-547)) (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-843 *3)) (-4 *3 (-547)) (-4 *3 (-1099))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-997 *3)) (-4 *3 (-172)) (-4 *3 (-547)) (-5 *2 (-112))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1008 *3)) (-4 *3 (-1038 (-409 (-566)))))))
(((*1 *2 *1)
(-12 (-4 *1 (-1102 *3 *4 *5 *6 *2)) (-4 *3 (-1099)) (-4 *4 (-1099))
(-4 *5 (-1099)) (-4 *6 (-1099)) (-4 *2 (-1099)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3))))
- ((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-689 *3)) (-4 *3 (-1049)) (-5 *1 (-690 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-771)) (-5 *1 (-420 *3)) (-4 *3 (-558))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-644 (-2 (|:| -2391 *4) (|:| -3992 (-566)))))
- (-4 *4 (-1240 (-566))) (-5 *2 (-771)) (-5 *1 (-444 *4)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1010 *3)) (-4 *3 (-1214)) (-5 *2 (-112))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1200 *3)) (-4 *3 (-1099)))))
-(((*1 *2 *1) (-12 (-4 *1 (-974)) (-5 *2 (-1093 (-225))))))
-(((*1 *2 *3 *4 *5)
- (|partial| -12 (-5 *4 (-1175)) (-5 *5 (-644 (-409 (-952 *6))))
- (-5 *3 (-409 (-952 *6)))
- (-4 *6 (-13 (-558) (-1038 (-566)) (-147)))
- (-5 *2
- (-2 (|:| |mainpart| *3)
- (|:| |limitedlogs|
- (-644 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
- (-5 *1 (-572 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1231 *3)) (-4 *3 (-1214)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-415 *3 *4 *5 *6)) (-4 *6 (-1038 *4)) (-4 *3 (-308))
- (-4 *4 (-992 *3)) (-4 *5 (-1240 *4)) (-4 *6 (-411 *4 *5))
- (-14 *7 (-1264 *6)) (-5 *1 (-416 *3 *4 *5 *6 *7))))
- ((*1 *1 *2)
- (-12 (-5 *2 (-1264 *6)) (-4 *6 (-411 *4 *5)) (-4 *4 (-992 *3))
- (-4 *5 (-1240 *4)) (-4 *3 (-308)) (-5 *1 (-416 *3 *4 *5 *6 *7))
- (-14 *7 *2))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-771)) (-4 *6 (-365)) (-5 *4 (-1208 *6))
- (-5 *2 (-1 (-1155 *4) (-1155 *4))) (-5 *1 (-1272 *6))
- (-5 *5 (-1155 *4)))))
-(((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-771)) (-5 *6 (-112)) (-4 *7 (-454)) (-4 *8 (-793))
- (-4 *9 (-850)) (-4 *3 (-1064 *7 *8 *9))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))
+ (-5 *2 (-409 (-566))) (-5 *1 (-1020 *4)) (-4 *4 (-1240 (-566))))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-756)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-644 (-483 *4 *5))) (-14 *4 (-644 (-1175)))
+ (-4 *5 (-454))
(-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1068 *7 *8 *9 *3 *4)) (-4 *4 (-1070 *7 *8 *9 *3))))
+ (-2 (|:| |gblist| (-644 (-247 *4 *5)))
+ (|:| |gvlist| (-644 (-566)))))
+ (-5 *1 (-631 *4 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-921)) (-4 *6 (-558)) (-5 *2 (-644 (-317 *6)))
+ (-5 *1 (-221 *5 *6)) (-5 *3 (-317 *6)) (-4 *5 (-1049))))
+ ((*1 *2 *1) (-12 (-5 *1 (-420 *2)) (-4 *2 (-558))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-587 *5)) (-4 *5 (-13 (-29 *4) (-1199)))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566)))) (-5 *2 (-644 *5))
+ (-5 *1 (-585 *4 *5))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-587 (-409 (-952 *4))))
+ (-4 *4 (-13 (-454) (-1038 (-566)) (-639 (-566))))
+ (-5 *2 (-644 (-317 *4))) (-5 *1 (-590 *4))))
+ ((*1 *2 *1)
+ (-12 (-4 *1 (-1094 *3 *2)) (-4 *3 (-848)) (-4 *2 (-1148 *3))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-644 *1)) (-4 *1 (-1094 *4 *2)) (-4 *4 (-848))
+ (-4 *2 (-1148 *4))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199)))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1279 (-1175) *3)) (-5 *1 (-1286 *3)) (-4 *3 (-1049))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1279 *3 *4)) (-5 *1 (-1288 *3 *4)) (-4 *3 (-850))
+ (-4 *4 (-1049)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1035)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1240 *5)) (-4 *5 (-365))
+ (-5 *2 (-2 (|:| -2883 (-409 *6)) (|:| |coeff| (-409 *6))))
+ (-5 *1 (-576 *5 *6)) (-5 *3 (-409 *6)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-644 *2)) (-4 *2 (-949 *4 *5 *6)) (-4 *4 (-365))
+ (-4 *4 (-454)) (-4 *5 (-793)) (-4 *6 (-850))
+ (-5 *1 (-452 *4 *5 *6 *2))))
((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-4 *3 (-1064 *6 *7 *8))
- (-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1068 *6 *7 *8 *3 *4)) (-4 *4 (-1070 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
+ (-12 (-5 *4 (-99 *6)) (-5 *5 (-1 *6 *6)) (-4 *6 (-365))
(-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1068 *5 *6 *7 *3 *4)) (-4 *4 (-1070 *5 *6 *7 *3))))
- ((*1 *2 *3 *4 *5 *6)
- (-12 (-5 *5 (-771)) (-5 *6 (-112)) (-4 *7 (-454)) (-4 *8 (-793))
- (-4 *9 (-850)) (-4 *3 (-1064 *7 *8 *9))
+ (-2 (|:| R (-689 *6)) (|:| A (-689 *6)) (|:| |Ainv| (-689 *6))))
+ (-5 *1 (-978 *6)) (-5 *3 (-689 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-351))
(-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1144 *7 *8 *9 *3 *4)) (-4 *4 (-1108 *7 *8 *9 *3))))
- ((*1 *2 *3 *4 *5)
- (-12 (-5 *5 (-771)) (-4 *6 (-454)) (-4 *7 (-793)) (-4 *8 (-850))
- (-4 *3 (-1064 *6 *7 *8))
+ (-2 (|:| |cont| *5)
+ (|:| -2670 (-644 (-2 (|:| |irr| *3) (|:| -2831 (-566)))))))
+ (-5 *1 (-216 *5 *3)) (-4 *3 (-1240 *5)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-381) (-381))) (-5 *4 (-381))
(-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1144 *6 *7 *8 *3 *4)) (-4 *4 (-1108 *6 *7 *8 *3))))
- ((*1 *2 *3 *4)
- (-12 (-4 *5 (-454)) (-4 *6 (-793)) (-4 *7 (-850))
- (-4 *3 (-1064 *5 *6 *7))
+ (-2 (|:| -2252 *4) (|:| -1499 *4) (|:| |totalpts| (-566))
+ (|:| |success| (-112))))
+ (-5 *1 (-789)) (-5 *5 (-566)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1155 *3)) (-4 *3 (-365)) (-4 *3 (-1049))
+ (-5 *1 (-1159 *3)))))
+(((*1 *2 *3 *4 *5 *6 *3 *3 *3 *3 *6 *3 *7 *8)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *5 (-112))
+ (-5 *6 (-225)) (-5 *7 (-3 (|:| |fn| (-390)) (|:| |fp| (-68 APROD))))
+ (-5 *8 (-3 (|:| |fn| (-390)) (|:| |fp| (-73 MSOLVE))))
+ (-5 *2 (-1035)) (-5 *1 (-756)))))
+(((*1 *2 *2) (-12 (-5 *2 (-689 *3)) (-4 *3 (-308)) (-5 *1 (-700 *3)))))
+(((*1 *2 *3 *4 *4 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-689 (-225))) (-5 *2 (-1035))
+ (-5 *1 (-751)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-454))
(-5 *2
- (-2 (|:| |done| (-644 *4))
- (|:| |todo| (-644 (-2 (|:| |val| (-644 *3)) (|:| -2248 *4))))))
- (-5 *1 (-1144 *5 *6 *7 *3 *4)) (-4 *4 (-1108 *5 *6 *7 *3)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-921)) (-5 *3 (-644 (-264))) (-5 *1 (-262))))
- ((*1 *1 *2) (-12 (-5 *2 (-921)) (-5 *1 (-264)))))
-(((*1 *2)
- (-12 (-5 *2 (-1269)) (-5 *1 (-1191 *3 *4)) (-4 *3 (-1099))
- (-4 *4 (-1099)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-558)) (-5 *1 (-277 *3 *2))
- (-4 *2 (-13 (-432 *3) (-1002))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-13 (-365) (-147) (-1038 (-566)))) (-4 *5 (-1240 *4))
- (-5 *2 (-2 (|:| |ans| (-409 *5)) (|:| |nosol| (-112))))
- (-5 *1 (-1015 *4 *5)) (-5 *3 (-409 *5)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1214)) (-5 *1 (-377 *4 *2))
- (-4 *2 (-13 (-375 *4) (-10 -7 (-6 -4418)))))))
+ (-644
+ (-2 (|:| |eigval| (-3 (-409 (-952 *4)) (-1164 (-1175) (-952 *4))))
+ (|:| |geneigvec| (-644 (-689 (-409 (-952 *4))))))))
+ (-5 *1 (-293 *4)) (-5 *3 (-689 (-409 (-952 *4)))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-532 *3)) (-4 *3 (-13 (-726) (-25))))))
+(((*1 *2 *1 *3 *3 *3)
+ (-12 (-5 *3 (-381)) (-5 *2 (-1269)) (-5 *1 (-1266)))))
(((*1 *2 *1 *1)
(-12 (-4 *3 (-558)) (-4 *3 (-1049))
- (-5 *2 (-2 (|:| -2760 *1) (|:| -1644 *1))) (-4 *1 (-852 *3))))
+ (-5 *2 (-2 (|:| -3644 *1) (|:| -4228 *1))) (-4 *1 (-852 *3))))
((*1 *2 *3 *3 *4)
(-12 (-5 *4 (-99 *5)) (-4 *5 (-558)) (-4 *5 (-1049))
- (-5 *2 (-2 (|:| -2760 *3) (|:| -1644 *3))) (-5 *1 (-853 *5 *3))
+ (-5 *2 (-2 (|:| -3644 *3) (|:| -4228 *3))) (-5 *1 (-853 *5 *3))
(-4 *3 (-852 *5)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-225)) (-5 *4 (-566))
- (-5 *5 (-3 (|:| |fn| (-390)) (|:| |fp| (-64 -2382))))
- (-5 *2 (-1035)) (-5 *1 (-748)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1281 *2 *3)) (-4 *2 (-850)) (-4 *3 (-1049))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1287 *2 *3)) (-4 *2 (-1049)) (-4 *3 (-846)))))
+(((*1 *2 *3) (-12 (-5 *3 (-381)) (-5 *2 (-1157)) (-5 *1 (-306)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-429 *3 *2)) (-4 *3 (-13 (-172) (-38 (-409 (-566)))))
+ (-4 *2 (-13 (-850) (-21))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-365))
+ (-5 *2 (-644 (-2 (|:| C (-689 *5)) (|:| |g| (-1264 *5)))))
+ (-5 *1 (-978 *5)) (-5 *3 (-689 *5)) (-5 *4 (-1264 *5)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))
+ (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566)))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))
+ (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566)))
+ (-5 *4 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))
+ (-5 *1 (-1020 *3)) (-4 *3 (-1240 (-566))) (-5 *4 (-409 (-566)))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-409 (-566)))
+ (-5 *2 (-644 (-2 (|:| -4380 *5) (|:| -4394 *5)))) (-5 *1 (-1020 *3))
+ (-4 *3 (-1240 (-566))) (-5 *4 (-2 (|:| -4380 *5) (|:| -4394 *5)))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))
+ (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-644 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566))))))
+ (-5 *1 (-1021 *3)) (-4 *3 (-1240 (-409 (-566))))
+ (-5 *4 (-2 (|:| -4380 (-409 (-566))) (|:| -4394 (-409 (-566)))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-409 (-566)))
+ (-5 *2 (-644 (-2 (|:| -4380 *4) (|:| -4394 *4)))) (-5 *1 (-1021 *3))
+ (-4 *3 (-1240 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-409 (-566)))
+ (-5 *2 (-644 (-2 (|:| -4380 *5) (|:| -4394 *5)))) (-5 *1 (-1021 *3))
+ (-4 *3 (-1240 *5)) (-5 *4 (-2 (|:| -4380 *5) (|:| -4394 *5))))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-1171 (-952 *4))) (-5 *1 (-418 *3 *4))
+ (-4 *3 (-419 *4))))
+ ((*1 *2)
+ (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-4 *3 (-365))
+ (-5 *2 (-1171 (-952 *3)))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1171 (-409 (-952 *3)))) (-5 *1 (-455 *3 *4 *5 *6))
+ (-4 *3 (-558)) (-4 *3 (-172)) (-14 *4 (-921))
+ (-14 *5 (-644 (-1175))) (-14 *6 (-1264 (-689 *3))))))
+(((*1 *2 *1) (-12 (-4 *1 (-391)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-927))
+ (-5 *2
+ (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
+ (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
+ (-5 *1 (-153))))
+ ((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-927)) (-5 *4 (-409 (-566)))
+ (-5 *2
+ (-2 (|:| |brans| (-644 (-644 (-943 (-225)))))
+ (|:| |xValues| (-1093 (-225))) (|:| |yValues| (-1093 (-225)))))
+ (-5 *1 (-153)))))
+(((*1 *2 *1) (-12 (-4 *1 (-797 *2)) (-4 *2 (-172))))
+ ((*1 *2 *1) (-12 (-4 *1 (-997 *2)) (-4 *2 (-172)))))
+(((*1 *2 *1) (-12 (-4 *1 (-511 *3 *2)) (-4 *3 (-1099)) (-4 *2 (-850)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-588 *2)) (-4 *2 (-547)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-921)) (-5 *2 (-1171 *4)) (-5 *1 (-359 *4))
+ (-4 *4 (-351)))))
+(((*1 *2 *1 *1 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-4 *1 (-308))))
+ ((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -4152 *1)))
+ (-4 *1 (-308)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-508))) (-5 *1 (-49))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-508))) (-5 *1 (-485)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *3 (-375 *2)) (-4 *4 (-375 *2))
- (|has| *2 (-6 (-4419 "*"))) (-4 *2 (-1049))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1049))
+ (-14 *4 (-644 (-1175)))))
((*1 *2 *3)
- (-12 (-4 *4 (-375 *2)) (-4 *5 (-375 *2)) (-4 *2 (-172))
- (-5 *1 (-688 *2 *4 *5 *3)) (-4 *3 (-687 *2 *4 *5))))
+ (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1214))))
((*1 *2 *1)
- (-12 (-4 *1 (-1122 *3 *2 *4 *5)) (-4 *4 (-238 *3 *2))
- (-4 *5 (-238 *3 *2)) (|has| *2 (-6 (-4419 "*"))) (-4 *2 (-1049)))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-223 *3 *4)) (-4 *3 (-13 (-1049) (-850)))
+ (-14 *4 (-644 (-1175)))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-672 *3)) (-4 *3 (-850))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-677 *3)) (-4 *3 (-850))))
+ ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-893 *3)) (-4 *3 (-850)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-952 *4)) (-4 *4 (-13 (-308) (-147)))
- (-4 *2 (-949 *4 *6 *5)) (-5 *1 (-924 *4 *5 *6 *2))
- (-4 *5 (-13 (-850) (-614 (-1175)))) (-4 *6 (-793)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lcmfij| *5) (|:| |totdeg| (-771)) (|:| |poli| *7)
+ (|:| |polj| *7)))
+ (-4 *5 (-793)) (-4 *7 (-949 *4 *5 *6)) (-4 *4 (-454)) (-4 *6 (-850))
+ (-5 *2 (-112)) (-5 *1 (-451 *4 *5 *6 *7)))))
+(((*1 *2)
+ (-12 (-4 *4 (-172)) (-5 *2 (-112)) (-5 *1 (-368 *3 *4))
+ (-4 *3 (-369 *4))))
+ ((*1 *2) (-12 (-4 *1 (-369 *3)) (-4 *3 (-172)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-644 (-1175))) (-5 *1 (-1179)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-689 *4)) (-5 *3 (-921)) (-4 *4 (-1049))
+ (-5 *1 (-1028 *4))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *2 (-644 (-689 *4))) (-5 *3 (-921)) (-4 *4 (-1049))
+ (-5 *1 (-1028 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-771)) (-5 *2 (-1264 (-644 (-566)))) (-5 *1 (-482))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-601 *3))))
+ ((*1 *1 *2 *3)
+ (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1214)) (-5 *1 (-1155 *3)))))
+(((*1 *1 *1) (-4 *1 (-629)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-558)) (-5 *1 (-630 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1002) (-1199))))))
+(((*1 *1) (-5 *1 (-292))))
+(((*1 *2 *3) (-12 (-5 *3 (-821)) (-5 *2 (-52)) (-5 *1 (-831)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-547))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 *5)) (-5 *4 (-644 (-1 *6 (-644 *6))))
+ (-4 *5 (-38 (-409 (-566)))) (-4 *6 (-1255 *5)) (-5 *2 (-644 *6))
+ (-5 *1 (-1257 *5 *6)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-454)) (-5 *1 (-1205 *3 *2))
+ (-4 *2 (-13 (-432 *3) (-1199))))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-921)) (-5 *1 (-1100 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *1 *1 *1 *1 *2)
+ (-12 (-5 *2 (-771)) (-4 *1 (-1064 *3 *4 *5)) (-4 *3 (-1049))
+ (-4 *4 (-793)) (-4 *5 (-850)) (-4 *3 (-558)))))
+(((*1 *1 *2) (-12 (-5 *2 (-644 (-862))) (-5 *1 (-862))))
+ ((*1 *1 *1) (-5 *1 (-862))))
+(((*1 *2 *3 *4 *3 *5 *3)
+ (-12 (-5 *4 (-689 (-225))) (-5 *5 (-689 (-566))) (-5 *3 (-566))
+ (-5 *2 (-1035)) (-5 *1 (-754)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-596 *2)) (-4 *2 (-38 (-409 (-566)))) (-4 *2 (-1049)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1264 *1)) (-4 *1 (-369 *4)) (-4 *4 (-172))
- (-5 *2 (-689 *4))))
- ((*1 *2)
- (-12 (-4 *4 (-172)) (-5 *2 (-689 *4)) (-5 *1 (-418 *3 *4))
- (-4 *3 (-419 *4))))
- ((*1 *2) (-12 (-4 *1 (-419 *3)) (-4 *3 (-172)) (-5 *2 (-689 *3)))))
-((-1297 . 732130) (-1298 . 731952) (-1299 . 731555) (-1300 . 731389)
- (-1301 . 731103) (-1302 . 730966) (-1303 . 730775) (-1304 . 730680)
- (-1305 . 730586) (-1306 . 730457) (-1307 . 728727) (-1308 . 728569)
- (-1309 . 728208) (-1310 . 728136) (-1311 . 727810) (-1312 . 727750)
- (-1313 . 727608) (-1314 . 727403) (-1315 . 727244) (-1316 . 727106)
- (-1317 . 727035) (-1318 . 726880) (-1319 . 726766) (-1320 . 726680)
- (-1321 . 726316) (-1322 . 726177) (-1323 . 725950) (-1324 . 725810)
- (-1325 . 725758) (-1326 . 725563) (-1327 . 725465) (-1328 . 725392)
- (-1329 . 725241) (-1330 . 724737) (-1331 . 724584) (-1332 . 724352)
- (-1333 . 724205) (-1334 . 724099) (-1335 . 724027) (-1336 . 723955)
- (-1337 . 723858) (-1338 . 723776) (-1339 . 723698) (-1340 . 723627)
- (-1341 . 723574) (-1342 . 723501) (-1343 . 722431) (-1344 . 722352)
- (-1345 . 722279) (-1346 . 721794) (-1347 . 721630) (-1348 . 721142)
- (-1349 . 721069) (-1350 . 720747) (-1351 . 720613) (-1352 . 720395)
- (-1353 . 719975) (-1354 . 719876) (-1355 . 719756) (-1356 . 717529)
- (-1357 . 717461) (-1358 . 717271) (-1359 . 717076) (-1360 . 717024)
- (-1361 . 716886) (-1362 . 716836) (-1363 . 716520) (-1364 . 716468)
- (-1365 . 716349) (-1366 . 716297) (-1367 . 716166) (-1368 . 715606)
- (-1369 . 715394) (-1370 . 714121) (-1371 . 713958) (-1372 . 713320)
- (-1373 . 713199) (-1374 . 712889) (-1375 . 712803) (-1376 . 712591)
- (-1377 . 712439) (-1378 . 712368) (-1379 . 712316) (-1380 . 712212)
- (-1381 . 711909) (-1382 . 711347) (-1383 . 711137) (-1384 . 711039)
- (-1385 . 710973) (-1386 . 710899) (-1387 . 710737) (-1388 . 710180)
- (-1389 . 710128) (-1390 . 709968) (-1391 . 709909) (-1392 . 709793)
- (-1393 . 709677) (-1394 . 709606) (-1395 . 709270) (-1396 . 709052)
- (-1397 . 708810) (-1398 . 708682) (-1399 . 708582) (-1400 . 708134)
- (-1401 . 705293) (-1402 . 704686) (-1403 . 704590) (-1404 . 704467)
- (-1405 . 704401) (-1406 . 704335) (-1407 . 704240) (-1408 . 704060)
- (-1409 . 703962) (-1410 . 703860) (-1411 . 703807) (-1412 . 703704)
- (-1413 . 703623) (-1414 . 703375) (-1415 . 703244) (-1416 . 703149)
- (-1417 . 702934) (** . 699869) (-1419 . 699795) (-1420 . 699645)
- (-1421 . 699482) (-1422 . 699302) (-1423 . 699010) (-1424 . 698854)
- (-1425 . 698660) (-1426 . 698574) (-1427 . 698431) (-1428 . 698213)
- (-1429 . 698139) (-1430 . 697487) (-1431 . 697213) (-1432 . 697160)
- (-1433 . 696982) (-1434 . 696896) (-1435 . 696811) (-1436 . 696602)
- (-1437 . 696178) (-1438 . 696019) (-1439 . 695741) (-1440 . 695590)
- (-1441 . 695093) (-1442 . 695016) (-1443 . 694594) (-1444 . 694506)
- (-1445 . 694358) (-1446 . 693848) (-1447 . 693709) (-1448 . 693524)
- (-1449 . 693313) (-1450 . 693026) (-1451 . 692923) (-1452 . 692607)
- (-1453 . 692524) (-1454 . 692451) (-1455 . 691910) (-1456 . 691876)
- (-1457 . 691567) (-1458 . 691196) (-1459 . 691090) (-1460 . 690504)
- (-1461 . 690401) (-1462 . 689818) (-1463 . 689528) (-1464 . 689032)
- (-1465 . 688964) (-1466 . 688814) (-1467 . 688663) (-1468 . 688526)
- (-1469 . 688457) (-1470 . 688347) (-1471 . 688270) (-1472 . 688140)
- (-1473 . 688052) (-1474 . 687803) (-1475 . 687736) (-1476 . 687514)
- (-1477 . 687131) (-1478 . 687079) (-1479 . 686983) (-1480 . 686890)
- (-1481 . 686719) (-1482 . 686633) (-1483 . 686545) (-1484 . 686474)
- (-1485 . 686328) (-1486 . 686110) (-1487 . 685967) (-1488 . 685840)
- (-1489 . 685789) (-1490 . 685740) (-1491 . 685666) (-1492 . 685292)
- (-1493 . 685218) (-1494 . 685158) (-1495 . 685000) (-1496 . 684864)
- (-1497 . 684741) (-1498 . 684380) (-1499 . 680220) (-1500 . 680138)
- (-1501 . 680025) (-1502 . 679941) (-1503 . 679533) (-1504 . 679417)
- (-1505 . 679321) (-1506 . 679208) (-1507 . 679124) (-1508 . 678981)
- (-1509 . 678837) (-1510 . 678731) (-1511 . 678660) (-1512 . 678003)
- (-1513 . 677844) (-1514 . 677700) (-1515 . 677154) (-1516 . 677098)
- (-1517 . 677035) (-1518 . 676757) (-1519 . 676649) (-1520 . 676580)
- (-1521 . 676196) (-1522 . 676044) (-1523 . 675739) (-1524 . 675626)
- (-1525 . 675482) (-1526 . 675359) (-1527 . 675306) (-1528 . 675211)
- (-1529 . 675117) (-1530 . 674736) (-1531 . 674456) (-1532 . 674335)
- (-1533 . 674222) (-1534 . 674070) (-1535 . 674004) (-1536 . 673976)
- (-1537 . 673852) (-1538 . 673766) (-1539 . 673416) (-1540 . 673360)
- (-1541 . 672993) (-1542 . 672479) (-1543 . 672400) (-1544 . 672305)
- (-1545 . 672253) (-1546 . 672095) (-1547 . 671498) (-1548 . 671111)
- (-1549 . 671017) (-1550 . 670433) (-1551 . 670273) (-1552 . 669886)
- (-1553 . 669852) (-1554 . 669629) (-1555 . 669267) (-1556 . 668477)
- (-1557 . 668328) (-1558 . 667842) (-1559 . 666059) (-1560 . 665959)
- (-1561 . 665904) (-1562 . 665264) (-1563 . 665168) (-1564 . 664564)
- (-1565 . 664268) (-1566 . 664006) (-1567 . 663873) (-1568 . 663785)
- (-1569 . 663669) (-1570 . 663561) (-1571 . 663201) (-1572 . 663149)
- (-1573 . 663034) (-1574 . 662761) (-1575 . 662442) (-1576 . 662281)
- (-1577 . 662228) (-1578 . 661980) (-1579 . 660764) (-1580 . 660634)
- (-1581 . 660582) (-1582 . 660453) (-1583 . 660312) (-1584 . 660139)
- (-1585 . 659929) (-1586 . 659867) (-1587 . 659783) (-1588 . 659564)
- (-1589 . 659437) (-1590 . 659387) (-1591 . 659222) (-1592 . 659073)
- (-1593 . 658974) (-1594 . 658753) (-1595 . 658229) (-1596 . 658119)
- (-1597 . 658011) (-1598 . 657892) (-1599 . 657812) (-1600 . 657628)
- (-1601 . 657540) (-1602 . 657259) (-1603 . 657203) (-1604 . 657103)
- (-1605 . 656945) (-1606 . 656861) (-1607 . 656716) (-1608 . 656606)
- (-1609 . 656504) (-1610 . 656285) (-1611 . 656233) (-1612 . 656080)
- (-1613 . 655784) (-1614 . 655731) (-1615 . 655624) (-1616 . 655482)
- (-1617 . 655397) (-1618 . 655311) (-1619 . 655225) (-1620 . 655141)
- (-1621 . 655055) (-1622 . 654922) (-1623 . 654891) (-1624 . 654438)
- (-1625 . 654359) (-1626 . 654297) (-1627 . 653955) (-1628 . 653698)
- (-1629 . 653597) (-1630 . 653538) (-1631 . 653466) (-1632 . 653291)
- (-1633 . 653208) (-1634 . 653153) (-1635 . 653082) (-1636 . 653025)
- (-1637 . 652973) (-1638 . 652836) (-1639 . 652622) (-1640 . 652414)
- (-1641 . 652286) (-1642 . 652128) (-1643 . 651984) (-1644 . 651776)
- (-1645 . 651713) (-1646 . 651401) (-1647 . 651317) (-1648 . 651143)
- (-1649 . 651073) (-1650 . 650962) (-1651 . 650891) (-1652 . 650707)
- (-1653 . 650575) (-1654 . 650464) (-1655 . 650047) (-1656 . 649754)
- (-1657 . 649720) (-1658 . 649567) (-1659 . 649452) (-1660 . 649224)
- (-1661 . 649138) (-1662 . 649039) (-1663 . 648935) (-1664 . 648764)
- (-1665 . 648551) (-1666 . 648432) (-1667 . 648210) (-1668 . 648137)
- (-1669 . 647541) (-1670 . 647446) (-1671 . 647283) (-1672 . 646862)
- (-1673 . 646703) (-1674 . 646315) (-1675 . 646243) (-1676 . 646163)
- (-1677 . 645978) (-1678 . 645876) (-1679 . 645823) (-1680 . 645647)
- (-1681 . 645594) (-1682 . 645535) (-1683 . 645397) (-1684 . 645149)
- (-1685 . 645034) (-1686 . 644647) (-1687 . 644420) (-1688 . 644238)
- (-1689 . 644125) (-1690 . 644023) (-1691 . 643924) (-1692 . 643823)
- (-1693 . 643627) (-1694 . 643541) (-1695 . 643404) (-1696 . 643294)
- (-1697 . 642540) (-1698 . 642187) (-1699 . 642099) (-1700 . 641953)
- (-1701 . 641658) (-1702 . 641548) (-1703 . 641453) (-1704 . 641075)
- (-1705 . 640945) (-1706 . 640866) (-1707 . 640786) (-1708 . 640536)
- (-1709 . 640431) (-1710 . 640256) (-1711 . 640164) (-1712 . 640001)
- (-1713 . 639763) (-1714 . 639558) (-1715 . 639462) (-1716 . 639224)
- (-1717 . 639138) (-1718 . 638964) (-1719 . 638148) (-1720 . 637940)
- (-1721 . 637844) (-1722 . 637810) (-1723 . 637702) (-1724 . 637588)
- (-1725 . 635620) (-1726 . 635487) (-1727 . 635387) (-1728 . 635285)
- (-1729 . 635165) (-1730 . 635112) (-1731 . 634576) (-1732 . 634509)
- (-1733 . 634405) (-1734 . 634326) (-1735 . 634267) (-1736 . 634114)
- (-1737 . 633971) (-1738 . 633844) (-1739 . 633622) (-1740 . 633506)
- (-1741 . 633232) (-1742 . 632865) (-1743 . 632806) (-1744 . 632753)
- (-1745 . 632687) (-1746 . 632618) (-1747 . 632460) (-1748 . 632245)
- (-1749 . 632150) (-1750 . 632004) (-1751 . 631863) (-1752 . 631804)
- (-1753 . 631705) (-1754 . 631570) (-1755 . 631488) (-1756 . 626150)
- (-1757 . 626090) (-1758 . 625909) (-1759 . 625856) (-1760 . 625770)
- (-1761 . 625492) (-1762 . 625327) (-1763 . 625201) (-1764 . 625105)
- (-1765 . 625055) (-1766 . 624976) (-1767 . 624923) (-1768 . 624810)
- (-1769 . 624709) (-1770 . 624613) (-1771 . 624561) (-1772 . 624393)
- (-1773 . 624305) (-1774 . 624245) (-1775 . 624103) (-1776 . 623822)
- (-1777 . 623622) (-1778 . 623553) (-1779 . 623409) (-1780 . 623002)
- (-1781 . 622640) (-1782 . 622495) (-1783 . 622183) (-1784 . 621913)
- (-1785 . 621806) (-1786 . 621553) (-1787 . 621389) (-1788 . 621306)
- (-1789 . 620860) (-1790 . 620805) (-1791 . 620752) (-1792 . 620703)
- (-1793 . 620607) (-1794 . 620216) (-1795 . 620148) (-1796 . 619969)
- (-1797 . 619863) (-1798 . 619720) (-1799 . 619639) (-1800 . 619402)
- (-1801 . 619305) (-1802 . 619012) (-1803 . 618850) (-1804 . 618754)
- (-1805 . 618650) (-1806 . 618550) (-1807 . 618450) (-1808 . 618376)
- (-1809 . 618296) (-1810 . 618057) (-1811 . 617646) (-1812 . 617547)
- (-1813 . 617495) (-1814 . 617443) (-1815 . 617299) (-1816 . 617212)
- (-1817 . 616948) (-1818 . 616730) (-1819 . 616601) (-1820 . 616375)
- (-1821 . 615125) (-1822 . 615073) (-1823 . 614942) (-1824 . 614868)
- (-1825 . 614705) (-1826 . 614624) (-1827 . 614507) (-1828 . 614419)
- (-1829 . 614295) (-1830 . 614225) (-1831 . 614073) (-1832 . 613847)
- (-1833 . 613553) (-1834 . 613161) (-1835 . 612965) (-1836 . 612812)
- (-1837 . 612713) (-1838 . 612604) (-1839 . 612567) (-1840 . 612331)
- (-1841 . 612158) (-1842 . 612008) (-1843 . 611956) (-1844 . 611764)
- (-1845 . 611691) (-1846 . 611617) (-1847 . 611529) (-1848 . 610906)
- (-1849 . 610837) (-1850 . 610754) (-1851 . 610701) (-1852 . 610579)
- (-1853 . 609971) (-1854 . 609907) (-1855 . 609759) (-1856 . 609693)
- (-1857 . 609570) (-1858 . 609429) (-1859 . 609373) (-1860 . 609276)
- (-1861 . 609155) (-1862 . 609127) (-1863 . 609096) (-1864 . 608765)
- (-1865 . 608547) (-1866 . 608476) (-1867 . 608100) (-1868 . 607984)
- (-1869 . 607898) (-1870 . 607804) (-1871 . 607631) (-1872 . 607552)
- (-1873 . 607428) (-1874 . 607313) (-1875 . 607045) (-1876 . 606958)
- (-1877 . 606857) (-1878 . 606734) (-1879 . 603953) (-1880 . 603750)
- (-1881 . 603559) (-1882 . 603477) (-1883 . 603376) (-1884 . 603326)
- (-1885 . 603225) (-1886 . 603148) (-1887 . 602957) (-1888 . 602756)
- (-1889 . 602566) (-1890 . 602509) (-1891 . 602178) (-1892 . 601998)
- (-1893 . 601901) (-1894 . 601508) (-1895 . 601355) (-1896 . 601245)
- (-1897 . 601126) (-1898 . 600997) (-1899 . 600934) (-1900 . 600837)
- (-1901 . 600765) (-1902 . 600699) (-1903 . 600577) (-1904 . 600520)
- (-1905 . 600274) (-1906 . 600161) (-1907 . 600067) (-1908 . 599972)
- (-1909 . 599237) (-1910 . 598807) (-1911 . 598755) (-1912 . 598546)
- (-1913 . 598476) (-1914 . 597972) (-1915 . 597872) (-1916 . 597817)
- (-1917 . 597724) (-1918 . 597379) (-1919 . 596509) (-1920 . 596315)
- (-1921 . 596160) (-1922 . 596062) (-1923 . 595935) (-1924 . 595628)
- (-1925 . 594630) (-1926 . 594411) (-1927 . 594095) (-1928 . 593743)
- (-1929 . 593523) (-1930 . 593417) (-1931 . 593006) (-1932 . 592497)
- (-1933 . 592360) (-1934 . 592150) (-1935 . 591971) (-1936 . 591292)
- (-1937 . 590632) (-1938 . 589434) (-1939 . 589340) (-1940 . 589258)
- (-1941 . 589130) (-1942 . 589019) (-1943 . 588967) (-1944 . 588897)
- (-1945 . 588769) (-1946 . 588559) (-1947 . 588504) (-1948 . 588204)
- (-1949 . 588176) (-1950 . 588074) (-1951 . 587955) (-1952 . 587824)
- (-1953 . 587740) (-1954 . 587616) (-1955 . 587564) (-1956 . 587191)
- (-1957 . 587129) (-1958 . 587059) (-1959 . 586985) (-1960 . 586867)
- (-1961 . 586754) (-1962 . 586588) (-1963 . 585503) (-1964 . 585174)
- (-1965 . 585104) (-1966 . 584828) (-1967 . 584699) (-1968 . 584638)
- (-1969 . 584586) (-1970 . 584482) (-1971 . 584375) (-1972 . 584325)
- (-1973 . 584007) (-1974 . 583849) (-1975 . 583675) (-1976 . 583339)
- (-1977 . 583229) (-1978 . 583072) (-1979 . 583020) (-1980 . 582926)
- (-1981 . 582802) (-1982 . 582644) (-1983 . 582570) (-1984 . 581997)
- (-1985 . 581947) (-1986 . 581794) (-1987 . 581543) (-1988 . 580976)
- (-1989 . 580881) (-1990 . 580015) (-1991 . 579863) (-1992 . 579317)
- (-1993 . 579215) (-1994 . 579108) (-1995 . 579027) (-1996 . 578925)
- (-1997 . 578810) (-1998 . 578640) (-1999 . 578545) (-2000 . 578493)
- (-2001 . 577907) (-2002 . 577825) (-2003 . 577494) (-2004 . 577434)
- (-2005 . 577338) (-2006 . 577219) (-2007 . 577112) (-2008 . 577056)
- (-2009 . 576941) (-2010 . 576787) (-2011 . 576634) (-2012 . 576560)
- (-2013 . 575809) (-2014 . 575637) (-2015 . 575587) (-2016 . 575446)
- (-2017 . 575330) (-2018 . 575296) (-2019 . 575206) (-2020 . 575153)
- (-2021 . 575102) (-2022 . 573514) (-2023 . 573399) (-2024 . 573234)
- (-2025 . 573135) (-2026 . 572997) (-2027 . 572882) (-2028 . 572823)
- (-2029 . 572755) (-2030 . 572676) (-2031 . 572478) (-2032 . 572199)
- (-2033 . 572106) (-2034 . 571850) (-2035 . 571818) (-2036 . 571738)
- (-2037 . 571683) (-2038 . 571547) (-2039 . 571434) (-2040 . 571336)
- (-2041 . 571240) (-2042 . 570994) (-2043 . 570652) (-2044 . 570544)
- (-2045 . 570460) (-2046 . 570401) (-2047 . 570309) (-2048 . 570230)
- (-2049 . 570157) (-2050 . 570126) (-2051 . 570052) (-2052 . 569937)
- (-2053 . 569691) (-2054 . 569590) (-2055 . 569372) (-2056 . 568909)
- (-2057 . 568743) (-2058 . 568675) (-2059 . 568623) (-2060 . 568544)
- (-2061 . 568385) (-2062 . 568290) (-2063 . 568237) (-2064 . 568103)
- (-2065 . 568032) (-2066 . 567887) (-2067 . 567810) (-2068 . 567725)
- (-2069 . 567629) (-2070 . 563622) (-2071 . 563483) (-2072 . 563277)
- (-2073 . 563122) (-2074 . 562942) (-2075 . 562715) (-2076 . 562486)
- (-2077 . 562259) (-2078 . 562155) (-2079 . 561974) (-2080 . 561919)
- (-2081 . 561751) (-2082 . 561561) (-2083 . 561466) (-2084 . 561388)
- (-2085 . 560590) (-2086 . 560407) (-2087 . 560160) (-2088 . 560102)
- (-2089 . 559984) (-2090 . 559861) (-2091 . 559805) (-2092 . 556506)
- (-2093 . 556433) (-2094 . 556350) (-2095 . 556298) (-2096 . 556169)
- (-2097 . 555997) (-2098 . 555872) (-2099 . 555795) (-2100 . 555674)
- (-2101 . 555551) (-2102 . 555261) (-2103 . 555014) (-2104 . 554866)
- (-2105 . 554770) (-2106 . 554693) (-2107 . 554556) (-2108 . 554438)
- (-2109 . 554323) (-2110 . 554165) (-2111 . 554043) (-2112 . 553947)
- (-2113 . 553799) (-2114 . 553588) (-2115 . 553430) (-2116 . 553377)
- (-2117 . 553304) (-2118 . 553122) (-2119 . 553045) (-2120 . 552968)
- (-2121 . 552682) (-2122 . 552564) (-2123 . 552457) (-2124 . 551946)
- (-2125 . 551858) (-2126 . 551758) (-2127 . 551274) (-2128 . 550932)
- (-2129 . 550904) (-2130 . 550817) (-2131 . 550656) (-2132 . 550555)
- (-2133 . 550458) (-2134 . 550243) (-2135 . 550166) (-2136 . 549713)
- (-2137 . 549685) (-2138 . 549632) (-2139 . 549538) (-2140 . 549331)
- (-2141 . 549194) (-2142 . 549098) (-2143 . 549000) (-2144 . 548581)
- (-2145 . 548327) (-2146 . 548154) (-2147 . 547275) (-2148 . 547096)
- (-2149 . 546941) (-2150 . 546811) (-2151 . 546608) (-2152 . 546556)
- (-2153 . 546306) (-2154 . 546254) (-2155 . 545989) (-2156 . 545933)
- (-2157 . 545799) (-2158 . 545593) (-2159 . 545406) (-2160 . 545311)
- (-2161 . 545047) (-2162 . 544944) (-2163 . 544852) (-2164 . 544766)
- (-2165 . 544643) (-2166 . 544591) (-2167 . 544246) (-2168 . 543919)
- (-2169 . 543863) (-2170 . 543126) (-2171 . 542931) (-2172 . 542692)
- (-2173 . 542643) (-2174 . 542488) (-2175 . 542380) (-2176 . 542323)
- (-2177 . 542231) (-2178 . 541455) (-2179 . 541353) (-2180 . 541066)
- (-2181 . 540403) (-2182 . 540297) (-2183 . 540052) (-2184 . 539965)
- (-2185 . 539912) (-2186 . 539739) (-2187 . 539680) (-2188 . 539627)
- (-2189 . 539292) (-2190 . 539206) (-2191 . 539120) (-2192 . 538977)
- (-2193 . 538819) (-2194 . 538345) (-2195 . 538268) (-2196 . 538070)
- (-2197 . 536918) (-2198 . 536839) (-2199 . 536741) (-2200 . 536633)
- (-2201 . 536477) (-2202 . 536263) (-2203 . 536045) (-2204 . 535961)
- (-2205 . 535866) (-2206 . 535786) (-2207 . 535726) (-2208 . 535667)
- (-2209 . 535475) (-2210 . 535384) (-2211 . 535325) (-2212 . 535013)
- (-2213 . 534936) (-2214 . 534820) (-2215 . 534720) (-2216 . 534632)
- (-2217 . 534503) (-2218 . 534434) (-2219 . 534381) (-2220 . 534302)
- (-2221 . 534208) (-2222 . 533106) (-2223 . 532891) (-2224 . 532775)
- (-2225 . 532598) (-2226 . 532359) (-2227 . 532273) (-2228 . 531864)
- (-2229 . 531780) (-2230 . 531715) (-2231 . 531634) (-2232 . 530966)
- (-2233 . 530871) (-2234 . 530843) (-2235 . 530708) (-2236 . 528852)
- (-2237 . 528760) (-2238 . 528708) (-2239 . 528656) (-2240 . 528477)
- (-2241 . 528281) (-2242 . 528154) (-2243 . 528040) (-2244 . 527943)
- (-2245 . 527798) (-2246 . 527653) (-2247 . 527579) (-2248 . 527517)
- (-2249 . 527183) (-2250 . 527010) (-2251 . 526976) (-2252 . 526942)
- (-2253 . 526890) (-2254 . 526806) (-2255 . 526736) (-2256 . 526665)
- (-2257 . 526329) (-2258 . 526221) (-2259 . 526138) (-2260 . 526089)
- (-2261 . 525989) (-2262 . 525908) (-2263 . 525813) (-2264 . 525702)
- (-2265 . 525674) (-2266 . 525499) (-2267 . 525321) (-2268 . 525157)
- (-2269 . 524960) (-2270 . 524931) (-2271 . 524829) (-2272 . 524734)
- (-2273 . 524614) (-2274 . 524486) (-2275 . 524449) (-2276 . 524384)
- (-2277 . 524307) (-2278 . 524155) (-2279 . 523796) (-2280 . 523671)
- (-2281 . 523599) (-2282 . 523418) (-2283 . 523134) (-2284 . 523057)
- (-2285 . 522974) (-2286 . 522897) (-2287 . 522755) (-2288 . 522459)
- (-2289 . 522407) (-2290 . 522307) (-2291 . 522128) (-2292 . 522035)
- (-2293 . 521983) (-2294 . 521815) (-2295 . 521744) (-2296 . 521685)
- (-2297 . 521460) (-2298 . 521107) (-2299 . 520994) (-2300 . 520709)
- (-2301 . 520630) (-2302 . 520506) (-2303 . 518374) (-2304 . 518278)
- (-2305 . 518180) (-2306 . 517338) (-2307 . 517159) (-2308 . 516936)
- (-2309 . 516853) (-2310 . 516265) (-2311 . 515932) (-2312 . 515712)
- (-2313 . 515608) (-2314 . 515490) (-2315 . 515205) (-2316 . 514985)
- (-2317 . 514807) (-2318 . 514686) (-2319 . 514626) (-2320 . 514236)
- (-2321 . 514162) (-2322 . 514100) (-2323 . 514072) (-2324 . 513818)
- (-2325 . 513766) (-2326 . 513288) (-2327 . 513029) (-2328 . 512850)
- (-2329 . 512757) (-2330 . 512651) (-2331 . 512224) (-2332 . 511833)
- (-2333 . 511688) (-2334 . 511544) (-2335 . 511388) (-2336 . 510293)
- (-2337 . 510154) (-2338 . 510083) (-2339 . 509956) (-2340 . 509832)
- (-2341 . 509539) (-2342 . 509005) (-2343 . 508363) (-2344 . 508311)
- (-2345 . 508216) (-2346 . 508019) (-2347 . 507584) (-2348 . 507532)
- (-2349 . 507336) (-2350 . 507258) (-2351 . 507224) (-2352 . 507196)
- (-2353 . 506943) (-2354 . 506865) (-2355 . 506803) (-2356 . 506556)
- (-2357 . 506490) (-2358 . 505088) (-2359 . 504866) (-2360 . 504675)
- (-2361 . 504515) (-2362 . 504429) (-2363 . 504249) (-2364 . 504154)
- (-2365 . 504057) (-2366 . 503949) (-2367 . 503750) (-2368 . 503679)
- (-2369 . 503386) (-2370 . 503164) (-2371 . 493714) (-2372 . 493619)
- (-2373 . 493563) (-2374 . 493535) (-2375 . 493438) (-2376 . 493355)
- (-2377 . 493277) (-2378 . 493174) (-2379 . 493125) (-2380 . 492961)
- (-2381 . 492446) (-2382 . 492368) (-2383 . 492177) (-2384 . 492097)
- (-2385 . 492030) (-2386 . 491881) (-2387 . 491765) (-2388 . 491222)
- (-2389 . 491107) (-2390 . 490147) (-2391 . 484633) (-2392 . 484532)
- (-2393 . 484416) (-2394 . 484364) (-2395 . 484226) (-2396 . 484155)
- (-2397 . 483875) (-2398 . 483717) (-2399 . 483571) (-2400 . 483498)
- (-2401 . 483400) (-2402 . 483007) (-2403 . 481826) (-2404 . 481596)
- (-2405 . 481321) (-2406 . 481196) (-2407 . 481053) (-2408 . 480350)
- (-2409 . 480247) (-2410 . 480058) (-2411 . 479999) (-2412 . 479928)
- (-2413 . 479730) (-2414 . 479640) (-2415 . 478996) (-2416 . 478913)
- (-2417 . 478472) (-2418 . 478369) (-2419 . 478317) (-2420 . 477986)
- (-2421 . 477746) (-2422 . 477645) (-2423 . 477580) (-2424 . 477445)
- (-2425 . 477316) (-2426 . 477199) (-2427 . 477036) (-2428 . 476959)
- (-2429 . 476816) (-2430 . 476481) (-2431 . 476359) (-2432 . 476288)
- (-2433 . 476040) (-2434 . 475888) (-2435 . 475776) (-2436 . 475642)
- (-2437 . 475551) (-2438 . 475454) (-2439 . 475370) (-2440 . 475290)
- (-2441 . 475213) (-2442 . 474326) (-2443 . 474016) (-2444 . 473646)
- (-2445 . 473551) (-2446 . 473412) (-2447 . 473134) (-2448 . 472862)
- (-2449 . 472813) (-2450 . 472716) (-2451 . 472643) (-2452 . 472416)
- (-2453 . 472352) (-2454 . 472256) (-2455 . 472184) (-2456 . 472114)
- (-2457 . 471973) (-2458 . 471945) (-2459 . 471747) (-2460 . 471652)
- (-2461 . 471554) (-2462 . 471430) (-2463 . 471377) (-2464 . 471248)
- (-2465 . 471033) (-2466 . 470930) (-2467 . 470875) (-2468 . 470760)
- (-2469 . 470732) (-2470 . 470528) (-2471 . 470462) (-2472 . 470146)
- (-2473 . 466811) (-2474 . 466690) (-2475 . 466491) (-2476 . 466281)
- (-2477 . 465992) (-2478 . 465940) (-2479 . 465868) (-2480 . 465797)
- (-2481 . 465215) (-2482 . 464920) (-2483 . 464569) (-2484 . 464422)
- (-2485 . 464148) (-2486 . 463384) (-2487 . 463295) (-2488 . 462944)
- (-2489 . 462846) (-2490 . 462780) (-2491 . 462706) (-2492 . 462370)
- (-2493 . 461767) (-2494 . 461675) (-2495 . 461428) (-2496 . 461347)
- (-2497 . 460896) (-2498 . 460738) (-2499 . 460634) (-2500 . 460551)
- (-2501 . 460391) (-2502 . 460122) (-2503 . 459773) (-2504 . 459620)
- (-2505 . 459535) (-2506 . 459477) (-2507 . 459346) (-2508 . 458989)
- (-2509 . 458567) (-2510 . 458429) (-2511 . 458373) (-2512 . 439798)
- (-2513 . 439371) (-2514 . 439102) (-2515 . 438843) (-2516 . 438788)
- (-2517 . 438605) (-2518 . 438571) (-2519 . 436942) (-2520 . 436642)
- (-2521 . 435196) (-2522 . 435077) (-2523 . 432256) (-2524 . 432162)
- (-2525 . 432074) (-2526 . 432007) (-2527 . 431859) (-2528 . 431806)
- (-2529 . 431750) (-2530 . 430891) (-2531 . 430470) (-2532 . 430202)
- (-2533 . 429996) (-2534 . 429919) (-2535 . 429853) (-2536 . 429761)
- (-2537 . 429592) (-2538 . 429561) (-2539 . 429387) (-2540 . 428091)
- (-2541 . 427898) (-2542 . 427475) (-2543 . 427372) (-2544 . 427277)
- (-2545 . 427111) (-2546 . 427069) (-2547 . 426968) (-2548 . 426839)
- (-2549 . 426756) (-2550 . 426685) (-2551 . 426511) (-2552 . 426355)
- (-2553 . 426303) (-2554 . 426271) (-2555 . 426160) (-2556 . 426010)
- (-2557 . 425793) (-2558 . 425628) (-2559 . 425571) (-2560 . 425364)
- (-2561 . 424062) (-2562 . 424034) (-2563 . 423864) (-2564 . 423709)
- (-2565 . 422743) (-2566 . 422690) (-2567 . 422498) (-2568 . 422445)
- (-2569 . 422282) (-2570 . 422248) (-2571 . 421332) (-2572 . 421281)
- (-2573 . 421166) (-2574 . 421099) (-2575 . 420783) (-2576 . 420731)
- (-2577 . 420620) (-2578 . 420563) (-2579 . 420197) (-2580 . 419922)
- (-2581 . 419820) (-2582 . 419590) (-2583 . 419336) (-2584 . 419283)
- (-2585 . 419212) (-2586 . 417916) (-2587 . 417862) (-2588 . 417789)
- (-2589 . 417686) (-2590 . 415920) (-2591 . 415783) (-2592 . 415625)
- (-2593 . 415243) (-2594 . 414970) (-2595 . 414763) (-2596 . 414626)
- (-2597 . 414387) (-2598 . 414247) (-2599 . 412792) (-2600 . 412639)
- (-2601 . 412172) (-2602 . 412119) (-2603 . 412038) (-2604 . 411967)
- (-2605 . 411848) (-2606 . 411666) (-2607 . 411634) (-2608 . 411454)
- (-2609 . 411386) (-2610 . 409896) (-2611 . 409808) (-2612 . 409738)
- (-2613 . 409590) (-2614 . 409406) (-2615 . 409104) (-2616 . 408961)
- (-2617 . 408742) (-2618 . 408633) (-2619 . 408561) (-2620 . 408232)
- (-2621 . 407496) (-2622 . 407422) (-2623 . 407339) (-2624 . 407238)
- (-2625 . 407178) (-2626 . 406442) (-2627 . 406146) (-2628 . 405500)
- (-2629 . 405417) (-2630 . 405093) (-2631 . 405026) (-2632 . 404911)
- (-2633 . 404732) (-2634 . 404620) (-2635 . 404231) (-2636 . 404068)
- (-2637 . 403903) (-2638 . 403787) (-2639 . 403195) (-2640 . 403096)
- (-2641 . 402978) (-2642 . 402919) (-2643 . 402712) (-2644 . 402657)
- (-2645 . 402365) (-2646 . 402233) (-2647 . 401741) (-2648 . 401628)
- (-2649 . 401401) (-2650 . 401179) (-2651 . 400580) (-2652 . 400467)
- (-2653 . 400320) (-2654 . 400214) (-2655 . 400134) (-2656 . 400066)
- (-2657 . 399806) (-2658 . 399750) (-2659 . 399634) (-2660 . 399555)
- (-2661 . 399336) (-2662 . 399264) (-2663 . 399182) (-2664 . 399004)
- (-2665 . 398937) (-2666 . 398866) (-2667 . 398763) (-2668 . 398635)
- (-2669 . 398127) (-2670 . 397753) (-2671 . 397651) (-2672 . 397580)
- (-2673 . 397506) (-2674 . 397195) (-2675 . 396808) (-2676 . 396749)
- (-2677 . 396611) (-2678 . 396556) (-2679 . 396331) (-2680 . 396302)
- (-2681 . 396132) (-2682 . 396044) (-2683 . 395950) (-2684 . 395471)
- (-2685 . 395385) (-2686 . 395227) (-2687 . 394927) (-2688 . 394767)
- (-2689 . 394571) (-2690 . 394250) (-2691 . 394108) (-2692 . 393498)
- (-2693 . 393396) (-2694 . 393135) (-2695 . 392932) (-2696 . 392866)
- (-2697 . 392760) (-2698 . 392708) (-2699 . 392623) (-2700 . 392537)
- (-2701 . 392463) (-2702 . 392382) (-2703 . 392230) (-2704 . 392108)
- (-2705 . 392022) (-2706 . 391839) (-2707 . 391811) (-2708 . 391758)
- (-2709 . 390418) (-2710 . 390283) (-2711 . 390135) (-2712 . 390064)
- (-2713 . 389758) (-2714 . 389684) (-2715 . 389633) (-2716 . 387377)
- (-2717 . 387262) (-2718 . 387191) (-2719 . 387141) (-2720 . 386988)
- (-2721 . 386866) (-2722 . 386704) (-2723 . 386521) (-2724 . 386454)
- (-2725 . 386354) (-2726 . 386211) (-2727 . 386129) (-2728 . 385926)
- (-2729 . 385849) (-2730 . 385715) (-2731 . 385627) (-2732 . 385514)
- (-2733 . 384963) (-2734 . 384730) (-2735 . 384632) (-2736 . 384407)
- (-2737 . 384302) (-2738 . 384219) (-2739 . 384146) (-2740 . 383988)
- (-2741 . 383701) (-2742 . 383454) (-2743 . 383183) (-2744 . 383021)
- (-2745 . 382881) (-2746 . 382667) (-2747 . 382250) (-2748 . 382092)
- (-2749 . 381773) (-2750 . 381560) (-2751 . 381508) (-2752 . 381206)
- (-2753 . 381065) (-2754 . 380481) (-2755 . 380430) (-2756 . 380276)
- (-2757 . 380223) (-2758 . 380035) (-2759 . 379910) (-2760 . 379660)
- (-2761 . 379574) (-2762 . 379514) (-2763 . 379454) (-2764 . 379281)
- (-2765 . 379116) (-2766 . 378625) (-2767 . 378551) (-2768 . 378474)
- (-2769 . 378381) (-2770 . 377189) (-2771 . 377137) (-2772 . 377049)
- (-2773 . 376996) (-2774 . 376936) (-2775 . 376802) (-2776 . 376621)
- (-2777 . 375556) (-2778 . 375478) (-2779 . 375353) (-2780 . 375304)
- (-2781 . 375203) (-2782 . 374861) (-2783 . 374695) (-2784 . 373153)
- (-2785 . 373074) (-2786 . 373022) (-2787 . 372910) (-2788 . 372830)
- (-2789 . 372630) (-2790 . 372105) (-2791 . 371967) (-2792 . 371568)
- (-2793 . 371479) (-2794 . 371280) (-2795 . 371185) (-2796 . 370876)
- (-2797 . 369095) (-2798 . 369040) (-2799 . 368829) (-2800 . 368444)
- (-2801 . 368252) (-2802 . 368148) (-2803 . 368049) (-2804 . 367964)
- (-2805 . 367792) (-2806 . 367737) (-2807 . 366394) (-2808 . 366339)
- (-2809 . 366217) (-2810 . 366031) (-2811 . 365969) (-2812 . 365910)
- (-2813 . 365677) (-2814 . 365582) (-2815 . 365392) (-12 . 365220)
- (-2817 . 365062) (-2818 . 363860) (-2819 . 363758) (-2820 . 363657)
- (-2821 . 363623) (-2822 . 363499) (-2823 . 363306) (-2824 . 363166)
- (-2825 . 362982) (-2826 . 362888) (-2827 . 362577) (-2828 . 362482)
- (-2829 . 362211) (-2830 . 362159) (-2831 . 362075) (-2832 . 362005)
- (-2833 . 361950) (-2834 . 361703) (-2835 . 361508) (-2836 . 361413)
- (-2837 . 361163) (-2838 . 361105) (-2839 . 360978) (-2840 . 360146)
- (-2841 . 360072) (-2842 . 359984) (-2843 . 359757) (-2844 . 359656)
- (-2845 . 359582) (-2846 . 359499) (-2847 . 358942) (-2848 . 358559)
- (-2849 . 358527) (-2850 . 358087) (-2851 . 357721) (-2852 . 357622)
- (-2853 . 357545) (-2854 . 357438) (-2855 . 357151) (-2856 . 357041)
- (-2857 . 356594) (-2858 . 356499) (-2859 . 356362) (-2860 . 356263)
- (-2861 . 356138) (-2862 . 353976) (-2863 . 353697) (-2864 . 353351)
- (-2865 . 353265) (-2866 . 352973) (-2867 . 352800) (-2868 . 352566)
- (-2869 . 352361) (-2870 . 352290) (-2871 . 352217) (-2872 . 352162)
- (-2873 . 352095) (-2874 . 352066) (-2875 . 352014) (-2876 . 351812)
- (-2877 . 350924) (-2878 . 350870) (-2879 . 350717) (-2880 . 350594)
- (-2881 . 350332) (-2882 . 350281) (-2883 . 350144) (-2884 . 349948)
- (-2885 . 349761) (-2886 . 349673) (-2887 . 349570) (-2888 . 349443)
- (-2889 . 349391) (-2890 . 349224) (-2891 . 349154) (-2892 . 348944)
- (-2893 . 348858) (-2894 . 348755) (-2895 . 348623) (-2896 . 348549)
- (-2897 . 348469) (-2898 . 348266) (-2899 . 348163) (-2900 . 348084)
- (-2901 . 347850) (-2902 . 347097) (-2903 . 347047) (-2904 . 346568)
- (* . 342074) (-2906 . 341989) (-2907 . 341849) (-2908 . 341744)
- (-2909 . 341595) (-2910 . 341527) (-2911 . 341420) (-2912 . 341306)
- (-2913 . 341251) (-2914 . 341011) (-2915 . 340845) (-2916 . 340736)
- (-2917 . 340655) (-2918 . 340446) (-2919 . 340337) (-2920 . 340159)
- (-2921 . 340085) (-2922 . 339999) (-2923 . 339892) (-2924 . 339674)
- (-2925 . 339418) (-2926 . 339321) (-2927 . 339005) (-2928 . 338848)
- (-2929 . 338630) (-2930 . 338403) (-2931 . 338088) (-2932 . 337969)
- (-2933 . 337824) (-2934 . 337772) (-2935 . 337396) (-2936 . 337269)
- (-2937 . 337213) (-2938 . 337116) (-2939 . 337020) (-2940 . 336748)
- (-2941 . 336660) (-2942 . 336594) (-2943 . 336562) (-2944 . 336488)
- (-2945 . 336454) (-2946 . 336426) (-2947 . 336394) (-2948 . 336254)
- (-2949 . 335862) (-2950 . 335644) (-2951 . 335467) (-2952 . 335401)
- (-2953 . 335350) (-2954 . 334974) (-2955 . 334851) (-2956 . 334722)
- (-2957 . 334643) (-2958 . 334499) (-2959 . 334426) (-2960 . 334348)
- (-2961 . 334185) (-2962 . 333954) (-2963 . 333877) (-2964 . 333776)
- (-2965 . 333514) (-2966 . 333398) (-2967 . 333326) (-2968 . 332946)
- (-2969 . 332891) (-2970 . 332832) (-2971 . 332501) (-2972 . 331640)
- (-2973 . 331394) (-2974 . 331307) (-2975 . 331169) (-2976 . 331108)
- (-2977 . 326566) (-2978 . 326514) (-2979 . 326415) (-2980 . 326387)
- (-2981 . 326358) (-2982 . 326200) (-2983 . 326012) (-2984 . 325953)
- (-2985 . 325866) (-2986 . 325753) (-2987 . 325594) (-2988 . 325542)
- (-2989 . 325198) (-2990 . 325135) (-2991 . 325038) (-2992 . 324938)
- (-2993 . 324785) (-2994 . 324587) (-2995 . 324514) (-2996 . 324437)
- (-2997 . 324070) (-2998 . 323983) (-2999 . 323753) (-3000 . 323657)
- (-3001 . 322955) (-3002 . 322815) (-3003 . 322714) (-3004 . 322630)
- (-3005 . 322493) (-3006 . 322383) (-3007 . 322355) (-3008 . 322306)
- (-3009 . 322275) (-3010 . 322174) (-3011 . 321887) (-3012 . 321834)
- (-3013 . 321155) (-3014 . 321050) (-3015 . 320968) (-3016 . 320901)
- (-3017 . 320743) (-3018 . 320597) (-3019 . 320338) (-3020 . 320236)
- (-3021 . 320140) (-3022 . 320059) (-3023 . 319904) (-3024 . 319845)
- (-3025 . 319722) (-3026 . 319590) (-3027 . 319476) (-3028 . 319346)
- (-3029 . 319183) (-3030 . 318343) (-3031 . 318284) (-3032 . 318156)
- (-3033 . 318060) (-3034 . 316874) (-3035 . 316621) (-3036 . 316562)
- (-3037 . 316354) (-3038 . 316069) (-3039 . 315623) (-3040 . 315525)
- (-3041 . 315472) (-3042 . 315313) (-3043 . 315261) (-3044 . 315227)
- (-3045 . 315139) (-3046 . 315065) (-3047 . 313883) (-3048 . 313776)
- (-3049 . 313688) (-3050 . 313487) (-3051 . 313089) (-3052 . 312847)
- (-3053 . 312691) (-3054 . 312594) (-3055 . 312433) (-3056 . 312299)
- (-3057 . 312158) (-3058 . 312124) (-3059 . 311846) (-3060 . 311763)
- (-3061 . 309556) (-3062 . 309357) (-3063 . 309185) (-3064 . 309053)
- (-3065 . 308957) (-3066 . 308214) (-3067 . 308037) (-3068 . 307924)
- (-3069 . 307852) (-3070 . 307718) (-3071 . 306900) (-3072 . 306806)
- (-3073 . 306754) (-3074 . 306582) (-3075 . 306486) (-3076 . 305757)
- (-3077 . 291670) (-3078 . 291537) (-3079 . 291436) (-3080 . 291377)
- (-3081 . 291308) (-3082 . 291119) (-3083 . 290810) (-3084 . 290757)
- (-3085 . 290616) (-3086 . 290453) (-3087 . 290369) (-3088 . 290197)
- (-3089 . 289468) (-3090 . 289113) (-3091 . 289025) (-3092 . 287877)
- (-3093 . 287586) (-3094 . 283523) (-3095 . 283449) (-3096 . 283200)
- (-3097 . 283057) (-3098 . 282455) (-3099 . 282283) (-3100 . 282187)
- (-3101 . 281770) (-3102 . 281094) (-3103 . 280982) (-3104 . 280896)
- (-3105 . 280785) (-3106 . 280703) (-3107 . 280590) (-3108 . 280187)
- (-3109 . 279999) (-3110 . 279928) (-3111 . 279828) (-3112 . 279264)
- (-3113 . 279060) (-3114 . 278923) (-3115 . 278805) (-3116 . 278699)
- (-3117 . 278458) (-3118 . 278363) (-3119 . 278307) (-3120 . 278175)
- (-3121 . 278114) (-3122 . 278058) (-3123 . 277494) (-3124 . 277428)
- (-3125 . 276432) (-3126 . 276239) (-3127 . 276120) (-3128 . 275776)
- (-3129 . 275526) (-3130 . 275347) (-3131 . 275220) (-3132 . 274682)
- (-3133 . 274118) (-3134 . 270451) (-3135 . 270222) (-3136 . 270066)
- (-3137 . 269634) (-3138 . 269537) (-3139 . 269455) (-3140 . 269387)
- (-3141 . 267042) (-3142 . 266984) (-3143 . 266950) (-3144 . 266876)
- (-3145 . 266757) (-3146 . 266083) (-3147 . 265982) (-3148 . 265954)
- (-3149 . 265826) (-3150 . 265696) (-3151 . 265469) (-3152 . 265348)
- (-3153 . 265274) (-3154 . 265161) (-3155 . 265095) (-3156 . 264876)
- (-3157 . 264518) (-3158 . 264200) (-3159 . 263885) (-3160 . 263211)
- (-3161 . 262933) (-3162 . 262815) (-3163 . 262464) (-3164 . 262145)
- (-3165 . 262015) (-3166 . 261874) (-3167 . 261786) (-3168 . 261645)
- (-3169 . 261592) (-3170 . 261509) (-3171 . 261404) (-3172 . 260667)
- (-3173 . 260239) (-3174 . 259855) (-3175 . 259737) (-3176 . 259659)
- (-3177 . 259480) (-3178 . 259386) (-3179 . 258163) (-3180 . 258020)
- (-3181 . 257638) (-3182 . 257537) (-3183 . 257454) (-3184 . 257325)
- (-3185 . 256763) (-3186 . 256711) (-3187 . 256641) (-3188 . 256545)
- (-3189 . 256389) (-3190 . 256079) (-3191 . 255936) (-3192 . 255817)
- (-3193 . 255482) (-3194 . 254920) (-3195 . 254859) (-3196 . 254626)
- (-3197 . 254427) (-3198 . 254346) (-3199 . 254188) (-3200 . 254075)
- (-3201 . 254013) (-3202 . 253903) (-3203 . 253851) (-3204 . 253686)
- (-3205 . 253124) (-3206 . 252966) (-3207 . 252584) (-3208 . 252405)
- (-3209 . 252287) (-3210 . 252126) (-3211 . 252009) (-3212 . 251841)
- (-3213 . 251757) (-3214 . 251723) (-3215 . 251048) (-3216 . 250978)
- (-3217 . 250787) (-3218 . 250635) (-3219 . 250561) (-3220 . 250473)
- (-3221 . 250375) (-3222 . 250303) (-3223 . 249628) (-3224 . 249545)
- (-3225 . 248364) (-3226 . 248085) (-3227 . 248014) (-3228 . 247929)
- (-3229 . 247716) (-3230 . 247592) (-3231 . 247443) (-3232 . 247262)
- (-3233 . 247064) (-3234 . 246977) (-3235 . 246302) (-3236 . 246190)
- (-3237 . 245938) (-3238 . 245793) (-3239 . 245662) (-3240 . 245476)
- (-3241 . 245393) (-3242 . 245334) (-3243 . 245211) (-3244 . 245146)
- (-3245 . 245042) (-3246 . 244665) (-3247 . 244355) (-3248 . 243792)
- (-3249 . 243739) (-3250 . 243271) (-3251 . 242808) (-3252 . 242585)
- (-3253 . 242497) (-3254 . 242403) (-3255 . 242350) (-3256 . 242205)
- (-3257 . 241678) (-3258 . 241519) (-3259 . 240956) (-3260 . 240819)
- (-3261 . 240720) (-3262 . 240607) (-3263 . 240510) (-3264 . 239918)
- (-3265 . 239616) (-3266 . 239370) (-3267 . 238807) (-3268 . 238150)
- (-3269 . 238062) (-3270 . 238008) (-3271 . 237710) (-3272 . 237542)
- (-3273 . 237351) (-3274 . 237295) (-3275 . 237243) (-3276 . 237128)
- (-3277 . 236682) (-3278 . 236552) (-3279 . 235990) (-3280 . 235830)
- (-3281 . 235499) (-3282 . 233922) (-3283 . 233849) (-3284 . 233772)
- (-3285 . 232694) (-3286 . 232611) (-3287 . 232217) (-3288 . 232167)
- (-3289 . 231950) (-3290 . 231519) (-3291 . 230957) (-3292 . 230905)
- (-3293 . 230316) (-3294 . 230226) (-3295 . 230106) (-3296 . 229931)
- (-3297 . 229879) (-3298 . 229813) (-3299 . 229730) (-3300 . 229559)
- (-3301 . 229352) (-3302 . 228790) (-3303 . 228737) (-3304 . 228665)
- (-3305 . 228588) (-3306 . 228342) (-3307 . 228232) (-3308 . 228136)
- (-3309 . 228062) (-3310 . 227988) (-3311 . 227773) (-3312 . 227648)
- (-3313 . 227086) (-3314 . 226882) (-3315 . 226829) (-3316 . 226722)
- (-3317 . 226653) (-3318 . 226597) (-3319 . 226530) (-3320 . 226444)
- (-3321 . 226362) (-3322 . 226241) (-3323 . 225679) (-3324 . 225120)
- (-3325 . 224967) (-3326 . 224898) (-3327 . 224782) (-3328 . 224579)
- (-3329 . 224049) (-3330 . 223997) (-3331 . 223863) (-3332 . 223786)
- (-3333 . 223701) (-3334 . 223642) (-3335 . 222992) (-3336 . 222433)
- (-3337 . 222350) (-3338 . 222322) (-3339 . 221844) (-3340 . 221383)
- (-3341 . 221305) (-3342 . 221277) (-3343 . 221221) (-3344 . 221003)
- (-3345 . 220751) (-3346 . 220597) (-3347 . 220493) (-3348 . 220220)
- (-3349 . 219884) (-3350 . 219814) (-3351 . 219741) (-3352 . 219552)
- (-3353 . 219335) (-3354 . 219097) (-3355 . 218941) (-3356 . 218755)
- (-3357 . 218339) (-3358 . 218305) (-3359 . 218204) (-3360 . 218116)
- (-3361 . 217918) (-3362 . 217490) (-3363 . 217462) (-3364 . 217149)
- (-3365 . 217096) (-3366 . 217044) (-3367 . 216929) (-3368 . 216845)
- (-3369 . 216668) (-3370 . 215955) (-3371 . 215882) (-3372 . 215663)
- (-3373 . 215566) (-3374 . 215471) (-3375 . 215349) (-3376 . 215283)
- (-3377 . 214756) (-3378 . 214641) (-3379 . 214526) (-3380 . 214474)
- (-3381 . 214338) (-3382 . 214310) (-3383 . 214241) (-3384 . 214207)
- (-3385 . 214088) (-3386 . 213918) (-3387 . 213821) (-3388 . 213654)
- (-3389 . 213601) (-3390 . 213463) (-3391 . 213431) (-3392 . 213346)
- (-3393 . 213090) (-3394 . 213035) (-3395 . 212975) (-3396 . 212843)
- (-3397 . 212712) (-3398 . 212684) (-3399 . 212601) (-3400 . 212468)
- (-3401 . 212336) (-3402 . 212270) (-3403 . 212176) (-3404 . 212108)
- (-3405 . 211909) (-3406 . 211699) (-3407 . 211569) (-3408 . 211425)
- (-3409 . 211294) (-3410 . 211235) (-3411 . 211129) (-3412 . 211043)
- (-3413 . 210919) (-3414 . 210866) (-3415 . 210601) (-3416 . 210502)
- (-3417 . 210431) (-3418 . 210379) (-3419 . 210180) (-3420 . 210117)
- (-3421 . 209957) (-3422 . 209814) (-3423 . 209758) (-3424 . 209591)
- (-3425 . 209446) (-3426 . 209238) (-3427 . 209114) (-3428 . 209024)
- (-3429 . 208923) (-3430 . 208805) (-3431 . 208616) (-3432 . 208361)
- (-3433 . 208289) (-3434 . 208192) (-3435 . 207997) (-3436 . 207906)
- (-3437 . 207854) (-3438 . 207822) (-3439 . 207336) (-3440 . 207146)
- (-3441 . 207003) (-3442 . 206858) (-3443 . 206653) (-3444 . 206601)
- (-3445 . 206545) (-3446 . 206415) (-3447 . 206221) (-3448 . 206116)
- (-3449 . 205972) (-3450 . 205868) (-3451 . 205751) (-3452 . 205663)
- (-3453 . 205597) (-3454 . 205538) (-3455 . 205455) (-3456 . 205337)
- (-3457 . 205284) (-3458 . 205059) (-3459 . 204960) (-3460 . 204864)
- (-3461 . 204698) (-3462 . 204645) (-3463 . 204479) (-3464 . 204422)
- (-3465 . 204349) (-3466 . 204131) (-3467 . 203693) (-3468 . 203615)
- (-3469 . 203560) (-3470 . 203477) (-3471 . 203424) (-3472 . 203130)
- (-3473 . 202038) (-3474 . 201697) (-3475 . 200814) (-3476 . 200733)
- (-3477 . 200679) (-3478 . 200431) (-3479 . 200378) (-3480 . 200262)
- (-3481 . 200225) (-3482 . 200161) (-3483 . 199954) (-3484 . 199786)
- (-3485 . 199698) (-3486 . 199552) (-3487 . 199006) (-3488 . 198953)
- (-3489 . 198922) (-3490 . 198745) (-3491 . 198659) (-3492 . 198516)
- (-3493 . 198428) (-3494 . 198307) (-3495 . 197979) (-3496 . 197768)
- (-3497 . 197648) (-3498 . 197571) (-3499 . 197387) (-3500 . 197292)
- (-3501 . 197264) (-3502 . 197021) (-3503 . 196964) (-3504 . 196692)
- (-3505 . 196413) (-3506 . 196189) (-3507 . 196007) (-3508 . 194889)
- (-3509 . 194715) (-3510 . 194524) (-3511 . 194073) (-3512 . 193864)
- (-3513 . 193768) (-3514 . 193648) (-3515 . 193441) (-3516 . 193346)
- (-3517 . 193260) (-3518 . 193205) (-3519 . 193017) (-3520 . 192931)
- (-3521 . 192845) (-3522 . 192744) (-3523 . 192417) (-3524 . 192199)
- (-3525 . 191989) (-3526 . 191911) (-3527 . 191814) (-3528 . 191573)
- (-3529 . 191503) (-3530 . 191110) (-3531 . 190982) (-3532 . 190839)
- (-3533 . 190761) (-3534 . 190695) (-3535 . 190623) (-3536 . 190521)
- (-3537 . 190420) (-3538 . 190332) (-3539 . 190190) (-3540 . 190036)
- (-3541 . 189974) (-3542 . 189869) (-3543 . 189773) (-3544 . 189674)
- (-3545 . 189030) (-3546 . 188945) (-3547 . 188892) (-3548 . 188646)
- (-3549 . 188615) (-3550 . 188325) (-3551 . 188288) (-3552 . 188158)
- (-3553 . 188106) (-3554 . 187982) (-3555 . 187923) (-3556 . 187601)
- (-3557 . 186429) (-3558 . 186188) (-3559 . 186043) (-3560 . 185708)
- (-3561 . 185624) (-3562 . 185571) (-3563 . 185435) (-3564 . 185303)
- (-3565 . 185237) (-3566 . 184804) (-3567 . 184689) (-3568 . 184620)
- (-3569 . 184364) (-3570 . 184142) (-3571 . 183988) (-3572 . 183959)
- (-3573 . 183905) (-3574 . 183792) (-3575 . 183646) (-3576 . 182682)
- (-3577 . 181545) (-3578 . 181345) (-3579 . 181292) (-3580 . 180112)
- (-3581 . 179969) (-3582 . 179721) (-3583 . 179557) (-3584 . 179463)
- (-3585 . 179407) (-3586 . 179216) (-3587 . 178858) (-3588 . 178685)
- (-3589 . 178587) (-3590 . 178455) (-3591 . 178335) (-3592 . 178219)
- (-3593 . 178140) (-3594 . 178070) (-3595 . 178015) (-3596 . 177472)
- (-3597 . 177422) (-3598 . 177141) (-3599 . 176889) (-3600 . 176860)
- (-3601 . 176811) (-3602 . 176738) (-3603 . 176581) (-3604 . 176455)
- (-3605 . 176240) (-3606 . 175976) (-3607 . 175880) (-3608 . 175641)
- (-3609 . 175575) (-3610 . 175523) (-3611 . 175135) (-3612 . 175082)
- (-3613 . 173882) (-3614 . 173700) (-3615 . 173340) (-3616 . 173180)
- (-3617 . 173100) (-3618 . 172840) (-3619 . 172665) (-3620 . 172607)
- (-3621 . 172141) (-3622 . 172045) (-3623 . 171992) (-3624 . 171937)
- (-3625 . 171784) (-3626 . 171700) (-3627 . 171520) (-3628 . 171389)
- (-3629 . 171316) (-3630 . 170771) (-3631 . 170252) (-3632 . 169893)
- (-3633 . 169786) (-3634 . 169608) (-3635 . 169465) (-3636 . 169438)
- (-3637 . 169087) (-3638 . 168602) (-3639 . 168164) (-3640 . 168108)
- (-3641 . 168031) (-3642 . 167689) (-3643 . 167590) (-3644 . 167424)
- (-3645 . 166748) (-3646 . 166382) (-3647 . 166354) (-3648 . 166174)
- (-3649 . 166081) (-3650 . 165846) (-3651 . 165778) (-3652 . 165704)
- (-3653 . 165673) (-3654 . 165615) (-3655 . 165485) (-3656 . 165419)
- (-3657 . 165342) (-3658 . 164756) (-3659 . 164631) (-3660 . 164575)
- (-3661 . 164248) (-3662 . 164171) (-3663 . 164115) (-3664 . 164045)
- (-3665 . 163971) (-3666 . 163338) (-3667 . 163185) (-3668 . 161959)
- (-3669 . 161801) (-3670 . 161629) (-3671 . 161334) (-3672 . 161260)
- (-3673 . 161066) (-3674 . 161007) (-3675 . 160929) (-3676 . 160803)
- (-3677 . 160647) (-3678 . 160404) (-3679 . 160370) (-3680 . 160315)
- (-3681 . 160162) (-3682 . 159905) (-3683 . 159791) (-3684 . 159588)
- (-3685 . 159526) (-3686 . 159388) (-3687 . 158959) (-3688 . 158893)
- (-3689 . 158797) (-3690 . 158703) (-3691 . 158651) (-3692 . 158596)
- (-3693 . 158530) (-3694 . 158409) (-3695 . 158358) (-3696 . 158252)
- (-3697 . 157685) (-3698 . 156257) (-3699 . 156193) (-3700 . 156050)
- (-3701 . 155818) (-3702 . 155755) (-3703 . 155684) (-3704 . 155054)
- (-3705 . 154935) (-3706 . 154803) (-3707 . 154687) (-3708 . 154589)
- (-3709 . 154371) (-3710 . 154319) (-3711 . 154218) (-3712 . 154074)
- (-3713 . 153970) (-3714 . 153732) (-3715 . 152300) (-3716 . 152227)
- (-3717 . 151577) (-3718 . 151503) (-3719 . 151408) (-3720 . 151277)
- (-3721 . 151113) (-3722 . 151085) (-3723 . 150852) (-3724 . 150725)
- (-3725 . 150623) (-3726 . 150463) (-3727 . 150392) (-3728 . 150156)
- (-3729 . 149911) (-3730 . 149774) (-3731 . 149672) (-3732 . 149375)
- (-3733 . 149252) (-3734 . 149199) (-3735 . 149060) (-3736 . 148930)
- (-3737 . 148879) (-3738 . 148753) (-3739 . 148682) (-3740 . 148598)
- (-3741 . 148375) (-3742 . 148208) (-3743 . 148043) (-3744 . 147599)
- (-3745 . 147509) (-3746 . 147441) (-3747 . 147331) (-3748 . 147278)
- (-3749 . 146987) (-3750 . 146611) (-3751 . 146540) (-3752 . 146436)
- (-3753 . 146379) (-3754 . 146108) (-3755 . 146043) (-3756 . 145668)
- (-3757 . 145264) (-3758 . 145093) (-3759 . 144954) (-3760 . 144540)
- (-3761 . 144412) (-3762 . 144355) (-3763 . 144302) (-3764 . 144274)
- (-3765 . 144205) (-3766 . 143986) (-3767 . 143867) (-3768 . 143441)
- (-3769 . 143202) (-3770 . 143136) (-3771 . 143033) (-3772 . 142830)
- (-3773 . 142756) (-3774 . 142316) (-9 . 142288) (-3776 . 142185)
- (-3777 . 142030) (-3778 . 141410) (-3779 . 141337) (-3780 . 141263)
- (-3781 . 141197) (-3782 . 141095) (-3783 . 140909) (-8 . 140881)
- (-3785 . 140820) (-3786 . 140391) (-3787 . 140338) (-3788 . 140283)
- (-3789 . 140188) (-3790 . 140073) (-3791 . 139930) (-3792 . 139852)
- (-3793 . 139736) (-7 . 139708) (-3795 . 138846) (-3796 . 138716)
- (-3797 . 138599) (-3798 . 138489) (-3799 . 138420) (-3800 . 137603)
- (-3801 . 137510) (-3802 . 137430) (-3803 . 137241) (-3804 . 136752)
- (-3805 . 136654) (-3806 . 136182) (-3807 . 135957) (-3808 . 135646)
- (-3809 . 135470) (-3810 . 135285) (-3811 . 134941) (-3812 . 134682)
- (-3813 . 134603) (-3814 . 134566) (-3815 . 134492) (-3816 . 134426)
- (-3817 . 134000) (-3818 . 133518) (-3819 . 133450) (-3820 . 133383)
- (-3821 . 133280) (-3822 . 132605) (-3823 . 132389) (-3824 . 132291)
- (-3825 . 132137) (-3826 . 131982) (-3827 . 131794) (-3828 . 131724)
- (-3829 . 131583) (-3830 . 131531) (-3831 . 131264) (-3832 . 131092)
- (-3833 . 130939) (-3834 . 130375) (-3835 . 130216) (-3836 . 130160)
- (-3837 . 130126) (-3838 . 129891) (-3839 . 129750) (-3840 . 129672)
- (-3841 . 129547) (-3842 . 129418) (-3843 . 128888) (-3844 . 128486)
- (-3845 . 128434) (-3846 . 128377) (-3847 . 128245) (-3848 . 128129)
- (-3849 . 127958) (-3850 . 127281) (-3851 . 127227) (-3852 . 127002)
- (-3853 . 126905) (-3854 . 126738) (-3855 . 126643) (-3856 . 126263)
- (-3857 . 126128) (-3858 . 126077) (-3859 . 125989) (-3860 . 125588)
- (-3861 . 125213) (-3862 . 124933) (-3863 . 124641) (-3864 . 124567)
- (-3865 . 124485) (-3866 . 124283) (-3867 . 124212) (-3868 . 123701)
- (-3869 . 123274) (-3870 . 123105) (-3871 . 123027) (-3872 . 122975)
- (-3873 . 122442) (-3874 . 121138) (-3875 . 120996) (-3876 . 120645)
- (-3877 . 120588) (-3878 . 120507) (-3879 . 120382) (-3880 . 120224)
- (-3881 . 119816) (-3882 . 119555) (-3883 . 119475) (-3884 . 119247)
- (-3885 . 119190) (-3886 . 119083) (-3887 . 118937) (-3888 . 118864)
- (-3889 . 118572) (-3890 . 118481) (-3891 . 118338) (-3892 . 118236)
- (-3893 . 118163) (-3894 . 118083) (-3895 . 117756) (-3896 . 117671)
- (-3897 . 117591) (-3898 . 117493) (-3899 . 117425) (-3900 . 117330)
- (-3901 . 117055) (-3902 . 116997) (-3903 . 116969) (-3904 . 116814)
- (-3905 . 116673) (-3906 . 116575) (-3907 . 116522) (-3908 . 116409)
- (-3909 . 116302) (-3910 . 116210) (-3911 . 116145) (-3912 . 115974)
- (-3913 . 115851) (-3914 . 115748) (-3915 . 115676) (-3916 . 115592)
- (-3917 . 115499) (-3918 . 115266) (-3919 . 115148) (-3920 . 114227)
- (-3921 . 114157) (-3922 . 114106) (-3923 . 114051) (-3924 . 113741)
- (-3925 . 113657) (-3926 . 112784) (-3927 . 112697) (-3928 . 110840)
- (-3929 . 110465) (-3930 . 110381) (-3931 . 110247) (-3932 . 110132)
- (-3933 . 109952) (-3934 . 109900) (-3935 . 109801) (-3936 . 109708)
- (-3937 . 109493) (-3938 . 109399) (-3939 . 109331) (-3940 . 109193)
- (-3941 . 109063) (-3942 . 109004) (-3943 . 108810) (-3944 . 108758)
- (-3945 . 108459) (-3946 . 108378) (-3947 . 108315) (-3948 . 108030)
- (-3949 . 107435) (-3950 . 106734) (-3951 . 106505) (-3952 . 106211)
- (-3953 . 105878) (-3954 . 105740) (-3955 . 105455) (-3956 . 105350)
- (-3957 . 105225) (-3958 . 104738) (-3959 . 104628) (-3960 . 104533)
- (-3961 . 104388) (-3962 . 104316) (-3963 . 104287) (-3964 . 104134)
- (-3965 . 104057) (-3966 . 103740) (-3967 . 103563) (-3968 . 103042)
- (-3969 . 102946) (-3970 . 102894) (-3971 . 102837) (-3972 . 102127)
- (-3973 . 102075) (-3974 . 101895) (-3975 . 101818) (-3976 . 101451)
- (-3977 . 101347) (-3978 . 101167) (-3979 . 100936) (-3980 . 100557)
- (-3981 . 100529) (-3982 . 100457) (-3983 . 100193) (-3984 . 100099)
- (-3985 . 100025) (-3986 . 99966) (-3987 . 99853) (-3988 . 99776)
- (-3989 . 99698) (-3990 . 99624) (-3991 . 99312) (-3992 . 97198)
- (-3993 . 97114) (-3994 . 97024) (-3995 . 96964) (-3996 . 96746)
- (-3997 . 96718) (-3998 . 96627) (-3999 . 96469) (-4000 . 96328)
- (-4001 . 96270) (-4002 . 95879) (-4003 . 95779) (-4004 . 95700)
- (-4005 . 95558) (-4006 . 95463) (-4007 . 95298) (-4008 . 95269)
- (-4009 . 95174) (-4010 . 95070) (-4011 . 94436) (-4012 . 94345)
- (-4013 . 94127) (-4014 . 93903) (-4015 . 93684) (-4016 . 93616)
- (-4017 . 93459) (-4018 . 93301) (-4019 . 93246) (-4020 . 93048)
- (-4021 . 92949) (-4022 . 92843) (-4023 . 92742) (-4024 . 92264)
- (-4025 . 91260) (-4026 . 91162) (-4027 . 91068) (-4028 . 90877)
- (-4029 . 90738) (-4030 . 90025) (-4031 . 89865) (-4032 . 89689)
- (-4033 . 89570) (-4034 . 89410) (-4035 . 89265) (-4036 . 89013)
- (-4037 . 88683) (-4038 . 88431) (-4039 . 88250) (-4040 . 88040)
- (-4041 . 88012) (-4042 . 87904) (-4043 . 87731) (-4044 . 87492)
- (-4045 . 87206) (-4046 . 87153) (-4047 . 87076) (-4048 . 86682)
- (-4049 . 86601) (-4050 . 86528) (-4051 . 86404) (-4052 . 86336)
- (-4053 . 86221) (-4054 . 86002) (-4055 . 85821) (-4056 . 85719)
- (-4057 . 85637) (-4058 . 85609) (-4059 . 85516) (-4060 . 85445)
- (-4061 . 85270) (-4062 . 84657) (-4063 . 84604) (-4064 . 84531)
- (-4065 . 84285) (-4066 . 83257) (-4067 . 82646) (-4068 . 82576)
- (-4069 . 82495) (-4070 . 82399) (-4071 . 82040) (-4072 . 81793)
- (-4073 . 81710) (-4074 . 81458) (-4075 . 81375) (-4076 . 80948)
- (-4077 . 80466) (-4078 . 80394) (-4079 . 80085) (-4080 . 79713)
- (-4081 . 79520) (-4082 . 79428) (-4083 . 79310) (-4084 . 79248)
- (-4085 . 78933) (-4086 . 78829) (-4087 . 78755) (-4088 . 78681)
- (-4089 . 78505) (-4090 . 78258) (-4091 . 78044) (-4092 . 77958)
- (-4093 . 77859) (-4094 . 77628) (-4095 . 77555) (-4096 . 77456)
- (-4097 . 77404) (-4098 . 77350) (-4099 . 77117) (-4100 . 76995)
- (-4101 . 76809) (-4102 . 76624) (-4103 . 76419) (-4104 . 76311)
- (-4105 . 75941) (-4106 . 75695) (-4107 . 75551) (-4108 . 75502)
- (-4109 . 75407) (-4110 . 75260) (-4111 . 75113) (-4112 . 75047)
- (-4113 . 74913) (-4114 . 74769) (-4115 . 74609) (-4116 . 74527)
- (-4117 . 67584) (-4118 . 67528) (-4119 . 67213) (-4120 . 67076)
- (-4121 . 67009) (-4122 . 66870) (-4123 . 66749) (-4124 . 66693)
- (-4125 . 66619) (-4126 . 66575) (-4127 . 66302) (-4128 . 66228)
- (-4129 . 66132) (-4130 . 66006) (-4131 . 65199) (-4132 . 65122)
- (-4133 . 65048) (-4134 . 64796) (-4135 . 64681) (-4136 . 64579)
- (-4137 . 64264) (-4138 . 64046) (-4139 . 63968) (-4140 . 63850)
- (-4141 . 63749) (-4142 . 63661) (-4143 . 63568) (-4144 . 63406)
- (-4145 . 63302) (-4146 . 63050) (-4147 . 62390) (-4148 . 62258)
- (-4149 . 62163) (-4150 . 62060) (-4151 . 61803) (-4152 . 61695)
- (-4153 . 60893) (-4154 . 59926) (-4155 . 59780) (-4156 . 59639)
- (-4157 . 59587) (-4158 . 59464) (-4159 . 59378) (-4160 . 59295)
- (-4161 . 59177) (-4162 . 59061) (-4163 . 58886) (-4164 . 58561)
- (-4165 . 58394) (-4166 . 57986) (-4167 . 57679) (-4168 . 57630)
- (-4169 . 57564) (-4170 . 57049) (-4171 . 56941) (-4172 . 56813)
- (-4173 . 56763) (-4174 . 56315) (-4175 . 56197) (-4176 . 56030)
- (-4177 . 55911) (-4178 . 55801) (-4179 . 55643) (-4180 . 54779)
- (-4181 . 54661) (-4182 . 54548) (-4183 . 54462) (-4184 . 54301)
- (-4185 . 54164) (-4186 . 53677) (-4187 . 53573) (-4188 . 53523)
- (-4189 . 53444) (-4190 . 53372) (-4191 . 53316) (-4192 . 53227)
- (-4193 . 53120) (-4194 . 52815) (-4195 . 52672) (-4196 . 52487)
- (-4197 . 52233) (-4198 . 51800) (-4199 . 51705) (-4200 . 51577)
- (-4201 . 51433) (-4202 . 51127) (-4203 . 51008) (-4204 . 50658)
- (-4205 . 50084) (-4206 . 50001) (-4207 . 48223) (-4208 . 48077)
- (-4209 . 47683) (-4210 . 47631) (-4211 . 47468) (-4212 . 47218)
- (-4213 . 47166) (-4214 . 47024) (-4215 . 46728) (-4216 . 46618)
- (-4217 . 46549) (-4218 . 46252) (-4219 . 46200) (-4220 . 46117)
- (-4221 . 45980) (-4222 . 45913) (-4223 . 45785) (-4224 . 45729)
- (-4225 . 45643) (-4226 . 45460) (-4227 . 45377) (-4228 . 45274)
- (-4229 . 45166) (-4230 . 45062) (-4231 . 44882) (-4232 . 44741)
- (-4233 . 44645) (-4234 . 44573) (-4235 . 44490) (-4236 . 44038)
- (-4237 . 43788) (-4238 . 43625) (-4239 . 43508) (-4240 . 43356)
- (-4241 . 43300) (-4242 . 43176) (-4243 . 42832) (-4244 . 42631)
- (-4245 . 42561) (-4246 . 42359) (-4247 . 42269) (-4248 . 41674)
- (-4249 . 41514) (-4250 . 40252) (-4251 . 40193) (-4252 . 40140)
- (-4253 . 39683) (-4254 . 39561) (-4255 . 39339) (-4256 . 39239)
- (-4257 . 38469) (-4258 . 38412) (-4259 . 38334) (-4260 . 37807)
- (-4261 . 37724) (-4262 . 37624) (-4263 . 37572) (-4264 . 37492)
- (-4265 . 35077) (-4266 . 34911) (-4267 . 34851) (-4268 . 34695)
- (-4269 . 34635) (-4270 . 34511) (-4271 . 34403) (-4272 . 34371)
- (-4273 . 33617) (-4274 . 33330) (-4275 . 33127) (-4276 . 32869)
- (-4277 . 32803) (-4278 . 32751) (-4279 . 32598) (-4280 . 32518)
- (-4281 . 32390) (-4282 . 32052) (-4283 . 31983) (-4284 . 31887)
- (-4285 . 31369) (-4286 . 31051) (-4287 . 30923) (-4288 . 30683)
- (-4289 . 30655) (-4290 . 30493) (-4291 . 30465) (-4292 . 30341)
- (-4293 . 30070) (-4294 . 29971) (-4295 . 29797) (-4296 . 29725)
- (-4297 . 29644) (-4298 . 28346) (-4299 . 28214) (-4300 . 28145)
- (-4301 . 27764) (-4302 . 27421) (-4303 . 27389) (-4304 . 27321)
- (-4305 . 27017) (-4306 . 26966) (-4307 . 26539) (-4308 . 26383)
- (-4309 . 26326) (-4310 . 26190) (-4311 . 25964) (-4312 . 25540)
- (-4313 . 25439) (-4314 . 25344) (-4315 . 25157) (-4316 . 24947)
- (-4317 . 24847) (-4318 . 24577) (-4319 . 24318) (-4320 . 23679)
- (-4321 . 23582) (-4322 . 23427) (-4323 . 23294) (-4324 . 23210)
- (-4325 . 23157) (-4326 . 23021) (-4327 . 22906) (-4328 . 22783)
- (-4329 . 22623) (-4330 . 21865) (-4331 . 21707) (-4332 . 21574)
- (-4333 . 21403) (-4334 . 21233) (-4335 . 20695) (-4336 . 20617)
- (-4337 . 20539) (-4338 . 20484) (-4339 . 20315) (-4340 . 20260)
- (-4341 . 20008) (-4342 . 19955) (-4343 . 19794) (-4344 . 19655)
- (-4345 . 19209) (-4346 . 19039) (-4347 . 18812) (-4348 . 18677)
- (-4349 . 18627) (-4350 . 17785) (-4351 . 17493) (-4352 . 17397)
- (-4353 . 16893) (-4354 . 16864) (-4355 . 16702) (-4356 . 16603)
- (-4357 . 16265) (-4358 . 16107) (-4359 . 16013) (-4360 . 15934)
- (-4361 . 15827) (-4362 . 12218) (-4363 . 12088) (-4364 . 11987)
- (-4365 . 11899) (-4366 . 11459) (-4367 . 10924) (-4368 . 10586)
- (-4369 . 10431) (-4370 . 9985) (-4371 . 9705) (-4372 . 9587)
- (-4373 . 9456) (-4374 . 9115) (-4375 . 8298) (-4376 . 8220)
- (-4377 . 7888) (-4378 . 7763) (-4379 . 7556) (-4380 . 7524)
- (-4381 . 7292) (-4382 . 7124) (-4383 . 7071) (-4384 . 6978)
- (-4385 . 6732) (-4386 . 1564) (-4387 . 1437) (-4388 . 1313)
- (-4389 . 1218) (-4390 . 937) (-4391 . 814) (-4392 . 726) (-4393 . 622)
- (-4394 . 570) (-4395 . 514) (-4396 . 127) (-4397 . 30)) \ No newline at end of file
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1175)) (|:| |fn| (-317 (-225)))
+ (|:| -2498 (-1093 (-843 (-225)))) (|:| |abserr| (-225))
+ (|:| |relerr| (-225))))
+ (-5 *2 (-381)) (-5 *1 (-192)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-644 (-281))) (-5 *1 (-281))))
+ ((*1 *2 *1) (-12 (-5 *2 (-644 (-1180))) (-5 *1 (-1180)))))
+(((*1 *2 *3 *3 *4 *5 *5 *5 *5 *3)
+ (-12 (-5 *3 (-566)) (-5 *4 (-1157)) (-5 *5 (-689 (-225)))
+ (-5 *2 (-1035)) (-5 *1 (-747)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-905 *4)) (-4 *4 (-1099)) (-5 *2 (-644 (-771)))
+ (-5 *1 (-904 *4)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-644 (-264))) (-5 *4 (-1175)) (-5 *2 (-112))
+ (-5 *1 (-264)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |xinit| (-225)) (|:| |xend| (-225))
+ (|:| |fn| (-1264 (-317 (-225)))) (|:| |yinit| (-644 (-225)))
+ (|:| |intvals| (-644 (-225))) (|:| |g| (-317 (-225)))
+ (|:| |abserr| (-225)) (|:| |relerr| (-225))))
+ (-5 *2 (-381)) (-5 *1 (-205)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-687 *2 *3 *4)) (-4 *2 (-1049)) (-4 *3 (-375 *2))
+ (-4 *4 (-375 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-370)) (-5 *2 (-921))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1264 *4)) (-4 *4 (-351)) (-5 *2 (-921))
+ (-5 *1 (-530 *4)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-852 *2)) (-4 *2 (-1049)) (-4 *2 (-365)))))
+(((*1 *2 *1) (-12 (-4 *1 (-835 *3)) (-4 *3 (-1099)) (-5 *2 (-55)))))
+((-1297 . 732150) (-1298 . 732076) (-1299 . 731932) (-1300 . 731829)
+ (-1301 . 731537) (-1302 . 731439) (-1303 . 731335) (-1304 . 731203)
+ (-1305 . 731075) (-1306 . 730865) (-1307 . 730779) (-1308 . 730650)
+ (-1309 . 730562) (-1310 . 730425) (-1311 . 730321) (-1312 . 730225)
+ (-1313 . 730054) (-1314 . 730017) (-1315 . 729951) (-1316 . 729923)
+ (-1317 . 729791) (-1318 . 729476) (-1319 . 729275) (-1320 . 729214)
+ (-1321 . 729056) (-1322 . 728818) (-1323 . 728314) (-1324 . 728199)
+ (-1325 . 727986) (-1326 . 727892) (-1327 . 727827) (-1328 . 727753)
+ (-1329 . 727645) (-1330 . 727247) (-1331 . 727195) (-1332 . 726813)
+ (-1333 . 725381) (-1334 . 725219) (-1335 . 725100) (-1336 . 725032)
+ (-1337 . 724880) (-1338 . 724594) (-1339 . 724514) (-1340 . 724426)
+ (-1341 . 724184) (-1342 . 724080) (-1343 . 724007) (-1344 . 723734)
+ (-1345 . 723635) (-1346 . 723413) (-1347 . 723214) (-1348 . 722855)
+ (-1349 . 722652) (-1350 . 722599) (-1351 . 721632) (-1352 . 721425)
+ (-1353 . 721318) (-1354 . 721162) (-1355 . 721024) (-1356 . 720374)
+ (-1357 . 720216) (-1358 . 720143) (-1359 . 719933) (-1360 . 719808)
+ (-1361 . 719705) (-1362 . 719628) (-1363 . 719461) (-1364 . 719364)
+ (-1365 . 719314) (-1366 . 719177) (-1367 . 719103) (-1368 . 719009)
+ (-1369 . 718932) (-1370 . 718336) (-1371 . 718264) (-1372 . 718134)
+ (-1373 . 718055) (-1374 . 717974) (-1375 . 717807) (-1376 . 717646)
+ (-1377 . 717328) (-1378 . 717233) (-1379 . 716994) (-1380 . 716915)
+ (-1381 . 716820) (-1382 . 716639) (-1383 . 716495) (-1384 . 716261)
+ (-1385 . 716188) (-1386 . 715701) (-1387 . 715567) (-1388 . 715409)
+ (-1389 . 715278) (-1390 . 715138) (-1391 . 715031) (-1392 . 714868)
+ (-1393 . 714737) (-1394 . 714453) (-1395 . 714329) (-1396 . 713576)
+ (-1397 . 713412) (-1398 . 712820) (-1399 . 712679) (-1400 . 712505)
+ (-1401 . 712085) (-1402 . 711932) (-1403 . 711802) (-1404 . 711381)
+ (-1405 . 711313) (-1406 . 711207) (-1407 . 711130) (-1408 . 711080)
+ (-1409 . 710981) (-1410 . 710843) (-1411 . 710376) (-1412 . 710293)
+ (-1413 . 709957) (-1414 . 709838) (-1415 . 709810) (-1416 . 709709)
+ (-1417 . 709594) (-1418 . 709511) (-1419 . 709123) (-1420 . 709037)
+ (-1421 . 708968) (-1422 . 708489) (-1423 . 708369) (-1424 . 708059)
+ (-1425 . 707949) (-1426 . 707750) (-1427 . 707517) (-1428 . 707464)
+ (-1429 . 707376) (-1430 . 707304) (-1431 . 707180) (-1432 . 707103)
+ (-1433 . 707018) (-1434 . 706799) (-1435 . 706589) (-1436 . 706432)
+ (-1437 . 706336) (-1438 . 706255) (-1439 . 706128) (-1440 . 705688)
+ (-1441 . 704260) (-1442 . 704148) (-1443 . 704006) (-1444 . 703926)
+ (-1445 . 703745) (-1446 . 703692) (-1447 . 703552) (** . 700487)
+ (-1449 . 700435) (-1450 . 699692) (-1451 . 699590) (-1452 . 699519)
+ (-1453 . 698984) (-1454 . 698799) (-1455 . 698534) (-1456 . 698238)
+ (-1457 . 698133) (-1458 . 698031) (-1459 . 697901) (-1460 . 697807)
+ (-1461 . 697630) (-1462 . 697470) (-1463 . 697351) (-1464 . 697196)
+ (-1465 . 697094) (-1466 . 696995) (-1467 . 696943) (-1468 . 696794)
+ (-1469 . 696701) (-1470 . 696648) (-1471 . 696524) (-1472 . 696452)
+ (-1473 . 696381) (-1474 . 696199) (-1475 . 695753) (-1476 . 695700)
+ (-1477 . 695600) (-1478 . 695529) (-1479 . 695461) (-1480 . 695390)
+ (-1481 . 695256) (-1482 . 695098) (-1483 . 694862) (-1484 . 694830)
+ (-1485 . 694550) (-1486 . 694432) (-1487 . 694256) (-1488 . 694204)
+ (-1489 . 694025) (-1490 . 693911) (-1491 . 693736) (-1492 . 693652)
+ (-1493 . 693579) (-1494 . 693505) (-1495 . 692687) (-1496 . 692507)
+ (-1497 . 692262) (-1498 . 692144) (-1499 . 691835) (-1500 . 691782)
+ (-1501 . 691583) (-1502 . 691490) (-1503 . 691437) (-1504 . 691382)
+ (-1505 . 690809) (-1506 . 690715) (-1507 . 690578) (-1508 . 690510)
+ (-1509 . 690379) (-1510 . 690320) (-1511 . 690071) (-1512 . 690008)
+ (-1513 . 689840) (-1514 . 689767) (-1515 . 689527) (-1516 . 689477)
+ (-1517 . 689375) (-1518 . 689323) (-1519 . 689235) (-1520 . 689201)
+ (-1521 . 688860) (-1522 . 688700) (-1523 . 688562) (-1524 . 688491)
+ (-1525 . 686264) (-1526 . 686098) (-1527 . 685852) (-1528 . 685699)
+ (-1529 . 685603) (-1530 . 685306) (-1531 . 685236) (-1532 . 684419)
+ (-1533 . 684171) (-1534 . 684112) (-1535 . 683969) (-1536 . 682941)
+ (-1537 . 682860) (-1538 . 682485) (-1539 . 682234) (-1540 . 682101)
+ (-1541 . 681953) (-1542 . 681830) (-1543 . 681752) (-1544 . 681670)
+ (-1545 . 681561) (-1546 . 681446) (-1547 . 681279) (-1548 . 681054)
+ (-1549 . 680984) (-1550 . 680775) (-1551 . 680674) (-1552 . 680107)
+ (-1553 . 680054) (-1554 . 679870) (-1555 . 679538) (-1556 . 679151)
+ (-1557 . 679006) (-1558 . 678653) (-1559 . 678544) (-1560 . 678463)
+ (-1561 . 678368) (-1562 . 678239) (-1563 . 678180) (-1564 . 677878)
+ (-1565 . 677739) (-1566 . 677614) (-1567 . 676772) (-1568 . 676341)
+ (-1569 . 676114) (-1570 . 675906) (-1571 . 675793) (-1572 . 675615)
+ (-1573 . 675519) (-1574 . 675450) (-1575 . 674584) (-1576 . 674441)
+ (-1577 . 672711) (-1578 . 672581) (-1579 . 672374) (-1580 . 668765)
+ (-1581 . 668583) (-1582 . 668298) (-1583 . 668174) (-1584 . 667815)
+ (-1585 . 667741) (-1586 . 667552) (-1587 . 667400) (-1588 . 667242)
+ (-1589 . 667023) (-1590 . 666972) (-1591 . 666940) (-1592 . 666788)
+ (-1593 . 666675) (-1594 . 666596) (-1595 . 666506) (-1596 . 666420)
+ (-1597 . 666173) (-1598 . 665812) (-1599 . 665266) (-1600 . 665213)
+ (-1601 . 665104) (-1602 . 664978) (-1603 . 664746) (-1604 . 664647)
+ (-1605 . 664523) (-1606 . 664422) (-1607 . 664339) (-1608 . 664121)
+ (-1609 . 664019) (-1610 . 663796) (-1611 . 663724) (-1612 . 663583)
+ (-1613 . 663511) (-1614 . 663440) (-1615 . 663272) (-1616 . 663243)
+ (-1617 . 663142) (-1618 . 662492) (-1619 . 662374) (-1620 . 662278)
+ (-1621 . 662026) (-1622 . 661770) (-1623 . 661663) (-1624 . 661440)
+ (-1625 . 661277) (-1626 . 660951) (-1627 . 660622) (-1628 . 660569)
+ (-1629 . 660506) (-1630 . 660310) (-1631 . 660212) (-1632 . 660023)
+ (-1633 . 659940) (-1634 . 659624) (-1635 . 659446) (-1636 . 659344)
+ (-1637 . 659260) (-1638 . 659118) (-1639 . 658951) (-1640 . 658215)
+ (-1641 . 658122) (-1642 . 658036) (-1643 . 657194) (-1644 . 656939)
+ (-1645 . 656782) (-1646 . 656300) (-1647 . 655903) (-1648 . 655829)
+ (-1649 . 655714) (-1650 . 655359) (-1651 . 655194) (-1652 . 654989)
+ (-1653 . 654743) (-1654 . 654598) (-1655 . 654461) (-1656 . 654282)
+ (-1657 . 654210) (-1658 . 653992) (-1659 . 653920) (-1660 . 653810)
+ (-1661 . 653651) (-1662 . 653481) (-1663 . 653393) (-1664 . 652949)
+ (-1665 . 652866) (-1666 . 652739) (-1667 . 652629) (-1668 . 652406)
+ (-1669 . 652309) (-1670 . 652000) (-1671 . 651773) (-1672 . 651663)
+ (-1673 . 651568) (-1674 . 651497) (-1675 . 651407) (-1676 . 650259)
+ (-1677 . 650118) (-1678 . 650017) (-1679 . 649893) (-1680 . 649540)
+ (-1681 . 649457) (-1682 . 649262) (-1683 . 648890) (-1684 . 648575)
+ (-1685 . 648523) (-1686 . 648368) (-1687 . 648077) (-1688 . 648017)
+ (-1689 . 647949) (-1690 . 647854) (-1691 . 647696) (-1692 . 647608)
+ (-1693 . 647517) (-1694 . 646929) (-1695 . 646784) (-1696 . 646591)
+ (-1697 . 646517) (-1698 . 645931) (-1699 . 645821) (-1700 . 645525)
+ (-1701 . 645411) (-1702 . 645130) (-1703 . 644984) (-1704 . 644932)
+ (-1705 . 644599) (-1706 . 644507) (-1707 . 644455) (-1708 . 644373)
+ (-1709 . 644290) (-1710 . 644204) (-1711 . 644061) (-1712 . 644008)
+ (-1713 . 643849) (-1714 . 643726) (-1715 . 643431) (-1716 . 643325)
+ (-1717 . 643105) (-1718 . 643073) (-1719 . 642955) (-1720 . 642579)
+ (-1721 . 642255) (-1722 . 641653) (-1723 . 641322) (-1724 . 640946)
+ (-1725 . 640582) (-1726 . 640494) (-1727 . 640304) (-1728 . 640200)
+ (-1729 . 640073) (-1730 . 639758) (-1731 . 639656) (-1732 . 639589)
+ (-1733 . 639450) (-1734 . 639354) (-1735 . 639258) (-1736 . 638504)
+ (-1737 . 638433) (-1738 . 638329) (-1739 . 638199) (-1740 . 637805)
+ (-1741 . 637662) (-1742 . 637544) (-1743 . 637488) (-1744 . 637384)
+ (-1745 . 637244) (-1746 . 637165) (-1747 . 637046) (-1748 . 636629)
+ (-1749 . 636525) (-1750 . 636410) (-1751 . 636358) (-1752 . 636306)
+ (-1753 . 636278) (-1754 . 635993) (-1755 . 635848) (-1756 . 635774)
+ (-1757 . 635678) (-1758 . 635499) (-1759 . 635392) (-1760 . 635280)
+ (-1761 . 635228) (-1762 . 635171) (-1763 . 635115) (-1764 . 634986)
+ (-1765 . 634781) (-1766 . 634561) (-1767 . 634487) (-1768 . 634399)
+ (-1769 . 634181) (-1770 . 633986) (-1771 . 633715) (-1772 . 633603)
+ (-1773 . 633428) (-1774 . 633041) (-1775 . 632900) (-1776 . 632848)
+ (-1777 . 632670) (-1778 . 632494) (-1779 . 632428) (-1780 . 632351)
+ (-1781 . 632300) (-1782 . 632202) (-1783 . 632137) (-1784 . 631748)
+ (-1785 . 631651) (-1786 . 631478) (-1787 . 631357) (-1788 . 631301)
+ (-1789 . 631054) (-1790 . 631022) (-1791 . 630920) (-1792 . 630729)
+ (-1793 . 630353) (-1794 . 630172) (-1795 . 630099) (-1796 . 629934)
+ (-1797 . 629559) (-1798 . 629349) (-1799 . 629289) (-1800 . 629159)
+ (-1801 . 629125) (-1802 . 628911) (-1803 . 628788) (-1804 . 628587)
+ (-1805 . 628535) (-1806 . 628131) (-1807 . 628015) (-1808 . 627864)
+ (-1809 . 627802) (-1810 . 627774) (-1811 . 627688) (-1812 . 627498)
+ (-1813 . 627369) (-1814 . 627007) (-1815 . 626503) (-1816 . 626332)
+ (-1817 . 626279) (-1818 . 626180) (-1819 . 626096) (-1820 . 626040)
+ (-1821 . 625842) (-1822 . 625810) (-1823 . 625579) (-1824 . 624763)
+ (-1825 . 624684) (-1826 . 624627) (-1827 . 624509) (-1828 . 624370)
+ (-1829 . 624217) (-1830 . 623998) (-1831 . 623919) (-1832 . 623852)
+ (-1833 . 623779) (-1834 . 623639) (-1835 . 623495) (-1836 . 623164)
+ (-1837 . 623105) (-1838 . 622958) (-1839 . 622544) (-1840 . 622417)
+ (-1841 . 622319) (-1842 . 622233) (-1843 . 621841) (-1844 . 621742)
+ (-1845 . 621596) (-1846 . 621416) (-1847 . 621343) (-1848 . 621261)
+ (-1849 . 621211) (-1850 . 621103) (-1851 . 620866) (-1852 . 620814)
+ (-1853 . 620596) (-1854 . 620499) (-1855 . 620421) (-1856 . 620162)
+ (-1857 . 620106) (-1858 . 619941) (-1859 . 619820) (-1860 . 619606)
+ (-1861 . 619429) (-1862 . 619375) (-1863 . 619320) (-1864 . 618927)
+ (-1865 . 618850) (-1866 . 618773) (-1867 . 613435) (-1868 . 613286)
+ (-1869 . 613133) (-1870 . 612915) (-1871 . 612682) (-1872 . 612616)
+ (-1873 . 612499) (-1874 . 612346) (-1875 . 612245) (-1876 . 611607)
+ (-1877 . 611424) (-1878 . 611082) (-1879 . 610983) (-1880 . 610899)
+ (-1881 . 610830) (-1882 . 610714) (-1883 . 610281) (-1884 . 610171)
+ (-1885 . 610137) (-1886 . 609971) (-1887 . 609750) (-1888 . 609655)
+ (-1889 . 609539) (-1890 . 609228) (-1891 . 609132) (-1892 . 609013)
+ (-1893 . 608941) (-1894 . 608575) (-1895 . 608275) (-1896 . 607751)
+ (-1897 . 607691) (-1898 . 607161) (-1899 . 607066) (-1900 . 607014)
+ (-1901 . 606944) (-1902 . 606815) (-1903 . 603974) (-1904 . 603594)
+ (-1905 . 602148) (-1906 . 602120) (-1907 . 602012) (-1908 . 601960)
+ (-1909 . 601768) (-1910 . 601711) (-1911 . 601440) (-1912 . 601377)
+ (-1913 . 601322) (-1914 . 601203) (-1915 . 601023) (-1916 . 600917)
+ (-1917 . 600798) (-1918 . 600707) (-1919 . 600573) (-1920 . 599863)
+ (-1921 . 599779) (-1922 . 599720) (-1923 . 599623) (-1924 . 599529)
+ (-1925 . 599436) (-1926 . 599408) (-1927 . 599336) (-1928 . 599219)
+ (-1929 . 599139) (-1930 . 599080) (-1931 . 599003) (-1932 . 598933)
+ (-1933 . 598881) (-1934 . 598550) (-1935 . 598478) (-1936 . 598243)
+ (-1937 . 598155) (-1938 . 597993) (-1939 . 597809) (-1940 . 597724)
+ (-1941 . 597647) (-1942 . 597467) (-1943 . 597412) (-1944 . 597166)
+ (-1945 . 596888) (-1946 . 596822) (-1947 . 596754) (-1948 . 596687)
+ (-1949 . 596659) (-1950 . 596571) (-1951 . 596455) (-1952 . 596396)
+ (-1953 . 596149) (-1954 . 595782) (-1955 . 595514) (-1956 . 595376)
+ (-1957 . 595319) (-1958 . 595245) (-1959 . 595097) (-1960 . 594973)
+ (-1961 . 594692) (-1962 . 594609) (-1963 . 594509) (-1964 . 594314)
+ (-1965 . 594210) (-1966 . 593964) (-1967 . 593903) (-1968 . 593872)
+ (-1969 . 593819) (-1970 . 593548) (-1971 . 593492) (-1972 . 593464)
+ (-1973 . 593376) (-1974 . 593281) (-1975 . 593101) (-1976 . 592939)
+ (-1977 . 592840) (-1978 . 592727) (-1979 . 592597) (-1980 . 592541)
+ (-1981 . 592442) (-1982 . 592342) (-1983 . 592213) (-1984 . 591735)
+ (-1985 . 591485) (-1986 . 591254) (-1987 . 590697) (-1988 . 590603)
+ (-1989 . 590575) (-1990 . 590509) (-1991 . 590088) (-1992 . 589914)
+ (-1993 . 589756) (-1994 . 589687) (-1995 . 589226) (-1996 . 589168)
+ (-1997 . 588789) (-1998 . 588737) (-1999 . 588610) (-2000 . 588515)
+ (-2001 . 588486) (-2002 . 588218) (-2003 . 588141) (-2004 . 588069)
+ (-2005 . 587985) (-2006 . 587932) (-2007 . 587854) (-2008 . 587826)
+ (-2009 . 587699) (-2010 . 587539) (-2011 . 587381) (-2012 . 586646)
+ (-2013 . 586440) (-2014 . 585854) (-2015 . 585773) (-2016 . 585628)
+ (-2017 . 585549) (-2018 . 585493) (-2019 . 585421) (-2020 . 585347)
+ (-2021 . 584917) (-2022 . 584729) (-2023 . 584652) (-2024 . 584527)
+ (-2025 . 583229) (-2026 . 583127) (-2027 . 582996) (-2028 . 582778)
+ (-2029 . 582684) (-2030 . 582596) (-2031 . 582332) (-2032 . 582280)
+ (-2033 . 582221) (-2034 . 582155) (-2035 . 582099) (-2036 . 582030)
+ (-2037 . 581811) (-2038 . 581596) (-2039 . 581344) (-2040 . 580784)
+ (-2041 . 580690) (-2042 . 580463) (-2043 . 580401) (-2044 . 580125)
+ (-2045 . 580012) (-2046 . 579803) (-2047 . 579476) (-2048 . 579384)
+ (-2049 . 579003) (-2050 . 578849) (-2051 . 578696) (-2052 . 578592)
+ (-2053 . 578476) (-2054 . 578375) (-2055 . 578301) (-2056 . 578249)
+ (-2057 . 578179) (-2058 . 578010) (-2059 . 577933) (-2060 . 577590)
+ (-2061 . 577294) (-2062 . 577117) (-2063 . 576781) (-2064 . 576722)
+ (-2065 . 576648) (-2066 . 576548) (-2067 . 576204) (-2068 . 576030)
+ (-2069 . 575974) (-2070 . 575915) (-2071 . 575883) (-2072 . 575830)
+ (-2073 . 575760) (-2074 . 575521) (-2075 . 575438) (-2076 . 575325)
+ (-2077 . 575244) (-2078 . 575189) (-2079 . 575092) (-2080 . 575018)
+ (-2081 . 574825) (-2082 . 574757) (-2083 . 574650) (-2084 . 574564)
+ (-2085 . 574491) (-2086 . 574413) (-2087 . 573856) (-2088 . 573756)
+ (-2089 . 573663) (-2090 . 573030) (-2091 . 572607) (-2092 . 572303)
+ (-2093 . 572224) (-2094 . 572082) (-2095 . 568075) (-2096 . 567886)
+ (-2097 . 567477) (-2098 . 567165) (-2099 . 566782) (-2100 . 566437)
+ (-2101 . 566284) (-2102 . 566181) (-2103 . 566028) (-2104 . 565943)
+ (-2105 . 565859) (-2106 . 565642) (-2107 . 565610) (-2108 . 563496)
+ (-2109 . 563298) (-2110 . 562428) (-2111 . 562333) (-2112 . 562175)
+ (-2113 . 561748) (-2114 . 561576) (-2115 . 561490) (-2116 . 561425)
+ (-2117 . 561187) (-2118 . 561103) (-2119 . 560663) (-2120 . 560590)
+ (-2121 . 560396) (-2122 . 560230) (-2123 . 560058) (-2124 . 559902)
+ (-2125 . 559816) (-2126 . 559660) (-2127 . 559579) (-2128 . 559213)
+ (-2129 . 559123) (-2130 . 558968) (-2131 . 558738) (-2132 . 558443)
+ (-2133 . 558401) (-2134 . 558265) (-2135 . 558181) (-2136 . 557513)
+ (-2137 . 557327) (-2138 . 557228) (-2139 . 557168) (-2140 . 557070)
+ (-2141 . 556974) (-2142 . 556900) (-2143 . 556799) (-2144 . 556573)
+ (-2145 . 556487) (-2146 . 556453) (-2147 . 556358) (-2148 . 556330)
+ (-2149 . 556223) (-2150 . 555916) (-2151 . 555776) (-2152 . 555647)
+ (-2153 . 555453) (-2154 . 555029) (-2155 . 554896) (-2156 . 554795)
+ (-2157 . 554660) (-2158 . 554373) (-2159 . 554282) (-2160 . 554181)
+ (-2161 . 553183) (-2162 . 553124) (-2163 . 553041) (-2164 . 552940)
+ (-2165 . 552487) (-2166 . 552399) (-2167 . 550543) (-2168 . 550433)
+ (-2169 . 550292) (-2170 . 550208) (-2171 . 549989) (-2172 . 549911)
+ (-2173 . 549840) (-2174 . 549745) (-2175 . 549518) (-2176 . 549439)
+ (-2177 . 549241) (-2178 . 549149) (-2179 . 548702) (-2180 . 548644)
+ (-2181 . 548437) (-2182 . 548300) (-2183 . 547984) (-2184 . 547858)
+ (-2185 . 547684) (-2186 . 547497) (-2187 . 547435) (-2188 . 547383)
+ (-2189 . 546955) (-2190 . 546860) (-2191 . 546760) (-2192 . 546408)
+ (-2193 . 546298) (-2194 . 546142) (-2195 . 545986) (-2196 . 545776)
+ (-2197 . 545689) (-2198 . 545347) (-2199 . 545295) (-2200 . 545267)
+ (-2201 . 545188) (-2202 . 545051) (-2203 . 544959) (-2204 . 544931)
+ (-2205 . 544711) (-2206 . 544659) (-2207 . 544416) (-2208 . 544089)
+ (-2209 . 543989) (-2210 . 543732) (-2211 . 543553) (-2212 . 543240)
+ (-2213 . 543141) (-2214 . 542999) (-2215 . 542843) (-2216 . 542751)
+ (-2217 . 542702) (-2218 . 542596) (-2219 . 542562) (-2220 . 542530)
+ (-2221 . 542271) (-2222 . 542212) (-2223 . 542111) (-2224 . 541915)
+ (-2225 . 541862) (-2226 . 541767) (-2227 . 541642) (-2228 . 541556)
+ (-2229 . 541455) (-2230 . 541044) (-2231 . 540933) (-2232 . 540878)
+ (-2233 . 540239) (-2234 . 540180) (-2235 . 539078) (-2236 . 538951)
+ (-2237 . 538899) (-2238 . 538734) (-2239 . 538455) (-2240 . 538402)
+ (-2241 . 537893) (-2242 . 537740) (-2243 . 537590) (-2244 . 537493)
+ (-2245 . 537413) (-2246 . 537341) (-2247 . 537313) (-2248 . 537199)
+ (-2249 . 537115) (-2250 . 536769) (-2251 . 536740) (-2252 . 536428)
+ (-2253 . 536323) (-2254 . 536186) (-2255 . 535969) (-2256 . 535712)
+ (-2257 . 535557) (-2258 . 535382) (-2259 . 535285) (-2260 . 535108)
+ (-2261 . 535013) (-2262 . 534927) (-2263 . 534717) (-2264 . 534635)
+ (-2265 . 534470) (-2266 . 534356) (-2267 . 534223) (-2268 . 534140)
+ (-2269 . 533427) (-2270 . 533282) (-2271 . 532990) (-2272 . 532886)
+ (-2273 . 532707) (-2274 . 532640) (-2275 . 532437) (-2276 . 532380)
+ (-2277 . 532296) (-2278 . 532241) (-2279 . 532096) (-2280 . 532023)
+ (-2281 . 531389) (-2282 . 531216) (-2283 . 531058) (-2284 . 530398)
+ (-2285 . 530336) (-2286 . 530129) (-2287 . 530076) (-2288 . 530005)
+ (-2289 . 529931) (-2290 . 529834) (-2291 . 529743) (-2292 . 529509)
+ (-2293 . 529427) (-2294 . 529281) (-2295 . 528083) (-2296 . 527945)
+ (-2297 . 526643) (-2298 . 526507) (-2299 . 526450) (-2300 . 526355)
+ (-2301 . 526021) (-2302 . 525816) (-2303 . 525598) (-2304 . 525504)
+ (-2305 . 525476) (-2306 . 525217) (-2307 . 525143) (-2308 . 524714)
+ (-2309 . 524599) (-2310 . 524547) (-2311 . 524374) (-2312 . 524252)
+ (-2313 . 524181) (-2314 . 523957) (-2315 . 523875) (-2316 . 523773)
+ (-2317 . 523603) (-2318 . 523537) (-2319 . 523400) (-2320 . 523277)
+ (-2321 . 523140) (-2322 . 523074) (-2323 . 523040) (-2324 . 522967)
+ (-2325 . 522748) (-2326 . 522620) (-2327 . 522558) (-2328 . 522462)
+ (-2329 . 522406) (-2330 . 522090) (-2331 . 521935) (-2332 . 521839)
+ (-2333 . 521679) (-2334 . 521488) (-2335 . 521274) (-2336 . 521240)
+ (-2337 . 520713) (-2338 . 520658) (-2339 . 520590) (-2340 . 520538)
+ (-2341 . 520457) (-2342 . 520346) (-2343 . 520252) (-2344 . 519286)
+ (-2345 . 518528) (-2346 . 518476) (-2347 . 518361) (-2348 . 518294)
+ (-2349 . 518137) (-2350 . 518067) (-2351 . 517875) (-2352 . 517720)
+ (-2353 . 517664) (-2354 . 517612) (-2355 . 517454) (-2356 . 517070)
+ (-2357 . 517018) (-2358 . 516934) (-2359 . 516776) (-2360 . 516747)
+ (-2361 . 516550) (-2362 . 516491) (-2363 . 516363) (-2364 . 516310)
+ (-2365 . 516255) (-2366 . 516122) (-2367 . 515970) (-2368 . 515900)
+ (-2369 . 515764) (-2370 . 515709) (-2371 . 515657) (-2372 . 515435)
+ (-2373 . 515225) (-2374 . 515102) (-2375 . 515036) (-2376 . 514873)
+ (-2377 . 514702) (-2378 . 514397) (-2379 . 514369) (-2380 . 514298)
+ (-2381 . 514100) (-2382 . 513898) (-2383 . 511766) (-2384 . 511544)
+ (-2385 . 511510) (-2386 . 511432) (-2387 . 511311) (-2388 . 511141)
+ (-2389 . 511028) (-2390 . 510959) (-2391 . 510623) (-2392 . 509735)
+ (-2393 . 509636) (-2394 . 509548) (-2395 . 508632) (-2396 . 508530)
+ (-2397 . 508479) (-2398 . 507941) (-2399 . 507797) (-2400 . 507689)
+ (-2401 . 507655) (-2402 . 507601) (-2403 . 507500) (-2404 . 507438)
+ (-2405 . 507314) (-2406 . 507199) (-2407 . 507093) (-2408 . 507015)
+ (-2409 . 506892) (-2410 . 506809) (-2411 . 506690) (-2412 . 506212)
+ (-2413 . 506059) (-2414 . 505989) (-2415 . 504894) (-2416 . 504759)
+ (-2417 . 504707) (-2418 . 504640) (-2419 . 504073) (-2420 . 503995)
+ (-2421 . 503942) (-2422 . 503871) (-2423 . 503773) (-2424 . 503650)
+ (-2425 . 503498) (-2426 . 503182) (-2427 . 503132) (-2428 . 503101)
+ (-2429 . 503037) (-2430 . 502982) (-2431 . 502887) (-2432 . 502726)
+ (-2433 . 502416) (-2434 . 502322) (-2435 . 502060) (-2436 . 501943)
+ (-2437 . 501717) (-2438 . 500315) (-2439 . 500172) (-2440 . 499621)
+ (-2441 . 499569) (-2442 . 499400) (-2443 . 499299) (-2444 . 499205)
+ (-2445 . 498997) (-2446 . 498944) (-2447 . 498847) (-2448 . 498656)
+ (-2449 . 498605) (-2450 . 498515) (-2451 . 498221) (-2452 . 498110)
+ (-2453 . 497878) (-2454 . 497823) (-2455 . 497442) (-2456 . 496974)
+ (-2457 . 496877) (-2458 . 496738) (-2459 . 496601) (-2460 . 496184)
+ (-2461 . 496087) (-2462 . 495695) (-2463 . 495416) (-2464 . 495164)
+ (-2465 . 494884) (-2466 . 494421) (-2467 . 494206) (-2468 . 493493)
+ (-2469 . 493297) (-2470 . 493199) (-2471 . 492684) (-2472 . 492488)
+ (-2473 . 486974) (-2474 . 486774) (-2475 . 486701) (-2476 . 486648)
+ (-2477 . 486527) (-2478 . 486304) (-2479 . 486227) (-2480 . 486040)
+ (-2481 . 485880) (-2482 . 482545) (-2483 . 482392) (-2484 . 481999)
+ (-2485 . 481946) (-2486 . 481719) (-2487 . 481558) (-2488 . 481445)
+ (-2489 . 481357) (-2490 . 480904) (-2491 . 480728) (-2492 . 480640)
+ (-2493 . 480366) (-2494 . 480267) (-2495 . 479826) (-2496 . 478646)
+ (-2497 . 478582) (-2498 . 478443) (-2499 . 478377) (-2500 . 478349)
+ (-2501 . 478255) (-2502 . 478146) (-2503 . 477811) (-2504 . 477668)
+ (-2505 . 477572) (-2506 . 477126) (-2507 . 477098) (-2508 . 477045)
+ (-2509 . 476992) (-2510 . 476918) (-2511 . 476820) (-2512 . 476740)
+ (-2513 . 476703) (-2514 . 476455) (-2515 . 476383) (-2516 . 476324)
+ (-2517 . 476154) (-2518 . 476030) (-2519 . 475761) (-2520 . 475667)
+ (-2521 . 475522) (-2522 . 475454) (-2523 . 475377) (-2524 . 475141)
+ (-2525 . 475071) (-2526 . 474907) (-2527 . 474732) (-2528 . 474505)
+ (-2529 . 474419) (-2530 . 474282) (-2531 . 473755) (-2532 . 473660)
+ (-2533 . 473567) (-2534 . 473394) (-2535 . 473179) (-2536 . 473085)
+ (-2537 . 472944) (-2538 . 472870) (-2539 . 472520) (-2540 . 472424)
+ (-2541 . 472265) (-2542 . 471990) (-2543 . 470798) (-2544 . 470648)
+ (-2545 . 470359) (-2546 . 470331) (-2547 . 470275) (-2548 . 470208)
+ (-2549 . 469841) (-2550 . 469743) (-2551 . 469606) (-2552 . 469554)
+ (-2553 . 469496) (-2554 . 469385) (-2555 . 469333) (-2556 . 469142)
+ (-2557 . 468944) (-2558 . 468816) (-2559 . 468302) (-2560 . 468203)
+ (-2561 . 467784) (-2562 . 467756) (-2563 . 467668) (-2564 . 467476)
+ (-2565 . 467303) (-2566 . 467208) (-2567 . 467122) (-2568 . 467045)
+ (-2569 . 466966) (-2570 . 466712) (-2571 . 466599) (-2572 . 466546)
+ (-2573 . 466391) (-2574 . 466318) (-2575 . 466194) (-2576 . 466096)
+ (-2577 . 465913) (-2578 . 463751) (-2579 . 463656) (-2580 . 463559)
+ (-2581 . 463386) (-2582 . 463245) (-2583 . 463185) (-2584 . 463111)
+ (-2585 . 461482) (-2586 . 461429) (-2587 . 461297) (-2588 . 461214)
+ (-2589 . 461161) (-2590 . 461081) (-2591 . 461029) (-2592 . 460437)
+ (-2593 . 459558) (-2594 . 459424) (-2595 . 459326) (-2596 . 459238)
+ (-2597 . 458379) (-2598 . 458250) (-2599 . 458134) (-2600 . 458031)
+ (-2601 . 457729) (-2602 . 457571) (-2603 . 457520) (-2604 . 457341)
+ (-2605 . 457228) (-2606 . 457047) (-2607 . 456424) (-2608 . 455128)
+ (-2609 . 455025) (-2610 . 454946) (-2611 . 454838) (-2612 . 453773)
+ (-2613 . 453176) (-2614 . 453021) (-2615 . 452775) (-2616 . 452704)
+ (-2617 . 451408) (-2618 . 451301) (-2619 . 451232) (-2620 . 451177)
+ (-2621 . 451107) (-2622 . 451003) (-2623 . 450616) (-2624 . 450486)
+ (-2625 . 449829) (-2626 . 449764) (-2627 . 449686) (-2628 . 449603)
+ (-2629 . 449488) (-2630 . 449433) (-2631 . 449253) (-2632 . 449159)
+ (-2633 . 449071) (-2634 . 448868) (-2635 . 448697) (-2636 . 448572)
+ (-2637 . 448541) (-2638 . 448488) (-2639 . 447842) (-2640 . 447299)
+ (-2641 . 447271) (-2642 . 447130) (-2643 . 446546) (-2644 . 446494)
+ (-2645 . 446440) (-2646 . 446391) (-2647 . 446288) (-2648 . 446166)
+ (-2649 . 445962) (-2650 . 445912) (-2651 . 445816) (-2652 . 445656)
+ (-2653 . 445358) (-2654 . 445108) (-2655 . 445036) (-2656 . 444935)
+ (-2657 . 444327) (-2658 . 444046) (-2659 . 443980) (-2660 . 443897)
+ (-2661 . 443298) (-2662 . 442911) (-2663 . 442859) (-2664 . 442668)
+ (-2665 . 442326) (-2666 . 442242) (-2667 . 442178) (-2668 . 441926)
+ (-2669 . 441610) (-2670 . 441158) (-2671 . 441124) (-2672 . 440859)
+ (-2673 . 440803) (-2674 . 440710) (-2675 . 440544) (-2676 . 440396)
+ (-2677 . 440275) (-2678 . 440246) (-2679 . 439996) (-2680 . 439622)
+ (-2681 . 439260) (-2682 . 439204) (-2683 . 439152) (-2684 . 437610)
+ (-2685 . 437377) (-2686 . 437311) (-2687 . 437112) (-2688 . 437039)
+ (-2689 . 436876) (-2690 . 436738) (-2691 . 435948) (-2692 . 435833)
+ (-2693 . 435699) (-2694 . 435629) (-2695 . 435550) (-2696 . 435427)
+ (-2697 . 435270) (-2698 . 435060) (-2699 . 434908) (-2700 . 434759)
+ (-2701 . 434572) (-2702 . 434442) (-2703 . 434390) (-2704 . 434339)
+ (-2705 . 434198) (-2706 . 434146) (-2707 . 434020) (-2708 . 433964)
+ (-2709 . 433686) (-2710 . 433200) (-2711 . 433040) (-2712 . 432945)
+ (-2713 . 432890) (-2714 . 432778) (-2715 . 432722) (-2716 . 432507)
+ (-2717 . 432435) (-2718 . 432311) (-2719 . 430528) (-2720 . 430197)
+ (-2721 . 429933) (-2722 . 429853) (-2723 . 429543) (-2724 . 429446)
+ (-2725 . 429375) (-2726 . 429111) (-2727 . 428767) (-2728 . 428667)
+ (-2729 . 428583) (-2730 . 428480) (-2731 . 426903) (-2732 . 426703)
+ (-2733 . 426626) (-2734 . 426505) (-2735 . 426409) (-2736 . 425827)
+ (-2737 . 425626) (-2738 . 425571) (-2739 . 425498) (-2740 . 425412)
+ (-2741 . 425325) (-2742 . 424800) (-2743 . 424772) (-2744 . 424533)
+ (-2745 . 424238) (-2746 . 424148) (-2747 . 423508) (-2748 . 423456)
+ (-2749 . 422378) (-2750 . 422003) (-2751 . 421865) (-2752 . 421534)
+ (-2753 . 421468) (-2754 . 421117) (-2755 . 420522) (-2756 . 420426)
+ (-2757 . 420343) (-2758 . 419998) (-2759 . 419599) (-2760 . 419515)
+ (-2761 . 419297) (-2762 . 419245) (-2763 . 419098) (-2764 . 418938)
+ (-2765 . 418882) (-2766 . 418278) (-2767 . 418198) (-2768 . 417804)
+ (-2769 . 417670) (-2770 . 417581) (-2771 . 417510) (-2772 . 417122)
+ (-2773 . 416358) (-2774 . 415096) (-2775 . 415046) (-2776 . 414750)
+ (-2777 . 414670) (-2778 . 413933) (-2779 . 413838) (-2780 . 413786)
+ (-2781 . 413410) (-2782 . 413228) (-2783 . 413139) (-2784 . 413086)
+ (-2785 . 412824) (-2786 . 412629) (-2787 . 412412) (-2788 . 412313)
+ (-2789 . 412004) (-2790 . 411952) (-2791 . 411836) (-2792 . 411485)
+ (-2793 . 411125) (-2794 . 410668) (-2795 . 410469) (-2796 . 410336)
+ (-2797 . 410097) (-2798 . 409508) (-2799 . 409385) (-2800 . 407604)
+ (-2801 . 407511) (-2802 . 407425) (-2803 . 407265) (-2804 . 407167)
+ (-2805 . 406995) (-2806 . 406873) (-2807 . 406783) (-2808 . 406695)
+ (-2809 . 406646) (-2810 . 405773) (-2811 . 405718) (-2812 . 405503)
+ (-2813 . 405409) (-2814 . 405329) (-2815 . 405263) (-2816 . 405191)
+ (-2817 . 404969) (-12 . 404797) (-2819 . 404681) (-2820 . 404526)
+ (-2821 . 404406) (-2822 . 404312) (-2823 . 404101) (-2824 . 404027)
+ (-2825 . 403854) (-2826 . 403594) (-2827 . 403497) (-2828 . 403397)
+ (-2829 . 403329) (-2830 . 403221) (-2831 . 403113) (-2832 . 403061)
+ (-2833 . 402676) (-2834 . 402114) (-2835 . 402035) (-2836 . 401977)
+ (-2837 . 401641) (-2838 . 401563) (-2839 . 401497) (-2840 . 401137)
+ (-2841 . 400945) (-2842 . 400888) (-2843 . 400213) (-2844 . 400083)
+ (-2845 . 399959) (-2846 . 399356) (-2847 . 398890) (-2848 . 398363)
+ (-2849 . 397161) (-2850 . 397078) (-2851 . 397026) (-2852 . 396250)
+ (-2853 . 395575) (-2854 . 395516) (-2855 . 395412) (-2856 . 395297)
+ (-2857 . 395201) (-2858 . 395109) (-2859 . 395026) (-2860 . 394927)
+ (-2861 . 394825) (-2862 . 394710) (-2863 . 394539) (-2864 . 394487)
+ (-2865 . 393812) (-2866 . 393618) (-2867 . 393531) (-2868 . 393478)
+ (-2869 . 393397) (-2870 . 393297) (-2871 . 393212) (-2872 . 392939)
+ (-2873 . 392887) (-2874 . 392834) (-2875 . 392547) (-2876 . 391715)
+ (-2877 . 391152) (-2878 . 390986) (-2879 . 390885) (-2880 . 390830)
+ (-2881 . 390379) (-2882 . 390327) (-2883 . 390272) (-2884 . 389953)
+ (-2885 . 389290) (-2886 . 389218) (-2887 . 388919) (-2888 . 388356)
+ (-2889 . 388070) (-2890 . 387947) (-2891 . 387789) (-2892 . 387636)
+ (-2893 . 387556) (-2894 . 387450) (-2895 . 387289) (-2896 . 387212)
+ (-2897 . 386649) (-2898 . 386568) (-2899 . 385225) (-2900 . 382444)
+ (-2901 . 382360) (-2902 . 382256) (-2903 . 379841) (-2904 . 379788)
+ (-2905 . 379735) (-2906 . 379625) (-2907 . 379063) (-2908 . 379008)
+ (-2909 . 378945) (-2910 . 378742) (-2911 . 378562) (-2912 . 378479)
+ (-2913 . 378313) (* . 373819) (-2915 . 373534) (-2916 . 373431)
+ (-2917 . 373183) (-2918 . 373087) (-2919 . 372914) (-2920 . 372352)
+ (-2921 . 372230) (-2922 . 372039) (-2923 . 371908) (-2924 . 371748)
+ (-2925 . 371688) (-2926 . 371614) (-2927 . 371491) (-2928 . 370275)
+ (-2929 . 370216) (-2930 . 370030) (-2931 . 369468) (-2932 . 368767)
+ (-2933 . 368660) (-2934 . 368578) (-2935 . 368309) (-2936 . 368236)
+ (-2937 . 368176) (-2938 . 368102) (-2939 . 367857) (-2940 . 367795)
+ (-2941 . 367742) (-2942 . 367513) (-2943 . 366951) (-2944 . 366844)
+ (-2945 . 366743) (-2946 . 366198) (-2947 . 365849) (-2948 . 365725)
+ (-2949 . 365628) (-2950 . 365356) (-2951 . 364773) (-2952 . 364438)
+ (-2953 . 364223) (-2954 . 363661) (-2955 . 363602) (-2956 . 363308)
+ (-2957 . 363258) (-2958 . 362739) (-2959 . 362586) (-2960 . 362489)
+ (-2961 . 362381) (-2962 . 362091) (-2963 . 362005) (-2964 . 361880)
+ (-2965 . 361547) (-2966 . 361314) (-2967 . 361213) (-2968 . 360854)
+ (-2969 . 360769) (-2970 . 360737) (-2971 . 360241) (-2972 . 360010)
+ (-2973 . 359915) (-2974 . 359630) (-2975 . 359426) (-2976 . 359283)
+ (-2977 . 359129) (-2978 . 359010) (-2979 . 358820) (-2980 . 358762)
+ (-2981 . 358655) (-2982 . 357901) (-2983 . 357738) (-2984 . 357651)
+ (-2985 . 357583) (-2986 . 357167) (-2987 . 356905) (-2988 . 356747)
+ (-2989 . 356694) (-2990 . 356620) (-2991 . 356515) (-2992 . 356465)
+ (-2993 . 356437) (-2994 . 356306) (-2995 . 356128) (-2996 . 355841)
+ (-2997 . 354980) (-2998 . 354830) (-2999 . 354671) (-3000 . 354197)
+ (-3001 . 354090) (-3002 . 353932) (-3003 . 353807) (-3004 . 353755)
+ (-3005 . 353676) (-3006 . 353533) (-3007 . 353176) (-3008 . 352973)
+ (-3009 . 352886) (-3010 . 352799) (-3011 . 352648) (-3012 . 352571)
+ (-3013 . 352502) (-3014 . 352400) (-3015 . 351913) (-3016 . 351860)
+ (-3017 . 351833) (-3018 . 351411) (-3019 . 351153) (-3020 . 350786)
+ (-3021 . 350649) (-3022 . 350539) (-3023 . 350333) (-3024 . 350232)
+ (-3025 . 350119) (-3026 . 349981) (-3027 . 349630) (-3028 . 349599)
+ (-3029 . 349533) (-3030 . 349464) (-3031 . 349321) (-3032 . 349182)
+ (-3033 . 349062) (-3034 . 348967) (-3035 . 348933) (-3036 . 348832)
+ (-3037 . 348347) (-3038 . 348291) (-3039 . 348239) (-3040 . 347053)
+ (-3041 . 346943) (-3042 . 346561) (-3043 . 346355) (-3044 . 346231)
+ (-3045 . 346159) (-3046 . 346063) (-3047 . 345625) (-3048 . 345198)
+ (-3049 . 344911) (-3050 . 344758) (-3051 . 343576) (-3052 . 343499)
+ (-3053 . 343344) (-3054 . 343243) (-3055 . 342091) (-3056 . 341898)
+ (-3057 . 341869) (-3058 . 341701) (-3059 . 341269) (-3060 . 341189)
+ (-3061 . 341155) (-3062 . 338948) (-3063 . 338818) (-3064 . 338735)
+ (-3065 . 338555) (-3066 . 334013) (-3067 . 333873) (-3068 . 333720)
+ (-3069 . 333632) (-3070 . 333441) (-3071 . 332323) (-3072 . 332263)
+ (-3073 . 332162) (-3074 . 332128) (-3075 . 332000) (-3076 . 331871)
+ (-3077 . 331783) (-3078 . 331556) (-3079 . 331384) (-3080 . 331200)
+ (-3081 . 330883) (-3082 . 330823) (-3083 . 330743) (-3084 . 330292)
+ (-3085 . 330174) (-3086 . 329836) (-3087 . 329784) (-3088 . 329082)
+ (-3089 . 328853) (-3090 . 328681) (-3091 . 328504) (-3092 . 328410)
+ (-3093 . 328268) (-3094 . 328059) (-3095 . 327992) (-3096 . 327874)
+ (-3097 . 327804) (-3098 . 327708) (-3099 . 327486) (-3100 . 326807)
+ (-3101 . 326703) (-3102 . 326531) (-3103 . 326250) (-3104 . 326101)
+ (-3105 . 326005) (-3106 . 325945) (-3107 . 325427) (-3108 . 325044)
+ (-3109 . 324863) (-3110 . 324767) (-3111 . 324595) (-3112 . 324454)
+ (-3113 . 324332) (-3114 . 324132) (-3115 . 324012) (-3116 . 323896)
+ (-3117 . 323669) (-3118 . 323351) (-3119 . 323299) (-3120 . 323046)
+ (-3121 . 322991) (-3122 . 322835) (-3123 . 322783) (-3124 . 322697)
+ (-3125 . 322628) (-3126 . 322421) (-3127 . 321878) (-3128 . 321646)
+ (-3129 . 321397) (-3130 . 321269) (-3131 . 321162) (-3132 . 321066)
+ (-3133 . 320756) (-3134 . 320588) (-3135 . 320405) (-3136 . 320233)
+ (-3137 . 320089) (-3138 . 319974) (-3139 . 319879) (-3140 . 319786)
+ (-3141 . 319643) (-3142 . 319453) (-3143 . 319425) (-3144 . 319272)
+ (-3145 . 318865) (-3146 . 318779) (-3147 . 317819) (-3148 . 317701)
+ (-3149 . 317606) (-3150 . 317435) (-3151 . 317316) (-3152 . 303229)
+ (-3153 . 303176) (-3154 . 302612) (-3155 . 302467) (-3156 . 302412)
+ (-3157 . 302311) (-3158 . 302195) (-3159 . 301886) (-3160 . 301800)
+ (-3161 . 301722) (-3162 . 301387) (-3163 . 301228) (-3164 . 299888)
+ (-3165 . 299659) (-3166 . 299347) (-3167 . 299231) (-3168 . 299043)
+ (-3169 . 298868) (-3170 . 298635) (-3171 . 294572) (-3172 . 294484)
+ (-3173 . 293686) (-3174 . 293355) (-3175 . 293207) (-3176 . 293173)
+ (-3177 . 292903) (-3178 . 292817) (-3179 . 292765) (-3180 . 292440)
+ (-3181 . 291878) (-3182 . 291765) (-3183 . 291694) (-3184 . 291511)
+ (-3185 . 291312) (-3186 . 291241) (-3187 . 291006) (-3188 . 290899)
+ (-3189 . 290813) (-3190 . 290675) (-3191 . 290267) (-3192 . 290121)
+ (-3193 . 290040) (-3194 . 289793) (-3195 . 289652) (-3196 . 289346)
+ (-3197 . 288962) (-3198 . 288709) (-3199 . 288638) (-3200 . 288537)
+ (-3201 . 288230) (-3202 . 288072) (-3203 . 287854) (-3204 . 284187)
+ (-3205 . 284129) (-3206 . 284055) (-3207 . 283977) (-3208 . 283813)
+ (-3209 . 283533) (-3210 . 283206) (-3211 . 283157) (-3212 . 280812)
+ (-3213 . 280669) (-3214 . 280556) (-3215 . 280438) (-3216 . 280387)
+ (-3217 . 280262) (-3218 . 280179) (-3219 . 280021) (-3220 . 279943)
+ (-3221 . 279877) (-3222 . 279750) (-3223 . 279392) (-3224 . 279330)
+ (-3225 . 279207) (-3226 . 279078) (-3227 . 276822) (-3228 . 276376)
+ (-3229 . 276279) (-3230 . 276133) (-3231 . 276025) (-3232 . 275974)
+ (-3233 . 275864) (-3234 . 275808) (-3235 . 275693) (-3236 . 275163)
+ (-3237 . 275108) (-3238 . 274922) (-3239 . 274849) (-3240 . 274608)
+ (-3241 . 274526) (-3242 . 274398) (-3243 . 274349) (-3244 . 274297)
+ (-3245 . 270998) (-3246 . 270596) (-3247 . 270525) (-3248 . 269344)
+ (-3249 . 269291) (-3250 . 269221) (-3251 . 269123) (-3252 . 269045)
+ (-3253 . 268995) (-3254 . 268720) (-3255 . 268647) (-3256 . 268573)
+ (-3257 . 268408) (-3258 . 268196) (-3259 . 268144) (-3260 . 267991)
+ (-3261 . 267823) (-3262 . 267774) (-3263 . 267381) (-3264 . 266200)
+ (-3265 . 266129) (-3266 . 265681) (-3267 . 265598) (-3268 . 265525)
+ (-3269 . 265151) (-3270 . 264993) (-3271 . 263720) (-3272 . 263598)
+ (-3273 . 263541) (-3274 . 263421) (-3275 . 263325) (-3276 . 263095)
+ (-3277 . 262952) (-3278 . 262834) (-3279 . 262781) (-3280 . 262399)
+ (-3281 . 262339) (-3282 . 261893) (-3283 . 261841) (-3284 . 261709)
+ (-3285 . 261547) (-3286 . 261469) (-3287 . 261078) (-3288 . 260959)
+ (-3289 . 260834) (-3290 . 260777) (-3291 . 260704) (-3292 . 260546)
+ (-3293 . 260417) (-3294 . 260238) (-3295 . 260067) (-3296 . 259884)
+ (-3297 . 259816) (-3298 . 259673) (-3299 . 259607) (-3300 . 259497)
+ (-3301 . 258427) (-3302 . 258291) (-3303 . 258166) (-3304 . 258048)
+ (-3305 . 257981) (-3306 . 257304) (-3307 . 257125) (-3308 . 257053)
+ (-3309 . 256350) (-3310 . 256192) (-3311 . 256113) (-3312 . 255990)
+ (-3313 . 255913) (-3314 . 255752) (-3315 . 255652) (-3316 . 255598)
+ (-3317 . 255546) (-3318 . 255469) (-3319 . 255363) (-3320 . 255261)
+ (-3321 . 255158) (-3322 . 255085) (-3323 . 254221) (-3324 . 253860)
+ (-3325 . 253743) (-3326 . 253622) (-3327 . 253479) (-3328 . 253382)
+ (-3329 . 253239) (-3330 . 253151) (-3331 . 252962) (-3332 . 252844)
+ (-3333 . 252359) (-3334 . 248199) (-3335 . 248031) (-3336 . 247908)
+ (-3337 . 247826) (-3338 . 247659) (-3339 . 247578) (-3340 . 247519)
+ (-3341 . 247377) (-3342 . 247264) (-3343 . 247100) (-3344 . 247005)
+ (-3345 . 246923) (-3346 . 246839) (-3347 . 246549) (-3348 . 246346)
+ (-3349 . 245787) (-3350 . 245690) (-3351 . 245585) (-3352 . 245387)
+ (-3353 . 245301) (-3354 . 244813) (-3355 . 244679) (-3356 . 244299)
+ (-3357 . 244186) (-3358 . 244152) (-3359 . 243905) (-3360 . 243837)
+ (-3361 . 243278) (-3362 . 243200) (-3363 . 242907) (-3364 . 242811)
+ (-3365 . 242167) (-3366 . 242094) (-3367 . 241933) (-3368 . 241849)
+ (-3369 . 241779) (-3370 . 241631) (-3371 . 241543) (-3372 . 241408)
+ (-3373 . 241135) (-3374 . 240973) (-3375 . 240874) (-3376 . 240791)
+ (-3377 . 240654) (-3378 . 240332) (-3379 . 239924) (-3380 . 239733)
+ (-3381 . 239637) (-3382 . 239524) (-3383 . 239473) (-3384 . 239377)
+ (-3385 . 239292) (-3386 . 239189) (-3387 . 239055) (-3388 . 238951)
+ (-3389 . 238835) (-3390 . 238683) (-3391 . 238606) (-3392 . 238373)
+ (-3393 . 238285) (-3394 . 238181) (-3395 . 238129) (-3396 . 238076)
+ (-3397 . 238026) (-3398 . 237808) (-3399 . 237712) (-3400 . 237684)
+ (-3401 . 237547) (-3402 . 237473) (-3403 . 237375) (-3404 . 237095)
+ (-3405 . 236980) (-3406 . 236702) (-3407 . 236602) (-3408 . 236356)
+ (-3409 . 236116) (-3410 . 236037) (-3411 . 236009) (-3412 . 235896)
+ (-3413 . 235778) (-3414 . 235690) (-3415 . 235398) (-3416 . 235173)
+ (-3417 . 235073) (-3418 . 234783) (-3419 . 234682) (-3420 . 234610)
+ (-3421 . 234526) (-3422 . 234428) (-3423 . 234313) (-3424 . 234239)
+ (-3425 . 234134) (-3426 . 234060) (-3427 . 233995) (-3428 . 233958)
+ (-3429 . 233902) (-3430 . 233759) (-3431 . 233601) (-3432 . 233529)
+ (-3433 . 233327) (-3434 . 233244) (-3435 . 233185) (-3436 . 233124)
+ (-3437 . 232885) (-3438 . 232755) (-3439 . 232620) (-3440 . 232531)
+ (-3441 . 232387) (-3442 . 232304) (-3443 . 232182) (-3444 . 232111)
+ (-3445 . 232038) (-3446 . 231979) (-3447 . 231568) (-3448 . 231516)
+ (-3449 . 231387) (-3450 . 231280) (-3451 . 231174) (-3452 . 231103)
+ (-3453 . 230913) (-3454 . 230817) (-3455 . 230659) (-3456 . 230148)
+ (-3457 . 230032) (-3458 . 229933) (-3459 . 229809) (-3460 . 229646)
+ (-3461 . 229341) (-3462 . 229193) (-3463 . 229122) (-3464 . 228927)
+ (-3465 . 228842) (-3466 . 228555) (-3467 . 228128) (-3468 . 228012)
+ (-3469 . 227938) (-3470 . 227886) (-3471 . 227564) (-3472 . 227487)
+ (-3473 . 227344) (-3474 . 226687) (-3475 . 226476) (-3476 . 226263)
+ (-3477 . 226094) (-3478 . 225847) (-3479 . 225776) (-3480 . 225724)
+ (-3481 . 225483) (-3482 . 225340) (-3483 . 225155) (-3484 . 224996)
+ (-3485 . 224725) (-3486 . 224567) (-3487 . 224443) (-3488 . 224365)
+ (-3489 . 223861) (-3490 . 223833) (-3491 . 223615) (-3492 . 223471)
+ (-3493 . 223326) (-3494 . 223204) (-3495 . 222950) (-3496 . 222784)
+ (-3497 . 222640) (-3498 . 222587) (-3499 . 222438) (-3500 . 222386)
+ (-3501 . 222224) (-3502 . 221982) (-3503 . 221895) (-3504 . 221560)
+ (-3505 . 221489) (-3506 . 221394) (-3507 . 221169) (-3508 . 220623)
+ (-3509 . 220442) (-3510 . 220260) (-3511 . 220120) (-3512 . 219587)
+ (-3513 . 219459) (-3514 . 219195) (-3515 . 219111) (-3516 . 218863)
+ (-3517 . 218735) (-3518 . 218537) (-3519 . 218474) (-3520 . 218421)
+ (-3521 . 218344) (-3522 . 218130) (-3523 . 217988) (-3524 . 217770)
+ (-3525 . 217717) (-3526 . 217565) (-3527 . 217421) (-3528 . 217143)
+ (-3529 . 217056) (-3530 . 216979) (-3531 . 216562) (-3532 . 216211)
+ (-3533 . 215985) (-3534 . 215873) (-3535 . 215737) (-3536 . 215431)
+ (-3537 . 215257) (-3538 . 215149) (-3539 . 214897) (-3540 . 214611)
+ (-3541 . 214530) (-3542 . 214372) (-3543 . 212606) (-3544 . 212554)
+ (-3545 . 212422) (-3546 . 212288) (-3547 . 212169) (-3548 . 212100)
+ (-3549 . 211955) (-3550 . 211837) (-3551 . 211712) (-3552 . 211393)
+ (-3553 . 209938) (-3554 . 209807) (-3555 . 209716) (-3556 . 209650)
+ (-3557 . 209300) (-3558 . 209193) (-3559 . 209062) (-3560 . 208849)
+ (-3561 . 208691) (-3562 . 207201) (-3563 . 207127) (-3564 . 207043)
+ (-3565 . 206610) (-3566 . 206036) (-3567 . 205936) (-3568 . 205782)
+ (-3569 . 205699) (-3570 . 205188) (-3571 . 204780) (-3572 . 204728)
+ (-3573 . 204565) (-3574 . 204488) (-3575 . 204419) (-3576 . 204336)
+ (-3577 . 204264) (-3578 . 203816) (-3579 . 203757) (-3580 . 203698)
+ (-3581 . 203610) (-3582 . 203349) (-3583 . 203047) (-3584 . 202311)
+ (-3585 . 202230) (-3586 . 201343) (-3587 . 201087) (-3588 . 199309)
+ (-3589 . 199252) (-3590 . 198645) (-3591 . 198545) (-3592 . 198422)
+ (-3593 . 198194) (-3594 . 197610) (-3595 . 197447) (-3596 . 197225)
+ (-3597 . 196915) (-3598 . 196769) (-3599 . 196673) (-3600 . 196608)
+ (-3601 . 196124) (-3602 . 196073) (-3603 . 196016) (-3604 . 195888)
+ (-3605 . 195778) (-3606 . 195624) (-3607 . 195254) (-3608 . 194860)
+ (-3609 . 194737) (-3610 . 194633) (-3611 . 194291) (-3612 . 194137)
+ (-3613 . 194030) (-3614 . 193386) (-3615 . 193291) (-3616 . 193196)
+ (-3617 . 193167) (-3618 . 193114) (-3619 . 193062) (-3620 . 192996)
+ (-3621 . 192619) (-3622 . 192566) (-3623 . 192479) (-3624 . 192333)
+ (-3625 . 192208) (-3626 . 191036) (-3627 . 190658) (-3628 . 190519)
+ (-3629 . 189840) (-3630 . 189786) (-3631 . 189623) (-3632 . 189557)
+ (-3633 . 189484) (-3634 . 189296) (-3635 . 189181) (-3636 . 189051)
+ (-3637 . 188938) (-3638 . 188660) (-3639 . 188410) (-3640 . 188315)
+ (-3641 . 188259) (-3642 . 188173) (-3643 . 187881) (-3644 . 187631)
+ (-3645 . 186494) (-3646 . 186319) (-3647 . 186239) (-3648 . 186093)
+ (-3649 . 185821) (-3650 . 185769) (-3651 . 185093) (-3652 . 184913)
+ (-3653 . 184802) (-3654 . 184687) (-3655 . 184596) (-3656 . 184510)
+ (-3657 . 184307) (-3658 . 184057) (-3659 . 183093) (-3660 . 183044)
+ (-3661 . 182986) (-3662 . 182844) (-3663 . 182746) (-3664 . 182593)
+ (-3665 . 182511) (-3666 . 182409) (-3667 . 182349) (-3668 . 182244)
+ (-3669 . 181948) (-3670 . 181846) (-3671 . 180620) (-3672 . 180507)
+ (-3673 . 180433) (-3674 . 180360) (-3675 . 180187) (-3676 . 180095)
+ (-3677 . 179901) (-3678 . 179511) (-3679 . 179401) (-3680 . 178650)
+ (-3681 . 178597) (-3682 . 178194) (-3683 . 178031) (-3684 . 177866)
+ (-3685 . 177781) (-3686 . 177618) (-3687 . 177544) (-3688 . 177439)
+ (-3689 . 177408) (-3690 . 177339) (-3691 . 177167) (-3692 . 177064)
+ (-3693 . 176876) (-3694 . 176755) (-3695 . 176264) (-3696 . 176184)
+ (-3697 . 175946) (-3698 . 175802) (-3699 . 175774) (-3700 . 175477)
+ (-3701 . 175396) (-3702 . 175325) (-3703 . 175275) (-3704 . 175070)
+ (-3705 . 174966) (-3706 . 174712) (-3707 . 174660) (-3708 . 174412)
+ (-3709 . 174205) (-3710 . 174105) (-3711 . 173964) (-3712 . 173835)
+ (-3713 . 173707) (-3714 . 173611) (-3715 . 173559) (-3716 . 173442)
+ (-3717 . 173359) (-3718 . 173228) (-3719 . 173091) (-3720 . 172975)
+ (-3721 . 172918) (-3722 . 172863) (-3723 . 172625) (-3724 . 172147)
+ (-3725 . 172059) (-3726 . 171922) (-3727 . 171292) (-3728 . 171197)
+ (-3729 . 171107) (-3730 . 170989) (-3731 . 170936) (-3732 . 170644)
+ (-3733 . 170592) (-3734 . 170506) (-3735 . 170247) (-3736 . 170181)
+ (-3737 . 169966) (-3738 . 169913) (-3739 . 169807) (-3740 . 169779)
+ (-3741 . 169647) (-3742 . 169473) (-3743 . 169414) (-3744 . 169235)
+ (-3745 . 169113) (-3746 . 169039) (-3747 . 168798) (-3748 . 168579)
+ (-3749 . 168087) (-3750 . 167879) (-3751 . 167796) (-3752 . 167703)
+ (-3753 . 167517) (-3754 . 167367) (-3755 . 167272) (-3756 . 165684)
+ (-3757 . 165445) (-3758 . 165332) (-3759 . 165214) (-3760 . 165118)
+ (-3761 . 165012) (-3762 . 164676) (-3763 . 164491) (-3764 . 164328)
+ (-3765 . 164272) (-3766 . 164157) (-3767 . 164091) (-3768 . 163864)
+ (-9 . 163836) (-3770 . 163802) (-3771 . 163749) (-3772 . 163322)
+ (-3773 . 163117) (-3774 . 163018) (-3775 . 162838) (-3776 . 162706)
+ (-3777 . 162541) (-3778 . 162319) (-3779 . 162216) (-3780 . 143641)
+ (-8 . 143613) (-3782 . 143505) (-3783 . 143280) (-3784 . 142889)
+ (-3785 . 142781) (-3786 . 142489) (-3787 . 142428) (-3788 . 142329)
+ (-3789 . 142216) (-3790 . 142013) (-3791 . 139192) (-7 . 139164)
+ (-3793 . 139050) (-3794 . 138905) (-3795 . 138806) (-3796 . 138436)
+ (-3797 . 138317) (-3798 . 138161) (-3799 . 137942) (-3800 . 137804)
+ (-3801 . 137748) (-3802 . 137601) (-3803 . 137527) (-3804 . 135559)
+ (-3805 . 135415) (-3806 . 135319) (-3807 . 135073) (-3808 . 134958)
+ (-3809 . 134764) (-3810 . 134658) (-3811 . 134592) (-3812 . 134152)
+ (-3813 . 134059) (-3814 . 133926) (-3815 . 133760) (-3816 . 133604)
+ (-3817 . 133460) (-3818 . 133347) (-3819 . 133101) (-3820 . 133015)
+ (-3821 . 132019) (-3822 . 131951) (-3823 . 131871) (-3824 . 131768)
+ (-3825 . 131668) (-3826 . 131529) (-3827 . 131472) (-3828 . 131423)
+ (-3829 . 131355) (-3830 . 131212) (-3831 . 131019) (-3832 . 130940)
+ (-3833 . 130785) (-3834 . 130359) (-3835 . 130239) (-3836 . 130168)
+ (-3837 . 130095) (-3838 . 130000) (-3839 . 129782) (-3840 . 129663)
+ (-3841 . 129465) (-3842 . 129205) (-3843 . 128585) (-3844 . 128532)
+ (-3845 . 128405) (-3846 . 128187) (-3847 . 128040) (-3848 . 127781)
+ (-3849 . 127707) (-3850 . 127428) (-3851 . 127084) (-3852 . 127028)
+ (-3853 . 126955) (-3854 . 126419) (-3855 . 126215) (-3856 . 125777)
+ (-3857 . 125653) (-3858 . 125506) (-3859 . 124854) (-3860 . 124604)
+ (-3861 . 124511) (-3862 . 124395) (-3863 . 124321) (-3864 . 124254)
+ (-3865 . 123961) (-3866 . 123883) (-3867 . 123817) (-3868 . 123543)
+ (-3869 . 123287) (-3870 . 123108) (-3871 . 123029) (-3872 . 122963)
+ (-3873 . 122907) (-3874 . 122775) (-3875 . 122671) (-3876 . 122616)
+ (-3877 . 122082) (-3878 . 121948) (-3879 . 121770) (-3880 . 121643)
+ (-3881 . 121611) (-3882 . 121509) (-3883 . 121290) (-3884 . 121211)
+ (-3885 . 121128) (-3886 . 120486) (-3887 . 120342) (-3888 . 120226)
+ (-3889 . 120140) (-3890 . 120060) (-3891 . 119522) (-3892 . 119336)
+ (-3893 . 119264) (-3894 . 119205) (-3895 . 119153) (-3896 . 119100)
+ (-3897 . 118940) (-3898 . 118539) (-3899 . 118454) (-3900 . 118298)
+ (-3901 . 118243) (-3902 . 118182) (-3903 . 118100) (-3904 . 117968)
+ (-3905 . 117815) (-3906 . 117387) (-3907 . 117292) (-3908 . 116998)
+ (-3909 . 116916) (-3910 . 116707) (-3911 . 116610) (-3912 . 116474)
+ (-3913 . 116296) (-3914 . 115867) (-3915 . 115138) (-3916 . 113834)
+ (-3917 . 113691) (-3918 . 113634) (-3919 . 113199) (-3920 . 112107)
+ (-3921 . 105164) (-3922 . 104740) (-3923 . 104658) (-3924 . 104545)
+ (-3925 . 104478) (-3926 . 104425) (-3927 . 103696) (-3928 . 103569)
+ (-3929 . 103517) (-3930 . 103176) (-3931 . 103120) (-3932 . 103064)
+ (-3933 . 102921) (-3934 . 102762) (-3935 . 102664) (-3936 . 102596)
+ (-3937 . 102541) (-3938 . 102470) (-3939 . 101794) (-3940 . 101467)
+ (-3941 . 101245) (-3942 . 101049) (-3943 . 100166) (-3944 . 100029)
+ (-3945 . 99354) (-3946 . 99203) (-3947 . 99145) (-3948 . 99049)
+ (-3949 . 98954) (-3950 . 98851) (-3951 . 98287) (-3952 . 98234)
+ (-3953 . 98118) (-3954 . 98040) (-3955 . 97959) (-3956 . 97892)
+ (-3957 . 97625) (-3958 . 97533) (-3959 . 97036) (-3960 . 97002)
+ (-3961 . 96660) (-3962 . 96545) (-3963 . 96417) (-3964 . 95853)
+ (-3965 . 95579) (-3966 . 95545) (-3967 . 95491) (-3968 . 95352)
+ (-3969 . 95275) (-3970 . 95167) (-3971 . 95093) (-3972 . 94950)
+ (-3973 . 94442) (-3974 . 93878) (-3975 . 92021) (-3976 . 91654)
+ (-3977 . 91539) (-3978 . 91511) (-3979 . 91263) (-3980 . 91142)
+ (-3981 . 90720) (-3982 . 90636) (-3983 . 90517) (-3984 . 90415)
+ (-3985 . 90299) (-3986 . 89625) (-3987 . 89566) (-3988 . 89428)
+ (-3989 . 89175) (-3990 . 89122) (-3991 . 89066) (-3992 . 88978)
+ (-3993 . 88919) (-3994 . 88791) (-3995 . 88720) (-3996 . 87858)
+ (-3997 . 87184) (-3998 . 87131) (-3999 . 86993) (-4000 . 86915)
+ (-4001 . 86799) (-4002 . 86725) (-4003 . 86659) (-4004 . 86511)
+ (-4005 . 86419) (-4006 . 86289) (-4007 . 86172) (-4008 . 86098)
+ (-4009 . 85361) (-4010 . 85284) (-4011 . 85218) (-4012 . 85181)
+ (-4013 . 85119) (-4014 . 85075) (-4015 . 84554) (-4016 . 84044)
+ (-4017 . 83971) (-4018 . 83744) (-4019 . 83433) (-4020 . 83323)
+ (-4021 . 82761) (-4022 . 82692) (-4023 . 82615) (-4024 . 82368)
+ (-4025 . 82304) (-4026 . 82031) (-4027 . 81954) (-4028 . 81815)
+ (-4029 . 81694) (-4030 . 81663) (-4031 . 81594) (-4032 . 81207)
+ (-4033 . 80645) (-4034 . 80487) (-4035 . 80410) (-4036 . 80203)
+ (-4037 . 80137) (-4038 . 80063) (-4039 . 79989) (-4040 . 79915)
+ (-4041 . 79730) (-4042 . 79656) (-4043 . 79449) (-4044 . 79390)
+ (-4045 . 78573) (-4046 . 78182) (-4047 . 77967) (-4048 . 77799)
+ (-4049 . 77608) (-4050 . 77512) (-4051 . 77301) (-4052 . 77186)
+ (-4053 . 77120) (-4054 . 77040) (-4055 . 76985) (-4056 . 76866)
+ (-4057 . 76771) (-4058 . 76683) (-4059 . 76523) (-4060 . 76397)
+ (-4061 . 76302) (-4062 . 76015) (-4063 . 75914) (-4064 . 75695)
+ (-4065 . 75506) (-4066 . 75281) (-4067 . 75042) (-4068 . 74927)
+ (-4069 . 74781) (-4070 . 73777) (-4071 . 73631) (-4072 . 73545)
+ (-4073 . 72738) (-4074 . 72644) (-4075 . 72541) (-4076 . 72223)
+ (-4077 . 72005) (-4078 . 71516) (-4079 . 71487) (-4080 . 71346)
+ (-4081 . 70800) (-4082 . 70620) (-4083 . 70543) (-4084 . 70373)
+ (-4085 . 70058) (-4086 . 69742) (-4087 . 69279) (-4088 . 69061)
+ (-4089 . 68963) (-4090 . 68932) (-4091 . 68873) (-4092 . 68778)
+ (-4093 . 68601) (-4094 . 68527) (-4095 . 68444) (-4096 . 68278)
+ (-4097 . 67927) (-4098 . 67839) (-4099 . 67367) (-4100 . 67268)
+ (-4101 . 66655) (-4102 . 66558) (-4103 . 66472) (-4104 . 66220)
+ (-4105 . 65961) (-4106 . 65420) (-4107 . 65352) (-4108 . 65033)
+ (-4109 . 64939) (-4110 . 64714) (-4111 . 64579) (-4112 . 64152)
+ (-4113 . 64009) (-4114 . 63901) (-4115 . 63799) (-4116 . 63428)
+ (-4117 . 63376) (-4118 . 63246) (-4119 . 62935) (-4120 . 62456)
+ (-4121 . 62304) (-4122 . 62242) (-4123 . 62160) (-4124 . 61961)
+ (-4125 . 61873) (-4126 . 61558) (-4127 . 61452) (-4128 . 61373)
+ (-4129 . 61232) (-4130 . 61056) (-4131 . 60970) (-4132 . 60899)
+ (-4133 . 60800) (-4134 . 60740) (-4135 . 60669) (-4136 . 60548)
+ (-4137 . 60330) (-4138 . 60171) (-4139 . 59585) (-4140 . 59453)
+ (-4141 . 59365) (-4142 . 59207) (-4143 . 59022) (-4144 . 58904)
+ (-4145 . 58418) (-4146 . 58332) (-4147 . 58004) (-4148 . 57711)
+ (-4149 . 57633) (-4150 . 57538) (-4151 . 57435) (-4152 . 56824)
+ (-4153 . 56683) (-4154 . 56339) (-4155 . 56039) (-4156 . 55761)
+ (-4157 . 54511) (-4158 . 54300) (-4159 . 44850) (-4160 . 44732)
+ (-4161 . 44679) (-4162 . 44626) (-4163 . 44547) (-4164 . 44387)
+ (-4165 . 44222) (-4166 . 44127) (-4167 . 44007) (-4168 . 43906)
+ (-4169 . 43820) (-4170 . 43686) (-4171 . 43603) (-4172 . 43566)
+ (-4173 . 43370) (-4174 . 43244) (-4175 . 43188) (-4176 . 43111)
+ (-4177 . 43018) (-4178 . 42806) (-4179 . 42735) (-4180 . 42630)
+ (-4181 . 42556) (-4182 . 42235) (-4183 . 42183) (-4184 . 42087)
+ (-4185 . 42059) (-4186 . 41875) (-4187 . 41713) (-4188 . 41568)
+ (-4189 . 41490) (-4190 . 41348) (-4191 . 41282) (-4192 . 41248)
+ (-4193 . 41144) (-4194 . 41047) (-4195 . 40952) (-4196 . 40848)
+ (-4197 . 40557) (-4198 . 40480) (-4199 . 40301) (-4200 . 39819)
+ (-4201 . 39209) (-4202 . 39081) (-4203 . 39053) (-4204 . 38970)
+ (-4205 . 38718) (-4206 . 38633) (-4207 . 38539) (-4208 . 38471)
+ (-4209 . 38210) (-4210 . 38019) (-4211 . 37861) (-4212 . 37783)
+ (-4213 . 37540) (-4214 . 36880) (-4215 . 36454) (-4216 . 35231)
+ (-4217 . 35135) (-4218 . 34932) (-4219 . 34865) (-4220 . 34721)
+ (-4221 . 34599) (-4222 . 34496) (-4223 . 34224) (-4224 . 34092)
+ (-4225 . 34040) (-4226 . 33937) (-4227 . 33871) (-4228 . 33663)
+ (-4229 . 33632) (-4230 . 33353) (-4231 . 33304) (-4232 . 33209)
+ (-4233 . 33154) (-4234 . 33040) (-4235 . 32824) (-4236 . 32718)
+ (-4237 . 32655) (-4238 . 32585) (-4239 . 32421) (-4240 . 32197)
+ (-4241 . 32094) (-4242 . 31964) (-4243 . 31664) (-4244 . 31612)
+ (-4245 . 31514) (-4246 . 31202) (-4247 . 31020) (-4248 . 30505)
+ (-4249 . 30449) (-4250 . 30192) (-4251 . 30164) (-4252 . 30001)
+ (-4253 . 29847) (-4254 . 29762) (-4255 . 29678) (-4256 . 29570)
+ (-4257 . 29360) (-4258 . 29258) (-4259 . 28418) (-4260 . 28332)
+ (-4261 . 28177) (-4262 . 28117) (-4263 . 27943) (-4264 . 27773)
+ (-4265 . 27724) (-4266 . 27522) (-4267 . 26720) (-4268 . 26619)
+ (-4269 . 26560) (-4270 . 26441) (-4271 . 26379) (-4272 . 26191)
+ (-4273 . 26110) (-4274 . 26040) (-4275 . 25943) (-4276 . 25843)
+ (-4277 . 25702) (-4278 . 24932) (-4279 . 24801) (-4280 . 24673)
+ (-4281 . 24603) (-4282 . 24451) (-4283 . 24340) (-4284 . 24173)
+ (-4285 . 24092) (-4286 . 23936) (-4287 . 23884) (-4288 . 23800)
+ (-4289 . 23704) (-4290 . 23633) (-4291 . 23538) (-4292 . 23485)
+ (-4293 . 23362) (-4294 . 23313) (-4295 . 23189) (-4296 . 23130)
+ (-4297 . 23067) (-4298 . 23010) (-4299 . 22941) (-4300 . 22757)
+ (-4301 . 22511) (-4302 . 22373) (-4303 . 22262) (-4304 . 22022)
+ (-4305 . 21936) (-4306 . 21728) (-4307 . 21676) (-4308 . 21310)
+ (-4309 . 21239) (-4310 . 21211) (-4311 . 21079) (-4312 . 20721)
+ (-4313 . 20475) (-4314 . 19880) (-4315 . 19848) (-4316 . 19765)
+ (-4317 . 19480) (-4318 . 19107) (-4319 . 18988) (-4320 . 18713)
+ (-4321 . 18660) (-4322 . 18367) (-4323 . 18282) (-4324 . 18107)
+ (-4325 . 18037) (-4326 . 17591) (-4327 . 17489) (-4328 . 17357)
+ (-4329 . 17254) (-4330 . 17081) (-4331 . 16825) (-4332 . 16791)
+ (-4333 . 16544) (-4334 . 16366) (-4335 . 16206) (-4336 . 15936)
+ (-4337 . 14736) (-4338 . 14662) (-4339 . 14564) (-4340 . 14448)
+ (-4341 . 14218) (-4342 . 14065) (-4343 . 14010) (-4344 . 13846)
+ (-4345 . 13701) (-4346 . 13574) (-4347 . 13521) (-4348 . 13408)
+ (-4349 . 13310) (-4350 . 13056) (-4351 . 13004) (-4352 . 12889)
+ (-4353 . 12692) (-4354 . 12632) (-4355 . 12580) (-4356 . 12328)
+ (-4357 . 12162) (-4358 . 12030) (-4359 . 11871) (-4360 . 11821)
+ (-4361 . 11768) (-4362 . 11550) (-4363 . 11322) (-4364 . 11191)
+ (-4365 . 11162) (-4366 . 10832) (-4367 . 10665) (-4368 . 10613)
+ (-4369 . 10556) (-4370 . 9471) (-4371 . 8550) (-4372 . 8496)
+ (-4373 . 8444) (-4374 . 8309) (-4375 . 8223) (-4376 . 8121)
+ (-4377 . 8038) (-4378 . 7968) (-4379 . 7716) (-4380 . 7378)
+ (-4381 . 7049) (-4382 . 6869) (-4383 . 6781) (-4384 . 6708)
+ (-4385 . 6607) (-4386 . 6557) (-4387 . 6458) (-4388 . 6363)
+ (-4389 . 6060) (-4390 . 5850) (-4391 . 5717) (-4392 . 5536)
+ (-4393 . 368) (-4394 . 30)) \ No newline at end of file